diff --git a/README.md b/README.md index 35084573..849cef10 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.135.4 linux-x64 node-v22.22.2 +@salesforce/cli/2.135.5 linux-x64 node-v22.22.2 $ sf --help [COMMAND] USAGE $ sf COMMAND @@ -281,7 +281,7 @@ ERROR CODES ActivationFailed (4) Failed to activate the agent due to API or network errors. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/activate.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/activate.ts)_ ## `sf agent create` @@ -348,7 +348,7 @@ 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.38.1/src/commands/agent/create.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/create.ts)_ ## `sf agent deactivate` @@ -397,7 +397,7 @@ ERROR CODES DeactivationFailed (4) Failed to deactivate the agent due to API or network errors. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/deactivate.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/deactivate.ts)_ ## `sf agent generate agent-spec` @@ -504,7 +504,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.38.1/src/commands/agent/generate/agent-spec.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/generate/agent-spec.ts)_ ## `sf agent generate authoring-bundle` @@ -581,7 +581,7 @@ EXAMPLES other-package-dir/main/default --target-org my-dev-org ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/generate/authoring-bundle.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/generate/authoring-bundle.ts)_ ## `sf agent generate template` @@ -643,7 +643,7 @@ EXAMPLES my-package --source-org my-scratch-org ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/generate/template.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/generate/template.ts)_ ## `sf agent generate test-spec` @@ -708,7 +708,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.38.1/src/commands/agent/generate/test-spec.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/generate/test-spec.ts)_ ## `sf agent preview` @@ -781,7 +781,7 @@ EXAMPLES $ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/preview.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/preview.ts)_ ## `sf agent preview end` @@ -789,13 +789,18 @@ End an existing programmatic agent preview session and get trace location. ``` USAGE - $ sf agent preview end -o [--json] [--flags-dir ] [--api-version ] [--session-id ] [-n - ] [--authoring-bundle ] + $ sf agent preview end -o [--json] [--flags-dir ] [--api-version ] [--session-id | + --all] [-n | --authoring-bundle ] [-p] FLAGS -n, --api-name= API name of the activated published agent you want to preview. -o, --target-org= (required) Username or alias of the target org. Not required if the `target-org` configuration variable is already set. + -p, --no-prompt Don't prompt for confirmation before ending sessions. Has an effect only when used + with --all. + --all End all active preview sessions. Combine with --api-name or --authoring-bundle to + limit to a specific agent, or use with only --target-org to end sessions for all + agents found in the local session cache. Requires --target-org. --api-version= Override the api version used for api requests made by this command --authoring-bundle= API name of the authoring bundle metadata component that contains the agent's Agent Script file. @@ -815,13 +820,17 @@ DESCRIPTION The original "agent preview start" command outputs a session ID which you then use with the --session-id flag of this command to end the session. You don't have to specify the --session-id flag if an agent has only one active preview session. You must also use either the --authoring-bundle or --api-name flag to specify the API name of the authoring - bundle or the published agent, respecitvely. To find either API name, navigate to your package directory in your DX + bundle or the published agent, respectively. To find either API name, navigate to your package directory in your DX project. The API name of an authoring bundle is the same as its directory name under the "aiAuthoringBundles" metadata directory. Similarly, the published agent's API name is the same as its directory name under the "Bots" metadata directory. + Use the --all flag to end all active preview sessions at once. You can combine --all with --api-name or + --authoring-bundle to end only sessions for a specific agent, or use --all on its own to end every session across all + agents in the project. + EXAMPLES - End a preview session of a published agent by specifying its session ID and API name ; use the default org: + End a preview session of a published agent by specifying its session ID and API name; use the default org: $ sf agent preview end --session-id --api-name My_Published_Agent @@ -835,17 +844,28 @@ EXAMPLES $ sf agent preview end --authoring-bundle My_Local_Agent + End all active preview sessions for a specific agent without prompting: + + $ sf agent preview end --all --authoring-bundle My_Local_Agent --target-org --no-prompt + + End all active preview sessions across every agent in the local session cache for an org: + + $ sf agent preview end --all --target-org + ENVIRONMENT VARIABLES SF_TARGET_ORG Username or alias of your default org. Overrides the target-org configuration variable. ERROR CODES - Succeeded (0) Preview session ended successfully and traces saved. - NotFound (2) Agent not found, or no preview session exists for this agent. - PreviewEndFailed (4) Failed to end the preview session. - SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one. + Succeeded (0) Preview session ended successfully and traces saved. + ExactlyOneRequired (2) Neither --api-name nor --authoring-bundle was provided (required when --all is not + set). + NotFound (2) Agent not found, or no preview session exists for this agent. + PreviewEndFailed (4) Failed to end the preview session. + PreviewEndPartialFailure (68) With --all, one or more sessions failed to end while others succeeded. + SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/preview/end.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/preview/end.ts)_ ## `sf agent preview send` @@ -912,7 +932,7 @@ ERROR CODES SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/preview/send.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/preview/send.ts)_ ## `sf agent preview sessions` @@ -948,7 +968,7 @@ ERROR CODES Succeeded (0) Sessions listed successfully (or empty list if no active sessions). ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/preview/sessions.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/preview/sessions.ts)_ ## `sf agent preview start` @@ -1024,7 +1044,7 @@ ERROR CODES PreviewStartFailed (4) Preview session failed to start due to API or network errors. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/preview/start.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/preview/start.ts)_ ## `sf agent publish authoring-bundle` @@ -1088,7 +1108,7 @@ ERROR CODES Failed (1) Compilation errors found in the Agent Script file. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/publish/authoring-bundle.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/publish/authoring-bundle.ts)_ ## `sf agent test create` @@ -1152,7 +1172,7 @@ ERROR CODES DeploymentFailed (4) Deployment failed due to API or network errors. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/test/create.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/test/create.ts)_ ## `sf agent test list` @@ -1194,7 +1214,7 @@ ERROR CODES Failed (4) Failed to retrieve agent tests due to API or network errors. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/test/list.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/test/list.ts)_ ## `sf agent test results` @@ -1278,7 +1298,7 @@ ERROR CODES Failed (4) Failed to retrieve results due to API or network errors. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/test/results.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/test/results.ts)_ ## `sf agent test resume` @@ -1371,7 +1391,7 @@ ERROR CODES OperationFailed (4) Failed to poll test due to API or network errors. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/test/resume.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/test/resume.ts)_ ## `sf agent test run` @@ -1464,7 +1484,7 @@ ERROR CODES OperationFailed (4) Failed to start or poll test due to API or network errors. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/test/run.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/test/run.ts)_ ## `sf agent test run-eval` @@ -1546,7 +1566,7 @@ ERROR CODES OperationFailed (4) Failed to execute tests due to API or network errors. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/test/run-eval.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/test/run-eval.ts)_ ## `sf agent trace delete` @@ -1607,7 +1627,7 @@ ERROR CODES Succeeded (0) Traces deleted successfully (or no traces matched). ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/trace/delete.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/trace/delete.ts)_ ## `sf agent trace list` @@ -1677,7 +1697,7 @@ ERROR CODES Succeeded (0) Trace files listed successfully (or empty list if none found). ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/trace/list.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/trace/list.ts)_ ## `sf agent trace read` @@ -1750,7 +1770,7 @@ EXAMPLES $ sf agent trace read --session-id --json ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/trace/read.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/trace/read.ts)_ ## `sf agent validate authoring-bundle` @@ -1807,7 +1827,7 @@ ERROR CODES ServerError (3) Validation/compilation API returned HTTP 500. A server error occurred during compilation. ``` -_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.1/src/commands/agent/validate/authoring-bundle.ts)_ +_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.39.0/src/commands/agent/validate/authoring-bundle.ts)_ ## `sf alias list` @@ -2370,7 +2390,7 @@ EXAMPLES $ sf api request graphql --body example.txt --stream-to-file output.txt --include ``` -_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.29/src/commands/api/request/graphql.ts)_ +_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.30/src/commands/api/request/graphql.ts)_ ## `sf api request rest [URL]` @@ -2479,7 +2499,7 @@ FLAG DESCRIPTIONS https://github.com/salesforcecli/plugin-api/tree/main/test/test-files/data-project. ``` -_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.29/src/commands/api/request/rest.ts)_ +_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.30/src/commands/api/request/rest.ts)_ ## `sf autocomplete [SHELL]` @@ -2792,7 +2812,7 @@ EXAMPLES $ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/bulk/results.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/bulk/results.ts)_ ## `sf data create file` @@ -2841,7 +2861,7 @@ EXAMPLES $ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3 ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/create/file.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/create/file.ts)_ ## `sf data create record` @@ -2897,7 +2917,7 @@ EXAMPLES TracedEntityId=01p17000000R6bLAAS" ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/create/record.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/create/record.ts)_ ## `sf data delete bulk` @@ -2956,7 +2976,7 @@ FLAG DESCRIPTIONS and can be enabled only by a system administrator. ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/delete/bulk.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/delete/bulk.ts)_ ## `sf data delete record` @@ -3017,7 +3037,7 @@ EXAMPLES $ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/delete/record.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/delete/record.ts)_ ## `sf data delete resume` @@ -3056,7 +3076,7 @@ EXAMPLES $ sf data delete resume --use-most-recent --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/delete/resume.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/delete/resume.ts)_ ## `sf data export bulk` @@ -3123,7 +3143,7 @@ EXAMPLES --result-format json --wait 10 --all-rows ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/export/bulk.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/export/bulk.ts)_ ## `sf data export resume` @@ -3162,7 +3182,7 @@ EXAMPLES $ sf data export resume --use-most-recent ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/export/resume.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/export/resume.ts)_ ## `sf data export tree` @@ -3222,7 +3242,7 @@ EXAMPLES my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/export/tree.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/export/tree.ts)_ ## `sf data get record` @@ -3286,7 +3306,7 @@ EXAMPLES $ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/get/record.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/get/record.ts)_ ## `sf data import bulk` @@ -3338,7 +3358,7 @@ EXAMPLES $ sf data import bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/import/bulk.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/import/bulk.ts)_ ## `sf data import resume` @@ -3374,7 +3394,7 @@ EXAMPLES $ sf data import resume --use-most-recent --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/import/resume.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/import/resume.ts)_ ## `sf data import tree` @@ -3438,7 +3458,7 @@ FLAG DESCRIPTIONS - files(array) - Files: An array of files paths to load ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/import/tree.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/import/tree.ts)_ ## `sf data query` @@ -3491,7 +3511,7 @@ EXAMPLES $ sf data query --query "SELECT Name FROM ApexTrigger" --use-tooling-api ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/query.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/query.ts)_ ## `sf data resume` @@ -3528,7 +3548,7 @@ EXAMPLES $ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/resume.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/resume.ts)_ ## `sf data search` @@ -3578,7 +3598,7 @@ EXAMPLES $ sf data search --file query.txt --target-org my-scratch --result-format csv ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/search.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/search.ts)_ ## `sf data update bulk` @@ -3633,7 +3653,7 @@ EXAMPLES $ sf data update bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/update/bulk.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/update/bulk.ts)_ ## `sf data update record` @@ -3695,7 +3715,7 @@ EXAMPLES "ExpirationDate=2017-12-01T00:58:04.000+0000" ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/update/record.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/update/record.ts)_ ## `sf data update resume` @@ -3734,7 +3754,7 @@ EXAMPLES $ sf data update resume --use-most-recent ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/update/resume.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/update/resume.ts)_ ## `sf data upsert bulk` @@ -3790,7 +3810,7 @@ EXAMPLES my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/upsert/bulk.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/upsert/bulk.ts)_ ## `sf data upsert resume` @@ -3829,7 +3849,7 @@ EXAMPLES $ sf data upsert resume --use-most-recent --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/data/upsert/resume.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/upsert/resume.ts)_ ## `sf doctor` @@ -3924,7 +3944,7 @@ EXAMPLES $ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/force/data/bulk/delete.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/force/data/bulk/delete.ts)_ ## `sf force data bulk status` @@ -3961,7 +3981,7 @@ EXAMPLES $ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/force/data/bulk/status.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/force/data/bulk/status.ts)_ ## `sf force data bulk upsert` @@ -4019,7 +4039,7 @@ EXAMPLES --target-org my-scratch ``` -_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.98/src/commands/force/data/bulk/upsert.ts)_ +_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/force/data/bulk/upsert.ts)_ ## `sf help [COMMAND]` @@ -4420,7 +4440,7 @@ FLAG DESCRIPTIONS "agent.user.@your-org-domain.com". ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.12/src/commands/org/create/agent-user.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/create/agent-user.ts)_ ## `sf org create sandbox` @@ -4554,7 +4574,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.10.12/src/commands/org/create/sandbox.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/create/sandbox.ts)_ ## `sf org create scratch` @@ -4736,7 +4756,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.10.12/src/commands/org/create/scratch.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/create/scratch.ts)_ ## `sf org create user` @@ -4890,7 +4910,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.10.12/src/commands/org/delete/sandbox.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/delete/sandbox.ts)_ ## `sf org delete scratch` @@ -4934,7 +4954,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.10.12/src/commands/org/delete/scratch.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/delete/scratch.ts)_ ## `sf org disable tracking` @@ -4973,7 +4993,7 @@ EXAMPLES $ sf org disable tracking ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.12/src/commands/org/disable/tracking.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/disable/tracking.ts)_ ## `sf org display` @@ -5018,7 +5038,7 @@ EXAMPLES $ sf org display --target-org TestOrg1 --verbose ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.12/src/commands/org/display.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/display.ts)_ ## `sf org display user` @@ -5099,7 +5119,7 @@ EXAMPLES $ sf org enable tracking ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.12/src/commands/org/enable/tracking.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/enable/tracking.ts)_ ## `sf org generate password` @@ -5205,7 +5225,7 @@ EXAMPLES $ sf org list --clean ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.12/src/commands/org/list.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/list.ts)_ ## `sf org list auth` @@ -5344,7 +5364,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.10.12/src/commands/org/list/metadata.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/list/metadata.ts)_ ## `sf org list metadata-types` @@ -5399,7 +5419,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.10.12/src/commands/org/list/metadata-types.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/list/metadata-types.ts)_ ## `sf org list sobject record-counts` @@ -5945,7 +5965,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.10.12/src/commands/org/open.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/open.ts)_ ## `sf org open agent` @@ -6020,7 +6040,7 @@ FLAG DESCRIPTIONS flag. ``` -_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.12/src/commands/org/open/agent.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/open/agent.ts)_ ## `sf org open authoring-bundle` @@ -6066,7 +6086,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.10.12/src/commands/org/open/authoring-bundle.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/open/authoring-bundle.ts)_ ## `sf org refresh sandbox` @@ -6169,7 +6189,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.10.12/src/commands/org/refresh/sandbox.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/refresh/sandbox.ts)_ ## `sf org resume sandbox` @@ -6232,7 +6252,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.10.12/src/commands/org/resume/sandbox.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/resume/sandbox.ts)_ ## `sf org resume scratch` @@ -6285,7 +6305,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.10.12/src/commands/org/resume/scratch.ts)_ +_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/resume/scratch.ts)_ ## `sf package convert` @@ -10263,7 +10283,7 @@ EXAMPLES $ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api ``` -_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.110/src/commands/sobject/describe.ts)_ +_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.111/src/commands/sobject/describe.ts)_ ## `sf sobject list` @@ -10302,7 +10322,7 @@ EXAMPLES $ sf sobject list --sobject custom --target-org my-scratch-org ``` -_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.110/src/commands/sobject/list.ts)_ +_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.111/src/commands/sobject/list.ts)_ ## `sf template generate analytics template` diff --git a/package.json b/package.json index f7920770..a082b587 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.135.4", + "version": "2.135.5", "author": "Salesforce", "bin": { "sf": "./bin/run.js", @@ -159,18 +159,18 @@ "@oclif/plugin-which": "3.2.53", "@salesforce/core": "^8.28.0", "@salesforce/kit": "^3.1.6", - "@salesforce/plugin-agent": "1.38.1", + "@salesforce/plugin-agent": "1.39.0", "@salesforce/plugin-apex": "3.9.27", - "@salesforce/plugin-api": "1.3.29", + "@salesforce/plugin-api": "1.3.30", "@salesforce/plugin-auth": "4.3.10", - "@salesforce/plugin-data": "4.0.98", + "@salesforce/plugin-data": "4.0.99", "@salesforce/plugin-deploy-retrieve": "3.24.44", "@salesforce/plugin-info": "3.4.131", "@salesforce/plugin-limits": "3.3.89", "@salesforce/plugin-marketplace": "1.3.26", - "@salesforce/plugin-org": "5.10.12", + "@salesforce/plugin-org": "5.10.13", "@salesforce/plugin-packaging": "2.27.17", - "@salesforce/plugin-schema": "3.3.110", + "@salesforce/plugin-schema": "3.3.111", "@salesforce/plugin-settings": "2.4.78", "@salesforce/plugin-sobject": "1.4.105", "@salesforce/plugin-telemetry": "3.8.20", diff --git a/yarn.lock b/yarn.lock index ce3ac223..0e8fe40f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1790,10 +1790,10 @@ wordwrap "^1.0.0" wrap-ansi "^7.0.0" -"@oclif/multi-stage-output@^0.8.30", "@oclif/multi-stage-output@^0.8.36", "@oclif/multi-stage-output@^0.8.37": - version "0.8.38" - resolved "https://registry.yarnpkg.com/@oclif/multi-stage-output/-/multi-stage-output-0.8.38.tgz#7c5a55afc3126cd023e4001015287f4d51390a15" - integrity sha512-+1CV2VP+keL1NfcGJNPONEVEimq5JvaVUgSqU6YzW6FOZjh0zvkbVQr2krE0twwhYwI0J8SkQLwssR1pfpLKnw== +"@oclif/multi-stage-output@^0.8.36", "@oclif/multi-stage-output@^0.8.37", "@oclif/multi-stage-output@^0.8.40": + version "0.8.40" + resolved "https://registry.yarnpkg.com/@oclif/multi-stage-output/-/multi-stage-output-0.8.40.tgz#f858d113f5155cdda7e0b36831259f4159fa45eb" + integrity sha512-V2IQ5Tf82lDk5A/g3CUPwF5V6m9+7n9uZn8pxW4pM0H9O3unKPFlBLJDCL0jPdptk0nMr+Z1HCi8puH/i4+jFw== dependencies: "@oclif/core" "^4" "@types/react" "^18.3.12" @@ -2306,10 +2306,10 @@ jszip "^3.10.1" object-treeify "^2" -"@salesforce/plugin-agent@1.38.1": - version "1.38.1" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-agent/-/plugin-agent-1.38.1.tgz#f0d8e4fa3d517e1b845aaf9dcb1e5fd75d903834" - integrity sha512-Lp6qtVmdciGBs7RCYyHYKEk5R/X53Jb05QDVL5XQ3tjXW8co1//n7/XxoVDicYw8NvQi/cfXZDVOjI96f7sPMw== +"@salesforce/plugin-agent@1.39.0": + version "1.39.0" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-agent/-/plugin-agent-1.39.0.tgz#013d967bcff23403ee34ce109ce6777d2e8064c6" + integrity sha512-2o4i9U7AUi1F4MkgTdSn/r+OhPrZtRmvEcvGQnrasm7KL8mW2xb0b31NMhc/YZhLD922g7yibZ2GRu5syXGz7w== dependencies: "@inquirer/core" "^10.3.2" "@inquirer/prompts" "^7.10.1" @@ -2341,15 +2341,15 @@ "@salesforce/sf-plugins-core" "^12.2.16" ansis "^3.3.1" -"@salesforce/plugin-api@1.3.29": - version "1.3.29" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-api/-/plugin-api-1.3.29.tgz#bbe6b26c9e3614df1011bc2f5387283e4eedee59" - integrity sha512-OVOYv73O43V9l46vXWPFWrX1/z/vYZuXlFY1NcdnFR89hC9uWOHTu4+YVOdYjCemZ5c4rQ78XieuKe1TRDwKTA== +"@salesforce/plugin-api@1.3.30": + version "1.3.30" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-api/-/plugin-api-1.3.30.tgz#2e6a4879eb6ebfb2002aaf7bb4d60e857fafee72" + integrity sha512-LXWVFxOHJW+W7OZyRmOGb7GHCaiRqs5W3JMdDTlGNsnQpODw3hcShK29eWOukOqg44+ZZWP5kJSM/SGOqQYxfg== dependencies: "@oclif/core" "^4" "@salesforce/core" "^8.29.1" "@salesforce/kit" "^3.2.4" - "@salesforce/sf-plugins-core" "^12.2.11" + "@salesforce/sf-plugins-core" "^12.2.16" "@salesforce/ts-types" "^2.0.12" ansis "^3.3.2" form-data "^4.0.5" @@ -2385,10 +2385,10 @@ debug "^4.4.3" handlebars "^4.7.9" -"@salesforce/plugin-data@4.0.98": - version "4.0.98" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-data/-/plugin-data-4.0.98.tgz#cb2a4483e3886effd5cfd021d80946e8f26bc397" - integrity sha512-9XMg6gSMPC7wXJ/0a6duC03NijRzk35l8V7I3bVavZmJF+DZ0PXx0L+BJJ69UzI/XuDxBH86z3GS7ayqUKHW7Q== +"@salesforce/plugin-data@4.0.99": + version "4.0.99" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-data/-/plugin-data-4.0.99.tgz#ac080a5f29317d8842d7fa99736bc4f98e1373a5" + integrity sha512-4oSQAUkuXBrn7jNLYh3JtQTVgTUyB2NGMYCj+UUZBzpB0h74LgxybmAjHbo9Vp8lh7c+KsCvesCHjtuMuFz9wg== dependencies: "@jsforce/jsforce-node" "^3.10.14" "@oclif/multi-stage-output" "^0.8.36" @@ -2461,13 +2461,13 @@ got "^13.0.0" proxy-agent "^6.5.0" -"@salesforce/plugin-org@5.10.12": - version "5.10.12" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-org/-/plugin-org-5.10.12.tgz#97f4995776ea367223058183e9dd064315034164" - integrity sha512-VNo5BI42fSpO7nHJEWDc0OqjGal8BD3hHasLmo2qF8Q/uk44Hb7RuUxYDk4Bvdwcx3+z+dxdNt4OiLJwqEJNtQ== +"@salesforce/plugin-org@5.10.13": + version "5.10.13" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-org/-/plugin-org-5.10.13.tgz#daf71eb9b2df13aa3d814ea5054cd9a408b0cded" + integrity sha512-bMB3i22SpRHp+YJ8vH4J6gvd7moTOWV2N3G+pPr8VpSPINnFVVaciZpodUsyUkcLC423sP0anal6aRdO8dj70g== dependencies: "@oclif/core" "^4.11.2" - "@oclif/multi-stage-output" "^0.8.30" + "@oclif/multi-stage-output" "^0.8.40" "@salesforce/core" "^8.29.0" "@salesforce/kit" "^3.2.4" "@salesforce/sf-plugins-core" "^12.2.16" @@ -2521,10 +2521,10 @@ strip-ansi "^6" yarn-deduplicate "^6.0.2" -"@salesforce/plugin-schema@3.3.110": - version "3.3.110" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-schema/-/plugin-schema-3.3.110.tgz#999a64c8bef11bb831312137a55cefb89b82d339" - integrity sha512-NBwIKW6HVeybv0WIAL2bQ8JDETg0rOmOlUIRdzRX/ewkzclKY6jBJpNd5Woffrkwc1OvtOl0CrRQJ4bRCexJ8w== +"@salesforce/plugin-schema@3.3.111": + version "3.3.111" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-schema/-/plugin-schema-3.3.111.tgz#5e2bd579beb9ac818b5ad5a667d0acd8393ec381" + integrity sha512-DLhwJz60b60y65tGFoNfgwLmeRH5VDoO9In/CNN2YexA+ygp8l2POX7R+j9curJeHJc5mweFOr7q4QSRDpqSRQ== dependencies: "@oclif/core" "^4" "@salesforce/core" "^8.29.1" @@ -2615,7 +2615,7 @@ resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.10.3.tgz#52c867fdd60679cf216110aa49542b7ad391f5d1" integrity sha512-FKfvtrYTcvTXE9advzS25/DEY9yJhEyLvStm++eQFtnAaX1pe4G3oGHgiQ0q55BM5+0AlCh0+0CVtQv1t4oJRA== -"@salesforce/sf-plugins-core@12.2.16", "@salesforce/sf-plugins-core@^12", "@salesforce/sf-plugins-core@^12.2.11", "@salesforce/sf-plugins-core@^12.2.14", "@salesforce/sf-plugins-core@^12.2.15", "@salesforce/sf-plugins-core@^12.2.16", "@salesforce/sf-plugins-core@^12.2.6": +"@salesforce/sf-plugins-core@12.2.16", "@salesforce/sf-plugins-core@^12", "@salesforce/sf-plugins-core@^12.2.14", "@salesforce/sf-plugins-core@^12.2.15", "@salesforce/sf-plugins-core@^12.2.16", "@salesforce/sf-plugins-core@^12.2.6": version "12.2.16" resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-12.2.16.tgz#664ef3540f4556ba83a1e5378b5721d2aabde91e" integrity sha512-csZxi6gJ675/+9dc1Q9KDDq21XRy+tKtgr1ZSPyA6TeP0J4bnuIfsk9cZCOzxaI6T8L6lM3CyWltQMJ927vpzA==