@salesforce/cli 2.115.12 → 2.115.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
25
25
  $ sf COMMAND
26
26
  running command...
27
27
  $ sf (--version|-v)
28
- @salesforce/cli/2.115.12 linux-x64 node-v22.21.1
28
+ @salesforce/cli/2.115.14 linux-x64 node-v22.21.1
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -46,14 +46,17 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
46
46
  - [`sf agent create`](#sf-agent-create)
47
47
  - [`sf agent deactivate`](#sf-agent-deactivate)
48
48
  - [`sf agent generate agent-spec`](#sf-agent-generate-agent-spec)
49
+ - [`sf agent generate authoring-bundle`](#sf-agent-generate-authoring-bundle)
49
50
  - [`sf agent generate template`](#sf-agent-generate-template)
50
51
  - [`sf agent generate test-spec`](#sf-agent-generate-test-spec)
51
52
  - [`sf agent preview`](#sf-agent-preview)
53
+ - [`sf agent publish authoring-bundle`](#sf-agent-publish-authoring-bundle)
52
54
  - [`sf agent test create`](#sf-agent-test-create)
53
55
  - [`sf agent test list`](#sf-agent-test-list)
54
56
  - [`sf agent test results`](#sf-agent-test-results)
55
57
  - [`sf agent test resume`](#sf-agent-test-resume)
56
58
  - [`sf agent test run`](#sf-agent-test-run)
59
+ - [`sf agent validate authoring-bundle`](#sf-agent-validate-authoring-bundle)
57
60
  - [`sf alias list`](#sf-alias-list)
58
61
  - [`sf alias set`](#sf-alias-set)
59
62
  - [`sf alias unset`](#sf-alias-unset)
@@ -244,7 +247,7 @@ EXAMPLES
244
247
  $ sf agent activate --api-name Resort_Manager --target-org my-org
245
248
  ```
246
249
 
247
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/activate.ts)_
250
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/activate.ts)_
248
251
 
249
252
  ## `sf agent create`
250
253
 
@@ -272,6 +275,11 @@ GLOBAL FLAGS
272
275
  DESCRIPTION
273
276
  Create an agent in your org using a local agent spec file.
274
277
 
278
+ NOTE: This command creates an agent that doesn't use Agent Script as its blueprint. We generally don't recommend you
279
+ use this workflow to create an agent. Rather, use the "agent generate|validate|publish authoring-bundle" commands to
280
+ author agents that use the Agent Script language. See "Author an Agent"
281
+ (https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-nga-author-agent.html) for details.
282
+
275
283
  To run this command, you must have an agent spec file, which is a YAML file that define the agent properties and
276
284
  contains a list of AI-generated topics. Topics define the range of jobs the agent can handle. Use the "agent generate
277
285
  agent-spec" CLI command to generate an agent spec file. Then specify the file to this command using the --spec flag,
@@ -306,7 +314,7 @@ EXAMPLES
306
314
  $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
307
315
  ```
308
316
 
309
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/create.ts)_
317
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/create.ts)_
310
318
 
311
319
  ## `sf agent deactivate`
312
320
 
@@ -346,7 +354,7 @@ EXAMPLES
346
354
  $ sf agent deactivate --api-name Resort_Manager --target-org my-org
347
355
  ```
348
356
 
349
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/deactivate.ts)_
357
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/deactivate.ts)_
350
358
 
351
359
  ## `sf agent generate agent-spec`
352
360
 
@@ -397,10 +405,9 @@ GLOBAL FLAGS
397
405
  DESCRIPTION
398
406
  Generate an agent spec, which is a YAML file that captures what an agent can do.
399
407
 
400
- The first step in creating an agent in your org with Salesforce CLI is to generate an agent spec using this command.
401
- An agent spec is a YAML-formatted file that contains information about the agent, such as its role and company
402
- description, and then an AI-generated list of topics based on this information. Topics define the range of jobs your
403
- agent can handle.
408
+ An agent spec is a YAML-formatted file that contains basic information about the agent, such as its role, company
409
+ description, and an AI-generated list of topics based on this information. Topics define the range of jobs your agent
410
+ can handle.
404
411
 
405
412
  Use flags, such as --role and --company-description, to provide details about your company and the role that the agent
406
413
  plays in your company. If you prefer, you can also be prompted for the basic information; use --full-interview to be
@@ -418,8 +425,11 @@ DESCRIPTION
418
425
  add context to the agent's prompts, the tone of the prompts, and the username of a user in the org to assign to the
419
426
  agent.
420
427
 
421
- When your agent spec is ready, you then create the agent in your org by running the "agent create" CLI command and
422
- specifying the spec with the --spec flag.
428
+ When your agent spec is ready, generate an authoring bundle from it by passing the spec file to the --spec flag of the
429
+ "agent generate authoring-bundle" CLI command. An authoring bundle is a metadata type that contains an Agent Script
430
+ file, which is the blueprint for an agent. (While not recommended, you can also use the agent spec file to immediately
431
+ create an agent with the "agent create" command. We don't recommend this workflow because these types of agents don't
432
+ use Agent Script, and are thus less flexible and more difficult to maintain.)
423
433
 
424
434
  EXAMPLES
425
435
  Generate an agent spec in the default location and use flags to specify the agent properties, such as its role and
@@ -451,7 +461,73 @@ EXAMPLES
451
461
  $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
452
462
  ```
453
463
 
454
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/generate/agent-spec.ts)_
464
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/generate/agent-spec.ts)_
465
+
466
+ ## `sf agent generate authoring-bundle`
467
+
468
+ Generate an authoring bundle from an existing agent spec YAML file.
469
+
470
+ ```
471
+ USAGE
472
+ $ sf agent generate authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-name <value>] [--api-version <value>] [-f
473
+ <value>] [-d <value>] [-n <value>]
474
+
475
+ FLAGS
476
+ -d, --output-dir=<value> Directory where the authoring bundle files are generated.
477
+ -f, --spec=<value> Path to the agent spec YAML file; if not specified, the command provides a list that you
478
+ can choose from.
479
+ -n, --name=<value> Name (label) of the authoring bundle; if not specified, you're prompted for the name.
480
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
481
+ configuration variable is already set.
482
+ --api-name=<value> API name of the new authoring bundle; if not specified, the API name is derived from the
483
+ authoring bundle name (label); the API name can't exist in the org.
484
+ --api-version=<value> Override the api version used for api requests made by this command
485
+
486
+ GLOBAL FLAGS
487
+ --flags-dir=<value> Import flag values from a directory.
488
+ --json Format output as json.
489
+
490
+ DESCRIPTION
491
+ Generate an authoring bundle from an existing agent spec YAML file.
492
+
493
+ Authoring bundles are metadata components that contain an agent's Agent Script file. The Agent Script file is the
494
+ agent's blueprint; it fully describes what the agent can do using the Agent Script language.
495
+
496
+ Use this command to generate a new authoring bundle based on an agent spec YAML file, which you create with the "agent
497
+ generate agent-spec" command. The agent spec YAML file is a high-level description of the agent; it describes its
498
+ essence rather than exactly what it can do.
499
+
500
+ The metadata type for authoring bundles is aiAuthoringBundle, which consist of a standard
501
+ "<bundle-api-name>.bundle-meta.xml" metadata file and the Agent Script file (with extension ".agent"). When you run
502
+ this command, the new authoring bundle is generated in the force-app/main/default/aiAuthoringBundles/<bundle-api-name>
503
+ directory. Use the --output-dir flag to generate them elsewhere.
504
+
505
+ After you generate the initial authoring bundle, code the Agent Script file so your agent behaves exactly as you want.
506
+ The Agent Script file generated by this command is just a first draft of your agent! Interactively test the agent by
507
+ conversing with it using the "agent preview" command. Then publish the agent to your org with the "agent publish
508
+ authoring-bundle" command.
509
+
510
+ This command requires an org because it uses it to access an LLM for generating the Agent Script file.
511
+
512
+ EXAMPLES
513
+ Generate an authoring bundle by being prompted for all required values, such as the agent spec YAML file, the bundle
514
+ name, and the API name; use your default org:
515
+
516
+ $ sf agent generate authoring-bundle
517
+
518
+ Generate an authoring bundle from the "specs/agentSpec.yaml" agent spec YAML file and give it the label "My
519
+ Authoring Bundle"; use your default org:
520
+
521
+ $ sf agent generate authoring-bundle --spec specs/agentSpec.yaml --name "My Authoring Bundle"
522
+
523
+ Similar to previous example, but generate the authoring bundle files in the "other-package-dir/main/default" package
524
+ directory; use the org with alias "my-dev-org":
525
+
526
+ $ sf agent generate authoring-bundle --spec specs/agentSpec.yaml --name "My Authoring Bundle" --output-dir \
527
+ other-package-dir/main/default --target-org my-dev-org
528
+ ```
529
+
530
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/generate/authoring-bundle.ts)_
455
531
 
456
532
  ## `sf agent generate template`
457
533
 
@@ -499,7 +575,7 @@ EXAMPLES
499
575
  force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
500
576
  ```
501
577
 
502
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/generate/template.ts)_
578
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/generate/template.ts)_
503
579
 
504
580
  ## `sf agent generate test-spec`
505
581
 
@@ -560,71 +636,133 @@ EXAMPLES
560
636
  force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
561
637
  ```
562
638
 
563
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/generate/test-spec.ts)_
639
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/generate/test-spec.ts)_
564
640
 
565
641
  ## `sf agent preview`
566
642
 
567
- Interact with an active agent to preview how the agent responds to your statements, questions, and commands (utterances).
643
+ Interact with an agent to preview how it responds to your statements, questions, and commands (utterances).
568
644
 
569
645
  ```
570
646
  USAGE
571
- $ sf agent preview (-c <value> -o <value>) [--flags-dir <value>] [--api-version <value>] [-n <value>] [-d
572
- <value>] [-x]
647
+ $ sf agent preview [--flags-dir <value>] [--api-version <value>] (-c <value> -o <value>) [-n <value>]
648
+ [--authoring-bundle <value>] [-d <value>] [-x] [--use-live-actions]
573
649
 
574
650
  FLAGS
575
- -c, --client-app=<value> (required) Name of the linked client app to use for the agent connection. You must have
576
- previously created this link with "org login web --client-app". Run "org display" to see
577
- the available linked client apps.
578
- -d, --output-dir=<value> Directory where conversation transcripts are saved.
579
- -n, --api-name=<value> API name of the agent you want to interact with.
580
- -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
581
- configuration variable is already set.
582
- -x, --apex-debug Enable Apex debug logging during the agent preview conversation.
583
- --api-version=<value> Override the api version used for api requests made by this command
651
+ -c, --client-app=<value> Name of the linked client app to use for the connection to the published and active
652
+ agent.
653
+ -d, --output-dir=<value> Directory where conversation transcripts are saved.
654
+ -n, --api-name=<value> API name of the published and active agent you want to interact with.
655
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
656
+ configuration variable is already set.
657
+ -x, --apex-debug Enable Apex debug logging during the agent preview conversation.
658
+ --api-version=<value> Override the api version used for api requests made by this command
659
+ --authoring-bundle=<value> API name of the authoring bundle metadata component that contains the agent's Agent
660
+ Script file.
661
+ --use-live-actions Use real actions in the org; if not specified, preview uses AI to simulate (mock)
662
+ actions.
584
663
 
585
664
  GLOBAL FLAGS
586
665
  --flags-dir=<value> Import flag values from a directory.
587
666
 
588
667
  DESCRIPTION
589
- Interact with an active agent to preview how the agent responds to your statements, questions, and commands
590
- (utterances).
668
+ Interact with an agent to preview how it responds to your statements, questions, and commands (utterances).
669
+
670
+ Use this command to have a natural language conversation with an agent while you code its Agent Script file.
671
+ Previewing an agent works like an initial test to make sure it responds to your utterances as you expect. For example,
672
+ you can test that the agent uses a particular topic when asked a question, and then whether it invokes the correct
673
+ action associated with that topic. This command is the CLI-equivalent of the Preview panel in your org's Agentforce
674
+ Builder UI.
591
675
 
592
- Use this command to have a natural language conversation with an active agent in your org, as if you were an actual
593
- user. The interface is simple: in the "Start typing..." prompt, enter a statement, question, or command; when you're
594
- done, enter Return. Your utterance is posted on the right along with a timestamp. The agent then responds on the left.
595
- To exit the conversation, hit ESC or Control+C.
676
+ This command uses the agent's local authoring bundle, which contains its Agent Script file. You can let the command
677
+ provide a list of authoring bundles (labeled "(Agent Script)") to choose from or use the --authoring-bundle flag to
678
+ specify a bundle's API name.
596
679
 
597
- This command is useful to test if the agent responds to your utterances as you expect. For example, you can test that
598
- the agent uses a particular topic when asked a question, and then whether it invokes the correct action associated
599
- with that topic. This command is the CLI-equivalent of the Conversation Preview panel in your org's Agent Builder UI.
680
+ You can use these two modes when previewing an agent from its Agent Script file:
681
+
682
+ - Simulated mode (Default): Uses only the Agent Script file to converse, and it simulates (mocks) all the actions. Use
683
+ this mode if none of the Apex classes, flows, and prompt templates that implement your actions are available yet. The
684
+ LLM uses the information about topics in the Agent Script file to simulate what the action does or how it responds.
685
+ - Live mode: Uses the actual Apex classes, flows, and prompt templates in your development org in the agent preview.
686
+ If you've changed the Apex classe, flows, or prompt templates in your local DX project, then you must deploy them to
687
+ your development org if you want to use them in your live preview. You can use the Apex Replay Debugger to debug your
688
+ Apex classes when using live mode.
689
+
690
+ The interface is simple: in the "Start typing..." prompt, enter a statement, question, or command; when you're done,
691
+ enter Return. Your utterance is posted on the right along with a timestamp. The agent then responds on the left. To
692
+ exit the conversation, hit ESC or Control+C.
600
693
 
601
694
  When the session concludes, the command asks if you want to save the API responses and chat transcripts. By default,
602
- the files are saved to the "./temp/agent-preview" directory. Specify a new default directory by setting the
603
- environment variable "SF_AGENT_PREVIEW_OUTPUT_DIR" to the directory. Or you can pass the directory to the --output-dir
695
+ the files are saved to the "./temp/agent-preview" directory. Specify a new default directory with the --output-dir
604
696
  flag.
605
697
 
606
- Find the agent's API name in its Agent Details page of your org's Agentforce Studio UI in Setup. If your agent is
607
- currently deactivated, use the "agent activate" CLI command to activate it.
698
+ NOTE: You can also use this command to connect to a published and active agent, which are labeled "(Published)" if you
699
+ let this command provide the list of agents to preview. That use case, however, requires additional security and
700
+ configuration in both your org and your DX project. The examples in this help are for previewing an agent from its
701
+ Agent Script file in your DX project and require only simple authorization of your org, such as with the "org login
702
+ web" command. The --client-app and --api-name flags are used only for previewing published and active agents, they
703
+ don't apply to Agent Script agents. See "Connect to a Published Agent" in the "Agentforce Developer Guide" for
704
+ complete documentation: https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-preview.html.
705
+
706
+ EXAMPLES
707
+ Preview an agent in simulated mode by choosing from a list of authoring bundles provided by the command; use the org
708
+ with alias "my-dev-org":
709
+
710
+ $ sf agent preview --target-org my-dev-org
711
+
712
+ Preview an agent in live mode by choosing from a list of authoring bundles. Save the conversation transcripts to the
713
+ "./transcripts/my-preview" directory, enable the Apex debug logs, and use your default org:
714
+
715
+ $ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
716
+ ```
717
+
718
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/preview.ts)_
719
+
720
+ ## `sf agent publish authoring-bundle`
721
+
722
+ Publish an authoring bundle to your org, which results in a new agent or a new version of an existing agent.
723
+
724
+ ```
725
+ USAGE
726
+ $ sf agent publish authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
608
727
 
609
- IMPORTANT: Before you use this command, you must complete a number of configuration steps in your org and your DX
610
- project. The examples in this help assume you've completed the steps. See "Preview an Agent" in the "Agentforce
611
- Developer Guide" for complete documentation:
612
- https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-preview.html.
728
+ FLAGS
729
+ -n, --api-name=<value> API name of the authoring bundle you want to publish; if not specified, the command
730
+ provides a list that you can choose from.
731
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
732
+ configuration variable is already set.
733
+ --api-version=<value> Override the api version used for api requests made by this command
734
+
735
+ GLOBAL FLAGS
736
+ --flags-dir=<value> Import flag values from a directory.
737
+ --json Format output as json.
738
+
739
+ DESCRIPTION
740
+ Publish an authoring bundle to your org, which results in a new agent or a new version of an existing agent.
741
+
742
+ An authoring bundle is a metadata type (named aiAuthoringBundle) that provides the blueprint for an agent. The
743
+ metadata type contains two files: the standard metatada XML file and an Agent Script file (extension ".agent") that
744
+ fully describes the agent using the Agent Script language.
745
+
746
+ When you publish an authoring bundle to your org, a number of things happen. First, this command validates that the
747
+ Agent Script file successfully compiles. If there are compilation errors, the command exits and you must fix the Agent
748
+ Script file to continue. Once the Agent Script file compiles, then it's published to the org, which in turn creates
749
+ new associated metadata (Bot, BotVersion, GenAiX), or new versions of the metadata if the agent already exists. The
750
+ new or updated metadata is retrieved back to your DX project, and then the authoring bundle metadata
751
+ (AiAuthoringBundle) is deployed to your org.
752
+
753
+ This command uses the API name of the authoring bundle.
613
754
 
614
755
  EXAMPLES
615
- Interact with an agent with API name Resort_Manager in the org with alias "my-org" and the linked "agent-app"
616
- connected app:
756
+ Publish an authoring bundle by being prompted for its API name; use your default org:
617
757
 
618
- $ sf agent preview --api-name Resort_Manager --target-org my-org --client-app agent-app
758
+ $ sf agent publish authoring-bundle
619
759
 
620
- Same as the preceding example, but this time save the conversation transcripts to the "./transcripts/my-preview"
621
- directory rather than the default "./temp/agent-preview":
760
+ Publish an authoring bundle with API name MyAuthoringBundle to the org with alias "my-dev-org":
622
761
 
623
- $ sf agent preview --api-name Resort_Manager --target-org my-org --client-app agent-app --output-dir \
624
- transcripts/my-preview
762
+ $ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
625
763
  ```
626
764
 
627
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/preview.ts)_
765
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/publish/authoring-bundle.ts)_
628
766
 
629
767
  ## `sf agent test create`
630
768
 
@@ -679,7 +817,7 @@ EXAMPLES
679
817
  $ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
680
818
  ```
681
819
 
682
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/test/create.ts)_
820
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/test/create.ts)_
683
821
 
684
822
  ## `sf agent test list`
685
823
 
@@ -714,7 +852,7 @@ EXAMPLES
714
852
  $ sf agent test list --target-org my-org
715
853
  ```
716
854
 
717
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/test/list.ts)_
855
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/test/list.ts)_
718
856
 
719
857
  ## `sf agent test results`
720
858
 
@@ -780,7 +918,7 @@ FLAG DESCRIPTIONS
780
918
  expression when using custom evaluations.
781
919
  ```
782
920
 
783
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/test/results.ts)_
921
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/test/results.ts)_
784
922
 
785
923
  ## `sf agent test resume`
786
924
 
@@ -853,7 +991,7 @@ FLAG DESCRIPTIONS
853
991
  expression when using custom evaluations.
854
992
  ```
855
993
 
856
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/test/resume.ts)_
994
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/test/resume.ts)_
857
995
 
858
996
  ## `sf agent test run`
859
997
 
@@ -927,7 +1065,54 @@ FLAG DESCRIPTIONS
927
1065
  expression when using custom evaluations.
928
1066
  ```
929
1067
 
930
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.34/src/commands/agent/test/run.ts)_
1068
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/test/run.ts)_
1069
+
1070
+ ## `sf agent validate authoring-bundle`
1071
+
1072
+ Validate an authoring bundle to ensure its Agent Script file compiles successfully and can be used to publish an agent.
1073
+
1074
+ ```
1075
+ USAGE
1076
+ $ sf agent validate authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
1077
+
1078
+ FLAGS
1079
+ -n, --api-name=<value> API name of the authoring bundle you want to validate; if not specified, the command
1080
+ provides a list that you can choose from.
1081
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
1082
+ configuration variable is already set.
1083
+ --api-version=<value> Override the api version used for api requests made by this command
1084
+
1085
+ GLOBAL FLAGS
1086
+ --flags-dir=<value> Import flag values from a directory.
1087
+ --json Format output as json.
1088
+
1089
+ DESCRIPTION
1090
+ Validate an authoring bundle to ensure its Agent Script file compiles successfully and can be used to publish an
1091
+ agent.
1092
+
1093
+ An authoring bundle is a metadata type (named aiAuthoringBundle) that provides the blueprint for an agent. The
1094
+ metadata type contains two files: the standard metatada XML file and an Agent Script file (extension ".agent") that
1095
+ fully describes the agent using the Agent Script language.
1096
+
1097
+ This command validates that the Agent Script file in the authoring bundle compiles without errors so that you can
1098
+ later publish the bundle to your org. Use this command while you code the Agent Script file to ensure that it's valid.
1099
+ If the validation fails, the command outputs the list of syntax errors, a brief description of the error, and the
1100
+ location in the Agent Script file where the error occurred.
1101
+
1102
+ This command uses the API name of the authoring bundle. If you don't provide an API name with the --api-name flag, the
1103
+ command searches the current DX project and outputs a list of authoring bundles that it found for you to choose from.
1104
+
1105
+ EXAMPLES
1106
+ Validate an authoring bundle by being prompted for its API name; use your default org:
1107
+
1108
+ $ sf agent validate authoring-bundle
1109
+
1110
+ Validate an authoring bundle with API name MyAuthoringBundle; use the org with alias "my-dev-org":
1111
+
1112
+ $ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
1113
+ ```
1114
+
1115
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.25.1/src/commands/agent/validate/authoring-bundle.ts)_
931
1116
 
932
1117
  ## `sf alias list`
933
1118
 
@@ -1086,7 +1271,7 @@ FLAG DESCRIPTIONS
1086
1271
  directory.
1087
1272
  ```
1088
1273
 
1089
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/analytics/generate/template.ts)_
1274
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/analytics/generate/template.ts)_
1090
1275
 
1091
1276
  ## `sf apex generate class`
1092
1277
 
@@ -1145,7 +1330,7 @@ FLAG DESCRIPTIONS
1145
1330
  Supplied parameter values or default values are filled into a copy of the template.
1146
1331
  ```
1147
1332
 
1148
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/apex/generate/class.ts)_
1333
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/apex/generate/class.ts)_
1149
1334
 
1150
1335
  ## `sf apex generate trigger`
1151
1336
 
@@ -1214,7 +1399,7 @@ FLAG DESCRIPTIONS
1214
1399
  Supplied parameter values or default values are filled into a copy of the template.
1215
1400
  ```
1216
1401
 
1217
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/apex/generate/trigger.ts)_
1402
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/apex/generate/trigger.ts)_
1218
1403
 
