diff --git a/README.md b/README.md index ebd48284..7d41ee4f 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.101.2 linux-x64 node-v22.17.1 +@salesforce/cli/2.101.3 linux-x64 node-v22.17.1 $ sf --help [COMMAND] USAGE $ sf COMMAND @@ -42,7 +42,9 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI. +- [`sf agent activate`](#sf-agent-activate) - [`sf agent create`](#sf-agent-create) +- [`sf agent deactivate`](#sf-agent-deactivate) - [`sf agent generate agent-spec`](#sf-agent-generate-agent-spec) - [`sf agent generate template`](#sf-agent-generate-template) - [`sf agent generate test-spec`](#sf-agent-generate-test-spec) @@ -203,6 +205,45 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI. - [`sf visualforce generate page`](#sf-visualforce-generate-page) - [`sf which`](#sf-which) +## `sf agent activate` + +Activate an agent in an org. + +``` +USAGE + $ sf agent activate -o [--json] [--flags-dir ] [--api-version ] [-n ] + +FLAGS + -n, --api-name= API name of the agent to activate. + -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 + +GLOBAL FLAGS + --flags-dir= Import flag values from a directory. + --json Format output as json. + +DESCRIPTION + Activate an agent in an org. + + Activating an agent makes it immediately available to your users. An agent must be active before you can preview it + with the "agent preview" CLI command or VS Code. + + You must know the agent's API name to activate it; you can either be prompted for it or you can specify it with the + --api-name flag. Find the agent's API name in its Agent Details page of your org's Agentforce Studio UI in Setup. + +EXAMPLES + Activate an agent in your default target org by being prompted: + + $ sf agent activate + + Activate an agent with API name Resort_Manager in the org with alias "my-org": + + $ sf agent activate --api-name Resort_Manager --target-org my-org +``` + +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/activate.ts)_ + ## `sf agent create` Create an agent in your org using a local agent spec file. @@ -263,7 +304,47 @@ EXAMPLES $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/create.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/create.ts)_ + +## `sf agent deactivate` + +Deactivate an agent in an org. + +``` +USAGE + $ sf agent deactivate -o [--json] [--flags-dir ] [--api-version ] [-n ] + +FLAGS + -n, --api-name= API name of the agent to deactivate. + -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 + +GLOBAL FLAGS + --flags-dir= Import flag values from a directory. + --json Format output as json. + +DESCRIPTION + Deactivate an agent in an org. + + Deactivating an agent makes it unavailable to your users. To make changes to an agent, such as adding or removing + topics or actions, you must deactivate it. You can't preview an agent with the "agent preview" CLI command or VS Code + if it's deactivated. + + You must know the agent's API name to deactivate it; you can either be prompted for it or you can specify it with the + --api-name flag. Find the agent's API name in its Agent Details page of your org's Agentforce Studio UI in Setup. + +EXAMPLES + Deactivate an agent in your default target org by being prompted: + + $ sf agent deactivate + + Deactivate the agent Resort_Manager in the org with alias "my_org": + + $ sf agent deactivate --api-name Resort_Manager --target-org my-org +``` + +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/deactivate.ts)_ ## `sf agent generate agent-spec` @@ -368,7 +449,7 @@ EXAMPLES $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/generate/agent-spec.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/generate/agent-spec.ts)_ ## `sf agent generate template` @@ -416,7 +497,7 @@ EXAMPLES force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1 ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/generate/template.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/generate/template.ts)_ ## `sf agent generate test-spec` @@ -474,7 +555,7 @@ EXAMPLES force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/generate/test-spec.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/generate/test-spec.ts)_ ## `sf agent preview` @@ -517,7 +598,8 @@ DESCRIPTION environment variable "SF_AGENT_PREVIEW_OUTPUT_DIR" to the directory. Or you can pass the directory to the --output-dir flag. - Find the agent's API name in its main details page in your org's Agent page in Setup. + Find the agent's API name in its Agent Details page of your org's Agentforce Studio UI in Setup. If your agent is + currently deactivated, use the "agent activate" CLI command to activate it. IMPORTANT: Before you use this command, you must complete a number of configuration steps in your org and your DX project. The examples in this help assume you've completed the steps. See "Preview an Agent" in the "Agentforce @@ -525,7 +607,7 @@ DESCRIPTION https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-preview.html. EXAMPLES - Interact with an agent with API name "Resort_Manager" in the org with alias "my-org" and the linked "agent-app" + Interact with an agent with API name Resort_Manager in the org with alias "my-org" and the linked "agent-app" connected app: $ sf agent preview --api-name Resort_Manager --target-org my-org --client-app agent-app @@ -537,7 +619,7 @@ EXAMPLES transcripts/my-preview ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/preview.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/preview.ts)_ ## `sf agent test create` @@ -592,7 +674,7 @@ EXAMPLES $ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/test/create.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/create.ts)_ ## `sf agent test list` @@ -627,7 +709,7 @@ EXAMPLES $ sf agent test list --target-org my-org ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/test/list.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/list.ts)_ ## `sf agent test results` @@ -683,7 +765,7 @@ FLAG DESCRIPTIONS test results aren't written. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/test/results.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/results.ts)_ ## `sf agent test resume` @@ -746,7 +828,7 @@ FLAG DESCRIPTIONS test results aren't written. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/test/resume.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/resume.ts)_ ## `sf agent test run` @@ -810,7 +892,7 @@ FLAG DESCRIPTIONS test results aren't written. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.23.8/src/commands/agent/test/run.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/run.ts)_ ## `sf alias list` @@ -969,7 +1051,7 @@ FLAG DESCRIPTIONS directory. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/analytics/generate/template.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/analytics/generate/template.ts)_ ## `sf apex generate class` @@ -1028,7 +1110,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.3.56/src/commands/apex/generate/class.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/apex/generate/class.ts)_ ## `sf apex generate trigger` @@ -1097,7 +1179,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.3.56/src/commands/apex/generate/trigger.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/apex/generate/trigger.ts)_ ## `sf apex get log` @@ -3324,7 +3406,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.3.56/src/commands/lightning/generate/app.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/lightning/generate/app.ts)_ ## `sf lightning generate component` @@ -3393,7 +3475,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.3.56/src/commands/lightning/generate/component.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/lightning/generate/component.ts)_ ## `sf lightning generate event` @@ -3448,7 +3530,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.3.56/src/commands/lightning/generate/event.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/lightning/generate/event.ts)_ ## `sf lightning generate interface` @@ -3503,7 +3585,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.3.56/src/commands/lightning/generate/interface.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/lightning/generate/interface.ts)_ ## `sf lightning generate test` @@ -3558,7 +3640,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.3.56/src/commands/lightning/generate/test.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/lightning/generate/test.ts)_ ## `sf org assign permset` @@ -3604,7 +3686,7 @@ EXAMPLES $ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user ``` -_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/assign/permset.ts)_ +_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/assign/permset.ts)_ ## `sf org assign permsetlicense` @@ -3651,7 +3733,7 @@ EXAMPLES user3 ``` -_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/assign/permsetlicense.ts)_ +_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/assign/permsetlicense.ts)_ ## `sf org create sandbox` @@ -4075,7 +4157,7 @@ FLAG DESCRIPTIONS might be different than what you specify in the definition file. ``` -_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/create/user.ts)_ +_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/create/user.ts)_ ## `sf org delete sandbox` @@ -4288,7 +4370,7 @@ EXAMPLES $ sf org display user --target-org me@my.org --json ``` -_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/display/user.ts)_ +_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/display/user.ts)_ ## `sf org enable tracking` @@ -4397,7 +4479,7 @@ EXAMPLES $ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org ``` -_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/generate/password.ts)_ +_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/generate/password.ts)_ ## `sf org list` @@ -4714,7 +4796,7 @@ EXAMPLES $ sf org list users --target-org me@my.org ``` -_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.31/src/commands/org/list/users.ts)_ +_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.32/src/commands/org/list/users.ts)_ ## `sf org login access-token` @@ -8711,7 +8793,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.3.56/src/commands/project/generate.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/project/generate.ts)_ ## `sf project generate manifest` @@ -9488,7 +9570,7 @@ FLAG DESCRIPTIONS etc. ``` -_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.56/src/commands/static-resource/generate.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/static-resource/generate.ts)_ ## `sf update [CHANNEL]` @@ -9602,7 +9684,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.3.56/src/commands/visualforce/generate/component.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/visualforce/generate/component.ts)_ ## `sf visualforce generate page` @@ -9652,7 +9734,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.3.56/src/commands/visualforce/generate/page.ts)_ +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.57/src/commands/visualforce/generate/page.ts)_ ## `sf which` diff --git a/package.json b/package.json index 1e8d1cbe..6383ecd9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.101.2", + "version": "2.101.3", "author": "Salesforce", "bin": { "sf": "./bin/run.js", @@ -157,7 +157,7 @@ "@oclif/plugin-which": "3.2.39", "@salesforce/core": "^8.9.1", "@salesforce/kit": "^3.1.6", - "@salesforce/plugin-agent": "1.23.8", + "@salesforce/plugin-agent": "1.24.0", "@salesforce/plugin-apex": "3.6.19", "@salesforce/plugin-api": "1.3.3", "@salesforce/plugin-auth": "3.7.16", @@ -172,9 +172,9 @@ "@salesforce/plugin-settings": "2.4.40", "@salesforce/plugin-sobject": "1.4.67", "@salesforce/plugin-telemetry": "3.6.52", - "@salesforce/plugin-templates": "56.3.56", + "@salesforce/plugin-templates": "56.3.57", "@salesforce/plugin-trust": "3.7.113", - "@salesforce/plugin-user": "3.6.31", + "@salesforce/plugin-user": "3.6.32", "@salesforce/sf-plugins-core": "12.2.3", "ansis": "^3.12.0" }, diff --git a/yarn.lock b/yarn.lock index bd00de52..54fb1f38 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1966,10 +1966,10 @@ resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570" integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw== -"@salesforce/agents@^0.16.0": - version "0.16.0" - resolved "https://registry.yarnpkg.com/@salesforce/agents/-/agents-0.16.0.tgz#631d11b0b69808c68500bfb82019c19b23c2779c" - integrity sha512-FS6Mr8a3+MIZ1yciE/6AnLAhSwPivwT3e/ZTQVuvWMZUMT7Z4TuIqVFijN/r76YdprN/lFGM8KNLpIplNX7tjw== +"@salesforce/agents@0.17.0": + version "0.17.0" + resolved "https://registry.yarnpkg.com/@salesforce/agents/-/agents-0.17.0.tgz#5584234a21ffac0fcafda3c83556dab1d88c3ba9" + integrity sha512-e94ZSybklrrm62jWnfQcpbNSMm5vSxo3yACAhDCATxsjbTh1Lrx1C9TuwEUAB/SV4BWNysUhiyNgyVbvUcyDog== dependencies: "@salesforce/core" "^8.18.5" "@salesforce/kit" "^3.2.3" @@ -2106,16 +2106,16 @@ jszip "^3.10.1" object-treeify "^2" -"@salesforce/plugin-agent@1.23.8": - version "1.23.8" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-agent/-/plugin-agent-1.23.8.tgz#18ee8f2ef79c054180ec11af257562b28e993990" - integrity sha512-lKQVDSJwWCa0O+0fRzc5QEyZCFCQzkl7lu449Q8Vnu1SgVXQAUqNTu9tncxDj34JkmSxe70Oec+bM1S6LPfEhQ== +"@salesforce/plugin-agent@1.24.0": + version "1.24.0" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-agent/-/plugin-agent-1.24.0.tgz#e62b70c5c67137a73c741293c0a3d74d166e5c0b" + integrity sha512-FEc6aC/Sg/KP2fcmFHSBAkEPJal8jAHe/dFh4W8dUkYNi99WJdjj4BMJbnxJsbapml+OQFipUN5jmV8dI/mpMw== dependencies: "@inquirer/core" "^10.1.6" "@inquirer/prompts" "^7.2.0" "@oclif/core" "^4" "@oclif/multi-stage-output" "^0.8.20" - "@salesforce/agents" "^0.16.0" + "@salesforce/agents" "0.17.0" "@salesforce/core" "^8.18.5" "@salesforce/kit" "^3.2.3" "@salesforce/sf-plugins-core" "^12.2.3" @@ -2364,12 +2364,12 @@ "@salesforce/ts-types" "^2.0.11" debug "^4.4.1" -"@salesforce/plugin-templates@56.3.56": - version "56.3.56" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-templates/-/plugin-templates-56.3.56.tgz#8e20827e2373abae2b7340c632415a66fc9b69d3" - integrity sha512-0Ii4bDy7Leal3LACPgxtBRrVX8UlmihQ+8ZXqG5Yntxr65y8LlG6JKOBAIpFojae9IcdErrCZRDmA3Tq3dvoFw== +"@salesforce/plugin-templates@56.3.57": + version "56.3.57" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-templates/-/plugin-templates-56.3.57.tgz#2a0e21a97c7153db5e1b6fce008c8d44fef035c6" + integrity sha512-lvMpzpYV5/bJvbYlQujfNXTYDqRPCZR0TQGmO/+Duh4nGzdl5eQnAjnmSciDDlsIl5HQSD7buceDyRSAVjBTlw== dependencies: - "@salesforce/core" "^8.18.5" + "@salesforce/core" "^8.18.7" "@salesforce/sf-plugins-core" "^12" "@salesforce/templates" "^64.2.1" @@ -2390,12 +2390,12 @@ semver "^7.7.2" shelljs "0.8.5" -"@salesforce/plugin-user@3.6.31": - version "3.6.31" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-user/-/plugin-user-3.6.31.tgz#4bed422d2e14d398378a9cad66e417b3d0388cb2" - integrity sha512-UamO70QkrWFBNjb++OofO/J3r7l7l6T5LpJ7mGJsSWXmu63TKjJijluBcbhu7M1vdcgwuajZiCY9UMZs0sgHGQ== +"@salesforce/plugin-user@3.6.32": + version "3.6.32" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-user/-/plugin-user-3.6.32.tgz#edc7f5825fcff6a4fd7122136a38a7d28213510b" + integrity sha512-5FxRfKzDjOgPK/HqS7dTnFQi5qpk+ZG3D7f+lqXkCDa8UeZYYT/rNOvPt0WOkvpLso0brL56utSQSYk4E30vRg== dependencies: - "@salesforce/core" "^8.18.5" + "@salesforce/core" "^8.18.7" "@salesforce/kit" "^3.2.2" "@salesforce/sf-plugins-core" "^12.2.3" "@salesforce/ts-types" "^2.0.11"