From da57829662c5cb8fc85676b21fe9985bef7a24c4 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Tue, 24 Mar 2026 03:09:01 +0000 Subject: [PATCH] chore(release): bump to 2.129.6 --- README.md | 141 +++++++++++++---- package.json | 8 +- yarn.lock | 436 ++++----------------------------------------------- 3 files changed, 144 insertions(+), 441 deletions(-) diff --git a/README.md b/README.md index 45f39866..61155923 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli $ sf COMMAND running command... $ sf (--version|-v) -@salesforce/cli/2.129.5 linux-x64 node-v22.22.1 +@salesforce/cli/2.129.6 linux-x64 node-v22.22.1 $ sf --help [COMMAND] USAGE $ sf COMMAND @@ -109,6 +109,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI. - [`sf logic run test`](#sf-logic-run-test) - [`sf org assign permset`](#sf-org-assign-permset) - [`sf org assign permsetlicense`](#sf-org-assign-permsetlicense) +- [`sf org create agent-user`](#sf-org-create-agent-user) - [`sf org create sandbox`](#sf-org-create-sandbox) - [`sf org create scratch`](#sf-org-create-scratch) - [`sf org create user`](#sf-org-create-user) @@ -3881,6 +3882,84 @@ EXAMPLES _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.8.0/src/commands/org/assign/permsetlicense.ts)_ +## `sf org create agent-user` + +Create the default Salesforce user that is used to run an agent. + +``` +USAGE + $ sf org create agent-user -o [--json] [--flags-dir ] [--api-version ] [--base-username ] + [--first-name ] [--last-name ] + +FLAGS + -o, --target-org= (required) Username or alias of the target org. Not required if the `target-org` + configuration variable is already set. + --api-version= Override the api version used for api requests made by this command + --base-username= Base username pattern. A unique ID is appended to ensure global uniqueness of the + usename. + --first-name= [default: Agent] First name for the agent user. + --last-name= [default: User] Last name for the agent user. + +GLOBAL FLAGS + --flags-dir= Import flag values from a directory. + --json Format output as json. + +DESCRIPTION + Create the default Salesforce user that is used to run an agent. + + You specify this user in the agent's Agent Script file using the "default_agent_user" parameter in the "config" block. + + By default, this command: + + - Generates a user called "Agent User" with a globally unique username. Use flags to change these default names. + - Sets the user's email to the new username. + - Assigns the user the "Einstein Agent User" profile. + - Assigns the user these required permission sets: AgentforceServiceAgentBase, AgentforceServiceAgentUser, + EinsteinGPTPromptTemplateUser + - Checks that the user licenses required by the profile and permission sets are available in your org. + + The generated user doesn't have a password. You can’t log into Salesforce using the agent user's username. Only + Salesforce users with admin permissions can view or edit an agent user in Setup. + + To assign additional permission sets or licenses after the user was created, use the "org assign permset" or "org + assign + permsetlicense" commands. + + When the command completes, it displays a summary of what it did, including the new agent user's username and ID, the + available licenses associated with the Einstein Agent User profile, and the profile and permission sets assigned to + the + agent user. + +EXAMPLES + Create an agent user with an auto-generated username; create the user in the org with alias "myorg": + + $ sf org create agent-user --target-org myorg + + Create an agent user by specifying a base username pattern; to make the username unique, the command appends a unique + identifier: + $ sf org create agent-user --base-username service-agent@corp.com --target-org myorg + + Create an agent user with an auto-generated username but the custom name "Service Agent"; create the user in your + default org: + $ sf org create agent-user --first-name Service --last-name Agent + +FLAG DESCRIPTIONS + --base-username= Base username pattern. A unique ID is appended to ensure global uniqueness of the usename. + + Specify a base username in email format, such as "service-agent@corp.com". The command then appends a 12-character + globally unique ID (GUID) to the name before the "@" sign, which ensures that the username is globally unique across + all + Salesforce orgs and sandboxes. + + For example, if you specify "service-agent@corp.com", then the username might be + "service-agent.a1b2c3d4e5f6@corp.com". + + If not specified, the command auto-generates the username using this pattern: + "agent.user.@your-org-domain.com". +``` + +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/create/agent-user.ts)_ + ## `sf org create sandbox` Create a sandbox org. @@ -4013,7 +4092,7 @@ FLAG DESCRIPTIONS You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both. ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/create/sandbox.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/create/sandbox.ts)_ ## `sf org create scratch` @@ -4195,7 +4274,7 @@ FLAG DESCRIPTIONS Omit this flag to have Salesforce generate a unique username for your org. ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/create/scratch.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/create/scratch.ts)_ ## `sf org create user` @@ -4349,7 +4428,7 @@ EXAMPLES $ sf org delete sandbox --target-org my-sandbox --no-prompt ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/delete/sandbox.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/delete/sandbox.ts)_ ## `sf org delete scratch` @@ -4393,7 +4472,7 @@ EXAMPLES $ sf org delete scratch --target-org my-scratch-org --no-prompt ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/delete/scratch.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/delete/scratch.ts)_ ## `sf org disable tracking` @@ -4432,7 +4511,7 @@ EXAMPLES $ sf org disable tracking ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/disable/tracking.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/disable/tracking.ts)_ ## `sf org display` @@ -4477,7 +4556,7 @@ EXAMPLES $ sf org display --target-org TestOrg1 --verbose ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/display.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/display.ts)_ ## `sf org display user` @@ -4558,7 +4637,7 @@ EXAMPLES $ sf org enable tracking ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/enable/tracking.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/enable/tracking.ts)_ ## `sf org generate password` @@ -4664,7 +4743,7 @@ EXAMPLES $ sf org list --clean ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/list.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/list.ts)_ ## `sf org list auth` @@ -4803,7 +4882,7 @@ FLAG DESCRIPTIONS Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report. ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/list/metadata.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/list/metadata.ts)_ ## `sf org list metadata-types` @@ -4858,7 +4937,7 @@ FLAG DESCRIPTIONS Override the api version used for api requests made by this command ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/list/metadata-types.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/list/metadata-types.ts)_ ## `sf org list sobject record-counts` @@ -5404,7 +5483,7 @@ EXAMPLES $ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/open.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/open.ts)_ ## `sf org open agent` @@ -5455,7 +5534,7 @@ EXAMPLES $ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/open/agent.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/open/agent.ts)_ ## `sf org open authoring-bundle` @@ -5501,7 +5580,7 @@ EXAMPLES $ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/open/authoring-bundle.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/open/authoring-bundle.ts)_ ## `sf org refresh sandbox` @@ -5604,7 +5683,7 @@ FLAG DESCRIPTIONS You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both. ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/refresh/sandbox.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/refresh/sandbox.ts)_ ## `sf org resume sandbox` @@ -5667,7 +5746,7 @@ FLAG DESCRIPTIONS returns the job ID. To resume checking the sandbox creation, rerun this command. ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/resume/sandbox.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/resume/sandbox.ts)_ ## `sf org resume scratch` @@ -5720,7 +5799,7 @@ FLAG DESCRIPTIONS returns the job ID. To resume checking the scratch creation, rerun this command. ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.74/src/commands/org/resume/scratch.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/resume/scratch.ts)_ ## `sf package convert` @@ -9679,7 +9758,7 @@ FLAG DESCRIPTIONS directory. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/analytics/template.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/analytics/template.ts)_ ## `sf template generate apex class` @@ -9739,7 +9818,7 @@ FLAG DESCRIPTIONS Supplied parameter values or default values are filled into a copy of the template. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/apex/class.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/apex/class.ts)_ ## `sf template generate apex trigger` @@ -9809,7 +9888,7 @@ FLAG DESCRIPTIONS Supplied parameter values or default values are filled into a copy of the template. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/apex/trigger.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/apex/trigger.ts)_ ## `sf template generate digital-experience site` @@ -9863,7 +9942,7 @@ FLAG DESCRIPTIONS project, defaults to the current directory. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/digital-experience/site.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/digital-experience/site.ts)_ ## `sf template generate flexipage` @@ -9945,7 +10024,7 @@ FLAG DESCRIPTIONS 'Custom_Object__c'. This sets the `sobjectType` field in the FlexiPage metadata. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/flexipage/index.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/flexipage/index.ts)_ ## `sf template generate lightning app` @@ -10001,7 +10080,7 @@ FLAG DESCRIPTIONS Supplied parameter values or default values are filled into a copy of the template. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/lightning/app.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/lightning/app.ts)_ ## `sf template generate lightning component` @@ -10071,7 +10150,7 @@ FLAG DESCRIPTIONS Supplied parameter values or default values are filled into a copy of the template. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/lightning/component.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/lightning/component.ts)_ ## `sf template generate lightning event` @@ -10127,7 +10206,7 @@ FLAG DESCRIPTIONS Supplied parameter values or default values are filled into a copy of the template. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/lightning/event.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/lightning/event.ts)_ ## `sf template generate lightning interface` @@ -10183,7 +10262,7 @@ FLAG DESCRIPTIONS Supplied parameter values or default values are filled into a copy of the template. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/lightning/interface.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/lightning/interface.ts)_ ## `sf template generate lightning test` @@ -10239,7 +10318,7 @@ FLAG DESCRIPTIONS Supplied parameter values or default values are filled into a copy of the template. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/lightning/test.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/lightning/test.ts)_ ## `sf template generate project` @@ -10352,7 +10431,7 @@ FLAG DESCRIPTIONS Override the api version used for api requests made by this command ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/project/index.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/project/index.ts)_ ## `sf template generate static-resource` @@ -10415,7 +10494,7 @@ FLAG DESCRIPTIONS etc. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/static-resource/index.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/static-resource/index.ts)_ ## `sf template generate visualforce component` @@ -10472,7 +10551,7 @@ FLAG DESCRIPTIONS Supplied parameter values or default values are filled into a copy of the template. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/visualforce/component.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/visualforce/component.ts)_ ## `sf template generate visualforce page` @@ -10523,7 +10602,7 @@ FLAG DESCRIPTIONS The name can be up to 40 characters and must start with a letter. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.3/src/commands/template/generate/visualforce/page.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/visualforce/page.ts)_ ## `sf update [CHANNEL]` diff --git a/package.json b/package.json index 819801ba..ddea0022 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.129.5", + "version": "2.129.6", "author": "Salesforce", "bin": { "sf": "./bin/run.js", @@ -76,7 +76,7 @@ "@salesforce/plugin-user" ], "jitPlugins": { - "@salesforce/plugin-code-analyzer": "5.10.2", + "@salesforce/plugin-code-analyzer": "5.11.0", "@salesforce/plugin-community": "3.3.48", "@salesforce/plugin-custom-metadata": "3.3.88", "@salesforce/plugin-dev": "2.5.2", @@ -167,13 +167,13 @@ "@salesforce/plugin-info": "3.4.114", "@salesforce/plugin-limits": "3.3.81", "@salesforce/plugin-marketplace": "1.3.10", - "@salesforce/plugin-org": "5.9.74", + "@salesforce/plugin-org": "5.9.75", "@salesforce/plugin-packaging": "2.25.12", "@salesforce/plugin-schema": "3.3.100", "@salesforce/plugin-settings": "2.4.62", "@salesforce/plugin-sobject": "1.4.88", "@salesforce/plugin-telemetry": "3.8.5", - "@salesforce/plugin-templates": "56.11.3", + "@salesforce/plugin-templates": "56.11.4", "@salesforce/plugin-trust": "3.7.114", "@salesforce/plugin-user": "3.8.0", "@salesforce/sf-plugins-core": "12.2.6", diff --git a/yarn.lock b/yarn.lock index 8ab3dbf0..0bd03076 100644 --- a/yarn.lock +++ b/yarn.lock @@ -199,26 +199,7 @@ "@smithy/util-waiter" "^4.2.13" tslib "^2.6.2" -"@aws-sdk/core@^3.973.20": - version "3.973.20" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.973.20.tgz#787e2509d7ed7f4a6775197431f4eec905885d79" - integrity sha512-i3GuX+lowD892F3IuJf8o6AbyDupMTdyTxQrCJGcn71ni5hTZ82L4nQhcdumxZ7XPJRJJVHS/CR3uYOIIs0PVA== - dependencies: - "@aws-sdk/types" "^3.973.6" - "@aws-sdk/xml-builder" "^3.972.11" - "@smithy/core" "^3.23.11" - "@smithy/node-config-provider" "^4.3.12" - "@smithy/property-provider" "^4.2.12" - "@smithy/protocol-http" "^5.3.12" - "@smithy/signature-v4" "^5.3.12" - "@smithy/smithy-client" "^4.12.5" - "@smithy/types" "^4.13.1" - "@smithy/util-base64" "^4.3.2" - "@smithy/util-middleware" "^4.2.12" - "@smithy/util-utf8" "^4.2.2" - tslib "^2.6.2" - -"@aws-sdk/core@^3.973.23": +"@aws-sdk/core@^3.973.20", "@aws-sdk/core@^3.973.23": version "3.973.23" resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.973.23.tgz#76c6d4c94dd21ed298769a75e30ab0af8120af01" integrity sha512-aoJncvD1XvloZ9JLnKqTRL9dBy+Szkryoag9VT+V1TqsuUgIxV9cnBVM/hrDi2vE8bDqLiDR8nirdRcCdtJu0w== @@ -245,17 +226,6 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@^3.972.18": - version "3.972.18" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.18.tgz#19e5d90001d6bfc9028caa46df8ac952620c14ad" - integrity sha512-X0B8AlQY507i5DwjLByeU2Af4ARsl9Vr84koDcXCbAkplmU+1xBFWxEPrWRAoh56waBne/yJqEloSwvRf4x6XA== - dependencies: - "@aws-sdk/core" "^3.973.20" - "@aws-sdk/types" "^3.973.6" - "@smithy/property-provider" "^4.2.12" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - "@aws-sdk/credential-provider-env@^3.972.21": version "3.972.21" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.21.tgz#3c6dc8bb6c87091f97067310f684f4ce2e73e600" @@ -267,22 +237,6 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@^3.972.20": - version "3.972.20" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.20.tgz#8d5d56d3b72b406553b5c4151fce0e339bf32f7f" - integrity sha512-ey9Lelj001+oOfrbKmS6R2CJAiXX7QKY4Vj9VJv6L2eE6/VjD8DocHIoYqztTm70xDLR4E1jYPTKfIui+eRNDA== - dependencies: - "@aws-sdk/core" "^3.973.20" - "@aws-sdk/types" "^3.973.6" - "@smithy/fetch-http-handler" "^5.3.15" - "@smithy/node-http-handler" "^4.4.16" - "@smithy/property-provider" "^4.2.12" - "@smithy/protocol-http" "^5.3.12" - "@smithy/smithy-client" "^4.12.5" - "@smithy/types" "^4.13.1" - "@smithy/util-stream" "^4.5.19" - tslib "^2.6.2" - "@aws-sdk/credential-provider-http@^3.972.23": version "3.972.23" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.23.tgz#1e0e9b3b1e24b904589223c142ef100b22d417f7" @@ -299,26 +253,6 @@ "@smithy/util-stream" "^4.5.20" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@^3.972.20": - version "3.972.20" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.972.20.tgz#6fea1cf189233d08288fea923be560956a20071a" - integrity sha512-5flXSnKHMloObNF+9N0cupKegnH1Z37cdVlpETVgx8/rAhCe+VNlkcZH3HDg2SDn9bI765S+rhNPXGDJJPfbtA== - dependencies: - "@aws-sdk/core" "^3.973.20" - "@aws-sdk/credential-provider-env" "^3.972.18" - "@aws-sdk/credential-provider-http" "^3.972.20" - "@aws-sdk/credential-provider-login" "^3.972.20" - "@aws-sdk/credential-provider-process" "^3.972.18" - "@aws-sdk/credential-provider-sso" "^3.972.20" - "@aws-sdk/credential-provider-web-identity" "^3.972.20" - "@aws-sdk/nested-clients" "^3.996.10" - "@aws-sdk/types" "^3.973.6" - "@smithy/credential-provider-imds" "^4.2.12" - "@smithy/property-provider" "^4.2.12" - "@smithy/shared-ini-file-loader" "^4.4.7" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - "@aws-sdk/credential-provider-ini@^3.972.23": version "3.972.23" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.972.23.tgz#d9509de67b50e907d3e7c3f6af9c43f032bc2c2c" @@ -339,20 +273,6 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-login@^3.972.20": - version "3.972.20" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.20.tgz#4ccffe3a08f73fc0e81f7df55df261eb5bd0af8e" - integrity sha512-gEWo54nfqp2jABMu6HNsjVC4hDLpg9HC8IKSJnp0kqWtxIJYHTmiLSsIfI4ScQjxEwpB+jOOH8dOLax1+hy/Hw== - dependencies: - "@aws-sdk/core" "^3.973.20" - "@aws-sdk/nested-clients" "^3.996.10" - "@aws-sdk/types" "^3.973.6" - "@smithy/property-provider" "^4.2.12" - "@smithy/protocol-http" "^5.3.12" - "@smithy/shared-ini-file-loader" "^4.4.7" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - "@aws-sdk/credential-provider-login@^3.972.23": version "3.972.23" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.23.tgz#8d9bd6d3e6866b1f0f7a7891f081997911aa2f2f" @@ -367,25 +287,7 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@^3.972.21": - version "3.972.21" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.21.tgz#cd0d6581b7d5409031b1ae542de82900d82a78ce" - integrity sha512-hah8if3/B/Q+LBYN5FukyQ1Mym6PLPDsBOBsIgNEYD6wLyZg0UmUF/OKIVC3nX9XH8TfTPuITK+7N/jenVACWA== - dependencies: - "@aws-sdk/credential-provider-env" "^3.972.18" - "@aws-sdk/credential-provider-http" "^3.972.20" - "@aws-sdk/credential-provider-ini" "^3.972.20" - "@aws-sdk/credential-provider-process" "^3.972.18" - "@aws-sdk/credential-provider-sso" "^3.972.20" - "@aws-sdk/credential-provider-web-identity" "^3.972.20" - "@aws-sdk/types" "^3.973.6" - "@smithy/credential-provider-imds" "^4.2.12" - "@smithy/property-provider" "^4.2.12" - "@smithy/shared-ini-file-loader" "^4.4.7" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-node@^3.972.24": +"@aws-sdk/credential-provider-node@^3.972.21", "@aws-sdk/credential-provider-node@^3.972.24": version "3.972.24" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.24.tgz#3d7dfa3c7cad207411e9d6e0fddc1fd8d87a498d" integrity sha512-9Jwi7aps3AfUicJyF5udYadPypPpCwUZ6BSKr/QjRbVCpRVS1wc+1Q6AEZ/qz8J4JraeRd247pSzyMQSIHVebw== @@ -403,18 +305,6 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@^3.972.18": - version "3.972.18" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.18.tgz#7566df534c9619fa41571b0ac4815251a943d982" - integrity sha512-Tpl7SRaPoOLT32jbTWchPsn52hYYgJ0kpiFgnwk8pxTANQdUymVSZkzFvv1+oOgZm1CrbQUP9MBeoMZ9IzLZjA== - dependencies: - "@aws-sdk/core" "^3.973.20" - "@aws-sdk/types" "^3.973.6" - "@smithy/property-provider" "^4.2.12" - "@smithy/shared-ini-file-loader" "^4.4.7" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - "@aws-sdk/credential-provider-process@^3.972.21": version "3.972.21" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.21.tgz#33b1747e4db0a96eeeff3a882aff70bad9723d2c" @@ -427,20 +317,6 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@^3.972.20": - version "3.972.20" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.972.20.tgz#4871228de15d5ab049590d47be465c553ecabef6" - integrity sha512-p+R+PYR5Z7Gjqf/6pvbCnzEHcqPCpLzR7Yf127HjJ6EAb4hUcD+qsNRnuww1sB/RmSeCLxyay8FMyqREw4p1RA== - dependencies: - "@aws-sdk/core" "^3.973.20" - "@aws-sdk/nested-clients" "^3.996.10" - "@aws-sdk/token-providers" "3.1009.0" - "@aws-sdk/types" "^3.973.6" - "@smithy/property-provider" "^4.2.12" - "@smithy/shared-ini-file-loader" "^4.4.7" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - "@aws-sdk/credential-provider-sso@^3.972.23": version "3.972.23" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.972.23.tgz#a470ecd46d1d1a97c2173936e5bb4e43b3c0fb2d" @@ -455,19 +331,6 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@^3.972.20": - version "3.972.20" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.20.tgz#978211994eb074aabc4244cec067f24b6888bc23" - integrity sha512-rWCmh8o7QY4CsUj63qopzMzkDq/yPpkrpb+CnjBEFSOg/02T/we7sSTVg4QsDiVS9uwZ8VyONhq98qt+pIh3KA== - dependencies: - "@aws-sdk/core" "^3.973.20" - "@aws-sdk/nested-clients" "^3.996.10" - "@aws-sdk/types" "^3.973.6" - "@smithy/property-provider" "^4.2.12" - "@smithy/shared-ini-file-loader" "^4.4.7" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - "@aws-sdk/credential-provider-web-identity@^3.972.23": version "3.972.23" resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.23.tgz#7e5b359e0e21f4840511053b4151502cacb39919" @@ -592,21 +455,7 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@^3.972.21": - version "3.972.21" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.972.21.tgz#f174814c5446dc772f839945eee535a27b2972ab" - integrity sha512-62XRl1GDYPpkt7cx1AX1SPy9wgNE9Iw/NPuurJu4lmhCWS7sGKO+kS53TQ8eRmIxy3skmvNInnk0ZbWrU5Dpyg== - dependencies: - "@aws-sdk/core" "^3.973.20" - "@aws-sdk/types" "^3.973.6" - "@aws-sdk/util-endpoints" "^3.996.5" - "@smithy/core" "^3.23.11" - "@smithy/protocol-http" "^5.3.12" - "@smithy/types" "^4.13.1" - "@smithy/util-retry" "^4.2.12" - tslib "^2.6.2" - -"@aws-sdk/middleware-user-agent@^3.972.24": +"@aws-sdk/middleware-user-agent@^3.972.21", "@aws-sdk/middleware-user-agent@^3.972.24": version "3.972.24" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.972.24.tgz#a82a80aeca0ff0d0aab94a8925fd934557c37da5" integrity sha512-dLTWy6IfAMhNiSEvMr07g/qZ54be6pLqlxVblbF6AzafmmGAzMMj8qMoY9B4+YgT+gY9IcuxZslNh03L6PyMCQ== @@ -620,50 +469,6 @@ "@smithy/util-retry" "^4.2.12" tslib "^2.6.2" -"@aws-sdk/nested-clients@^3.996.10": - version "3.996.10" - resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.996.10.tgz#aed5c630f70b61f1524a230820d62ef6a0c66f0c" - integrity sha512-SlDol5Z+C7Ivnc2rKGqiqfSUmUZzY1qHfVs9myt/nxVwswgfpjdKahyTzLTx802Zfq0NFRs7AejwKzzzl5Co2w== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "^3.973.20" - "@aws-sdk/middleware-host-header" "^3.972.8" - "@aws-sdk/middleware-logger" "^3.972.8" - "@aws-sdk/middleware-recursion-detection" "^3.972.8" - "@aws-sdk/middleware-user-agent" "^3.972.21" - "@aws-sdk/region-config-resolver" "^3.972.8" - "@aws-sdk/types" "^3.973.6" - "@aws-sdk/util-endpoints" "^3.996.5" - "@aws-sdk/util-user-agent-browser" "^3.972.8" - "@aws-sdk/util-user-agent-node" "^3.973.7" - "@smithy/config-resolver" "^4.4.11" - "@smithy/core" "^3.23.11" - "@smithy/fetch-http-handler" "^5.3.15" - "@smithy/hash-node" "^4.2.12" - "@smithy/invalid-dependency" "^4.2.12" - "@smithy/middleware-content-length" "^4.2.12" - "@smithy/middleware-endpoint" "^4.4.25" - "@smithy/middleware-retry" "^4.4.42" - "@smithy/middleware-serde" "^4.2.14" - "@smithy/middleware-stack" "^4.2.12" - "@smithy/node-config-provider" "^4.3.12" - "@smithy/node-http-handler" "^4.4.16" - "@smithy/protocol-http" "^5.3.12" - "@smithy/smithy-client" "^4.12.5" - "@smithy/types" "^4.13.1" - "@smithy/url-parser" "^4.2.12" - "@smithy/util-base64" "^4.3.2" - "@smithy/util-body-length-browser" "^4.2.2" - "@smithy/util-body-length-node" "^4.2.3" - "@smithy/util-defaults-mode-browser" "^4.3.41" - "@smithy/util-defaults-mode-node" "^4.2.44" - "@smithy/util-endpoints" "^3.3.3" - "@smithy/util-middleware" "^4.2.12" - "@smithy/util-retry" "^4.2.12" - "@smithy/util-utf8" "^4.2.2" - tslib "^2.6.2" - "@aws-sdk/nested-clients@^3.996.13": version "3.996.13" resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.996.13.tgz#d564a9e1d3db58bc96f2eaa1f014d38ab332a104" @@ -708,18 +513,7 @@ "@smithy/util-utf8" "^4.2.2" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@^3.972.8": - version "3.972.8" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.972.8.tgz#761475f0b06fab0bbba954477e66b51d2f780f50" - integrity sha512-1eD4uhTDeambO/PNIDVG19A6+v4NdD7xzwLHDutHsUqz0B+i661MwQB2eYO4/crcCvCiQG4SRm1k81k54FEIvw== - dependencies: - "@aws-sdk/types" "^3.973.6" - "@smithy/config-resolver" "^4.4.11" - "@smithy/node-config-provider" "^4.3.12" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - -"@aws-sdk/region-config-resolver@^3.972.9": +"@aws-sdk/region-config-resolver@^3.972.8", "@aws-sdk/region-config-resolver@^3.972.9": version "3.972.9" resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.972.9.tgz#1716d17a7fe1eac0415e759dd294348b74bfd579" integrity sha512-eQ+dFU05ZRC/lC2XpYlYSPlXtX3VT8sn5toxN2Fv7EXlMoA2p9V7vUBKqHunfD4TRLpxUq8Y8Ol/nCqiv327Ng== @@ -742,19 +536,6 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@aws-sdk/token-providers@3.1009.0": - version "3.1009.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.1009.0.tgz#4a54604e4389b0f8038748c647db5e9b6da9a9a7" - integrity sha512-KCPLuTqN9u0Rr38Arln78fRG9KXpzsPWmof+PZzfAHMMQq2QED6YjQrkrfiH7PDefLWEposY1o4/eGwrmKA4JA== - dependencies: - "@aws-sdk/core" "^3.973.20" - "@aws-sdk/nested-clients" "^3.996.10" - "@aws-sdk/types" "^3.973.6" - "@smithy/property-provider" "^4.2.12" - "@smithy/shared-ini-file-loader" "^4.4.7" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - "@aws-sdk/token-providers@3.1014.0": version "3.1014.0" resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.1014.0.tgz#64116c6a815864aaee0664ff9d6b5a4f1050bd13" @@ -811,7 +592,7 @@ bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@^3.973.10": +"@aws-sdk/util-user-agent-node@^3.973.10", "@aws-sdk/util-user-agent-node@^3.973.7": version "3.973.10" resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.973.10.tgz#19ee724466b7b78b0bdab6ac2252de36873b468a" integrity sha512-E99zeTscCc+pTMfsvnfi6foPpKmdD1cZfOC7/P8UUrjsoQdg9VEWPRD+xdFduKnfPXwcvby58AlO9jwwF6U96g== @@ -823,27 +604,6 @@ "@smithy/util-config-provider" "^4.2.2" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@^3.973.7": - version "3.973.7" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.973.7.tgz#dd54931e559b031a504a9a2712c10adf5c89c7c2" - integrity sha512-Hz6EZMUAEzqUd7e+vZ9LE7mn+5gMbxltXy18v+YSFY+9LBJz15wkNZvw5JqfX3z0FS9n3bgUtz3L5rAsfh4YlA== - dependencies: - "@aws-sdk/middleware-user-agent" "^3.972.21" - "@aws-sdk/types" "^3.973.6" - "@smithy/node-config-provider" "^4.3.12" - "@smithy/types" "^4.13.1" - "@smithy/util-config-provider" "^4.2.2" - tslib "^2.6.2" - -"@aws-sdk/xml-builder@^3.972.11": - version "3.972.11" - resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.972.11.tgz#8cba4b756dc8e75a7ceac6e028b3bce917fe55e7" - integrity sha512-iitV/gZKQMvY9d7ovmyFnFuTHbBAtrmLnvaSb/3X8vOKyevwtpmEtyc8AdhVWZe0pI/1GsHxlEvQeOePFzy7KQ== - dependencies: - "@smithy/types" "^4.13.1" - fast-xml-parser "5.4.1" - tslib "^2.6.2" - "@aws-sdk/xml-builder@^3.972.15": version "3.972.15" resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.972.15.tgz#7cbc823f8eb11fa8c02d81a744892e41b1762619" @@ -2576,10 +2336,10 @@ got "^13.0.0" proxy-agent "^6.5.0" -"@salesforce/plugin-org@5.9.74": - version "5.9.74" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-org/-/plugin-org-5.9.74.tgz#f3280e7760f5a97190b2ef45a108408eb25a583d" - integrity sha512-7ifkPSNPLoetzkDj32Zeoc/sBT2kWqQLFfJVlmrK76JTSbkNkE6dvhdG24gxbp+yTAylbPxNB2Vowx39azlVYA== +"@salesforce/plugin-org@5.9.75": + version "5.9.75" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-org/-/plugin-org-5.9.75.tgz#c3ff44e895f0dd615925a40ef9a6e0054d59352d" + integrity sha512-Oddct1NumJpIUlfcPZPeiERZ4q6TMvhuD1v8cDBAvPmAe1dWDKqmrBK11RyTPzJgjYh5M/ym7FdQAfuYpMNJ6Q== dependencies: "@oclif/core" "^4.10.2" "@oclif/multi-stage-output" "^0.8.30" @@ -2682,14 +2442,14 @@ "@salesforce/ts-types" "^2.0.12" debug "^4.4.3" -"@salesforce/plugin-templates@56.11.3": - version "56.11.3" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-templates/-/plugin-templates-56.11.3.tgz#7e2c78aa2215289c2838ad7c729efdec6b45df24" - integrity sha512-Rkavfrnh2uHuyaqQ4zcUBaFREbDiQzRugWKcb2HM2Cv2tx9byescb38hUIPF991J7MOIDWbzLrFIsWVa6CJ9tw== +"@salesforce/plugin-templates@56.11.4": + version "56.11.4" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-templates/-/plugin-templates-56.11.4.tgz#3ebfc355c4ecbe08e46c673b0ff879c02289b92f" + integrity sha512-mUTzGk4cP7ETZDZd7nl1qw02xjPUm1WGqIcqf8BqfHkktGBUsbMcdedE+vgrMsyWaDjZ2/F2mZZ0XQnRF5CWjg== dependencies: "@salesforce/core" "^8.27.1" "@salesforce/sf-plugins-core" "^12" - "@salesforce/templates" "^66.5.4" + "@salesforce/templates" "^66.5.6" "@salesforce/plugin-trust@3.7.114", "@salesforce/plugin-trust@^3.7.69": version "3.7.114" @@ -2809,10 +2569,10 @@ o11y_schema "^260.52.0" proxy-agent "^6.5.0" -"@salesforce/templates@^66.5.4": - version "66.5.5" - resolved "https://registry.yarnpkg.com/@salesforce/templates/-/templates-66.5.5.tgz#5e771389eda4ed28c78945dfeb4bcc5175d4807a" - integrity sha512-gnN+mbqcCWrO1JsPZHIp+n+dJoAnP8MBEiLnt7IbNSHuB1b+1OEDXT1MN05mBrrGsCq/62O0IHEyXDTCafHFiA== +"@salesforce/templates@^66.5.6": + version "66.5.6" + resolved "https://registry.yarnpkg.com/@salesforce/templates/-/templates-66.5.6.tgz#1fcece13106882ded54fcd96a5d9bf49fd31a546" + integrity sha512-k18ROus8XUskIT6n2eXsHvoZK3NmrVePSPduCfjWEohMEJ/qy9ltdyMos/eebzc3ejooLBu40/22zKjVZFoFfA== dependencies: "@salesforce/kit" "^3.2.4" ejs "^3.1.10" @@ -3069,19 +2829,7 @@ dependencies: tslib "^2.6.2" -"@smithy/config-resolver@^4.4.11": - version "4.4.11" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-4.4.11.tgz#bcf2324ec9472c4737442510d09c49ddfa1ee718" - integrity sha512-YxFiiG4YDAtX7WMN7RuhHZLeTmRRAOyCbr+zB8e3AQzHPnUhS8zXjB1+cniPVQI3xbWsQPM0X2aaIkO/ME0ymw== - dependencies: - "@smithy/node-config-provider" "^4.3.12" - "@smithy/types" "^4.13.1" - "@smithy/util-config-provider" "^4.2.2" - "@smithy/util-endpoints" "^3.3.3" - "@smithy/util-middleware" "^4.2.12" - tslib "^2.6.2" - -"@smithy/config-resolver@^4.4.13": +"@smithy/config-resolver@^4.4.11", "@smithy/config-resolver@^4.4.13": version "4.4.13" resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-4.4.13.tgz#8bffd41de647ec349b4a74bf02bdd1b32452bacd" integrity sha512-iIzMC5NmOUP6WL6o8iPBjFhUhBZ9pPjpUpQYWMUFQqKyXXzOftbfK8zcQCz/jFV1Psmf05BK5ypx4K2r4Tnwdg== @@ -3093,23 +2841,7 @@ "@smithy/util-middleware" "^4.2.12" tslib "^2.6.2" -"@smithy/core@^3.23.11": - version "3.23.11" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.23.11.tgz#78204c2ccd65736c6e8a6d9a51b2821e13d61164" - integrity sha512-952rGf7hBRnhUIaeLp6q4MptKW8sPFe5VvkoZ5qIzFAtx6c/QZ/54FS3yootsyUSf9gJX/NBqEBNdNR7jMIlpQ== - dependencies: - "@smithy/protocol-http" "^5.3.12" - "@smithy/types" "^4.13.1" - "@smithy/url-parser" "^4.2.12" - "@smithy/util-base64" "^4.3.2" - "@smithy/util-body-length-browser" "^4.2.2" - "@smithy/util-middleware" "^4.2.12" - "@smithy/util-stream" "^4.5.19" - "@smithy/util-utf8" "^4.2.2" - "@smithy/uuid" "^1.1.2" - tslib "^2.6.2" - -"@smithy/core@^3.23.12": +"@smithy/core@^3.23.11", "@smithy/core@^3.23.12": version "3.23.12" resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.23.12.tgz#a16537bb03260337ac5adda31aedb325fcf9bb06" integrity sha512-o9VycsYNtgC+Dy3I0yrwCqv9CWicDnke0L7EVOrZtJpjb2t0EjaEofmMrYc0T1Kn3yk32zm6cspxF9u9Bj7e5w== @@ -3261,21 +2993,7 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@smithy/middleware-endpoint@^4.4.25": - version "4.4.25" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.4.25.tgz#f064b77eac2a6124cc1e1dc875ad4d6be5a1c4a7" - integrity sha512-dqjLwZs2eBxIUG6Qtw8/YZ4DvzHGIf0DA18wrgtfP6a50UIO7e2nY0FPdcbv5tVJKqWCCU5BmGMOUwT7Puan+A== - dependencies: - "@smithy/core" "^3.23.11" - "@smithy/middleware-serde" "^4.2.14" - "@smithy/node-config-provider" "^4.3.12" - "@smithy/shared-ini-file-loader" "^4.4.7" - "@smithy/types" "^4.13.1" - "@smithy/url-parser" "^4.2.12" - "@smithy/util-middleware" "^4.2.12" - tslib "^2.6.2" - -"@smithy/middleware-endpoint@^4.4.27": +"@smithy/middleware-endpoint@^4.4.25", "@smithy/middleware-endpoint@^4.4.27": version "4.4.27" resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.4.27.tgz#cf2b334f7fc302e7ebf3fe00c1a1279ee9214afd" integrity sha512-T3TFfUgXQlpcg+UdzcAISdZpj4Z+XECZ/cefgA6wLBd6V4lRi0svN2hBouN/be9dXQ31X4sLWz3fAQDf+nt6BA== @@ -3289,22 +3007,7 @@ "@smithy/util-middleware" "^4.2.12" tslib "^2.6.2" -"@smithy/middleware-retry@^4.4.42": - version "4.4.42" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.4.42.tgz#9bc00a2291b10356bd358203c4e1d645012e4901" - integrity sha512-vbwyqHRIpIZutNXZpLAozakzamcINaRCpEy1MYmK6xBeW3xN+TyPRA123GjXnuxZIjc9848MRRCugVMTXxC4Eg== - dependencies: - "@smithy/node-config-provider" "^4.3.12" - "@smithy/protocol-http" "^5.3.12" - "@smithy/service-error-classification" "^4.2.12" - "@smithy/smithy-client" "^4.12.5" - "@smithy/types" "^4.13.1" - "@smithy/util-middleware" "^4.2.12" - "@smithy/util-retry" "^4.2.12" - "@smithy/uuid" "^1.1.2" - tslib "^2.6.2" - -"@smithy/middleware-retry@^4.4.44": +"@smithy/middleware-retry@^4.4.42", "@smithy/middleware-retry@^4.4.44": version "4.4.44" resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.4.44.tgz#5c678ea74bde3a480cb28d013156a24009063c5e" integrity sha512-Y1Rav7m5CFRPQyM4CI0koD/bXjyjJu3EQxZZhtLGD88WIrBrQ7kqXM96ncd6rYnojwOo/u9MXu57JrEvu/nLrA== @@ -3319,17 +3022,7 @@ "@smithy/uuid" "^1.1.2" tslib "^2.6.2" -"@smithy/middleware-serde@^4.2.14": - version "4.2.14" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-4.2.14.tgz#dde882c475349196c6d1e845a71aadb9c3dcab0c" - integrity sha512-+CcaLoLa5apzSRtloOyG7lQvkUw2ZDml3hRh4QiG9WyEPfW5Ke/3tPOPiPjUneuT59Tpn8+c3RVaUvvkkwqZwg== - dependencies: - "@smithy/core" "^3.23.11" - "@smithy/protocol-http" "^5.3.12" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - -"@smithy/middleware-serde@^4.2.15": +"@smithy/middleware-serde@^4.2.14", "@smithy/middleware-serde@^4.2.15": version "4.2.15" resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-4.2.15.tgz#18c6ed60339389b62e7955e822abe88e6f53ea55" integrity sha512-ExYhcltZSli0pgAKOpQQe1DLFBLryeZ22605y/YS+mQpdNWekum9Ujb/jMKfJKgjtz1AZldtwA/wCYuKJgjjlg== @@ -3357,18 +3050,7 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@smithy/node-http-handler@^4.4.16": - version "4.4.16" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.4.16.tgz#bb9de91f546c22b312820acabc081debe0417dff" - integrity sha512-ULC8UCS/HivdCB3jhi+kLFYe4B5gxH2gi9vHBfEIiRrT2jfKiZNiETJSlzRtE6B26XbBHjPtc8iZKSNqMol9bw== - dependencies: - "@smithy/abort-controller" "^4.2.12" - "@smithy/protocol-http" "^5.3.12" - "@smithy/querystring-builder" "^4.2.12" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - -"@smithy/node-http-handler@^4.5.0": +"@smithy/node-http-handler@^4.4.16", "@smithy/node-http-handler@^4.5.0": version "4.5.0" resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.5.0.tgz#6a506a0da462c79e725fdbcfa55b0eed5b929727" integrity sha512-Rnq9vQWiR1+/I6NZZMNzJHV6pZYyEHt2ZnuV3MG8z2NNenC4i/8Kzttz7CjZiHSmsN5frhXhg17z3Zqjjhmz1A== @@ -3441,20 +3123,7 @@ "@smithy/util-utf8" "^4.2.2" tslib "^2.6.2" -"@smithy/smithy-client@^4.12.5": - version "4.12.5" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.12.5.tgz#2128204f2ca735956356dab89106370c66902902" - integrity sha512-UqwYawyqSr/aog8mnLnfbPurS0gi4G7IYDcD28cUIBhsvWs1+rQcL2IwkUQ+QZ7dibaoRzhNF99fAQ9AUcO00w== - dependencies: - "@smithy/core" "^3.23.11" - "@smithy/middleware-endpoint" "^4.4.25" - "@smithy/middleware-stack" "^4.2.12" - "@smithy/protocol-http" "^5.3.12" - "@smithy/types" "^4.13.1" - "@smithy/util-stream" "^4.5.19" - tslib "^2.6.2" - -"@smithy/smithy-client@^4.12.7": +"@smithy/smithy-client@^4.12.5", "@smithy/smithy-client@^4.12.7": version "4.12.7" resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.12.7.tgz#3867272c062e39d3d4b719bf83ba491c76e1ee93" integrity sha512-q3gqnwml60G44FECaEEsdQMplYhDMZYCtYhMCzadCnRnnHIobZJjegmdoUo6ieLQlPUzvrMdIJUpx6DoPmzANQ== @@ -3529,17 +3198,7 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^4.3.41": - version "4.3.41" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.3.41.tgz#6e06d22acefe998d2ece72c5a313fbd47e78ee08" - integrity sha512-M1w1Ux0rSVvBOxIIiqbxvZvhnjQ+VUjJrugtORE90BbadSTH+jsQL279KRL3Hv0w69rE7EuYkV/4Lepz/NBW9g== - dependencies: - "@smithy/property-provider" "^4.2.12" - "@smithy/smithy-client" "^4.12.5" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - -"@smithy/util-defaults-mode-browser@^4.3.43": +"@smithy/util-defaults-mode-browser@^4.3.41", "@smithy/util-defaults-mode-browser@^4.3.43": version "4.3.43" resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.3.43.tgz#8e2667c31cacdc0d59d414863f9a475daef79b28" integrity sha512-Qd/0wCKMaXxev/z00TvNzGCH2jlKKKxXP1aDxB6oKwSQthe3Og2dMhSayGCnsma1bK/kQX1+X7SMP99t6FgiiQ== @@ -3549,20 +3208,7 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^4.2.44": - version "4.2.44" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.2.44.tgz#aa215b6397af2ca70da3d431d725da6a3734e6a1" - integrity sha512-YPze3/lD1KmWuZsl9JlfhcgGLX7AXhSoaCDtiPntUjNW5/YY0lOHjkcgxyE9x/h5vvS1fzDifMGjzqnNlNiqOQ== - dependencies: - "@smithy/config-resolver" "^4.4.11" - "@smithy/credential-provider-imds" "^4.2.12" - "@smithy/node-config-provider" "^4.3.12" - "@smithy/property-provider" "^4.2.12" - "@smithy/smithy-client" "^4.12.5" - "@smithy/types" "^4.13.1" - tslib "^2.6.2" - -"@smithy/util-defaults-mode-node@^4.2.47": +"@smithy/util-defaults-mode-node@^4.2.44", "@smithy/util-defaults-mode-node@^4.2.47": version "4.2.47" resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.2.47.tgz#95ab7663f21513dff5c13b5ab7fa2957418254c5" integrity sha512-qSRbYp1EQ7th+sPFuVcVO05AE0QH635hycdEXlpzIahqHHf2Fyd/Zl+8v0XYMJ3cgDVPa0lkMefU7oNUjAP+DQ== @@ -3608,21 +3254,7 @@ "@smithy/types" "^4.13.1" tslib "^2.6.2" -"@smithy/util-stream@^4.5.19": - version "4.5.19" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.5.19.tgz#cb424e62e7a7a97c2839213efced47f1112efb7e" - integrity sha512-v4sa+3xTweL1CLO2UP0p7tvIMH/Rq1X4KKOxd568mpe6LSLMQCnDHs4uv7m3ukpl3HvcN2JH6jiCS0SNRXKP/w== - dependencies: - "@smithy/fetch-http-handler" "^5.3.15" - "@smithy/node-http-handler" "^4.4.16" - "@smithy/types" "^4.13.1" - "@smithy/util-base64" "^4.3.2" - "@smithy/util-buffer-from" "^4.2.2" - "@smithy/util-hex-encoding" "^4.2.2" - "@smithy/util-utf8" "^4.2.2" - tslib "^2.6.2" - -"@smithy/util-stream@^4.5.20": +"@smithy/util-stream@^4.5.19", "@smithy/util-stream@^4.5.20": version "4.5.20" resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.5.20.tgz#2d312ac8b9ea1780561a77048b027e7db1c6a3d4" integrity sha512-4yXLm5n/B5SRBR2p8cZ90Sbv4zL4NKsgxdzCzp/83cXw2KxLEumt5p+GAVyRNZgQOSrzXn9ARpO0lUe8XSlSDw== @@ -6247,21 +5879,13 @@ fast-uri@^3.0.1: resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.1.tgz#cddd2eecfc83a71c1be2cc2ef2061331be8a7134" integrity sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw== -fast-xml-builder@^1.0.0, fast-xml-builder@^1.1.4: +fast-xml-builder@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/fast-xml-builder/-/fast-xml-builder-1.1.4.tgz#0c407a1d9d5996336c0cd76f7ff785cac6413017" integrity sha512-f2jhpN4Eccy0/Uz9csxh3Nu6q4ErKxf0XIsasomfOihuSUa3/xw6w8dnOtCDgEItQFJG8KyXPzQXzcODDrrbOg== dependencies: path-expression-matcher "^1.1.3" -fast-xml-parser@5.4.1: - version "5.4.1" - resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-5.4.1.tgz#0c81b8ecfb3021e5ad83aa3df904af19a05bc601" - integrity sha512-BQ30U1mKkvXQXXkAGcuyUA/GA26oEB7NzOtsxCDtyu62sjGw5QraKFhx2Em3WQNjPw9PG6MQ9yuIIgkSDfGu5A== - dependencies: - fast-xml-builder "^1.0.0" - strnum "^2.1.2" - fast-xml-parser@5.5.8, fast-xml-parser@^5.3.6, fast-xml-parser@^5.3.8, fast-xml-parser@^5.5.7, fast-xml-parser@^5.5.8: version "5.5.8" resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-5.5.8.tgz#929571ed8c5eb96e6d9bd572ba14fc4b84875716" @@ -10972,7 +10596,7 @@ strip-json-comments@^3.1.1: resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== -strnum@^2.1.2, strnum@^2.2.0: +strnum@^2.2.0: version "2.2.1" resolved "https://registry.yarnpkg.com/strnum/-/strnum-2.2.1.tgz#d28f896b4ef9985212494ce8bcf7ca304fad8368" integrity sha512-BwRvNd5/QoAtyW1na1y1LsJGQNvRlkde6Q/ipqqEaivoMdV+B1OMOTVdwR+N/cwVUcIt9PYyHmV8HyexCZSupg==