1219
1404
  ## `sf apex get log`
1220
1405
 
@@ -1270,7 +1455,7 @@ FLAG DESCRIPTIONS
1270
1455
  directory.
1271
1456
  ```
1272
1457
 
1273
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.9/src/commands/apex/get/log.ts)_
1458
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/apex/get/log.ts)_
1274
1459
 
1275
1460
  ## `sf apex get test`
1276
1461
 
@@ -1330,7 +1515,7 @@ EXAMPLES
1330
1515
  me@myorg'
1331
1516
  ```
1332
1517
 
1333
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.9/src/commands/apex/get/test.ts)_
1518
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/apex/get/test.ts)_
1334
1519
 
1335
1520
  ## `sf apex list log`
1336
1521
 
@@ -1370,7 +1555,7 @@ EXAMPLES
1370
1555
  $ sf apex list log --target-org me@my.org
1371
1556
  ```
1372
1557
 
1373
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.9/src/commands/apex/list/log.ts)_
1558
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/apex/list/log.ts)_
1374
1559
 
1375
1560
  ## `sf apex run`
1376
1561
 
@@ -1417,7 +1602,7 @@ EXAMPLES
1417
1602
  $ sf apex run
1418
1603
  ```
1419
1604
 
1420
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.9/src/commands/apex/run.ts)_
1605
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/apex/run.ts)_
1421
1606
 
