diff --git a/CHANGELOG.md b/CHANGELOG.md index 27ea023..44d8d12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.1.47-alpha.1](https://github.com/scribd/amazon-ecs-service-action/compare/v1.1.46...v1.1.47-alpha.1) (2022-10-04) + + +### Bug Fixes + +* **deps:** pnpm upgrade 20220907 ([fa24b7e](https://github.com/scribd/amazon-ecs-service-action/commit/fa24b7ed26a3668cd58f5fa4d9c5fc8cc02fc6a6)) + ## [1.1.46](https://github.com/scribd/amazon-ecs-service-action/compare/v1.1.45...v1.1.46) (2022-09-07) diff --git a/dist/index.js b/dist/index.js index bc04be6..2b53f2d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5,10 +5,10 @@ /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { /* module decorator */ module = __nccwpck_require__.nmd(module); -const core = __nccwpck_require__(5681); +const core = __nccwpck_require__(7954); const fs = __nccwpck_require__(7147); -const {ECSClient, CreateServiceCommand, DescribeServicesCommand, UpdateServiceCommand, DeleteServiceCommand, waitUntilServicesInactive, ListTasksCommand, DescribeTasksCommand} = __nccwpck_require__(2399); +const {ECSClient, CreateServiceCommand, DescribeServicesCommand, UpdateServiceCommand, DeleteServiceCommand, waitUntilServicesInactive, ListTasksCommand, DescribeTasksCommand} = __nccwpck_require__(2862); const _ = __nccwpck_require__(8513); @@ -183,7 +183,7 @@ function deleteInput(parameters) { * *****************************************************************************************/ -const {WaiterState, checkExceptions, createWaiter} = __nccwpck_require__(1036); +const {WaiterState, checkExceptions, createWaiter} = __nccwpck_require__(8161); async function checkState(client, parameters) { const response = await describeService(client, parameters); @@ -726,7 +726,7 @@ module.exports = { /***/ }), -/***/ 1346: +/***/ 410: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -753,7 +753,7 @@ var __importStar = (this && this.__importStar) || function (mod) { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.issue = exports.issueCommand = void 0; const os = __importStar(__nccwpck_require__(2037)); -const utils_1 = __nccwpck_require__(9754); +const utils_1 = __nccwpck_require__(8900); /** * Commands * @@ -825,7 +825,7 @@ function escapeProperty(s) { /***/ }), -/***/ 5681: +/***/ 7954: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -860,13 +860,12 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge }; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getIDToken = exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.notice = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getMultilineInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0; -const command_1 = __nccwpck_require__(1346); -const file_command_1 = __nccwpck_require__(1753); -const utils_1 = __nccwpck_require__(9754); +const command_1 = __nccwpck_require__(410); +const file_command_1 = __nccwpck_require__(980); +const utils_1 = __nccwpck_require__(8900); const os = __importStar(__nccwpck_require__(2037)); const path = __importStar(__nccwpck_require__(1017)); -const uuid_1 = __nccwpck_require__(7066); -const oidc_utils_1 = __nccwpck_require__(4892); +const oidc_utils_1 = __nccwpck_require__(8776); /** * The code to exit an action */ @@ -895,20 +894,9 @@ function exportVariable(name, val) { process.env[name] = convertedVal; const filePath = process.env['GITHUB_ENV'] || ''; if (filePath) { - const delimiter = `ghadelimiter_${uuid_1.v4()}`; - // These should realistically never happen, but just in case someone finds a way to exploit uuid generation let's not allow keys or values that contain the delimiter. - if (name.includes(delimiter)) { - throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`); - } - if (convertedVal.includes(delimiter)) { - throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`); - } - const commandValue = `${name}<<${delimiter}${os.EOL}${convertedVal}${os.EOL}${delimiter}`; - file_command_1.issueCommand('ENV', commandValue); - } - else { - command_1.issueCommand('set-env', { name }, convertedVal); + return file_command_1.issueFileCommand('ENV', file_command_1.prepareKeyValueMessage(name, val)); } + command_1.issueCommand('set-env', { name }, convertedVal); } exports.exportVariable = exportVariable; /** @@ -926,7 +914,7 @@ exports.setSecret = setSecret; function addPath(inputPath) { const filePath = process.env['GITHUB_PATH'] || ''; if (filePath) { - file_command_1.issueCommand('PATH', inputPath); + file_command_1.issueFileCommand('PATH', inputPath); } else { command_1.issueCommand('add-path', {}, inputPath); @@ -966,7 +954,10 @@ function getMultilineInput(name, options) { const inputs = getInput(name, options) .split('\n') .filter(x => x !== ''); - return inputs; + if (options && options.trimWhitespace === false) { + return inputs; + } + return inputs.map(input => input.trim()); } exports.getMultilineInput = getMultilineInput; /** @@ -999,8 +990,12 @@ exports.getBooleanInput = getBooleanInput; */ // eslint-disable-next-line @typescript-eslint/no-explicit-any function setOutput(name, value) { + const filePath = process.env['GITHUB_OUTPUT'] || ''; + if (filePath) { + return file_command_1.issueFileCommand('OUTPUT', file_command_1.prepareKeyValueMessage(name, value)); + } process.stdout.write(os.EOL); - command_1.issueCommand('set-output', { name }, value); + command_1.issueCommand('set-output', { name }, utils_1.toCommandValue(value)); } exports.setOutput = setOutput; /** @@ -1129,7 +1124,11 @@ exports.group = group; */ // eslint-disable-next-line @typescript-eslint/no-explicit-any function saveState(name, value) { - command_1.issueCommand('save-state', { name }, value); + const filePath = process.env['GITHUB_STATE'] || ''; + if (filePath) { + return file_command_1.issueFileCommand('STATE', file_command_1.prepareKeyValueMessage(name, value)); + } + command_1.issueCommand('save-state', { name }, utils_1.toCommandValue(value)); } exports.saveState = saveState; /** @@ -1151,17 +1150,17 @@ exports.getIDToken = getIDToken; /** * Summary exports */ -var summary_1 = __nccwpck_require__(5957); +var summary_1 = __nccwpck_require__(8265); Object.defineProperty(exports, "summary", ({ enumerable: true, get: function () { return summary_1.summary; } })); /** * @deprecated use core.summary */ -var summary_2 = __nccwpck_require__(5957); +var summary_2 = __nccwpck_require__(8265); Object.defineProperty(exports, "markdownSummary", ({ enumerable: true, get: function () { return summary_2.markdownSummary; } })); /** * Path exports */ -var path_utils_1 = __nccwpck_require__(891); +var path_utils_1 = __nccwpck_require__(6370); Object.defineProperty(exports, "toPosixPath", ({ enumerable: true, get: function () { return path_utils_1.toPosixPath; } })); Object.defineProperty(exports, "toWin32Path", ({ enumerable: true, get: function () { return path_utils_1.toWin32Path; } })); Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: function () { return path_utils_1.toPlatformPath; } })); @@ -1169,7 +1168,7 @@ Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: funct /***/ }), -/***/ 1753: +/***/ 980: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1195,13 +1194,14 @@ var __importStar = (this && this.__importStar) || function (mod) { return result; }; Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.issueCommand = void 0; +exports.prepareKeyValueMessage = exports.issueFileCommand = void 0; // We use any as a valid input type /* eslint-disable @typescript-eslint/no-explicit-any */ const fs = __importStar(__nccwpck_require__(7147)); const os = __importStar(__nccwpck_require__(2037)); -const utils_1 = __nccwpck_require__(9754); -function issueCommand(command, message) { +const uuid_1 = __nccwpck_require__(7066); +const utils_1 = __nccwpck_require__(8900); +function issueFileCommand(command, message) { const filePath = process.env[`GITHUB_${command}`]; if (!filePath) { throw new Error(`Unable to find environment variable for file command ${command}`); @@ -1213,12 +1213,27 @@ function issueCommand(command, message) { encoding: 'utf8' }); } -exports.issueCommand = issueCommand; +exports.issueFileCommand = issueFileCommand; +function prepareKeyValueMessage(key, value) { + const delimiter = `ghadelimiter_${uuid_1.v4()}`; + const convertedValue = utils_1.toCommandValue(value); + // These should realistically never happen, but just in case someone finds a + // way to exploit uuid generation let's not allow keys or values that contain + // the delimiter. + if (key.includes(delimiter)) { + throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`); + } + if (convertedValue.includes(delimiter)) { + throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`); + } + return `${key}<<${delimiter}${os.EOL}${convertedValue}${os.EOL}${delimiter}`; +} +exports.prepareKeyValueMessage = prepareKeyValueMessage; //# sourceMappingURL=file-command.js.map /***/ }), -/***/ 4892: +/***/ 8776: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1236,7 +1251,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); exports.OidcClient = void 0; const http_client_1 = __nccwpck_require__(9706); const auth_1 = __nccwpck_require__(8336); -const core_1 = __nccwpck_require__(5681); +const core_1 = __nccwpck_require__(7954); class OidcClient { static createHttpClient(allowRetry = true, maxRetry = 10) { const requestOptions = { @@ -1302,7 +1317,7 @@ exports.OidcClient = OidcClient; /***/ }), -/***/ 891: +/***/ 6370: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1367,7 +1382,7 @@ exports.toPlatformPath = toPlatformPath; /***/ }), -/***/ 5957: +/***/ 8265: /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { "use strict"; @@ -1657,7 +1672,7 @@ exports.summary = _summary; /***/ }), -/***/ 9754: +/***/ 8900: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -2472,66 +2487,66 @@ exports.checkBypass = checkBypass; /***/ }), -/***/ 8046: +/***/ 5357: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ECS = void 0; -const CreateCapacityProviderCommand_1 = __nccwpck_require__(5239); -const CreateClusterCommand_1 = __nccwpck_require__(7882); -const CreateServiceCommand_1 = __nccwpck_require__(8270); -const CreateTaskSetCommand_1 = __nccwpck_require__(8902); -const DeleteAccountSettingCommand_1 = __nccwpck_require__(4801); -const DeleteAttributesCommand_1 = __nccwpck_require__(2045); -const DeleteCapacityProviderCommand_1 = __nccwpck_require__(9124); -const DeleteClusterCommand_1 = __nccwpck_require__(9309); -const DeleteServiceCommand_1 = __nccwpck_require__(6766); -const DeleteTaskSetCommand_1 = __nccwpck_require__(5020); -const DeregisterContainerInstanceCommand_1 = __nccwpck_require__(4536); -const DeregisterTaskDefinitionCommand_1 = __nccwpck_require__(4202); -const DescribeCapacityProvidersCommand_1 = __nccwpck_require__(2959); -const DescribeClustersCommand_1 = __nccwpck_require__(3622); -const DescribeContainerInstancesCommand_1 = __nccwpck_require__(4666); -const DescribeServicesCommand_1 = __nccwpck_require__(8825); -const DescribeTaskDefinitionCommand_1 = __nccwpck_require__(6810); -const DescribeTasksCommand_1 = __nccwpck_require__(8309); -const DescribeTaskSetsCommand_1 = __nccwpck_require__(3313); -const DiscoverPollEndpointCommand_1 = __nccwpck_require__(2237); -const ExecuteCommandCommand_1 = __nccwpck_require__(6684); -const ListAccountSettingsCommand_1 = __nccwpck_require__(5248); -const ListAttributesCommand_1 = __nccwpck_require__(7332); -const ListClustersCommand_1 = __nccwpck_require__(7055); -const ListContainerInstancesCommand_1 = __nccwpck_require__(2543); -const ListServicesCommand_1 = __nccwpck_require__(7957); -const ListTagsForResourceCommand_1 = __nccwpck_require__(6825); -const ListTaskDefinitionFamiliesCommand_1 = __nccwpck_require__(2268); -const ListTaskDefinitionsCommand_1 = __nccwpck_require__(415); -const ListTasksCommand_1 = __nccwpck_require__(5026); -const PutAccountSettingCommand_1 = __nccwpck_require__(4091); -const PutAccountSettingDefaultCommand_1 = __nccwpck_require__(852); -const PutAttributesCommand_1 = __nccwpck_require__(9253); -const PutClusterCapacityProvidersCommand_1 = __nccwpck_require__(138); -const RegisterContainerInstanceCommand_1 = __nccwpck_require__(7223); -const RegisterTaskDefinitionCommand_1 = __nccwpck_require__(6469); +const CreateCapacityProviderCommand_1 = __nccwpck_require__(2125); +const CreateClusterCommand_1 = __nccwpck_require__(6479); +const CreateServiceCommand_1 = __nccwpck_require__(2755); +const CreateTaskSetCommand_1 = __nccwpck_require__(1201); +const DeleteAccountSettingCommand_1 = __nccwpck_require__(4515); +const DeleteAttributesCommand_1 = __nccwpck_require__(6712); +const DeleteCapacityProviderCommand_1 = __nccwpck_require__(771); +const DeleteClusterCommand_1 = __nccwpck_require__(577); +const DeleteServiceCommand_1 = __nccwpck_require__(7437); +const DeleteTaskSetCommand_1 = __nccwpck_require__(5039); +const DeregisterContainerInstanceCommand_1 = __nccwpck_require__(15); +const DeregisterTaskDefinitionCommand_1 = __nccwpck_require__(3758); +const DescribeCapacityProvidersCommand_1 = __nccwpck_require__(4789); +const DescribeClustersCommand_1 = __nccwpck_require__(5017); +const DescribeContainerInstancesCommand_1 = __nccwpck_require__(1523); +const DescribeServicesCommand_1 = __nccwpck_require__(3448); +const DescribeTaskDefinitionCommand_1 = __nccwpck_require__(7566); +const DescribeTasksCommand_1 = __nccwpck_require__(9404); +const DescribeTaskSetsCommand_1 = __nccwpck_require__(8694); +const DiscoverPollEndpointCommand_1 = __nccwpck_require__(111); +const ExecuteCommandCommand_1 = __nccwpck_require__(7897); +const ListAccountSettingsCommand_1 = __nccwpck_require__(6488); +const ListAttributesCommand_1 = __nccwpck_require__(9268); +const ListClustersCommand_1 = __nccwpck_require__(6909); +const ListContainerInstancesCommand_1 = __nccwpck_require__(5329); +const ListServicesCommand_1 = __nccwpck_require__(397); +const ListTagsForResourceCommand_1 = __nccwpck_require__(7698); +const ListTaskDefinitionFamiliesCommand_1 = __nccwpck_require__(4962); +const ListTaskDefinitionsCommand_1 = __nccwpck_require__(3945); +const ListTasksCommand_1 = __nccwpck_require__(8318); +const PutAccountSettingCommand_1 = __nccwpck_require__(852); +const PutAccountSettingDefaultCommand_1 = __nccwpck_require__(6884); +const PutAttributesCommand_1 = __nccwpck_require__(91); +const PutClusterCapacityProvidersCommand_1 = __nccwpck_require__(6974); +const RegisterContainerInstanceCommand_1 = __nccwpck_require__(4134); +const RegisterTaskDefinitionCommand_1 = __nccwpck_require__(6477); const RunTaskCommand_1 = __nccwpck_require__(5089); -const StartTaskCommand_1 = __nccwpck_require__(9177); -const StopTaskCommand_1 = __nccwpck_require__(3682); -const SubmitAttachmentStateChangesCommand_1 = __nccwpck_require__(6485); -const SubmitContainerStateChangeCommand_1 = __nccwpck_require__(4035); -const SubmitTaskStateChangeCommand_1 = __nccwpck_require__(4690); -const TagResourceCommand_1 = __nccwpck_require__(305); -const UntagResourceCommand_1 = __nccwpck_require__(6554); -const UpdateCapacityProviderCommand_1 = __nccwpck_require__(1480); -const UpdateClusterCommand_1 = __nccwpck_require__(6291); -const UpdateClusterSettingsCommand_1 = __nccwpck_require__(1665); -const UpdateContainerAgentCommand_1 = __nccwpck_require__(9599); -const UpdateContainerInstancesStateCommand_1 = __nccwpck_require__(3206); -const UpdateServiceCommand_1 = __nccwpck_require__(7129); -const UpdateServicePrimaryTaskSetCommand_1 = __nccwpck_require__(961); -const UpdateTaskSetCommand_1 = __nccwpck_require__(5442); -const ECSClient_1 = __nccwpck_require__(4480); +const StartTaskCommand_1 = __nccwpck_require__(2221); +const StopTaskCommand_1 = __nccwpck_require__(7477); +const SubmitAttachmentStateChangesCommand_1 = __nccwpck_require__(5647); +const SubmitContainerStateChangeCommand_1 = __nccwpck_require__(7728); +const SubmitTaskStateChangeCommand_1 = __nccwpck_require__(7033); +const TagResourceCommand_1 = __nccwpck_require__(9345); +const UntagResourceCommand_1 = __nccwpck_require__(6261); +const UpdateCapacityProviderCommand_1 = __nccwpck_require__(7308); +const UpdateClusterCommand_1 = __nccwpck_require__(1043); +const UpdateClusterSettingsCommand_1 = __nccwpck_require__(3250); +const UpdateContainerAgentCommand_1 = __nccwpck_require__(7577); +const UpdateContainerInstancesStateCommand_1 = __nccwpck_require__(32); +const UpdateServiceCommand_1 = __nccwpck_require__(3500); +const UpdateServicePrimaryTaskSetCommand_1 = __nccwpck_require__(6445); +const UpdateTaskSetCommand_1 = __nccwpck_require__(325); +const ECSClient_1 = __nccwpck_require__(2707); class ECS extends ECSClient_1.ECSClient { createCapacityProvider(args, optionsOrCb, cb) { const command = new CreateCapacityProviderCommand_1.CreateCapacityProviderCommand(args); @@ -3267,23 +3282,23 @@ exports.ECS = ECS; /***/ }), -/***/ 4480: +/***/ 2707: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ECSClient = void 0; -const config_resolver_1 = __nccwpck_require__(9256); -const middleware_content_length_1 = __nccwpck_require__(3654); -const middleware_host_header_1 = __nccwpck_require__(4481); -const middleware_logger_1 = __nccwpck_require__(3272); -const middleware_recursion_detection_1 = __nccwpck_require__(9585); -const middleware_retry_1 = __nccwpck_require__(6472); -const middleware_signing_1 = __nccwpck_require__(7146); -const middleware_user_agent_1 = __nccwpck_require__(5508); -const smithy_client_1 = __nccwpck_require__(1529); -const runtimeConfig_1 = __nccwpck_require__(48); +const config_resolver_1 = __nccwpck_require__(6210); +const middleware_content_length_1 = __nccwpck_require__(1553); +const middleware_host_header_1 = __nccwpck_require__(278); +const middleware_logger_1 = __nccwpck_require__(130); +const middleware_recursion_detection_1 = __nccwpck_require__(251); +const middleware_retry_1 = __nccwpck_require__(3268); +const middleware_signing_1 = __nccwpck_require__(342); +const middleware_user_agent_1 = __nccwpck_require__(2467); +const smithy_client_1 = __nccwpck_require__(3118); +const runtimeConfig_1 = __nccwpck_require__(8751); class ECSClient extends smithy_client_1.Client { constructor(configuration) { const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration); @@ -3312,17 +3327,17 @@ exports.ECSClient = ECSClient; /***/ }), -/***/ 5239: +/***/ 2125: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.CreateCapacityProviderCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class CreateCapacityProviderCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3356,17 +3371,17 @@ exports.CreateCapacityProviderCommand = CreateCapacityProviderCommand; /***/ }), -/***/ 7882: +/***/ 6479: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.CreateClusterCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class CreateClusterCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3400,17 +3415,17 @@ exports.CreateClusterCommand = CreateClusterCommand; /***/ }), -/***/ 8270: +/***/ 2755: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.CreateServiceCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class CreateServiceCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3444,17 +3459,17 @@ exports.CreateServiceCommand = CreateServiceCommand; /***/ }), -/***/ 8902: +/***/ 1201: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.CreateTaskSetCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class CreateTaskSetCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3488,17 +3503,17 @@ exports.CreateTaskSetCommand = CreateTaskSetCommand; /***/ }), -/***/ 4801: +/***/ 4515: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DeleteAccountSettingCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DeleteAccountSettingCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3532,17 +3547,17 @@ exports.DeleteAccountSettingCommand = DeleteAccountSettingCommand; /***/ }), -/***/ 2045: +/***/ 6712: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DeleteAttributesCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DeleteAttributesCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3576,17 +3591,17 @@ exports.DeleteAttributesCommand = DeleteAttributesCommand; /***/ }), -/***/ 9124: +/***/ 771: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DeleteCapacityProviderCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DeleteCapacityProviderCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3620,17 +3635,17 @@ exports.DeleteCapacityProviderCommand = DeleteCapacityProviderCommand; /***/ }), -/***/ 9309: +/***/ 577: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DeleteClusterCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DeleteClusterCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3664,17 +3679,17 @@ exports.DeleteClusterCommand = DeleteClusterCommand; /***/ }), -/***/ 6766: +/***/ 7437: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DeleteServiceCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DeleteServiceCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3708,17 +3723,17 @@ exports.DeleteServiceCommand = DeleteServiceCommand; /***/ }), -/***/ 5020: +/***/ 5039: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DeleteTaskSetCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DeleteTaskSetCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3752,17 +3767,17 @@ exports.DeleteTaskSetCommand = DeleteTaskSetCommand; /***/ }), -/***/ 4536: +/***/ 15: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DeregisterContainerInstanceCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DeregisterContainerInstanceCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3796,17 +3811,17 @@ exports.DeregisterContainerInstanceCommand = DeregisterContainerInstanceCommand; /***/ }), -/***/ 4202: +/***/ 3758: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DeregisterTaskDefinitionCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DeregisterTaskDefinitionCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3840,17 +3855,17 @@ exports.DeregisterTaskDefinitionCommand = DeregisterTaskDefinitionCommand; /***/ }), -/***/ 2959: +/***/ 4789: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DescribeCapacityProvidersCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DescribeCapacityProvidersCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3884,17 +3899,17 @@ exports.DescribeCapacityProvidersCommand = DescribeCapacityProvidersCommand; /***/ }), -/***/ 3622: +/***/ 5017: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DescribeClustersCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DescribeClustersCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3928,17 +3943,17 @@ exports.DescribeClustersCommand = DescribeClustersCommand; /***/ }), -/***/ 4666: +/***/ 1523: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DescribeContainerInstancesCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DescribeContainerInstancesCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -3972,17 +3987,17 @@ exports.DescribeContainerInstancesCommand = DescribeContainerInstancesCommand; /***/ }), -/***/ 8825: +/***/ 3448: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DescribeServicesCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DescribeServicesCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4016,17 +4031,17 @@ exports.DescribeServicesCommand = DescribeServicesCommand; /***/ }), -/***/ 6810: +/***/ 7566: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DescribeTaskDefinitionCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DescribeTaskDefinitionCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4060,17 +4075,17 @@ exports.DescribeTaskDefinitionCommand = DescribeTaskDefinitionCommand; /***/ }), -/***/ 3313: +/***/ 8694: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DescribeTaskSetsCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DescribeTaskSetsCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4104,17 +4119,17 @@ exports.DescribeTaskSetsCommand = DescribeTaskSetsCommand; /***/ }), -/***/ 8309: +/***/ 9404: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DescribeTasksCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DescribeTasksCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4148,17 +4163,17 @@ exports.DescribeTasksCommand = DescribeTasksCommand; /***/ }), -/***/ 2237: +/***/ 111: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DiscoverPollEndpointCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class DiscoverPollEndpointCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4192,17 +4207,17 @@ exports.DiscoverPollEndpointCommand = DiscoverPollEndpointCommand; /***/ }), -/***/ 6684: +/***/ 7897: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ExecuteCommandCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class ExecuteCommandCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4236,17 +4251,17 @@ exports.ExecuteCommandCommand = ExecuteCommandCommand; /***/ }), -/***/ 5248: +/***/ 6488: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ListAccountSettingsCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class ListAccountSettingsCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4280,17 +4295,17 @@ exports.ListAccountSettingsCommand = ListAccountSettingsCommand; /***/ }), -/***/ 7332: +/***/ 9268: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ListAttributesCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class ListAttributesCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4324,17 +4339,17 @@ exports.ListAttributesCommand = ListAttributesCommand; /***/ }), -/***/ 7055: +/***/ 6909: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ListClustersCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class ListClustersCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4368,17 +4383,17 @@ exports.ListClustersCommand = ListClustersCommand; /***/ }), -/***/ 2543: +/***/ 5329: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ListContainerInstancesCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class ListContainerInstancesCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4412,17 +4427,17 @@ exports.ListContainerInstancesCommand = ListContainerInstancesCommand; /***/ }), -/***/ 7957: +/***/ 397: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ListServicesCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class ListServicesCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4456,17 +4471,17 @@ exports.ListServicesCommand = ListServicesCommand; /***/ }), -/***/ 6825: +/***/ 7698: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ListTagsForResourceCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class ListTagsForResourceCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4500,17 +4515,17 @@ exports.ListTagsForResourceCommand = ListTagsForResourceCommand; /***/ }), -/***/ 2268: +/***/ 4962: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ListTaskDefinitionFamiliesCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class ListTaskDefinitionFamiliesCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4544,17 +4559,17 @@ exports.ListTaskDefinitionFamiliesCommand = ListTaskDefinitionFamiliesCommand; /***/ }), -/***/ 415: +/***/ 3945: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ListTaskDefinitionsCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class ListTaskDefinitionsCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4588,17 +4603,17 @@ exports.ListTaskDefinitionsCommand = ListTaskDefinitionsCommand; /***/ }), -/***/ 5026: +/***/ 8318: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ListTasksCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class ListTasksCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4632,17 +4647,17 @@ exports.ListTasksCommand = ListTasksCommand; /***/ }), -/***/ 4091: +/***/ 852: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.PutAccountSettingCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class PutAccountSettingCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4676,17 +4691,17 @@ exports.PutAccountSettingCommand = PutAccountSettingCommand; /***/ }), -/***/ 852: +/***/ 6884: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.PutAccountSettingDefaultCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class PutAccountSettingDefaultCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4720,17 +4735,17 @@ exports.PutAccountSettingDefaultCommand = PutAccountSettingDefaultCommand; /***/ }), -/***/ 9253: +/***/ 91: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.PutAttributesCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class PutAttributesCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4764,17 +4779,17 @@ exports.PutAttributesCommand = PutAttributesCommand; /***/ }), -/***/ 138: +/***/ 6974: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.PutClusterCapacityProvidersCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class PutClusterCapacityProvidersCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4808,17 +4823,17 @@ exports.PutClusterCapacityProvidersCommand = PutClusterCapacityProvidersCommand; /***/ }), -/***/ 7223: +/***/ 4134: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.RegisterContainerInstanceCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class RegisterContainerInstanceCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4852,17 +4867,17 @@ exports.RegisterContainerInstanceCommand = RegisterContainerInstanceCommand; /***/ }), -/***/ 6469: +/***/ 6477: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.RegisterTaskDefinitionCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class RegisterTaskDefinitionCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4903,10 +4918,10 @@ exports.RegisterTaskDefinitionCommand = RegisterTaskDefinitionCommand; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.RunTaskCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class RunTaskCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4940,17 +4955,17 @@ exports.RunTaskCommand = RunTaskCommand; /***/ }), -/***/ 9177: +/***/ 2221: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.StartTaskCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class StartTaskCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -4984,17 +4999,17 @@ exports.StartTaskCommand = StartTaskCommand; /***/ }), -/***/ 3682: +/***/ 7477: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.StopTaskCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class StopTaskCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5028,17 +5043,17 @@ exports.StopTaskCommand = StopTaskCommand; /***/ }), -/***/ 6485: +/***/ 5647: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.SubmitAttachmentStateChangesCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class SubmitAttachmentStateChangesCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5072,17 +5087,17 @@ exports.SubmitAttachmentStateChangesCommand = SubmitAttachmentStateChangesComman /***/ }), -/***/ 4035: +/***/ 7728: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.SubmitContainerStateChangeCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class SubmitContainerStateChangeCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5116,17 +5131,17 @@ exports.SubmitContainerStateChangeCommand = SubmitContainerStateChangeCommand; /***/ }), -/***/ 4690: +/***/ 7033: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.SubmitTaskStateChangeCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class SubmitTaskStateChangeCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5160,17 +5175,17 @@ exports.SubmitTaskStateChangeCommand = SubmitTaskStateChangeCommand; /***/ }), -/***/ 305: +/***/ 9345: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.TagResourceCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class TagResourceCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5204,17 +5219,17 @@ exports.TagResourceCommand = TagResourceCommand; /***/ }), -/***/ 6554: +/***/ 6261: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.UntagResourceCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class UntagResourceCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5248,17 +5263,17 @@ exports.UntagResourceCommand = UntagResourceCommand; /***/ }), -/***/ 1480: +/***/ 7308: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.UpdateCapacityProviderCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class UpdateCapacityProviderCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5292,17 +5307,17 @@ exports.UpdateCapacityProviderCommand = UpdateCapacityProviderCommand; /***/ }), -/***/ 6291: +/***/ 1043: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.UpdateClusterCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class UpdateClusterCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5336,17 +5351,17 @@ exports.UpdateClusterCommand = UpdateClusterCommand; /***/ }), -/***/ 1665: +/***/ 3250: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.UpdateClusterSettingsCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class UpdateClusterSettingsCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5380,17 +5395,17 @@ exports.UpdateClusterSettingsCommand = UpdateClusterSettingsCommand; /***/ }), -/***/ 9599: +/***/ 7577: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.UpdateContainerAgentCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class UpdateContainerAgentCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5424,17 +5439,17 @@ exports.UpdateContainerAgentCommand = UpdateContainerAgentCommand; /***/ }), -/***/ 3206: +/***/ 32: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.UpdateContainerInstancesStateCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class UpdateContainerInstancesStateCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5468,17 +5483,17 @@ exports.UpdateContainerInstancesStateCommand = UpdateContainerInstancesStateComm /***/ }), -/***/ 7129: +/***/ 3500: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.UpdateServiceCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class UpdateServiceCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5512,17 +5527,17 @@ exports.UpdateServiceCommand = UpdateServiceCommand; /***/ }), -/***/ 961: +/***/ 6445: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.UpdateServicePrimaryTaskSetCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class UpdateServicePrimaryTaskSetCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5556,17 +5571,17 @@ exports.UpdateServicePrimaryTaskSetCommand = UpdateServicePrimaryTaskSetCommand; /***/ }), -/***/ 5442: +/***/ 325: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.UpdateTaskSetCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(3333); -const Aws_json1_1_1 = __nccwpck_require__(9517); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(9594); +const Aws_json1_1_1 = __nccwpck_require__(4175); class UpdateTaskSetCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -5600,77 +5615,77 @@ exports.UpdateTaskSetCommand = UpdateTaskSetCommand; /***/ }), -/***/ 2054: +/***/ 533: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(5239), exports); -tslib_1.__exportStar(__nccwpck_require__(7882), exports); -tslib_1.__exportStar(__nccwpck_require__(8270), exports); -tslib_1.__exportStar(__nccwpck_require__(8902), exports); -tslib_1.__exportStar(__nccwpck_require__(4801), exports); -tslib_1.__exportStar(__nccwpck_require__(2045), exports); -tslib_1.__exportStar(__nccwpck_require__(9124), exports); -tslib_1.__exportStar(__nccwpck_require__(9309), exports); -tslib_1.__exportStar(__nccwpck_require__(6766), exports); -tslib_1.__exportStar(__nccwpck_require__(5020), exports); -tslib_1.__exportStar(__nccwpck_require__(4536), exports); -tslib_1.__exportStar(__nccwpck_require__(4202), exports); -tslib_1.__exportStar(__nccwpck_require__(2959), exports); -tslib_1.__exportStar(__nccwpck_require__(3622), exports); -tslib_1.__exportStar(__nccwpck_require__(4666), exports); -tslib_1.__exportStar(__nccwpck_require__(8825), exports); -tslib_1.__exportStar(__nccwpck_require__(6810), exports); -tslib_1.__exportStar(__nccwpck_require__(3313), exports); -tslib_1.__exportStar(__nccwpck_require__(8309), exports); -tslib_1.__exportStar(__nccwpck_require__(2237), exports); -tslib_1.__exportStar(__nccwpck_require__(6684), exports); -tslib_1.__exportStar(__nccwpck_require__(5248), exports); -tslib_1.__exportStar(__nccwpck_require__(7332), exports); -tslib_1.__exportStar(__nccwpck_require__(7055), exports); -tslib_1.__exportStar(__nccwpck_require__(2543), exports); -tslib_1.__exportStar(__nccwpck_require__(7957), exports); -tslib_1.__exportStar(__nccwpck_require__(6825), exports); -tslib_1.__exportStar(__nccwpck_require__(2268), exports); -tslib_1.__exportStar(__nccwpck_require__(415), exports); -tslib_1.__exportStar(__nccwpck_require__(5026), exports); -tslib_1.__exportStar(__nccwpck_require__(4091), exports); +tslib_1.__exportStar(__nccwpck_require__(2125), exports); +tslib_1.__exportStar(__nccwpck_require__(6479), exports); +tslib_1.__exportStar(__nccwpck_require__(2755), exports); +tslib_1.__exportStar(__nccwpck_require__(1201), exports); +tslib_1.__exportStar(__nccwpck_require__(4515), exports); +tslib_1.__exportStar(__nccwpck_require__(6712), exports); +tslib_1.__exportStar(__nccwpck_require__(771), exports); +tslib_1.__exportStar(__nccwpck_require__(577), exports); +tslib_1.__exportStar(__nccwpck_require__(7437), exports); +tslib_1.__exportStar(__nccwpck_require__(5039), exports); +tslib_1.__exportStar(__nccwpck_require__(15), exports); +tslib_1.__exportStar(__nccwpck_require__(3758), exports); +tslib_1.__exportStar(__nccwpck_require__(4789), exports); +tslib_1.__exportStar(__nccwpck_require__(5017), exports); +tslib_1.__exportStar(__nccwpck_require__(1523), exports); +tslib_1.__exportStar(__nccwpck_require__(3448), exports); +tslib_1.__exportStar(__nccwpck_require__(7566), exports); +tslib_1.__exportStar(__nccwpck_require__(8694), exports); +tslib_1.__exportStar(__nccwpck_require__(9404), exports); +tslib_1.__exportStar(__nccwpck_require__(111), exports); +tslib_1.__exportStar(__nccwpck_require__(7897), exports); +tslib_1.__exportStar(__nccwpck_require__(6488), exports); +tslib_1.__exportStar(__nccwpck_require__(9268), exports); +tslib_1.__exportStar(__nccwpck_require__(6909), exports); +tslib_1.__exportStar(__nccwpck_require__(5329), exports); +tslib_1.__exportStar(__nccwpck_require__(397), exports); +tslib_1.__exportStar(__nccwpck_require__(7698), exports); +tslib_1.__exportStar(__nccwpck_require__(4962), exports); +tslib_1.__exportStar(__nccwpck_require__(3945), exports); +tslib_1.__exportStar(__nccwpck_require__(8318), exports); tslib_1.__exportStar(__nccwpck_require__(852), exports); -tslib_1.__exportStar(__nccwpck_require__(9253), exports); -tslib_1.__exportStar(__nccwpck_require__(138), exports); -tslib_1.__exportStar(__nccwpck_require__(7223), exports); -tslib_1.__exportStar(__nccwpck_require__(6469), exports); +tslib_1.__exportStar(__nccwpck_require__(6884), exports); +tslib_1.__exportStar(__nccwpck_require__(91), exports); +tslib_1.__exportStar(__nccwpck_require__(6974), exports); +tslib_1.__exportStar(__nccwpck_require__(4134), exports); +tslib_1.__exportStar(__nccwpck_require__(6477), exports); tslib_1.__exportStar(__nccwpck_require__(5089), exports); -tslib_1.__exportStar(__nccwpck_require__(9177), exports); -tslib_1.__exportStar(__nccwpck_require__(3682), exports); -tslib_1.__exportStar(__nccwpck_require__(6485), exports); -tslib_1.__exportStar(__nccwpck_require__(4035), exports); -tslib_1.__exportStar(__nccwpck_require__(4690), exports); -tslib_1.__exportStar(__nccwpck_require__(305), exports); -tslib_1.__exportStar(__nccwpck_require__(6554), exports); -tslib_1.__exportStar(__nccwpck_require__(1480), exports); -tslib_1.__exportStar(__nccwpck_require__(6291), exports); -tslib_1.__exportStar(__nccwpck_require__(1665), exports); -tslib_1.__exportStar(__nccwpck_require__(9599), exports); -tslib_1.__exportStar(__nccwpck_require__(3206), exports); -tslib_1.__exportStar(__nccwpck_require__(7129), exports); -tslib_1.__exportStar(__nccwpck_require__(961), exports); -tslib_1.__exportStar(__nccwpck_require__(5442), exports); +tslib_1.__exportStar(__nccwpck_require__(2221), exports); +tslib_1.__exportStar(__nccwpck_require__(7477), exports); +tslib_1.__exportStar(__nccwpck_require__(5647), exports); +tslib_1.__exportStar(__nccwpck_require__(7728), exports); +tslib_1.__exportStar(__nccwpck_require__(7033), exports); +tslib_1.__exportStar(__nccwpck_require__(9345), exports); +tslib_1.__exportStar(__nccwpck_require__(6261), exports); +tslib_1.__exportStar(__nccwpck_require__(7308), exports); +tslib_1.__exportStar(__nccwpck_require__(1043), exports); +tslib_1.__exportStar(__nccwpck_require__(3250), exports); +tslib_1.__exportStar(__nccwpck_require__(7577), exports); +tslib_1.__exportStar(__nccwpck_require__(32), exports); +tslib_1.__exportStar(__nccwpck_require__(3500), exports); +tslib_1.__exportStar(__nccwpck_require__(6445), exports); +tslib_1.__exportStar(__nccwpck_require__(325), exports); /***/ }), -/***/ 2640: +/***/ 88: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.defaultRegionInfoProvider = void 0; -const config_resolver_1 = __nccwpck_require__(9256); +const config_resolver_1 = __nccwpck_require__(6210); const regionHash = { "us-east-1": { variants: [ @@ -5744,6 +5759,7 @@ const partitionHash = { "fips-us-east-2", "fips-us-west-1", "fips-us-west-2", + "me-central-1", "me-south-1", "sa-east-1", "us-east-1", @@ -5855,7 +5871,7 @@ exports.defaultRegionInfoProvider = defaultRegionInfoProvider; /***/ }), -/***/ 2399: +/***/ 2862: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -5863,26 +5879,26 @@ exports.defaultRegionInfoProvider = defaultRegionInfoProvider; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ECSServiceException = void 0; const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(8046), exports); -tslib_1.__exportStar(__nccwpck_require__(4480), exports); -tslib_1.__exportStar(__nccwpck_require__(2054), exports); -tslib_1.__exportStar(__nccwpck_require__(7157), exports); -tslib_1.__exportStar(__nccwpck_require__(5916), exports); -tslib_1.__exportStar(__nccwpck_require__(6414), exports); -var ECSServiceException_1 = __nccwpck_require__(6438); +tslib_1.__exportStar(__nccwpck_require__(5357), exports); +tslib_1.__exportStar(__nccwpck_require__(2707), exports); +tslib_1.__exportStar(__nccwpck_require__(533), exports); +tslib_1.__exportStar(__nccwpck_require__(6494), exports); +tslib_1.__exportStar(__nccwpck_require__(3713), exports); +tslib_1.__exportStar(__nccwpck_require__(4888), exports); +var ECSServiceException_1 = __nccwpck_require__(7931); Object.defineProperty(exports, "ECSServiceException", ({ enumerable: true, get: function () { return ECSServiceException_1.ECSServiceException; } })); /***/ }), -/***/ 6438: +/***/ 7931: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ECSServiceException = void 0; -const smithy_client_1 = __nccwpck_require__(1529); +const smithy_client_1 = __nccwpck_require__(3118); class ECSServiceException extends smithy_client_1.ServiceException { constructor(options) { super(options); @@ -5894,19 +5910,19 @@ exports.ECSServiceException = ECSServiceException; /***/ }), -/***/ 7157: +/***/ 6494: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(3333), exports); +tslib_1.__exportStar(__nccwpck_require__(9594), exports); /***/ }), -/***/ 3333: +/***/ 9594: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -5918,8 +5934,8 @@ exports.PortMappingFilterSensitiveLog = exports.MountPointFilterSensitiveLog = e exports.ListAccountSettingsResponseFilterSensitiveLog = exports.ListAccountSettingsRequestFilterSensitiveLog = exports.ExecuteCommandResponseFilterSensitiveLog = exports.SessionFilterSensitiveLog = exports.ExecuteCommandRequestFilterSensitiveLog = exports.DiscoverPollEndpointResponseFilterSensitiveLog = exports.DiscoverPollEndpointRequestFilterSensitiveLog = exports.DescribeTaskSetsResponseFilterSensitiveLog = exports.DescribeTaskSetsRequestFilterSensitiveLog = exports.DescribeTasksResponseFilterSensitiveLog = exports.TaskFilterSensitiveLog = exports.TaskOverrideFilterSensitiveLog = exports.InferenceAcceleratorOverrideFilterSensitiveLog = exports.ContainerOverrideFilterSensitiveLog = exports.ContainerFilterSensitiveLog = exports.NetworkInterfaceFilterSensitiveLog = exports.NetworkBindingFilterSensitiveLog = exports.ManagedAgentFilterSensitiveLog = exports.DescribeTasksRequestFilterSensitiveLog = exports.DescribeTaskDefinitionResponseFilterSensitiveLog = exports.DescribeTaskDefinitionRequestFilterSensitiveLog = exports.DescribeServicesResponseFilterSensitiveLog = exports.DescribeServicesRequestFilterSensitiveLog = exports.DescribeContainerInstancesResponseFilterSensitiveLog = exports.DescribeContainerInstancesRequestFilterSensitiveLog = exports.DescribeClustersResponseFilterSensitiveLog = exports.DescribeClustersRequestFilterSensitiveLog = exports.DescribeCapacityProvidersResponseFilterSensitiveLog = exports.FailureFilterSensitiveLog = exports.DescribeCapacityProvidersRequestFilterSensitiveLog = exports.DeregisterTaskDefinitionResponseFilterSensitiveLog = exports.TaskDefinitionFilterSensitiveLog = exports.VolumeFilterSensitiveLog = exports.HostVolumePropertiesFilterSensitiveLog = exports.FSxWindowsFileServerVolumeConfigurationFilterSensitiveLog = exports.FSxWindowsFileServerAuthorizationConfigFilterSensitiveLog = exports.EFSVolumeConfigurationFilterSensitiveLog = exports.EFSAuthorizationConfigFilterSensitiveLog = exports.DockerVolumeConfigurationFilterSensitiveLog = exports.RuntimePlatformFilterSensitiveLog = exports.ProxyConfigurationFilterSensitiveLog = exports.TaskDefinitionPlacementConstraintFilterSensitiveLog = exports.InferenceAcceleratorFilterSensitiveLog = exports.EphemeralStorageFilterSensitiveLog = exports.ContainerDefinitionFilterSensitiveLog = exports.VolumeFromFilterSensitiveLog = exports.UlimitFilterSensitiveLog = exports.SystemControlFilterSensitiveLog = exports.ResourceRequirementFilterSensitiveLog = exports.RepositoryCredentialsFilterSensitiveLog = void 0; exports.UpdateCapacityProviderRequestFilterSensitiveLog = exports.AutoScalingGroupProviderUpdateFilterSensitiveLog = exports.UntagResourceResponseFilterSensitiveLog = exports.UntagResourceRequestFilterSensitiveLog = exports.TagResourceResponseFilterSensitiveLog = exports.TagResourceRequestFilterSensitiveLog = exports.SubmitTaskStateChangeResponseFilterSensitiveLog = exports.SubmitTaskStateChangeRequestFilterSensitiveLog = exports.ManagedAgentStateChangeFilterSensitiveLog = exports.ContainerStateChangeFilterSensitiveLog = exports.SubmitContainerStateChangeResponseFilterSensitiveLog = exports.SubmitContainerStateChangeRequestFilterSensitiveLog = exports.SubmitAttachmentStateChangesResponseFilterSensitiveLog = exports.SubmitAttachmentStateChangesRequestFilterSensitiveLog = exports.AttachmentStateChangeFilterSensitiveLog = exports.StopTaskResponseFilterSensitiveLog = exports.StopTaskRequestFilterSensitiveLog = exports.StartTaskResponseFilterSensitiveLog = exports.StartTaskRequestFilterSensitiveLog = exports.RunTaskResponseFilterSensitiveLog = exports.RunTaskRequestFilterSensitiveLog = exports.RegisterTaskDefinitionResponseFilterSensitiveLog = exports.RegisterTaskDefinitionRequestFilterSensitiveLog = exports.RegisterContainerInstanceResponseFilterSensitiveLog = exports.RegisterContainerInstanceRequestFilterSensitiveLog = exports.PlatformDeviceFilterSensitiveLog = exports.PutClusterCapacityProvidersResponseFilterSensitiveLog = exports.PutClusterCapacityProvidersRequestFilterSensitiveLog = exports.PutAttributesResponseFilterSensitiveLog = exports.PutAttributesRequestFilterSensitiveLog = exports.PutAccountSettingDefaultResponseFilterSensitiveLog = exports.PutAccountSettingDefaultRequestFilterSensitiveLog = exports.PutAccountSettingResponseFilterSensitiveLog = exports.PutAccountSettingRequestFilterSensitiveLog = exports.ListTasksResponseFilterSensitiveLog = exports.ListTasksRequestFilterSensitiveLog = exports.ListTaskDefinitionsResponseFilterSensitiveLog = exports.ListTaskDefinitionsRequestFilterSensitiveLog = exports.ListTaskDefinitionFamiliesResponseFilterSensitiveLog = exports.ListTaskDefinitionFamiliesRequestFilterSensitiveLog = exports.ListTagsForResourceResponseFilterSensitiveLog = exports.ListTagsForResourceRequestFilterSensitiveLog = exports.ListServicesResponseFilterSensitiveLog = exports.ListServicesRequestFilterSensitiveLog = exports.ListContainerInstancesResponseFilterSensitiveLog = exports.ListContainerInstancesRequestFilterSensitiveLog = exports.ListClustersResponseFilterSensitiveLog = exports.ListClustersRequestFilterSensitiveLog = exports.ListAttributesResponseFilterSensitiveLog = exports.ListAttributesRequestFilterSensitiveLog = void 0; exports.UpdateTaskSetResponseFilterSensitiveLog = exports.UpdateTaskSetRequestFilterSensitiveLog = exports.UpdateServicePrimaryTaskSetResponseFilterSensitiveLog = exports.UpdateServicePrimaryTaskSetRequestFilterSensitiveLog = exports.UpdateServiceResponseFilterSensitiveLog = exports.UpdateServiceRequestFilterSensitiveLog = exports.UpdateContainerInstancesStateResponseFilterSensitiveLog = exports.UpdateContainerInstancesStateRequestFilterSensitiveLog = exports.UpdateContainerAgentResponseFilterSensitiveLog = exports.UpdateContainerAgentRequestFilterSensitiveLog = exports.UpdateClusterSettingsResponseFilterSensitiveLog = exports.UpdateClusterSettingsRequestFilterSensitiveLog = exports.UpdateClusterResponseFilterSensitiveLog = exports.UpdateClusterRequestFilterSensitiveLog = exports.UpdateCapacityProviderResponseFilterSensitiveLog = void 0; -const smithy_client_1 = __nccwpck_require__(1529); -const ECSServiceException_1 = __nccwpck_require__(6438); +const smithy_client_1 = __nccwpck_require__(3118); +const ECSServiceException_1 = __nccwpck_require__(7931); class AccessDeniedException extends ECSServiceException_1.ECSServiceException { constructor(opts) { super({ @@ -7306,7 +7322,7 @@ exports.UpdateTaskSetResponseFilterSensitiveLog = UpdateTaskSetResponseFilterSen /***/ }), -/***/ 8360: +/***/ 3608: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -7316,16 +7332,16 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); /***/ }), -/***/ 1333: +/***/ 4636: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.paginateListAccountSettings = void 0; -const ListAccountSettingsCommand_1 = __nccwpck_require__(5248); -const ECS_1 = __nccwpck_require__(8046); -const ECSClient_1 = __nccwpck_require__(4480); +const ListAccountSettingsCommand_1 = __nccwpck_require__(6488); +const ECS_1 = __nccwpck_require__(5357); +const ECSClient_1 = __nccwpck_require__(2707); const makePagedClientRequest = async (client, input, ...args) => { return await client.send(new ListAccountSettingsCommand_1.ListAccountSettingsCommand(input), ...args); }; @@ -7360,16 +7376,16 @@ exports.paginateListAccountSettings = paginateListAccountSettings; /***/ }), -/***/ 8903: +/***/ 7406: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.paginateListAttributes = void 0; -const ListAttributesCommand_1 = __nccwpck_require__(7332); -const ECS_1 = __nccwpck_require__(8046); -const ECSClient_1 = __nccwpck_require__(4480); +const ListAttributesCommand_1 = __nccwpck_require__(9268); +const ECS_1 = __nccwpck_require__(5357); +const ECSClient_1 = __nccwpck_require__(2707); const makePagedClientRequest = async (client, input, ...args) => { return await client.send(new ListAttributesCommand_1.ListAttributesCommand(input), ...args); }; @@ -7404,16 +7420,16 @@ exports.paginateListAttributes = paginateListAttributes; /***/ }), -/***/ 1893: +/***/ 6235: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.paginateListClusters = void 0; -const ListClustersCommand_1 = __nccwpck_require__(7055); -const ECS_1 = __nccwpck_require__(8046); -const ECSClient_1 = __nccwpck_require__(4480); +const ListClustersCommand_1 = __nccwpck_require__(6909); +const ECS_1 = __nccwpck_require__(5357); +const ECSClient_1 = __nccwpck_require__(2707); const makePagedClientRequest = async (client, input, ...args) => { return await client.send(new ListClustersCommand_1.ListClustersCommand(input), ...args); }; @@ -7448,16 +7464,16 @@ exports.paginateListClusters = paginateListClusters; /***/ }), -/***/ 7011: +/***/ 9243: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.paginateListContainerInstances = void 0; -const ListContainerInstancesCommand_1 = __nccwpck_require__(2543); -const ECS_1 = __nccwpck_require__(8046); -const ECSClient_1 = __nccwpck_require__(4480); +const ListContainerInstancesCommand_1 = __nccwpck_require__(5329); +const ECS_1 = __nccwpck_require__(5357); +const ECSClient_1 = __nccwpck_require__(2707); const makePagedClientRequest = async (client, input, ...args) => { return await client.send(new ListContainerInstancesCommand_1.ListContainerInstancesCommand(input), ...args); }; @@ -7492,16 +7508,16 @@ exports.paginateListContainerInstances = paginateListContainerInstances; /***/ }), -/***/ 6201: +/***/ 1567: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.paginateListServices = void 0; -const ListServicesCommand_1 = __nccwpck_require__(7957); -const ECS_1 = __nccwpck_require__(8046); -const ECSClient_1 = __nccwpck_require__(4480); +const ListServicesCommand_1 = __nccwpck_require__(397); +const ECS_1 = __nccwpck_require__(5357); +const ECSClient_1 = __nccwpck_require__(2707); const makePagedClientRequest = async (client, input, ...args) => { return await client.send(new ListServicesCommand_1.ListServicesCommand(input), ...args); }; @@ -7536,16 +7552,16 @@ exports.paginateListServices = paginateListServices; /***/ }), -/***/ 2895: +/***/ 1349: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.paginateListTaskDefinitionFamilies = void 0; -const ListTaskDefinitionFamiliesCommand_1 = __nccwpck_require__(2268); -const ECS_1 = __nccwpck_require__(8046); -const ECSClient_1 = __nccwpck_require__(4480); +const ListTaskDefinitionFamiliesCommand_1 = __nccwpck_require__(4962); +const ECS_1 = __nccwpck_require__(5357); +const ECSClient_1 = __nccwpck_require__(2707); const makePagedClientRequest = async (client, input, ...args) => { return await client.send(new ListTaskDefinitionFamiliesCommand_1.ListTaskDefinitionFamiliesCommand(input), ...args); }; @@ -7580,16 +7596,16 @@ exports.paginateListTaskDefinitionFamilies = paginateListTaskDefinitionFamilies; /***/ }), -/***/ 4997: +/***/ 8546: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.paginateListTaskDefinitions = void 0; -const ListTaskDefinitionsCommand_1 = __nccwpck_require__(415); -const ECS_1 = __nccwpck_require__(8046); -const ECSClient_1 = __nccwpck_require__(4480); +const ListTaskDefinitionsCommand_1 = __nccwpck_require__(3945); +const ECS_1 = __nccwpck_require__(5357); +const ECSClient_1 = __nccwpck_require__(2707); const makePagedClientRequest = async (client, input, ...args) => { return await client.send(new ListTaskDefinitionsCommand_1.ListTaskDefinitionsCommand(input), ...args); }; @@ -7624,16 +7640,16 @@ exports.paginateListTaskDefinitions = paginateListTaskDefinitions; /***/ }), -/***/ 4448: +/***/ 6189: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.paginateListTasks = void 0; -const ListTasksCommand_1 = __nccwpck_require__(5026); -const ECS_1 = __nccwpck_require__(8046); -const ECSClient_1 = __nccwpck_require__(4480); +const ListTasksCommand_1 = __nccwpck_require__(8318); +const ECS_1 = __nccwpck_require__(5357); +const ECSClient_1 = __nccwpck_require__(2707); const makePagedClientRequest = async (client, input, ...args) => { return await client.send(new ListTasksCommand_1.ListTasksCommand(input), ...args); }; @@ -7668,27 +7684,27 @@ exports.paginateListTasks = paginateListTasks; /***/ }), -/***/ 5916: +/***/ 3713: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(8360), exports); -tslib_1.__exportStar(__nccwpck_require__(1333), exports); -tslib_1.__exportStar(__nccwpck_require__(8903), exports); -tslib_1.__exportStar(__nccwpck_require__(1893), exports); -tslib_1.__exportStar(__nccwpck_require__(7011), exports); -tslib_1.__exportStar(__nccwpck_require__(6201), exports); -tslib_1.__exportStar(__nccwpck_require__(2895), exports); -tslib_1.__exportStar(__nccwpck_require__(4997), exports); -tslib_1.__exportStar(__nccwpck_require__(4448), exports); +tslib_1.__exportStar(__nccwpck_require__(3608), exports); +tslib_1.__exportStar(__nccwpck_require__(4636), exports); +tslib_1.__exportStar(__nccwpck_require__(7406), exports); +tslib_1.__exportStar(__nccwpck_require__(6235), exports); +tslib_1.__exportStar(__nccwpck_require__(9243), exports); +tslib_1.__exportStar(__nccwpck_require__(1567), exports); +tslib_1.__exportStar(__nccwpck_require__(1349), exports); +tslib_1.__exportStar(__nccwpck_require__(8546), exports); +tslib_1.__exportStar(__nccwpck_require__(6189), exports); /***/ }), -/***/ 9517: +/***/ 4175: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -7697,10 +7713,10 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); exports.serializeAws_json1_1UpdateServiceCommand = exports.serializeAws_json1_1UpdateContainerInstancesStateCommand = exports.serializeAws_json1_1UpdateContainerAgentCommand = exports.serializeAws_json1_1UpdateClusterSettingsCommand = exports.serializeAws_json1_1UpdateClusterCommand = exports.serializeAws_json1_1UpdateCapacityProviderCommand = exports.serializeAws_json1_1UntagResourceCommand = exports.serializeAws_json1_1TagResourceCommand = exports.serializeAws_json1_1SubmitTaskStateChangeCommand = exports.serializeAws_json1_1SubmitContainerStateChangeCommand = exports.serializeAws_json1_1SubmitAttachmentStateChangesCommand = exports.serializeAws_json1_1StopTaskCommand = exports.serializeAws_json1_1StartTaskCommand = exports.serializeAws_json1_1RunTaskCommand = exports.serializeAws_json1_1RegisterTaskDefinitionCommand = exports.serializeAws_json1_1RegisterContainerInstanceCommand = exports.serializeAws_json1_1PutClusterCapacityProvidersCommand = exports.serializeAws_json1_1PutAttributesCommand = exports.serializeAws_json1_1PutAccountSettingDefaultCommand = exports.serializeAws_json1_1PutAccountSettingCommand = exports.serializeAws_json1_1ListTasksCommand = exports.serializeAws_json1_1ListTaskDefinitionsCommand = exports.serializeAws_json1_1ListTaskDefinitionFamiliesCommand = exports.serializeAws_json1_1ListTagsForResourceCommand = exports.serializeAws_json1_1ListServicesCommand = exports.serializeAws_json1_1ListContainerInstancesCommand = exports.serializeAws_json1_1ListClustersCommand = exports.serializeAws_json1_1ListAttributesCommand = exports.serializeAws_json1_1ListAccountSettingsCommand = exports.serializeAws_json1_1ExecuteCommandCommand = exports.serializeAws_json1_1DiscoverPollEndpointCommand = exports.serializeAws_json1_1DescribeTaskSetsCommand = exports.serializeAws_json1_1DescribeTasksCommand = exports.serializeAws_json1_1DescribeTaskDefinitionCommand = exports.serializeAws_json1_1DescribeServicesCommand = exports.serializeAws_json1_1DescribeContainerInstancesCommand = exports.serializeAws_json1_1DescribeClustersCommand = exports.serializeAws_json1_1DescribeCapacityProvidersCommand = exports.serializeAws_json1_1DeregisterTaskDefinitionCommand = exports.serializeAws_json1_1DeregisterContainerInstanceCommand = exports.serializeAws_json1_1DeleteTaskSetCommand = exports.serializeAws_json1_1DeleteServiceCommand = exports.serializeAws_json1_1DeleteClusterCommand = exports.serializeAws_json1_1DeleteCapacityProviderCommand = exports.serializeAws_json1_1DeleteAttributesCommand = exports.serializeAws_json1_1DeleteAccountSettingCommand = exports.serializeAws_json1_1CreateTaskSetCommand = exports.serializeAws_json1_1CreateServiceCommand = exports.serializeAws_json1_1CreateClusterCommand = exports.serializeAws_json1_1CreateCapacityProviderCommand = void 0; exports.deserializeAws_json1_1UpdateContainerAgentCommand = exports.deserializeAws_json1_1UpdateClusterSettingsCommand = exports.deserializeAws_json1_1UpdateClusterCommand = exports.deserializeAws_json1_1UpdateCapacityProviderCommand = exports.deserializeAws_json1_1UntagResourceCommand = exports.deserializeAws_json1_1TagResourceCommand = exports.deserializeAws_json1_1SubmitTaskStateChangeCommand = exports.deserializeAws_json1_1SubmitContainerStateChangeCommand = exports.deserializeAws_json1_1SubmitAttachmentStateChangesCommand = exports.deserializeAws_json1_1StopTaskCommand = exports.deserializeAws_json1_1StartTaskCommand = exports.deserializeAws_json1_1RunTaskCommand = exports.deserializeAws_json1_1RegisterTaskDefinitionCommand = exports.deserializeAws_json1_1RegisterContainerInstanceCommand = exports.deserializeAws_json1_1PutClusterCapacityProvidersCommand = exports.deserializeAws_json1_1PutAttributesCommand = exports.deserializeAws_json1_1PutAccountSettingDefaultCommand = exports.deserializeAws_json1_1PutAccountSettingCommand = exports.deserializeAws_json1_1ListTasksCommand = exports.deserializeAws_json1_1ListTaskDefinitionsCommand = exports.deserializeAws_json1_1ListTaskDefinitionFamiliesCommand = exports.deserializeAws_json1_1ListTagsForResourceCommand = exports.deserializeAws_json1_1ListServicesCommand = exports.deserializeAws_json1_1ListContainerInstancesCommand = exports.deserializeAws_json1_1ListClustersCommand = exports.deserializeAws_json1_1ListAttributesCommand = exports.deserializeAws_json1_1ListAccountSettingsCommand = exports.deserializeAws_json1_1ExecuteCommandCommand = exports.deserializeAws_json1_1DiscoverPollEndpointCommand = exports.deserializeAws_json1_1DescribeTaskSetsCommand = exports.deserializeAws_json1_1DescribeTasksCommand = exports.deserializeAws_json1_1DescribeTaskDefinitionCommand = exports.deserializeAws_json1_1DescribeServicesCommand = exports.deserializeAws_json1_1DescribeContainerInstancesCommand = exports.deserializeAws_json1_1DescribeClustersCommand = exports.deserializeAws_json1_1DescribeCapacityProvidersCommand = exports.deserializeAws_json1_1DeregisterTaskDefinitionCommand = exports.deserializeAws_json1_1DeregisterContainerInstanceCommand = exports.deserializeAws_json1_1DeleteTaskSetCommand = exports.deserializeAws_json1_1DeleteServiceCommand = exports.deserializeAws_json1_1DeleteClusterCommand = exports.deserializeAws_json1_1DeleteCapacityProviderCommand = exports.deserializeAws_json1_1DeleteAttributesCommand = exports.deserializeAws_json1_1DeleteAccountSettingCommand = exports.deserializeAws_json1_1CreateTaskSetCommand = exports.deserializeAws_json1_1CreateServiceCommand = exports.deserializeAws_json1_1CreateClusterCommand = exports.deserializeAws_json1_1CreateCapacityProviderCommand = exports.serializeAws_json1_1UpdateTaskSetCommand = exports.serializeAws_json1_1UpdateServicePrimaryTaskSetCommand = void 0; exports.deserializeAws_json1_1UpdateTaskSetCommand = exports.deserializeAws_json1_1UpdateServicePrimaryTaskSetCommand = exports.deserializeAws_json1_1UpdateServiceCommand = exports.deserializeAws_json1_1UpdateContainerInstancesStateCommand = void 0; -const protocol_http_1 = __nccwpck_require__(9992); -const smithy_client_1 = __nccwpck_require__(1529); -const ECSServiceException_1 = __nccwpck_require__(6438); -const models_0_1 = __nccwpck_require__(3333); +const protocol_http_1 = __nccwpck_require__(4093); +const smithy_client_1 = __nccwpck_require__(3118); +const ECSServiceException_1 = __nccwpck_require__(7931); +const models_0_1 = __nccwpck_require__(9594); const serializeAws_json1_1CreateCapacityProviderCommand = async (input, context) => { const headers = { "content-type": "application/x-amz-json-1.1", @@ -8238,7 +8254,7 @@ exports.deserializeAws_json1_1CreateCapacityProviderCommand = deserializeAws_jso const deserializeAws_json1_1CreateCapacityProviderCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8284,7 +8300,7 @@ exports.deserializeAws_json1_1CreateClusterCommand = deserializeAws_json1_1Creat const deserializeAws_json1_1CreateClusterCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8324,7 +8340,7 @@ exports.deserializeAws_json1_1CreateServiceCommand = deserializeAws_json1_1Creat const deserializeAws_json1_1CreateServiceCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8379,7 +8395,7 @@ exports.deserializeAws_json1_1CreateTaskSetCommand = deserializeAws_json1_1Creat const deserializeAws_json1_1CreateTaskSetCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8440,7 +8456,7 @@ exports.deserializeAws_json1_1DeleteAccountSettingCommand = deserializeAws_json1 const deserializeAws_json1_1DeleteAccountSettingCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8480,7 +8496,7 @@ exports.deserializeAws_json1_1DeleteAttributesCommand = deserializeAws_json1_1De const deserializeAws_json1_1DeleteAttributesCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8520,7 +8536,7 @@ exports.deserializeAws_json1_1DeleteCapacityProviderCommand = deserializeAws_jso const deserializeAws_json1_1DeleteCapacityProviderCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8560,7 +8576,7 @@ exports.deserializeAws_json1_1DeleteClusterCommand = deserializeAws_json1_1Delet const deserializeAws_json1_1DeleteClusterCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8615,7 +8631,7 @@ exports.deserializeAws_json1_1DeleteServiceCommand = deserializeAws_json1_1Delet const deserializeAws_json1_1DeleteServiceCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8661,7 +8677,7 @@ exports.deserializeAws_json1_1DeleteTaskSetCommand = deserializeAws_json1_1Delet const deserializeAws_json1_1DeleteTaskSetCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8719,7 +8735,7 @@ exports.deserializeAws_json1_1DeregisterContainerInstanceCommand = deserializeAw const deserializeAws_json1_1DeregisterContainerInstanceCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8762,7 +8778,7 @@ exports.deserializeAws_json1_1DeregisterTaskDefinitionCommand = deserializeAws_j const deserializeAws_json1_1DeregisterTaskDefinitionCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8802,7 +8818,7 @@ exports.deserializeAws_json1_1DescribeCapacityProvidersCommand = deserializeAws_ const deserializeAws_json1_1DescribeCapacityProvidersCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8842,7 +8858,7 @@ exports.deserializeAws_json1_1DescribeClustersCommand = deserializeAws_json1_1De const deserializeAws_json1_1DescribeClustersCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8882,7 +8898,7 @@ exports.deserializeAws_json1_1DescribeContainerInstancesCommand = deserializeAws const deserializeAws_json1_1DescribeContainerInstancesCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8925,7 +8941,7 @@ exports.deserializeAws_json1_1DescribeServicesCommand = deserializeAws_json1_1De const deserializeAws_json1_1DescribeServicesCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -8968,7 +8984,7 @@ exports.deserializeAws_json1_1DescribeTaskDefinitionCommand = deserializeAws_jso const deserializeAws_json1_1DescribeTaskDefinitionCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9008,7 +9024,7 @@ exports.deserializeAws_json1_1DescribeTasksCommand = deserializeAws_json1_1Descr const deserializeAws_json1_1DescribeTasksCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9051,7 +9067,7 @@ exports.deserializeAws_json1_1DescribeTaskSetsCommand = deserializeAws_json1_1De const deserializeAws_json1_1DescribeTaskSetsCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9106,7 +9122,7 @@ exports.deserializeAws_json1_1DiscoverPollEndpointCommand = deserializeAws_json1 const deserializeAws_json1_1DiscoverPollEndpointCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9143,7 +9159,7 @@ exports.deserializeAws_json1_1ExecuteCommandCommand = deserializeAws_json1_1Exec const deserializeAws_json1_1ExecuteCommandCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9192,7 +9208,7 @@ exports.deserializeAws_json1_1ListAccountSettingsCommand = deserializeAws_json1_ const deserializeAws_json1_1ListAccountSettingsCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9232,7 +9248,7 @@ exports.deserializeAws_json1_1ListAttributesCommand = deserializeAws_json1_1List const deserializeAws_json1_1ListAttributesCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9269,7 +9285,7 @@ exports.deserializeAws_json1_1ListClustersCommand = deserializeAws_json1_1ListCl const deserializeAws_json1_1ListClustersCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9309,7 +9325,7 @@ exports.deserializeAws_json1_1ListContainerInstancesCommand = deserializeAws_jso const deserializeAws_json1_1ListContainerInstancesCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9352,7 +9368,7 @@ exports.deserializeAws_json1_1ListServicesCommand = deserializeAws_json1_1ListSe const deserializeAws_json1_1ListServicesCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9395,7 +9411,7 @@ exports.deserializeAws_json1_1ListTagsForResourceCommand = deserializeAws_json1_ const deserializeAws_json1_1ListTagsForResourceCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9438,7 +9454,7 @@ exports.deserializeAws_json1_1ListTaskDefinitionFamiliesCommand = deserializeAws const deserializeAws_json1_1ListTaskDefinitionFamiliesCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9478,7 +9494,7 @@ exports.deserializeAws_json1_1ListTaskDefinitionsCommand = deserializeAws_json1_ const deserializeAws_json1_1ListTaskDefinitionsCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9518,7 +9534,7 @@ exports.deserializeAws_json1_1ListTasksCommand = deserializeAws_json1_1ListTasks const deserializeAws_json1_1ListTasksCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9564,7 +9580,7 @@ exports.deserializeAws_json1_1PutAccountSettingCommand = deserializeAws_json1_1P const deserializeAws_json1_1PutAccountSettingCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9604,7 +9620,7 @@ exports.deserializeAws_json1_1PutAccountSettingDefaultCommand = deserializeAws_j const deserializeAws_json1_1PutAccountSettingDefaultCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9644,7 +9660,7 @@ exports.deserializeAws_json1_1PutAttributesCommand = deserializeAws_json1_1PutAt const deserializeAws_json1_1PutAttributesCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9687,7 +9703,7 @@ exports.deserializeAws_json1_1PutClusterCapacityProvidersCommand = deserializeAw const deserializeAws_json1_1PutClusterCapacityProvidersCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9736,7 +9752,7 @@ exports.deserializeAws_json1_1RegisterContainerInstanceCommand = deserializeAws_ const deserializeAws_json1_1RegisterContainerInstanceCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9776,7 +9792,7 @@ exports.deserializeAws_json1_1RegisterTaskDefinitionCommand = deserializeAws_jso const deserializeAws_json1_1RegisterTaskDefinitionCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9816,7 +9832,7 @@ exports.deserializeAws_json1_1RunTaskCommand = deserializeAws_json1_1RunTaskComm const deserializeAws_json1_1RunTaskCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9874,7 +9890,7 @@ exports.deserializeAws_json1_1StartTaskCommand = deserializeAws_json1_1StartTask const deserializeAws_json1_1StartTaskCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9917,7 +9933,7 @@ exports.deserializeAws_json1_1StopTaskCommand = deserializeAws_json1_1StopTaskCo const deserializeAws_json1_1StopTaskCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -9960,7 +9976,7 @@ exports.deserializeAws_json1_1SubmitAttachmentStateChangesCommand = deserializeA const deserializeAws_json1_1SubmitAttachmentStateChangesCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10003,7 +10019,7 @@ exports.deserializeAws_json1_1SubmitContainerStateChangeCommand = deserializeAws const deserializeAws_json1_1SubmitContainerStateChangeCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10043,7 +10059,7 @@ exports.deserializeAws_json1_1SubmitTaskStateChangeCommand = deserializeAws_json const deserializeAws_json1_1SubmitTaskStateChangeCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10086,7 +10102,7 @@ exports.deserializeAws_json1_1TagResourceCommand = deserializeAws_json1_1TagReso const deserializeAws_json1_1TagResourceCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10132,7 +10148,7 @@ exports.deserializeAws_json1_1UntagResourceCommand = deserializeAws_json1_1Untag const deserializeAws_json1_1UntagResourceCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10178,7 +10194,7 @@ exports.deserializeAws_json1_1UpdateCapacityProviderCommand = deserializeAws_jso const deserializeAws_json1_1UpdateCapacityProviderCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10218,7 +10234,7 @@ exports.deserializeAws_json1_1UpdateClusterCommand = deserializeAws_json1_1Updat const deserializeAws_json1_1UpdateClusterCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10261,7 +10277,7 @@ exports.deserializeAws_json1_1UpdateClusterSettingsCommand = deserializeAws_json const deserializeAws_json1_1UpdateClusterSettingsCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10304,7 +10320,7 @@ exports.deserializeAws_json1_1UpdateContainerAgentCommand = deserializeAws_json1 const deserializeAws_json1_1UpdateContainerAgentCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10356,7 +10372,7 @@ exports.deserializeAws_json1_1UpdateContainerInstancesStateCommand = deserialize const deserializeAws_json1_1UpdateContainerInstancesStateCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10399,7 +10415,7 @@ exports.deserializeAws_json1_1UpdateServiceCommand = deserializeAws_json1_1Updat const deserializeAws_json1_1UpdateServiceCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10457,7 +10473,7 @@ exports.deserializeAws_json1_1UpdateServicePrimaryTaskSetCommand = deserializeAw const deserializeAws_json1_1UpdateServicePrimaryTaskSetCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -10515,7 +10531,7 @@ exports.deserializeAws_json1_1UpdateTaskSetCommand = deserializeAws_json1_1Updat const deserializeAws_json1_1UpdateTaskSetCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -14191,6 +14207,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context } return {}; }); +const parseErrorBody = async (errorBody, context) => { + var _a; + const value = await parseBody(errorBody, context); + value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message; + return value; +}; const loadRestJsonErrorCode = (output, data) => { const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase()); const sanitizeErrorCode = (rawValue) => { @@ -14198,6 +14220,9 @@ const loadRestJsonErrorCode = (output, data) => { if (typeof cleanValue === "number") { cleanValue = cleanValue.toString(); } + if (cleanValue.indexOf(",") >= 0) { + cleanValue = cleanValue.split(",")[0]; + } if (cleanValue.indexOf(":") >= 0) { cleanValue = cleanValue.split(":")[0]; } @@ -14221,7 +14246,7 @@ const loadRestJsonErrorCode = (output, data) => { /***/ }), -/***/ 48: +/***/ 8751: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -14229,22 +14254,22 @@ const loadRestJsonErrorCode = (output, data) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getRuntimeConfig = void 0; const tslib_1 = __nccwpck_require__(1398); -const package_json_1 = tslib_1.__importDefault(__nccwpck_require__(5716)); -const client_sts_1 = __nccwpck_require__(6869); -const config_resolver_1 = __nccwpck_require__(9256); -const credential_provider_node_1 = __nccwpck_require__(7483); -const hash_node_1 = __nccwpck_require__(1330); -const middleware_retry_1 = __nccwpck_require__(6472); -const node_config_provider_1 = __nccwpck_require__(659); -const node_http_handler_1 = __nccwpck_require__(9044); -const util_base64_node_1 = __nccwpck_require__(3994); -const util_body_length_node_1 = __nccwpck_require__(2451); -const util_user_agent_node_1 = __nccwpck_require__(9323); -const util_utf8_node_1 = __nccwpck_require__(7193); -const runtimeConfig_shared_1 = __nccwpck_require__(5802); -const smithy_client_1 = __nccwpck_require__(1529); -const util_defaults_mode_node_1 = __nccwpck_require__(1294); -const smithy_client_2 = __nccwpck_require__(1529); +const package_json_1 = tslib_1.__importDefault(__nccwpck_require__(1049)); +const client_sts_1 = __nccwpck_require__(8116); +const config_resolver_1 = __nccwpck_require__(6210); +const credential_provider_node_1 = __nccwpck_require__(5316); +const hash_node_1 = __nccwpck_require__(8280); +const middleware_retry_1 = __nccwpck_require__(3268); +const node_config_provider_1 = __nccwpck_require__(7160); +const node_http_handler_1 = __nccwpck_require__(9623); +const util_base64_node_1 = __nccwpck_require__(7572); +const util_body_length_node_1 = __nccwpck_require__(5303); +const util_user_agent_node_1 = __nccwpck_require__(2155); +const util_utf8_node_1 = __nccwpck_require__(5348); +const runtimeConfig_shared_1 = __nccwpck_require__(898); +const smithy_client_1 = __nccwpck_require__(3118); +const util_defaults_mode_node_1 = __nccwpck_require__(5403); +const smithy_client_2 = __nccwpck_require__(3118); const getRuntimeConfig = (config) => { var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q; (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version); @@ -14281,15 +14306,15 @@ exports.getRuntimeConfig = getRuntimeConfig; /***/ }), -/***/ 5802: +/***/ 898: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getRuntimeConfig = void 0; -const url_parser_1 = __nccwpck_require__(1864); -const endpoints_1 = __nccwpck_require__(2640); +const url_parser_1 = __nccwpck_require__(9108); +const endpoints_1 = __nccwpck_require__(88); const getRuntimeConfig = (config) => { var _a, _b, _c, _d, _e; return ({ @@ -14306,30 +14331,30 @@ exports.getRuntimeConfig = getRuntimeConfig; /***/ }), -/***/ 6414: +/***/ 4888: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(7029), exports); -tslib_1.__exportStar(__nccwpck_require__(8229), exports); -tslib_1.__exportStar(__nccwpck_require__(4960), exports); -tslib_1.__exportStar(__nccwpck_require__(3868), exports); +tslib_1.__exportStar(__nccwpck_require__(620), exports); +tslib_1.__exportStar(__nccwpck_require__(5110), exports); +tslib_1.__exportStar(__nccwpck_require__(9400), exports); +tslib_1.__exportStar(__nccwpck_require__(7598), exports); /***/ }), -/***/ 7029: +/***/ 620: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.waitUntilServicesInactive = exports.waitForServicesInactive = void 0; -const util_waiter_1 = __nccwpck_require__(1036); -const DescribeServicesCommand_1 = __nccwpck_require__(8825); +const util_waiter_1 = __nccwpck_require__(8161); +const DescribeServicesCommand_1 = __nccwpck_require__(3448); const checkState = async (client, input) => { let reason; try { @@ -14386,15 +14411,15 @@ exports.waitUntilServicesInactive = waitUntilServicesInactive; /***/ }), -/***/ 8229: +/***/ 5110: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.waitUntilServicesStable = exports.waitForServicesStable = void 0; -const util_waiter_1 = __nccwpck_require__(1036); -const DescribeServicesCommand_1 = __nccwpck_require__(8825); +const util_waiter_1 = __nccwpck_require__(8161); +const DescribeServicesCommand_1 = __nccwpck_require__(3448); const checkState = async (client, input) => { let reason; try { @@ -14478,15 +14503,15 @@ exports.waitUntilServicesStable = waitUntilServicesStable; /***/ }), -/***/ 4960: +/***/ 9400: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.waitUntilTasksRunning = exports.waitForTasksRunning = void 0; -const util_waiter_1 = __nccwpck_require__(1036); -const DescribeTasksCommand_1 = __nccwpck_require__(8309); +const util_waiter_1 = __nccwpck_require__(8161); +const DescribeTasksCommand_1 = __nccwpck_require__(9404); const checkState = async (client, input) => { let reason; try { @@ -14560,15 +14585,15 @@ exports.waitUntilTasksRunning = waitUntilTasksRunning; /***/ }), -/***/ 3868: +/***/ 7598: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.waitUntilTasksStopped = exports.waitForTasksStopped = void 0; -const util_waiter_1 = __nccwpck_require__(1036); -const DescribeTasksCommand_1 = __nccwpck_require__(8309); +const util_waiter_1 = __nccwpck_require__(8161); +const DescribeTasksCommand_1 = __nccwpck_require__(9404); const checkState = async (client, input) => { let reason; try { @@ -14612,18 +14637,18 @@ exports.waitUntilTasksStopped = waitUntilTasksStopped; /***/ }), -/***/ 2963: +/***/ 1167: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.SSO = void 0; -const GetRoleCredentialsCommand_1 = __nccwpck_require__(7503); -const ListAccountRolesCommand_1 = __nccwpck_require__(4443); -const ListAccountsCommand_1 = __nccwpck_require__(5429); -const LogoutCommand_1 = __nccwpck_require__(9510); -const SSOClient_1 = __nccwpck_require__(9777); +const GetRoleCredentialsCommand_1 = __nccwpck_require__(6171); +const ListAccountRolesCommand_1 = __nccwpck_require__(4627); +const ListAccountsCommand_1 = __nccwpck_require__(3690); +const LogoutCommand_1 = __nccwpck_require__(1191); +const SSOClient_1 = __nccwpck_require__(5119); class SSO extends SSOClient_1.SSOClient { getRoleCredentials(args, optionsOrCb, cb) { const command = new GetRoleCredentialsCommand_1.GetRoleCredentialsCommand(args); @@ -14687,22 +14712,22 @@ exports.SSO = SSO; /***/ }), -/***/ 9777: +/***/ 5119: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.SSOClient = void 0; -const config_resolver_1 = __nccwpck_require__(9256); -const middleware_content_length_1 = __nccwpck_require__(3654); -const middleware_host_header_1 = __nccwpck_require__(4481); -const middleware_logger_1 = __nccwpck_require__(3272); -const middleware_recursion_detection_1 = __nccwpck_require__(9585); -const middleware_retry_1 = __nccwpck_require__(6472); -const middleware_user_agent_1 = __nccwpck_require__(5508); -const smithy_client_1 = __nccwpck_require__(1529); -const runtimeConfig_1 = __nccwpck_require__(7766); +const config_resolver_1 = __nccwpck_require__(6210); +const middleware_content_length_1 = __nccwpck_require__(1553); +const middleware_host_header_1 = __nccwpck_require__(278); +const middleware_logger_1 = __nccwpck_require__(130); +const middleware_recursion_detection_1 = __nccwpck_require__(251); +const middleware_retry_1 = __nccwpck_require__(3268); +const middleware_user_agent_1 = __nccwpck_require__(2467); +const smithy_client_1 = __nccwpck_require__(3118); +const runtimeConfig_1 = __nccwpck_require__(1630); class SSOClient extends smithy_client_1.Client { constructor(configuration) { const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration); @@ -14729,17 +14754,17 @@ exports.SSOClient = SSOClient; /***/ }), -/***/ 7503: +/***/ 6171: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.GetRoleCredentialsCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(8767); -const Aws_restJson1_1 = __nccwpck_require__(8467); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(4613); +const Aws_restJson1_1 = __nccwpck_require__(565); class GetRoleCredentialsCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -14773,17 +14798,17 @@ exports.GetRoleCredentialsCommand = GetRoleCredentialsCommand; /***/ }), -/***/ 4443: +/***/ 4627: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ListAccountRolesCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(8767); -const Aws_restJson1_1 = __nccwpck_require__(8467); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(4613); +const Aws_restJson1_1 = __nccwpck_require__(565); class ListAccountRolesCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -14817,17 +14842,17 @@ exports.ListAccountRolesCommand = ListAccountRolesCommand; /***/ }), -/***/ 5429: +/***/ 3690: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ListAccountsCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(8767); -const Aws_restJson1_1 = __nccwpck_require__(8467); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(4613); +const Aws_restJson1_1 = __nccwpck_require__(565); class ListAccountsCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -14861,17 +14886,17 @@ exports.ListAccountsCommand = ListAccountsCommand; /***/ }), -/***/ 9510: +/***/ 1191: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.LogoutCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(8767); -const Aws_restJson1_1 = __nccwpck_require__(8467); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(4613); +const Aws_restJson1_1 = __nccwpck_require__(565); class LogoutCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -14905,29 +14930,29 @@ exports.LogoutCommand = LogoutCommand; /***/ }), -/***/ 2714: +/***/ 7852: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(7503), exports); -tslib_1.__exportStar(__nccwpck_require__(4443), exports); -tslib_1.__exportStar(__nccwpck_require__(5429), exports); -tslib_1.__exportStar(__nccwpck_require__(9510), exports); +tslib_1.__exportStar(__nccwpck_require__(6171), exports); +tslib_1.__exportStar(__nccwpck_require__(4627), exports); +tslib_1.__exportStar(__nccwpck_require__(3690), exports); +tslib_1.__exportStar(__nccwpck_require__(1191), exports); /***/ }), -/***/ 8625: +/***/ 7769: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.defaultRegionInfoProvider = void 0; -const config_resolver_1 = __nccwpck_require__(9256); +const config_resolver_1 = __nccwpck_require__(6210); const regionHash = { "ap-east-1": { variants: [ @@ -15138,6 +15163,7 @@ const partitionHash = { "eu-west-1", "eu-west-2", "eu-west-3", + "me-central-1", "me-south-1", "sa-east-1", "us-east-1", @@ -15249,7 +15275,7 @@ exports.defaultRegionInfoProvider = defaultRegionInfoProvider; /***/ }), -/***/ 7984: +/***/ 4320: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -15257,25 +15283,25 @@ exports.defaultRegionInfoProvider = defaultRegionInfoProvider; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.SSOServiceException = void 0; const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(2963), exports); -tslib_1.__exportStar(__nccwpck_require__(9777), exports); -tslib_1.__exportStar(__nccwpck_require__(2714), exports); -tslib_1.__exportStar(__nccwpck_require__(1222), exports); -tslib_1.__exportStar(__nccwpck_require__(7176), exports); -var SSOServiceException_1 = __nccwpck_require__(7511); +tslib_1.__exportStar(__nccwpck_require__(1167), exports); +tslib_1.__exportStar(__nccwpck_require__(5119), exports); +tslib_1.__exportStar(__nccwpck_require__(7852), exports); +tslib_1.__exportStar(__nccwpck_require__(2872), exports); +tslib_1.__exportStar(__nccwpck_require__(6489), exports); +var SSOServiceException_1 = __nccwpck_require__(90); Object.defineProperty(exports, "SSOServiceException", ({ enumerable: true, get: function () { return SSOServiceException_1.SSOServiceException; } })); /***/ }), -/***/ 7511: +/***/ 90: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.SSOServiceException = void 0; -const smithy_client_1 = __nccwpck_require__(1529); +const smithy_client_1 = __nccwpck_require__(3118); class SSOServiceException extends smithy_client_1.ServiceException { constructor(options) { super(options); @@ -15287,27 +15313,27 @@ exports.SSOServiceException = SSOServiceException; /***/ }), -/***/ 1222: +/***/ 2872: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(8767), exports); +tslib_1.__exportStar(__nccwpck_require__(4613), exports); /***/ }), -/***/ 8767: +/***/ 4613: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.LogoutRequestFilterSensitiveLog = exports.ListAccountsResponseFilterSensitiveLog = exports.ListAccountsRequestFilterSensitiveLog = exports.ListAccountRolesResponseFilterSensitiveLog = exports.RoleInfoFilterSensitiveLog = exports.ListAccountRolesRequestFilterSensitiveLog = exports.GetRoleCredentialsResponseFilterSensitiveLog = exports.RoleCredentialsFilterSensitiveLog = exports.GetRoleCredentialsRequestFilterSensitiveLog = exports.AccountInfoFilterSensitiveLog = exports.UnauthorizedException = exports.TooManyRequestsException = exports.ResourceNotFoundException = exports.InvalidRequestException = void 0; -const smithy_client_1 = __nccwpck_require__(1529); -const SSOServiceException_1 = __nccwpck_require__(7511); +const smithy_client_1 = __nccwpck_require__(3118); +const SSOServiceException_1 = __nccwpck_require__(90); class InvalidRequestException extends SSOServiceException_1.SSOServiceException { constructor(opts) { super({ @@ -15411,7 +15437,7 @@ exports.LogoutRequestFilterSensitiveLog = LogoutRequestFilterSensitiveLog; /***/ }), -/***/ 4942: +/***/ 3543: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -15421,16 +15447,16 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); /***/ }), -/***/ 542: +/***/ 8697: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.paginateListAccountRoles = void 0; -const ListAccountRolesCommand_1 = __nccwpck_require__(4443); -const SSO_1 = __nccwpck_require__(2963); -const SSOClient_1 = __nccwpck_require__(9777); +const ListAccountRolesCommand_1 = __nccwpck_require__(4627); +const SSO_1 = __nccwpck_require__(1167); +const SSOClient_1 = __nccwpck_require__(5119); const makePagedClientRequest = async (client, input, ...args) => { return await client.send(new ListAccountRolesCommand_1.ListAccountRolesCommand(input), ...args); }; @@ -15465,16 +15491,16 @@ exports.paginateListAccountRoles = paginateListAccountRoles; /***/ }), -/***/ 2404: +/***/ 6301: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.paginateListAccounts = void 0; -const ListAccountsCommand_1 = __nccwpck_require__(5429); -const SSO_1 = __nccwpck_require__(2963); -const SSOClient_1 = __nccwpck_require__(9777); +const ListAccountsCommand_1 = __nccwpck_require__(3690); +const SSO_1 = __nccwpck_require__(1167); +const SSOClient_1 = __nccwpck_require__(5119); const makePagedClientRequest = async (client, input, ...args) => { return await client.send(new ListAccountsCommand_1.ListAccountsCommand(input), ...args); }; @@ -15509,31 +15535,31 @@ exports.paginateListAccounts = paginateListAccounts; /***/ }), -/***/ 7176: +/***/ 6489: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(4942), exports); -tslib_1.__exportStar(__nccwpck_require__(542), exports); -tslib_1.__exportStar(__nccwpck_require__(2404), exports); +tslib_1.__exportStar(__nccwpck_require__(3543), exports); +tslib_1.__exportStar(__nccwpck_require__(8697), exports); +tslib_1.__exportStar(__nccwpck_require__(6301), exports); /***/ }), -/***/ 8467: +/***/ 565: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.deserializeAws_restJson1LogoutCommand = exports.deserializeAws_restJson1ListAccountsCommand = exports.deserializeAws_restJson1ListAccountRolesCommand = exports.deserializeAws_restJson1GetRoleCredentialsCommand = exports.serializeAws_restJson1LogoutCommand = exports.serializeAws_restJson1ListAccountsCommand = exports.serializeAws_restJson1ListAccountRolesCommand = exports.serializeAws_restJson1GetRoleCredentialsCommand = void 0; -const protocol_http_1 = __nccwpck_require__(9992); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(8767); -const SSOServiceException_1 = __nccwpck_require__(7511); +const protocol_http_1 = __nccwpck_require__(4093); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(4613); +const SSOServiceException_1 = __nccwpck_require__(90); const serializeAws_restJson1GetRoleCredentialsCommand = async (input, context) => { const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); const headers = map({}, isSerializableHeaderValue, { @@ -15639,7 +15665,7 @@ exports.deserializeAws_restJson1GetRoleCredentialsCommand = deserializeAws_restJ const deserializeAws_restJson1GetRoleCredentialsCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -15685,7 +15711,7 @@ exports.deserializeAws_restJson1ListAccountRolesCommand = deserializeAws_restJso const deserializeAws_restJson1ListAccountRolesCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -15731,7 +15757,7 @@ exports.deserializeAws_restJson1ListAccountsCommand = deserializeAws_restJson1Li const deserializeAws_restJson1ListAccountsCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -15771,7 +15797,7 @@ exports.deserializeAws_restJson1LogoutCommand = deserializeAws_restJson1LogoutCo const deserializeAws_restJson1LogoutCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -15913,6 +15939,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context } return {}; }); +const parseErrorBody = async (errorBody, context) => { + var _a; + const value = await parseBody(errorBody, context); + value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message; + return value; +}; const loadRestJsonErrorCode = (output, data) => { const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase()); const sanitizeErrorCode = (rawValue) => { @@ -15920,6 +15952,9 @@ const loadRestJsonErrorCode = (output, data) => { if (typeof cleanValue === "number") { cleanValue = cleanValue.toString(); } + if (cleanValue.indexOf(",") >= 0) { + cleanValue = cleanValue.split(",")[0]; + } if (cleanValue.indexOf(":") >= 0) { cleanValue = cleanValue.split(":")[0]; } @@ -15943,7 +15978,7 @@ const loadRestJsonErrorCode = (output, data) => { /***/ }), -/***/ 7766: +/***/ 1630: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -15951,20 +15986,20 @@ const loadRestJsonErrorCode = (output, data) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getRuntimeConfig = void 0; const tslib_1 = __nccwpck_require__(1398); -const package_json_1 = tslib_1.__importDefault(__nccwpck_require__(1053)); -const config_resolver_1 = __nccwpck_require__(9256); -const hash_node_1 = __nccwpck_require__(1330); -const middleware_retry_1 = __nccwpck_require__(6472); -const node_config_provider_1 = __nccwpck_require__(659); -const node_http_handler_1 = __nccwpck_require__(9044); -const util_base64_node_1 = __nccwpck_require__(3994); -const util_body_length_node_1 = __nccwpck_require__(2451); -const util_user_agent_node_1 = __nccwpck_require__(9323); -const util_utf8_node_1 = __nccwpck_require__(7193); -const runtimeConfig_shared_1 = __nccwpck_require__(1211); -const smithy_client_1 = __nccwpck_require__(1529); -const util_defaults_mode_node_1 = __nccwpck_require__(1294); -const smithy_client_2 = __nccwpck_require__(1529); +const package_json_1 = tslib_1.__importDefault(__nccwpck_require__(6664)); +const config_resolver_1 = __nccwpck_require__(6210); +const hash_node_1 = __nccwpck_require__(8280); +const middleware_retry_1 = __nccwpck_require__(3268); +const node_config_provider_1 = __nccwpck_require__(7160); +const node_http_handler_1 = __nccwpck_require__(9623); +const util_base64_node_1 = __nccwpck_require__(7572); +const util_body_length_node_1 = __nccwpck_require__(5303); +const util_user_agent_node_1 = __nccwpck_require__(2155); +const util_utf8_node_1 = __nccwpck_require__(5348); +const runtimeConfig_shared_1 = __nccwpck_require__(474); +const smithy_client_1 = __nccwpck_require__(3118); +const util_defaults_mode_node_1 = __nccwpck_require__(5403); +const smithy_client_2 = __nccwpck_require__(3118); const getRuntimeConfig = (config) => { var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p; (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version); @@ -16000,15 +16035,15 @@ exports.getRuntimeConfig = getRuntimeConfig; /***/ }), -/***/ 1211: +/***/ 474: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getRuntimeConfig = void 0; -const url_parser_1 = __nccwpck_require__(1864); -const endpoints_1 = __nccwpck_require__(8625); +const url_parser_1 = __nccwpck_require__(9108); +const endpoints_1 = __nccwpck_require__(7769); const getRuntimeConfig = (config) => { var _a, _b, _c, _d, _e; return ({ @@ -16025,22 +16060,22 @@ exports.getRuntimeConfig = getRuntimeConfig; /***/ }), -/***/ 3663: +/***/ 2078: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.STS = void 0; -const AssumeRoleCommand_1 = __nccwpck_require__(9470); -const AssumeRoleWithSAMLCommand_1 = __nccwpck_require__(2853); -const AssumeRoleWithWebIdentityCommand_1 = __nccwpck_require__(2525); -const DecodeAuthorizationMessageCommand_1 = __nccwpck_require__(5184); -const GetAccessKeyInfoCommand_1 = __nccwpck_require__(2098); -const GetCallerIdentityCommand_1 = __nccwpck_require__(1896); -const GetFederationTokenCommand_1 = __nccwpck_require__(1918); -const GetSessionTokenCommand_1 = __nccwpck_require__(1117); -const STSClient_1 = __nccwpck_require__(6116); +const AssumeRoleCommand_1 = __nccwpck_require__(669); +const AssumeRoleWithSAMLCommand_1 = __nccwpck_require__(7305); +const AssumeRoleWithWebIdentityCommand_1 = __nccwpck_require__(1915); +const DecodeAuthorizationMessageCommand_1 = __nccwpck_require__(525); +const GetAccessKeyInfoCommand_1 = __nccwpck_require__(8360); +const GetCallerIdentityCommand_1 = __nccwpck_require__(9619); +const GetFederationTokenCommand_1 = __nccwpck_require__(6160); +const GetSessionTokenCommand_1 = __nccwpck_require__(7866); +const STSClient_1 = __nccwpck_require__(3350); class STS extends STSClient_1.STSClient { assumeRole(args, optionsOrCb, cb) { const command = new AssumeRoleCommand_1.AssumeRoleCommand(args); @@ -16160,23 +16195,23 @@ exports.STS = STS; /***/ }), -/***/ 6116: +/***/ 3350: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.STSClient = void 0; -const config_resolver_1 = __nccwpck_require__(9256); -const middleware_content_length_1 = __nccwpck_require__(3654); -const middleware_host_header_1 = __nccwpck_require__(4481); -const middleware_logger_1 = __nccwpck_require__(3272); -const middleware_recursion_detection_1 = __nccwpck_require__(9585); -const middleware_retry_1 = __nccwpck_require__(6472); -const middleware_sdk_sts_1 = __nccwpck_require__(5563); -const middleware_user_agent_1 = __nccwpck_require__(5508); -const smithy_client_1 = __nccwpck_require__(1529); -const runtimeConfig_1 = __nccwpck_require__(7922); +const config_resolver_1 = __nccwpck_require__(6210); +const middleware_content_length_1 = __nccwpck_require__(1553); +const middleware_host_header_1 = __nccwpck_require__(278); +const middleware_logger_1 = __nccwpck_require__(130); +const middleware_recursion_detection_1 = __nccwpck_require__(251); +const middleware_retry_1 = __nccwpck_require__(3268); +const middleware_sdk_sts_1 = __nccwpck_require__(2962); +const middleware_user_agent_1 = __nccwpck_require__(2467); +const smithy_client_1 = __nccwpck_require__(3118); +const runtimeConfig_1 = __nccwpck_require__(9838); class STSClient extends smithy_client_1.Client { constructor(configuration) { const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration); @@ -16204,18 +16239,18 @@ exports.STSClient = STSClient; /***/ }), -/***/ 9470: +/***/ 669: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.AssumeRoleCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const middleware_signing_1 = __nccwpck_require__(7146); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(1342); -const Aws_query_1 = __nccwpck_require__(7688); +const middleware_serde_1 = __nccwpck_require__(6599); +const middleware_signing_1 = __nccwpck_require__(342); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(3759); +const Aws_query_1 = __nccwpck_require__(8646); class AssumeRoleCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -16250,17 +16285,17 @@ exports.AssumeRoleCommand = AssumeRoleCommand; /***/ }), -/***/ 2853: +/***/ 7305: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.AssumeRoleWithSAMLCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(1342); -const Aws_query_1 = __nccwpck_require__(7688); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(3759); +const Aws_query_1 = __nccwpck_require__(8646); class AssumeRoleWithSAMLCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -16294,17 +16329,17 @@ exports.AssumeRoleWithSAMLCommand = AssumeRoleWithSAMLCommand; /***/ }), -/***/ 2525: +/***/ 1915: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.AssumeRoleWithWebIdentityCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(1342); -const Aws_query_1 = __nccwpck_require__(7688); +const middleware_serde_1 = __nccwpck_require__(6599); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(3759); +const Aws_query_1 = __nccwpck_require__(8646); class AssumeRoleWithWebIdentityCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -16338,18 +16373,18 @@ exports.AssumeRoleWithWebIdentityCommand = AssumeRoleWithWebIdentityCommand; /***/ }), -/***/ 5184: +/***/ 525: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DecodeAuthorizationMessageCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const middleware_signing_1 = __nccwpck_require__(7146); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(1342); -const Aws_query_1 = __nccwpck_require__(7688); +const middleware_serde_1 = __nccwpck_require__(6599); +const middleware_signing_1 = __nccwpck_require__(342); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(3759); +const Aws_query_1 = __nccwpck_require__(8646); class DecodeAuthorizationMessageCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -16384,18 +16419,18 @@ exports.DecodeAuthorizationMessageCommand = DecodeAuthorizationMessageCommand; /***/ }), -/***/ 2098: +/***/ 8360: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.GetAccessKeyInfoCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const middleware_signing_1 = __nccwpck_require__(7146); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(1342); -const Aws_query_1 = __nccwpck_require__(7688); +const middleware_serde_1 = __nccwpck_require__(6599); +const middleware_signing_1 = __nccwpck_require__(342); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(3759); +const Aws_query_1 = __nccwpck_require__(8646); class GetAccessKeyInfoCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -16430,18 +16465,18 @@ exports.GetAccessKeyInfoCommand = GetAccessKeyInfoCommand; /***/ }), -/***/ 1896: +/***/ 9619: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.GetCallerIdentityCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const middleware_signing_1 = __nccwpck_require__(7146); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(1342); -const Aws_query_1 = __nccwpck_require__(7688); +const middleware_serde_1 = __nccwpck_require__(6599); +const middleware_signing_1 = __nccwpck_require__(342); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(3759); +const Aws_query_1 = __nccwpck_require__(8646); class GetCallerIdentityCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -16476,18 +16511,18 @@ exports.GetCallerIdentityCommand = GetCallerIdentityCommand; /***/ }), -/***/ 1918: +/***/ 6160: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.GetFederationTokenCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const middleware_signing_1 = __nccwpck_require__(7146); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(1342); -const Aws_query_1 = __nccwpck_require__(7688); +const middleware_serde_1 = __nccwpck_require__(6599); +const middleware_signing_1 = __nccwpck_require__(342); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(3759); +const Aws_query_1 = __nccwpck_require__(8646); class GetFederationTokenCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -16522,18 +16557,18 @@ exports.GetFederationTokenCommand = GetFederationTokenCommand; /***/ }), -/***/ 1117: +/***/ 7866: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.GetSessionTokenCommand = void 0; -const middleware_serde_1 = __nccwpck_require__(5665); -const middleware_signing_1 = __nccwpck_require__(7146); -const smithy_client_1 = __nccwpck_require__(1529); -const models_0_1 = __nccwpck_require__(1342); -const Aws_query_1 = __nccwpck_require__(7688); +const middleware_serde_1 = __nccwpck_require__(6599); +const middleware_signing_1 = __nccwpck_require__(342); +const smithy_client_1 = __nccwpck_require__(3118); +const models_0_1 = __nccwpck_require__(3759); +const Aws_query_1 = __nccwpck_require__(8646); class GetSessionTokenCommand extends smithy_client_1.Command { constructor(input) { super(); @@ -16568,37 +16603,50 @@ exports.GetSessionTokenCommand = GetSessionTokenCommand; /***/ }), -/***/ 7559: +/***/ 4280: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(9470), exports); -tslib_1.__exportStar(__nccwpck_require__(2853), exports); -tslib_1.__exportStar(__nccwpck_require__(2525), exports); -tslib_1.__exportStar(__nccwpck_require__(5184), exports); -tslib_1.__exportStar(__nccwpck_require__(2098), exports); -tslib_1.__exportStar(__nccwpck_require__(1896), exports); -tslib_1.__exportStar(__nccwpck_require__(1918), exports); -tslib_1.__exportStar(__nccwpck_require__(1117), exports); +tslib_1.__exportStar(__nccwpck_require__(669), exports); +tslib_1.__exportStar(__nccwpck_require__(7305), exports); +tslib_1.__exportStar(__nccwpck_require__(1915), exports); +tslib_1.__exportStar(__nccwpck_require__(525), exports); +tslib_1.__exportStar(__nccwpck_require__(8360), exports); +tslib_1.__exportStar(__nccwpck_require__(9619), exports); +tslib_1.__exportStar(__nccwpck_require__(6160), exports); +tslib_1.__exportStar(__nccwpck_require__(7866), exports); /***/ }), -/***/ 2008: +/***/ 2396: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.decorateDefaultCredentialProvider = exports.getDefaultRoleAssumerWithWebIdentity = exports.getDefaultRoleAssumer = void 0; -const defaultStsRoleAssumers_1 = __nccwpck_require__(5432); -const STSClient_1 = __nccwpck_require__(6116); -const getDefaultRoleAssumer = (stsOptions = {}) => (0, defaultStsRoleAssumers_1.getDefaultRoleAssumer)(stsOptions, STSClient_1.STSClient); +const defaultStsRoleAssumers_1 = __nccwpck_require__(4082); +const STSClient_1 = __nccwpck_require__(3350); +const getCustomizableStsClientCtor = (baseCtor, customizations) => { + if (!customizations) + return baseCtor; + else + return class CustomizableSTSClient extends baseCtor { + constructor(config) { + super(config); + for (const customization of customizations) { + this.middlewareStack.use(customization); + } + } + }; +}; +const getDefaultRoleAssumer = (stsOptions = {}, stsPlugins) => (0, defaultStsRoleAssumers_1.getDefaultRoleAssumer)(stsOptions, getCustomizableStsClientCtor(STSClient_1.STSClient, stsPlugins)); exports.getDefaultRoleAssumer = getDefaultRoleAssumer; -const getDefaultRoleAssumerWithWebIdentity = (stsOptions = {}) => (0, defaultStsRoleAssumers_1.getDefaultRoleAssumerWithWebIdentity)(stsOptions, STSClient_1.STSClient); +const getDefaultRoleAssumerWithWebIdentity = (stsOptions = {}, stsPlugins) => (0, defaultStsRoleAssumers_1.getDefaultRoleAssumerWithWebIdentity)(stsOptions, getCustomizableStsClientCtor(STSClient_1.STSClient, stsPlugins)); exports.getDefaultRoleAssumerWithWebIdentity = getDefaultRoleAssumerWithWebIdentity; const decorateDefaultCredentialProvider = (provider) => (input) => provider({ roleAssumer: (0, exports.getDefaultRoleAssumer)(input), @@ -16610,15 +16658,15 @@ exports.decorateDefaultCredentialProvider = decorateDefaultCredentialProvider; /***/ }), -/***/ 5432: +/***/ 4082: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.decorateDefaultCredentialProvider = exports.getDefaultRoleAssumerWithWebIdentity = exports.getDefaultRoleAssumer = void 0; -const AssumeRoleCommand_1 = __nccwpck_require__(9470); -const AssumeRoleWithWebIdentityCommand_1 = __nccwpck_require__(2525); +const AssumeRoleCommand_1 = __nccwpck_require__(669); +const AssumeRoleWithWebIdentityCommand_1 = __nccwpck_require__(1915); const ASSUME_ROLE_DEFAULT_REGION = "us-east-1"; const decorateDefaultRegion = (region) => { if (typeof region !== "function") { @@ -16694,14 +16742,14 @@ exports.decorateDefaultCredentialProvider = decorateDefaultCredentialProvider; /***/ }), -/***/ 1087: +/***/ 9154: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.defaultRegionInfoProvider = void 0; -const config_resolver_1 = __nccwpck_require__(9256); +const config_resolver_1 = __nccwpck_require__(6210); const regionHash = { "aws-global": { variants: [ @@ -16781,6 +16829,7 @@ const partitionHash = { "eu-west-1", "eu-west-2", "eu-west-3", + "me-central-1", "me-south-1", "sa-east-1", "us-east-1", @@ -16896,7 +16945,7 @@ exports.defaultRegionInfoProvider = defaultRegionInfoProvider; /***/ }), -/***/ 6869: +/***/ 8116: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -16904,25 +16953,25 @@ exports.defaultRegionInfoProvider = defaultRegionInfoProvider; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.STSServiceException = void 0; const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(3663), exports); -tslib_1.__exportStar(__nccwpck_require__(6116), exports); -tslib_1.__exportStar(__nccwpck_require__(7559), exports); -tslib_1.__exportStar(__nccwpck_require__(2008), exports); -tslib_1.__exportStar(__nccwpck_require__(1057), exports); -var STSServiceException_1 = __nccwpck_require__(8304); +tslib_1.__exportStar(__nccwpck_require__(2078), exports); +tslib_1.__exportStar(__nccwpck_require__(3350), exports); +tslib_1.__exportStar(__nccwpck_require__(4280), exports); +tslib_1.__exportStar(__nccwpck_require__(2396), exports); +tslib_1.__exportStar(__nccwpck_require__(1922), exports); +var STSServiceException_1 = __nccwpck_require__(7269); Object.defineProperty(exports, "STSServiceException", ({ enumerable: true, get: function () { return STSServiceException_1.STSServiceException; } })); /***/ }), -/***/ 8304: +/***/ 7269: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.STSServiceException = void 0; -const smithy_client_1 = __nccwpck_require__(1529); +const smithy_client_1 = __nccwpck_require__(3118); class STSServiceException extends smithy_client_1.ServiceException { constructor(options) { super(options); @@ -16934,26 +16983,26 @@ exports.STSServiceException = STSServiceException; /***/ }), -/***/ 1057: +/***/ 1922: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(1342), exports); +tslib_1.__exportStar(__nccwpck_require__(3759), exports); /***/ }), -/***/ 1342: +/***/ 3759: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.GetSessionTokenResponseFilterSensitiveLog = exports.GetSessionTokenRequestFilterSensitiveLog = exports.GetFederationTokenResponseFilterSensitiveLog = exports.FederatedUserFilterSensitiveLog = exports.GetFederationTokenRequestFilterSensitiveLog = exports.GetCallerIdentityResponseFilterSensitiveLog = exports.GetCallerIdentityRequestFilterSensitiveLog = exports.GetAccessKeyInfoResponseFilterSensitiveLog = exports.GetAccessKeyInfoRequestFilterSensitiveLog = exports.DecodeAuthorizationMessageResponseFilterSensitiveLog = exports.DecodeAuthorizationMessageRequestFilterSensitiveLog = exports.AssumeRoleWithWebIdentityResponseFilterSensitiveLog = exports.AssumeRoleWithWebIdentityRequestFilterSensitiveLog = exports.AssumeRoleWithSAMLResponseFilterSensitiveLog = exports.AssumeRoleWithSAMLRequestFilterSensitiveLog = exports.AssumeRoleResponseFilterSensitiveLog = exports.CredentialsFilterSensitiveLog = exports.AssumeRoleRequestFilterSensitiveLog = exports.TagFilterSensitiveLog = exports.PolicyDescriptorTypeFilterSensitiveLog = exports.AssumedRoleUserFilterSensitiveLog = exports.InvalidAuthorizationMessageException = exports.IDPCommunicationErrorException = exports.InvalidIdentityTokenException = exports.IDPRejectedClaimException = exports.RegionDisabledException = exports.PackedPolicyTooLargeException = exports.MalformedPolicyDocumentException = exports.ExpiredTokenException = void 0; -const STSServiceException_1 = __nccwpck_require__(8304); +const STSServiceException_1 = __nccwpck_require__(7269); class ExpiredTokenException extends STSServiceException_1.STSServiceException { constructor(opts) { super({ @@ -17146,19 +17195,19 @@ exports.GetSessionTokenResponseFilterSensitiveLog = GetSessionTokenResponseFilte /***/ }), -/***/ 7688: +/***/ 8646: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.deserializeAws_queryGetSessionTokenCommand = exports.deserializeAws_queryGetFederationTokenCommand = exports.deserializeAws_queryGetCallerIdentityCommand = exports.deserializeAws_queryGetAccessKeyInfoCommand = exports.deserializeAws_queryDecodeAuthorizationMessageCommand = exports.deserializeAws_queryAssumeRoleWithWebIdentityCommand = exports.deserializeAws_queryAssumeRoleWithSAMLCommand = exports.deserializeAws_queryAssumeRoleCommand = exports.serializeAws_queryGetSessionTokenCommand = exports.serializeAws_queryGetFederationTokenCommand = exports.serializeAws_queryGetCallerIdentityCommand = exports.serializeAws_queryGetAccessKeyInfoCommand = exports.serializeAws_queryDecodeAuthorizationMessageCommand = exports.serializeAws_queryAssumeRoleWithWebIdentityCommand = exports.serializeAws_queryAssumeRoleWithSAMLCommand = exports.serializeAws_queryAssumeRoleCommand = void 0; -const protocol_http_1 = __nccwpck_require__(9992); -const smithy_client_1 = __nccwpck_require__(1529); +const protocol_http_1 = __nccwpck_require__(4093); +const smithy_client_1 = __nccwpck_require__(3118); const entities_1 = __nccwpck_require__(191); const fast_xml_parser_1 = __nccwpck_require__(1241); -const models_0_1 = __nccwpck_require__(1342); -const STSServiceException_1 = __nccwpck_require__(8304); +const models_0_1 = __nccwpck_require__(3759); +const STSServiceException_1 = __nccwpck_require__(7269); const serializeAws_queryAssumeRoleCommand = async (input, context) => { const headers = { "content-type": "application/x-www-form-urlencoded", @@ -17280,17 +17329,17 @@ exports.deserializeAws_queryAssumeRoleCommand = deserializeAws_queryAssumeRoleCo const deserializeAws_queryAssumeRoleCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadQueryErrorCode(output, parsedOutput.body); switch (errorCode) { case "ExpiredTokenException": case "com.amazonaws.sts#ExpiredTokenException": throw await deserializeAws_queryExpiredTokenExceptionResponse(parsedOutput, context); - case "MalformedPolicyDocumentException": + case "MalformedPolicyDocument": case "com.amazonaws.sts#MalformedPolicyDocumentException": throw await deserializeAws_queryMalformedPolicyDocumentExceptionResponse(parsedOutput, context); - case "PackedPolicyTooLargeException": + case "PackedPolicyTooLarge": case "com.amazonaws.sts#PackedPolicyTooLargeException": throw await deserializeAws_queryPackedPolicyTooLargeExceptionResponse(parsedOutput, context); case "RegionDisabledException": @@ -17323,23 +17372,23 @@ exports.deserializeAws_queryAssumeRoleWithSAMLCommand = deserializeAws_queryAssu const deserializeAws_queryAssumeRoleWithSAMLCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadQueryErrorCode(output, parsedOutput.body); switch (errorCode) { case "ExpiredTokenException": case "com.amazonaws.sts#ExpiredTokenException": throw await deserializeAws_queryExpiredTokenExceptionResponse(parsedOutput, context); - case "IDPRejectedClaimException": + case "IDPRejectedClaim": case "com.amazonaws.sts#IDPRejectedClaimException": throw await deserializeAws_queryIDPRejectedClaimExceptionResponse(parsedOutput, context); - case "InvalidIdentityTokenException": + case "InvalidIdentityToken": case "com.amazonaws.sts#InvalidIdentityTokenException": throw await deserializeAws_queryInvalidIdentityTokenExceptionResponse(parsedOutput, context); - case "MalformedPolicyDocumentException": + case "MalformedPolicyDocument": case "com.amazonaws.sts#MalformedPolicyDocumentException": throw await deserializeAws_queryMalformedPolicyDocumentExceptionResponse(parsedOutput, context); - case "PackedPolicyTooLargeException": + case "PackedPolicyTooLarge": case "com.amazonaws.sts#PackedPolicyTooLargeException": throw await deserializeAws_queryPackedPolicyTooLargeExceptionResponse(parsedOutput, context); case "RegionDisabledException": @@ -17372,26 +17421,26 @@ exports.deserializeAws_queryAssumeRoleWithWebIdentityCommand = deserializeAws_qu const deserializeAws_queryAssumeRoleWithWebIdentityCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadQueryErrorCode(output, parsedOutput.body); switch (errorCode) { case "ExpiredTokenException": case "com.amazonaws.sts#ExpiredTokenException": throw await deserializeAws_queryExpiredTokenExceptionResponse(parsedOutput, context); - case "IDPCommunicationErrorException": + case "IDPCommunicationError": case "com.amazonaws.sts#IDPCommunicationErrorException": throw await deserializeAws_queryIDPCommunicationErrorExceptionResponse(parsedOutput, context); - case "IDPRejectedClaimException": + case "IDPRejectedClaim": case "com.amazonaws.sts#IDPRejectedClaimException": throw await deserializeAws_queryIDPRejectedClaimExceptionResponse(parsedOutput, context); - case "InvalidIdentityTokenException": + case "InvalidIdentityToken": case "com.amazonaws.sts#InvalidIdentityTokenException": throw await deserializeAws_queryInvalidIdentityTokenExceptionResponse(parsedOutput, context); - case "MalformedPolicyDocumentException": + case "MalformedPolicyDocument": case "com.amazonaws.sts#MalformedPolicyDocumentException": throw await deserializeAws_queryMalformedPolicyDocumentExceptionResponse(parsedOutput, context); - case "PackedPolicyTooLargeException": + case "PackedPolicyTooLarge": case "com.amazonaws.sts#PackedPolicyTooLargeException": throw await deserializeAws_queryPackedPolicyTooLargeExceptionResponse(parsedOutput, context); case "RegionDisabledException": @@ -17424,7 +17473,7 @@ exports.deserializeAws_queryDecodeAuthorizationMessageCommand = deserializeAws_q const deserializeAws_queryDecodeAuthorizationMessageCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadQueryErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -17458,7 +17507,7 @@ exports.deserializeAws_queryGetAccessKeyInfoCommand = deserializeAws_queryGetAcc const deserializeAws_queryGetAccessKeyInfoCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadQueryErrorCode(output, parsedOutput.body); const parsedBody = parsedOutput.body; @@ -17486,7 +17535,7 @@ exports.deserializeAws_queryGetCallerIdentityCommand = deserializeAws_queryGetCa const deserializeAws_queryGetCallerIdentityCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadQueryErrorCode(output, parsedOutput.body); const parsedBody = parsedOutput.body; @@ -17514,14 +17563,14 @@ exports.deserializeAws_queryGetFederationTokenCommand = deserializeAws_queryGetF const deserializeAws_queryGetFederationTokenCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadQueryErrorCode(output, parsedOutput.body); switch (errorCode) { - case "MalformedPolicyDocumentException": + case "MalformedPolicyDocument": case "com.amazonaws.sts#MalformedPolicyDocumentException": throw await deserializeAws_queryMalformedPolicyDocumentExceptionResponse(parsedOutput, context); - case "PackedPolicyTooLargeException": + case "PackedPolicyTooLarge": case "com.amazonaws.sts#PackedPolicyTooLargeException": throw await deserializeAws_queryPackedPolicyTooLargeExceptionResponse(parsedOutput, context); case "RegionDisabledException": @@ -17554,7 +17603,7 @@ exports.deserializeAws_queryGetSessionTokenCommand = deserializeAws_queryGetSess const deserializeAws_queryGetSessionTokenCommandError = async (output, context) => { const parsedOutput = { ...output, - body: await parseBody(output.body, context), + body: await parseErrorBody(output.body, context), }; const errorCode = loadQueryErrorCode(output, parsedOutput.body); switch (errorCode) { @@ -18193,6 +18242,14 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context } return {}; }); +const parseErrorBody = async (errorBody, context) => { + var _a; + const value = await parseBody(errorBody, context); + if (value.Error) { + value.Error.message = (_a = value.Error.message) !== null && _a !== void 0 ? _a : value.Error.Message; + } + return value; +}; const buildFormUrlencodedString = (formEntries) => Object.entries(formEntries) .map(([key, value]) => (0, smithy_client_1.extendedEncodeURIComponent)(key) + "=" + (0, smithy_client_1.extendedEncodeURIComponent)(value)) .join("&"); @@ -18208,7 +18265,7 @@ const loadQueryErrorCode = (output, data) => { /***/ }), -/***/ 7922: +/***/ 9838: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -18216,22 +18273,22 @@ const loadQueryErrorCode = (output, data) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getRuntimeConfig = void 0; const tslib_1 = __nccwpck_require__(1398); -const package_json_1 = tslib_1.__importDefault(__nccwpck_require__(5206)); -const defaultStsRoleAssumers_1 = __nccwpck_require__(5432); -const config_resolver_1 = __nccwpck_require__(9256); -const credential_provider_node_1 = __nccwpck_require__(7483); -const hash_node_1 = __nccwpck_require__(1330); -const middleware_retry_1 = __nccwpck_require__(6472); -const node_config_provider_1 = __nccwpck_require__(659); -const node_http_handler_1 = __nccwpck_require__(9044); -const util_base64_node_1 = __nccwpck_require__(3994); -const util_body_length_node_1 = __nccwpck_require__(2451); -const util_user_agent_node_1 = __nccwpck_require__(9323); -const util_utf8_node_1 = __nccwpck_require__(7193); -const runtimeConfig_shared_1 = __nccwpck_require__(1866); -const smithy_client_1 = __nccwpck_require__(1529); -const util_defaults_mode_node_1 = __nccwpck_require__(1294); -const smithy_client_2 = __nccwpck_require__(1529); +const package_json_1 = tslib_1.__importDefault(__nccwpck_require__(6916)); +const defaultStsRoleAssumers_1 = __nccwpck_require__(4082); +const config_resolver_1 = __nccwpck_require__(6210); +const credential_provider_node_1 = __nccwpck_require__(5316); +const hash_node_1 = __nccwpck_require__(8280); +const middleware_retry_1 = __nccwpck_require__(3268); +const node_config_provider_1 = __nccwpck_require__(7160); +const node_http_handler_1 = __nccwpck_require__(9623); +const util_base64_node_1 = __nccwpck_require__(7572); +const util_body_length_node_1 = __nccwpck_require__(5303); +const util_user_agent_node_1 = __nccwpck_require__(2155); +const util_utf8_node_1 = __nccwpck_require__(5348); +const runtimeConfig_shared_1 = __nccwpck_require__(3017); +const smithy_client_1 = __nccwpck_require__(3118); +const util_defaults_mode_node_1 = __nccwpck_require__(5403); +const smithy_client_2 = __nccwpck_require__(3118); const getRuntimeConfig = (config) => { var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q; (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version); @@ -18268,15 +18325,15 @@ exports.getRuntimeConfig = getRuntimeConfig; /***/ }), -/***/ 1866: +/***/ 3017: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getRuntimeConfig = void 0; -const url_parser_1 = __nccwpck_require__(1864); -const endpoints_1 = __nccwpck_require__(1087); +const url_parser_1 = __nccwpck_require__(9108); +const endpoints_1 = __nccwpck_require__(9154); const getRuntimeConfig = (config) => { var _a, _b, _c, _d, _e; return ({ @@ -18293,14 +18350,14 @@ exports.getRuntimeConfig = getRuntimeConfig; /***/ }), -/***/ 8230: +/***/ 6838: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS = exports.DEFAULT_USE_DUALSTACK_ENDPOINT = exports.CONFIG_USE_DUALSTACK_ENDPOINT = exports.ENV_USE_DUALSTACK_ENDPOINT = void 0; -const util_config_provider_1 = __nccwpck_require__(7225); +const util_config_provider_1 = __nccwpck_require__(5543); exports.ENV_USE_DUALSTACK_ENDPOINT = "AWS_USE_DUALSTACK_ENDPOINT"; exports.CONFIG_USE_DUALSTACK_ENDPOINT = "use_dualstack_endpoint"; exports.DEFAULT_USE_DUALSTACK_ENDPOINT = false; @@ -18313,14 +18370,14 @@ exports.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS = { /***/ }), -/***/ 8490: +/***/ 8950: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS = exports.DEFAULT_USE_FIPS_ENDPOINT = exports.CONFIG_USE_FIPS_ENDPOINT = exports.ENV_USE_FIPS_ENDPOINT = void 0; -const util_config_provider_1 = __nccwpck_require__(7225); +const util_config_provider_1 = __nccwpck_require__(5543); exports.ENV_USE_FIPS_ENDPOINT = "AWS_USE_FIPS_ENDPOINT"; exports.CONFIG_USE_FIPS_ENDPOINT = "use_fips_endpoint"; exports.DEFAULT_USE_FIPS_ENDPOINT = false; @@ -18333,29 +18390,29 @@ exports.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS = { /***/ }), -/***/ 4775: +/***/ 5477: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(8230), exports); -tslib_1.__exportStar(__nccwpck_require__(8490), exports); -tslib_1.__exportStar(__nccwpck_require__(7749), exports); -tslib_1.__exportStar(__nccwpck_require__(4215), exports); +tslib_1.__exportStar(__nccwpck_require__(6838), exports); +tslib_1.__exportStar(__nccwpck_require__(8950), exports); +tslib_1.__exportStar(__nccwpck_require__(9821), exports); +tslib_1.__exportStar(__nccwpck_require__(4026), exports); /***/ }), -/***/ 7749: +/***/ 9821: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveCustomEndpointsConfig = void 0; -const util_middleware_1 = __nccwpck_require__(5235); +const util_middleware_1 = __nccwpck_require__(5313); const resolveCustomEndpointsConfig = (input) => { var _a; const { endpoint, urlParser } = input; @@ -18372,15 +18429,15 @@ exports.resolveCustomEndpointsConfig = resolveCustomEndpointsConfig; /***/ }), -/***/ 4215: +/***/ 4026: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveEndpointsConfig = void 0; -const util_middleware_1 = __nccwpck_require__(5235); -const getEndpointFromRegion_1 = __nccwpck_require__(3705); +const util_middleware_1 = __nccwpck_require__(5313); +const getEndpointFromRegion_1 = __nccwpck_require__(126); const resolveEndpointsConfig = (input) => { var _a; const useDualstackEndpoint = (0, util_middleware_1.normalizeProvider)(input.useDualstackEndpoint); @@ -18391,7 +18448,7 @@ const resolveEndpointsConfig = (input) => { endpoint: endpoint ? (0, util_middleware_1.normalizeProvider)(typeof endpoint === "string" ? urlParser(endpoint) : endpoint) : () => (0, getEndpointFromRegion_1.getEndpointFromRegion)({ ...input, useDualstackEndpoint, useFipsEndpoint }), - isCustomEndpoint: endpoint ? true : false, + isCustomEndpoint: !!endpoint, useDualstackEndpoint, }; }; @@ -18400,7 +18457,7 @@ exports.resolveEndpointsConfig = resolveEndpointsConfig; /***/ }), -/***/ 3705: +/***/ 126: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18428,21 +18485,21 @@ exports.getEndpointFromRegion = getEndpointFromRegion; /***/ }), -/***/ 9256: +/***/ 6210: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(4775), exports); -tslib_1.__exportStar(__nccwpck_require__(3244), exports); -tslib_1.__exportStar(__nccwpck_require__(6423), exports); +tslib_1.__exportStar(__nccwpck_require__(5477), exports); +tslib_1.__exportStar(__nccwpck_require__(4498), exports); +tslib_1.__exportStar(__nccwpck_require__(2152), exports); /***/ }), -/***/ 5503: +/***/ 9502: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18465,14 +18522,14 @@ exports.NODE_REGION_CONFIG_FILE_OPTIONS = { /***/ }), -/***/ 2383: +/***/ 3822: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getRealRegion = void 0; -const isFipsRegion_1 = __nccwpck_require__(6332); +const isFipsRegion_1 = __nccwpck_require__(5621); const getRealRegion = (region) => (0, isFipsRegion_1.isFipsRegion)(region) ? ["fips-aws-global", "aws-fips"].includes(region) ? "us-east-1" @@ -18483,20 +18540,20 @@ exports.getRealRegion = getRealRegion; /***/ }), -/***/ 3244: +/***/ 4498: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(5503), exports); -tslib_1.__exportStar(__nccwpck_require__(6355), exports); +tslib_1.__exportStar(__nccwpck_require__(9502), exports); +tslib_1.__exportStar(__nccwpck_require__(3911), exports); /***/ }), -/***/ 6332: +/***/ 5621: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18509,15 +18566,15 @@ exports.isFipsRegion = isFipsRegion; /***/ }), -/***/ 6355: +/***/ 3911: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveRegionConfig = void 0; -const getRealRegion_1 = __nccwpck_require__(2383); -const isFipsRegion_1 = __nccwpck_require__(6332); +const getRealRegion_1 = __nccwpck_require__(3822); +const isFipsRegion_1 = __nccwpck_require__(5621); const resolveRegionConfig = (input) => { const { region, useFipsEndpoint } = input; if (!region) { @@ -18546,7 +18603,7 @@ exports.resolveRegionConfig = resolveRegionConfig; /***/ }), -/***/ 9398: +/***/ 8146: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18556,7 +18613,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); /***/ }), -/***/ 1959: +/***/ 8519: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18566,7 +18623,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); /***/ }), -/***/ 9146: +/***/ 1233: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18582,17 +18639,17 @@ exports.getHostnameFromVariants = getHostnameFromVariants; /***/ }), -/***/ 9765: +/***/ 8485: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getRegionInfo = void 0; -const getHostnameFromVariants_1 = __nccwpck_require__(9146); -const getResolvedHostname_1 = __nccwpck_require__(3933); -const getResolvedPartition_1 = __nccwpck_require__(3743); -const getResolvedSigningRegion_1 = __nccwpck_require__(7400); +const getHostnameFromVariants_1 = __nccwpck_require__(1233); +const getResolvedHostname_1 = __nccwpck_require__(118); +const getResolvedPartition_1 = __nccwpck_require__(9193); +const getResolvedSigningRegion_1 = __nccwpck_require__(3222); const getRegionInfo = (region, { useFipsEndpoint = false, useDualstackEndpoint = false, signingService, regionHash, partitionHash, }) => { var _a, _b, _c, _d, _e, _f; const partition = (0, getResolvedPartition_1.getResolvedPartition)(region, { partitionHash }); @@ -18624,7 +18681,7 @@ exports.getRegionInfo = getRegionInfo; /***/ }), -/***/ 3933: +/***/ 118: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18641,7 +18698,7 @@ exports.getResolvedHostname = getResolvedHostname; /***/ }), -/***/ 3743: +/***/ 9193: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18654,7 +18711,7 @@ exports.getResolvedPartition = getResolvedPartition; /***/ }), -/***/ 7400: +/***/ 3222: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18678,28 +18735,28 @@ exports.getResolvedSigningRegion = getResolvedSigningRegion; /***/ }), -/***/ 6423: +/***/ 2152: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(9398), exports); -tslib_1.__exportStar(__nccwpck_require__(1959), exports); -tslib_1.__exportStar(__nccwpck_require__(9765), exports); +tslib_1.__exportStar(__nccwpck_require__(8146), exports); +tslib_1.__exportStar(__nccwpck_require__(8519), exports); +tslib_1.__exportStar(__nccwpck_require__(8485), exports); /***/ }), -/***/ 1644: +/***/ 559: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromEnv = exports.ENV_EXPIRATION = exports.ENV_SESSION = exports.ENV_SECRET = exports.ENV_KEY = void 0; -const property_provider_1 = __nccwpck_require__(2669); +const property_provider_1 = __nccwpck_require__(2780); exports.ENV_KEY = "AWS_ACCESS_KEY_ID"; exports.ENV_SECRET = "AWS_SECRET_ACCESS_KEY"; exports.ENV_SESSION = "AWS_SESSION_TOKEN"; @@ -18724,19 +18781,19 @@ exports.fromEnv = fromEnv; /***/ }), -/***/ 4180: +/***/ 4722: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(1644), exports); +tslib_1.__exportStar(__nccwpck_require__(559), exports); /***/ }), -/***/ 1783: +/***/ 984: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18752,7 +18809,7 @@ var Endpoint; /***/ }), -/***/ 8759: +/***/ 7396: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18770,7 +18827,7 @@ exports.ENDPOINT_CONFIG_OPTIONS = { /***/ }), -/***/ 2642: +/***/ 606: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -18786,14 +18843,14 @@ var EndpointMode; /***/ }), -/***/ 8461: +/***/ 864: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.ENDPOINT_MODE_CONFIG_OPTIONS = exports.CONFIG_ENDPOINT_MODE_NAME = exports.ENV_ENDPOINT_MODE_NAME = void 0; -const EndpointMode_1 = __nccwpck_require__(2642); +const EndpointMode_1 = __nccwpck_require__(606); exports.ENV_ENDPOINT_MODE_NAME = "AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE"; exports.CONFIG_ENDPOINT_MODE_NAME = "ec2_metadata_service_endpoint_mode"; exports.ENDPOINT_MODE_CONFIG_OPTIONS = { @@ -18805,19 +18862,19 @@ exports.ENDPOINT_MODE_CONFIG_OPTIONS = { /***/ }), -/***/ 1416: +/***/ 8374: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromContainerMetadata = exports.ENV_CMDS_AUTH_TOKEN = exports.ENV_CMDS_RELATIVE_URI = exports.ENV_CMDS_FULL_URI = void 0; -const property_provider_1 = __nccwpck_require__(2669); +const property_provider_1 = __nccwpck_require__(2780); const url_1 = __nccwpck_require__(7310); -const httpRequest_1 = __nccwpck_require__(2117); -const ImdsCredentials_1 = __nccwpck_require__(351); -const RemoteProviderInit_1 = __nccwpck_require__(9989); -const retry_1 = __nccwpck_require__(6348); +const httpRequest_1 = __nccwpck_require__(5817); +const ImdsCredentials_1 = __nccwpck_require__(5122); +const RemoteProviderInit_1 = __nccwpck_require__(8128); +const retry_1 = __nccwpck_require__(1878); exports.ENV_CMDS_FULL_URI = "AWS_CONTAINER_CREDENTIALS_FULL_URI"; exports.ENV_CMDS_RELATIVE_URI = "AWS_CONTAINER_CREDENTIALS_RELATIVE_URI"; exports.ENV_CMDS_AUTH_TOKEN = "AWS_CONTAINER_AUTHORIZATION_TOKEN"; @@ -18883,20 +18940,20 @@ const getCmdsUri = async () => { /***/ }), -/***/ 7177: +/***/ 9501: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromInstanceMetadata = void 0; -const property_provider_1 = __nccwpck_require__(2669); -const httpRequest_1 = __nccwpck_require__(2117); -const ImdsCredentials_1 = __nccwpck_require__(351); -const RemoteProviderInit_1 = __nccwpck_require__(9989); -const retry_1 = __nccwpck_require__(6348); -const getInstanceMetadataEndpoint_1 = __nccwpck_require__(739); -const staticStabilityProvider_1 = __nccwpck_require__(4043); +const property_provider_1 = __nccwpck_require__(2780); +const httpRequest_1 = __nccwpck_require__(5817); +const ImdsCredentials_1 = __nccwpck_require__(5122); +const RemoteProviderInit_1 = __nccwpck_require__(8128); +const retry_1 = __nccwpck_require__(1878); +const getInstanceMetadataEndpoint_1 = __nccwpck_require__(4233); +const staticStabilityProvider_1 = __nccwpck_require__(6577); const IMDS_PATH = "/latest/meta-data/iam/security-credentials/"; const IMDS_TOKEN_PATH = "/latest/api/token"; const fromInstanceMetadata = (init = {}) => (0, staticStabilityProvider_1.staticStabilityProvider)(getInstanceImdsProvider(init), { logger: init.logger }); @@ -18986,7 +19043,7 @@ const getCredentialsFromProfile = async (profile, options) => { /***/ }), -/***/ 9884: +/***/ 2861: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -18994,19 +19051,19 @@ const getCredentialsFromProfile = async (profile, options) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getInstanceMetadataEndpoint = exports.httpRequest = void 0; const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(1416), exports); -tslib_1.__exportStar(__nccwpck_require__(7177), exports); -tslib_1.__exportStar(__nccwpck_require__(9989), exports); -tslib_1.__exportStar(__nccwpck_require__(9848), exports); -var httpRequest_1 = __nccwpck_require__(2117); +tslib_1.__exportStar(__nccwpck_require__(8374), exports); +tslib_1.__exportStar(__nccwpck_require__(9501), exports); +tslib_1.__exportStar(__nccwpck_require__(8128), exports); +tslib_1.__exportStar(__nccwpck_require__(1501), exports); +var httpRequest_1 = __nccwpck_require__(5817); Object.defineProperty(exports, "httpRequest", ({ enumerable: true, get: function () { return httpRequest_1.httpRequest; } })); -var getInstanceMetadataEndpoint_1 = __nccwpck_require__(739); +var getInstanceMetadataEndpoint_1 = __nccwpck_require__(4233); Object.defineProperty(exports, "getInstanceMetadataEndpoint", ({ enumerable: true, get: function () { return getInstanceMetadataEndpoint_1.getInstanceMetadataEndpoint; } })); /***/ }), -/***/ 351: +/***/ 5122: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19031,7 +19088,7 @@ exports.fromImdsCredentials = fromImdsCredentials; /***/ }), -/***/ 9989: +/***/ 8128: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19046,14 +19103,14 @@ exports.providerConfigFromInit = providerConfigFromInit; /***/ }), -/***/ 2117: +/***/ 5817: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.httpRequest = void 0; -const property_provider_1 = __nccwpck_require__(2669); +const property_provider_1 = __nccwpck_require__(2780); const buffer_1 = __nccwpck_require__(4300); const http_1 = __nccwpck_require__(3685); function httpRequest(options) { @@ -19095,7 +19152,7 @@ exports.httpRequest = httpRequest; /***/ }), -/***/ 6348: +/***/ 1878: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19114,7 +19171,7 @@ exports.retry = retry; /***/ }), -/***/ 9848: +/***/ 1501: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19124,7 +19181,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); /***/ }), -/***/ 5017: +/***/ 2589: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19154,19 +19211,19 @@ exports.getExtendedInstanceMetadataCredentials = getExtendedInstanceMetadataCred /***/ }), -/***/ 739: +/***/ 4233: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getInstanceMetadataEndpoint = void 0; -const node_config_provider_1 = __nccwpck_require__(659); -const url_parser_1 = __nccwpck_require__(1864); -const Endpoint_1 = __nccwpck_require__(1783); -const EndpointConfigOptions_1 = __nccwpck_require__(8759); -const EndpointMode_1 = __nccwpck_require__(2642); -const EndpointModeConfigOptions_1 = __nccwpck_require__(8461); +const node_config_provider_1 = __nccwpck_require__(7160); +const url_parser_1 = __nccwpck_require__(9108); +const Endpoint_1 = __nccwpck_require__(984); +const EndpointConfigOptions_1 = __nccwpck_require__(7396); +const EndpointMode_1 = __nccwpck_require__(606); +const EndpointModeConfigOptions_1 = __nccwpck_require__(864); const getInstanceMetadataEndpoint = async () => (0, url_parser_1.parseUrl)((await getFromEndpointConfig()) || (await getFromEndpointModeConfig())); exports.getInstanceMetadataEndpoint = getInstanceMetadataEndpoint; const getFromEndpointConfig = async () => (0, node_config_provider_1.loadConfig)(EndpointConfigOptions_1.ENDPOINT_CONFIG_OPTIONS)(); @@ -19185,14 +19242,14 @@ const getFromEndpointModeConfig = async () => { /***/ }), -/***/ 4043: +/***/ 6577: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.staticStabilityProvider = void 0; -const getExtendedInstanceMetadataCredentials_1 = __nccwpck_require__(5017); +const getExtendedInstanceMetadataCredentials_1 = __nccwpck_require__(2589); const staticStabilityProvider = (provider, options = {}) => { const logger = (options === null || options === void 0 ? void 0 : options.logger) || console; let pastCredentials; @@ -19222,15 +19279,15 @@ exports.staticStabilityProvider = staticStabilityProvider; /***/ }), -/***/ 9825: +/***/ 4484: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromIni = void 0; -const shared_ini_file_loader_1 = __nccwpck_require__(6361); -const resolveProfileData_1 = __nccwpck_require__(9271); +const shared_ini_file_loader_1 = __nccwpck_require__(129); +const resolveProfileData_1 = __nccwpck_require__(2388); const fromIni = (init = {}) => async () => { const profiles = await (0, shared_ini_file_loader_1.parseKnownFiles)(init); return (0, resolveProfileData_1.resolveProfileData)((0, shared_ini_file_loader_1.getProfileName)(init), profiles, init); @@ -19240,29 +19297,29 @@ exports.fromIni = fromIni; /***/ }), -/***/ 7369: +/***/ 6214: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(9825), exports); +tslib_1.__exportStar(__nccwpck_require__(4484), exports); /***/ }), -/***/ 3892: +/***/ 2124: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveAssumeRoleCredentials = exports.isAssumeRoleProfile = void 0; -const property_provider_1 = __nccwpck_require__(2669); -const shared_ini_file_loader_1 = __nccwpck_require__(6361); -const resolveCredentialSource_1 = __nccwpck_require__(5498); -const resolveProfileData_1 = __nccwpck_require__(9271); +const property_provider_1 = __nccwpck_require__(2780); +const shared_ini_file_loader_1 = __nccwpck_require__(129); +const resolveCredentialSource_1 = __nccwpck_require__(2100); +const resolveProfileData_1 = __nccwpck_require__(2388); const isAssumeRoleProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.role_arn === "string" && @@ -19311,16 +19368,16 @@ exports.resolveAssumeRoleCredentials = resolveAssumeRoleCredentials; /***/ }), -/***/ 5498: +/***/ 2100: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveCredentialSource = void 0; -const credential_provider_env_1 = __nccwpck_require__(4180); -const credential_provider_imds_1 = __nccwpck_require__(9884); -const property_provider_1 = __nccwpck_require__(2669); +const credential_provider_env_1 = __nccwpck_require__(4722); +const credential_provider_imds_1 = __nccwpck_require__(2861); +const property_provider_1 = __nccwpck_require__(2780); const resolveCredentialSource = (credentialSource, profileName) => { const sourceProvidersMap = { EcsContainer: credential_provider_imds_1.fromContainerMetadata, @@ -19340,18 +19397,18 @@ exports.resolveCredentialSource = resolveCredentialSource; /***/ }), -/***/ 9271: +/***/ 2388: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveProfileData = void 0; -const property_provider_1 = __nccwpck_require__(2669); -const resolveAssumeRoleCredentials_1 = __nccwpck_require__(3892); -const resolveSsoCredentials_1 = __nccwpck_require__(7383); -const resolveStaticCredentials_1 = __nccwpck_require__(2759); -const resolveWebIdentityCredentials_1 = __nccwpck_require__(3863); +const property_provider_1 = __nccwpck_require__(2780); +const resolveAssumeRoleCredentials_1 = __nccwpck_require__(2124); +const resolveSsoCredentials_1 = __nccwpck_require__(3197); +const resolveStaticCredentials_1 = __nccwpck_require__(8030); +const resolveWebIdentityCredentials_1 = __nccwpck_require__(3684); const resolveProfileData = async (profileName, profiles, options, visitedProfiles = {}) => { const data = profiles[profileName]; if (Object.keys(visitedProfiles).length > 0 && (0, resolveStaticCredentials_1.isStaticCredsProfile)(data)) { @@ -19376,15 +19433,15 @@ exports.resolveProfileData = resolveProfileData; /***/ }), -/***/ 7383: +/***/ 3197: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveSsoCredentials = exports.isSsoProfile = void 0; -const credential_provider_sso_1 = __nccwpck_require__(2658); -var credential_provider_sso_2 = __nccwpck_require__(2658); +const credential_provider_sso_1 = __nccwpck_require__(401); +var credential_provider_sso_2 = __nccwpck_require__(401); Object.defineProperty(exports, "isSsoProfile", ({ enumerable: true, get: function () { return credential_provider_sso_2.isSsoProfile; } })); const resolveSsoCredentials = (data) => { const { sso_start_url, sso_account_id, sso_region, sso_role_name } = (0, credential_provider_sso_1.validateSsoProfile)(data); @@ -19400,7 +19457,7 @@ exports.resolveSsoCredentials = resolveSsoCredentials; /***/ }), -/***/ 2759: +/***/ 8030: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19423,14 +19480,14 @@ exports.resolveStaticCredentials = resolveStaticCredentials; /***/ }), -/***/ 3863: +/***/ 3684: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveWebIdentityCredentials = exports.isWebIdentityProfile = void 0; -const credential_provider_web_identity_1 = __nccwpck_require__(7928); +const credential_provider_web_identity_1 = __nccwpck_require__(6449); const isWebIdentityProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.web_identity_token_file === "string" && @@ -19448,21 +19505,21 @@ exports.resolveWebIdentityCredentials = resolveWebIdentityCredentials; /***/ }), -/***/ 9213: +/***/ 1000: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.defaultProvider = void 0; -const credential_provider_env_1 = __nccwpck_require__(4180); -const credential_provider_ini_1 = __nccwpck_require__(7369); -const credential_provider_process_1 = __nccwpck_require__(4086); -const credential_provider_sso_1 = __nccwpck_require__(2658); -const credential_provider_web_identity_1 = __nccwpck_require__(7928); -const property_provider_1 = __nccwpck_require__(2669); -const shared_ini_file_loader_1 = __nccwpck_require__(6361); -const remoteProvider_1 = __nccwpck_require__(6624); +const credential_provider_env_1 = __nccwpck_require__(4722); +const credential_provider_ini_1 = __nccwpck_require__(6214); +const credential_provider_process_1 = __nccwpck_require__(4225); +const credential_provider_sso_1 = __nccwpck_require__(401); +const credential_provider_web_identity_1 = __nccwpck_require__(6449); +const property_provider_1 = __nccwpck_require__(2780); +const shared_ini_file_loader_1 = __nccwpck_require__(129); +const remoteProvider_1 = __nccwpck_require__(1702); const defaultProvider = (init = {}) => (0, property_provider_1.memoize)((0, property_provider_1.chain)(...(init.profile || process.env[shared_ini_file_loader_1.ENV_PROFILE] ? [] : [(0, credential_provider_env_1.fromEnv)()]), (0, credential_provider_sso_1.fromSSO)(init), (0, credential_provider_ini_1.fromIni)(init), (0, credential_provider_process_1.fromProcess)(init), (0, credential_provider_web_identity_1.fromTokenFile)(init), (0, remoteProvider_1.remoteProvider)(init), async () => { throw new property_provider_1.CredentialsProviderError("Could not load credentials from any providers", false); }), (credentials) => credentials.expiration !== undefined && credentials.expiration.getTime() - Date.now() < 300000, (credentials) => credentials.expiration !== undefined); @@ -19471,27 +19528,27 @@ exports.defaultProvider = defaultProvider; /***/ }), -/***/ 7483: +/***/ 5316: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(9213), exports); +tslib_1.__exportStar(__nccwpck_require__(1000), exports); /***/ }), -/***/ 6624: +/***/ 1702: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.remoteProvider = exports.ENV_IMDS_DISABLED = void 0; -const credential_provider_imds_1 = __nccwpck_require__(9884); -const property_provider_1 = __nccwpck_require__(2669); +const credential_provider_imds_1 = __nccwpck_require__(2861); +const property_provider_1 = __nccwpck_require__(2780); exports.ENV_IMDS_DISABLED = "AWS_EC2_METADATA_DISABLED"; const remoteProvider = (init) => { if (process.env[credential_provider_imds_1.ENV_CMDS_RELATIVE_URI] || process.env[credential_provider_imds_1.ENV_CMDS_FULL_URI]) { @@ -19509,15 +19566,15 @@ exports.remoteProvider = remoteProvider; /***/ }), -/***/ 7469: +/***/ 5737: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromProcess = void 0; -const shared_ini_file_loader_1 = __nccwpck_require__(6361); -const resolveProcessCredentials_1 = __nccwpck_require__(4115); +const shared_ini_file_loader_1 = __nccwpck_require__(129); +const resolveProcessCredentials_1 = __nccwpck_require__(3273); const fromProcess = (init = {}) => async () => { const profiles = await (0, shared_ini_file_loader_1.parseKnownFiles)(init); return (0, resolveProcessCredentials_1.resolveProcessCredentials)((0, shared_ini_file_loader_1.getProfileName)(init), profiles); @@ -19527,7 +19584,7 @@ exports.fromProcess = fromProcess; /***/ }), -/***/ 6174: +/***/ 7303: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19560,29 +19617,29 @@ exports.getValidatedProcessCredentials = getValidatedProcessCredentials; /***/ }), -/***/ 4086: +/***/ 4225: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(7469), exports); +tslib_1.__exportStar(__nccwpck_require__(5737), exports); /***/ }), -/***/ 4115: +/***/ 3273: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveProcessCredentials = void 0; -const property_provider_1 = __nccwpck_require__(2669); +const property_provider_1 = __nccwpck_require__(2780); const child_process_1 = __nccwpck_require__(2081); const util_1 = __nccwpck_require__(3837); -const getValidatedProcessCredentials_1 = __nccwpck_require__(6174); +const getValidatedProcessCredentials_1 = __nccwpck_require__(7303); const resolveProcessCredentials = async (profileName, profiles) => { const profile = profiles[profileName]; if (profiles[profileName]) { @@ -19617,18 +19674,18 @@ exports.resolveProcessCredentials = resolveProcessCredentials; /***/ }), -/***/ 9867: +/***/ 3522: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromSSO = void 0; -const property_provider_1 = __nccwpck_require__(2669); -const shared_ini_file_loader_1 = __nccwpck_require__(6361); -const isSsoProfile_1 = __nccwpck_require__(4636); -const resolveSSOCredentials_1 = __nccwpck_require__(929); -const validateSsoProfile_1 = __nccwpck_require__(9227); +const property_provider_1 = __nccwpck_require__(2780); +const shared_ini_file_loader_1 = __nccwpck_require__(129); +const isSsoProfile_1 = __nccwpck_require__(4936); +const resolveSSOCredentials_1 = __nccwpck_require__(1194); +const validateSsoProfile_1 = __nccwpck_require__(3884); const fromSSO = (init = {}) => async () => { const { ssoStartUrl, ssoAccountId, ssoRegion, ssoRoleName, ssoClient } = init; if (!ssoStartUrl && !ssoAccountId && !ssoRegion && !ssoRoleName) { @@ -19660,22 +19717,22 @@ exports.fromSSO = fromSSO; /***/ }), -/***/ 2658: +/***/ 401: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(9867), exports); -tslib_1.__exportStar(__nccwpck_require__(4636), exports); -tslib_1.__exportStar(__nccwpck_require__(1130), exports); -tslib_1.__exportStar(__nccwpck_require__(9227), exports); +tslib_1.__exportStar(__nccwpck_require__(3522), exports); +tslib_1.__exportStar(__nccwpck_require__(4936), exports); +tslib_1.__exportStar(__nccwpck_require__(7312), exports); +tslib_1.__exportStar(__nccwpck_require__(3884), exports); /***/ }), -/***/ 4636: +/***/ 4936: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19692,16 +19749,16 @@ exports.isSsoProfile = isSsoProfile; /***/ }), -/***/ 929: +/***/ 1194: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveSSOCredentials = void 0; -const client_sso_1 = __nccwpck_require__(7984); -const property_provider_1 = __nccwpck_require__(2669); -const shared_ini_file_loader_1 = __nccwpck_require__(6361); +const client_sso_1 = __nccwpck_require__(4320); +const property_provider_1 = __nccwpck_require__(2780); +const shared_ini_file_loader_1 = __nccwpck_require__(129); const EXPIRE_WINDOW_MS = 15 * 60 * 1000; const SHOULD_FAIL_CREDENTIAL_CHAIN = false; const resolveSSOCredentials = async ({ ssoStartUrl, ssoAccountId, ssoRegion, ssoRoleName, ssoClient, }) => { @@ -19740,7 +19797,7 @@ exports.resolveSSOCredentials = resolveSSOCredentials; /***/ }), -/***/ 1130: +/***/ 7312: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19750,14 +19807,14 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); /***/ }), -/***/ 9227: +/***/ 3884: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.validateSsoProfile = void 0; -const property_provider_1 = __nccwpck_require__(2669); +const property_provider_1 = __nccwpck_require__(2780); const validateSsoProfile = (profile) => { const { sso_start_url, sso_account_id, sso_region, sso_role_name } = profile; if (!sso_start_url || !sso_account_id || !sso_region || !sso_role_name) { @@ -19771,16 +19828,16 @@ exports.validateSsoProfile = validateSsoProfile; /***/ }), -/***/ 4003: +/***/ 2556: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromTokenFile = void 0; -const property_provider_1 = __nccwpck_require__(2669); +const property_provider_1 = __nccwpck_require__(2780); const fs_1 = __nccwpck_require__(7147); -const fromWebToken_1 = __nccwpck_require__(2620); +const fromWebToken_1 = __nccwpck_require__(6546); const ENV_TOKEN_FILE = "AWS_WEB_IDENTITY_TOKEN_FILE"; const ENV_ROLE_ARN = "AWS_ROLE_ARN"; const ENV_ROLE_SESSION_NAME = "AWS_ROLE_SESSION_NAME"; @@ -19807,14 +19864,14 @@ const resolveTokenFile = (init) => { /***/ }), -/***/ 2620: +/***/ 6546: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromWebToken = void 0; -const property_provider_1 = __nccwpck_require__(2669); +const property_provider_1 = __nccwpck_require__(2780); const fromWebToken = (init) => () => { const { roleArn, roleSessionName, webIdentityToken, providerId, policyArns, policy, durationSeconds, roleAssumerWithWebIdentity, } = init; if (!roleAssumerWithWebIdentity) { @@ -19836,27 +19893,27 @@ exports.fromWebToken = fromWebToken; /***/ }), -/***/ 7928: +/***/ 6449: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(4003), exports); -tslib_1.__exportStar(__nccwpck_require__(2620), exports); +tslib_1.__exportStar(__nccwpck_require__(2556), exports); +tslib_1.__exportStar(__nccwpck_require__(6546), exports); /***/ }), -/***/ 1330: +/***/ 8280: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.Hash = void 0; -const util_buffer_from_1 = __nccwpck_require__(7820); +const util_buffer_from_1 = __nccwpck_require__(3160); const buffer_1 = __nccwpck_require__(4300); const crypto_1 = __nccwpck_require__(6113); class Hash { @@ -19887,7 +19944,7 @@ function castSourceData(toCast, encoding) { /***/ }), -/***/ 9236: +/***/ 382: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -19901,14 +19958,14 @@ exports.isArrayBuffer = isArrayBuffer; /***/ }), -/***/ 3654: +/***/ 1553: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getContentLengthPlugin = exports.contentLengthMiddlewareOptions = exports.contentLengthMiddleware = void 0; -const protocol_http_1 = __nccwpck_require__(9992); +const protocol_http_1 = __nccwpck_require__(4093); const CONTENT_LENGTH_HEADER = "content-length"; function contentLengthMiddleware(bodyLengthChecker) { return (next) => async (args) => { @@ -19953,14 +20010,14 @@ exports.getContentLengthPlugin = getContentLengthPlugin; /***/ }), -/***/ 4481: +/***/ 278: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getHostHeaderPlugin = exports.hostHeaderMiddlewareOptions = exports.hostHeaderMiddleware = exports.resolveHostHeaderConfig = void 0; -const protocol_http_1 = __nccwpck_require__(9992); +const protocol_http_1 = __nccwpck_require__(4093); function resolveHostHeaderConfig(input) { return input; } @@ -19997,19 +20054,19 @@ exports.getHostHeaderPlugin = getHostHeaderPlugin; /***/ }), -/***/ 3272: +/***/ 130: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(6655), exports); +tslib_1.__exportStar(__nccwpck_require__(2538), exports); /***/ }), -/***/ 6655: +/***/ 2538: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -20051,14 +20108,14 @@ exports.getLoggerPlugin = getLoggerPlugin; /***/ }), -/***/ 9585: +/***/ 251: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getRecursionDetectionPlugin = exports.addRecursionDetectionMiddlewareOptions = exports.recursionDetectionMiddleware = void 0; -const protocol_http_1 = __nccwpck_require__(9992); +const protocol_http_1 = __nccwpck_require__(4093); const TRACE_ID_HEADER_NAME = "X-Amzn-Trace-Id"; const ENV_LAMBDA_FUNCTION_NAME = "AWS_LAMBDA_FUNCTION_NAME"; const ENV_TRACE_ID = "_X_AMZN_TRACE_ID"; @@ -20098,16 +20155,16 @@ exports.getRecursionDetectionPlugin = getRecursionDetectionPlugin; /***/ }), -/***/ 8742: +/***/ 8839: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.AdaptiveRetryStrategy = void 0; -const config_1 = __nccwpck_require__(5615); -const DefaultRateLimiter_1 = __nccwpck_require__(1902); -const StandardRetryStrategy_1 = __nccwpck_require__(6921); +const config_1 = __nccwpck_require__(298); +const DefaultRateLimiter_1 = __nccwpck_require__(4588); +const StandardRetryStrategy_1 = __nccwpck_require__(8928); class AdaptiveRetryStrategy extends StandardRetryStrategy_1.StandardRetryStrategy { constructor(maxAttemptsProvider, options) { const { rateLimiter, ...superOptions } = options !== null && options !== void 0 ? options : {}; @@ -20131,14 +20188,14 @@ exports.AdaptiveRetryStrategy = AdaptiveRetryStrategy; /***/ }), -/***/ 1902: +/***/ 4588: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.DefaultRateLimiter = void 0; -const service_error_classification_1 = __nccwpck_require__(6476); +const service_error_classification_1 = __nccwpck_require__(5333); class DefaultRateLimiter { constructor(options) { var _a, _b, _c, _d, _e; @@ -20243,21 +20300,21 @@ exports.DefaultRateLimiter = DefaultRateLimiter; /***/ }), -/***/ 6921: +/***/ 8928: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.StandardRetryStrategy = void 0; -const protocol_http_1 = __nccwpck_require__(9992); -const service_error_classification_1 = __nccwpck_require__(6476); +const protocol_http_1 = __nccwpck_require__(4093); +const service_error_classification_1 = __nccwpck_require__(5333); const uuid_1 = __nccwpck_require__(7066); -const config_1 = __nccwpck_require__(5615); -const constants_1 = __nccwpck_require__(6282); -const defaultRetryQuota_1 = __nccwpck_require__(1658); -const delayDecider_1 = __nccwpck_require__(3612); -const retryDecider_1 = __nccwpck_require__(9478); +const config_1 = __nccwpck_require__(298); +const constants_1 = __nccwpck_require__(7108); +const defaultRetryQuota_1 = __nccwpck_require__(7301); +const delayDecider_1 = __nccwpck_require__(1292); +const retryDecider_1 = __nccwpck_require__(5822); class StandardRetryStrategy { constructor(maxAttemptsProvider, options) { var _a, _b, _c; @@ -20311,7 +20368,9 @@ class StandardRetryStrategy { attempts++; if (this.shouldRetry(err, attempts, maxAttempts)) { retryTokenAmount = this.retryQuota.retrieveRetryTokens(err); - const delay = this.delayDecider((0, service_error_classification_1.isThrottlingError)(err) ? constants_1.THROTTLING_RETRY_DELAY_BASE : constants_1.DEFAULT_RETRY_DELAY_BASE, attempts); + const delayFromDecider = this.delayDecider((0, service_error_classification_1.isThrottlingError)(err) ? constants_1.THROTTLING_RETRY_DELAY_BASE : constants_1.DEFAULT_RETRY_DELAY_BASE, attempts); + const delayFromResponse = getDelayFromRetryAfterHeader(err.$response); + const delay = Math.max(delayFromResponse || 0, delayFromDecider); totalDelay += delay; await new Promise((resolve) => setTimeout(resolve, delay)); continue; @@ -20327,6 +20386,19 @@ class StandardRetryStrategy { } } exports.StandardRetryStrategy = StandardRetryStrategy; +const getDelayFromRetryAfterHeader = (response) => { + if (!protocol_http_1.HttpResponse.isInstance(response)) + return; + const retryAfterHeaderName = Object.keys(response.headers).find((key) => key.toLowerCase() === "retry-after"); + if (!retryAfterHeaderName) + return; + const retryAfter = response.headers[retryAfterHeaderName]; + const retryAfterSeconds = Number(retryAfter); + if (!Number.isNaN(retryAfterSeconds)) + return retryAfterSeconds * 1000; + const retryAfterDate = new Date(retryAfter); + return retryAfterDate.getTime() - Date.now(); +}; const asSdkError = (error) => { if (error instanceof Error) return error; @@ -20340,7 +20412,7 @@ const asSdkError = (error) => { /***/ }), -/***/ 5615: +/***/ 298: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -20358,17 +20430,17 @@ exports.DEFAULT_RETRY_MODE = RETRY_MODES.STANDARD; /***/ }), -/***/ 5215: +/***/ 7505: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.NODE_RETRY_MODE_CONFIG_OPTIONS = exports.CONFIG_RETRY_MODE = exports.ENV_RETRY_MODE = exports.resolveRetryConfig = exports.NODE_MAX_ATTEMPT_CONFIG_OPTIONS = exports.CONFIG_MAX_ATTEMPTS = exports.ENV_MAX_ATTEMPTS = void 0; -const util_middleware_1 = __nccwpck_require__(5235); -const AdaptiveRetryStrategy_1 = __nccwpck_require__(8742); -const config_1 = __nccwpck_require__(5615); -const StandardRetryStrategy_1 = __nccwpck_require__(6921); +const util_middleware_1 = __nccwpck_require__(5313); +const AdaptiveRetryStrategy_1 = __nccwpck_require__(8839); +const config_1 = __nccwpck_require__(298); +const StandardRetryStrategy_1 = __nccwpck_require__(8928); exports.ENV_MAX_ATTEMPTS = "AWS_MAX_ATTEMPTS"; exports.CONFIG_MAX_ATTEMPTS = "max_attempts"; exports.NODE_MAX_ATTEMPT_CONFIG_OPTIONS = { @@ -20424,7 +20496,7 @@ exports.NODE_RETRY_MODE_CONFIG_OPTIONS = { /***/ }), -/***/ 6282: +/***/ 7108: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -20444,14 +20516,14 @@ exports.REQUEST_HEADER = "amz-sdk-request"; /***/ }), -/***/ 1658: +/***/ 7301: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getDefaultRetryQuota = void 0; -const constants_1 = __nccwpck_require__(6282); +const constants_1 = __nccwpck_require__(7108); const getDefaultRetryQuota = (initialRetryTokens, options) => { var _a, _b, _c; const MAX_CAPACITY = initialRetryTokens; @@ -20484,50 +20556,50 @@ exports.getDefaultRetryQuota = getDefaultRetryQuota; /***/ }), -/***/ 3612: +/***/ 1292: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.defaultDelayDecider = void 0; -const constants_1 = __nccwpck_require__(6282); +const constants_1 = __nccwpck_require__(7108); const defaultDelayDecider = (delayBase, attempts) => Math.floor(Math.min(constants_1.MAXIMUM_RETRY_DELAY, Math.random() * 2 ** attempts * delayBase)); exports.defaultDelayDecider = defaultDelayDecider; /***/ }), -/***/ 6472: +/***/ 3268: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(8742), exports); -tslib_1.__exportStar(__nccwpck_require__(1902), exports); -tslib_1.__exportStar(__nccwpck_require__(6921), exports); -tslib_1.__exportStar(__nccwpck_require__(5615), exports); -tslib_1.__exportStar(__nccwpck_require__(5215), exports); -tslib_1.__exportStar(__nccwpck_require__(3612), exports); -tslib_1.__exportStar(__nccwpck_require__(4663), exports); -tslib_1.__exportStar(__nccwpck_require__(9478), exports); -tslib_1.__exportStar(__nccwpck_require__(2617), exports); -tslib_1.__exportStar(__nccwpck_require__(347), exports); +tslib_1.__exportStar(__nccwpck_require__(8839), exports); +tslib_1.__exportStar(__nccwpck_require__(4588), exports); +tslib_1.__exportStar(__nccwpck_require__(8928), exports); +tslib_1.__exportStar(__nccwpck_require__(298), exports); +tslib_1.__exportStar(__nccwpck_require__(7505), exports); +tslib_1.__exportStar(__nccwpck_require__(1292), exports); +tslib_1.__exportStar(__nccwpck_require__(6298), exports); +tslib_1.__exportStar(__nccwpck_require__(5822), exports); +tslib_1.__exportStar(__nccwpck_require__(4234), exports); +tslib_1.__exportStar(__nccwpck_require__(8557), exports); /***/ }), -/***/ 4663: +/***/ 6298: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getOmitRetryHeadersPlugin = exports.omitRetryHeadersMiddlewareOptions = exports.omitRetryHeadersMiddleware = void 0; -const protocol_http_1 = __nccwpck_require__(9992); -const constants_1 = __nccwpck_require__(6282); +const protocol_http_1 = __nccwpck_require__(4093); +const constants_1 = __nccwpck_require__(7108); const omitRetryHeadersMiddleware = () => (next) => async (args) => { const { request } = args; if (protocol_http_1.HttpRequest.isInstance(request)) { @@ -20554,14 +20626,14 @@ exports.getOmitRetryHeadersPlugin = getOmitRetryHeadersPlugin; /***/ }), -/***/ 9478: +/***/ 5822: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.defaultRetryDecider = void 0; -const service_error_classification_1 = __nccwpck_require__(6476); +const service_error_classification_1 = __nccwpck_require__(5333); const defaultRetryDecider = (error) => { if (!error) { return false; @@ -20573,7 +20645,7 @@ exports.defaultRetryDecider = defaultRetryDecider; /***/ }), -/***/ 2617: +/***/ 4234: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -20604,7 +20676,7 @@ exports.getRetryPlugin = getRetryPlugin; /***/ }), -/***/ 347: +/***/ 8557: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -20614,14 +20686,14 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); /***/ }), -/***/ 5563: +/***/ 2962: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveStsAuthConfig = void 0; -const middleware_signing_1 = __nccwpck_require__(7146); +const middleware_signing_1 = __nccwpck_require__(342); const resolveStsAuthConfig = (input, { stsClientCtor }) => (0, middleware_signing_1.resolveAwsAuthConfig)({ ...input, stsClientCtor, @@ -20631,7 +20703,7 @@ exports.resolveStsAuthConfig = resolveStsAuthConfig; /***/ }), -/***/ 1406: +/***/ 4370: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -20659,29 +20731,29 @@ exports.deserializerMiddleware = deserializerMiddleware; /***/ }), -/***/ 5665: +/***/ 6599: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(1406), exports); -tslib_1.__exportStar(__nccwpck_require__(4241), exports); -tslib_1.__exportStar(__nccwpck_require__(8757), exports); +tslib_1.__exportStar(__nccwpck_require__(4370), exports); +tslib_1.__exportStar(__nccwpck_require__(8210), exports); +tslib_1.__exportStar(__nccwpck_require__(7558), exports); /***/ }), -/***/ 4241: +/***/ 8210: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getSerdePlugin = exports.serializerMiddlewareOption = exports.deserializerMiddlewareOption = void 0; -const deserializerMiddleware_1 = __nccwpck_require__(1406); -const serializerMiddleware_1 = __nccwpck_require__(8757); +const deserializerMiddleware_1 = __nccwpck_require__(4370); +const serializerMiddleware_1 = __nccwpck_require__(7558); exports.deserializerMiddlewareOption = { name: "deserializerMiddleware", step: "deserialize", @@ -20707,7 +20779,7 @@ exports.getSerdePlugin = getSerdePlugin; /***/ }), -/***/ 8757: +/***/ 7558: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -20715,7 +20787,14 @@ exports.getSerdePlugin = getSerdePlugin; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.serializerMiddleware = void 0; const serializerMiddleware = (options, serializer) => (next, context) => async (args) => { - const request = await serializer(args.input, options); + var _a; + const endpoint = ((_a = context.endpointV2) === null || _a === void 0 ? void 0 : _a.url) && options.urlParser + ? async () => options.urlParser(context.endpointV2.url) + : options.endpoint; + if (!endpoint) { + throw new Error("No valid endpoint provider available."); + } + const request = await serializer(args.input, { ...options, endpoint }); return next({ ...args, request, @@ -20726,15 +20805,16 @@ exports.serializerMiddleware = serializerMiddleware; /***/ }), -/***/ 6103: +/***/ 4999: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveSigV4AuthConfig = exports.resolveAwsAuthConfig = void 0; -const property_provider_1 = __nccwpck_require__(2669); -const signature_v4_1 = __nccwpck_require__(2847); +const property_provider_1 = __nccwpck_require__(2780); +const signature_v4_1 = __nccwpck_require__(3799); +const util_middleware_1 = __nccwpck_require__(5313); const CREDENTIAL_EXPIRE_WINDOW = 300000; const resolveAwsAuthConfig = (input) => { const normalizedCreds = input.credentials @@ -20743,10 +20823,10 @@ const resolveAwsAuthConfig = (input) => { const { signingEscapePath = true, systemClockOffset = input.systemClockOffset || 0, sha256 } = input; let signer; if (input.signer) { - signer = normalizeProvider(input.signer); + signer = (0, util_middleware_1.normalizeProvider)(input.signer); } - else { - signer = () => normalizeProvider(input.region)() + else if (input.regionInfoProvider) { + signer = () => (0, util_middleware_1.normalizeProvider)(input.region)() .then(async (region) => [ (await input.regionInfoProvider(region, { useFipsEndpoint: await input.useFipsEndpoint(), @@ -20766,10 +20846,31 @@ const resolveAwsAuthConfig = (input) => { sha256, uriEscapePath: signingEscapePath, }; - const signerConstructor = input.signerConstructor || signature_v4_1.SignatureV4; - return new signerConstructor(params); + const SignerCtor = input.signerConstructor || signature_v4_1.SignatureV4; + return new SignerCtor(params); }); } + else { + signer = async (authScheme) => { + if (!authScheme) { + throw new Error("Unexpected empty auth scheme config"); + } + const signingRegion = authScheme.signingScope; + const signingService = authScheme.signingName; + input.signingRegion = input.signingRegion || signingRegion; + input.signingName = input.signingName || signingService || input.serviceId; + const params = { + ...input, + credentials: normalizedCreds, + region: input.signingRegion, + service: input.signingName, + sha256, + uriEscapePath: signingEscapePath, + }; + const SignerCtor = input.signerConstructor || signature_v4_1.SignatureV4; + return new SignerCtor(params); + }; + } return { ...input, systemClockOffset, @@ -20786,10 +20887,10 @@ const resolveSigV4AuthConfig = (input) => { const { signingEscapePath = true, systemClockOffset = input.systemClockOffset || 0, sha256 } = input; let signer; if (input.signer) { - signer = normalizeProvider(input.signer); + signer = (0, util_middleware_1.normalizeProvider)(input.signer); } else { - signer = normalizeProvider(new signature_v4_1.SignatureV4({ + signer = (0, util_middleware_1.normalizeProvider)(new signature_v4_1.SignatureV4({ credentials: normalizedCreds, region: input.region, service: input.signingName, @@ -20806,51 +20907,46 @@ const resolveSigV4AuthConfig = (input) => { }; }; exports.resolveSigV4AuthConfig = resolveSigV4AuthConfig; -const normalizeProvider = (input) => { - if (typeof input === "object") { - const promisified = Promise.resolve(input); - return () => promisified; - } - return input; -}; const normalizeCredentialProvider = (credentials) => { if (typeof credentials === "function") { return (0, property_provider_1.memoize)(credentials, (credentials) => credentials.expiration !== undefined && credentials.expiration.getTime() - Date.now() < CREDENTIAL_EXPIRE_WINDOW, (credentials) => credentials.expiration !== undefined); } - return normalizeProvider(credentials); + return (0, util_middleware_1.normalizeProvider)(credentials); }; /***/ }), -/***/ 7146: +/***/ 342: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(6103), exports); -tslib_1.__exportStar(__nccwpck_require__(9518), exports); +tslib_1.__exportStar(__nccwpck_require__(4999), exports); +tslib_1.__exportStar(__nccwpck_require__(1780), exports); /***/ }), -/***/ 9518: +/***/ 1780: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getSigV4AuthPlugin = exports.getAwsAuthPlugin = exports.awsAuthMiddlewareOptions = exports.awsAuthMiddleware = void 0; -const protocol_http_1 = __nccwpck_require__(9992); -const getSkewCorrectedDate_1 = __nccwpck_require__(284); -const getUpdatedSystemClockOffset_1 = __nccwpck_require__(1885); +const protocol_http_1 = __nccwpck_require__(4093); +const getSkewCorrectedDate_1 = __nccwpck_require__(8649); +const getUpdatedSystemClockOffset_1 = __nccwpck_require__(5428); const awsAuthMiddleware = (options) => (next, context) => async function (args) { + var _a, _b, _c; if (!protocol_http_1.HttpRequest.isInstance(args.request)) return next(args); - const signer = await options.signer(); + const 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]; + const signer = await options.signer(authScheme); const output = await next({ ...args, request: await signer.sign(args.request, { @@ -20892,7 +20988,7 @@ exports.getSigV4AuthPlugin = exports.getAwsAuthPlugin; /***/ }), -/***/ 284: +/***/ 8649: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -20905,14 +21001,14 @@ exports.getSkewCorrectedDate = getSkewCorrectedDate; /***/ }), -/***/ 1885: +/***/ 5428: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getUpdatedSystemClockOffset = void 0; -const isClockSkewed_1 = __nccwpck_require__(5691); +const isClockSkewed_1 = __nccwpck_require__(3826); const getUpdatedSystemClockOffset = (clockTime, currentSystemClockOffset) => { const clockTimeInMs = Date.parse(clockTime); if ((0, isClockSkewed_1.isClockSkewed)(clockTimeInMs, currentSystemClockOffset)) { @@ -20925,21 +21021,21 @@ exports.getUpdatedSystemClockOffset = getUpdatedSystemClockOffset; /***/ }), -/***/ 5691: +/***/ 3826: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.isClockSkewed = void 0; -const getSkewCorrectedDate_1 = __nccwpck_require__(284); +const getSkewCorrectedDate_1 = __nccwpck_require__(8649); const isClockSkewed = (clockTime, systemClockOffset) => Math.abs((0, getSkewCorrectedDate_1.getSkewCorrectedDate)(systemClockOffset).getTime() - clockTime) >= 300000; exports.isClockSkewed = isClockSkewed; /***/ }), -/***/ 6683: +/***/ 7459: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -21011,7 +21107,7 @@ const constructStack = () => { }); return expandedMiddlewareList; }; - const getMiddlewareList = () => { + const getMiddlewareList = (debug = false) => { const normalizedAbsoluteEntries = []; const normalizedRelativeEntries = []; const normalizedEntriesNameMap = {}; @@ -21039,6 +21135,9 @@ const constructStack = () => { if (entry.toMiddleware) { const toMiddleware = normalizedEntriesNameMap[entry.toMiddleware]; if (toMiddleware === undefined) { + if (debug) { + return; + } throw new Error(`${entry.toMiddleware} is not found when adding ${entry.name || "anonymous"} middleware ${entry.relation} ${entry.toMiddleware}`); } if (entry.relation === "after") { @@ -21055,7 +21154,7 @@ const constructStack = () => { wholeList.push(...expendedMiddlewareList); return wholeList; }, []); - return mainChain.map((entry) => entry.middleware); + return mainChain; }; const stack = { add: (middleware, options = {}) => { @@ -21136,8 +21235,15 @@ const constructStack = () => { return cloned; }, applyToStack: cloneTo, + identify: () => { + return getMiddlewareList(true).map((mw) => { + return mw.name + ": " + (mw.tags || []).join(","); + }); + }, resolve: (handler, context) => { - for (const middleware of getMiddlewareList().reverse()) { + for (const middleware of getMiddlewareList() + .map((entry) => entry.middleware) + .reverse()) { handler = middleware(handler, context); } return handler; @@ -21162,19 +21268,19 @@ const priorityWeights = { /***/ }), -/***/ 5053: +/***/ 3256: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(6683), exports); +tslib_1.__exportStar(__nccwpck_require__(7459), exports); /***/ }), -/***/ 8729: +/***/ 4449: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -21192,7 +21298,7 @@ exports.resolveUserAgentConfig = resolveUserAgentConfig; /***/ }), -/***/ 5417: +/***/ 7492: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -21207,28 +21313,28 @@ exports.UA_ESCAPE_REGEX = /[^\!\#\$\%\&\'\*\+\-\.\^\_\`\|\~\d\w]/g; /***/ }), -/***/ 5508: +/***/ 2467: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(8729), exports); -tslib_1.__exportStar(__nccwpck_require__(5151), exports); +tslib_1.__exportStar(__nccwpck_require__(4449), exports); +tslib_1.__exportStar(__nccwpck_require__(6906), exports); /***/ }), -/***/ 5151: +/***/ 6906: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getUserAgentPlugin = exports.getUserAgentMiddlewareOptions = exports.userAgentMiddleware = void 0; -const protocol_http_1 = __nccwpck_require__(9992); -const constants_1 = __nccwpck_require__(5417); +const protocol_http_1 = __nccwpck_require__(4093); +const constants_1 = __nccwpck_require__(7492); const userAgentMiddleware = (options) => (next, context) => async (args) => { var _a, _b; const { request } = args; @@ -21289,31 +21395,31 @@ exports.getUserAgentPlugin = getUserAgentPlugin; /***/ }), -/***/ 2304: +/***/ 3463: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.loadConfig = void 0; -const property_provider_1 = __nccwpck_require__(2669); -const fromEnv_1 = __nccwpck_require__(6043); -const fromSharedConfigFiles_1 = __nccwpck_require__(642); -const fromStatic_1 = __nccwpck_require__(6410); +const property_provider_1 = __nccwpck_require__(2780); +const fromEnv_1 = __nccwpck_require__(2194); +const fromSharedConfigFiles_1 = __nccwpck_require__(6); +const fromStatic_1 = __nccwpck_require__(5269); const loadConfig = ({ environmentVariableSelector, configFileSelector, default: defaultValue }, configuration = {}) => (0, property_provider_1.memoize)((0, property_provider_1.chain)((0, fromEnv_1.fromEnv)(environmentVariableSelector), (0, fromSharedConfigFiles_1.fromSharedConfigFiles)(configFileSelector, configuration), (0, fromStatic_1.fromStatic)(defaultValue))); exports.loadConfig = loadConfig; /***/ }), -/***/ 6043: +/***/ 2194: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromEnv = void 0; -const property_provider_1 = __nccwpck_require__(2669); +const property_provider_1 = __nccwpck_require__(2780); const fromEnv = (envVarSelector) => async () => { try { const config = envVarSelector(process.env); @@ -21331,15 +21437,15 @@ exports.fromEnv = fromEnv; /***/ }), -/***/ 642: +/***/ 6: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromSharedConfigFiles = void 0; -const property_provider_1 = __nccwpck_require__(2669); -const shared_ini_file_loader_1 = __nccwpck_require__(6361); +const property_provider_1 = __nccwpck_require__(2780); +const shared_ini_file_loader_1 = __nccwpck_require__(129); const fromSharedConfigFiles = (configSelector, { preferredFile = "config", ...init } = {}) => async () => { const profile = (0, shared_ini_file_loader_1.getProfileName)(init); const { configFile, credentialsFile } = await (0, shared_ini_file_loader_1.loadSharedConfigFiles)(init); @@ -21365,14 +21471,14 @@ exports.fromSharedConfigFiles = fromSharedConfigFiles; /***/ }), -/***/ 6410: +/***/ 5269: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromStatic = void 0; -const property_provider_1 = __nccwpck_require__(2669); +const property_provider_1 = __nccwpck_require__(2780); const isFunction = (func) => typeof func === "function"; const fromStatic = (defaultValue) => isFunction(defaultValue) ? async () => await defaultValue() : (0, property_provider_1.fromStatic)(defaultValue); exports.fromStatic = fromStatic; @@ -21380,19 +21486,19 @@ exports.fromStatic = fromStatic; /***/ }), -/***/ 659: +/***/ 7160: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(2304), exports); +tslib_1.__exportStar(__nccwpck_require__(3463), exports); /***/ }), -/***/ 7769: +/***/ 4719: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -21404,7 +21510,7 @@ exports.NODEJS_TIMEOUT_ERROR_CODES = ["ECONNRESET", "EPIPE", "ETIMEDOUT"]; /***/ }), -/***/ 8826: +/***/ 5210: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -21424,36 +21530,36 @@ exports.getTransformedHeaders = getTransformedHeaders; /***/ }), -/***/ 9044: +/***/ 9623: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(7543), exports); -tslib_1.__exportStar(__nccwpck_require__(3586), exports); -tslib_1.__exportStar(__nccwpck_require__(6019), exports); +tslib_1.__exportStar(__nccwpck_require__(998), exports); +tslib_1.__exportStar(__nccwpck_require__(8202), exports); +tslib_1.__exportStar(__nccwpck_require__(6987), exports); /***/ }), -/***/ 7543: +/***/ 998: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.NodeHttpHandler = void 0; -const protocol_http_1 = __nccwpck_require__(9992); -const querystring_builder_1 = __nccwpck_require__(7249); +const protocol_http_1 = __nccwpck_require__(4093); +const querystring_builder_1 = __nccwpck_require__(807); const http_1 = __nccwpck_require__(3685); const https_1 = __nccwpck_require__(5687); -const constants_1 = __nccwpck_require__(7769); -const get_transformed_headers_1 = __nccwpck_require__(8826); -const set_connection_timeout_1 = __nccwpck_require__(3677); -const set_socket_timeout_1 = __nccwpck_require__(3075); -const write_request_body_1 = __nccwpck_require__(9494); +const constants_1 = __nccwpck_require__(4719); +const get_transformed_headers_1 = __nccwpck_require__(5210); +const set_connection_timeout_1 = __nccwpck_require__(8675); +const set_socket_timeout_1 = __nccwpck_require__(1486); +const write_request_body_1 = __nccwpck_require__(4169); class NodeHttpHandler { constructor(options) { this.metadata = { handlerProtocol: "http/1.1" }; @@ -21546,18 +21652,18 @@ exports.NodeHttpHandler = NodeHttpHandler; /***/ }), -/***/ 3586: +/***/ 8202: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.NodeHttp2Handler = void 0; -const protocol_http_1 = __nccwpck_require__(9992); -const querystring_builder_1 = __nccwpck_require__(7249); +const protocol_http_1 = __nccwpck_require__(4093); +const querystring_builder_1 = __nccwpck_require__(807); const http2_1 = __nccwpck_require__(5158); -const get_transformed_headers_1 = __nccwpck_require__(8826); -const write_request_body_1 = __nccwpck_require__(9494); +const get_transformed_headers_1 = __nccwpck_require__(5210); +const write_request_body_1 = __nccwpck_require__(4169); class NodeHttp2Handler { constructor(options) { this.metadata = { handlerProtocol: "h2" }; @@ -21701,7 +21807,7 @@ exports.NodeHttp2Handler = NodeHttp2Handler; /***/ }), -/***/ 3677: +/***/ 8675: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -21731,7 +21837,7 @@ exports.setConnectionTimeout = setConnectionTimeout; /***/ }), -/***/ 3075: +/***/ 1486: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -21749,7 +21855,7 @@ exports.setSocketTimeout = setSocketTimeout; /***/ }), -/***/ 2265: +/***/ 5745: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -21772,14 +21878,14 @@ exports.Collector = Collector; /***/ }), -/***/ 6019: +/***/ 6987: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.streamCollector = void 0; -const collector_1 = __nccwpck_require__(2265); +const collector_1 = __nccwpck_require__(5745); const streamCollector = (stream) => new Promise((resolve, reject) => { const collector = new collector_1.Collector(); stream.pipe(collector); @@ -21798,7 +21904,7 @@ exports.streamCollector = streamCollector; /***/ }), -/***/ 9494: +/***/ 4169: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -21833,14 +21939,14 @@ function writeBody(httpRequest, body) { /***/ }), -/***/ 837: +/***/ 7011: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.CredentialsProviderError = void 0; -const ProviderError_1 = __nccwpck_require__(357); +const ProviderError_1 = __nccwpck_require__(7989); class CredentialsProviderError extends ProviderError_1.ProviderError { constructor(message, tryNextLink = true) { super(message, tryNextLink); @@ -21854,7 +21960,7 @@ exports.CredentialsProviderError = CredentialsProviderError; /***/ }), -/***/ 357: +/***/ 7989: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -21877,14 +21983,35 @@ exports.ProviderError = ProviderError; /***/ }), -/***/ 5464: +/***/ 2756: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.TokenProviderError = void 0; +const ProviderError_1 = __nccwpck_require__(7989); +class TokenProviderError extends ProviderError_1.ProviderError { + constructor(message, tryNextLink = true) { + super(message, tryNextLink); + this.tryNextLink = tryNextLink; + this.name = "TokenProviderError"; + Object.setPrototypeOf(this, TokenProviderError.prototype); + } +} +exports.TokenProviderError = TokenProviderError; + + +/***/ }), + +/***/ 3937: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.chain = void 0; -const ProviderError_1 = __nccwpck_require__(357); +const ProviderError_1 = __nccwpck_require__(7989); function chain(...providers) { return () => { let promise = Promise.reject(new ProviderError_1.ProviderError("No providers in chain")); @@ -21904,7 +22031,7 @@ exports.chain = chain; /***/ }), -/***/ 9669: +/***/ 5266: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -21917,23 +22044,24 @@ exports.fromStatic = fromStatic; /***/ }), -/***/ 2669: +/***/ 2780: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(837), exports); -tslib_1.__exportStar(__nccwpck_require__(357), exports); -tslib_1.__exportStar(__nccwpck_require__(5464), exports); -tslib_1.__exportStar(__nccwpck_require__(9669), exports); -tslib_1.__exportStar(__nccwpck_require__(7857), exports); +tslib_1.__exportStar(__nccwpck_require__(7011), exports); +tslib_1.__exportStar(__nccwpck_require__(7989), exports); +tslib_1.__exportStar(__nccwpck_require__(2756), exports); +tslib_1.__exportStar(__nccwpck_require__(3937), exports); +tslib_1.__exportStar(__nccwpck_require__(5266), exports); +tslib_1.__exportStar(__nccwpck_require__(17), exports); /***/ }), -/***/ 7857: +/***/ 17: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -21990,7 +22118,7 @@ exports.memoize = memoize; /***/ }), -/***/ 3888: +/***/ 6275: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22000,7 +22128,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); /***/ }), -/***/ 6919: +/***/ 6045: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22057,7 +22185,7 @@ function cloneQuery(query) { /***/ }), -/***/ 9667: +/***/ 3666: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22082,22 +22210,22 @@ exports.HttpResponse = HttpResponse; /***/ }), -/***/ 9992: +/***/ 4093: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(3888), exports); -tslib_1.__exportStar(__nccwpck_require__(6919), exports); -tslib_1.__exportStar(__nccwpck_require__(9667), exports); -tslib_1.__exportStar(__nccwpck_require__(9703), exports); +tslib_1.__exportStar(__nccwpck_require__(6275), exports); +tslib_1.__exportStar(__nccwpck_require__(6045), exports); +tslib_1.__exportStar(__nccwpck_require__(3666), exports); +tslib_1.__exportStar(__nccwpck_require__(3729), exports); /***/ }), -/***/ 9703: +/***/ 3729: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22113,14 +22241,14 @@ exports.isValidHostname = isValidHostname; /***/ }), -/***/ 7249: +/***/ 807: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.buildQueryString = void 0; -const util_uri_escape_1 = __nccwpck_require__(599); +const util_uri_escape_1 = __nccwpck_require__(8045); function buildQueryString(query) { const parts = []; for (let key of Object.keys(query).sort()) { @@ -22146,7 +22274,7 @@ exports.buildQueryString = buildQueryString; /***/ }), -/***/ 9075: +/***/ 2450: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22181,7 +22309,7 @@ exports.parseQueryString = parseQueryString; /***/ }), -/***/ 1620: +/***/ 6406: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22218,14 +22346,14 @@ exports.TRANSIENT_ERROR_STATUS_CODES = [500, 502, 503, 504]; /***/ }), -/***/ 6476: +/***/ 5333: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.isTransientError = exports.isThrottlingError = exports.isClockSkewError = exports.isRetryableByTrait = void 0; -const constants_1 = __nccwpck_require__(1620); +const constants_1 = __nccwpck_require__(6406); const isRetryableByTrait = (error) => error.$retryable !== undefined; exports.isRetryableByTrait = isRetryableByTrait; const isClockSkewError = (error) => constants_1.CLOCK_SKEW_ERROR_CODES.includes(error.name); @@ -22247,7 +22375,7 @@ exports.isTransientError = isTransientError; /***/ }), -/***/ 3949: +/***/ 663: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -22255,7 +22383,7 @@ exports.isTransientError = isTransientError; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getConfigFilepath = exports.ENV_CONFIG_PATH = void 0; const path_1 = __nccwpck_require__(1017); -const getHomeDir_1 = __nccwpck_require__(6636); +const getHomeDir_1 = __nccwpck_require__(1791); exports.ENV_CONFIG_PATH = "AWS_CONFIG_FILE"; const getConfigFilepath = () => process.env[exports.ENV_CONFIG_PATH] || (0, path_1.join)((0, getHomeDir_1.getHomeDir)(), ".aws", "config"); exports.getConfigFilepath = getConfigFilepath; @@ -22263,7 +22391,7 @@ exports.getConfigFilepath = getConfigFilepath; /***/ }), -/***/ 5857: +/***/ 5988: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -22271,7 +22399,7 @@ exports.getConfigFilepath = getConfigFilepath; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getCredentialsFilepath = exports.ENV_CREDENTIALS_PATH = void 0; const path_1 = __nccwpck_require__(1017); -const getHomeDir_1 = __nccwpck_require__(6636); +const getHomeDir_1 = __nccwpck_require__(1791); exports.ENV_CREDENTIALS_PATH = "AWS_SHARED_CREDENTIALS_FILE"; const getCredentialsFilepath = () => process.env[exports.ENV_CREDENTIALS_PATH] || (0, path_1.join)((0, getHomeDir_1.getHomeDir)(), ".aws", "credentials"); exports.getCredentialsFilepath = getCredentialsFilepath; @@ -22279,7 +22407,7 @@ exports.getCredentialsFilepath = getCredentialsFilepath; /***/ }), -/***/ 6636: +/***/ 1791: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -22303,7 +22431,7 @@ exports.getHomeDir = getHomeDir; /***/ }), -/***/ 4402: +/***/ 5918: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22321,7 +22449,7 @@ exports.getProfileData = getProfileData; /***/ }), -/***/ 5783: +/***/ 4658: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22336,7 +22464,7 @@ exports.getProfileName = getProfileName; /***/ }), -/***/ 8215: +/***/ 9272: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -22345,7 +22473,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getSSOTokenFilepath = void 0; const crypto_1 = __nccwpck_require__(6113); const path_1 = __nccwpck_require__(1017); -const getHomeDir_1 = __nccwpck_require__(6636); +const getHomeDir_1 = __nccwpck_require__(1791); const getSSOTokenFilepath = (ssoStartUrl) => { const hasher = (0, crypto_1.createHash)("sha1"); const cacheName = hasher.update(ssoStartUrl).digest("hex"); @@ -22356,7 +22484,7 @@ exports.getSSOTokenFilepath = getSSOTokenFilepath; /***/ }), -/***/ 8627: +/***/ 7479: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -22364,7 +22492,7 @@ exports.getSSOTokenFilepath = getSSOTokenFilepath; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getSSOTokenFromFile = void 0; const fs_1 = __nccwpck_require__(7147); -const getSSOTokenFilepath_1 = __nccwpck_require__(8215); +const getSSOTokenFilepath_1 = __nccwpck_require__(9272); const { readFile } = fs_1.promises; const getSSOTokenFromFile = async (ssoStartUrl) => { const ssoTokenFilepath = (0, getSSOTokenFilepath_1.getSSOTokenFilepath)(ssoStartUrl); @@ -22376,36 +22504,53 @@ exports.getSSOTokenFromFile = getSSOTokenFromFile; /***/ }), -/***/ 6361: +/***/ 9138: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getSsoSessionData = void 0; +const ssoSessionKeyRegex = /^sso-session\s(["'])?([^\1]+)\1$/; +const getSsoSessionData = (data) => Object.entries(data) + .filter(([key]) => ssoSessionKeyRegex.test(key)) + .reduce((acc, [key, value]) => ({ ...acc, [ssoSessionKeyRegex.exec(key)[2]]: value }), {}); +exports.getSsoSessionData = getSsoSessionData; + + +/***/ }), + +/***/ 129: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(6636), exports); -tslib_1.__exportStar(__nccwpck_require__(5783), exports); -tslib_1.__exportStar(__nccwpck_require__(8215), exports); -tslib_1.__exportStar(__nccwpck_require__(8627), exports); -tslib_1.__exportStar(__nccwpck_require__(5707), exports); -tslib_1.__exportStar(__nccwpck_require__(1642), exports); -tslib_1.__exportStar(__nccwpck_require__(7275), exports); +tslib_1.__exportStar(__nccwpck_require__(1791), exports); +tslib_1.__exportStar(__nccwpck_require__(4658), exports); +tslib_1.__exportStar(__nccwpck_require__(9272), exports); +tslib_1.__exportStar(__nccwpck_require__(7479), exports); +tslib_1.__exportStar(__nccwpck_require__(5879), exports); +tslib_1.__exportStar(__nccwpck_require__(7190), exports); +tslib_1.__exportStar(__nccwpck_require__(4481), exports); +tslib_1.__exportStar(__nccwpck_require__(934), exports); /***/ }), -/***/ 5707: +/***/ 5879: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.loadSharedConfigFiles = void 0; -const getConfigFilepath_1 = __nccwpck_require__(3949); -const getCredentialsFilepath_1 = __nccwpck_require__(5857); -const getProfileData_1 = __nccwpck_require__(4402); -const parseIni_1 = __nccwpck_require__(570); -const slurpFile_1 = __nccwpck_require__(4422); +const getConfigFilepath_1 = __nccwpck_require__(663); +const getCredentialsFilepath_1 = __nccwpck_require__(5988); +const getProfileData_1 = __nccwpck_require__(5918); +const parseIni_1 = __nccwpck_require__(6595); +const slurpFile_1 = __nccwpck_require__(6626); const swallowError = () => ({}); const loadSharedConfigFiles = async (init = {}) => { const { filepath = (0, getCredentialsFilepath_1.getCredentialsFilepath)(), configFilepath = (0, getConfigFilepath_1.getConfigFilepath)() } = init; @@ -22423,7 +22568,31 @@ exports.loadSharedConfigFiles = loadSharedConfigFiles; /***/ }), -/***/ 570: +/***/ 7190: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.loadSsoSessionData = void 0; +const getConfigFilepath_1 = __nccwpck_require__(663); +const getSsoSessionData_1 = __nccwpck_require__(9138); +const parseIni_1 = __nccwpck_require__(6595); +const slurpFile_1 = __nccwpck_require__(6626); +const swallowError = () => ({}); +const loadSsoSessionData = async (init = {}) => { + var _a; + return (0, slurpFile_1.slurpFile)((_a = init.configFilepath) !== null && _a !== void 0 ? _a : (0, getConfigFilepath_1.getConfigFilepath)()) + .then(parseIni_1.parseIni) + .then(getSsoSessionData_1.getSsoSessionData) + .catch(swallowError); +}; +exports.loadSsoSessionData = loadSsoSessionData; + + +/***/ }), + +/***/ 6595: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22465,14 +22634,14 @@ exports.parseIni = parseIni; /***/ }), -/***/ 1642: +/***/ 4481: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.parseKnownFiles = void 0; -const loadSharedConfigFiles_1 = __nccwpck_require__(5707); +const loadSharedConfigFiles_1 = __nccwpck_require__(5879); const parseKnownFiles = async (init) => { const parsedFiles = await (0, loadSharedConfigFiles_1.loadSharedConfigFiles)(init); return { @@ -22485,7 +22654,7 @@ exports.parseKnownFiles = parseKnownFiles; /***/ }), -/***/ 4422: +/***/ 6626: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -22506,7 +22675,7 @@ exports.slurpFile = slurpFile; /***/ }), -/***/ 7275: +/***/ 934: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22516,24 +22685,24 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); /***/ }), -/***/ 7090: +/***/ 3366: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.SignatureV4 = void 0; -const util_hex_encoding_1 = __nccwpck_require__(7394); -const util_middleware_1 = __nccwpck_require__(5235); -const constants_1 = __nccwpck_require__(6078); -const credentialDerivation_1 = __nccwpck_require__(1520); -const getCanonicalHeaders_1 = __nccwpck_require__(9861); -const getCanonicalQuery_1 = __nccwpck_require__(4749); -const getPayloadHash_1 = __nccwpck_require__(35); -const headerUtil_1 = __nccwpck_require__(2475); -const moveHeadersToQuery_1 = __nccwpck_require__(4266); -const prepareRequest_1 = __nccwpck_require__(4165); -const utilDate_1 = __nccwpck_require__(3771); +const util_hex_encoding_1 = __nccwpck_require__(1906); +const util_middleware_1 = __nccwpck_require__(5313); +const constants_1 = __nccwpck_require__(4135); +const credentialDerivation_1 = __nccwpck_require__(1977); +const getCanonicalHeaders_1 = __nccwpck_require__(9791); +const getCanonicalQuery_1 = __nccwpck_require__(2311); +const getPayloadHash_1 = __nccwpck_require__(5707); +const headerUtil_1 = __nccwpck_require__(2725); +const moveHeadersToQuery_1 = __nccwpck_require__(3695); +const prepareRequest_1 = __nccwpck_require__(5394); +const utilDate_1 = __nccwpck_require__(1286); class SignatureV4 { constructor({ applyChecksum, credentials, region, service, sha256, uriEscapePath = true, }) { this.service = service; @@ -22546,6 +22715,7 @@ class SignatureV4 { async presign(originalRequest, options = {}) { const { signingDate = new Date(), expiresIn = 3600, unsignableHeaders, unhoistableHeaders, signableHeaders, signingRegion, signingService, } = options; const credentials = await this.credentialProvider(); + this.validateResolvedCredentials(credentials); const region = signingRegion !== null && signingRegion !== void 0 ? signingRegion : (await this.regionProvider()); const { longDate, shortDate } = formatDate(signingDate); if (expiresIn > constants_1.MAX_PRESIGNED_TTL) { @@ -22596,6 +22766,7 @@ class SignatureV4 { } async signString(stringToSign, { signingDate = new Date(), signingRegion, signingService } = {}) { const credentials = await this.credentialProvider(); + this.validateResolvedCredentials(credentials); const region = signingRegion !== null && signingRegion !== void 0 ? signingRegion : (await this.regionProvider()); const { shortDate } = formatDate(signingDate); const hash = new this.sha256(await this.getSigningKey(credentials, region, shortDate, signingService)); @@ -22604,6 +22775,7 @@ class SignatureV4 { } async signRequest(requestToSign, { signingDate = new Date(), signableHeaders, unsignableHeaders, signingRegion, signingService, } = {}) { const credentials = await this.credentialProvider(); + this.validateResolvedCredentials(credentials); const region = signingRegion !== null && signingRegion !== void 0 ? signingRegion : (await this.regionProvider()); const request = (0, prepareRequest_1.prepareRequest)(requestToSign); const { longDate, shortDate } = formatDate(signingDate); @@ -22674,6 +22846,13 @@ ${(0, util_hex_encoding_1.toHex)(hashedRequest)}`; getSigningKey(credentials, region, shortDate, service) { return (0, credentialDerivation_1.getSigningKey)(this.sha256, credentials, shortDate, region, service || this.service); } + validateResolvedCredentials(credentials) { + if (typeof credentials !== "object" || + typeof credentials.accessKeyId !== "string" || + typeof credentials.secretAccessKey !== "string") { + throw new Error("Resolved credential object is not valid"); + } + } } exports.SignatureV4 = SignatureV4; const formatDate = (now) => { @@ -22688,7 +22867,7 @@ const getCanonicalHeaderList = (headers) => Object.keys(headers).sort().join(";" /***/ }), -/***/ 8736: +/***/ 9555: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22713,7 +22892,7 @@ exports.cloneQuery = cloneQuery; /***/ }), -/***/ 6078: +/***/ 4135: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22767,15 +22946,15 @@ exports.MAX_PRESIGNED_TTL = 60 * 60 * 24 * 7; /***/ }), -/***/ 1520: +/***/ 1977: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.clearCredentialCache = exports.getSigningKey = exports.createScope = void 0; -const util_hex_encoding_1 = __nccwpck_require__(7394); -const constants_1 = __nccwpck_require__(6078); +const util_hex_encoding_1 = __nccwpck_require__(1906); +const constants_1 = __nccwpck_require__(4135); const signingKeyCache = {}; const cacheQueue = []; const createScope = (shortDate, region, service) => `${shortDate}/${region}/${service}/${constants_1.KEY_TYPE_IDENTIFIER}`; @@ -22813,14 +22992,14 @@ const hmac = (ctor, secret, data) => { /***/ }), -/***/ 9861: +/***/ 9791: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getCanonicalHeaders = void 0; -const constants_1 = __nccwpck_require__(6078); +const constants_1 = __nccwpck_require__(4135); const getCanonicalHeaders = ({ headers }, unsignableHeaders, signableHeaders) => { const canonical = {}; for (const headerName of Object.keys(headers).sort()) { @@ -22845,15 +23024,15 @@ exports.getCanonicalHeaders = getCanonicalHeaders; /***/ }), -/***/ 4749: +/***/ 2311: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getCanonicalQuery = void 0; -const util_uri_escape_1 = __nccwpck_require__(599); -const constants_1 = __nccwpck_require__(6078); +const util_uri_escape_1 = __nccwpck_require__(8045); +const constants_1 = __nccwpck_require__(4135); const getCanonicalQuery = ({ query = {} }) => { const keys = []; const serialized = {}; @@ -22884,16 +23063,16 @@ exports.getCanonicalQuery = getCanonicalQuery; /***/ }), -/***/ 35: +/***/ 5707: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.getPayloadHash = void 0; -const is_array_buffer_1 = __nccwpck_require__(9236); -const util_hex_encoding_1 = __nccwpck_require__(7394); -const constants_1 = __nccwpck_require__(6078); +const is_array_buffer_1 = __nccwpck_require__(382); +const util_hex_encoding_1 = __nccwpck_require__(1906); +const constants_1 = __nccwpck_require__(4135); const getPayloadHash = async ({ headers, body }, hashConstructor) => { for (const headerName of Object.keys(headers)) { if (headerName.toLowerCase() === constants_1.SHA256_HEADER) { @@ -22915,7 +23094,7 @@ exports.getPayloadHash = getPayloadHash; /***/ }), -/***/ 2475: +/***/ 2725: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -22955,7 +23134,7 @@ exports.deleteHeader = deleteHeader; /***/ }), -/***/ 2847: +/***/ 3799: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -22963,30 +23142,30 @@ exports.deleteHeader = deleteHeader; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.prepareRequest = exports.moveHeadersToQuery = exports.getPayloadHash = exports.getCanonicalQuery = exports.getCanonicalHeaders = void 0; const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(7090), exports); -var getCanonicalHeaders_1 = __nccwpck_require__(9861); +tslib_1.__exportStar(__nccwpck_require__(3366), exports); +var getCanonicalHeaders_1 = __nccwpck_require__(9791); Object.defineProperty(exports, "getCanonicalHeaders", ({ enumerable: true, get: function () { return getCanonicalHeaders_1.getCanonicalHeaders; } })); -var getCanonicalQuery_1 = __nccwpck_require__(4749); +var getCanonicalQuery_1 = __nccwpck_require__(2311); Object.defineProperty(exports, "getCanonicalQuery", ({ enumerable: true, get: function () { return getCanonicalQuery_1.getCanonicalQuery; } })); -var getPayloadHash_1 = __nccwpck_require__(35); +var getPayloadHash_1 = __nccwpck_require__(5707); Object.defineProperty(exports, "getPayloadHash", ({ enumerable: true, get: function () { return getPayloadHash_1.getPayloadHash; } })); -var moveHeadersToQuery_1 = __nccwpck_require__(4266); +var moveHeadersToQuery_1 = __nccwpck_require__(3695); Object.defineProperty(exports, "moveHeadersToQuery", ({ enumerable: true, get: function () { return moveHeadersToQuery_1.moveHeadersToQuery; } })); -var prepareRequest_1 = __nccwpck_require__(4165); +var prepareRequest_1 = __nccwpck_require__(5394); Object.defineProperty(exports, "prepareRequest", ({ enumerable: true, get: function () { return prepareRequest_1.prepareRequest; } })); -tslib_1.__exportStar(__nccwpck_require__(1520), exports); +tslib_1.__exportStar(__nccwpck_require__(1977), exports); /***/ }), -/***/ 4266: +/***/ 3695: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.moveHeadersToQuery = void 0; -const cloneRequest_1 = __nccwpck_require__(8736); +const cloneRequest_1 = __nccwpck_require__(9555); const moveHeadersToQuery = (request, options = {}) => { var _a; const { headers, query = {} } = typeof request.clone === "function" ? request.clone() : (0, cloneRequest_1.cloneRequest)(request); @@ -23008,15 +23187,15 @@ exports.moveHeadersToQuery = moveHeadersToQuery; /***/ }), -/***/ 4165: +/***/ 5394: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.prepareRequest = void 0; -const cloneRequest_1 = __nccwpck_require__(8736); -const constants_1 = __nccwpck_require__(6078); +const cloneRequest_1 = __nccwpck_require__(9555); +const constants_1 = __nccwpck_require__(4135); const prepareRequest = (request) => { request = typeof request.clone === "function" ? request.clone() : (0, cloneRequest_1.cloneRequest)(request); for (const headerName of Object.keys(request.headers)) { @@ -23031,7 +23210,7 @@ exports.prepareRequest = prepareRequest; /***/ }), -/***/ 3771: +/***/ 1286: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23059,14 +23238,14 @@ exports.toDate = toDate; /***/ }), -/***/ 4755: +/***/ 1761: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.Client = void 0; -const middleware_stack_1 = __nccwpck_require__(5053); +const middleware_stack_1 = __nccwpck_require__(3256); class Client { constructor(config) { this.middlewareStack = (0, middleware_stack_1.constructStack)(); @@ -23095,14 +23274,14 @@ exports.Client = Client; /***/ }), -/***/ 9278: +/***/ 9077: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.Command = void 0; -const middleware_stack_1 = __nccwpck_require__(5053); +const middleware_stack_1 = __nccwpck_require__(3256); class Command { constructor() { this.middlewareStack = (0, middleware_stack_1.constructStack)(); @@ -23113,7 +23292,7 @@ exports.Command = Command; /***/ }), -/***/ 2347: +/***/ 3627: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23125,14 +23304,14 @@ exports.SENSITIVE_STRING = "***SensitiveInformation***"; /***/ }), -/***/ 1417: +/***/ 5217: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.parseEpochTimestamp = exports.parseRfc7231DateTime = exports.parseRfc3339DateTime = exports.dateToUtcString = void 0; -const parse_utils_1 = __nccwpck_require__(1489); +const parse_utils_1 = __nccwpck_require__(7247); const DAYS = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]; const MONTHS = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; function dateToUtcString(date) { @@ -23289,14 +23468,14 @@ const stripLeadingZeroes = (value) => { /***/ }), -/***/ 8979: +/***/ 5565: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.throwDefaultError = void 0; -const exceptions_1 = __nccwpck_require__(8438); +const exceptions_1 = __nccwpck_require__(1101); const throwDefaultError = ({ output, parsedBody, exceptionCtor, errorCode }) => { const $metadata = deserializeMetadata(output); const statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined; @@ -23321,7 +23500,7 @@ const deserializeMetadata = (output) => { /***/ }), -/***/ 7762: +/***/ 3133: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23359,7 +23538,7 @@ exports.loadConfigsForDefaultMode = loadConfigsForDefaultMode; /***/ }), -/***/ 7649: +/***/ 7863: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23382,7 +23561,7 @@ exports.emitWarningIfUnsupportedVersion = emitWarningIfUnsupportedVersion; /***/ }), -/***/ 8438: +/***/ 1101: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23417,7 +23596,7 @@ exports.decorateServiceException = decorateServiceException; /***/ }), -/***/ 137: +/***/ 1673: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23434,7 +23613,7 @@ exports.extendedEncodeURIComponent = extendedEncodeURIComponent; /***/ }), -/***/ 1927: +/***/ 626: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23447,7 +23626,7 @@ exports.getArrayIfSingleItem = getArrayIfSingleItem; /***/ }), -/***/ 2980: +/***/ 920: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23471,35 +23650,35 @@ exports.getValueFromTextNode = getValueFromTextNode; /***/ }), -/***/ 1529: +/***/ 3118: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(4755), exports); -tslib_1.__exportStar(__nccwpck_require__(9278), exports); -tslib_1.__exportStar(__nccwpck_require__(2347), exports); -tslib_1.__exportStar(__nccwpck_require__(1417), exports); -tslib_1.__exportStar(__nccwpck_require__(8979), exports); -tslib_1.__exportStar(__nccwpck_require__(7762), exports); -tslib_1.__exportStar(__nccwpck_require__(7649), exports); -tslib_1.__exportStar(__nccwpck_require__(8438), exports); -tslib_1.__exportStar(__nccwpck_require__(137), exports); -tslib_1.__exportStar(__nccwpck_require__(1927), exports); -tslib_1.__exportStar(__nccwpck_require__(2980), exports); -tslib_1.__exportStar(__nccwpck_require__(1268), exports); -tslib_1.__exportStar(__nccwpck_require__(8781), exports); -tslib_1.__exportStar(__nccwpck_require__(1489), exports); -tslib_1.__exportStar(__nccwpck_require__(6537), exports); -tslib_1.__exportStar(__nccwpck_require__(4334), exports); -tslib_1.__exportStar(__nccwpck_require__(1689), exports); - - -/***/ }), - -/***/ 1268: +tslib_1.__exportStar(__nccwpck_require__(1761), exports); +tslib_1.__exportStar(__nccwpck_require__(9077), exports); +tslib_1.__exportStar(__nccwpck_require__(3627), exports); +tslib_1.__exportStar(__nccwpck_require__(5217), exports); +tslib_1.__exportStar(__nccwpck_require__(5565), exports); +tslib_1.__exportStar(__nccwpck_require__(3133), exports); +tslib_1.__exportStar(__nccwpck_require__(7863), exports); +tslib_1.__exportStar(__nccwpck_require__(1101), exports); +tslib_1.__exportStar(__nccwpck_require__(1673), exports); +tslib_1.__exportStar(__nccwpck_require__(626), exports); +tslib_1.__exportStar(__nccwpck_require__(920), exports); +tslib_1.__exportStar(__nccwpck_require__(2227), exports); +tslib_1.__exportStar(__nccwpck_require__(1428), exports); +tslib_1.__exportStar(__nccwpck_require__(7247), exports); +tslib_1.__exportStar(__nccwpck_require__(9950), exports); +tslib_1.__exportStar(__nccwpck_require__(828), exports); +tslib_1.__exportStar(__nccwpck_require__(7230), exports); + + +/***/ }), + +/***/ 2227: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23545,7 +23724,7 @@ exports.LazyJsonString = LazyJsonString; /***/ }), -/***/ 8781: +/***/ 1428: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23627,13 +23806,13 @@ const mapWithFilter = (target, filter, instructions) => { /***/ }), -/***/ 1489: +/***/ 7247: /***/ ((__unused_webpack_module, exports) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); -exports.strictParseByte = exports.strictParseShort = exports.strictParseInt32 = exports.strictParseInt = exports.strictParseLong = exports.limitedParseFloat32 = exports.limitedParseFloat = exports.handleFloat = exports.limitedParseDouble = exports.strictParseFloat32 = exports.strictParseFloat = exports.strictParseDouble = exports.expectUnion = exports.expectString = exports.expectObject = exports.expectNonNull = exports.expectByte = exports.expectShort = exports.expectInt32 = exports.expectInt = exports.expectLong = exports.expectFloat32 = exports.expectNumber = exports.expectBoolean = exports.parseBoolean = void 0; +exports.logger = exports.strictParseByte = exports.strictParseShort = exports.strictParseInt32 = exports.strictParseInt = exports.strictParseLong = exports.limitedParseFloat32 = exports.limitedParseFloat = exports.handleFloat = exports.limitedParseDouble = exports.strictParseFloat32 = exports.strictParseFloat = exports.strictParseDouble = exports.expectUnion = exports.expectString = exports.expectObject = exports.expectNonNull = exports.expectByte = exports.expectShort = exports.expectInt32 = exports.expectInt = exports.expectLong = exports.expectFloat32 = exports.expectNumber = exports.expectBoolean = exports.parseBoolean = void 0; const parseBoolean = (value) => { switch (value) { case "true": @@ -23649,20 +23828,52 @@ const expectBoolean = (value) => { if (value === null || value === undefined) { return undefined; } + if (typeof value === "number") { + if (value === 0 || value === 1) { + exports.logger.warn(stackTraceWarning(`Expected boolean, got ${typeof value}: ${value}`)); + } + if (value === 0) { + return false; + } + if (value === 1) { + return true; + } + } + if (typeof value === "string") { + const lower = value.toLowerCase(); + if (lower === "false" || lower === "true") { + exports.logger.warn(stackTraceWarning(`Expected boolean, got ${typeof value}: ${value}`)); + } + if (lower === "false") { + return false; + } + if (lower === "true") { + return true; + } + } if (typeof value === "boolean") { return value; } - throw new TypeError(`Expected boolean, got ${typeof value}`); + throw new TypeError(`Expected boolean, got ${typeof value}: ${value}`); }; exports.expectBoolean = expectBoolean; const expectNumber = (value) => { if (value === null || value === undefined) { return undefined; } + if (typeof value === "string") { + const parsed = parseFloat(value); + if (!Number.isNaN(parsed)) { + if (String(parsed) !== String(value)) { + exports.logger.warn(stackTraceWarning(`Expected number but observed string: ${value}`)); + } + return parsed; + } + } if (typeof value === "number") { return value; } - throw new TypeError(`Expected number, got ${typeof value}`); + throw new TypeError(`Expected number, got ${typeof value}: ${value}`); }; exports.expectNumber = expectNumber; const MAX_FLOAT = Math.ceil(2 ** 127 * (2 - 2 ** -23)); @@ -23683,7 +23894,7 @@ const expectLong = (value) => { if (Number.isInteger(value) && !Number.isNaN(value)) { return value; } - throw new TypeError(`Expected integer, got ${typeof value}`); + throw new TypeError(`Expected integer, got ${typeof value}: ${value}`); }; exports.expectLong = expectLong; exports.expectInt = exports.expectLong; @@ -23727,7 +23938,8 @@ const expectObject = (value) => { if (typeof value === "object" && !Array.isArray(value)) { return value; } - throw new TypeError(`Expected object, got ${typeof value}`); + const receivedType = Array.isArray(value) ? "array" : typeof value; + throw new TypeError(`Expected object, got ${receivedType}: ${value}`); }; exports.expectObject = expectObject; const expectString = (value) => { @@ -23737,7 +23949,11 @@ const expectString = (value) => { if (typeof value === "string") { return value; } - throw new TypeError(`Expected string, got ${typeof value}`); + if (["boolean", "number", "bigint"].includes(typeof value)) { + exports.logger.warn(stackTraceWarning(`Expected string, got ${typeof value}: ${value}`)); + return String(value); + } + throw new TypeError(`Expected string, got ${typeof value}: ${value}`); }; exports.expectString = expectString; const expectUnion = (value) => { @@ -23746,10 +23962,10 @@ const expectUnion = (value) => { } const asObject = (0, exports.expectObject)(value); const setKeys = Object.entries(asObject) - .filter(([_, v]) => v !== null && v !== undefined) - .map(([k, _]) => k); + .filter(([, v]) => v != null) + .map(([k]) => k); if (setKeys.length === 0) { - throw new TypeError(`Unions must have exactly one non-null member`); + throw new TypeError(`Unions must have exactly one non-null member. None were found.`); } if (setKeys.length > 1) { throw new TypeError(`Unions must have exactly one non-null member. Keys ${setKeys} were not null.`); @@ -23837,18 +24053,28 @@ const strictParseByte = (value) => { return (0, exports.expectByte)(value); }; exports.strictParseByte = strictParseByte; +const stackTraceWarning = (message) => { + return String(new TypeError(message).stack || message) + .split("\n") + .slice(0, 5) + .filter((s) => !s.includes("stackTraceWarning")) + .join("\n"); +}; +exports.logger = { + warn: console.warn, +}; /***/ }), -/***/ 6537: +/***/ 9950: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolvedPath = void 0; -const extended_encode_uri_component_1 = __nccwpck_require__(137); +const extended_encode_uri_component_1 = __nccwpck_require__(1673); const resolvedPath = (resolvedPath, input, memberName, labelValueProvider, uriLabel, isGreedyLabel) => { if (input != null && input[memberName] !== undefined) { const labelValue = labelValueProvider(); @@ -23872,7 +24098,7 @@ exports.resolvedPath = resolvedPath; /***/ }), -/***/ 4334: +/***/ 828: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23897,7 +24123,7 @@ exports.serializeFloat = serializeFloat; /***/ }), -/***/ 1689: +/***/ 7230: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -23936,16 +24162,19 @@ exports.splitEvery = splitEvery; /***/ }), -/***/ 1864: +/***/ 9108: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.parseUrl = void 0; -const querystring_parser_1 = __nccwpck_require__(9075); +const querystring_parser_1 = __nccwpck_require__(2450); const parseUrl = (url) => { - const { hostname, pathname, port, protocol, search } = new URL(url); + if (typeof url === 'string') { + return (0, exports.parseUrl)(new URL(url)); + } + const { hostname, pathname, port, protocol, search } = url; let query; if (search) { query = (0, querystring_parser_1.parseQueryString)(search); @@ -23963,14 +24192,14 @@ exports.parseUrl = parseUrl; /***/ }), -/***/ 3994: +/***/ 7572: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.toBase64 = exports.fromBase64 = void 0; -const util_buffer_from_1 = __nccwpck_require__(7820); +const util_buffer_from_1 = __nccwpck_require__(3160); const BASE64_REGEX = /^[A-Za-z0-9+/]*={0,2}$/; function fromBase64(input) { if ((input.length * 3) % 4 !== 0) { @@ -23991,7 +24220,7 @@ exports.toBase64 = toBase64; /***/ }), -/***/ 9373: +/***/ 6200: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -24025,26 +24254,26 @@ exports.calculateBodyLength = calculateBodyLength; /***/ }), -/***/ 2451: +/***/ 5303: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(9373), exports); +tslib_1.__exportStar(__nccwpck_require__(6200), exports); /***/ }), -/***/ 7820: +/***/ 3160: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.fromString = exports.fromArrayBuffer = void 0; -const is_array_buffer_1 = __nccwpck_require__(9236); +const is_array_buffer_1 = __nccwpck_require__(382); const buffer_1 = __nccwpck_require__(4300); const fromArrayBuffer = (input, offset = 0, length = input.byteLength - offset) => { if (!(0, is_array_buffer_1.isArrayBuffer)(input)) { @@ -24064,7 +24293,7 @@ exports.fromString = fromString; /***/ }), -/***/ 8642: +/***/ 4113: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -24090,19 +24319,19 @@ exports.booleanSelector = booleanSelector; /***/ }), -/***/ 7225: +/***/ 5543: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(8642), exports); +tslib_1.__exportStar(__nccwpck_require__(4113), exports); /***/ }), -/***/ 9738: +/***/ 4815: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -24119,7 +24348,7 @@ exports.IMDS_REGION_PATH = "/latest/meta-data/placement/region"; /***/ }), -/***/ 5205: +/***/ 628: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -24141,31 +24370,31 @@ exports.NODE_DEFAULTS_MODE_CONFIG_OPTIONS = { /***/ }), -/***/ 1294: +/***/ 5403: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(7219), exports); +tslib_1.__exportStar(__nccwpck_require__(5495), exports); /***/ }), -/***/ 7219: +/***/ 5495: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.resolveDefaultsModeConfig = void 0; -const config_resolver_1 = __nccwpck_require__(9256); -const credential_provider_imds_1 = __nccwpck_require__(9884); -const node_config_provider_1 = __nccwpck_require__(659); -const property_provider_1 = __nccwpck_require__(2669); -const constants_1 = __nccwpck_require__(9738); -const defaultsModeConfig_1 = __nccwpck_require__(5205); +const config_resolver_1 = __nccwpck_require__(6210); +const credential_provider_imds_1 = __nccwpck_require__(2861); +const node_config_provider_1 = __nccwpck_require__(7160); +const property_provider_1 = __nccwpck_require__(2780); +const constants_1 = __nccwpck_require__(4815); +const defaultsModeConfig_1 = __nccwpck_require__(628); const resolveDefaultsModeConfig = ({ region = (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS), defaultsMode = (0, node_config_provider_1.loadConfig)(defaultsModeConfig_1.NODE_DEFAULTS_MODE_CONFIG_OPTIONS), } = {}) => (0, property_provider_1.memoize)(async () => { const mode = typeof defaultsMode === "function" ? await defaultsMode() : defaultsMode; switch (mode === null || mode === void 0 ? void 0 : mode.toLowerCase()) { @@ -24218,7 +24447,7 @@ const inferPhysicalRegion = async () => { /***/ }), -/***/ 7394: +/***/ 1906: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -24264,19 +24493,19 @@ exports.toHex = toHex; /***/ }), -/***/ 5235: +/***/ 5313: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(9596), exports); +tslib_1.__exportStar(__nccwpck_require__(7329), exports); /***/ }), -/***/ 9596: +/***/ 7329: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -24294,21 +24523,21 @@ exports.normalizeProvider = normalizeProvider; /***/ }), -/***/ 3968: +/***/ 7167: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.escapeUriPath = void 0; -const escape_uri_1 = __nccwpck_require__(9450); +const escape_uri_1 = __nccwpck_require__(5092); const escapeUriPath = (uri) => uri.split("/").map(escape_uri_1.escapeUri).join("/"); exports.escapeUriPath = escapeUriPath; /***/ }), -/***/ 9450: +/***/ 5092: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -24322,30 +24551,30 @@ const hexEncode = (c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`; /***/ }), -/***/ 599: +/***/ 8045: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(9450), exports); -tslib_1.__exportStar(__nccwpck_require__(3968), exports); +tslib_1.__exportStar(__nccwpck_require__(5092), exports); +tslib_1.__exportStar(__nccwpck_require__(7167), exports); /***/ }), -/***/ 9323: +/***/ 2155: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.defaultUserAgent = exports.UA_APP_ID_INI_NAME = exports.UA_APP_ID_ENV_NAME = void 0; -const node_config_provider_1 = __nccwpck_require__(659); +const node_config_provider_1 = __nccwpck_require__(7160); const os_1 = __nccwpck_require__(2037); const process_1 = __nccwpck_require__(7282); -const is_crt_available_1 = __nccwpck_require__(4967); +const is_crt_available_1 = __nccwpck_require__(5027); exports.UA_APP_ID_ENV_NAME = "AWS_SDK_UA_APP_ID"; exports.UA_APP_ID_INI_NAME = "sdk-ua-app-id"; const defaultUserAgent = ({ serviceId, clientVersion }) => { @@ -24384,7 +24613,7 @@ exports.defaultUserAgent = defaultUserAgent; /***/ }), -/***/ 4967: +/***/ 5027: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; @@ -24407,14 +24636,14 @@ exports.isCrtAvailable = isCrtAvailable; /***/ }), -/***/ 7193: +/***/ 5348: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.toUtf8 = exports.fromUtf8 = void 0; -const util_buffer_from_1 = __nccwpck_require__(7820); +const util_buffer_from_1 = __nccwpck_require__(3160); const fromUtf8 = (input) => { const buf = (0, util_buffer_from_1.fromString)(input, "utf8"); return new Uint8Array(buf.buffer, buf.byteOffset, buf.byteLength / Uint8Array.BYTES_PER_ELEMENT); @@ -24426,16 +24655,16 @@ exports.toUtf8 = toUtf8; /***/ }), -/***/ 5294: +/***/ 873: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.createWaiter = void 0; -const poller_1 = __nccwpck_require__(5258); -const utils_1 = __nccwpck_require__(349); -const waiter_1 = __nccwpck_require__(8296); +const poller_1 = __nccwpck_require__(6231); +const utils_1 = __nccwpck_require__(7119); +const waiter_1 = __nccwpck_require__(9629); const abortTimeout = async (abortSignal) => { return new Promise((resolve) => { abortSignal.onabort = () => resolve({ state: waiter_1.WaiterState.ABORTED }); @@ -24461,28 +24690,28 @@ exports.createWaiter = createWaiter; /***/ }), -/***/ 1036: +/***/ 8161: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(5294), exports); -tslib_1.__exportStar(__nccwpck_require__(8296), exports); +tslib_1.__exportStar(__nccwpck_require__(873), exports); +tslib_1.__exportStar(__nccwpck_require__(9629), exports); /***/ }), -/***/ 5258: +/***/ 6231: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.runPolling = void 0; -const sleep_1 = __nccwpck_require__(8676); -const waiter_1 = __nccwpck_require__(8296); +const sleep_1 = __nccwpck_require__(3157); +const waiter_1 = __nccwpck_require__(9629); const exponentialBackoffWithJitter = (minDelay, maxDelay, attemptCeiling, attempt) => { if (attempt > attemptCeiling) return maxDelay; @@ -24492,9 +24721,9 @@ const exponentialBackoffWithJitter = (minDelay, maxDelay, attemptCeiling, attemp const randomInRange = (min, max) => min + Math.random() * (max - min); const runPolling = async ({ minDelay, maxDelay, maxWaitTime, abortController, client, abortSignal }, input, acceptorChecks) => { var _a; - const { state } = await acceptorChecks(client, input); + const { state, reason } = await acceptorChecks(client, input); if (state !== waiter_1.WaiterState.RETRY) { - return { state }; + return { state, reason }; } let currentAttempt = 1; const waitUntil = Date.now() + maxWaitTime * 1000; @@ -24508,9 +24737,9 @@ const runPolling = async ({ minDelay, maxDelay, maxWaitTime, abortController, cl return { state: waiter_1.WaiterState.TIMEOUT }; } await (0, sleep_1.sleep)(delay); - const { state } = await acceptorChecks(client, input); + const { state, reason } = await acceptorChecks(client, input); if (state !== waiter_1.WaiterState.RETRY) { - return { state }; + return { state, reason }; } currentAttempt += 1; } @@ -24520,20 +24749,20 @@ exports.runPolling = runPolling; /***/ }), -/***/ 349: +/***/ 7119: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { "use strict"; Object.defineProperty(exports, "__esModule", ({ value: true })); const tslib_1 = __nccwpck_require__(1398); -tslib_1.__exportStar(__nccwpck_require__(8676), exports); -tslib_1.__exportStar(__nccwpck_require__(2267), exports); +tslib_1.__exportStar(__nccwpck_require__(3157), exports); +tslib_1.__exportStar(__nccwpck_require__(5474), exports); /***/ }), -/***/ 8676: +/***/ 3157: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -24548,7 +24777,7 @@ exports.sleep = sleep; /***/ }), -/***/ 2267: +/***/ 5474: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -24577,7 +24806,7 @@ exports.validateWaiterOptions = validateWaiterOptions; /***/ }), -/***/ 8296: +/***/ 9629: /***/ ((__unused_webpack_module, exports) => { "use strict"; @@ -45065,27 +45294,27 @@ module.exports = require("util"); /***/ }), -/***/ 5716: +/***/ 1049: /***/ ((module) => { "use strict"; -module.exports = JSON.parse('{"name":"@aws-sdk/client-ecs","description":"AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native","version":"3.154.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: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.154.0","@aws-sdk/config-resolver":"3.130.0","@aws-sdk/credential-provider-node":"3.154.0","@aws-sdk/fetch-http-handler":"3.131.0","@aws-sdk/hash-node":"3.127.0","@aws-sdk/invalid-dependency":"3.127.0","@aws-sdk/middleware-content-length":"3.127.0","@aws-sdk/middleware-host-header":"3.127.0","@aws-sdk/middleware-logger":"3.127.0","@aws-sdk/middleware-recursion-detection":"3.127.0","@aws-sdk/middleware-retry":"3.127.0","@aws-sdk/middleware-serde":"3.127.0","@aws-sdk/middleware-signing":"3.130.0","@aws-sdk/middleware-stack":"3.127.0","@aws-sdk/middleware-user-agent":"3.127.0","@aws-sdk/node-config-provider":"3.127.0","@aws-sdk/node-http-handler":"3.127.0","@aws-sdk/protocol-http":"3.127.0","@aws-sdk/smithy-client":"3.142.0","@aws-sdk/types":"3.127.0","@aws-sdk/url-parser":"3.127.0","@aws-sdk/util-base64-browser":"3.109.0","@aws-sdk/util-base64-node":"3.55.0","@aws-sdk/util-body-length-browser":"3.154.0","@aws-sdk/util-body-length-node":"3.55.0","@aws-sdk/util-defaults-mode-browser":"3.142.0","@aws-sdk/util-defaults-mode-node":"3.142.0","@aws-sdk/util-user-agent-browser":"3.127.0","@aws-sdk/util-user-agent-node":"3.127.0","@aws-sdk/util-utf8-browser":"3.109.0","@aws-sdk/util-utf8-node":"3.109.0","@aws-sdk/util-waiter":"3.127.0","tslib":"^2.3.1"},"devDependencies":{"@aws-sdk/service-client-documentation-generator":"3.58.0","@tsconfig/recommended":"1.0.1","@types/node":"^12.7.5","concurrently":"7.0.0","downlevel-dts":"0.7.0","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-ecs","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"clients/client-ecs"}}'); +module.exports = JSON.parse('{"name":"@aws-sdk/client-ecs","description":"AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native","version":"3.184.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.183.0","@aws-sdk/config-resolver":"3.183.0","@aws-sdk/credential-provider-node":"3.183.0","@aws-sdk/fetch-http-handler":"3.183.0","@aws-sdk/hash-node":"3.183.0","@aws-sdk/invalid-dependency":"3.183.0","@aws-sdk/middleware-content-length":"3.183.0","@aws-sdk/middleware-host-header":"3.183.0","@aws-sdk/middleware-logger":"3.183.0","@aws-sdk/middleware-recursion-detection":"3.183.0","@aws-sdk/middleware-retry":"3.183.0","@aws-sdk/middleware-serde":"3.183.0","@aws-sdk/middleware-signing":"3.183.0","@aws-sdk/middleware-stack":"3.183.0","@aws-sdk/middleware-user-agent":"3.183.0","@aws-sdk/node-config-provider":"3.183.0","@aws-sdk/node-http-handler":"3.183.0","@aws-sdk/protocol-http":"3.183.0","@aws-sdk/smithy-client":"3.183.0","@aws-sdk/types":"3.183.0","@aws-sdk/url-parser":"3.183.0","@aws-sdk/util-base64-browser":"3.183.0","@aws-sdk/util-base64-node":"3.183.0","@aws-sdk/util-body-length-browser":"3.183.0","@aws-sdk/util-body-length-node":"3.183.0","@aws-sdk/util-defaults-mode-browser":"3.183.0","@aws-sdk/util-defaults-mode-node":"3.183.0","@aws-sdk/util-user-agent-browser":"3.183.0","@aws-sdk/util-user-agent-node":"3.183.0","@aws-sdk/util-utf8-browser":"3.183.0","@aws-sdk/util-utf8-node":"3.183.0","@aws-sdk/util-waiter":"3.183.0","tslib":"^2.3.1"},"devDependencies":{"@aws-sdk/service-client-documentation-generator":"3.183.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-ecs","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"clients/client-ecs"}}'); /***/ }), -/***/ 1053: +/***/ 6664: /***/ ((module) => { "use strict"; -module.exports = JSON.parse('{"name":"@aws-sdk/client-sso","description":"AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native","version":"3.154.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: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/config-resolver":"3.130.0","@aws-sdk/fetch-http-handler":"3.131.0","@aws-sdk/hash-node":"3.127.0","@aws-sdk/invalid-dependency":"3.127.0","@aws-sdk/middleware-content-length":"3.127.0","@aws-sdk/middleware-host-header":"3.127.0","@aws-sdk/middleware-logger":"3.127.0","@aws-sdk/middleware-recursion-detection":"3.127.0","@aws-sdk/middleware-retry":"3.127.0","@aws-sdk/middleware-serde":"3.127.0","@aws-sdk/middleware-stack":"3.127.0","@aws-sdk/middleware-user-agent":"3.127.0","@aws-sdk/node-config-provider":"3.127.0","@aws-sdk/node-http-handler":"3.127.0","@aws-sdk/protocol-http":"3.127.0","@aws-sdk/smithy-client":"3.142.0","@aws-sdk/types":"3.127.0","@aws-sdk/url-parser":"3.127.0","@aws-sdk/util-base64-browser":"3.109.0","@aws-sdk/util-base64-node":"3.55.0","@aws-sdk/util-body-length-browser":"3.154.0","@aws-sdk/util-body-length-node":"3.55.0","@aws-sdk/util-defaults-mode-browser":"3.142.0","@aws-sdk/util-defaults-mode-node":"3.142.0","@aws-sdk/util-user-agent-browser":"3.127.0","@aws-sdk/util-user-agent-node":"3.127.0","@aws-sdk/util-utf8-browser":"3.109.0","@aws-sdk/util-utf8-node":"3.109.0","tslib":"^2.3.1"},"devDependencies":{"@aws-sdk/service-client-documentation-generator":"3.58.0","@tsconfig/recommended":"1.0.1","@types/node":"^12.7.5","concurrently":"7.0.0","downlevel-dts":"0.7.0","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-sso","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"clients/client-sso"}}'); +module.exports = JSON.parse('{"name":"@aws-sdk/client-sso","description":"AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native","version":"3.183.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/config-resolver":"3.183.0","@aws-sdk/fetch-http-handler":"3.183.0","@aws-sdk/hash-node":"3.183.0","@aws-sdk/invalid-dependency":"3.183.0","@aws-sdk/middleware-content-length":"3.183.0","@aws-sdk/middleware-host-header":"3.183.0","@aws-sdk/middleware-logger":"3.183.0","@aws-sdk/middleware-recursion-detection":"3.183.0","@aws-sdk/middleware-retry":"3.183.0","@aws-sdk/middleware-serde":"3.183.0","@aws-sdk/middleware-stack":"3.183.0","@aws-sdk/middleware-user-agent":"3.183.0","@aws-sdk/node-config-provider":"3.183.0","@aws-sdk/node-http-handler":"3.183.0","@aws-sdk/protocol-http":"3.183.0","@aws-sdk/smithy-client":"3.183.0","@aws-sdk/types":"3.183.0","@aws-sdk/url-parser":"3.183.0","@aws-sdk/util-base64-browser":"3.183.0","@aws-sdk/util-base64-node":"3.183.0","@aws-sdk/util-body-length-browser":"3.183.0","@aws-sdk/util-body-length-node":"3.183.0","@aws-sdk/util-defaults-mode-browser":"3.183.0","@aws-sdk/util-defaults-mode-node":"3.183.0","@aws-sdk/util-user-agent-browser":"3.183.0","@aws-sdk/util-user-agent-node":"3.183.0","@aws-sdk/util-utf8-browser":"3.183.0","@aws-sdk/util-utf8-node":"3.183.0","tslib":"^2.3.1"},"devDependencies":{"@aws-sdk/service-client-documentation-generator":"3.183.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-sso","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"clients/client-sso"}}'); /***/ }), -/***/ 5206: +/***/ 6916: /***/ ((module) => { "use strict"; -module.exports = JSON.parse('{"name":"@aws-sdk/client-sts","description":"AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native","version":"3.154.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: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/config-resolver":"3.130.0","@aws-sdk/credential-provider-node":"3.154.0","@aws-sdk/fetch-http-handler":"3.131.0","@aws-sdk/hash-node":"3.127.0","@aws-sdk/invalid-dependency":"3.127.0","@aws-sdk/middleware-content-length":"3.127.0","@aws-sdk/middleware-host-header":"3.127.0","@aws-sdk/middleware-logger":"3.127.0","@aws-sdk/middleware-recursion-detection":"3.127.0","@aws-sdk/middleware-retry":"3.127.0","@aws-sdk/middleware-sdk-sts":"3.130.0","@aws-sdk/middleware-serde":"3.127.0","@aws-sdk/middleware-signing":"3.130.0","@aws-sdk/middleware-stack":"3.127.0","@aws-sdk/middleware-user-agent":"3.127.0","@aws-sdk/node-config-provider":"3.127.0","@aws-sdk/node-http-handler":"3.127.0","@aws-sdk/protocol-http":"3.127.0","@aws-sdk/smithy-client":"3.142.0","@aws-sdk/types":"3.127.0","@aws-sdk/url-parser":"3.127.0","@aws-sdk/util-base64-browser":"3.109.0","@aws-sdk/util-base64-node":"3.55.0","@aws-sdk/util-body-length-browser":"3.154.0","@aws-sdk/util-body-length-node":"3.55.0","@aws-sdk/util-defaults-mode-browser":"3.142.0","@aws-sdk/util-defaults-mode-node":"3.142.0","@aws-sdk/util-user-agent-browser":"3.127.0","@aws-sdk/util-user-agent-node":"3.127.0","@aws-sdk/util-utf8-browser":"3.109.0","@aws-sdk/util-utf8-node":"3.109.0","entities":"2.2.0","fast-xml-parser":"3.19.0","tslib":"^2.3.1"},"devDependencies":{"@aws-sdk/service-client-documentation-generator":"3.58.0","@tsconfig/recommended":"1.0.1","@types/node":"^12.7.5","concurrently":"7.0.0","downlevel-dts":"0.7.0","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-sts","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"clients/client-sts"}}'); +module.exports = JSON.parse('{"name":"@aws-sdk/client-sts","description":"AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native","version":"3.183.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":"jest"},"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/config-resolver":"3.183.0","@aws-sdk/credential-provider-node":"3.183.0","@aws-sdk/fetch-http-handler":"3.183.0","@aws-sdk/hash-node":"3.183.0","@aws-sdk/invalid-dependency":"3.183.0","@aws-sdk/middleware-content-length":"3.183.0","@aws-sdk/middleware-host-header":"3.183.0","@aws-sdk/middleware-logger":"3.183.0","@aws-sdk/middleware-recursion-detection":"3.183.0","@aws-sdk/middleware-retry":"3.183.0","@aws-sdk/middleware-sdk-sts":"3.183.0","@aws-sdk/middleware-serde":"3.183.0","@aws-sdk/middleware-signing":"3.183.0","@aws-sdk/middleware-stack":"3.183.0","@aws-sdk/middleware-user-agent":"3.183.0","@aws-sdk/node-config-provider":"3.183.0","@aws-sdk/node-http-handler":"3.183.0","@aws-sdk/protocol-http":"3.183.0","@aws-sdk/smithy-client":"3.183.0","@aws-sdk/types":"3.183.0","@aws-sdk/url-parser":"3.183.0","@aws-sdk/util-base64-browser":"3.183.0","@aws-sdk/util-base64-node":"3.183.0","@aws-sdk/util-body-length-browser":"3.183.0","@aws-sdk/util-body-length-node":"3.183.0","@aws-sdk/util-defaults-mode-browser":"3.183.0","@aws-sdk/util-defaults-mode-node":"3.183.0","@aws-sdk/util-user-agent-browser":"3.183.0","@aws-sdk/util-user-agent-node":"3.183.0","@aws-sdk/util-utf8-browser":"3.183.0","@aws-sdk/util-utf8-node":"3.183.0","entities":"2.2.0","fast-xml-parser":"3.19.0","tslib":"^2.3.1"},"devDependencies":{"@aws-sdk/service-client-documentation-generator":"3.183.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-sts","repository":{"type":"git","url":"https://github.com/aws/aws-sdk-js-v3.git","directory":"clients/client-sts"}}'); /***/ }), diff --git a/package.json b/package.json index da85a2d..59a3057 100644 --- a/package.json +++ b/package.json @@ -26,15 +26,15 @@ }, "homepage": "https://github.com/scribd/amazon-ecs-service-action#readme", "dependencies": { - "@actions/core": "^1.9.1", - "@aws-sdk/client-ecs": "^3.154.0", - "@aws-sdk/util-waiter": "^3.127.0", + "@actions/core": "^1.10.0", + "@aws-sdk/client-ecs": "^3.184.0", + "@aws-sdk/util-waiter": "^3.183.0", "lodash": "^4.17.21", - "yaml": "^2.1.1" + "yaml": "^2.1.2" }, "devDependencies": { "@vercel/ncc": "0.34.0", - "eslint": "^8.22.0", + "eslint": "^8.24.0", "eslint-config-google": "^0.14.0", "eslint-plugin-no-floating-promise": "^1.0.2", "jest": "^28.1.3" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 276c710..cc96f21 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,35 +1,35 @@ lockfileVersion: 5.4 specifiers: - '@actions/core': ^1.9.1 - '@aws-sdk/client-ecs': ^3.154.0 - '@aws-sdk/util-waiter': ^3.127.0 + '@actions/core': ^1.10.0 + '@aws-sdk/client-ecs': ^3.184.0 + '@aws-sdk/util-waiter': ^3.183.0 '@vercel/ncc': 0.34.0 - eslint: ^8.22.0 + eslint: ^8.24.0 eslint-config-google: ^0.14.0 eslint-plugin-no-floating-promise: ^1.0.2 jest: ^28.1.3 lodash: ^4.17.21 - yaml: ^2.1.1 + yaml: ^2.1.2 dependencies: - '@actions/core': 1.9.1 - '@aws-sdk/client-ecs': 3.154.0 - '@aws-sdk/util-waiter': 3.127.0 + '@actions/core': 1.10.0 + '@aws-sdk/client-ecs': 3.184.0 + '@aws-sdk/util-waiter': 3.183.0 lodash: 4.17.21 - yaml: 2.1.1 + yaml: 2.1.2 devDependencies: '@vercel/ncc': 0.34.0 - eslint: 8.22.0 - eslint-config-google: 0.14.0_eslint@8.22.0 + eslint: 8.24.0 + eslint-config-google: 0.14.0_eslint@8.24.0 eslint-plugin-no-floating-promise: 1.0.2 jest: 28.1.3 packages: - /@actions/core/1.9.1: - resolution: {integrity: sha512-5ad+U2YGrmmiw6du20AQW5XuWo7UKN2052FjSV7MX+Wfjf8sCqcsZe62NfgHys4QI4/Y+vQvLKYL8jWtA1ZBTA==} + /@actions/core/1.10.0: + resolution: {integrity: sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==} dependencies: '@actions/http-client': 2.0.1 uuid: 8.3.2 @@ -49,8 +49,8 @@ packages: '@jridgewell/trace-mapping': 0.3.15 dev: true - /@aws-crypto/ie11-detection/2.0.0: - resolution: {integrity: sha512-pkVXf/dq6PITJ0jzYZ69VhL8VFOFoPZLZqtU/12SGnzYuJOOGNfF41q9GxdI1yqC8R13Rq3jOLKDFpUJFT5eTA==} + /@aws-crypto/ie11-detection/2.0.2: + resolution: {integrity: sha512-5XDMQY98gMAf/WRTic5G++jfmS/VLM0rwpiOpaainKi4L0nqWMSB1SzsrEG5rjFZGYN6ZAefO+/Yta2dFM0kMw==} dependencies: tslib: 1.14.1 dev: false @@ -58,165 +58,165 @@ packages: /@aws-crypto/sha256-browser/2.0.0: resolution: {integrity: sha512-rYXOQ8BFOaqMEHJrLHul/25ckWH6GTJtdLSajhlqGMx0PmSueAuvboCuZCTqEKlxR8CQOwRarxYMZZSYlhRA1A==} dependencies: - '@aws-crypto/ie11-detection': 2.0.0 + '@aws-crypto/ie11-detection': 2.0.2 '@aws-crypto/sha256-js': 2.0.0 - '@aws-crypto/supports-web-crypto': 2.0.0 - '@aws-crypto/util': 2.0.1 - '@aws-sdk/types': 3.127.0 - '@aws-sdk/util-locate-window': 3.55.0 - '@aws-sdk/util-utf8-browser': 3.109.0 + '@aws-crypto/supports-web-crypto': 2.0.2 + '@aws-crypto/util': 2.0.2 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/util-locate-window': 3.183.0 + '@aws-sdk/util-utf8-browser': 3.183.0 tslib: 1.14.1 dev: false /@aws-crypto/sha256-js/2.0.0: resolution: {integrity: sha512-VZY+mCY4Nmrs5WGfitmNqXzaE873fcIZDu54cbaDaaamsaTOP1DBImV9F4pICc3EHjQXujyE8jig+PFCaew9ig==} dependencies: - '@aws-crypto/util': 2.0.1 - '@aws-sdk/types': 3.127.0 + '@aws-crypto/util': 2.0.2 + '@aws-sdk/types': 3.183.0 tslib: 1.14.1 dev: false - /@aws-crypto/supports-web-crypto/2.0.0: - resolution: {integrity: sha512-Ge7WQ3E0OC7FHYprsZV3h0QIcpdyJLvIeg+uTuHqRYm8D6qCFJoiC+edSzSyFiHtZf+NOQDJ1q46qxjtzIY2nA==} + /@aws-crypto/supports-web-crypto/2.0.2: + resolution: {integrity: sha512-6mbSsLHwZ99CTOOswvCRP3C+VCWnzBf+1SnbWxzzJ9lR0mA0JnY2JEAhp8rqmTE0GPFy88rrM27ffgp62oErMQ==} dependencies: tslib: 1.14.1 dev: false - /@aws-crypto/util/2.0.1: - resolution: {integrity: sha512-JJmFFwvbm08lULw4Nm5QOLg8+lAQeC8aCXK5xrtxntYzYXCGfHwUJ4Is3770Q7HmICsXthGQ+ZsDL7C2uH3yBQ==} + /@aws-crypto/util/2.0.2: + resolution: {integrity: sha512-Lgu5v/0e/BcrZ5m/IWqzPUf3UYFTy/PpeED+uc9SWUR1iZQL8XXbGQg10UfllwwBryO3hFF5dizK+78aoXC1eA==} dependencies: - '@aws-sdk/types': 3.127.0 - '@aws-sdk/util-utf8-browser': 3.109.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/util-utf8-browser': 3.183.0 tslib: 1.14.1 dev: false - /@aws-sdk/abort-controller/3.127.0: - resolution: {integrity: sha512-G77FLYcl9egUoD3ZmR6TX94NMqBMeT53hBGrEE3uVUJV1CwfGKfaF007mPpRZnIB3avnJBQGEK6MrwlCfv2qAw==} + /@aws-sdk/abort-controller/3.183.0: + resolution: {integrity: sha512-iRhdCoC/QyyB6iRCytb12T0XtfmQRn849vnbcUd8BprXvkQ/YwmFS//4Lj02uxS+myqXCntoAj1nKvZZwcFmbg==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/types': 3.127.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/client-ecs/3.154.0: - resolution: {integrity: sha512-c47VQCmIxAjPFXGMnu+pEzF0/aKFD45GAyqK6BVVQz+qQ/oCjXH6OxXPja3+4nenXAsXHDzoxOUyKfiaNRN6jw==} + /@aws-sdk/client-ecs/3.184.0: + resolution: {integrity: sha512-4WMT7MWs89Ej8YGAlwI0OREVJrsogKYr4wrDuHbGbJ1HF4cAlH2aEYwknn+vngejSyowbGumJeZt8VDX/QxAbQ==} engines: {node: '>=12.0.0'} dependencies: '@aws-crypto/sha256-browser': 2.0.0 '@aws-crypto/sha256-js': 2.0.0 - '@aws-sdk/client-sts': 3.154.0 - '@aws-sdk/config-resolver': 3.130.0 - '@aws-sdk/credential-provider-node': 3.154.0 - '@aws-sdk/fetch-http-handler': 3.131.0 - '@aws-sdk/hash-node': 3.127.0 - '@aws-sdk/invalid-dependency': 3.127.0 - '@aws-sdk/middleware-content-length': 3.127.0 - '@aws-sdk/middleware-host-header': 3.127.0 - '@aws-sdk/middleware-logger': 3.127.0 - '@aws-sdk/middleware-recursion-detection': 3.127.0 - '@aws-sdk/middleware-retry': 3.127.0 - '@aws-sdk/middleware-serde': 3.127.0 - '@aws-sdk/middleware-signing': 3.130.0 - '@aws-sdk/middleware-stack': 3.127.0 - '@aws-sdk/middleware-user-agent': 3.127.0 - '@aws-sdk/node-config-provider': 3.127.0 - '@aws-sdk/node-http-handler': 3.127.0 - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/smithy-client': 3.142.0 - '@aws-sdk/types': 3.127.0 - '@aws-sdk/url-parser': 3.127.0 - '@aws-sdk/util-base64-browser': 3.109.0 - '@aws-sdk/util-base64-node': 3.55.0 - '@aws-sdk/util-body-length-browser': 3.154.0 - '@aws-sdk/util-body-length-node': 3.55.0 - '@aws-sdk/util-defaults-mode-browser': 3.142.0 - '@aws-sdk/util-defaults-mode-node': 3.142.0 - '@aws-sdk/util-user-agent-browser': 3.127.0 - '@aws-sdk/util-user-agent-node': 3.127.0 - '@aws-sdk/util-utf8-browser': 3.109.0 - '@aws-sdk/util-utf8-node': 3.109.0 - '@aws-sdk/util-waiter': 3.127.0 + '@aws-sdk/client-sts': 3.183.0 + '@aws-sdk/config-resolver': 3.183.0 + '@aws-sdk/credential-provider-node': 3.183.0 + '@aws-sdk/fetch-http-handler': 3.183.0 + '@aws-sdk/hash-node': 3.183.0 + '@aws-sdk/invalid-dependency': 3.183.0 + '@aws-sdk/middleware-content-length': 3.183.0 + '@aws-sdk/middleware-host-header': 3.183.0 + '@aws-sdk/middleware-logger': 3.183.0 + '@aws-sdk/middleware-recursion-detection': 3.183.0 + '@aws-sdk/middleware-retry': 3.183.0 + '@aws-sdk/middleware-serde': 3.183.0 + '@aws-sdk/middleware-signing': 3.183.0 + '@aws-sdk/middleware-stack': 3.183.0 + '@aws-sdk/middleware-user-agent': 3.183.0 + '@aws-sdk/node-config-provider': 3.183.0 + '@aws-sdk/node-http-handler': 3.183.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/smithy-client': 3.183.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/url-parser': 3.183.0 + '@aws-sdk/util-base64-browser': 3.183.0 + '@aws-sdk/util-base64-node': 3.183.0 + '@aws-sdk/util-body-length-browser': 3.183.0 + '@aws-sdk/util-body-length-node': 3.183.0 + '@aws-sdk/util-defaults-mode-browser': 3.183.0 + '@aws-sdk/util-defaults-mode-node': 3.183.0 + '@aws-sdk/util-user-agent-browser': 3.183.0 + '@aws-sdk/util-user-agent-node': 3.183.0 + '@aws-sdk/util-utf8-browser': 3.183.0 + '@aws-sdk/util-utf8-node': 3.183.0 + '@aws-sdk/util-waiter': 3.183.0 tslib: 2.4.0 transitivePeerDependencies: - aws-crt dev: false - /@aws-sdk/client-sso/3.154.0: - resolution: {integrity: sha512-v5pJOkCxtxcSX1Cflskz9w+7kbP3PDsE6ce3zvmdCghCRAdM0SoJMffGlg/08VXwqW+GMJTZu+i+ojXMXhZTJw==} + /@aws-sdk/client-sso/3.183.0: + resolution: {integrity: sha512-Dw2objS0rxlziFL0Jahzy8H1OlyrRCnmVH7f1pBrmU7RSzztBpU2Z8OPaE5m1MwUISzpOWQlo8zEVUMYuT/Rww==} engines: {node: '>=12.0.0'} dependencies: '@aws-crypto/sha256-browser': 2.0.0 '@aws-crypto/sha256-js': 2.0.0 - '@aws-sdk/config-resolver': 3.130.0 - '@aws-sdk/fetch-http-handler': 3.131.0 - '@aws-sdk/hash-node': 3.127.0 - '@aws-sdk/invalid-dependency': 3.127.0 - '@aws-sdk/middleware-content-length': 3.127.0 - '@aws-sdk/middleware-host-header': 3.127.0 - '@aws-sdk/middleware-logger': 3.127.0 - '@aws-sdk/middleware-recursion-detection': 3.127.0 - '@aws-sdk/middleware-retry': 3.127.0 - '@aws-sdk/middleware-serde': 3.127.0 - '@aws-sdk/middleware-stack': 3.127.0 - '@aws-sdk/middleware-user-agent': 3.127.0 - '@aws-sdk/node-config-provider': 3.127.0 - '@aws-sdk/node-http-handler': 3.127.0 - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/smithy-client': 3.142.0 - '@aws-sdk/types': 3.127.0 - '@aws-sdk/url-parser': 3.127.0 - '@aws-sdk/util-base64-browser': 3.109.0 - '@aws-sdk/util-base64-node': 3.55.0 - '@aws-sdk/util-body-length-browser': 3.154.0 - '@aws-sdk/util-body-length-node': 3.55.0 - '@aws-sdk/util-defaults-mode-browser': 3.142.0 - '@aws-sdk/util-defaults-mode-node': 3.142.0 - '@aws-sdk/util-user-agent-browser': 3.127.0 - '@aws-sdk/util-user-agent-node': 3.127.0 - '@aws-sdk/util-utf8-browser': 3.109.0 - '@aws-sdk/util-utf8-node': 3.109.0 + '@aws-sdk/config-resolver': 3.183.0 + '@aws-sdk/fetch-http-handler': 3.183.0 + '@aws-sdk/hash-node': 3.183.0 + '@aws-sdk/invalid-dependency': 3.183.0 + '@aws-sdk/middleware-content-length': 3.183.0 + '@aws-sdk/middleware-host-header': 3.183.0 + '@aws-sdk/middleware-logger': 3.183.0 + '@aws-sdk/middleware-recursion-detection': 3.183.0 + '@aws-sdk/middleware-retry': 3.183.0 + '@aws-sdk/middleware-serde': 3.183.0 + '@aws-sdk/middleware-stack': 3.183.0 + '@aws-sdk/middleware-user-agent': 3.183.0 + '@aws-sdk/node-config-provider': 3.183.0 + '@aws-sdk/node-http-handler': 3.183.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/smithy-client': 3.183.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/url-parser': 3.183.0 + '@aws-sdk/util-base64-browser': 3.183.0 + '@aws-sdk/util-base64-node': 3.183.0 + '@aws-sdk/util-body-length-browser': 3.183.0 + '@aws-sdk/util-body-length-node': 3.183.0 + '@aws-sdk/util-defaults-mode-browser': 3.183.0 + '@aws-sdk/util-defaults-mode-node': 3.183.0 + '@aws-sdk/util-user-agent-browser': 3.183.0 + '@aws-sdk/util-user-agent-node': 3.183.0 + '@aws-sdk/util-utf8-browser': 3.183.0 + '@aws-sdk/util-utf8-node': 3.183.0 tslib: 2.4.0 transitivePeerDependencies: - aws-crt dev: false - /@aws-sdk/client-sts/3.154.0: - resolution: {integrity: sha512-YFyyJ6GJbd0DpLqByqG7DXf/b6bEfzWer+MqUEdkomEy5smCPMfqlZOXrm1cCcqZbJiOb5ASJslQr6TLllLNIg==} + /@aws-sdk/client-sts/3.183.0: + resolution: {integrity: sha512-xl7CDncgUmcSJ5Nq3zDylyCzdJhfWzu3GUHXFv5HszcmSwrVZOtmm+j0XQfnqO3XdN8o/1CtsAkiUC7hQV8iDg==} engines: {node: '>=12.0.0'} dependencies: '@aws-crypto/sha256-browser': 2.0.0 '@aws-crypto/sha256-js': 2.0.0 - '@aws-sdk/config-resolver': 3.130.0 - '@aws-sdk/credential-provider-node': 3.154.0 - '@aws-sdk/fetch-http-handler': 3.131.0 - '@aws-sdk/hash-node': 3.127.0 - '@aws-sdk/invalid-dependency': 3.127.0 - '@aws-sdk/middleware-content-length': 3.127.0 - '@aws-sdk/middleware-host-header': 3.127.0 - '@aws-sdk/middleware-logger': 3.127.0 - '@aws-sdk/middleware-recursion-detection': 3.127.0 - '@aws-sdk/middleware-retry': 3.127.0 - '@aws-sdk/middleware-sdk-sts': 3.130.0 - '@aws-sdk/middleware-serde': 3.127.0 - '@aws-sdk/middleware-signing': 3.130.0 - '@aws-sdk/middleware-stack': 3.127.0 - '@aws-sdk/middleware-user-agent': 3.127.0 - '@aws-sdk/node-config-provider': 3.127.0 - '@aws-sdk/node-http-handler': 3.127.0 - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/smithy-client': 3.142.0 - '@aws-sdk/types': 3.127.0 - '@aws-sdk/url-parser': 3.127.0 - '@aws-sdk/util-base64-browser': 3.109.0 - '@aws-sdk/util-base64-node': 3.55.0 - '@aws-sdk/util-body-length-browser': 3.154.0 - '@aws-sdk/util-body-length-node': 3.55.0 - '@aws-sdk/util-defaults-mode-browser': 3.142.0 - '@aws-sdk/util-defaults-mode-node': 3.142.0 - '@aws-sdk/util-user-agent-browser': 3.127.0 - '@aws-sdk/util-user-agent-node': 3.127.0 - '@aws-sdk/util-utf8-browser': 3.109.0 - '@aws-sdk/util-utf8-node': 3.109.0 + '@aws-sdk/config-resolver': 3.183.0 + '@aws-sdk/credential-provider-node': 3.183.0 + '@aws-sdk/fetch-http-handler': 3.183.0 + '@aws-sdk/hash-node': 3.183.0 + '@aws-sdk/invalid-dependency': 3.183.0 + '@aws-sdk/middleware-content-length': 3.183.0 + '@aws-sdk/middleware-host-header': 3.183.0 + '@aws-sdk/middleware-logger': 3.183.0 + '@aws-sdk/middleware-recursion-detection': 3.183.0 + '@aws-sdk/middleware-retry': 3.183.0 + '@aws-sdk/middleware-sdk-sts': 3.183.0 + '@aws-sdk/middleware-serde': 3.183.0 + '@aws-sdk/middleware-signing': 3.183.0 + '@aws-sdk/middleware-stack': 3.183.0 + '@aws-sdk/middleware-user-agent': 3.183.0 + '@aws-sdk/node-config-provider': 3.183.0 + '@aws-sdk/node-http-handler': 3.183.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/smithy-client': 3.183.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/url-parser': 3.183.0 + '@aws-sdk/util-base64-browser': 3.183.0 + '@aws-sdk/util-base64-node': 3.183.0 + '@aws-sdk/util-body-length-browser': 3.183.0 + '@aws-sdk/util-body-length-node': 3.183.0 + '@aws-sdk/util-defaults-mode-browser': 3.183.0 + '@aws-sdk/util-defaults-mode-node': 3.183.0 + '@aws-sdk/util-user-agent-browser': 3.183.0 + '@aws-sdk/util-user-agent-node': 3.183.0 + '@aws-sdk/util-utf8-browser': 3.183.0 + '@aws-sdk/util-utf8-node': 3.183.0 entities: 2.2.0 fast-xml-parser: 3.19.0 tslib: 2.4.0 @@ -224,432 +224,434 @@ packages: - aws-crt dev: false - /@aws-sdk/config-resolver/3.130.0: - resolution: {integrity: sha512-7dkCHHI9kRcHW6YNr9/2Ub6XkvU9Fu6H/BnlKbaKlDR8jq7QpaFhPhctOVi5D/NDpxJgALifexFne0dvo3piTw==} + /@aws-sdk/config-resolver/3.183.0: + resolution: {integrity: sha512-cJBY5g+yJAI0iigketD3rbweyoLOw6SFiJDzRqZq3KgytmnhnrmNbRVTSdq1Qtn+d20NVxT9kSRUu21QyHb1nw==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/signature-v4': 3.130.0 - '@aws-sdk/types': 3.127.0 - '@aws-sdk/util-config-provider': 3.109.0 - '@aws-sdk/util-middleware': 3.127.0 + '@aws-sdk/signature-v4': 3.183.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/util-config-provider': 3.183.0 + '@aws-sdk/util-middleware': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/credential-provider-env/3.127.0: - resolution: {integrity: sha512-Ig7XhUikRBlnRTYT5JBGzWfYZp68X5vkFVIFCmsHHt/qVy0Nz9raZpmDHicdS1u67yxDkWgCPn/bNevWnM0GFg==} + /@aws-sdk/credential-provider-env/3.183.0: + resolution: {integrity: sha512-RJ1QZxpfWf3hmjUm1fYCEj3p4Rl61kMFfU6ab3hpDGuSXbuLkAvTOIbssIUDHcgxUSszV5XqpPzBUnTui3cZYA==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/credential-provider-imds/3.127.0: - resolution: {integrity: sha512-I6KlIBBzmJn/U1KikiC50PK3SspT9G5lkVLBaW5a6YfOcijqVTXfAN3kYzqhfeS0j4IgfJEwKVsjsZfmprJO5A==} + /@aws-sdk/credential-provider-imds/3.183.0: + resolution: {integrity: sha512-RHzciaoW0sPV52VUMd3SrIFrKhXsKbn9okEF+UdR2P3RgxNsguUZsewpDqhjGZBH0E2IiuFrBPjsxQKAI+mFbQ==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/node-config-provider': 3.127.0 - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/types': 3.127.0 - '@aws-sdk/url-parser': 3.127.0 + '@aws-sdk/node-config-provider': 3.183.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/url-parser': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/credential-provider-ini/3.154.0: - resolution: {integrity: sha512-5p8vueRuAMo3cMBAHQCgAu6Kr+K6R64Bm1yccQu72HEy8zoyQsCKMV0tQS7dYbObfOGpIXZbHyESyTon0khI0g==} + /@aws-sdk/credential-provider-ini/3.183.0: + resolution: {integrity: sha512-tWiTIeA72L/7nJnDS5GfNmX58Ms9bUQLb7e9PXv5lWAfyiT9po6KMdBGIN7qld1kxBDcwFZPxsxtkHrbU+6d6A==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/credential-provider-env': 3.127.0 - '@aws-sdk/credential-provider-imds': 3.127.0 - '@aws-sdk/credential-provider-sso': 3.154.0 - '@aws-sdk/credential-provider-web-identity': 3.127.0 - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/shared-ini-file-loader': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/credential-provider-env': 3.183.0 + '@aws-sdk/credential-provider-imds': 3.183.0 + '@aws-sdk/credential-provider-sso': 3.183.0 + '@aws-sdk/credential-provider-web-identity': 3.183.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/shared-ini-file-loader': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 transitivePeerDependencies: - aws-crt dev: false - /@aws-sdk/credential-provider-node/3.154.0: - resolution: {integrity: sha512-pNxKtf/ye2574+QT2aKykSzKo3RnwCtWB7Tduo/8YlmQZL+/vX53BLcGj+fLOE1h7RbY5psF02dzbanvb4CVGg==} + /@aws-sdk/credential-provider-node/3.183.0: + resolution: {integrity: sha512-APVAOnB/5CWqnLOY4FnZ779jFg7c8EU4zlj1klZRdNLCTjDXkQSrkJ14Zy44NiTWfxalU5BPsCFHDsQo0hkyQQ==} engines: {node: '>=12.0.0'} dependencies: - '@aws-sdk/credential-provider-env': 3.127.0 - '@aws-sdk/credential-provider-imds': 3.127.0 - '@aws-sdk/credential-provider-ini': 3.154.0 - '@aws-sdk/credential-provider-process': 3.127.0 - '@aws-sdk/credential-provider-sso': 3.154.0 - '@aws-sdk/credential-provider-web-identity': 3.127.0 - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/shared-ini-file-loader': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/credential-provider-env': 3.183.0 + '@aws-sdk/credential-provider-imds': 3.183.0 + '@aws-sdk/credential-provider-ini': 3.183.0 + '@aws-sdk/credential-provider-process': 3.183.0 + '@aws-sdk/credential-provider-sso': 3.183.0 + '@aws-sdk/credential-provider-web-identity': 3.183.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/shared-ini-file-loader': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 transitivePeerDependencies: - aws-crt dev: false - /@aws-sdk/credential-provider-process/3.127.0: - resolution: {integrity: sha512-6v0m2lqkO9J5fNlTl+HjriQNIdfg8mjVST544+5y9EnC/FVmTnIz64vfHveWdNkP/fehFx7wTimNENtoSqCn3A==} + /@aws-sdk/credential-provider-process/3.183.0: + resolution: {integrity: sha512-JRePfiFPWpyF3iotHx45WyP1qe50BsPdOOFGh3vmyx5L92lnzchlGsOMpcNUiATUuA3Ar0LUt5bS299LTZWeuQ==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/shared-ini-file-loader': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/shared-ini-file-loader': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/credential-provider-sso/3.154.0: - resolution: {integrity: sha512-w3EZo1IKLyE7rhurq56e8IZuMxr0bc3Qvkq+AJnDwTR4sm5TPp9RNJwo+/A0i7GOdhNufcTlaciZT9Izi3g4+A==} + /@aws-sdk/credential-provider-sso/3.183.0: + resolution: {integrity: sha512-jddGjwAFbYyZkIiR+ghPPh92MQuljI/tusOEgvvUM/w+Cx4jvulZo8rJuEvlU49cXn76dyNxGeDWeqfskuOMpQ==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/client-sso': 3.154.0 - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/shared-ini-file-loader': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/client-sso': 3.183.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/shared-ini-file-loader': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 transitivePeerDependencies: - aws-crt dev: false - /@aws-sdk/credential-provider-web-identity/3.127.0: - resolution: {integrity: sha512-85ahDZnLYB3dqkW+cQ0bWt+NVqOoxomTrJoq3IC2q6muebeFrJ0pyf0JEW/RNRzBiUvvsZujzGdWifzWyQKfVg==} + /@aws-sdk/credential-provider-web-identity/3.183.0: + resolution: {integrity: sha512-AZGZ4zrjMgtVk5MhsRGj6glsivls4qWUQ1Vuq9FjlaN+ltW74w3D0juTwpUI/OHuSHhOznOZsO9fI4DlCfUeSw==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/fetch-http-handler/3.131.0: - resolution: {integrity: sha512-eNxmPZQX2IUeBGWHNC7eNTekWn9VIPLYEMKJbKYUBJryxuTJ7TtLeyEK5oakUjMwP1AUvWT+CV7C+8L7uG1omQ==} + /@aws-sdk/fetch-http-handler/3.183.0: + resolution: {integrity: sha512-YaVXUTYnm6ZsT4qVWcAvtjkxsxzGJW1l0o4oXnnz3hhl7AZM/RjL2l24aixSMeoj7R4hA4Yi7sHFm5OlHSTg5A==} dependencies: - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/querystring-builder': 3.127.0 - '@aws-sdk/types': 3.127.0 - '@aws-sdk/util-base64-browser': 3.109.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/querystring-builder': 3.183.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/util-base64-browser': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/hash-node/3.127.0: - resolution: {integrity: sha512-wx7DKlXdKebH4JcMsOevdsm2oDNMVm36kuMm0XWRIrFWQ/oq7OquDpEMJzWvGqWF/IfFUpb7FhAWZZpALwlcwA==} + /@aws-sdk/hash-node/3.183.0: + resolution: {integrity: sha512-XPe1TzupofkypgLw4Y38ruUM4hrrGIGwJGI/KsljDoEDpz24SyMItyCZbF7ddaPkbJGa4oO+HN072SXPB/z/6g==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/types': 3.127.0 - '@aws-sdk/util-buffer-from': 3.55.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/util-buffer-from': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/invalid-dependency/3.127.0: - resolution: {integrity: sha512-bxvmtmJ6gIRfOHvh1jAPZBH2mzppEblPjEOFo4mOzXz4U3qPIxeuukCjboMnGK9QEpV2wObWcYYld0vxoRrfiA==} + /@aws-sdk/invalid-dependency/3.183.0: + resolution: {integrity: sha512-ouKWKIFzWEt64Eg+WPjMlG/KzvQ4h3DakjHJ6L1IB/lXDL8TzJwqKdyEyt3V6/jOXLt8Wf6LtG8HA+5OC+jASQ==} dependencies: - '@aws-sdk/types': 3.127.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/is-array-buffer/3.55.0: - resolution: {integrity: sha512-NbiPHVYuPxdqdFd6FxzzN3H1BQn/iWA3ri3Ry7AyLeP/tGs1yzEWMwf8BN8TSMALI0GXT6Sh0GDWy3Ok5xB6DA==} + /@aws-sdk/is-array-buffer/3.183.0: + resolution: {integrity: sha512-s0ukhcjX1dUPRFPLyWJw9mg6SB+5YOdV2vHoKez0L7ry97p3C29wtImV2NOdw54fn/lKOtil22lFN7JpoaqU/w==} engines: {node: '>= 12.0.0'} dependencies: tslib: 2.4.0 dev: false - /@aws-sdk/middleware-content-length/3.127.0: - resolution: {integrity: sha512-AFmMaIEW3Rzg0TaKB9l/RENLowd7ZEEOpm0trYw1CgUUORWW/ydCsDT7pekPlC25CPbhUmWXCSA4xPFSYOVnDw==} + /@aws-sdk/middleware-content-length/3.183.0: + resolution: {integrity: sha512-dcLMEEa6j3eDH8obsDHZaHgOZIUPDIZdkgtLYB0tyvJEo8HZGEE/Ch1abwlIzXkZ7qRPXysgX7JayJV8N7kxEw==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/middleware-host-header/3.127.0: - resolution: {integrity: sha512-e2gTLJb5lYP9lRV7hN3rKY2l4jv8OygOoHElZJ3Z8KPZskjHelYPcQ8XbdfhSXXxC3vc/0QqN0ResFt3W3Pplg==} + /@aws-sdk/middleware-host-header/3.183.0: + resolution: {integrity: sha512-EcInz6QFQ0ljK8QABX/NRcLYGySv+S/mmJYSLIHkU+/FDh+Wh08Awq9OVjJwGp2mmHM1ZHHHI0sTrdBdmBLX3g==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/middleware-logger/3.127.0: - resolution: {integrity: sha512-jMNLcZB/ECA7OfkNBLNeAlrLRehyfnUeNQJHW3kcxs9h1+6VxaF6wY+WKozszLI7/3OBzQrFHBQCfRZV7ykSLg==} + /@aws-sdk/middleware-logger/3.183.0: + resolution: {integrity: sha512-bEjira7lUPtIfOCDAAkWR53gIJG2g8HhYeL0C+fGB4lztf2Cdlqg9quLXXHRVd0Vmio4OR3NMm5aPIwMnUULWQ==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/types': 3.127.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/middleware-recursion-detection/3.127.0: - resolution: {integrity: sha512-tB6WX+Z1kUKTnn5h38XFrTCzoqPKjUZLUjN4Wb27/cbeSiTSKGAZcCXHOJm36Ukorl5arlybQTqGe689EU00Hw==} + /@aws-sdk/middleware-recursion-detection/3.183.0: + resolution: {integrity: sha512-RcsFN5Mp10SO9yKRVeFqedxQIhqWi00Kb5EpE1SR7bC/tcrizS2e0ytFkLk2Bv2U6tbT1CYg7EMa76ssRaSk5w==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/middleware-retry/3.127.0: - resolution: {integrity: sha512-ZSvg/AyGUacWnf3i8ZbyImtiCH+NyafF8uV7bITP7JkwPrG+VdNocJZOr88GRM0c1A0jfkOf7+oq+fInPwwiNA==} + /@aws-sdk/middleware-retry/3.183.0: + resolution: {integrity: sha512-TV3yKWd5g+18/0XjqVeG4/IrksAvBBqSuBVaaNFUACBhwZGZy6IV0sSOlYnWHLTPbPIwrxN9TTt+uIdvCbf+hw==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/service-error-classification': 3.127.0 - '@aws-sdk/types': 3.127.0 - '@aws-sdk/util-middleware': 3.127.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/service-error-classification': 3.183.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/util-middleware': 3.183.0 tslib: 2.4.0 uuid: 8.3.2 dev: false - /@aws-sdk/middleware-sdk-sts/3.130.0: - resolution: {integrity: sha512-FDfs7+ohbhEK3eH3Dshr6JDiL8P72bp3ffeNpPBXuURFqwt4pCmjHuX3SqQR0JIJ2cl3aIdxc17rKaZJfOjtPw==} + /@aws-sdk/middleware-sdk-sts/3.183.0: + resolution: {integrity: sha512-d8zqIDiT1/Zqh0RB/VV4RHz+CIyrMbxEm81rx0pn/9eMVLO4A33j1DaaTcQ0fuCCU7K2rptJC+t2tvkzmXPERg==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/middleware-signing': 3.130.0 - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/signature-v4': 3.130.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/middleware-signing': 3.183.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/signature-v4': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/middleware-serde/3.127.0: - resolution: {integrity: sha512-xmWMYV/t9M+b9yHjqaD1noDNJJViI2QwOH7TQZ9VbbrvdVtDrFuS9Sf9He80TBCJqeHShwQN9783W1I3Pu/8kw==} + /@aws-sdk/middleware-serde/3.183.0: + resolution: {integrity: sha512-8VqXmaIbH5E1L7ORXLAhaLKpoUJl7vYCbFpL3NKPlVBPDPAydLhyEltBc3mJTfUo4XWYn6qRqgNwlppXUJZ1xg==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/types': 3.127.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/middleware-signing/3.130.0: - resolution: {integrity: sha512-JePq5XLR9TfRN3RQ0d7Za/bEW5D3xgtD1FNAwHeenWALeozMuQgRPjM5RroCnL/5jY3wuvCZI7cSXeqhawWqmA==} + /@aws-sdk/middleware-signing/3.183.0: + resolution: {integrity: sha512-ABb8aSs6649pOZg2Ck3EyeMJo03eYBIqUw7vOhBR6IhQA/XHCFzFX8vEhWjhEWfQcUQBIzNlgoY+0uXK0wVEYQ==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/signature-v4': 3.130.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/signature-v4': 3.183.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/util-middleware': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/middleware-stack/3.127.0: - resolution: {integrity: sha512-S1IoUE5o1vCmjsF5nIE8zlItNOM1UE+lhmZeigF7knXJ9+a6ewMB6POAj/s4eoi0wcn0eSnAGsqJCWMSUjOPLA==} + /@aws-sdk/middleware-stack/3.183.0: + resolution: {integrity: sha512-xNvGdj5qgSiC0WETkDOk1Rr7goR7smjbRc/vcYzO4HLwfw2JX/QxtZ2iNAdBMwW1M8O4JfVqS3ynqlE6Ssd7YQ==} engines: {node: '>= 12.0.0'} dependencies: tslib: 2.4.0 dev: false - /@aws-sdk/middleware-user-agent/3.127.0: - resolution: {integrity: sha512-CHxgswoOzdkOEoIq7Oyob3Sx/4FYUv6BhUesAX7MNshaDDsTQPbSWjw5bqZDiL/gO+X/34fvqCVVpVD2GvxW/g==} + /@aws-sdk/middleware-user-agent/3.183.0: + resolution: {integrity: sha512-XPX6LKS+zD11yB7nMSQHnW749+2RcFDjr0l2Eb+X0Tffr70JrWpiSx8wYAWUcuTg5Zv4aJAdzYCCaJKZt61Wqg==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/node-config-provider/3.127.0: - resolution: {integrity: sha512-bAHkASMhLZHT1yv2TX6OJGFV9Lc3t1gKfTMEKdXM2O2YhGfSx9A/qLeJm79oDfnILWQtSS2NicxlRDI2lYGf4g==} + /@aws-sdk/node-config-provider/3.183.0: + resolution: {integrity: sha512-Y15Byu7uJxkpHes4PxLBfJEgvxXS5ovyfDGJKJYISwBqJFkDP9gp8/5hg/uHxlJuVWEgFDSTi5kOUjnOhaCZ/A==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/shared-ini-file-loader': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/shared-ini-file-loader': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/node-http-handler/3.127.0: - resolution: {integrity: sha512-pyMKvheK8eDwWLgYIRsWy8wiyhsbYYcqkZQs3Eh6upI4E8iCY7eMmhWvHYCibvsO+UjsOwa4cAMOfwnv/Z9s8A==} + /@aws-sdk/node-http-handler/3.183.0: + resolution: {integrity: sha512-mwxwcDW03qZDk/XHr+MJrFUIAaCSIOPYemiM24gOhEqv6/B0ikxAzZIrggd8jKFlnPxPHME0FCFuIQ6tmokEyA==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/abort-controller': 3.127.0 - '@aws-sdk/protocol-http': 3.127.0 - '@aws-sdk/querystring-builder': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/abort-controller': 3.183.0 + '@aws-sdk/protocol-http': 3.183.0 + '@aws-sdk/querystring-builder': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/property-provider/3.127.0: - resolution: {integrity: sha512-JxenxlTEkWfLrtJqIjaXaJzAVQbbscoCb5bNjmdud07ESLVfWRKJx2nAJdecHKYp2M5NQyqBuFhQ1ELSFYQKCA==} + /@aws-sdk/property-provider/3.183.0: + resolution: {integrity: sha512-IYZNJX/S2wQsDKx+Pm+gwCKFR037/T+K85YW7j8be7aItqZqwOo7yRNXhJSOJPMANxhz4KmHH3n1oXhmCBvyug==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/types': 3.127.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/protocol-http/3.127.0: - resolution: {integrity: sha512-UG83PVuKX40wilG2uRU0Fvz4OY8Bt+bSPOG776DFjwIXYzK7BwpJm9H2XI2HLhS5WxrJHhwrLBRgW6UiykMnFw==} + /@aws-sdk/protocol-http/3.183.0: + resolution: {integrity: sha512-uFxp2YDRQgvHvGWY91CqZjqhDFoiPx9dr45ZIq/jZ4bOQ9rY619PAIBQ15eh54v7DI1zm4pLlXXvytA0LJF3jg==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/types': 3.127.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/querystring-builder/3.127.0: - resolution: {integrity: sha512-tsoyp4lLPsASPDYWsezGAHD8VJsZbjUNATNAzTCFdH6p+4SKBK83Q5kfXCzxt13M+l3oKbxxIWLvS0kVQFyltQ==} + /@aws-sdk/querystring-builder/3.183.0: + resolution: {integrity: sha512-12IFkuyPyJk8MZ1CKxiFo0GCTmqTwlJ3rMRk7L1wk44yObdKpQK/MSkUl0QgZHSjsS84zfqdeOXQJqLGGaIETg==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/types': 3.127.0 - '@aws-sdk/util-uri-escape': 3.55.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/util-uri-escape': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/querystring-parser/3.127.0: - resolution: {integrity: sha512-Vn/Dv+PqUSepp/DzLqq0LJJD8HdPefJCnLbO5WcHCARHSGlyGlZUFEM45k/oEHpTvgMXj/ORaP3A+tLwLu0AmA==} + /@aws-sdk/querystring-parser/3.183.0: + resolution: {integrity: sha512-0yB48bevrHMzXf2afYIAAqYfqCea3aeTyGLa+7IeWZbgP481JbGQyMMNtQBA8VgOB3k7vDEqIYT+QuVxbVhKCA==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/types': 3.127.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/service-error-classification/3.127.0: - resolution: {integrity: sha512-wjZY9rnlA8SPrICUumTYicEKtK4/yKB62iadUk66hxe8MrH8JhuHH2NqIad0Pt/bK/YtNVhd3yb4pRapOeY5qQ==} + /@aws-sdk/service-error-classification/3.183.0: + resolution: {integrity: sha512-WCQzfRgCHdSXT6spTpGNV2zjBWN1QMxwA3L7sdmXvGDYR1USZlyNRwvYOc7g6Px2ZmMI5DnzjIKu60eSyVsH+w==} engines: {node: '>= 12.0.0'} dev: false - /@aws-sdk/shared-ini-file-loader/3.127.0: - resolution: {integrity: sha512-S3Nn4KRTqoJsB/TbRZSWBBUrkckNMR0Juqz7bOB+wupVvddKP6IcpspSC/GX9zgJjVMV8iGisZ6AUsYsC5r+cA==} + /@aws-sdk/shared-ini-file-loader/3.183.0: + resolution: {integrity: sha512-QqLdLthJP73m+h9FhCPsRUsF0AAtHVLivOvtH9ZRoph7C2bqSvfm8LHQO20R61acN9o72mgMiVDVBp/XhiGpkA==} engines: {node: '>= 12.0.0'} dependencies: + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/signature-v4/3.130.0: - resolution: {integrity: sha512-g5G1a1NHL2uOoFfC2zQdZcj+wbjgBQPkx6xGdtqNKf9v2kS0n6ap5JUGEaqWE02lUlmWHsoMsS73hXtzwXaBRQ==} + /@aws-sdk/signature-v4/3.183.0: + resolution: {integrity: sha512-XlYaSVbC6acTdc7FI5hmfZqOLPBwNCbnutmoElTdJQKwhSS6LvwwUngM4L5tm3etlPkKVFSsWllG68Au/vFF4w==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/is-array-buffer': 3.55.0 - '@aws-sdk/types': 3.127.0 - '@aws-sdk/util-hex-encoding': 3.109.0 - '@aws-sdk/util-middleware': 3.127.0 - '@aws-sdk/util-uri-escape': 3.55.0 + '@aws-sdk/is-array-buffer': 3.183.0 + '@aws-sdk/types': 3.183.0 + '@aws-sdk/util-hex-encoding': 3.183.0 + '@aws-sdk/util-middleware': 3.183.0 + '@aws-sdk/util-uri-escape': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/smithy-client/3.142.0: - resolution: {integrity: sha512-G38YWTfSFZb5cOH6IwLct530Uy8pnmJvJFeC1pd1nkKD4PRZb+bI2w4xXSX+znYdLA71RYK620OtVKJlB44PtA==} + /@aws-sdk/smithy-client/3.183.0: + resolution: {integrity: sha512-HesHCNI09yCGh/QaLWyiMia0I3i6xs9v7ghksGXNhpNNrTIshFu5AUh2uJTdlaHiUN9zlED3ulkPo2FrE7Lxww==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/middleware-stack': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/middleware-stack': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/types/3.127.0: - resolution: {integrity: sha512-e0wtx2IkOl7rwfKfLH5pPTzQ+d45V7b1WrjeL0WDI8kOu6w+sXmhNxI6uM2kf0k4NiTLN84lW290AEWupey9Og==} + /@aws-sdk/types/3.183.0: + resolution: {integrity: sha512-V5IU7q7Y2ADIFzvUxoGfpVahhVnGjCABTv9jZYUSyJW7/OwSB+eA2C1B8ZsKAYLWtc9xKxYpRl5FI5e7FBGUIQ==} engines: {node: '>= 12.0.0'} dev: false - /@aws-sdk/url-parser/3.127.0: - resolution: {integrity: sha512-njZ7zn41JHRpNfr3BCesVXCLZE0zcWSfEdtRV0ICw0cU1FgYcKELSuY9+gLUB4ci6uc7gq7mPE8+w30FcM4QeA==} + /@aws-sdk/url-parser/3.183.0: + resolution: {integrity: sha512-hrgeIDyAIJfGYbfGfQJD41iUwncfdhObyQ+aPfjZjAzqNSmNCV1jF9+k/BXdMnjCAM6n8rX6ZNko9PhtGz9uKw==} dependencies: - '@aws-sdk/querystring-parser': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/querystring-parser': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/util-base64-browser/3.109.0: - resolution: {integrity: sha512-lAZ6fyDGiRLaIsKT9qh7P9FGuNyZ4gAbr1YOSQk/5mHtaTuUvxlPptZuInNM/0MPQm6lpcot00D8IWTucn4PbA==} + /@aws-sdk/util-base64-browser/3.183.0: + resolution: {integrity: sha512-rDTgkDHQbQtg/2RGbBb1ztZCRF8ELAXyhVQ7CqEqZSirdpQyIdOOVi8ucr4sjVyUQIq92irfJO1SEcANsaFhWQ==} dependencies: tslib: 2.4.0 dev: false - /@aws-sdk/util-base64-node/3.55.0: - resolution: {integrity: sha512-UQ/ZuNoAc8CFMpSiRYmevaTsuRKzLwulZTnM8LNlIt9Wx1tpNvqp80cfvVj7yySKROtEi20wq29h31dZf1eYNQ==} + /@aws-sdk/util-base64-node/3.183.0: + resolution: {integrity: sha512-FqgzW17oMvv41eB6Lsq2q32HGch5pSmUtXdcVjvXkPKc5CGtNIB49pRx4re4SOGKexkBabB9gdmubs3jH8BB5Q==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/util-buffer-from': 3.55.0 + '@aws-sdk/util-buffer-from': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/util-body-length-browser/3.154.0: - resolution: {integrity: sha512-TUuy7paVkBRQrB/XFCsL8iTW6g/ma0S3N8dYOiIMJdeTqTFryeyOGkBpYBgYFQL6zRMZpyu0jOM7GYEffGFOXw==} + /@aws-sdk/util-body-length-browser/3.183.0: + resolution: {integrity: sha512-HniybeERXdHnN+NceOOlaeWgqfDgfWhtFmdOxJYWaxUW21RX+GQiObXtjnU7Nb0DtzTkAv/PWfkZ5lS8WLGQ2Q==} dependencies: tslib: 2.4.0 dev: false - /@aws-sdk/util-body-length-node/3.55.0: - resolution: {integrity: sha512-lU1d4I+9wJwydduXs0SxSfd+mHKjxeyd39VwOv6i2KSwWkPbji9UQqpflKLKw+r45jL7+xU/zfeTUg5Tt/3Gew==} + /@aws-sdk/util-body-length-node/3.183.0: + resolution: {integrity: sha512-BBaGaQtSQFXtKB9hXnGog5osNTasAe1GlvQCRqvBEvF2LwM54M+Hsr5HisJKnCybUgQGi0R2Al3CohjMy+mczQ==} engines: {node: '>= 12.0.0'} dependencies: tslib: 2.4.0 dev: false - /@aws-sdk/util-buffer-from/3.55.0: - resolution: {integrity: sha512-uVzKG1UgvnV7XX2FPTylBujYMKBPBaq/qFBxfl0LVNfrty7YjpfieQxAe6yRLD+T0Kir/WDQwGvYC+tOYG3IGA==} + /@aws-sdk/util-buffer-from/3.183.0: + resolution: {integrity: sha512-y/GPvo7kqM7taj6+Iq2uUxdrdDcUAtmQEX1l24qjl7MYEnZMncfxWjFdBhIvq4HBJjN3Oq8OIvTc/ZDB2obBJA==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/is-array-buffer': 3.55.0 + '@aws-sdk/is-array-buffer': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/util-config-provider/3.109.0: - resolution: {integrity: sha512-GrAZl/aBv0A28LkyNyq8SPJ5fmViCwz80fWLMeWx/6q5AbivuILogjlWwEZSvZ9zrlHOcFC0+AnCa5pQrjaslw==} + /@aws-sdk/util-config-provider/3.183.0: + resolution: {integrity: sha512-F6QaY3giXX4kSJk1VIkw9n9I4heTNgv5RmAgY5xlCNU5BqoWyIbWG9B8r/P7metlPhACZ1M8dMp5RwQi8Ae1Jw==} engines: {node: '>= 12.0.0'} dependencies: tslib: 2.4.0 dev: false - /@aws-sdk/util-defaults-mode-browser/3.142.0: - resolution: {integrity: sha512-vVB/CrodMmIfv4v54MyBlKO0sQSI/+Mvs4g5gMyVjmT4a+1gnktJQ9R6ZHQ2/ErGewcra6eH9MU5T0r1kYe0+w==} + /@aws-sdk/util-defaults-mode-browser/3.183.0: + resolution: {integrity: sha512-YWKb4Y0bo/hpAVvf27wAQ3vj8OSVHkyHeoZC6ni9alkK41SAlv3RjodfTAhN0039QD+DirTa3EkLQj9ag1Igdg==} engines: {node: '>= 10.0.0'} dependencies: - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/types': 3.183.0 bowser: 2.11.0 tslib: 2.4.0 dev: false - /@aws-sdk/util-defaults-mode-node/3.142.0: - resolution: {integrity: sha512-13d5RZLO13EDwll3COUq3D4KVsqM63kdf+YjG5mzXR1eXo6GVjghfQfiy0MYM6YbAjTfJxZQkc0nFgWLU8jdyg==} + /@aws-sdk/util-defaults-mode-node/3.183.0: + resolution: {integrity: sha512-zuNFv2nSgtK6yTEMiEZW2vNxtC6vcKlt6vv0QtIEZZGGhjxEx2dK28jKr9GHlDLIt99mjvJaqiP4tiyfNE5Xpg==} engines: {node: '>= 10.0.0'} dependencies: - '@aws-sdk/config-resolver': 3.130.0 - '@aws-sdk/credential-provider-imds': 3.127.0 - '@aws-sdk/node-config-provider': 3.127.0 - '@aws-sdk/property-provider': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/config-resolver': 3.183.0 + '@aws-sdk/credential-provider-imds': 3.183.0 + '@aws-sdk/node-config-provider': 3.183.0 + '@aws-sdk/property-provider': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/util-hex-encoding/3.109.0: - resolution: {integrity: sha512-s8CgTNrn3cLkrdiohfxLuOYPCanzvHn/aH5RW6DaMoeQiG5Hl9QUiP/WtdQ9QQx3xvpQFpmvxIaSBwSgFNLQxA==} + /@aws-sdk/util-hex-encoding/3.183.0: + resolution: {integrity: sha512-pcvgpSID2mFnkaWPd/cpP4H7Lpu9w9Sc2QcMc2kvkOgkNb7mNres+guybqIMIlsOfuVuFK6291KwtYEgYIWHjQ==} engines: {node: '>= 12.0.0'} dependencies: tslib: 2.4.0 dev: false - /@aws-sdk/util-locate-window/3.55.0: - resolution: {integrity: sha512-0sPmK2JaJE2BbTcnvybzob/VrFKCXKfN4CUKcvn0yGg/me7Bz+vtzQRB3Xp+YSx+7OtWxzv63wsvHoAnXvgxgg==} + /@aws-sdk/util-locate-window/3.183.0: + resolution: {integrity: sha512-zcto3whSC1EHnKlygkSBmwI95r3mOpG3o37M2zHhKJlJbPZhI61+MnNQ13T46m4MRWC5gJgPi3gL7kI9Bnb+hA==} engines: {node: '>= 12.0.0'} dependencies: tslib: 2.4.0 dev: false - /@aws-sdk/util-middleware/3.127.0: - resolution: {integrity: sha512-EwAPPed9TNqh+Wov2VStLn2NuJ/Wyt7IkZCbCsBuSNp3BFZ1V4gfwTjqtKCtB2LQgQ48MTgWgNCvrH0zjCSPGg==} + /@aws-sdk/util-middleware/3.183.0: + resolution: {integrity: sha512-zbAFH5SkJ1kTFWPZVg4JdQEhfnJAyL/BDDtGPublVCbplXHAFxoYsneL0he4OEyJbf9KQyITOlzOcthB1kS9Qg==} engines: {node: '>= 12.0.0'} dependencies: tslib: 2.4.0 dev: false - /@aws-sdk/util-uri-escape/3.55.0: - resolution: {integrity: sha512-mmdDLUpFCN2nkfwlLdOM54lTD528GiGSPN1qb8XtGLgZsJUmg3uJSFIN2lPeSbEwJB3NFjVas/rnQC48i7mV8w==} + /@aws-sdk/util-uri-escape/3.183.0: + resolution: {integrity: sha512-pBTwFR/s3ITNHDbsnjhGu6g47PUb5NFbAOWRMFukJME5glOTkFViGlSrEbq0xZB/A0jKFZBQWXLDtgR2G0N8TA==} engines: {node: '>= 12.0.0'} dependencies: tslib: 2.4.0 dev: false - /@aws-sdk/util-user-agent-browser/3.127.0: - resolution: {integrity: sha512-uO2oHmJswuYKJS+GiMdYI8izhpC9M7/jFFvnAmLlTEVwpEi1VX9KePAOF+u5AaBC2kzITo/7dg141XfRHZloIQ==} + /@aws-sdk/util-user-agent-browser/3.183.0: + resolution: {integrity: sha512-uLUFxHFzh/ivcEeocpvMZBnpEDA793lAtsReaG7QRA1PheRgAQQHeugrTOkQ7doGCz0YBbocXAMcNDrmN1EdNA==} dependencies: - '@aws-sdk/types': 3.127.0 + '@aws-sdk/types': 3.183.0 bowser: 2.11.0 tslib: 2.4.0 dev: false - /@aws-sdk/util-user-agent-node/3.127.0: - resolution: {integrity: sha512-3P/M4ZDD2qMeeoCk7TE/Mw7cG5IjB87F6BP8nI8/oHuaz7j6fsI7D49SNpyjl8JApRynZ122Ad6hwQwRj3isYw==} + /@aws-sdk/util-user-agent-node/3.183.0: + resolution: {integrity: sha512-EsyNWuW4ZhLoo5sDs/rMuL5BwGgyyO5bJxI4GzXhDcPPJerQvDZ3ZD3aB55IzAWd4EMHft3Man2uB2bCSWavjA==} engines: {node: '>= 12.0.0'} peerDependencies: aws-crt: '>=1.0.0' @@ -657,31 +659,31 @@ packages: aws-crt: optional: true dependencies: - '@aws-sdk/node-config-provider': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/node-config-provider': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/util-utf8-browser/3.109.0: - resolution: {integrity: sha512-FmcGSz0v7Bqpl1SE8G1Gc0CtDpug+rvqNCG/szn86JApD/f5x8oByjbEiAyTU2ZH2VevUntx6EW68ulHyH+x+w==} + /@aws-sdk/util-utf8-browser/3.183.0: + resolution: {integrity: sha512-6JHlQ5VkF2XdUfyK1pjpR1A8I+hVdyV0yGiyOB3Vge2zIkcc6oZQYIsSePFmqujJspz29GK0InbQhJXKuLDekg==} dependencies: tslib: 2.4.0 dev: false - /@aws-sdk/util-utf8-node/3.109.0: - resolution: {integrity: sha512-Ti/ZBdvz2eSTElsucjzNmzpyg2MwfD1rXmxD0hZuIF8bPON/0+sZYnWd5CbDw9kgmhy28dmKue086tbZ1G0iLQ==} + /@aws-sdk/util-utf8-node/3.183.0: + resolution: {integrity: sha512-5oIc0Bco765sMd0X4jOpwidBxPOXocGXuaTM5LxfFlw+KZjgh609VQHii9pUlere23kCXF3cZzup++oSQBSrTg==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/util-buffer-from': 3.55.0 + '@aws-sdk/util-buffer-from': 3.183.0 tslib: 2.4.0 dev: false - /@aws-sdk/util-waiter/3.127.0: - resolution: {integrity: sha512-E5qrRpBJS8dmClqSDW1pWVMKzCG/mxabG6jVUtlW/WLHnl/znxGaOQc6tnnwKik0nEq/4DpT9fEfPUz9JiLrkw==} + /@aws-sdk/util-waiter/3.183.0: + resolution: {integrity: sha512-gp8zuE8+6N9khmwpfNtkiiScnosoGEh5touy8KGqAy5OYcTFCyjqoEwqH3JCiZxzoTMB+81iGR3mbj4EiGwUOw==} engines: {node: '>= 12.0.0'} dependencies: - '@aws-sdk/abort-controller': 3.127.0 - '@aws-sdk/types': 3.127.0 + '@aws-sdk/abort-controller': 3.183.0 + '@aws-sdk/types': 3.183.0 tslib: 2.4.0 dev: false @@ -692,25 +694,25 @@ packages: '@babel/highlight': 7.18.6 dev: true - /@babel/compat-data/7.18.13: - resolution: {integrity: sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw==} + /@babel/compat-data/7.19.3: + resolution: {integrity: sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw==} engines: {node: '>=6.9.0'} dev: true - /@babel/core/7.18.13: - resolution: {integrity: sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==} + /@babel/core/7.19.3: + resolution: {integrity: sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.13 - '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.13 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helpers': 7.18.9 - '@babel/parser': 7.18.13 + '@babel/generator': 7.19.3 + '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 + '@babel/helper-module-transforms': 7.19.0 + '@babel/helpers': 7.19.0 + '@babel/parser': 7.19.3 '@babel/template': 7.18.10 - '@babel/traverse': 7.18.13 - '@babel/types': 7.18.13 + '@babel/traverse': 7.19.3 + '@babel/types': 7.19.3 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -720,25 +722,25 @@ packages: - supports-color dev: true - /@babel/generator/7.18.13: - resolution: {integrity: sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ==} + /@babel/generator/7.19.3: + resolution: {integrity: sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.13 + '@babel/types': 7.19.3 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 dev: true - /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.13: - resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} + /@babel/helper-compilation-targets/7.19.3_@babel+core@7.19.3: + resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.18.13 - '@babel/core': 7.18.13 + '@babel/compat-data': 7.19.3 + '@babel/core': 7.19.3 '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.3 + browserslist: 4.21.4 semver: 6.3.0 dev: true @@ -747,46 +749,46 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-function-name/7.18.9: - resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} + /@babel/helper-function-name/7.19.0: + resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/types': 7.18.13 + '@babel/types': 7.19.3 dev: true /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.13 + '@babel/types': 7.19.3 dev: true /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.13 + '@babel/types': 7.19.3 dev: true - /@babel/helper-module-transforms/7.18.9: - resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==} + /@babel/helper-module-transforms/7.19.0: + resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-module-imports': 7.18.6 '@babel/helper-simple-access': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.18.13 - '@babel/types': 7.18.13 + '@babel/traverse': 7.19.3 + '@babel/types': 7.19.3 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-plugin-utils/7.18.9: - resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} + /@babel/helper-plugin-utils/7.19.0: + resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==} engines: {node: '>=6.9.0'} dev: true @@ -794,14 +796,14 @@ packages: resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.13 + '@babel/types': 7.19.3 dev: true /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.13 + '@babel/types': 7.19.3 dev: true /@babel/helper-string-parser/7.18.10: @@ -809,8 +811,8 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-identifier/7.18.6: - resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} + /@babel/helper-validator-identifier/7.19.1: + resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} engines: {node: '>=6.9.0'} dev: true @@ -819,13 +821,13 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helpers/7.18.9: - resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==} + /@babel/helpers/7.19.0: + resolution: {integrity: sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/traverse': 7.18.13 - '@babel/types': 7.18.13 + '@babel/traverse': 7.19.3 + '@babel/types': 7.19.3 transitivePeerDependencies: - supports-color dev: true @@ -834,136 +836,136 @@ packages: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - /@babel/parser/7.18.13: - resolution: {integrity: sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==} + /@babel/parser/7.19.3: + resolution: {integrity: sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.18.13 + '@babel/types': 7.19.3 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.13: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.3: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.13: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.3: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.13: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.3: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.13: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.3: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.13: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.3: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.13: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.3: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.13: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.3: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.13: + /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.13 - '@babel/helper-plugin-utils': 7.18.9 + '@babel/core': 7.19.3 + '@babel/helper-plugin-utils': 7.19.0 dev: true /@babel/template/7.18.10: @@ -971,34 +973,34 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.18.13 - '@babel/types': 7.18.13 + '@babel/parser': 7.19.3 + '@babel/types': 7.19.3 dev: true - /@babel/traverse/7.18.13: - resolution: {integrity: sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA==} + /@babel/traverse/7.19.3: + resolution: {integrity: sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.13 + '@babel/generator': 7.19.3 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.18.9 + '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.18.13 - '@babel/types': 7.18.13 + '@babel/parser': 7.19.3 + '@babel/types': 7.19.3 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types/7.18.13: - resolution: {integrity: sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ==} + /@babel/types/7.19.3: + resolution: {integrity: sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.18.10 - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 dev: true @@ -1006,13 +1008,13 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@eslint/eslintrc/1.3.0: - resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==} + /@eslint/eslintrc/1.3.2: + resolution: {integrity: sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.3.3 + espree: 9.4.0 globals: 13.17.0 ignore: 5.2.0 import-fresh: 3.3.0 @@ -1023,8 +1025,8 @@ packages: - supports-color dev: true - /@humanwhocodes/config-array/0.10.4: - resolution: {integrity: sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==} + /@humanwhocodes/config-array/0.10.7: + resolution: {integrity: sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 @@ -1038,6 +1040,11 @@ packages: resolution: {integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==} dev: true + /@humanwhocodes/module-importer/1.0.1: + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + dev: true + /@humanwhocodes/object-schema/1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} dev: true @@ -1063,7 +1070,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 18.7.13 + '@types/node': 18.8.2 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 @@ -1084,14 +1091,14 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.7.13 + '@types/node': 18.8.2 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.3.2 + ci-info: 3.4.0 exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 28.1.3 - jest-config: 28.1.3_@types+node@18.7.13 + jest-config: 28.1.3_@types+node@18.8.2 jest-haste-map: 28.1.3 jest-message-util: 28.1.3 jest-regex-util: 28.0.2 @@ -1119,7 +1126,7 @@ packages: dependencies: '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.7.13 + '@types/node': 18.8.2 jest-mock: 28.1.3 dev: true @@ -1146,7 +1153,7 @@ packages: dependencies: '@jest/types': 28.1.3 '@sinonjs/fake-timers': 9.1.2 - '@types/node': 18.7.13 + '@types/node': 18.8.2 jest-message-util: 28.1.3 jest-mock: 28.1.3 jest-util: 28.1.3 @@ -1178,7 +1185,7 @@ packages: '@jest/transform': 28.1.3 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.15 - '@types/node': 18.7.13 + '@types/node': 18.8.2 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -1205,7 +1212,7 @@ packages: resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@sinclair/typebox': 0.24.28 + '@sinclair/typebox': 0.24.44 dev: true /@jest/source-map/28.1.2: @@ -1241,7 +1248,7 @@ packages: resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.19.3 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.15 babel-plugin-istanbul: 6.1.1 @@ -1267,8 +1274,8 @@ packages: '@jest/schemas': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.7.13 - '@types/yargs': 17.0.11 + '@types/node': 18.8.2 + '@types/yargs': 17.0.13 chalk: 4.1.2 dev: true @@ -1331,8 +1338,8 @@ packages: fastq: 1.13.0 dev: true - /@sinclair/typebox/0.24.28: - resolution: {integrity: sha512-dgJd3HLOkLmz4Bw50eZx/zJwtBq65nms3N9VBYu5LTjJ883oBFkTyXRlCB/ZGGwqYpJJHA5zW2Ibhl5ngITfow==} + /@sinclair/typebox/0.24.44: + resolution: {integrity: sha512-ka0W0KN5i6LfrSocduwliMMpqVgohtPFidKdMEOUjoOFCHcOOYkKsPRxfs5f15oPNHTm6ERAm0GV/+/LTKeiWg==} dev: true /@sinonjs/commons/1.8.3: @@ -1350,36 +1357,36 @@ packages: /@types/babel__core/7.1.19: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: - '@babel/parser': 7.18.13 - '@babel/types': 7.18.13 + '@babel/parser': 7.19.3 + '@babel/types': 7.19.3 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.18.0 + '@types/babel__traverse': 7.18.2 dev: true /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.18.13 + '@babel/types': 7.19.3 dev: true /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.18.13 - '@babel/types': 7.18.13 + '@babel/parser': 7.19.3 + '@babel/types': 7.19.3 dev: true - /@types/babel__traverse/7.18.0: - resolution: {integrity: sha512-v4Vwdko+pgymgS+A2UIaJru93zQd85vIGWObM5ekZNdXCKtDYqATlEYnWgfo86Q6I1Lh0oXnksDnMU1cwmlPDw==} + /@types/babel__traverse/7.18.2: + resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==} dependencies: - '@babel/types': 7.18.13 + '@babel/types': 7.19.3 dev: true /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 18.7.13 + '@types/node': 18.8.2 dev: true /@types/istanbul-lib-coverage/2.0.4: @@ -1398,12 +1405,12 @@ packages: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/node/18.7.13: - resolution: {integrity: sha512-46yIhxSe5xEaJZXWdIBP7GU4HDTG8/eo0qd9atdiL+lFpA03y8KS+lkTN834TWJj5767GbWv4n/P6efyTFt1Dw==} + /@types/node/18.8.2: + resolution: {integrity: sha512-cRMwIgdDN43GO4xMWAfJAecYn8wV4JbsOGHNfNUIDiuYkUYAR5ec4Rj7IO2SAhFPEfpPtLtUTbbny/TCT7aDwA==} dev: true - /@types/prettier/2.7.0: - resolution: {integrity: sha512-RI1L7N4JnW5gQw2spvL7Sllfuf1SaHdrZpCHiBlCXjIlufi1SMNnbu2teze3/QE67Fg2tBlH7W+mi4hVNk4p0A==} + /@types/prettier/2.7.1: + resolution: {integrity: sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==} dev: true /@types/stack-utils/2.0.1: @@ -1414,8 +1421,8 @@ packages: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} dev: true - /@types/yargs/17.0.11: - resolution: {integrity: sha512-aB4y9UDUXTSMxmM4MH+YnuR0g5Cph3FLQBoWoMB21DSvFVAxRVEHEMx3TLh+zUZYMCQtKiqazz0Q4Rre31f/OA==} + /@types/yargs/17.0.13: + resolution: {integrity: sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==} dependencies: '@types/yargs-parser': 21.0.0 dev: true @@ -1502,17 +1509,17 @@ packages: engines: {node: '>=8'} dev: true - /babel-jest/28.1.3_@babel+core@7.18.13: + /babel-jest/28.1.3_@babel+core@7.19.3: resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.19.3 '@jest/transform': 28.1.3 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3_@babel+core@7.18.13 + babel-preset-jest: 28.1.3_@babel+core@7.19.3 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -1524,7 +1531,7 @@ packages: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} dependencies: - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.19.0 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.0 @@ -1538,40 +1545,40 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/template': 7.18.10 - '@babel/types': 7.18.13 + '@babel/types': 7.19.3 '@types/babel__core': 7.1.19 - '@types/babel__traverse': 7.18.0 + '@types/babel__traverse': 7.18.2 dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.13: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.19.3: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.13 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.13 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.13 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.13 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.13 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.13 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.13 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.13 - dev: true - - /babel-preset-jest/28.1.3_@babel+core@7.18.13: + '@babel/core': 7.19.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.3 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.3 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.19.3 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.3 + dev: true + + /babel-preset-jest/28.1.3_@babel+core@7.19.3: resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.19.3 babel-plugin-jest-hoist: 28.1.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.13 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.3 dev: true /balanced-match/1.0.2: @@ -1596,15 +1603,15 @@ packages: fill-range: 7.0.1 dev: true - /browserslist/4.21.3: - resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==} + /browserslist/4.21.4: + resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001382 - electron-to-chromium: 1.4.228 + caniuse-lite: 1.0.30001415 + electron-to-chromium: 1.4.271 node-releases: 2.0.6 - update-browserslist-db: 1.0.5_browserslist@4.21.3 + update-browserslist-db: 1.0.9_browserslist@4.21.4 dev: true /bser/2.1.1: @@ -1632,8 +1639,8 @@ packages: engines: {node: '>=10'} dev: true - /caniuse-lite/1.0.30001382: - resolution: {integrity: sha512-2rtJwDmSZ716Pxm1wCtbPvHtbDWAreTPxXbkc5RkKglow3Ig/4GNGazDI9/BVnXbG/wnv6r3B5FEbkfg9OcTGg==} + /caniuse-lite/1.0.30001415: + resolution: {integrity: sha512-ER+PfgCJUe8BqunLGWd/1EY4g8AzQcsDAVzdtMGKVtQEmKAwaFfU6vb7EAVIqTMYsqxBorYZi2+22Iouj/y7GQ==} dev: true /chalk/2.4.2: @@ -1658,16 +1665,17 @@ packages: engines: {node: '>=10'} dev: true - /ci-info/3.3.2: - resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==} + /ci-info/3.4.0: + resolution: {integrity: sha512-t5QdPT5jq3o262DOQ8zA6E1tlH2upmUc4Hlvrbx1pGYJuiiHl7O7rvVNI+l8HTVhd/q3Qc9vqimkNk5yiXsAug==} dev: true /cjs-module-lexer/1.2.2: resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} dev: true - /cliui/7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + /cliui/8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 @@ -1772,8 +1780,8 @@ packages: esutils: 2.0.3 dev: true - /electron-to-chromium/1.4.228: - resolution: {integrity: sha512-XfDHCvou7CsDMlFwb0WZ1tWmW48e7Sn7VBRyPfZsZZila9esRsJl1trO+OqDNV97GggFSt0ISbWslKXfQkG//g==} + /electron-to-chromium/1.4.271: + resolution: {integrity: sha512-BCPBtK07xR1/uY2HFDtl3wK2De66AW4MSiPlLrnPNxKC/Qhccxd59W73654S3y6Rb/k3hmuGJOBnhjfoutetXA==} dev: true /emittery/0.10.2: @@ -1815,13 +1823,13 @@ packages: engines: {node: '>=10'} dev: true - /eslint-config-google/0.14.0_eslint@8.22.0: + /eslint-config-google/0.14.0_eslint@8.24.0: resolution: {integrity: sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==} engines: {node: '>=0.10.0'} peerDependencies: eslint: '>=5.16.0' dependencies: - eslint: 8.22.0 + eslint: 8.24.0 dev: true /eslint-plugin-no-floating-promise/1.0.2: @@ -1839,13 +1847,13 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.22.0: + /eslint-utils/3.0.0_eslint@8.24.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.22.0 + eslint: 8.24.0 eslint-visitor-keys: 2.1.0 dev: true @@ -1859,14 +1867,15 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.22.0: - resolution: {integrity: sha512-ci4t0sz6vSRKdmkOGmprBo6fmI4PrphDFMy5JEq/fNS0gQkJM3rLmrqcp8ipMcdobH3KtUP40KniAE9W19S4wA==} + /eslint/8.24.0: + resolution: {integrity: sha512-dWFaPhGhTAiPcCgm3f6LI2MBWbogMnTJzFBbhXVRQDJPkr9pGZvVjlVfXd+vyDcWPA2Ic9L2AXPIQM0+vk/cSQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint/eslintrc': 1.3.0 - '@humanwhocodes/config-array': 0.10.4 + '@eslint/eslintrc': 1.3.2 + '@humanwhocodes/config-array': 0.10.7 '@humanwhocodes/gitignore-to-minimatch': 1.0.2 + '@humanwhocodes/module-importer': 1.0.1 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -1874,15 +1883,14 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.22.0 + eslint-utils: 3.0.0_eslint@8.24.0 eslint-visitor-keys: 3.3.0 - espree: 9.3.3 + espree: 9.4.0 esquery: 1.4.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 find-up: 5.0.0 - functional-red-black-tree: 1.0.1 glob-parent: 6.0.2 globals: 13.17.0 globby: 11.1.0 @@ -1891,6 +1899,7 @@ packages: import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 + js-sdsl: 4.1.5 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 @@ -1902,13 +1911,12 @@ packages: strip-ansi: 6.0.1 strip-json-comments: 3.1.1 text-table: 0.2.0 - v8-compile-cache: 2.3.0 transitivePeerDependencies: - supports-color dev: true - /espree/9.3.3: - resolution: {integrity: sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==} + /espree/9.4.0: + resolution: {integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.8.0 @@ -1981,8 +1989,8 @@ packages: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: true - /fast-glob/3.2.11: - resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} + /fast-glob/3.2.12: + resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 @@ -2011,8 +2019,8 @@ packages: reusify: 1.0.4 dev: true - /fb-watchman/2.0.1: - resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==} + /fb-watchman/2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: bser: 2.1.1 dev: true @@ -2075,10 +2083,6 @@ packages: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} dev: true - /functional-red-black-tree/1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} - dev: true - /gensync/1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} @@ -2142,7 +2146,7 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.2.11 + fast-glob: 3.2.12 ignore: 5.2.0 merge2: 1.4.1 slash: 3.0.0 @@ -2275,8 +2279,8 @@ packages: resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.18.13 - '@babel/parser': 7.18.13 + '@babel/core': 7.19.3 + '@babel/parser': 7.19.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -2328,7 +2332,7 @@ packages: '@jest/expect': 28.1.3 '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.7.13 + '@types/node': 18.8.2 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -2368,7 +2372,7 @@ packages: jest-util: 28.1.3 jest-validate: 28.1.3 prompts: 2.4.2 - yargs: 17.5.1 + yargs: 17.6.0 transitivePeerDependencies: - '@types/node' - supports-color @@ -2387,12 +2391,12 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.19.3 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 - babel-jest: 28.1.3_@babel+core@7.18.13 + babel-jest: 28.1.3_@babel+core@7.19.3 chalk: 4.1.2 - ci-info: 3.3.2 + ci-info: 3.4.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 @@ -2413,7 +2417,7 @@ packages: - supports-color dev: true - /jest-config/28.1.3_@types+node@18.7.13: + /jest-config/28.1.3_@types+node@18.8.2: resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: @@ -2425,13 +2429,13 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.18.13 + '@babel/core': 7.19.3 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.7.13 - babel-jest: 28.1.3_@babel+core@7.18.13 + '@types/node': 18.8.2 + babel-jest: 28.1.3_@babel+core@7.19.3 chalk: 4.1.2 - ci-info: 3.3.2 + ci-info: 3.4.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 @@ -2487,7 +2491,7 @@ packages: '@jest/environment': 28.1.3 '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.7.13 + '@types/node': 18.8.2 jest-mock: 28.1.3 jest-util: 28.1.3 dev: true @@ -2503,9 +2507,9 @@ packages: dependencies: '@jest/types': 28.1.3 '@types/graceful-fs': 4.1.5 - '@types/node': 18.7.13 + '@types/node': 18.8.2 anymatch: 3.1.2 - fb-watchman: 2.0.1 + fb-watchman: 2.0.2 graceful-fs: 4.2.10 jest-regex-util: 28.0.2 jest-util: 28.1.3 @@ -2554,7 +2558,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 18.7.13 + '@types/node': 18.8.2 dev: true /jest-pnp-resolver/1.2.2_jest-resolve@28.1.3: @@ -2608,7 +2612,7 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.7.13 + '@types/node': 18.8.2 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.10 @@ -2662,17 +2666,17 @@ packages: resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.18.13 - '@babel/generator': 7.18.13 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.13 - '@babel/traverse': 7.18.13 - '@babel/types': 7.18.13 + '@babel/core': 7.19.3 + '@babel/generator': 7.19.3 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.3 + '@babel/traverse': 7.19.3 + '@babel/types': 7.19.3 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/babel__traverse': 7.18.0 - '@types/prettier': 2.7.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.13 + '@types/babel__traverse': 7.18.2 + '@types/prettier': 2.7.1 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.3 chalk: 4.1.2 expect: 28.1.3 graceful-fs: 4.2.10 @@ -2684,7 +2688,7 @@ packages: jest-util: 28.1.3 natural-compare: 1.4.0 pretty-format: 28.1.3 - semver: 7.3.7 + semver: 7.3.8 transitivePeerDependencies: - supports-color dev: true @@ -2694,9 +2698,9 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 18.7.13 + '@types/node': 18.8.2 chalk: 4.1.2 - ci-info: 3.3.2 + ci-info: 3.4.0 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: true @@ -2719,7 +2723,7 @@ packages: dependencies: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.7.13 + '@types/node': 18.8.2 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -2731,7 +2735,7 @@ packages: resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@types/node': 18.7.13 + '@types/node': 18.8.2 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -2756,6 +2760,10 @@ packages: - ts-node dev: true + /js-sdsl/4.1.5: + resolution: {integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==} + dev: true + /js-tokens/4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} dev: true @@ -3148,8 +3156,8 @@ packages: hasBin: true dev: true - /semver/7.3.7: - resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} + /semver/7.3.8: + resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} engines: {node: '>=10'} hasBin: true dependencies: @@ -3264,8 +3272,8 @@ packages: has-flag: 4.0.0 dev: true - /supports-hyperlinks/2.2.0: - resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==} + /supports-hyperlinks/2.3.0: + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 @@ -3282,7 +3290,7 @@ packages: engines: {node: '>=8'} dependencies: ansi-escapes: 4.3.2 - supports-hyperlinks: 2.2.0 + supports-hyperlinks: 2.3.0 dev: true /test-exclude/6.0.0: @@ -3349,13 +3357,13 @@ packages: engines: {node: '>=10'} dev: true - /update-browserslist-db/1.0.5_browserslist@4.21.3: - resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==} + /update-browserslist-db/1.0.9_browserslist@4.21.4: + resolution: {integrity: sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.3 + browserslist: 4.21.4 escalade: 3.1.1 picocolors: 1.0.0 dev: true @@ -3371,10 +3379,6 @@ packages: hasBin: true dev: false - /v8-compile-cache/2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - dev: true - /v8-to-istanbul/9.0.1: resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==} engines: {node: '>=10.12.0'} @@ -3433,8 +3437,8 @@ packages: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: true - /yaml/2.1.1: - resolution: {integrity: sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==} + /yaml/2.1.2: + resolution: {integrity: sha512-VSdf2/K3FqAetooKQv45Hcu6sA00aDgWZeGcG6V9IYJnVLTnb6988Tie79K5nx2vK7cEpf+yW8Oy+7iPAbdiHA==} engines: {node: '>= 14'} dev: false @@ -3443,11 +3447,11 @@ packages: engines: {node: '>=12'} dev: true - /yargs/17.5.1: - resolution: {integrity: sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==} + /yargs/17.6.0: + resolution: {integrity: sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==} engines: {node: '>=12'} dependencies: - cliui: 7.0.4 + cliui: 8.0.1 escalade: 3.1.1 get-caller-file: 2.0.5 require-directory: 2.1.1