diff --git a/.changeset/funny-feet-suffer.md b/.changeset/funny-feet-suffer.md new file mode 100644 index 000000000..9cfb95d82 --- /dev/null +++ b/.changeset/funny-feet-suffer.md @@ -0,0 +1,9 @@ +--- +'@celo/wallet-hsm-azure': patch +--- + +Bump all @azure packages to latest versions. These includes several major bumps which should not affect use in this library. For More details +* https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/identity/identity/CHANGELOG.md +* https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/identity/identity/BREAKING_CHANGES.md +* https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-secrets/CHANGELOG.md +* https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-keys/CHANGELOG.md diff --git a/package.json b/package.json index 0fe1659dc..6060a24a4 100644 --- a/package.json +++ b/package.json @@ -29,8 +29,7 @@ "beta-enter": "bash scripts/beta-mode.sh", "beta-exit": "yarn changeset pre exit && git commit -am 'Complete beta mode'", "version-and-reinstall": "yarn changeset version && yarn install --no-immutable", - "celocli": "yarn workspace @celo/celocli run --silent celocli", - "deprecate-sdks": "ts-node ./scripts/unpublish-sdks.ts" + "celocli": "yarn workspace @celo/celocli run --silent celocli" }, "workspaces": { "packages": [ @@ -43,7 +42,6 @@ "@changesets/changelog-github": "^0.5.0", "@types/jest": "^29.1.1", "@types/node": "18.7.16", - "@types/prompt": "1.1.1", "@types/semver": "7.3.8", "@typescript-eslint/eslint-plugin": "^6.17.0", "@typescript-eslint/parser": "^6.17.0", @@ -57,7 +55,6 @@ "jest": "^29.0.2", "prettier": "^2.7.1", "pretty-quick": "^2.0.1", - "prompt": "1.2.0", "semver": "7.5.2", "ts-jest": "^29.0.0", "ts-node": "^10.9.1", diff --git a/packages/sdk/wallets/wallet-hsm-azure/package.json b/packages/sdk/wallets/wallet-hsm-azure/package.json index ef6556e42..f9fa183c4 100644 --- a/packages/sdk/wallets/wallet-hsm-azure/package.json +++ b/packages/sdk/wallets/wallet-hsm-azure/package.json @@ -14,17 +14,17 @@ "sdk" ], "scripts": { - "build": "tsc -b .", - "clean": "tsc -b . --clean", + "build": "yarn run --top-level tsc -b .", + "clean": "yarn run --top-level tsc -b . --clean", "docs": "yarn run --top-level typedoc", "test": "yarn run --top-level jest --runInBand", "lint": "yarn run --top-level eslint -c .eslintrc.js ", "prepublishOnly": "yarn build" }, "dependencies": { - "@azure/identity": "^1.1.0", - "@azure/keyvault-keys": "^4.1.0", - "@azure/keyvault-secrets": "^4.1.0", + "@azure/identity": "^4.0.1", + "@azure/keyvault-keys": "^4.7.2", + "@azure/keyvault-secrets": "^4.7.0", "@celo/base": "^6.0.0", "@celo/connect": "^5.1.1", "@celo/utils": "^5.0.6", diff --git a/packages/sdk/wallets/wallet-hsm-azure/src/azure-key-vault-client.ts b/packages/sdk/wallets/wallet-hsm-azure/src/azure-key-vault-client.ts index 02d80182f..27c6ee903 100644 --- a/packages/sdk/wallets/wallet-hsm-azure/src/azure-key-vault-client.ts +++ b/packages/sdk/wallets/wallet-hsm-azure/src/azure-key-vault-client.ts @@ -89,11 +89,7 @@ export class AzureKeyVaultClient { } const signingAlgorithm = SIGNING_ALGORITHM_FOR[curve] const cryptographyClient = await this.getCryptographyClient(keyName) - const signResult = await cryptographyClient.sign( - // @ts-ignore-next-line (ECDSA256 is not included in the client enum but is valid) - signingAlgorithm, - new Uint8Array(message) - ) + const signResult = await cryptographyClient.sign(signingAlgorithm, new Uint8Array(message)) // The output of this will be a 64 byte array. // The first 32 are the value for R and the rest is S if ( diff --git a/scripts/deprecate-sdks.ts b/scripts/deprecate-sdks.ts deleted file mode 100644 index 094b6ec2f..000000000 --- a/scripts/deprecate-sdks.ts +++ /dev/null @@ -1,81 +0,0 @@ -import * as fs from 'fs' -import * as path from 'path' -import * as prompt from 'prompt' -import * as colors from 'colors' -import * as child_process from 'child_process' -import * as semver from 'semver' - -type PackageJson = { - name: string - version: string - dependencies: { [key: string]: string } - devDependencies: { [key: string]: string } -} - -const dontOpen = ['node_modules', 'src', 'lib'] - -;(async function () { - prompt.start() - const prompts = [ - { - name: 'version', - description: colors.green('Which sdk version do you want to deprecate?'), - }, - { - name: 'message', - description: colors.green('Reason for deprecation:'), - }, - ] - const { version, message } = (await prompt.get(prompts)) as { version: string; message: string } - if (!semver.valid(version)) { - console.error(colors.red('Invalid version')) - process.exit(1) - } - const sdkPackagePaths = findPackagePaths(path.join(__dirname, '..', 'packages', 'sdk')) - const sdkJsons: PackageJson[] = sdkPackagePaths.map((path) => - JSON.parse(fs.readFileSync(path).toString()) - ) - const otpPrompt = [ - { - name: 'newOtp', - description: colors.green(`Enter 2FA code`), - }, - ] - - let otp = '' - for (const sdkJson of sdkJsons) { - let { newOtp } = (await prompt.get(otpPrompt)) as { newOtp: string } - if (!newOtp) { - newOtp = otp - } else { - otp = newOtp - } - const buffer = child_process.execSync(`npm info ${sdkJson.name} versions --json`) - const versions = JSON.parse(buffer.toString()) as string[] - if (!versions.includes(version)) { - console.log(colors.yellow(`Version ${version} does not exist for ${sdkJson.name}.`)) - } else { - try { - child_process.execSync( - `npm deprecate ${sdkJson.name}@${version} '${message}' --otp ${newOtp}` - ) - console.log(colors.green(`${sdkJson.name}@${version} deprecated with message ${message}`)) - } catch (e) { - console.error(colors.red(`${sdkJson.name} failed to deprecate version ${version}.`)) - console.error(e) - } - } - } -})() - -function findPackagePaths(dir: string): string[] { - return fs.readdirSync(dir, { withFileTypes: true }).reduce((packageJsons, dirent) => { - if (dirent.isDirectory() && !dontOpen.includes(dirent.name)) { - return [...packageJsons, ...findPackagePaths(`${dir}/${dirent.name}`)] - } - if (dirent.name === 'package.json') { - return [...packageJsons, path.join(dir, dirent.name)] - } - return packageJsons - }, []) -} diff --git a/yarn.lock b/yarn.lock index c5a9225d7..18d9b5e14 100644 --- a/yarn.lock +++ b/yarn.lock @@ -122,539 +122,549 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-cloudfront@npm:^3.468.0": - version: 3.490.0 - resolution: "@aws-sdk/client-cloudfront@npm:3.490.0" +"@aws-sdk/client-cloudfront@npm:^3.501.0": + version: 3.501.0 + resolution: "@aws-sdk/client-cloudfront@npm:3.501.0" dependencies: "@aws-crypto/sha256-browser": "npm:3.0.0" "@aws-crypto/sha256-js": "npm:3.0.0" - "@aws-sdk/client-sts": "npm:3.490.0" - "@aws-sdk/core": "npm:3.490.0" - "@aws-sdk/credential-provider-node": "npm:3.490.0" - "@aws-sdk/middleware-host-header": "npm:3.489.0" - "@aws-sdk/middleware-logger": "npm:3.489.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.489.0" - "@aws-sdk/middleware-signing": "npm:3.489.0" - "@aws-sdk/middleware-user-agent": "npm:3.489.0" - "@aws-sdk/region-config-resolver": "npm:3.489.0" - "@aws-sdk/types": "npm:3.489.0" - "@aws-sdk/util-endpoints": "npm:3.489.0" - "@aws-sdk/util-user-agent-browser": "npm:3.489.0" - "@aws-sdk/util-user-agent-node": "npm:3.489.0" - "@aws-sdk/xml-builder": "npm:3.485.0" - "@smithy/config-resolver": "npm:^2.0.23" - "@smithy/core": "npm:^1.2.2" - "@smithy/fetch-http-handler": "npm:^2.3.2" - "@smithy/hash-node": "npm:^2.0.18" - "@smithy/invalid-dependency": "npm:^2.0.16" - "@smithy/middleware-content-length": "npm:^2.0.18" - "@smithy/middleware-endpoint": "npm:^2.3.0" - "@smithy/middleware-retry": "npm:^2.0.26" - "@smithy/middleware-serde": "npm:^2.0.16" - "@smithy/middleware-stack": "npm:^2.0.10" - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/node-http-handler": "npm:^2.2.2" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/smithy-client": "npm:^2.2.1" - "@smithy/types": "npm:^2.8.0" - "@smithy/url-parser": "npm:^2.0.16" - "@smithy/util-base64": "npm:^2.0.1" - "@smithy/util-body-length-browser": "npm:^2.0.1" - "@smithy/util-body-length-node": "npm:^2.1.0" - "@smithy/util-defaults-mode-browser": "npm:^2.0.24" - "@smithy/util-defaults-mode-node": "npm:^2.0.32" - "@smithy/util-endpoints": "npm:^1.0.8" - "@smithy/util-retry": "npm:^2.0.9" - "@smithy/util-stream": "npm:^2.0.24" - "@smithy/util-utf8": "npm:^2.0.2" - "@smithy/util-waiter": "npm:^2.0.16" + "@aws-sdk/client-sts": "npm:3.501.0" + "@aws-sdk/core": "npm:3.496.0" + "@aws-sdk/credential-provider-node": "npm:3.501.0" + "@aws-sdk/middleware-host-header": "npm:3.496.0" + "@aws-sdk/middleware-logger": "npm:3.496.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.496.0" + "@aws-sdk/middleware-signing": "npm:3.496.0" + "@aws-sdk/middleware-user-agent": "npm:3.496.0" + "@aws-sdk/region-config-resolver": "npm:3.496.0" + "@aws-sdk/types": "npm:3.496.0" + "@aws-sdk/util-endpoints": "npm:3.496.0" + "@aws-sdk/util-user-agent-browser": "npm:3.496.0" + "@aws-sdk/util-user-agent-node": "npm:3.496.0" + "@aws-sdk/xml-builder": "npm:3.496.0" + "@smithy/config-resolver": "npm:^2.1.1" + "@smithy/core": "npm:^1.3.1" + "@smithy/fetch-http-handler": "npm:^2.4.1" + "@smithy/hash-node": "npm:^2.1.1" + "@smithy/invalid-dependency": "npm:^2.1.1" + "@smithy/middleware-content-length": "npm:^2.1.1" + "@smithy/middleware-endpoint": "npm:^2.4.1" + "@smithy/middleware-retry": "npm:^2.1.1" + "@smithy/middleware-serde": "npm:^2.1.1" + "@smithy/middleware-stack": "npm:^2.1.1" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/node-http-handler": "npm:^2.3.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/smithy-client": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/url-parser": "npm:^2.1.1" + "@smithy/util-base64": "npm:^2.1.1" + "@smithy/util-body-length-browser": "npm:^2.1.1" + "@smithy/util-body-length-node": "npm:^2.2.1" + "@smithy/util-defaults-mode-browser": "npm:^2.1.1" + "@smithy/util-defaults-mode-node": "npm:^2.1.1" + "@smithy/util-endpoints": "npm:^1.1.1" + "@smithy/util-retry": "npm:^2.1.1" + "@smithy/util-stream": "npm:^2.1.1" + "@smithy/util-utf8": "npm:^2.1.1" + "@smithy/util-waiter": "npm:^2.1.1" fast-xml-parser: "npm:4.2.5" tslib: "npm:^2.5.0" - checksum: 47cbfdbdb4d54f9ab6dc11749000f2fd727eeb9cc354dbe607ded40e3b92f74f041c399eaecacbd46c9e24a6553030e0233b4e41e1a361ee9a20efb1972d4639 + checksum: 5749aff693630e265433867d8320a4abf53a99b0da5d7628a08a0fc7eb84c467f63d3efe5ab72003de13f471ee304af91cf8907a6b95e54d089c7ff00a755f24 languageName: node linkType: hard -"@aws-sdk/client-s3@npm:^3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/client-s3@npm:3.490.0" +"@aws-sdk/client-s3@npm:^3.496.0": + version: 3.501.0 + resolution: "@aws-sdk/client-s3@npm:3.501.0" dependencies: "@aws-crypto/sha1-browser": "npm:3.0.0" "@aws-crypto/sha256-browser": "npm:3.0.0" "@aws-crypto/sha256-js": "npm:3.0.0" - "@aws-sdk/client-sts": "npm:3.490.0" - "@aws-sdk/core": "npm:3.490.0" - "@aws-sdk/credential-provider-node": "npm:3.490.0" - "@aws-sdk/middleware-bucket-endpoint": "npm:3.489.0" - "@aws-sdk/middleware-expect-continue": "npm:3.489.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.489.0" - "@aws-sdk/middleware-host-header": "npm:3.489.0" - "@aws-sdk/middleware-location-constraint": "npm:3.489.0" - "@aws-sdk/middleware-logger": "npm:3.489.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.489.0" - "@aws-sdk/middleware-sdk-s3": "npm:3.489.0" - "@aws-sdk/middleware-signing": "npm:3.489.0" - "@aws-sdk/middleware-ssec": "npm:3.489.0" - "@aws-sdk/middleware-user-agent": "npm:3.489.0" - "@aws-sdk/region-config-resolver": "npm:3.489.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.489.0" - "@aws-sdk/types": "npm:3.489.0" - "@aws-sdk/util-endpoints": "npm:3.489.0" - "@aws-sdk/util-user-agent-browser": "npm:3.489.0" - "@aws-sdk/util-user-agent-node": "npm:3.489.0" - "@aws-sdk/xml-builder": "npm:3.485.0" - "@smithy/config-resolver": "npm:^2.0.23" - "@smithy/core": "npm:^1.2.2" - "@smithy/eventstream-serde-browser": "npm:^2.0.16" - "@smithy/eventstream-serde-config-resolver": "npm:^2.0.16" - "@smithy/eventstream-serde-node": "npm:^2.0.16" - "@smithy/fetch-http-handler": "npm:^2.3.2" - "@smithy/hash-blob-browser": "npm:^2.0.17" - "@smithy/hash-node": "npm:^2.0.18" - "@smithy/hash-stream-node": "npm:^2.0.18" - "@smithy/invalid-dependency": "npm:^2.0.16" - "@smithy/md5-js": "npm:^2.0.18" - "@smithy/middleware-content-length": "npm:^2.0.18" - "@smithy/middleware-endpoint": "npm:^2.3.0" - "@smithy/middleware-retry": "npm:^2.0.26" - "@smithy/middleware-serde": "npm:^2.0.16" - "@smithy/middleware-stack": "npm:^2.0.10" - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/node-http-handler": "npm:^2.2.2" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/smithy-client": "npm:^2.2.1" - "@smithy/types": "npm:^2.8.0" - "@smithy/url-parser": "npm:^2.0.16" - "@smithy/util-base64": "npm:^2.0.1" - "@smithy/util-body-length-browser": "npm:^2.0.1" - "@smithy/util-body-length-node": "npm:^2.1.0" - "@smithy/util-defaults-mode-browser": "npm:^2.0.24" - "@smithy/util-defaults-mode-node": "npm:^2.0.32" - "@smithy/util-endpoints": "npm:^1.0.8" - "@smithy/util-retry": "npm:^2.0.9" - "@smithy/util-stream": "npm:^2.0.24" - "@smithy/util-utf8": "npm:^2.0.2" - "@smithy/util-waiter": "npm:^2.0.16" + "@aws-sdk/client-sts": "npm:3.501.0" + "@aws-sdk/core": "npm:3.496.0" + "@aws-sdk/credential-provider-node": "npm:3.501.0" + "@aws-sdk/middleware-bucket-endpoint": "npm:3.496.0" + "@aws-sdk/middleware-expect-continue": "npm:3.496.0" + "@aws-sdk/middleware-flexible-checksums": "npm:3.496.0" + "@aws-sdk/middleware-host-header": "npm:3.496.0" + "@aws-sdk/middleware-location-constraint": "npm:3.496.0" + "@aws-sdk/middleware-logger": "npm:3.496.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.496.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.499.0" + "@aws-sdk/middleware-signing": "npm:3.496.0" + "@aws-sdk/middleware-ssec": "npm:3.498.0" + "@aws-sdk/middleware-user-agent": "npm:3.496.0" + "@aws-sdk/region-config-resolver": "npm:3.496.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.499.0" + "@aws-sdk/types": "npm:3.496.0" + "@aws-sdk/util-endpoints": "npm:3.496.0" + "@aws-sdk/util-user-agent-browser": "npm:3.496.0" + "@aws-sdk/util-user-agent-node": "npm:3.496.0" + "@aws-sdk/xml-builder": "npm:3.496.0" + "@smithy/config-resolver": "npm:^2.1.1" + "@smithy/core": "npm:^1.3.1" + "@smithy/eventstream-serde-browser": "npm:^2.1.1" + "@smithy/eventstream-serde-config-resolver": "npm:^2.1.1" + "@smithy/eventstream-serde-node": "npm:^2.1.1" + "@smithy/fetch-http-handler": "npm:^2.4.1" + "@smithy/hash-blob-browser": "npm:^2.1.1" + "@smithy/hash-node": "npm:^2.1.1" + "@smithy/hash-stream-node": "npm:^2.1.1" + "@smithy/invalid-dependency": "npm:^2.1.1" + "@smithy/md5-js": "npm:^2.1.1" + "@smithy/middleware-content-length": "npm:^2.1.1" + "@smithy/middleware-endpoint": "npm:^2.4.1" + "@smithy/middleware-retry": "npm:^2.1.1" + "@smithy/middleware-serde": "npm:^2.1.1" + "@smithy/middleware-stack": "npm:^2.1.1" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/node-http-handler": "npm:^2.3.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/smithy-client": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/url-parser": "npm:^2.1.1" + "@smithy/util-base64": "npm:^2.1.1" + "@smithy/util-body-length-browser": "npm:^2.1.1" + "@smithy/util-body-length-node": "npm:^2.2.1" + "@smithy/util-defaults-mode-browser": "npm:^2.1.1" + "@smithy/util-defaults-mode-node": "npm:^2.1.1" + "@smithy/util-endpoints": "npm:^1.1.1" + "@smithy/util-retry": "npm:^2.1.1" + "@smithy/util-stream": "npm:^2.1.1" + "@smithy/util-utf8": "npm:^2.1.1" + "@smithy/util-waiter": "npm:^2.1.1" fast-xml-parser: "npm:4.2.5" tslib: "npm:^2.5.0" - checksum: 1829e8178fd5c269d018086031f6c11b4e28d339b8eb7f12c0a974b02eb282fbea64510dfca0cac7682b488f5514b81316367c6e83ed89ae465572ac95a07f0b + checksum: d8a174716d90c46ed193ceaefee8a7c3049e5488ff0495265184243c01931bb6159bec97f37da7cd34e56d62029f5cb527b718e0098387033398c4de8cdeb4cf languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/client-sso@npm:3.490.0" +"@aws-sdk/client-sso@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/client-sso@npm:3.496.0" dependencies: "@aws-crypto/sha256-browser": "npm:3.0.0" "@aws-crypto/sha256-js": "npm:3.0.0" - "@aws-sdk/core": "npm:3.490.0" - "@aws-sdk/middleware-host-header": "npm:3.489.0" - "@aws-sdk/middleware-logger": "npm:3.489.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.489.0" - "@aws-sdk/middleware-user-agent": "npm:3.489.0" - "@aws-sdk/region-config-resolver": "npm:3.489.0" - "@aws-sdk/types": "npm:3.489.0" - "@aws-sdk/util-endpoints": "npm:3.489.0" - "@aws-sdk/util-user-agent-browser": "npm:3.489.0" - "@aws-sdk/util-user-agent-node": "npm:3.489.0" - "@smithy/config-resolver": "npm:^2.0.23" - "@smithy/core": "npm:^1.2.2" - "@smithy/fetch-http-handler": "npm:^2.3.2" - "@smithy/hash-node": "npm:^2.0.18" - "@smithy/invalid-dependency": "npm:^2.0.16" - "@smithy/middleware-content-length": "npm:^2.0.18" - "@smithy/middleware-endpoint": "npm:^2.3.0" - "@smithy/middleware-retry": "npm:^2.0.26" - "@smithy/middleware-serde": "npm:^2.0.16" - "@smithy/middleware-stack": "npm:^2.0.10" - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/node-http-handler": "npm:^2.2.2" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/smithy-client": "npm:^2.2.1" - "@smithy/types": "npm:^2.8.0" - "@smithy/url-parser": "npm:^2.0.16" - "@smithy/util-base64": "npm:^2.0.1" - "@smithy/util-body-length-browser": "npm:^2.0.1" - "@smithy/util-body-length-node": "npm:^2.1.0" - "@smithy/util-defaults-mode-browser": "npm:^2.0.24" - "@smithy/util-defaults-mode-node": "npm:^2.0.32" - "@smithy/util-endpoints": "npm:^1.0.8" - "@smithy/util-retry": "npm:^2.0.9" - "@smithy/util-utf8": "npm:^2.0.2" + "@aws-sdk/core": "npm:3.496.0" + "@aws-sdk/middleware-host-header": "npm:3.496.0" + "@aws-sdk/middleware-logger": "npm:3.496.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.496.0" + "@aws-sdk/middleware-user-agent": "npm:3.496.0" + "@aws-sdk/region-config-resolver": "npm:3.496.0" + "@aws-sdk/types": "npm:3.496.0" + "@aws-sdk/util-endpoints": "npm:3.496.0" + "@aws-sdk/util-user-agent-browser": "npm:3.496.0" + "@aws-sdk/util-user-agent-node": "npm:3.496.0" + "@smithy/config-resolver": "npm:^2.1.1" + "@smithy/core": "npm:^1.3.1" + "@smithy/fetch-http-handler": "npm:^2.4.1" + "@smithy/hash-node": "npm:^2.1.1" + "@smithy/invalid-dependency": "npm:^2.1.1" + "@smithy/middleware-content-length": "npm:^2.1.1" + "@smithy/middleware-endpoint": "npm:^2.4.1" + "@smithy/middleware-retry": "npm:^2.1.1" + "@smithy/middleware-serde": "npm:^2.1.1" + "@smithy/middleware-stack": "npm:^2.1.1" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/node-http-handler": "npm:^2.3.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/smithy-client": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/url-parser": "npm:^2.1.1" + "@smithy/util-base64": "npm:^2.1.1" + "@smithy/util-body-length-browser": "npm:^2.1.1" + "@smithy/util-body-length-node": "npm:^2.2.1" + "@smithy/util-defaults-mode-browser": "npm:^2.1.1" + "@smithy/util-defaults-mode-node": "npm:^2.1.1" + "@smithy/util-endpoints": "npm:^1.1.1" + "@smithy/util-retry": "npm:^2.1.1" + "@smithy/util-utf8": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 785147e3c255897345ac5b06daacdefd6f53952bef74d22b8a48906d5e320481eb2f52235db5364e194b3632360056b3a37124974398abcd7374f21ce9fea3a9 + checksum: 4544cca0dd1f5bf4cfbc82c4fdf5416a5472f8ed99b93ad57cc10e78e49294a797bc02fec5850ca91cd280e81e499c9e6cec10ecf6ba94844caa2eb06257ebda languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/client-sts@npm:3.490.0" +"@aws-sdk/client-sts@npm:3.501.0": + version: 3.501.0 + resolution: "@aws-sdk/client-sts@npm:3.501.0" dependencies: "@aws-crypto/sha256-browser": "npm:3.0.0" "@aws-crypto/sha256-js": "npm:3.0.0" - "@aws-sdk/core": "npm:3.490.0" - "@aws-sdk/credential-provider-node": "npm:3.490.0" - "@aws-sdk/middleware-host-header": "npm:3.489.0" - "@aws-sdk/middleware-logger": "npm:3.489.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.489.0" - "@aws-sdk/middleware-user-agent": "npm:3.489.0" - "@aws-sdk/region-config-resolver": "npm:3.489.0" - "@aws-sdk/types": "npm:3.489.0" - "@aws-sdk/util-endpoints": "npm:3.489.0" - "@aws-sdk/util-user-agent-browser": "npm:3.489.0" - "@aws-sdk/util-user-agent-node": "npm:3.489.0" - "@smithy/config-resolver": "npm:^2.0.23" - "@smithy/core": "npm:^1.2.2" - "@smithy/fetch-http-handler": "npm:^2.3.2" - "@smithy/hash-node": "npm:^2.0.18" - "@smithy/invalid-dependency": "npm:^2.0.16" - "@smithy/middleware-content-length": "npm:^2.0.18" - "@smithy/middleware-endpoint": "npm:^2.3.0" - "@smithy/middleware-retry": "npm:^2.0.26" - "@smithy/middleware-serde": "npm:^2.0.16" - "@smithy/middleware-stack": "npm:^2.0.10" - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/node-http-handler": "npm:^2.2.2" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/smithy-client": "npm:^2.2.1" - "@smithy/types": "npm:^2.8.0" - "@smithy/url-parser": "npm:^2.0.16" - "@smithy/util-base64": "npm:^2.0.1" - "@smithy/util-body-length-browser": "npm:^2.0.1" - "@smithy/util-body-length-node": "npm:^2.1.0" - "@smithy/util-defaults-mode-browser": "npm:^2.0.24" - "@smithy/util-defaults-mode-node": "npm:^2.0.32" - "@smithy/util-endpoints": "npm:^1.0.8" - "@smithy/util-middleware": "npm:^2.0.9" - "@smithy/util-retry": "npm:^2.0.9" - "@smithy/util-utf8": "npm:^2.0.2" + "@aws-sdk/core": "npm:3.496.0" + "@aws-sdk/credential-provider-node": "npm:3.501.0" + "@aws-sdk/middleware-host-header": "npm:3.496.0" + "@aws-sdk/middleware-logger": "npm:3.496.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.496.0" + "@aws-sdk/middleware-user-agent": "npm:3.496.0" + "@aws-sdk/region-config-resolver": "npm:3.496.0" + "@aws-sdk/types": "npm:3.496.0" + "@aws-sdk/util-endpoints": "npm:3.496.0" + "@aws-sdk/util-user-agent-browser": "npm:3.496.0" + "@aws-sdk/util-user-agent-node": "npm:3.496.0" + "@smithy/config-resolver": "npm:^2.1.1" + "@smithy/core": "npm:^1.3.1" + "@smithy/fetch-http-handler": "npm:^2.4.1" + "@smithy/hash-node": "npm:^2.1.1" + "@smithy/invalid-dependency": "npm:^2.1.1" + "@smithy/middleware-content-length": "npm:^2.1.1" + "@smithy/middleware-endpoint": "npm:^2.4.1" + "@smithy/middleware-retry": "npm:^2.1.1" + "@smithy/middleware-serde": "npm:^2.1.1" + "@smithy/middleware-stack": "npm:^2.1.1" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/node-http-handler": "npm:^2.3.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/smithy-client": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/url-parser": "npm:^2.1.1" + "@smithy/util-base64": "npm:^2.1.1" + "@smithy/util-body-length-browser": "npm:^2.1.1" + "@smithy/util-body-length-node": "npm:^2.2.1" + "@smithy/util-defaults-mode-browser": "npm:^2.1.1" + "@smithy/util-defaults-mode-node": "npm:^2.1.1" + "@smithy/util-endpoints": "npm:^1.1.1" + "@smithy/util-middleware": "npm:^2.1.1" + "@smithy/util-retry": "npm:^2.1.1" + "@smithy/util-utf8": "npm:^2.1.1" fast-xml-parser: "npm:4.2.5" tslib: "npm:^2.5.0" - checksum: 19d1b98694d600cac8a5518a2c05ab8d008c8eaaa25253397462d3d70e1a7c2ae7ab792b6814312536e0a2d140690d38ba166c1c28e82dd02daaa1173675f75c + checksum: 3e9078d836a01ef401fbd25d91df6c0d5752c0a74225ff560f01cda6b205df32ed67a37b87c23e3152485b4c9877b8c3e8508763887b7feedb01411cc0c3ba6b languageName: node linkType: hard -"@aws-sdk/core@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/core@npm:3.490.0" +"@aws-sdk/core@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/core@npm:3.496.0" dependencies: - "@smithy/core": "npm:^1.2.2" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/signature-v4": "npm:^2.0.0" - "@smithy/smithy-client": "npm:^2.2.1" - "@smithy/types": "npm:^2.8.0" + "@smithy/core": "npm:^1.3.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/signature-v4": "npm:^2.1.1" + "@smithy/smithy-client": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 3e81f378253be05efda42bd4c8d6d3a4969826f42ed48b904d760a4450f8affefe4f9c389bbdd975949831b0569e522db16d0bdfd829e9a6ddf98f08bc593f38 + checksum: 177d31f2f72d0c4ba184949d08aa6229307fd6fac9c404b442364381aa9d5a2fd955b01b9ccfe152e96741648232008d1ded75ca79b7cefbc051bda3ed1187ad languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.489.0" +"@aws-sdk/credential-provider-env@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/property-provider": "npm:^2.0.0" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 95ab96ee49a3ebf7957feb97987c2863c280c0daa67dcb5168874b8da3d807909e6b494405d5e42c33871a474db8f252ccd0d5eb2af55430a03d023eb9525c5c + checksum: 8b32ff1d3c1f4b40cba3d6d9047bde936bf57669ca37a50f3d6cc26b2736dd8498f8c0010927a3b6de64b4646201ef841760ce51acfaff87838a489365a37619 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.490.0" +"@aws-sdk/credential-provider-ini@npm:3.501.0": + version: 3.501.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.501.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.489.0" - "@aws-sdk/credential-provider-process": "npm:3.489.0" - "@aws-sdk/credential-provider-sso": "npm:3.490.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.489.0" - "@aws-sdk/types": "npm:3.489.0" - "@smithy/credential-provider-imds": "npm:^2.0.0" - "@smithy/property-provider": "npm:^2.0.0" - "@smithy/shared-ini-file-loader": "npm:^2.0.6" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/credential-provider-env": "npm:3.496.0" + "@aws-sdk/credential-provider-process": "npm:3.496.0" + "@aws-sdk/credential-provider-sso": "npm:3.501.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.496.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/credential-provider-imds": "npm:^2.2.1" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/shared-ini-file-loader": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 4e4cd2633a4ea64e88b353bf85e9efc569704d6be5eb48845cb5bfe378706fe0f942d62c958acabf050d6778576b69bcce9dffd74a75ef75c5b5e76b972c3998 + checksum: 85c603423076f55b8c9d9f3949e449f048a0bf3d89e86d6e1e5378c32fb398744dce19746fa4f339ec279ac0b0e78efe1edc4985759cd36d70a1b731a407bbf4 languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.490.0" +"@aws-sdk/credential-provider-node@npm:3.501.0": + version: 3.501.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.501.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.489.0" - "@aws-sdk/credential-provider-ini": "npm:3.490.0" - "@aws-sdk/credential-provider-process": "npm:3.489.0" - "@aws-sdk/credential-provider-sso": "npm:3.490.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.489.0" - "@aws-sdk/types": "npm:3.489.0" - "@smithy/credential-provider-imds": "npm:^2.0.0" - "@smithy/property-provider": "npm:^2.0.0" - "@smithy/shared-ini-file-loader": "npm:^2.0.6" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/credential-provider-env": "npm:3.496.0" + "@aws-sdk/credential-provider-ini": "npm:3.501.0" + "@aws-sdk/credential-provider-process": "npm:3.496.0" + "@aws-sdk/credential-provider-sso": "npm:3.501.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.496.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/credential-provider-imds": "npm:^2.2.1" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/shared-ini-file-loader": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 2f8141c3e17935d418e10b5b2df8eba4090dee40e53855bc5ddc5357ef80ef769df2e157002ebbce014946dcc1553200c2bd962f36602fe85e788423652d7e46 + checksum: 24921bc124a1eb6fe873bf17ff69ad30b67eeb1276a5ee146f9631e44372857973419d64b998683687e15e71be8014ad5fa0c9324c452b9c8871e42858538b05 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.489.0" +"@aws-sdk/credential-provider-process@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/property-provider": "npm:^2.0.0" - "@smithy/shared-ini-file-loader": "npm:^2.0.6" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/shared-ini-file-loader": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 42f4f5f21de3d29425ac32770707d908b613e7bfc4018ccfa1321a0d1f263364d4df6500268a2c7067b36aba7b1245481a3cd1db0bad7fc5f92a39616997b847 + checksum: 94e1816fe2e8c9dbb7a5ca694178bd6e139363248543941fac45566a9031153481ff2b6d2336ad6219451240181003973e06beca2da9a4021d688bbcc237b8ed languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.490.0" +"@aws-sdk/credential-provider-sso@npm:3.501.0": + version: 3.501.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.501.0" dependencies: - "@aws-sdk/client-sso": "npm:3.490.0" - "@aws-sdk/token-providers": "npm:3.489.0" - "@aws-sdk/types": "npm:3.489.0" - "@smithy/property-provider": "npm:^2.0.0" - "@smithy/shared-ini-file-loader": "npm:^2.0.6" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/client-sso": "npm:3.496.0" + "@aws-sdk/token-providers": "npm:3.501.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/shared-ini-file-loader": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: ef2eff8fbc6f3e7a4cd5dfd3eeb88d4ce4a3841813bd405a7f52ce650795a5bcf24363632aaa6fb7a88e980fdf4684c899bd74f83323a2f9c9b6d550746e7ef3 + checksum: b135dc73843cf52d4b637dff119f1dd9455e593698101b968f12280bcb26ff354cfb799550c297504be90ff670751c7aa32c02a01c48c5881cd4af8a1964b78e languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.489.0" +"@aws-sdk/credential-provider-web-identity@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/property-provider": "npm:^2.0.0" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 911bc3fd2830167218083a42743360e91a04fe06bfe25a6108d7be94a851848ec9563cf7287c504011c3d88307d80f3340c657271ecf356995f1b6e369040cc6 + checksum: a43c0bf19de371d602669188ce357fe0fd0def52396152ecc1067a4ae08e15822697f96630619052ae7cf96777a800a9d16fa9f63f645d07d10dc13492141c34 languageName: node linkType: hard -"@aws-sdk/middleware-bucket-endpoint@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.489.0" +"@aws-sdk/middleware-bucket-endpoint@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@aws-sdk/util-arn-parser": "npm:3.465.0" - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-config-provider": "npm:^2.1.0" + "@aws-sdk/types": "npm:3.496.0" + "@aws-sdk/util-arn-parser": "npm:3.495.0" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-config-provider": "npm:^2.2.1" tslib: "npm:^2.5.0" - checksum: 06a3c32eebd74774264eb086eaaa90914caa37f1d136f8ea0cdcbe81ffecd37e444a124101843e8595184757582077fcc78aba293be6871a3e2ae79ed40255f0 + checksum: 00b4facd3e350519a249fa619b21f182ca76a0dd076078da61999790f6994ea898c887f96556516c9d4fee4c5731a04abc9173b3e49e368f7eea3cb08ee781dd languageName: node linkType: hard -"@aws-sdk/middleware-expect-continue@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-expect-continue@npm:3.489.0" +"@aws-sdk/middleware-expect-continue@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/middleware-expect-continue@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 9df967db833614b90615a40a318043ea457d3b7211cc8a4f23c8a38766bc76966b26957b9acc1db787c0f10df86f7291c96a07ac255a147d50a7b55de4695a87 + checksum: 3fe6a8e132747cca354369d00a2ca8f07206f751726fa713dcd011163dfb9c4451def68ddc72fa19ead6ab34974ce9f8d103655963262f243a0aef4210a06edd languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.489.0" +"@aws-sdk/middleware-flexible-checksums@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.496.0" dependencies: "@aws-crypto/crc32": "npm:3.0.0" "@aws-crypto/crc32c": "npm:3.0.0" - "@aws-sdk/types": "npm:3.489.0" - "@smithy/is-array-buffer": "npm:^2.0.0" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-utf8": "npm:^2.0.2" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/is-array-buffer": "npm:^2.1.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-utf8": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: e4289a142603a0d96c51c1d0c107f25217d01066d864f218c11766b35aa765f31672414753b83dd2ae33c5e280177719cd0dfc5ddc7968e04ff1a13976371aee + checksum: 7a15e90b29febccbcfb5d90e49258bf7b4857511a41f1c60041c9df11b862d25b1b5c7089d0f88fe281041350400bfc8ce49c6e3b1d4669dbda357abc804944c languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.489.0" +"@aws-sdk/middleware-host-header@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 3f80f716911369f27be55b553e6be74f006039b8ae4888440ccb503c74e9b9dfcf49c98a0582e3f9c84e89de7dad4199fb054c27e56c24c33238c2ad13e46433 + checksum: 148547d93094a2c175d15c23436b4585bfc4676224be45c631e55cd045737277f9bb1079ad5060163a47d8b52a11b87a81fde58aac132a4ea091a58c45b31e2a languageName: node linkType: hard -"@aws-sdk/middleware-location-constraint@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-location-constraint@npm:3.489.0" +"@aws-sdk/middleware-location-constraint@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/middleware-location-constraint@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 2609d38fed15fbce6612ba7d0d8b0e834e9d2ba336c208760941d036e7b24af1169164c0bea562321c7a12656e6f2fc1d54e05984ba4e2e0413163f2b093c3cc + checksum: f293604f9aff7bc1a72a1dc5704ce1f66f54da2530ae6855776189ecc57f2f0507eb0eb7306875cdcb1a7fdcd817d0894a228d48f4a6c56f83529ae5567cefba languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-logger@npm:3.489.0" +"@aws-sdk/middleware-logger@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/middleware-logger@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 0bbf9d08c70cf1d87c67b3aed49ce1e0252b3c654a4e878648a56d05c59a4b5c23485acb6d9804cdfa9add9f88dcaefba249128d405a165ecf6a141e0217974f + checksum: 1a1845b6452716e9d4bde8fae3896acfaeec6c5a6902f415ed79141346ffa23d423aa4e2940f1c8d138e14e666d93158d3640ee4f4fb5a2485e5644147d07245 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.489.0" +"@aws-sdk/middleware-recursion-detection@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 91eb0b3b466478b27fd7f3e7f09a9596fe91fb50f1101ff2ed5b2d28e59e810797336a19917a5e9bd61ddf0aa52d210ff4273582bfc779910eece8a7ea0a8461 + checksum: cfc97c7084a4aa3f0da7fb58cc2eb41d4fb35ad7f9b485b359c5e21b427203ed237af66bbd3a5de9040b7a32ba17a8ec92be3c12e25672f1019bfa28895cb253 languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.489.0" - dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@aws-sdk/util-arn-parser": "npm:3.465.0" - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/signature-v4": "npm:^2.0.0" - "@smithy/smithy-client": "npm:^2.2.1" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-config-provider": "npm:^2.1.0" +"@aws-sdk/middleware-sdk-s3@npm:3.499.0": + version: 3.499.0 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.499.0" + dependencies: + "@aws-sdk/types": "npm:3.496.0" + "@aws-sdk/util-arn-parser": "npm:3.495.0" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/signature-v4": "npm:^2.1.1" + "@smithy/smithy-client": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-config-provider": "npm:^2.2.1" tslib: "npm:^2.5.0" - checksum: 72731d234ad47aabbd1dbd70ac367fcd9484524ef9c26b2e5d2f446670a3614a1414cc28cf2c4024bb048f3381d50fb37ce4fb190c71e6ada9a4f99caa51cf1e + checksum: fccfd29e224aa58ce8719eba1054ffbfb03756fb08de561456a035f3c31d4f3915652b55743fd513a989a4f8934cd3e7a29951f3ed480e82a0ef3e97ac97020c languageName: node linkType: hard -"@aws-sdk/middleware-signing@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-signing@npm:3.489.0" +"@aws-sdk/middleware-signing@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/middleware-signing@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/property-provider": "npm:^2.0.0" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/signature-v4": "npm:^2.0.0" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-middleware": "npm:^2.0.9" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/signature-v4": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-middleware": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 6fedba456932f5a80c1604a841c08c74de9a091db389f6561f0f475630c643e309e3ede5bb4c96002a7fc17ac30eb9b6a8dd12989235e50aefd316ab282975a1 + checksum: ddba07855b98d25bd93a57859fc8c03e8ab6048c53f942751accdc8d71ccf5c676e82bcf3de5e890665951aff90fc981a72a22b0f095a573563cc5f52b6824c4 languageName: node linkType: hard -"@aws-sdk/middleware-ssec@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-ssec@npm:3.489.0" +"@aws-sdk/middleware-ssec@npm:3.498.0": + version: 3.498.0 + resolution: "@aws-sdk/middleware-ssec@npm:3.498.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: e59d0153db00301a2843f8c029ade88ff81408f02625e4ad129b31f7f0c600c31c9430277b1a2f7b68e41db0524a82c2c8059883e91c078d5fc2aa938baad7f7 + checksum: 22c53fe93ca49843eb2ade5e55b8e5b10254227604a60b1637c46e553a0fa1acedf6b7d332397b7ff2675c8754284592b25744105155fad5803fcad105556888 languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.489.0" +"@aws-sdk/middleware-user-agent@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@aws-sdk/util-endpoints": "npm:3.489.0" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@aws-sdk/util-endpoints": "npm:3.496.0" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 51fc7a8a03db40ccef888725c4893951dd4114077851225e691b3144924046272c75a2263f8651723977e5aac9463ed6d470c0b6e13e1555cc59f2e6d4754329 + checksum: 4863d3f7678ecc936f5baf82c3bb9ece94b72fa20bdc0a1aab0c55afd843f3f02730c0c7cbec5e4b60661fb5e6db058d71e1dc2851d51b4f8011d2ee0df50e80 languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.489.0" +"@aws-sdk/region-config-resolver@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/region-config-resolver@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-config-provider": "npm:^2.1.0" - "@smithy/util-middleware": "npm:^2.0.9" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-config-provider": "npm:^2.2.1" + "@smithy/util-middleware": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 045a630c94638a05b60f8d4805ff0f0709c39201e44f4c3453c8fc1d6cf331a550bb5e74980cadc86436a67786b7fc34380a25503d720e160b74c1eff434abaa + checksum: 08858d55220f886da272e89acbe76136bb2815af06bb34f1156fe8b620200bfbe6d88535e0d98bcc7dbad8454dcadbb2291655028efb865356e157a7ba8f3a7f languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.489.0" +"@aws-sdk/signature-v4-multi-region@npm:3.499.0": + version: 3.499.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.499.0" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.489.0" - "@aws-sdk/types": "npm:3.489.0" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/signature-v4": "npm:^2.0.0" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.499.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/signature-v4": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 0b3dd6f6b66cf4e392b2ceb9656acdb8a55fccf2bb2045c4238aa237c73697bb1082bca252e7435f2830c72b7e31c2253f74daefb4edc69f1c168f72bad800d4 + checksum: 6fe18183544d81a42d7f021ea215d67c33c870b0e47973553366d673fe3432e2abdab32ec6a6f4be858bdca9daa6cffd49aef584b3b612d79df8123ca6e332e5 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/token-providers@npm:3.489.0" +"@aws-sdk/token-providers@npm:3.501.0": + version: 3.501.0 + resolution: "@aws-sdk/token-providers@npm:3.501.0" dependencies: "@aws-crypto/sha256-browser": "npm:3.0.0" "@aws-crypto/sha256-js": "npm:3.0.0" - "@aws-sdk/middleware-host-header": "npm:3.489.0" - "@aws-sdk/middleware-logger": "npm:3.489.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.489.0" - "@aws-sdk/middleware-user-agent": "npm:3.489.0" - "@aws-sdk/region-config-resolver": "npm:3.489.0" - "@aws-sdk/types": "npm:3.489.0" - "@aws-sdk/util-endpoints": "npm:3.489.0" - "@aws-sdk/util-user-agent-browser": "npm:3.489.0" - "@aws-sdk/util-user-agent-node": "npm:3.489.0" - "@smithy/config-resolver": "npm:^2.0.23" - "@smithy/fetch-http-handler": "npm:^2.3.2" - "@smithy/hash-node": "npm:^2.0.18" - "@smithy/invalid-dependency": "npm:^2.0.16" - "@smithy/middleware-content-length": "npm:^2.0.18" - "@smithy/middleware-endpoint": "npm:^2.3.0" - "@smithy/middleware-retry": "npm:^2.0.26" - "@smithy/middleware-serde": "npm:^2.0.16" - "@smithy/middleware-stack": "npm:^2.0.10" - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/node-http-handler": "npm:^2.2.2" - "@smithy/property-provider": "npm:^2.0.0" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/shared-ini-file-loader": "npm:^2.0.6" - "@smithy/smithy-client": "npm:^2.2.1" - "@smithy/types": "npm:^2.8.0" - "@smithy/url-parser": "npm:^2.0.16" - "@smithy/util-base64": "npm:^2.0.1" - "@smithy/util-body-length-browser": "npm:^2.0.1" - "@smithy/util-body-length-node": "npm:^2.1.0" - "@smithy/util-defaults-mode-browser": "npm:^2.0.24" - "@smithy/util-defaults-mode-node": "npm:^2.0.32" - "@smithy/util-endpoints": "npm:^1.0.8" - "@smithy/util-retry": "npm:^2.0.9" - "@smithy/util-utf8": "npm:^2.0.2" + "@aws-sdk/middleware-host-header": "npm:3.496.0" + "@aws-sdk/middleware-logger": "npm:3.496.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.496.0" + "@aws-sdk/middleware-user-agent": "npm:3.496.0" + "@aws-sdk/region-config-resolver": "npm:3.496.0" + "@aws-sdk/types": "npm:3.496.0" + "@aws-sdk/util-endpoints": "npm:3.496.0" + "@aws-sdk/util-user-agent-browser": "npm:3.496.0" + "@aws-sdk/util-user-agent-node": "npm:3.496.0" + "@smithy/config-resolver": "npm:^2.1.1" + "@smithy/fetch-http-handler": "npm:^2.4.1" + "@smithy/hash-node": "npm:^2.1.1" + "@smithy/invalid-dependency": "npm:^2.1.1" + "@smithy/middleware-content-length": "npm:^2.1.1" + "@smithy/middleware-endpoint": "npm:^2.4.1" + "@smithy/middleware-retry": "npm:^2.1.1" + "@smithy/middleware-serde": "npm:^2.1.1" + "@smithy/middleware-stack": "npm:^2.1.1" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/node-http-handler": "npm:^2.3.1" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/shared-ini-file-loader": "npm:^2.3.1" + "@smithy/smithy-client": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/url-parser": "npm:^2.1.1" + "@smithy/util-base64": "npm:^2.1.1" + "@smithy/util-body-length-browser": "npm:^2.1.1" + "@smithy/util-body-length-node": "npm:^2.2.1" + "@smithy/util-defaults-mode-browser": "npm:^2.1.1" + "@smithy/util-defaults-mode-node": "npm:^2.1.1" + "@smithy/util-endpoints": "npm:^1.1.1" + "@smithy/util-retry": "npm:^2.1.1" + "@smithy/util-utf8": "npm:^2.1.1" + tslib: "npm:^2.5.0" + checksum: 775459ec0c107bc7010072ff45521df8913ad70a4ff7284249bb15ad00e9fe135d1e0280805d389d583a7d32e0744621e1adb83dcdb59b2086ca42d316d67404 + languageName: node + linkType: hard + +"@aws-sdk/types@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/types@npm:3.496.0" + dependencies: + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: ee7a20eff71284f33a2f9ad9aeb0f8a3c2a40adbb8b88053a903a64115b3b802aa9a8f8de781b422d88340b8d6fe0ff6c255c1ae6792bde569fed817d7a8933c + checksum: 98eba036198e697e1820627ab182a649c987b7c18fc57d401fa80702e1a0b1c829ae2db9fbec09219951c4b65d6efa1828c164d9174affdd4276bb0742c48fd1 languageName: node linkType: hard -"@aws-sdk/types@npm:3.489.0, @aws-sdk/types@npm:^3.222.0": +"@aws-sdk/types@npm:^3.222.0": version: 3.489.0 resolution: "@aws-sdk/types@npm:3.489.0" dependencies: @@ -664,24 +674,24 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-arn-parser@npm:3.465.0": - version: 3.465.0 - resolution: "@aws-sdk/util-arn-parser@npm:3.465.0" +"@aws-sdk/util-arn-parser@npm:3.495.0": + version: 3.495.0 + resolution: "@aws-sdk/util-arn-parser@npm:3.495.0" dependencies: tslib: "npm:^2.5.0" - checksum: 0fb11c7e3d09901708f46cb0c885c2df7a8e8af70560484fa478bf9e2f8ee2aa6028c67187c0520eec6a92003bc43ae68c0ddc32db3af3e6d554b48080910af5 + checksum: 8f8574376e21ae90f2e5ee0ddf6516e8fb31ac433989f7015f0feed185b518108c7c65fc346c64924feb917daed6bfd7ede0c6cf047b64f09cff0125041162b6 languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/util-endpoints@npm:3.489.0" +"@aws-sdk/util-endpoints@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/util-endpoints@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-endpoints": "npm:^1.0.8" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-endpoints": "npm:^1.1.1" tslib: "npm:^2.5.0" - checksum: 68f921982f651be0254040633e602406648a6dafa9c6030a2e97b3a632a21866cb7bac098f3d2212aebf866032a26a9e9b8e53a6531c1773bc4a990d17399e39 + checksum: e916aad6ee123437c8b9f08ac80b584d05e5a235de5cbbca76db8fad7ce031f1b8b0861fc1fa6ae8e168e3c0d3986748a0c868158341a94a5024b06b1b8eef87 languageName: node linkType: hard @@ -694,32 +704,32 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.489.0" +"@aws-sdk/util-user-agent-browser@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/types": "npm:^2.9.1" bowser: "npm:^2.11.0" tslib: "npm:^2.5.0" - checksum: 2bb414b8d8a84f159bc8635796a5eafdeac7d325a8d4bec5e4c735b2f12029b54f750ec53b22f44f2a402aa2e3d7935572e3c77fc60ddaf776f5c34ac8707768 + checksum: 671b0b117795387108abedc3b8d1ec64f2eee9e4b808216ab70cb4a7529801e14c7f2ddfd814d94834a49fcdef6a8a08700849537d68d2d83c8b2cc75c0fadba languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.489.0" +"@aws-sdk/util-user-agent-node@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.496.0" dependencies: - "@aws-sdk/types": "npm:3.489.0" - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/types": "npm:^2.8.0" + "@aws-sdk/types": "npm:3.496.0" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" peerDependencies: aws-crt: ">=1.0.0" peerDependenciesMeta: aws-crt: optional: true - checksum: 95dc1e07b6b8b38b8d3bb922ae3619c4910dbc413a24bc5daca6ecaeab6891c2f3765ca85ed64a80532adfab09fc70e1d224c7679d763cecebe1ec48e4975bc8 + checksum: 21e18674ded51ffdf4537b434f77f405fc1b0767773c34ec4da8ccd7be68ae9c2ac5fdc7f4a80205dd3de55eab28b66d302b85fa45e975ae2c0c75f6ea8311ca languageName: node linkType: hard @@ -732,17 +742,17 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/xml-builder@npm:3.485.0": - version: 3.485.0 - resolution: "@aws-sdk/xml-builder@npm:3.485.0" +"@aws-sdk/xml-builder@npm:3.496.0": + version: 3.496.0 + resolution: "@aws-sdk/xml-builder@npm:3.496.0" dependencies: - "@smithy/types": "npm:^2.8.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 82bee30922662391703fca2ca1c735f6a91b031e3330091ca3fab774062742ac0dd88085feeebc2431e7d3c3d02f50bfa0d1bec7673e691dcd07ef03ff6bb880 + checksum: 9a5904a674f8e66be5528deac59f8d863bb4ea213a34e456c40b38d5bfdff3527d6ea79264ebdb4ab0b994d53b40f7bf93413308befd060fb07ab72e3708e103 languageName: node linkType: hard -"@azure/abort-controller@npm:^1.0.0, @azure/abort-controller@npm:^1.0.4": +"@azure/abort-controller@npm:^1.0.0, @azure/abort-controller@npm:^1.0.4, @azure/abort-controller@npm:^1.1.0": version: 1.1.0 resolution: "@azure/abort-controller@npm:1.1.0" dependencies: @@ -761,7 +771,18 @@ __metadata: languageName: node linkType: hard -"@azure/core-client@npm:^1.0.0, @azure/core-client@npm:^1.3.0, @azure/core-client@npm:^1.5.0": +"@azure/core-auth@npm:^1.5.0": + version: 1.5.0 + resolution: "@azure/core-auth@npm:1.5.0" + dependencies: + "@azure/abort-controller": "npm:^1.0.0" + "@azure/core-util": "npm:^1.1.0" + tslib: "npm:^2.2.0" + checksum: 07d93f672e9381c40c2c71ddbd9bbf9f0c6f617acd51ecf7d3481373076cb13921788512c5c5a8ad42ff3c1c9e610d56e0f6e02198924f4a3ec3b958b2dffc9f + languageName: node + linkType: hard + +"@azure/core-client@npm:^1.3.0, @azure/core-client@npm:^1.5.0": version: 1.7.2 resolution: "@azure/core-client@npm:1.7.2" dependencies: @@ -776,6 +797,21 @@ __metadata: languageName: node linkType: hard +"@azure/core-client@npm:^1.4.0": + version: 1.7.3 + resolution: "@azure/core-client@npm:1.7.3" + dependencies: + "@azure/abort-controller": "npm:^1.0.0" + "@azure/core-auth": "npm:^1.4.0" + "@azure/core-rest-pipeline": "npm:^1.9.1" + "@azure/core-tracing": "npm:^1.0.0" + "@azure/core-util": "npm:^1.0.0" + "@azure/logger": "npm:^1.0.0" + tslib: "npm:^2.2.0" + checksum: 8564d001b3edddb394b0a1a9590864748899aa512a4a12945cdc7e187dfd8a998acb98fd66ce3b830eda6e54f89107aea4f70aa7fd885b8bee1d9e14d4cb7150 + languageName: node + linkType: hard + "@azure/core-http-compat@npm:^1.3.0": version: 1.3.0 resolution: "@azure/core-http-compat@npm:1.3.0" @@ -825,13 +861,19 @@ __metadata: languageName: node linkType: hard -"@azure/core-tracing@npm:1.0.0-preview.12": - version: 1.0.0-preview.12 - resolution: "@azure/core-tracing@npm:1.0.0-preview.12" +"@azure/core-rest-pipeline@npm:^1.8.1": + version: 1.13.0 + resolution: "@azure/core-rest-pipeline@npm:1.13.0" dependencies: - "@opentelemetry/api": "npm:^1.0.0" + "@azure/abort-controller": "npm:^1.1.0" + "@azure/core-auth": "npm:^1.4.0" + "@azure/core-tracing": "npm:^1.0.1" + "@azure/core-util": "npm:^1.3.0" + "@azure/logger": "npm:^1.0.0" + http-proxy-agent: "npm:^5.0.0" + https-proxy-agent: "npm:^5.0.0" tslib: "npm:^2.2.0" - checksum: 0fdd6ae0adf5bdbd2062df71b6cd13db3cb9ccb28ad9c8beb6b0e07f9b843d29fa029fa2d4a0366d77d2b0901f2d1196a6d9ee1ca129a9d17fc78ce8b0d0bff7 + checksum: 3d8909395f58aab7a6a849350fc73fa7672b69a313df78c55a41574be2dae5cc3e8ae2da6fee9f45a63ec1cb5a5df86efc7926ef5e8fb94ae96a837d591d3d92 languageName: node linkType: hard @@ -854,37 +896,41 @@ __metadata: languageName: node linkType: hard -"@azure/identity@npm:^1.1.0": - version: 1.5.2 - resolution: "@azure/identity@npm:1.5.2" +"@azure/core-util@npm:^1.1.0": + version: 1.6.1 + resolution: "@azure/core-util@npm:1.6.1" dependencies: - "@azure/core-auth": "npm:^1.3.0" - "@azure/core-client": "npm:^1.0.0" + "@azure/abort-controller": "npm:^1.0.0" + tslib: "npm:^2.2.0" + checksum: e6baec71813ca7f759e35311bdbcc9ac474db66b480658231575366dac5a7e1653a26b2bd4a7637ddc561d8751117b76eed51ab129b7985e6d5f46561d116072 + languageName: node + linkType: hard + +"@azure/identity@npm:^4.0.1": + version: 4.0.1 + resolution: "@azure/identity@npm:4.0.1" + dependencies: + "@azure/abort-controller": "npm:^1.0.0" + "@azure/core-auth": "npm:^1.5.0" + "@azure/core-client": "npm:^1.4.0" "@azure/core-rest-pipeline": "npm:^1.1.0" - "@azure/core-tracing": "npm:1.0.0-preview.12" + "@azure/core-tracing": "npm:^1.0.0" + "@azure/core-util": "npm:^1.3.0" "@azure/logger": "npm:^1.0.0" - "@azure/msal-node": "npm:1.0.0-beta.6" - "@types/stoppable": "npm:^1.1.0" - axios: "npm:^0.21.1" + "@azure/msal-browser": "npm:^3.5.0" + "@azure/msal-node": "npm:^2.5.1" events: "npm:^3.0.0" jws: "npm:^4.0.0" - keytar: "npm:^7.3.0" - msal: "npm:^1.0.2" - open: "npm:^7.0.0" - qs: "npm:^6.7.0" + open: "npm:^8.0.0" stoppable: "npm:^1.1.0" - tslib: "npm:^2.0.0" - uuid: "npm:^8.3.0" - dependenciesMeta: - keytar: - optional: true - checksum: 54e9e6a9c8058b0b392d9359e53d8aee80b6a0ba760095e7744a2d978515bf5197f78906e75c35c04511395dac04302fa80ba0dd8045817e41e9f2c16b67659c + tslib: "npm:^2.2.0" + checksum: d0e70b07be06b28f151963037b8746ada03e84bbed5b8c4ba7e1dad00eab682b1b83d26c0293a692a04e49b57d68cfccdef40ec061d9f5631bf8c8567c09b6f4 languageName: node linkType: hard -"@azure/keyvault-keys@npm:^4.1.0": - version: 4.7.0 - resolution: "@azure/keyvault-keys@npm:4.7.0" +"@azure/keyvault-keys@npm:^4.7.2": + version: 4.7.2 + resolution: "@azure/keyvault-keys@npm:4.7.2" dependencies: "@azure/abort-controller": "npm:^1.0.0" "@azure/core-auth": "npm:^1.3.0" @@ -892,16 +938,16 @@ __metadata: "@azure/core-http-compat": "npm:^1.3.0" "@azure/core-lro": "npm:^2.2.0" "@azure/core-paging": "npm:^1.1.1" - "@azure/core-rest-pipeline": "npm:^1.8.0" + "@azure/core-rest-pipeline": "npm:^1.8.1" "@azure/core-tracing": "npm:^1.0.0" "@azure/core-util": "npm:^1.0.0" "@azure/logger": "npm:^1.0.0" tslib: "npm:^2.2.0" - checksum: bf338a8f723d726b48b44415248bfec4d1e23df4f19291607a5fcfa0d46ee9474640481806d2bab4cda0098b350b13cfd4aac0975cba57236c3c41bd9f74c7b6 + checksum: ad16e04111ed430211a308cdd13be0af9792d2f0138eac3256445d410ae7a0511272e1b1287864577ca4a93821d83cc10a421e878a3b4117fe3454d3a6d5f56b languageName: node linkType: hard -"@azure/keyvault-secrets@npm:^4.1.0": +"@azure/keyvault-secrets@npm:^4.7.0": version: 4.7.0 resolution: "@azure/keyvault-secrets@npm:4.7.0" dependencies: @@ -929,24 +975,30 @@ __metadata: languageName: node linkType: hard -"@azure/msal-common@npm:^4.0.0": - version: 4.5.1 - resolution: "@azure/msal-common@npm:4.5.1" +"@azure/msal-browser@npm:^3.5.0": + version: 3.7.1 + resolution: "@azure/msal-browser@npm:3.7.1" dependencies: - debug: "npm:^4.1.1" - checksum: 997b8609dc7e470040668d7d6d2c5e2287a468ceccbde77cb8e10f5f2e0c9ad8a26174841b65185f7c36bbc491fc29897d1211c978720de7b0ee6c9fc6180f47 + "@azure/msal-common": "npm:14.6.1" + checksum: b8a2da5e7e6f1b6a67232da9fc0e64d8cf416c79708b933457f1a500e470756571044cd8c43441006c61f3574e269d389095555732848770121836b77b4513c3 + languageName: node + linkType: hard + +"@azure/msal-common@npm:14.6.1": + version: 14.6.1 + resolution: "@azure/msal-common@npm:14.6.1" + checksum: b4127d98fcd83d89f158d720747d040589109238009b0473c5820347c6b6e0cd5b646adec7163f4340a521e0b22ca96234bcbba57081077d632efb6ca9e57698 languageName: node linkType: hard -"@azure/msal-node@npm:1.0.0-beta.6": - version: 1.0.0-beta.6 - resolution: "@azure/msal-node@npm:1.0.0-beta.6" +"@azure/msal-node@npm:^2.5.1": + version: 2.6.2 + resolution: "@azure/msal-node@npm:2.6.2" dependencies: - "@azure/msal-common": "npm:^4.0.0" - axios: "npm:^0.21.1" - jsonwebtoken: "npm:^8.5.1" + "@azure/msal-common": "npm:14.6.1" + jsonwebtoken: "npm:^9.0.0" uuid: "npm:^8.3.0" - checksum: 0a0bf6202077863a87a7bf888779b3e53e9a3164944a8ce98bdfac48123158de708b94ae5d612d138b075b55858b9eccf7f798ea01f51671646fb2690d392d9a + checksum: 20269beb732b490670db261613edaae2217ab5b72f8869b59084e748d68f17f4d334d7e8de89341ff90e402677b6235dd926d8c1e176be61cb583e27fbf52e9e languageName: node linkType: hard @@ -1942,9 +1994,9 @@ __metadata: version: 0.0.0-use.local resolution: "@celo/wallet-hsm-azure@workspace:packages/sdk/wallets/wallet-hsm-azure" dependencies: - "@azure/identity": "npm:^1.1.0" - "@azure/keyvault-keys": "npm:^4.1.0" - "@azure/keyvault-secrets": "npm:^4.1.0" + "@azure/identity": "npm:^4.0.1" + "@azure/keyvault-keys": "npm:^4.7.2" + "@azure/keyvault-secrets": "npm:^4.7.0" "@celo/base": "npm:^6.0.0" "@celo/connect": "npm:^5.1.1" "@celo/utils": "npm:^5.0.6" @@ -4174,7 +4226,7 @@ __metadata: languageName: node linkType: hard -"@oclif/core@npm:^3.10.2, @oclif/core@npm:^3.15.0, @oclif/core@npm:^3.16.0": +"@oclif/core@npm:^3.10.2, @oclif/core@npm:^3.16.0": version: 3.16.0 resolution: "@oclif/core@npm:3.16.0" dependencies: @@ -4278,16 +4330,7 @@ __metadata: languageName: node linkType: hard -"@oclif/plugin-help@npm:^6.0.9": - version: 6.0.9 - resolution: "@oclif/plugin-help@npm:6.0.9" - dependencies: - "@oclif/core": "npm:^3.15.0" - checksum: f765237cba9bb7bc56d0e350ec5b258c5b370eacbc9dd89104cd8fff2200b4de9c1aa38bcf615dbacf60700dbad788df7b06f2c2f98310de90ad2169f2d9f405 - languageName: node - linkType: hard - -"@oclif/plugin-not-found@npm:^3.0.8, @oclif/plugin-not-found@npm:^3.0.9": +"@oclif/plugin-not-found@npm:^3.0.9": version: 3.0.9 resolution: "@oclif/plugin-not-found@npm:3.0.9" dependencies: @@ -5747,385 +5790,385 @@ __metadata: languageName: node linkType: hard -"@smithy/abort-controller@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/abort-controller@npm:2.0.16" +"@smithy/abort-controller@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/abort-controller@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 3fa2db15cb247d63649ff95f676b4caf5ad311fc5103c432a9eb80ef3bafd1eaed688f926ae00f94e6965e959b6f52885eea29da367bc94b2d08df0f5cf5f778 + checksum: a35a94ed87980fb6c40ee44d2d6334fe6a0126de7192bd5d72aacb8caaa5580f92b3ce52609e55dc07c92ec0acf2df66fd9b314deb26538ff09c93f840b040c1 languageName: node linkType: hard -"@smithy/chunked-blob-reader-native@npm:^2.0.1": - version: 2.0.1 - resolution: "@smithy/chunked-blob-reader-native@npm:2.0.1" +"@smithy/chunked-blob-reader-native@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/chunked-blob-reader-native@npm:2.1.1" dependencies: - "@smithy/util-base64": "npm:^2.0.1" + "@smithy/util-base64": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 3e3e1a9004336ab6853efe024aee053ee63e833b5f5e812d877fd4c7be74d7f8123c0352d749de77713d1152cf390991814c01e42d1ee5e349cf6816789a3109 + checksum: 3e4bfc4afe794e98fd9f0f6d8fa7eceea5fa79c330c42eb96d27d74d81d2fb65d89482e705e20537c68042688aa53c3c7b08743900eb8c06567fd9ac4b2f6368 languageName: node linkType: hard -"@smithy/chunked-blob-reader@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/chunked-blob-reader@npm:2.0.0" +"@smithy/chunked-blob-reader@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/chunked-blob-reader@npm:2.1.1" dependencies: tslib: "npm:^2.5.0" - checksum: 3e35ce2bb2d8338f44b408958fd4b77054cb286b27730674a213d10b6ed84734889441d13dbdffb5f1971c61fe47c5f05703e5a93596ca0a6285937cd8b061cf + checksum: 130b8181184ed36f89e995870423b10e7730fe5f4ffc9ca3373e22a43f8195dbb5af230cae0bccd7b016d126796f742c3c44f51d21d08f178c541e767b71a9f4 languageName: node linkType: hard -"@smithy/config-resolver@npm:^2.0.23": - version: 2.0.23 - resolution: "@smithy/config-resolver@npm:2.0.23" +"@smithy/config-resolver@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/config-resolver@npm:2.1.1" dependencies: - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-config-provider": "npm:^2.1.0" - "@smithy/util-middleware": "npm:^2.0.9" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-config-provider": "npm:^2.2.1" + "@smithy/util-middleware": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: a590108883d6c56846e54b1e083484e7fb889d791121945b6508760d224c7f47fb78e6ae4cb927e73945d2854181bb33df7775fac95c3c0cb9ea9d3f27d95ed0 + checksum: eee4889ba8efd08d6d9e5b52360e2aebca03555a925a729269cbe83cb7a6a8d221c3e3382130382d8223aacdca6440fc05e56ae5e2c1805a41f8ae25d60fc732 languageName: node linkType: hard -"@smithy/core@npm:^1.2.2": - version: 1.2.2 - resolution: "@smithy/core@npm:1.2.2" - dependencies: - "@smithy/middleware-endpoint": "npm:^2.3.0" - "@smithy/middleware-retry": "npm:^2.0.26" - "@smithy/middleware-serde": "npm:^2.0.16" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/smithy-client": "npm:^2.2.1" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-middleware": "npm:^2.0.9" +"@smithy/core@npm:^1.3.1": + version: 1.3.1 + resolution: "@smithy/core@npm:1.3.1" + dependencies: + "@smithy/middleware-endpoint": "npm:^2.4.1" + "@smithy/middleware-retry": "npm:^2.1.1" + "@smithy/middleware-serde": "npm:^2.1.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/smithy-client": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-middleware": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 4a6ff42aa0951f3e877b396dfd9d7f9c8bf28aa389bc7d19cc99fa6b9fab2edac069fc3c89beefa933f760362e5772d01ee46b7eaa79748f388e7d570403f40c + checksum: 80b200f556fc608f1fc5254a3ae0958bbf0d92c8ad7b71da437b509a3013395c4fe83f0f289a54726088aa5af5c1c712f7a9a4833c7b46c0b4020732f6b1c581 languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^2.0.0, @smithy/credential-provider-imds@npm:^2.1.5": - version: 2.1.5 - resolution: "@smithy/credential-provider-imds@npm:2.1.5" +"@smithy/credential-provider-imds@npm:^2.2.1": + version: 2.2.1 + resolution: "@smithy/credential-provider-imds@npm:2.2.1" dependencies: - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/property-provider": "npm:^2.0.17" - "@smithy/types": "npm:^2.8.0" - "@smithy/url-parser": "npm:^2.0.16" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/url-parser": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 829d1c1c37fa68aa4e1802e95f3ebd7f6ed9a30334890dd1a34225503afcb8a20723540a6bf1e763840bdf170c183677160436458083bb1c9ecd55562f007868 + checksum: 2e6ff2d96dbc27d9a3020d58b70423205c92c5a16bf5879182d1713f20212f8d7f97a6bdc769b3b04ef43869f605a1b6f6c889f6fa2a134105065309ef833f77 languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/eventstream-codec@npm:2.0.16" +"@smithy/eventstream-codec@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/eventstream-codec@npm:2.1.1" dependencies: "@aws-crypto/crc32": "npm:3.0.0" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-hex-encoding": "npm:^2.0.0" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-hex-encoding": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: c0fe19690bcb5f14b869841a2bde859894286d7eb2538146a3d12e6d957f36394bb90f38642ed5d35a88c66a4766a384c5d9b0ed3f22ead1c8fef1ec1531989b + checksum: 54c5051acbb41552d9a1436ed658fe56c36a3be2558ddcae73d3b909d908cdf73c5fe16f62e62a6daff338b429c614b758e743c7a56be9cd5876d2c1204f5351 languageName: node linkType: hard -"@smithy/eventstream-serde-browser@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/eventstream-serde-browser@npm:2.0.16" +"@smithy/eventstream-serde-browser@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/eventstream-serde-browser@npm:2.1.1" dependencies: - "@smithy/eventstream-serde-universal": "npm:^2.0.16" - "@smithy/types": "npm:^2.8.0" + "@smithy/eventstream-serde-universal": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 7a8e5314a537e93f6a88df323d68ea5806cf659b07a586c86f359bf1b585f055de6d4d3f0c37d2e032d2aaa79015768c3f9d12a200ed49535d7134c72eed4cd2 + checksum: cbe857f80fb621bec432569b298785719f73dfe3a8e1763359a25a824463f35ad4355a87a04fe40475359a33d5ef1121785af3e01270ca684504f6fbf0edc02b languageName: node linkType: hard -"@smithy/eventstream-serde-config-resolver@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/eventstream-serde-config-resolver@npm:2.0.16" +"@smithy/eventstream-serde-config-resolver@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/eventstream-serde-config-resolver@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 4ed2af1665f7e2238d644e5c0e085def68915d9ca7f76a825cecc084fb242486c07b9fca3b1c5c1138beeba64090ef95d2b1c7f038dacd0eb80a87a1c81a752c + checksum: 17be0e4a1c71a1927fa8a3d3dcd5718d6307c728fbdf5a72bd80b17bdb11c46adf5acbb6c161822c795dff24f534e914b725c4ff53b606bdcc2b5b7ee47b01fa languageName: node linkType: hard -"@smithy/eventstream-serde-node@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/eventstream-serde-node@npm:2.0.16" +"@smithy/eventstream-serde-node@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/eventstream-serde-node@npm:2.1.1" dependencies: - "@smithy/eventstream-serde-universal": "npm:^2.0.16" - "@smithy/types": "npm:^2.8.0" + "@smithy/eventstream-serde-universal": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 83c21f0d38a70b5b76032341b04e62f1094d1f25cbcacc9c0875b3aa34e99d084ae6fd12ded0551bd040612be62b44ab2e5b1abc51e786319eb22c1c07f9d5a0 + checksum: 34224b488444bd5e095aa0b597a938dcab65e262dbe54056178f544bedec72ac78e3c1642287703efd9af1bd891c63db26dbcb1f394477e3b57f8160c8138fc7 languageName: node linkType: hard -"@smithy/eventstream-serde-universal@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/eventstream-serde-universal@npm:2.0.16" +"@smithy/eventstream-serde-universal@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/eventstream-serde-universal@npm:2.1.1" dependencies: - "@smithy/eventstream-codec": "npm:^2.0.16" - "@smithy/types": "npm:^2.8.0" + "@smithy/eventstream-codec": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: fa35f3074547dac19476432c1abfb62b0b6432fc8c733aa5d8fb032c603fc35cf06bcf8b0559826e3108a0b67ec7986948f512efd4974e154cdbf88fbe1ae6a5 + checksum: ca52356375c9e7c701f3cd96179095435a37593edc84f55b686264b85825759d84827550db2f4644eb594ddb7cad24c54174581235ef189847574de27d520805 languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^2.3.2": - version: 2.3.2 - resolution: "@smithy/fetch-http-handler@npm:2.3.2" +"@smithy/fetch-http-handler@npm:^2.4.1": + version: 2.4.1 + resolution: "@smithy/fetch-http-handler@npm:2.4.1" dependencies: - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/querystring-builder": "npm:^2.0.16" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-base64": "npm:^2.0.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/querystring-builder": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-base64": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 0f64f8398f7e583390fc2fb967e55df4bc404a0d961353723095b18a2d64e65c72e58c20c6b33e42b1a62085ad39d67e804a6a4920b62ca9591c14bfe2803d65 + checksum: a91e454b70966d9b51bc762f065938bab51c86e0ff519ec09085a166a5b8d582d54f0bce5803c4f7df245255e6a822f8d5c15d70041d8a6c6be7714b32e8d489 languageName: node linkType: hard -"@smithy/hash-blob-browser@npm:^2.0.17": - version: 2.0.17 - resolution: "@smithy/hash-blob-browser@npm:2.0.17" +"@smithy/hash-blob-browser@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/hash-blob-browser@npm:2.1.1" dependencies: - "@smithy/chunked-blob-reader": "npm:^2.0.0" - "@smithy/chunked-blob-reader-native": "npm:^2.0.1" - "@smithy/types": "npm:^2.8.0" + "@smithy/chunked-blob-reader": "npm:^2.1.1" + "@smithy/chunked-blob-reader-native": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: a277c4c51ba05e78247f4979d1dccea1138c8fad85a59b4f25373737c607876e2b5f2af8d6b88b71a199ef73467e29a7305fe585da324a3d91e76d47a58c51bc + checksum: ff2537783211c65b6c57e21d605931c6715317b6644cdf19fd0a36d489b4cf3730a8a6dbe1ccc8d54301a5d575f63c14757b926652e719fef2b984557e6ad072 languageName: node linkType: hard -"@smithy/hash-node@npm:^2.0.18": - version: 2.0.18 - resolution: "@smithy/hash-node@npm:2.0.18" +"@smithy/hash-node@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/hash-node@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" - "@smithy/util-buffer-from": "npm:^2.0.0" - "@smithy/util-utf8": "npm:^2.0.2" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-buffer-from": "npm:^2.1.1" + "@smithy/util-utf8": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: ca85ebafafe6719f57a9dd784209aaef60295de6167f07dfbd764072d2e36327dcca088551180175faf528b9e3045ab600696934170d3ea256a5967383a1c53f + checksum: 66514402c338a25d52b000cc8d740696367c4fc230af4bac2124bf7c8bfd9f955fdee1becdf290f21b1153596b7288400407850beeb92f78d0e1107f6454faa3 languageName: node linkType: hard -"@smithy/hash-stream-node@npm:^2.0.18": - version: 2.0.18 - resolution: "@smithy/hash-stream-node@npm:2.0.18" +"@smithy/hash-stream-node@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/hash-stream-node@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" - "@smithy/util-utf8": "npm:^2.0.2" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-utf8": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 7b6c2caeaf8fa6f1910a2b4c3aef7472073c9e1ec4446e8a4af16ff58f7cd8838e7c81ddf6f206c2a339988c9120f6cba4728fd008b6f47d00befd8f54e08751 + checksum: b5ea20b8446db158207ddcc0e6f70d3368bac42bad165d5e58053c69892472b0248099d6d4fb96ecec4b29a73a6a15074ebce528465438cac7516726c59a5ad9 languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/invalid-dependency@npm:2.0.16" +"@smithy/invalid-dependency@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/invalid-dependency@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 0055d593c20bc0e5d86836fee62c1fc41d236115c80b61d088186192c4438412136e7be5b1e8ab4207108882a51d337c7017574622e0f4837f538be4d1f8a74c + checksum: c0c6540a06df1b9ea24632a5a03b7a951a137f155484f11e0a82312814234c61f60e2c4d7c5ae2557af875a78c9fd6d5bc3d0ea17c7e873f2650ea6761c0c147 languageName: node linkType: hard -"@smithy/is-array-buffer@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/is-array-buffer@npm:2.0.0" +"@smithy/is-array-buffer@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/is-array-buffer@npm:2.1.1" dependencies: tslib: "npm:^2.5.0" - checksum: 30f8e51403c52f27b5a6777e565128f2c8523d6e9a99f2005cdcaa31b7401376de77fa4a245de4a397d605af1cead8bea3189f3e7450386888e1656fe728030d + checksum: 0724355a8fa1e61c9fb77c6e6965cc7eae0cd561f158b768f8d1c9a26254db149bb545b318cdd81ebe383bbe5f26f6197b144c69e812dfd55f512e511e0ccbd8 languageName: node linkType: hard -"@smithy/md5-js@npm:^2.0.18": - version: 2.0.18 - resolution: "@smithy/md5-js@npm:2.0.18" +"@smithy/md5-js@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/md5-js@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" - "@smithy/util-utf8": "npm:^2.0.2" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-utf8": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 471e7b3d4da5a72fd3632120df82feab20daecf5a67330b5e376bf5bbdd904c0d83768c8aea183e3287c1eea18de24ab9d145f6daf2b753139247a1b98c7fcd1 + checksum: 17a622b78263e230817a3793d2e89f602ce62be9badd4e855c39117cb21cb1c203173ff01f3c17b9424183a4b900a1693d7162fe4a6e5b0409480896d49e5e7e languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^2.0.18": - version: 2.0.18 - resolution: "@smithy/middleware-content-length@npm:2.0.18" +"@smithy/middleware-content-length@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/middleware-content-length@npm:2.1.1" dependencies: - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/types": "npm:^2.8.0" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 84414174ecadcfeba5236bc9ab5d69c0b85b25b2356a6fc20472b9e1aba6c33750cdc3bd0fa508609a0616a69b88c2591515cf22ad499e33a3b10bf37e590f68 + checksum: ca871efeafd7009609e73012e3a0ec1ab28418c93f839814c22063e7fcf033fc9f68dd7e3a005a188c91e02d745b699898c78d17d83bf7483cba705453ce7545 languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^2.3.0": - version: 2.3.0 - resolution: "@smithy/middleware-endpoint@npm:2.3.0" - dependencies: - "@smithy/middleware-serde": "npm:^2.0.16" - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/shared-ini-file-loader": "npm:^2.2.8" - "@smithy/types": "npm:^2.8.0" - "@smithy/url-parser": "npm:^2.0.16" - "@smithy/util-middleware": "npm:^2.0.9" +"@smithy/middleware-endpoint@npm:^2.4.1": + version: 2.4.1 + resolution: "@smithy/middleware-endpoint@npm:2.4.1" + dependencies: + "@smithy/middleware-serde": "npm:^2.1.1" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/shared-ini-file-loader": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/url-parser": "npm:^2.1.1" + "@smithy/util-middleware": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 6a4a40755647afa24334de39faac340541bbcef60ef51ef65e6912b81cc44a45aefe8c189dabc8df80fab7288503fcb90eeed456a7aa8e33abc081c290beb057 + checksum: 4c23f4aac71e67f4bc4fded8cc033bfb881468d7c57e13927f32c554b77b62170057219751e1648a065630ceb4816321548a28f4e4b05a934f95f615bcfce887 languageName: node linkType: hard -"@smithy/middleware-retry@npm:^2.0.26": - version: 2.0.26 - resolution: "@smithy/middleware-retry@npm:2.0.26" - dependencies: - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/service-error-classification": "npm:^2.0.9" - "@smithy/smithy-client": "npm:^2.2.1" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-middleware": "npm:^2.0.9" - "@smithy/util-retry": "npm:^2.0.9" +"@smithy/middleware-retry@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/middleware-retry@npm:2.1.1" + dependencies: + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/service-error-classification": "npm:^2.1.1" + "@smithy/smithy-client": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-middleware": "npm:^2.1.1" + "@smithy/util-retry": "npm:^2.1.1" tslib: "npm:^2.5.0" uuid: "npm:^8.3.2" - checksum: a615088a66392031cd6eac152bb7550232e5ec3bac53a7b19ac804a4e4fae128bcc3fbfc125bc3686585036056f5fee7520c986fa32b35071cfe69b786bec7a8 + checksum: da2b108c96c1d3c10b1b41f58be3ddf9358fc85547afb6f5a626145a48d06d1403ff0600b632db99879f4cedd7bcfd0dc25786d8d583c09b8369b408b7787a82 languageName: node linkType: hard -"@smithy/middleware-serde@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/middleware-serde@npm:2.0.16" +"@smithy/middleware-serde@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/middleware-serde@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: d3b2ffafd106d2c4d9f5166411f70c9691c05a56d599c0a7d53d879d3d083f1940523c7fb8db509e65b79d11f4056e37ce8e776b607d6b479ef7ea8bacbd648c + checksum: 84fd7a65e1e0c425607e09d06feaf4a7b7e99d22aba41dab057f3ccdc9b04095c8cb65090c4b2d1781ebce653cd997cd1d99cb5112595fa39abf1d0dd5cf86bd languageName: node linkType: hard -"@smithy/middleware-stack@npm:^2.0.10": - version: 2.0.10 - resolution: "@smithy/middleware-stack@npm:2.0.10" +"@smithy/middleware-stack@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/middleware-stack@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: fcd8236988295b39f03f93c083a449202b28f5b7d7cd3992e6c4cdad429b5e8fbb4fe31d6d749d7524c3780d521a6df2ae7157ee904174b423af39b74ef2d5c5 + checksum: 4de8e63047cc0d54e84a66b505f16b7bde4d2c91feb5f3aa9e5ad5429c1d71cc82876418e3d07dd942b4bdb4715e31f38efa0df966d02b5c01ba57fca7473f00 languageName: node linkType: hard -"@smithy/node-config-provider@npm:^2.1.9": - version: 2.1.9 - resolution: "@smithy/node-config-provider@npm:2.1.9" +"@smithy/node-config-provider@npm:^2.2.1": + version: 2.2.1 + resolution: "@smithy/node-config-provider@npm:2.2.1" dependencies: - "@smithy/property-provider": "npm:^2.0.17" - "@smithy/shared-ini-file-loader": "npm:^2.2.8" - "@smithy/types": "npm:^2.8.0" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/shared-ini-file-loader": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 32ef8d315096ddd728f00c3137a69c33438e27ea600ab9f0c720ad5535436357274399f0b5f6bc95fda02a0f30e77b6f8ef4ab7a5561b1723fcd1b422f88defa + checksum: 1122407d9bae623a2bc009acfd2ea3a2b047b5a455573fa811ba493d9b6b03093a8a77ff8277aa63289ea1ce14428e8ba3d89c21dd0b5629fc1f73d8ac6fd484 languageName: node linkType: hard -"@smithy/node-http-handler@npm:^2.2.2": - version: 2.2.2 - resolution: "@smithy/node-http-handler@npm:2.2.2" +"@smithy/node-http-handler@npm:^2.3.1": + version: 2.3.1 + resolution: "@smithy/node-http-handler@npm:2.3.1" dependencies: - "@smithy/abort-controller": "npm:^2.0.16" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/querystring-builder": "npm:^2.0.16" - "@smithy/types": "npm:^2.8.0" + "@smithy/abort-controller": "npm:^2.1.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/querystring-builder": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 545e306c879062753178d3671e4b68f5fe5384f14cab90a60567c680eecfbc8f2615966bf89d6d464f68b1d8d1606aaf7d548f03bfe8ef0d52869337afd30db2 + checksum: 84e8c44b2f948e77fc96f327c72c8f8309dce410c398effd1bbdc7fb9e6f24364bed10fa6bd9feb119e4cdea7e76d03e3f3347bc2346fb2bf6d1aea4e2f36324 languageName: node linkType: hard -"@smithy/property-provider@npm:^2.0.0, @smithy/property-provider@npm:^2.0.17": - version: 2.0.17 - resolution: "@smithy/property-provider@npm:2.0.17" +"@smithy/property-provider@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/property-provider@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: f25ec4888b335c4a8ac38a78ee2ac12119ba1b717c8905856faf4041d003173dfaf3a484c651c17454705a61059abff7873fba5618ae2e5adab9234da9079233 + checksum: 74392f4814da0d5546cfacf6598f2c00d619fa0ddad8b7fe75c9fa0e0fc4708905e8062e3a3409a46eaf952fb8d21830ce85e05c796e7ee17c5d989cd663e93e languageName: node linkType: hard -"@smithy/protocol-http@npm:^3.0.12": - version: 3.0.12 - resolution: "@smithy/protocol-http@npm:3.0.12" +"@smithy/protocol-http@npm:^3.1.1": + version: 3.1.1 + resolution: "@smithy/protocol-http@npm:3.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 4fd205f54c9b17900a5b5135fc14d4b692ace53aba7d37cda18c42620d4380c46c93702d573debb2716207588295cee86640e9760cb8ca64dfb58a69898d2959 + checksum: 4b3f0acfbab4690f0e00d649fc9a6ea2e14e4cbe9b6ffba9f09353c24979a52cea175ea56dd0c91542dbd966b82a20a529983f44f5e392a15e32c2b31661b262 languageName: node linkType: hard -"@smithy/querystring-builder@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/querystring-builder@npm:2.0.16" +"@smithy/querystring-builder@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/querystring-builder@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" - "@smithy/util-uri-escape": "npm:^2.0.0" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-uri-escape": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 8dc67e8e3e933fe2dfe3846b42ceba8c445a9054087ca37ec5b3cacd4c108dffcf17b87a89b5248528e8662603a719dcdac5c5951db8a02115a3eefa40ab0b89 + checksum: 110d65892d7df181480ea6a6f8b276d10bac87b6c9a05f787a357712c039b18124ebad462852aaad4573d4fb925f4315ec5fc0389b784e73b57bbb2b24726a57 languageName: node linkType: hard -"@smithy/querystring-parser@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/querystring-parser@npm:2.0.16" +"@smithy/querystring-parser@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/querystring-parser@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 0c0f34fcdea223f2b96dba9cbae083b785d4518407ebfe0491a2932318c21cae52c210ce9727848a6f2b58817bef3186baebc5aab5845a2e7edf2a7981843789 + checksum: f6bc4e1f6aa5b76440b9b0b249093594f28a4136fc499f698c916df30cb3fb25860cc2f94e3508f39828d95eb0bff644ee9a2e209dbf6c84bf9baf4409a7d03d languageName: node linkType: hard -"@smithy/service-error-classification@npm:^2.0.9": - version: 2.0.9 - resolution: "@smithy/service-error-classification@npm:2.0.9" +"@smithy/service-error-classification@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/service-error-classification@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" - checksum: 5eaa401dbb1ebf6e7f27c0f05d2720ce65f4520d14085f43ebfe3b6ae145ff04a3424fee11669e485cd221eb12b8c3f6a2dbf8dff804581d9705f767f1fd52d5 + "@smithy/types": "npm:^2.9.1" + checksum: bd25500eb5a60aee36b51d6b5a0850f135b332b4cf5f42e35e88610fa695eb8c2f2ad012e244fb82327501b2eb143900026ba9b47365e5b93b4db5a860bf7eb6 languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^2.0.6, @smithy/shared-ini-file-loader@npm:^2.2.8": - version: 2.2.8 - resolution: "@smithy/shared-ini-file-loader@npm:2.2.8" +"@smithy/shared-ini-file-loader@npm:^2.3.1": + version: 2.3.1 + resolution: "@smithy/shared-ini-file-loader@npm:2.3.1" dependencies: - "@smithy/types": "npm:^2.8.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: a6d9ee4e5929ce18447f9a852a83e86e73d5e119e059b47db1219753c54240130f0326ab11ef0fcf0b1c4c1cca6fdba0e9c8f28cb2dc2c9f55823fcd2621118e + checksum: 451570089499a97cc279001433def396fc510a5ee0d2ed687575fc33c2475d0f7a094338a4c5c609e6115d824a2f89eafa34894aff20d054c308571116d7dd5f languageName: node linkType: hard -"@smithy/signature-v4@npm:^2.0.0": - version: 2.0.19 - resolution: "@smithy/signature-v4@npm:2.0.19" - dependencies: - "@smithy/eventstream-codec": "npm:^2.0.16" - "@smithy/is-array-buffer": "npm:^2.0.0" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-hex-encoding": "npm:^2.0.0" - "@smithy/util-middleware": "npm:^2.0.9" - "@smithy/util-uri-escape": "npm:^2.0.0" - "@smithy/util-utf8": "npm:^2.0.2" +"@smithy/signature-v4@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/signature-v4@npm:2.1.1" + dependencies: + "@smithy/eventstream-codec": "npm:^2.1.1" + "@smithy/is-array-buffer": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-hex-encoding": "npm:^2.1.1" + "@smithy/util-middleware": "npm:^2.1.1" + "@smithy/util-uri-escape": "npm:^2.1.1" + "@smithy/util-utf8": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 58eff5c6fd7d2353e64df9cb01fc1fdf7078df052cf91c856fa1a2f8df9edfc4a35c751ee7c377d4c45e0dc4a940a94659e1e5ddd4f1ffdb11627da700499090 + checksum: 4e4b4ae098af8ed9c09c024b489ef0b15bef3492cbd932ac0f4e59c6de9bc0ea59269baa75b4fe1cc90fdb904161067653da80dc884ca9e4f880f2bed2c8edd4 languageName: node linkType: hard -"@smithy/smithy-client@npm:^2.2.1": - version: 2.2.1 - resolution: "@smithy/smithy-client@npm:2.2.1" +"@smithy/smithy-client@npm:^2.3.1": + version: 2.3.1 + resolution: "@smithy/smithy-client@npm:2.3.1" dependencies: - "@smithy/middleware-endpoint": "npm:^2.3.0" - "@smithy/middleware-stack": "npm:^2.0.10" - "@smithy/protocol-http": "npm:^3.0.12" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-stream": "npm:^2.0.24" + "@smithy/middleware-endpoint": "npm:^2.4.1" + "@smithy/middleware-stack": "npm:^2.1.1" + "@smithy/protocol-http": "npm:^3.1.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-stream": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 6e5d67d11e7c10db35604caf2dc4daa841f0b55b9f97092b34d819250737af8ca7a84a98870cbd249067c2aff478901b39dd16d9cecdaa9a53c1b2c58f8eb4f7 + checksum: c5841a915d95ae3b4402b670f566c2eb78b4e01360d3ec3a54147cb2997e04b489ae7f3c28aea65e1d9c26e40ef17ee915422e91855976cc85a67af97e235f22 languageName: node linkType: hard @@ -6138,176 +6181,185 @@ __metadata: languageName: node linkType: hard -"@smithy/url-parser@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/url-parser@npm:2.0.16" +"@smithy/types@npm:^2.9.1": + version: 2.9.1 + resolution: "@smithy/types@npm:2.9.1" dependencies: - "@smithy/querystring-parser": "npm:^2.0.16" - "@smithy/types": "npm:^2.8.0" tslib: "npm:^2.5.0" - checksum: f9d6e65ee1cdcfa0f816c1c2c71988fd07d6abcc8d04e10cc05a8bf2c848656befb983a0c8118020e08e60e9704ba45436f7061a8717da8ac1f640e79aef9f95 + checksum: 82156919fd78814cfe988b8e0eea9d086134583e5d55501429a2cde6f0c5465cdbc274816162cdce3c19f5c81f7d8aed6c5d2edde3a214250760fce794efa4c2 languageName: node linkType: hard -"@smithy/util-base64@npm:^2.0.1": - version: 2.0.1 - resolution: "@smithy/util-base64@npm:2.0.1" +"@smithy/url-parser@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/url-parser@npm:2.1.1" dependencies: - "@smithy/util-buffer-from": "npm:^2.0.0" + "@smithy/querystring-parser": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 6c71765396e7c36229f78b3ab7404d86390b4191350955b3af3ca6e3e42f67428801722706153f5593571be51f3b418843c49326d894cd4445eb9ed9a04844a7 + checksum: c6452f923176747fe49d16e449624b7e7436d789faa1d30b5f5b07fd31a66ff624a80210fe6420c840b01903efe2b2492da40dd92ec0818f0358f1c64e97c103 languageName: node linkType: hard -"@smithy/util-body-length-browser@npm:^2.0.1": - version: 2.0.1 - resolution: "@smithy/util-body-length-browser@npm:2.0.1" +"@smithy/util-base64@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-base64@npm:2.1.1" dependencies: + "@smithy/util-buffer-from": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: fdeea18772d7d4542d0192a5cf9b145f7626b8ab76be57bd7453cb73d84480bb12f83b982467b7e4dc015434e16c9e3f7ffdffa0e4ba1c4f6e570c0425bee3d1 + checksum: 379aa5f1f1c4700e561767f8534ff3921bbacc8bb8afd915a22e242641bbb282ea6b5e19944c64ae014af56a7434354fe26f4387f3c75c5e4d692217ec423582 languageName: node linkType: hard -"@smithy/util-body-length-node@npm:^2.1.0": - version: 2.1.0 - resolution: "@smithy/util-body-length-node@npm:2.1.0" +"@smithy/util-body-length-browser@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-body-length-browser@npm:2.1.1" dependencies: tslib: "npm:^2.5.0" - checksum: 1b2e3a99811b623d68e800a4c400a0a55eb9ce12f5cfa5b8509a0fdd805a279a931759ff55472983b37dcbcc58221a3bbfef86e5e4304af973a1e2c5f8651078 + checksum: 749b3fcc72f5df40be377e997537a90a67b75b304b14cf141112093a587916c670a6e52e1bb663fff74e8f31129884bc78779b00a2f3549f659815562a304e7a languageName: node linkType: hard -"@smithy/util-buffer-from@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/util-buffer-from@npm:2.0.0" +"@smithy/util-body-length-node@npm:^2.2.1": + version: 2.2.1 + resolution: "@smithy/util-body-length-node@npm:2.2.1" dependencies: - "@smithy/is-array-buffer": "npm:^2.0.0" tslib: "npm:^2.5.0" - checksum: 15326acdb8666ff8c342bfa23ace07ea6a1b7e849b118f5b28f0b93cd775e83c77fa53ab5b04b8f795798d316991042296c3c5522fb68c91df9e921d4c83e398 + checksum: 7e8df29ea7f2c08022c4339480ebde68173fb8147082123309253a6aa9a11055fde649483d743cfbac69f0789630e12e8e5afd276f55efe6a9b20bdf0ec6732d languageName: node linkType: hard -"@smithy/util-config-provider@npm:^2.1.0": - version: 2.1.0 - resolution: "@smithy/util-config-provider@npm:2.1.0" +"@smithy/util-buffer-from@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-buffer-from@npm:2.1.1" dependencies: + "@smithy/is-array-buffer": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 42f02104e24ae9deadf69b45c2ebee4b7a65a908b7ccfeb85bb6d1036032d36d1c044ff1eab25f43147dc02a15adb8a9f6517ed586a545d4a757985a1530d2ac + checksum: 5de4cf8b2d9c5347990be5791882947a509ba00a55ee67589f327e4852309dac5278248317929519f5a9d2aa5dc1c11cd54803db962287909e0322b7f73332bc languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^2.0.24": - version: 2.0.24 - resolution: "@smithy/util-defaults-mode-browser@npm:2.0.24" +"@smithy/util-config-provider@npm:^2.2.1": + version: 2.2.1 + resolution: "@smithy/util-config-provider@npm:2.2.1" dependencies: - "@smithy/property-provider": "npm:^2.0.17" - "@smithy/smithy-client": "npm:^2.2.1" - "@smithy/types": "npm:^2.8.0" - bowser: "npm:^2.11.0" tslib: "npm:^2.5.0" - checksum: b8cf6f1fecd5765d55557b7656b12a12e8468b9f343ef04dfdededba9d8894172933201ee922547ee5025ba1ca979db2071e6588f9b6df16797087ab065b5690 + checksum: bdca0bdf95cfaf67916e130356f80aa67555c1c423c0b98d283f2852782371b6fa09fee375a0a85eb43732a94733e0da7ad004b01f961dbd88f35a90258f0722 languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^2.0.32": - version: 2.0.32 - resolution: "@smithy/util-defaults-mode-node@npm:2.0.32" +"@smithy/util-defaults-mode-browser@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-defaults-mode-browser@npm:2.1.1" dependencies: - "@smithy/config-resolver": "npm:^2.0.23" - "@smithy/credential-provider-imds": "npm:^2.1.5" - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/property-provider": "npm:^2.0.17" - "@smithy/smithy-client": "npm:^2.2.1" - "@smithy/types": "npm:^2.8.0" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/smithy-client": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" + bowser: "npm:^2.11.0" tslib: "npm:^2.5.0" - checksum: d25372e50f91f593ca38c6d2cb722b0d87d6a0334de57d90fdd7364ef91fff227f19579a1734d6fcbd19a60563757ed9ff1afce4eeaf257d915876f832bed2fc + checksum: 945ad1472d79d6e85cff706bd7fab7b628b54e112fd1891013a0bc600ed38a762425e1e995d3b67f730434445d428f95165d3cb9cfd20bfcb416c9ca610c5b52 languageName: node linkType: hard -"@smithy/util-endpoints@npm:^1.0.8": - version: 1.0.8 - resolution: "@smithy/util-endpoints@npm:1.0.8" - dependencies: - "@smithy/node-config-provider": "npm:^2.1.9" - "@smithy/types": "npm:^2.8.0" +"@smithy/util-defaults-mode-node@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-defaults-mode-node@npm:2.1.1" + dependencies: + "@smithy/config-resolver": "npm:^2.1.1" + "@smithy/credential-provider-imds": "npm:^2.2.1" + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/property-provider": "npm:^2.1.1" + "@smithy/smithy-client": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 09cdf2178131c323bd69000af9c5ea93654036ccaa04d963f67d86c87bb84875b070b71a6e07e809c30fb7cf1629c9e538516a00cb103f55ba22f2b58ebe0e07 + checksum: f51ca2872b338eadcf685ca818372abe2ccd6d1d0599b302c46fc9700ef667b34290da1dc67f3f32442dcc7234b2f3729e91de20f3a5741a5af7aacac87d3d22 languageName: node linkType: hard -"@smithy/util-hex-encoding@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/util-hex-encoding@npm:2.0.0" +"@smithy/util-endpoints@npm:^1.1.1": + version: 1.1.1 + resolution: "@smithy/util-endpoints@npm:1.1.1" dependencies: + "@smithy/node-config-provider": "npm:^2.2.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 196b594d5e4a31fbc6a6ada8e1af307e0af55721685df70e20415733f46d6d2d6f7c52f9d2bf4512f0033cc1adb74f115c68025d9b7d7023342ef6f0514cee2a + checksum: 9119baa6f4a3ec89eb424b500ad0bfe635a91be57e1fcb8e5785f12c567d4b12a0310a686bbb44bfce4a5d64c810ef60c67d43d9d0cfaff3b128612e274dae1e languageName: node linkType: hard -"@smithy/util-middleware@npm:^2.0.9": - version: 2.0.9 - resolution: "@smithy/util-middleware@npm:2.0.9" +"@smithy/util-hex-encoding@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-hex-encoding@npm:2.1.1" dependencies: - "@smithy/types": "npm:^2.8.0" tslib: "npm:^2.5.0" - checksum: 1d379da341488d8d9af31d2b589b2875afa6c12a977934b135fdada30e75eace64fea3b673d090aeb8976d21a836cb146603e88c84b44b39a0547ea7eaa10c94 + checksum: df805a72f6d28fc081c4080f0a9c67f1fa3416f40b45f7491990b10b9ee044c3141fb1963bbdfe03cf599c5fe8bd3ed856f1463c6917a0d9f647bd1f37c72514 languageName: node linkType: hard -"@smithy/util-retry@npm:^2.0.9": - version: 2.0.9 - resolution: "@smithy/util-retry@npm:2.0.9" +"@smithy/util-middleware@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-middleware@npm:2.1.1" dependencies: - "@smithy/service-error-classification": "npm:^2.0.9" - "@smithy/types": "npm:^2.8.0" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: f28f1215cbe2c0eab5de65db21d13092b6b81ac807c08c491c36db9f68e8b1598e4f53f9536299aa770c115cd67bae8d10b1151ff7e253563bc1323ae9a9276e + checksum: 80067715932c4c90ed79ce10e7cf5906c43f604be7a893a735c66e1d464299fcd4493c7ad6a8f9124f40e509e9f9131dd87a22bd5ed7b7a0d8ab831ffd1fb491 languageName: node linkType: hard -"@smithy/util-stream@npm:^2.0.24": - version: 2.0.24 - resolution: "@smithy/util-stream@npm:2.0.24" +"@smithy/util-retry@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-retry@npm:2.1.1" dependencies: - "@smithy/fetch-http-handler": "npm:^2.3.2" - "@smithy/node-http-handler": "npm:^2.2.2" - "@smithy/types": "npm:^2.8.0" - "@smithy/util-base64": "npm:^2.0.1" - "@smithy/util-buffer-from": "npm:^2.0.0" - "@smithy/util-hex-encoding": "npm:^2.0.0" - "@smithy/util-utf8": "npm:^2.0.2" + "@smithy/service-error-classification": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: fa22edcd38385a5b261a678cef976eb24652f0a29f566e79a7503b04a44b698422ba975a27808e11e28f5a61d9d276dae3141cd9bb201ca7e618b74e15ae6a83 + checksum: b3b2d11cd0579345eb94a73ffd98e8e9cd9b9d64ad3dee12680589018d54f1ac032e72725e4100ff06c59914b8b491b12820fb1003775062d22bf2fa5430cae3 languageName: node linkType: hard -"@smithy/util-uri-escape@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/util-uri-escape@npm:2.0.0" +"@smithy/util-stream@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-stream@npm:2.1.1" + dependencies: + "@smithy/fetch-http-handler": "npm:^2.4.1" + "@smithy/node-http-handler": "npm:^2.3.1" + "@smithy/types": "npm:^2.9.1" + "@smithy/util-base64": "npm:^2.1.1" + "@smithy/util-buffer-from": "npm:^2.1.1" + "@smithy/util-hex-encoding": "npm:^2.1.1" + "@smithy/util-utf8": "npm:^2.1.1" + tslib: "npm:^2.5.0" + checksum: dc490f6eb5e22ff24afcb374d30002ed404b00044534565813dd567ea3f76d9f473052878a7d5f660c78690600f562c85b1deed549cd494b8531b911ac9b1a74 + languageName: node + linkType: hard + +"@smithy/util-uri-escape@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-uri-escape@npm:2.1.1" dependencies: tslib: "npm:^2.5.0" - checksum: 2f121d1fce9878e22fc5eaa0f8f4e47e967fce6d727b4283902d842842c7835b47de08e16b2c6fef389457a6edf2523274019fe511ede98ce0f38a11aea63bc2 + checksum: ca232b27b0ef25b3e3eca141454db1cc6d01b999b57b6b176c2af6578c38dbd1df5cb3d6984f0a30c55ea10b4e7d4e7758387da8ee674de91897b2c632a92995 languageName: node linkType: hard -"@smithy/util-utf8@npm:^2.0.2": - version: 2.0.2 - resolution: "@smithy/util-utf8@npm:2.0.2" +"@smithy/util-utf8@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-utf8@npm:2.1.1" dependencies: - "@smithy/util-buffer-from": "npm:^2.0.0" + "@smithy/util-buffer-from": "npm:^2.1.1" tslib: "npm:^2.5.0" - checksum: 9356200ac7ccef414cd924b4fd2bfeb1d0a2e7992b4c924f0328205ab9bb8c688bc4b5c271c237db90ea75fb448f32c1f76c6e8883c2f088ea0559737ea99d9d + checksum: 736992921e50c2c96234dc5eab305a30d29b1cfa29ce5ad2ec0e4b3f2e0dc3e2d29303bd1362bd20fa2e66c5fd494c558f4b1050b91ead5e13a479903bb9686f languageName: node linkType: hard -"@smithy/util-waiter@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/util-waiter@npm:2.0.16" +"@smithy/util-waiter@npm:^2.1.1": + version: 2.1.1 + resolution: "@smithy/util-waiter@npm:2.1.1" dependencies: - "@smithy/abort-controller": "npm:^2.0.16" - "@smithy/types": "npm:^2.8.0" + "@smithy/abort-controller": "npm:^2.1.1" + "@smithy/types": "npm:^2.9.1" tslib: "npm:^2.5.0" - checksum: 91cff83f1450cc761ec8a7b77c09af5ffa10619f40d560fd3f14633b63486dad2c274df7fc44fbd80c6e2ea4ec8b0514990ff8b989afa50467296e8cdada611b + checksum: 78aab62c873606478c2e8f0ebae9d02ee7dedd65ea1409aaf2f89ee7dd6cebafe249e6a8f1ed9d86d390bdd75dde068a49fb4bf69d62a3506ef2f36ed7bf62cf languageName: node linkType: hard @@ -7285,16 +7337,6 @@ __metadata: languageName: node linkType: hard -"@types/prompt@npm:1.1.1": - version: 1.1.1 - resolution: "@types/prompt@npm:1.1.1" - dependencies: - "@types/node": "npm:*" - "@types/revalidator": "npm:*" - checksum: 72f898750148dd51964712f26e3950d66ecec6d0539f20e95cfb8927f5dd83f5b4081f87f8768e02c823116d2a0b91f018985fed8d9776326ccaba41e630dfc1 - languageName: node - linkType: hard - "@types/prompts@npm:^1.1.1": version: 1.2.0 resolution: "@types/prompts@npm:1.2.0" @@ -7350,13 +7392,6 @@ __metadata: languageName: node linkType: hard -"@types/revalidator@npm:*": - version: 0.3.8 - resolution: "@types/revalidator@npm:0.3.8" - checksum: 2b0ee2bc9ba9356ce6e1eceef9eb4aae72d46b6b914d85cae46c675e9750d39dd9ea67ceace78421f547d4908bec7334a943b5b3b875fe33a8cec7bb435926fa - languageName: node - linkType: hard - "@types/rimraf@npm:3.0.2": version: 3.0.2 resolution: "@types/rimraf@npm:3.0.2" @@ -7421,15 +7456,6 @@ __metadata: languageName: node linkType: hard -"@types/stoppable@npm:^1.1.0": - version: 1.1.1 - resolution: "@types/stoppable@npm:1.1.1" - dependencies: - "@types/node": "npm:*" - checksum: 65617648686469e7130a9c00a018c03ddcfed8527a162e50352780e9a1acb7187d646389a596c2aef3a5566e3d649f68f0de7822be7349cafde5c1ec863c37c6 - languageName: node - linkType: hard - "@types/tedious@npm:^4.0.10": version: 4.0.13 resolution: "@types/tedious@npm:4.0.13" @@ -8285,15 +8311,6 @@ __metadata: languageName: node linkType: hard -"async@npm:^2.6.4": - version: 2.6.4 - resolution: "async@npm:2.6.4" - dependencies: - lodash: "npm:^4.17.14" - checksum: df8e52817d74677ab50c438d618633b9450aff26deb274da6dfedb8014130909482acdc7753bce9b72e6171ce9a9f6a92566c4ced34c3cb3714d57421d58ad27 - languageName: node - linkType: hard - "async@npm:^3.2.3": version: 3.2.4 resolution: "async@npm:3.2.4" @@ -8301,13 +8318,6 @@ __metadata: languageName: node linkType: hard -"async@npm:~0.9.0": - version: 0.9.2 - resolution: "async@npm:0.9.2" - checksum: 69b95732694464bc43da32ac26e39e5a193008a528a1d689b687bbc82355496c0270bbd9885ee8c3d0eeff794e2ac4ce93499a7bcbde5e010697d93d45254b61 - languageName: node - linkType: hard - "asynckit@npm:^0.4.0": version: 0.4.0 resolution: "asynckit@npm:0.4.0" @@ -8354,15 +8364,6 @@ __metadata: languageName: node linkType: hard -"axios@npm:^0.21.1": - version: 0.21.4 - resolution: "axios@npm:0.21.4" - dependencies: - follow-redirects: "npm:^1.14.0" - checksum: da644592cb6f8f9f8c64fdabd7e1396d6769d7a4c1ea5f8ae8beb5c2eb90a823e3a574352b0b934ac62edc762c0f52647753dc54f7d07279127a7e5c4cd20272 - languageName: node - linkType: hard - "babel-jest@npm:^29.7.0": version: 29.7.0 resolution: "babel-jest@npm:29.7.0" @@ -9339,7 +9340,6 @@ __metadata: "@changesets/cli": "npm:^2.26.2" "@types/jest": "npm:^29.1.1" "@types/node": "npm:18.7.16" - "@types/prompt": "npm:1.1.1" "@types/semver": "npm:7.3.8" "@typescript-eslint/eslint-plugin": "npm:^6.17.0" "@typescript-eslint/parser": "npm:^6.17.0" @@ -9353,7 +9353,6 @@ __metadata: jest: "npm:^29.0.2" prettier: "npm:^2.7.1" pretty-quick: "npm:^2.0.1" - prompt: "npm:1.2.0" semver: "npm:7.5.2" ts-jest: "npm:^29.0.0" ts-node: "npm:^10.9.1" @@ -9874,14 +9873,14 @@ __metadata: languageName: node linkType: hard -"colors@npm:1.0.3, colors@npm:1.0.x": +"colors@npm:1.0.3": version: 1.0.3 resolution: "colors@npm:1.0.3" checksum: 8d81835f217ffca6de6665c8dd9ed132c562d108d4ba842d638c7cb5f8127cff47cb1b54c6bbea49e22eaa7b56caee6b85278dde9c2564f8a0eaef161e028ae0 languageName: node linkType: hard -"colors@npm:1.4.0, colors@npm:^1.0.3, colors@npm:^1.1.2": +"colors@npm:1.4.0, colors@npm:^1.0.3": version: 1.4.0 resolution: "colors@npm:1.4.0" checksum: 90b2d5465159813a3983ea72ca8cff75f784824ad70f2cc2b32c233e95bcfbcda101ebc6d6766bc50f57263792629bfb4f1f8a4dfbd1d240f229fc7f69b785fc @@ -10282,13 +10281,6 @@ __metadata: languageName: node linkType: hard -"cycle@npm:1.0.x": - version: 1.0.3 - resolution: "cycle@npm:1.0.3" - checksum: b9f131094fb832a8c4ba18c6d2dc9c87fc80d3242847a45f0a5f70911b2acab68abc1c25eb23e5155fcf2135a27d8fcc3635556745b03b488c4f360cfbc352df - languageName: node - linkType: hard - "d@npm:1, d@npm:^1.0.1": version: 1.0.1 resolution: "d@npm:1.0.1" @@ -10475,6 +10467,13 @@ __metadata: languageName: node linkType: hard +"define-lazy-prop@npm:^2.0.0": + version: 2.0.0 + resolution: "define-lazy-prop@npm:2.0.0" + checksum: 0115fdb065e0490918ba271d7339c42453d209d4cb619dfe635870d906731eff3e1ade8028bb461ea27ce8264ec5e22c6980612d332895977e89c1bbc80fcee2 + languageName: node + linkType: hard + "define-properties@npm:^1.1.3, define-properties@npm:^1.1.4, define-properties@npm:^1.2.0": version: 1.2.0 resolution: "define-properties@npm:1.2.0" @@ -11710,13 +11709,6 @@ __metadata: languageName: node linkType: hard -"eyes@npm:0.1.x": - version: 0.1.8 - resolution: "eyes@npm:0.1.8" - checksum: 58480c1f4c8e80ae9d4147afa0e0cc3403e5a3d1fa9e0c17dd8418f87273762c40ab035919ed407f6ed0992086495b93ff7163eb2a1027f58ae70e3c847d6c08 - languageName: node - linkType: hard - "fast-check@npm:3.1.1": version: 3.1.1 resolution: "fast-check@npm:3.1.1" @@ -12019,16 +12011,6 @@ __metadata: languageName: node linkType: hard -"follow-redirects@npm:^1.14.0": - version: 1.15.4 - resolution: "follow-redirects@npm:1.15.4" - peerDependenciesMeta: - debug: - optional: true - checksum: 2e8f5f259a6b02dfa8dc199e08431848a7c3beed32eb4c19945966164a52c89f07b86c3afcc32ebe4279cf0a960520e45a63013d6350309c5ec90133c5d9351a - languageName: node - linkType: hard - "for-each@npm:^0.3.3": version: 0.3.3 resolution: "for-each@npm:0.3.3" @@ -13617,7 +13599,7 @@ __metadata: languageName: node linkType: hard -"is-docker@npm:^2.0.0": +"is-docker@npm:^2.0.0, is-docker@npm:^2.1.1": version: 2.2.1 resolution: "is-docker@npm:2.2.1" bin: @@ -13920,7 +13902,7 @@ __metadata: languageName: node linkType: hard -"is-wsl@npm:^2.1.1, is-wsl@npm:^2.2.0": +"is-wsl@npm:^2.2.0": version: 2.2.0 resolution: "is-wsl@npm:2.2.0" dependencies: @@ -13980,7 +13962,7 @@ __metadata: languageName: node linkType: hard -"isstream@npm:0.1.x, isstream@npm:~0.1.2": +"isstream@npm:~0.1.2": version: 0.1.2 resolution: "isstream@npm:0.1.2" checksum: 22d9c181015226d4534a227539256897bbbcb7edd1066ca4fc4d3a06dbd976325dfdd16b3983c7d236a89f256805c1a685a772e0364e98873d3819b064ad35a1 @@ -14821,9 +14803,9 @@ __metadata: languageName: node linkType: hard -"jsonwebtoken@npm:^8.5.1": - version: 8.5.1 - resolution: "jsonwebtoken@npm:8.5.1" +"jsonwebtoken@npm:^9.0.0": + version: 9.0.2 + resolution: "jsonwebtoken@npm:9.0.2" dependencies: jws: "npm:^3.2.2" lodash.includes: "npm:^4.3.0" @@ -14834,8 +14816,8 @@ __metadata: lodash.isstring: "npm:^4.0.1" lodash.once: "npm:^4.0.0" ms: "npm:^2.1.1" - semver: "npm:^5.6.0" - checksum: a7b52ea570f70bea183ceca970c003f223d9d3425d72498002e9775485c7584bfa3751d1c7291dbb59738074cba288effe73591b87bec5d467622ab3a156fdb6 + semver: "npm:^7.5.4" + checksum: 6e9b6d879cec2b27f2f3a88a0c0973edc7ba956a5d9356b2626c4fddfda969e34a3832deaf79c3e1c6c9a525bc2c4f2c2447fa477f8ac660f0017c31a59ae96b languageName: node linkType: hard @@ -14938,17 +14920,6 @@ __metadata: languageName: node linkType: hard -"keytar@npm:^7.3.0": - version: 7.9.0 - resolution: "keytar@npm:7.9.0" - dependencies: - node-addon-api: "npm:^4.3.0" - node-gyp: "npm:latest" - prebuild-install: "npm:^7.0.1" - checksum: 904795bc304f8ad89b80f915c869a941a383312b58584212a199473d18647035cfda92a9c53e6c53bf13ea0fed23037c9597eb418a5c71ee9454f140f026fac9 - languageName: node - linkType: hard - "keyv@npm:^4.0.0": version: 4.5.2 resolution: "keyv@npm:4.5.2" @@ -16200,15 +16171,6 @@ __metadata: languageName: node linkType: hard -"msal@npm:^1.0.2": - version: 1.4.17 - resolution: "msal@npm:1.4.17" - dependencies: - tslib: "npm:^1.9.3" - checksum: 5a79297e624884825de87ff1de70e6ce7b408f79c79de6b7be84a7769f5f11e099abd8af6aa90d6e9035a11bd6c585c46c67ea0eb5a219f52250145167635be8 - languageName: node - linkType: hard - "multibase@npm:^0.7.0": version: 0.7.0 resolution: "multibase@npm:0.7.0" @@ -16285,7 +16247,7 @@ __metadata: languageName: node linkType: hard -"mute-stream@npm:0.0.8, mute-stream@npm:~0.0.4": +"mute-stream@npm:0.0.8": version: 0.0.8 resolution: "mute-stream@npm:0.0.8" checksum: a2d2e79dde87e3424ffc8c334472c7f3d17b072137734ca46e6f221131f1b014201cc593b69a38062e974fb2394d3d1cb4349f80f012bbf8b8ac1b28033e515f @@ -16444,7 +16406,7 @@ __metadata: languageName: node linkType: hard -"node-addon-api@npm:^4.2.0, node-addon-api@npm:^4.3.0": +"node-addon-api@npm:^4.2.0": version: 4.3.0 resolution: "node-addon-api@npm:4.3.0" dependencies: @@ -17257,14 +17219,14 @@ __metadata: linkType: hard "oclif@npm:^4.3.4": - version: 4.3.4 - resolution: "oclif@npm:4.3.4" + version: 4.4.2 + resolution: "oclif@npm:4.4.2" dependencies: - "@aws-sdk/client-cloudfront": "npm:^3.468.0" - "@aws-sdk/client-s3": "npm:^3.490.0" + "@aws-sdk/client-cloudfront": "npm:^3.501.0" + "@aws-sdk/client-s3": "npm:^3.496.0" "@oclif/core": "npm:^3.18.1" - "@oclif/plugin-help": "npm:^6.0.9" - "@oclif/plugin-not-found": "npm:^3.0.8" + "@oclif/plugin-help": "npm:^6.0.12" + "@oclif/plugin-not-found": "npm:^3.0.9" "@oclif/plugin-warn-if-update-available": "npm:^3.0.9" async-retry: "npm:^1.3.3" change-case: "npm:^4" @@ -17281,7 +17243,7 @@ __metadata: yeoman-generator: "npm:^5.8.0" bin: oclif: bin/run.js - checksum: 3ca293d9a330abbbfc9ea34d7fc20b97fd3b0ab403a422826d49e4b78602101a8c3fb00f0013e5a11fe08a391f62028acdd24103aa7f8b5de7dd0f7d10f536f8 + checksum: f0638750bebe9935449ebe84d9e4d58de8812e84530b858c5e4197931782035e780f7f67fc9884f3ce32919e55a4f1342d0eb3505359bd828ce0fd66e5988785 languageName: node linkType: hard @@ -17312,13 +17274,14 @@ __metadata: languageName: node linkType: hard -"open@npm:^7.0.0": - version: 7.4.2 - resolution: "open@npm:7.4.2" +"open@npm:^8.0.0": + version: 8.4.2 + resolution: "open@npm:8.4.2" dependencies: - is-docker: "npm:^2.0.0" - is-wsl: "npm:^2.1.1" - checksum: 4fc02ed3368dcd5d7247ad3566433ea2695b0713b041ebc0eeb2f0f9e5d4e29fc2068f5cdd500976b3464e77fe8b61662b1b059c73233ccc601fe8b16d6c1cd6 + define-lazy-prop: "npm:^2.0.0" + is-docker: "npm:^2.1.1" + is-wsl: "npm:^2.2.0" + checksum: acd81a1d19879c818acb3af2d2e8e9d81d17b5367561e623248133deb7dd3aefaed527531df2677d3e6aaf0199f84df57b6b2262babff8bf46ea0029aac536c9 languageName: node linkType: hard @@ -18081,7 +18044,7 @@ __metadata: languageName: node linkType: hard -"prebuild-install@npm:^7.0.1, prebuild-install@npm:^7.1.1": +"prebuild-install@npm:^7.1.1": version: 7.1.1 resolution: "prebuild-install@npm:7.1.1" dependencies: @@ -18253,19 +18216,6 @@ __metadata: languageName: node linkType: hard -"prompt@npm:1.2.0": - version: 1.2.0 - resolution: "prompt@npm:1.2.0" - dependencies: - async: "npm:~0.9.0" - colors: "npm:^1.1.2" - read: "npm:1.0.x" - revalidator: "npm:0.1.x" - winston: "npm:2.x" - checksum: ceaf336e8099c55cda52ed50ef013fe9a6df1a0f7ff4e7e5c8c2200a9a6c386eb7648553fbef701db6807f6a1868a2eb4218b85a2bf050b3620f1801d4440bdd - languageName: node - linkType: hard - "prompts@npm:^2.0.1": version: 2.4.2 resolution: "prompts@npm:2.4.2" @@ -18486,15 +18436,6 @@ __metadata: languageName: node linkType: hard -"qs@npm:^6.7.0": - version: 6.11.1 - resolution: "qs@npm:6.11.1" - dependencies: - side-channel: "npm:^1.0.4" - checksum: f3e00fc1f65854ddd10ace6a4209baea9f74b2cef5b203e62604be70c743801e1c5ea55631430aaa059c2740b48f2b026f7f183b496f103b08d82f2b602f4d41 - languageName: node - linkType: hard - "qs@npm:~6.5.2": version: 6.5.3 resolution: "qs@npm:6.5.3" @@ -18723,15 +18664,6 @@ __metadata: languageName: node linkType: hard -"read@npm:1.0.x": - version: 1.0.7 - resolution: "read@npm:1.0.7" - dependencies: - mute-stream: "npm:~0.0.4" - checksum: 2777c254e5732cac96f5d0a1c0f6b836c89ae23d8febd405b206f6f24d5de1873420f1a0795e0e3721066650d19adf802c7882c4027143ee0acf942a4f34f97b - languageName: node - linkType: hard - "read@npm:^2.0.0, read@npm:^2.1.0": version: 2.1.0 resolution: "read@npm:2.1.0" @@ -19092,13 +19024,6 @@ __metadata: languageName: node linkType: hard -"revalidator@npm:0.1.x": - version: 0.1.8 - resolution: "revalidator@npm:0.1.8" - checksum: 4c1647672234d7954129dbb9fac9b7b6063f933c45c1b6dd0929937fd8316ad8663de635f394ea299a8be9d371580ac67b8fba68fa8a72486530ae1b9ce072c3 - languageName: node - linkType: hard - "rimraf@npm:3.0.2, rimraf@npm:^3.0.0, rimraf@npm:^3.0.2": version: 3.0.2 resolution: "rimraf@npm:3.0.2" @@ -19304,7 +19229,7 @@ __metadata: languageName: node linkType: hard -"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.3.0, semver@npm:^5.6.0": +"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.3.0": version: 5.7.2 resolution: "semver@npm:5.7.2" bin: @@ -19887,13 +19812,6 @@ __metadata: languageName: node linkType: hard -"stack-trace@npm:0.0.x": - version: 0.0.10 - resolution: "stack-trace@npm:0.0.10" - checksum: 7bd633f0e9ac46e81a0b0fe6538482c1d77031959cf94478228731709db4672fbbed59176f5b9a9fd89fec656b5dae03d084ef2d1b0c4c2f5683e05f2dbb1405 - languageName: node - linkType: hard - "stack-utils@npm:^2.0.3": version: 2.0.6 resolution: "stack-utils@npm:2.0.6" @@ -20726,20 +20644,13 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^1.11.1, tslib@npm:^1.9.0, tslib@npm:^1.9.3": +"tslib@npm:^1.11.1, tslib@npm:^1.9.0": version: 1.14.1 resolution: "tslib@npm:1.14.1" checksum: 7dbf34e6f55c6492637adb81b555af5e3b4f9cc6b998fb440dac82d3b42bdc91560a35a5fb75e20e24a076c651438234da6743d139e4feabf0783f3cdfe1dddb languageName: node linkType: hard -"tslib@npm:^2.0.0, tslib@npm:^2.1.0, tslib@npm:^2.2.0": - version: 2.5.0 - resolution: "tslib@npm:2.5.0" - checksum: ea556fbdf396fe15dbd45e242754e86e7c36e0dce8644404a7c8a81ae1e940744dc639569aeca1ae370a7f804d82872f3fd8564eb23be9adb7618201d0314dac - languageName: node - linkType: hard - "tslib@npm:^2.0.3, tslib@npm:^2.3.1, tslib@npm:^2.5.0": version: 2.6.2 resolution: "tslib@npm:2.6.2" @@ -20747,6 +20658,13 @@ __metadata: languageName: node linkType: hard +"tslib@npm:^2.1.0, tslib@npm:^2.2.0": + version: 2.5.0 + resolution: "tslib@npm:2.5.0" + checksum: ea556fbdf396fe15dbd45e242754e86e7c36e0dce8644404a7c8a81ae1e940744dc639569aeca1ae370a7f804d82872f3fd8564eb23be9adb7618201d0314dac + languageName: node + linkType: hard + "tty-table@npm:^4.1.5": version: 4.2.2 resolution: "tty-table@npm:4.2.2" @@ -22250,20 +22168,6 @@ __metadata: languageName: node linkType: hard -"winston@npm:2.x": - version: 2.4.7 - resolution: "winston@npm:2.4.7" - dependencies: - async: "npm:^2.6.4" - colors: "npm:1.0.x" - cycle: "npm:1.0.x" - eyes: "npm:0.1.x" - isstream: "npm:0.1.x" - stack-trace: "npm:0.0.x" - checksum: 44665f99bb1b1f290fc48879cd3bf635d0821ad70e90cdec0911a79b4ffd4f62ae4afa4764b27766e6a4ff60e911611047fd3f10b21d395eb0e3da33086d6c73 - languageName: node - linkType: hard - "wordwrap@npm:^1.0.0": version: 1.0.0 resolution: "wordwrap@npm:1.0.0"