1422
1607
  ## `sf apex run test`
1423
1608
 
@@ -1563,7 +1748,7 @@ FLAG DESCRIPTIONS
1563
1748
  --tests Test1 --tests Test2
1564
1749
  ```
1565
1750
 
1566
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.9/src/commands/apex/run/test.ts)_
1751
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/apex/run/test.ts)_
1567
1752
 
1568
1753
  ## `sf apex tail log`
1569
1754
 
@@ -1606,7 +1791,7 @@ EXAMPLES
1606
1791
  $ sf apex tail log --color --skip-trace-flag
1607
1792
  ```
1608
1793
 
1609
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.9/src/commands/apex/tail/log.ts)_
1794
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/apex/tail/log.ts)_
1610
1795
 
1611
1796
  ## `sf api request graphql`
1612
1797
 
@@ -3423,7 +3608,7 @@ FLAG DESCRIPTIONS
3423
3608
  Supplied parameter values or default values are filled into a copy of the template.
3424
3609
  ```
3425
3610
 
3426
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/lightning/generate/app.ts)_
3611
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/lightning/generate/app.ts)_
3427
3612
 
3428
3613
  ## `sf lightning generate component`
3429
3614
 
@@ -3492,7 +3677,7 @@ FLAG DESCRIPTIONS
3492
3677
  Supplied parameter values or default values are filled into a copy of the template.
3493
3678
  ```
3494
3679
 
3495
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/lightning/generate/component.ts)_
3680
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/lightning/generate/component.ts)_
3496
3681
 
3497
3682
  ## `sf lightning generate event`
3498
3683
 
@@ -3547,7 +3732,7 @@ FLAG DESCRIPTIONS
3547
3732
  Supplied parameter values or default values are filled into a copy of the template.
3548
3733
  ```
3549
3734
 
3550
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/lightning/generate/event.ts)_
3735
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/lightning/generate/event.ts)_
3551
3736
 
3552
3737
  ## `sf lightning generate interface`
3553
3738
 
@@ -3602,7 +3787,7 @@ FLAG DESCRIPTIONS
3602
3787
  Supplied parameter values or default values are filled into a copy of the template.
3603
3788
  ```
3604
3789
 
3605
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/lightning/generate/interface.ts)_
3790
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/lightning/generate/interface.ts)_
3606
3791
 
3607
3792
  ## `sf lightning generate test`
3608
3793
 
@@ -3657,7 +3842,7 @@ FLAG DESCRIPTIONS
3657
3842
  Supplied parameter values or default values are filled into a copy of the template.
3658
3843
  ```
3659
3844
 
3660
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/lightning/generate/test.ts)_
3845
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/lightning/generate/test.ts)_
3661
3846
 
3662
3847
  ## `sf logic get test`
3663
3848
 
@@ -3705,7 +3890,7 @@ EXAMPLES
3705
3890
  $ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
3706
3891
  ```
3707
3892
 
3708
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.9/src/commands/logic/get/test.ts)_
3893
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/logic/get/test.ts)_
3709
3894
 
3710
3895
  ## `sf logic run test`
3711
3896
 
@@ -3827,7 +4012,7 @@ FLAG DESCRIPTIONS
3827
4012
  --tests Test1 --tests Test2
3828
4013
  ```
3829
4014
 
3830
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.9/src/commands/logic/run/test.ts)_
4015
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.10/src/commands/logic/run/test.ts)_
3831
4016
 
3832
4017
  ## `sf org assign permset`
3833
4018
 
@@ -3873,7 +4058,7 @@ EXAMPLES
3873
4058
  $ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
3874
4059
  ```
3875
4060
 
3876
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/assign/permset.ts)_
4061
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.42/src/commands/org/assign/permset.ts)_
3877
4062
 
3878
4063
  ## `sf org assign permsetlicense`
3879
4064
 
@@ -3920,7 +4105,7 @@ EXAMPLES
3920
4105
  user3
3921
4106
  ```
3922
4107
 
3923
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/assign/permsetlicense.ts)_
4108
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.42/src/commands/org/assign/permsetlicense.ts)_
3924
4109
 
3925
4110
  ## `sf org create sandbox`
3926
4111
 
@@ -4054,7 +4239,7 @@ FLAG DESCRIPTIONS
4054
4239
  You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
4055
4240
  ```
4056
4241
 
4057
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/create/sandbox.ts)_
4242
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/create/sandbox.ts)_
4058
4243
 
4059
4244
  ## `sf org create scratch`
4060
4245
 
@@ -4236,7 +4421,7 @@ FLAG DESCRIPTIONS
4236
4421
  Omit this flag to have Salesforce generate a unique username for your org.
4237
4422
  ```
4238
4423
 
4239
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/create/scratch.ts)_
4424
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/create/scratch.ts)_
4240
4425
 
4241
4426
  ## `sf org create user`
4242
4427
 
@@ -4344,7 +4529,7 @@ FLAG DESCRIPTIONS
4344
4529
  might be different than what you specify in the definition file.
4345
4530
  ```
4346
4531
 
4347
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/create/user.ts)_
4532
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.42/src/commands/org/create/user.ts)_
4348
4533
 
4349
4534
  ## `sf org delete sandbox`
4350
4535
 
@@ -4390,7 +4575,7 @@ EXAMPLES
4390
4575
  $ sf org delete sandbox --target-org my-sandbox --no-prompt
4391
4576
  ```
4392
4577
 
4393
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/delete/sandbox.ts)_
4578
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/delete/sandbox.ts)_
4394
4579
 
4395
4580
  ## `sf org delete scratch`
4396
4581
 
@@ -4434,7 +4619,7 @@ EXAMPLES
4434
4619
  $ sf org delete scratch --target-org my-scratch-org --no-prompt
4435
4620
  ```
4436
4621
 
4437
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/delete/scratch.ts)_
4622
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/delete/scratch.ts)_
4438
4623
 
4439
4624
  ## `sf org disable tracking`
4440
4625
 
@@ -4473,7 +4658,7 @@ EXAMPLES
4473
4658
  $ sf org disable tracking
4474
4659
  ```
4475
4660
 
4476
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/disable/tracking.ts)_
4661
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/disable/tracking.ts)_
4477
4662
 
4478
4663
  ## `sf org display`
4479
4664
 
@@ -4518,7 +4703,7 @@ EXAMPLES
4518
4703
  $ sf org display --target-org TestOrg1 --verbose
4519
4704
  ```
4520
4705
 
4521
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/display.ts)_
4706
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/display.ts)_
4522
4707
 
4523
4708
  ## `sf org display user`
4524
4709
 
@@ -4557,7 +4742,7 @@ EXAMPLES
4557
4742
  $ sf org display user --target-org me@my.org --json
4558
4743
  ```
4559
4744
 
4560
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/display/user.ts)_
4745
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.42/src/commands/org/display/user.ts)_
4561
4746
 
4562
4747
  ## `sf org enable tracking`
4563
4748
 
@@ -4599,7 +4784,7 @@ EXAMPLES
4599
4784
  $ sf org enable tracking
4600
4785
  ```
4601
4786
 
4602
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/enable/tracking.ts)_
4787
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/enable/tracking.ts)_
4603
4788
 
4604
4789
  ## `sf org generate password`
4605
4790
 
@@ -4666,7 +4851,7 @@ EXAMPLES
4666
4851
  $ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
4667
4852
  ```
4668
4853
 
4669
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/generate/password.ts)_
4854
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.42/src/commands/org/generate/password.ts)_
4670
4855
 
4671
4856
  ## `sf org list`
4672
4857
 
@@ -4705,7 +4890,7 @@ EXAMPLES
4705
4890
  $ sf org list --clean
4706
4891
  ```
4707
4892
 
4708
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/list.ts)_
4893
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/list.ts)_
4709
4894
 
4710
4895
  ## `sf org list auth`
4711
4896
 
@@ -4737,7 +4922,7 @@ EXAMPLES
4737
4922
  $ sf org list auth
4738
4923
  ```
4739
4924
 
4740
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.19/src/commands/org/list/auth.ts)_
4925
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.22/src/commands/org/list/auth.ts)_
4741
4926
 
4742
4927
  ## `sf org list limits`
4743
4928
 
@@ -4777,7 +4962,7 @@ EXAMPLES
4777
4962
  $ sf org list limits --target-org my-scratch-org
4778
4963
  ```
4779
4964
 
4780
- _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.71/src/commands/org/list/limits.ts)_
4965
+ _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.72/src/commands/org/list/limits.ts)_
4781
4966
 
4782
4967
  ## `sf org list metadata`
4783
4968
 
@@ -4844,7 +5029,7 @@ FLAG DESCRIPTIONS
4844
5029
  Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
4845
5030
  ```
4846
5031
 
4847
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/list/metadata.ts)_
5032
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/list/metadata.ts)_
4848
5033
 
4849
5034
  ## `sf org list metadata-types`
4850
5035
 
@@ -4899,7 +5084,7 @@ FLAG DESCRIPTIONS
4899
5084
  Override the api version used for api requests made by this command
4900
5085
  ```
4901
5086
 
4902
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/list/metadata-types.ts)_
5087
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/list/metadata-types.ts)_
4903
5088
 
4904
5089
  ## `sf org list sobject record-counts`
4905
5090
 
@@ -4945,7 +5130,7 @@ EXAMPLES
4945
5130
  $ sf org list sobject record-counts --sobject Account --sobject Lead --target-org my-scratch-org
4946
5131
  ```
4947
5132
 
4948
- _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.71/src/commands/org/list/sobject/record-counts.ts)_
5133
+ _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.72/src/commands/org/list/sobject/record-counts.ts)_
4949
5134
 
4950
5135
  ## `sf org list users`
4951
5136
 
@@ -4983,7 +5168,7 @@ EXAMPLES
4983
5168
  $ sf org list users --target-org me@my.org
4984
5169
  ```
4985
5170
 
4986
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/list/users.ts)_
5171
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.42/src/commands/org/list/users.ts)_
4987
5172
 
4988
5173
  ## `sf org login access-token`
4989
5174
 
@@ -5037,7 +5222,7 @@ FLAG DESCRIPTIONS
5037
5222
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
5038
5223
  ```
5039
5224
 
5040
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.19/src/commands/org/login/access-token.ts)_
5225
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.22/src/commands/org/login/access-token.ts)_
5041
5226
 
5042
5227
  ## `sf org login jwt`
5043
5228
 
@@ -5128,7 +5313,7 @@ FLAG DESCRIPTIONS
5128
5313
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
5129
5314
  ```
5130
5315
 
5131
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.19/src/commands/org/login/jwt.ts)_
5316
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.22/src/commands/org/login/jwt.ts)_
5132
5317
 
5133
5318
  ## `sf org login sfdx-url`
5134
5319
 
@@ -5198,7 +5383,7 @@ EXAMPLES
5198
5383
  $ echo url | sf org login sfdx-url --sfdx-url-stdin
5199
5384
  ```
5200
5385
 
5201
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.19/src/commands/org/login/sfdx-url.ts)_
5386
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.22/src/commands/org/login/sfdx-url.ts)_
5202
5387
 
5203
5388
  ## `sf org login web`
5204
5389
 
@@ -5303,7 +5488,7 @@ FLAG DESCRIPTIONS
5303
5488
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
5304
5489
  ```
5305
5490
 
5306
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.19/src/commands/org/login/web.ts)_
5491
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.22/src/commands/org/login/web.ts)_
5307
5492
 
5308
5493
  ## `sf org logout`
5309
5494
 
@@ -5369,7 +5554,7 @@ FLAG DESCRIPTIONS
5369
5554
  All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
5370
5555
  ```
5371
5556
 
5372
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.19/src/commands/org/logout.ts)_
5557
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.22/src/commands/org/logout.ts)_
5373
5558
 
5374
5559
  ## `sf org open`
5375
5560
 
@@ -5445,7 +5630,7 @@ EXAMPLES
5445
5630
  $ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
5446
5631
  ```
5447
5632
 
5448
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/open.ts)_
5633
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/open.ts)_
5449
5634
 
5450
5635
  ## `sf org open agent`
5451
5636
 
@@ -5496,7 +5681,7 @@ EXAMPLES
5496
5681
  $ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
5497
5682
  ```
5498
5683
 
5499
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/open/agent.ts)_
5684
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/open/agent.ts)_
5500
5685
 
5501
5686
  ## `sf org refresh sandbox`
5502
5687
 
@@ -5599,7 +5784,7 @@ FLAG DESCRIPTIONS
5599
5784
  You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
5600
5785
  ```
5601
5786
 
5602
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/refresh/sandbox.ts)_
5787
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/refresh/sandbox.ts)_
5603
5788
 
5604
5789
  ## `sf org resume sandbox`
5605
5790
 
@@ -5662,7 +5847,7 @@ FLAG DESCRIPTIONS
5662
5847
  returns the job ID. To resume checking the sandbox creation, rerun this command.
5663
5848
  ```
5664
5849
 
5665
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/resume/sandbox.ts)_
5850
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/resume/sandbox.ts)_
5666
5851
 
5667
5852
  ## `sf org resume scratch`
5668
5853
 
@@ -5715,7 +5900,7 @@ FLAG DESCRIPTIONS
5715
5900
  returns the job ID. To resume checking the scratch creation, rerun this command.
5716
5901
  ```
5717
5902
 
5718
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.48/src/commands/org/resume/scratch.ts)_
5903
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.50/src/commands/org/resume/scratch.ts)_
5719
5904
 
5720
5905
  ## `sf package convert`
5721
5906
 
@@ -5812,7 +5997,7 @@ FLAG DESCRIPTIONS
5812
5997
  --installation-key-bypass flag is required.
5813
5998
  ```
5814
5999
 
5815
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/convert.ts)_
6000
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/convert.ts)_
5816
6001
 
5817
6002
  ## `sf package create`
5818
6003
 
@@ -5891,7 +6076,7 @@ FLAG DESCRIPTIONS
5891
6076
  Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
5892
6077
  ```
5893
6078
 
5894
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/create.ts)_
6079
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/create.ts)_
5895
6080
 
5896
6081
  ## `sf package delete`
5897
6082
 
@@ -5933,7 +6118,7 @@ EXAMPLES
5933
6118
  $ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
5934
6119
  ```
5935
6120
 
5936
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/delete.ts)_
6121
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/delete.ts)_
5937
6122
 
5938
6123
  ## `sf package install`
5939
6124
 
@@ -6032,7 +6217,7 @@ FLAG DESCRIPTIONS
6032
6217
  - Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
6033
6218
  ```
6034
6219
 
6035
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/install.ts)_
6220
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/install.ts)_
6036
6221
 
6037
6222
  ## `sf package install report`
6038
6223
 
@@ -6065,7 +6250,7 @@ EXAMPLES
6065
6250
  $ sf package install report --request-id 0Hf... --target-org me@example.com
6066
6251
  ```
6067
6252
 
6068
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/install/report.ts)_
6253
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/install/report.ts)_
6069
6254
 
6070
6255
  ## `sf package installed list`
6071
6256
 
@@ -6097,7 +6282,7 @@ EXAMPLES
6097
6282
  $ sf package installed list --target-org me@example.com
6098
6283
  ```
6099
6284
 
6100
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/installed/list.ts)_
6285
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/installed/list.ts)_
6101
6286
 
6102
6287
  ## `sf package list`
6103
6288
 
@@ -6135,7 +6320,7 @@ EXAMPLES
6135
6320
  $ sf package list --target-dev-hub devhub@example.com --verbose
6136
6321
  ```
6137
6322
 
6138
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/list.ts)_
6323
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/list.ts)_
6139
6324
 
6140
6325
  ## `sf package push-upgrade abort`
6141
6326
 
@@ -6174,7 +6359,7 @@ EXAMPLES
6174
6359
  $ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
6175
6360
  ```
6176
6361
 
6177
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/push-upgrade/abort.ts)_
6362
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/push-upgrade/abort.ts)_
6178
6363
 
6179
6364
  ## `sf package push-upgrade list`
6180
6365
 
@@ -6233,7 +6418,7 @@ EXAMPLES
6233
6418
  $ sf package push-upgrade list --package 033xyz –-status Failed
6234
6419
  ```
6235
6420
 
6236
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/push-upgrade/list.ts)_
6421
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/push-upgrade/list.ts)_
6237
6422
 
6238
6423
  ## `sf package push-upgrade report`
6239
6424
 
@@ -6275,7 +6460,7 @@ EXAMPLES
6275
6460
  $ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
6276
6461
  ```
6277
6462
 
6278
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/push-upgrade/report.ts)_
6463
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/push-upgrade/report.ts)_
6279
6464
 
6280
6465
  ## `sf package push-upgrade schedule`
6281
6466
 
@@ -6362,7 +6547,7 @@ FLAG DESCRIPTIONS
6362
6547
  Overrides the value of the target-dev-hub configuration variable, if set.
6363
6548
  ```
6364
6549
 
6365
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/push-upgrade/schedule.ts)_
6550
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/push-upgrade/schedule.ts)_
6366
6551
 
6367
6552
  ## `sf package uninstall`
6368
6553
 
@@ -6410,7 +6595,7 @@ EXAMPLES
6410
6595
  $ sf package uninstall --package "Undesirable Package Alias"
6411
6596
  ```
6412
6597
 
6413
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/uninstall.ts)_
6598
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/uninstall.ts)_
6414
6599
 
6415
6600
  ## `sf package uninstall report`
6416
6601
 
@@ -6443,7 +6628,7 @@ EXAMPLES
6443
6628
  $ sf package uninstall report --request-id 06y... --target-org me@example.com
6444
6629
  ```
6445
6630
 
6446
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/uninstall/report.ts)_
6631
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/uninstall/report.ts)_
6447
6632
 
6448
6633
  ## `sf package update`
6449
6634
 
@@ -6506,7 +6691,7 @@ FLAG DESCRIPTIONS
6506
6691
  notified to upgrade to the recommended version.
6507
6692
  ```
6508
6693
 
6509
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/update.ts)_
6694
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/update.ts)_
6510
6695
 
6511
6696
  ## `sf package version create`
6512
6697
 
@@ -6681,7 +6866,7 @@ FLAG DESCRIPTIONS
6681
6866
  periods of no output from commands.
6682
6867
  ```
6683
6868
 
6684
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/version/create.ts)_
6869
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/version/create.ts)_
6685
6870
 
6686
6871
  ## `sf package version create list`
6687
6872
 
@@ -6742,7 +6927,7 @@ EXAMPLES
6742
6927
  $ sf package version create list --created-last-days 0 --status Success
6743
6928
  ```
6744
6929
 
6745
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/version/create/list.ts)_
6930
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/version/create/list.ts)_
6746
6931
 
6747
6932
  ## `sf package version create report`
6748
6933
 
@@ -6785,7 +6970,7 @@ EXAMPLES
6785
6970
  $ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
6786
6971
  ```
6787
6972
 
6788
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/version/create/report.ts)_
6973
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/version/create/report.ts)_
6789
6974
 
6790
6975
  ## `sf package version delete`
6791
6976
 
@@ -6826,7 +7011,7 @@ EXAMPLES
6826
7011
  $ sf package version delete --package 04t... --target-org devhub@example.com
6827
7012
  ```
6828
7013
 
6829
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/version/delete.ts)_
7014
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/version/delete.ts)_
6830
7015
 
6831
7016
  ## `sf package version displayancestry`
6832
7017
 
@@ -6886,7 +7071,7 @@ FLAG DESCRIPTIONS
6886
7071
  You can use the DOT code output in graph visualization software to create tree visualizations.
6887
7072
  ```
6888
7073
 
6889
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/version/displayancestry.ts)_
7074
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/version/displayancestry.ts)_
6890
7075
 
6891
7076
  ## `sf package version displaydependencies`
6892
7077
 
@@ -6948,7 +7133,7 @@ FLAG DESCRIPTIONS
6948
7133
  package, which must be installed last.
6949
7134
  ```
6950
7135
 
6951
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/version/displaydependencies.ts)_
7136
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/version/displaydependencies.ts)_
6952
7137
 
6953
7138
  ## `sf package version list`
6954
7139
 
@@ -7024,7 +7209,7 @@ EXAMPLES
7024
7209
  $ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
7025
7210
  ```
7026
7211
 
7027
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/version/list.ts)_
7212
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/version/list.ts)_
7028
7213
 
7029
7214
  ## `sf package version promote`
7030
7215
 
@@ -7068,7 +7253,7 @@ EXAMPLES
7068
7253
  $ sf package version promote --package "Awesome Package Alias"
7069
7254
  ```
7070
7255
 
7071
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/version/promote.ts)_
7256
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/version/promote.ts)_
7072
7257
 
7073
7258
  ## `sf package version report`
7074
7259
 
@@ -7108,7 +7293,7 @@ EXAMPLES
7108
7293
  $ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
7109
7294
  ```
7110
7295
 
7111
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/version/report.ts)_
7296
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/version/report.ts)_
7112
7297
 
7113
7298
  ## `sf package version retrieve`
7114
7299
 
@@ -7153,7 +7338,7 @@ EXAMPLES
7153
7338
  $ sf package version retrieve --package 04tXXX --output-dir my-directory/ --target-dev-hub devhub@example.com
7154
7339
  ```
7155
7340
 
7156
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/version/retrieve.ts)_
7341
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/version/retrieve.ts)_
7157
7342
 
7158
7343
  ## `sf package version update`
7159
7344
 
@@ -7206,7 +7391,7 @@ EXAMPLES
7206
7391
  $ sf package version update --package 04t... --version-description "New Package Version Description"
7207
7392
  ```
7208
7393
 
7209
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package/version/update.ts)_
7394
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package/version/update.ts)_
7210
7395
 
7211
7396
  ## `sf package1 version create`
7212
7397
 
@@ -7273,7 +7458,7 @@ FLAG DESCRIPTIONS
7273
7458
  subscribers.
7274
7459
  ```
7275
7460
 
7276
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package1/version/create.ts)_
7461
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package1/version/create.ts)_
7277
7462
 
7278
7463
  ## `sf package1 version create get`
7279
7464
 
@@ -7306,7 +7491,7 @@ EXAMPLES
7306
7491
  $ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
7307
7492
  ```
7308
7493
 
7309
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package1/version/create/get.ts)_
7494
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package1/version/create/get.ts)_
7310
7495
 
7311
7496
  ## `sf package1 version display`
7312
7497
 
@@ -7340,7 +7525,7 @@ EXAMPLES
7340
7525
  $ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
7341
7526
  ```
7342
7527
 
7343
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package1/version/display.ts)_
7528
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package1/version/display.ts)_
7344
7529
 
7345
7530
  ## `sf package1 version list`
7346
7531
 
@@ -7378,7 +7563,7 @@ FLAG DESCRIPTIONS
7378
7563
  If not specified, shows all versions for all packages (managed and unmanaged) in the org.
7379
7564
  ```
7380
7565
 
7381
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.3/src/commands/package1/version/list.ts)_
7566
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.23.5/src/commands/package1/version/list.ts)_
7382
7567
 
7383
7568
  ## `sf plugins`
7384
7569
 
@@ -8983,7 +9168,7 @@ FLAG DESCRIPTIONS
8983
9168
  Override the api version used for api requests made by this command
8984
9169
  ```
8985
9170
 
8986
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/project/generate.ts)_
9171
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/project/generate.ts)_
8987
9172
 
8988
9173
  ## `sf project generate manifest`
8989
9174
 
@@ -9760,7 +9945,7 @@ FLAG DESCRIPTIONS
9760
9945
  etc.
9761
9946
  ```
9762
9947
 
9763
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/static-resource/generate.ts)_
9948
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/static-resource/generate.ts)_
9764
9949
 
9765
9950
  ## `sf update [CHANNEL]`
9766
9951
 
@@ -9874,7 +10059,7 @@ FLAG DESCRIPTIONS
9874
10059
  Supplied parameter values or default values are filled into a copy of the template.
9875
10060
  ```
9876
10061
 
9877
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/visualforce/generate/component.ts)_
10062
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/visualforce/generate/component.ts)_
9878
10063
 
9879
10064
  ## `sf visualforce generate page`
9880
10065
 
@@ -9924,7 +10109,7 @@ FLAG DESCRIPTIONS
9924
10109
  The name can be up to 40 characters and must start with a letter.
9925
10110
  ```
9926
10111
 
9927
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/visualforce/generate/page.ts)_
10112
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.72/src/commands/visualforce/generate/page.ts)_
9928
10113
 
9929
10114
  ## `sf which`
9930
10115