@salesforce/cli 2.122.5 → 2.123.0

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.122.5 linux-x64 node-v22.22.0
28
+ @salesforce/cli/2.123.0 linux-x64 node-v22.22.0
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -248,7 +248,7 @@ EXAMPLES
248
248
  $ sf agent activate --api-name Resort_Manager --target-org my-org
249
249
  ```
250
250
 
251
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/activate.ts)_
251
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/activate.ts)_
252
252
 
253
253
  ## `sf agent create`
254
254
 
@@ -315,7 +315,7 @@ EXAMPLES
315
315
  $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
316
316
  ```
317
317
 
318
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/create.ts)_
318
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/create.ts)_
319
319
 
320
320
  ## `sf agent deactivate`
321
321
 
@@ -355,7 +355,7 @@ EXAMPLES
355
355
  $ sf agent deactivate --api-name Resort_Manager --target-org my-org
356
356
  ```
357
357
 
358
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/deactivate.ts)_
358
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/deactivate.ts)_
359
359
 
360
360
  ## `sf agent generate agent-spec`
361
361
 
@@ -462,7 +462,7 @@ EXAMPLES
462
462
  $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
463
463
  ```
464
464
 
465
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/generate/agent-spec.ts)_
465
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/generate/agent-spec.ts)_
466
466
 
467
467
  ## `sf agent generate authoring-bundle`
468
468
 
@@ -471,18 +471,20 @@ Generate an authoring bundle from an existing agent spec YAML file.
471
471
  ```
472
472
  USAGE
473
473
  $ sf agent generate authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-name <value>] [--api-version <value>] [-f
474
- <value>] [-d <value>] [-n <value>]
474
+ <value>] [--no-spec] [-d <value>] [-n <value>]
475
475
 
476
476
  FLAGS
477
477
  -d, --output-dir=<value> Directory where the authoring bundle files are generated.
478
- -f, --spec=<value> Path to the agent spec YAML file; if not specified, the command provides a list that you
479
- can choose from.
478
+ -f, --spec=<value> Path to the agent spec YAML file. If you don't specify the flag, the command provides a
479
+ list that you can choose from. Use the --no-spec flag to skip using an agent spec entirely.
480
480
  -n, --name=<value> Name (label) of the authoring bundle; if not specified, you're prompted for the name.
481
481
  -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
482
482
  configuration variable is already set.
483
483
  --api-name=<value> API name of the new authoring bundle; if not specified, the API name is derived from the
484
484
  authoring bundle name (label); the API name can't exist in the org.
485
485
  --api-version=<value> Override the api version used for api requests made by this command
486
+ --no-spec Skip prompting for an agent spec and use the default Agent Script boilerplate in the
487
+ generated authoring bundle.
486
488
 
487
489
  GLOBAL FLAGS
488
490
  --flags-dir=<value> Import flag values from a directory.
@@ -496,7 +498,9 @@ DESCRIPTION
496
498
 
497
499
  Use this command to generate a new authoring bundle based on an agent spec YAML file, which you create with the "agent
498
500
  generate agent-spec" command. The agent spec YAML file is a high-level description of the agent; it describes its
499
- essence rather than exactly what it can do.
501
+ essence rather than exactly what it can do. The resulting Agent Script file is customized to reflect what's in the
502
+ agent spec file. You can also create an authoring bundle without an agent spec file by specifying the "--no-spec"
503
+ flag; in this case, the resulting Agent Script file is just the default boilerplate.
500
504
 
501
505
  The metadata type for authoring bundles is aiAuthoringBundle, which consist of a standard
502
506
  "<bundle-api-name>.bundle-meta.xml" metadata file and the Agent Script file (with extension ".agent"). When you run
@@ -516,6 +520,11 @@ EXAMPLES
516
520
 
517
521
  $ sf agent generate authoring-bundle
518
522
 
523
+ Generate an authoring bundle without using an agent spec file; give the bundle the label "My Authoring Bundle" and
524
+ use your default org:
525
+
526
+ $ sf agent generate authoring-bundle --no-spec --name "My Authoring Bundle"
527
+
519
528
  Generate an authoring bundle from the "specs/agentSpec.yaml" agent spec YAML file and give it the label "My
520
529
  Authoring Bundle"; use your default org:
521
530
 
@@ -528,7 +537,7 @@ EXAMPLES
528
537
  other-package-dir/main/default --target-org my-dev-org
529
538
  ```
530
539
 
531
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/generate/authoring-bundle.ts)_
540
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/generate/authoring-bundle.ts)_
532
541
 
533
542
  ## `sf agent generate template`
534
543
 
@@ -576,7 +585,7 @@ EXAMPLES
576
585
  force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
577
586
  ```
578
587
 
579
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/generate/template.ts)_
588
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/generate/template.ts)_
580
589
 
581
590
  ## `sf agent generate test-spec`
582
591
 
@@ -637,7 +646,7 @@ EXAMPLES
637
646
  force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
638
647
  ```
639
648
 
640
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/generate/test-spec.ts)_
649
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/generate/test-spec.ts)_
641
650
 
642
651
  ## `sf agent preview`
643
652
 
@@ -710,7 +719,7 @@ EXAMPLES
710
719
  $ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
711
720
  ```
712
721
 
713
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/preview.ts)_
722
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/preview.ts)_
714
723
 
715
724
  ## `sf agent publish authoring-bundle`
716
725
 
@@ -759,7 +768,7 @@ EXAMPLES
759
768
  $ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
760
769
  ```
761
770
 
762
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/publish/authoring-bundle.ts)_
771
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/publish/authoring-bundle.ts)_
763
772
 
764
773
  ## `sf agent test create`
765
774
 
@@ -814,7 +823,7 @@ EXAMPLES
814
823
  $ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
815
824
  ```
816
825
 
817
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/test/create.ts)_
826
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/test/create.ts)_
818
827
 
819
828
  ## `sf agent test list`
820
829
 
@@ -849,7 +858,7 @@ EXAMPLES
849
858
  $ sf agent test list --target-org my-org
850
859
  ```
851
860
 
852
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/test/list.ts)_
861
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/test/list.ts)_
853
862
 
854
863
  ## `sf agent test results`
855
864
 
@@ -915,7 +924,7 @@ FLAG DESCRIPTIONS
915
924
  expression when using custom evaluations.
916
925
  ```
917
926
 
918
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/test/results.ts)_
927
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/test/results.ts)_
919
928
 
920
929
  ## `sf agent test resume`
921
930
 
@@ -988,7 +997,7 @@ FLAG DESCRIPTIONS
988
997
  expression when using custom evaluations.
989
998
  ```
990
999
 
991
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/test/resume.ts)_
1000
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/test/resume.ts)_
992
1001
 
993
1002
  ## `sf agent test run`
994
1003
 
@@ -1062,7 +1071,7 @@ FLAG DESCRIPTIONS
1062
1071
  expression when using custom evaluations.
1063
1072
  ```
1064
1073
 
1065
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/test/run.ts)_
1074
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/test/run.ts)_
1066
1075
 
1067
1076
  ## `sf agent validate authoring-bundle`
1068
1077
 
@@ -1109,7 +1118,7 @@ EXAMPLES
1109
1118
  $ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
1110
1119
  ```
1111
1120
 
1112
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.2/src/commands/agent/validate/authoring-bundle.ts)_
1121
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/validate/authoring-bundle.ts)_
1113
1122
 
1114
1123
  ## `sf alias list`
1115
1124
 
@@ -9723,7 +9732,7 @@ FLAG DESCRIPTIONS
9723
9732
  If you don't specify this flag, the command prompts you to choose from your local objects.
9724
9733
  ```
9725
9734
 
9726
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.81/src/commands/schema/generate/field.ts)_
9735
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.82/src/commands/schema/generate/field.ts)_
9727
9736
 
9728
9737
  ## `sf schema generate platformevent`
9729
9738
 
@@ -9755,7 +9764,7 @@ EXAMPLES
9755
9764
  $ sf schema generate platformevent --label "My Platform Event"
9756
9765
  ```
9757
9766
 
9758
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.81/src/commands/schema/generate/platformevent.ts)_
9767
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.82/src/commands/schema/generate/platformevent.ts)_
9759
9768
 
9760
9769
  ## `sf schema generate sobject`
9761
9770
 
@@ -9812,7 +9821,7 @@ FLAG DESCRIPTIONS
9812
9821
  - Streaming API: With Bulk API and Sharing, classifies the custom object as an Enterprise Application object.
9813
9822
  ```
9814
9823
 
9815
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.81/src/commands/schema/generate/sobject.ts)_
9824
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.82/src/commands/schema/generate/sobject.ts)_
9816
9825
 
9817
9826
  ## `sf schema generate tab`
9818
9827
 
@@ -9860,7 +9869,7 @@ FLAG DESCRIPTIONS
9860
9869
  The API name for a custom object always ends in `__c`, such as `MyObject__c`.
9861
9870
  ```
9862
9871
 
9863
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.81/src/commands/schema/generate/tab.ts)_
9872
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.82/src/commands/schema/generate/tab.ts)_
9864
9873
 
9865
9874
  ## `sf search`
9866
9875
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.122.5",
3
+ "version": "2.123.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.122.5",
9
+ "version": "2.123.0",
10
10
  "hasInstallScript": true,
11
11
  "license": "Apache-2.0",
12
12
  "dependencies": {
@@ -24,7 +24,7 @@
24
24
  "@oclif/plugin-which": "3.2.43",
25
25
  "@salesforce/core": "^8.25.0",
26
26
  "@salesforce/kit": "^3.1.6",
27
- "@salesforce/plugin-agent": "1.27.2",
27
+ "@salesforce/plugin-agent": "1.27.5",
28
28
  "@salesforce/plugin-apex": "3.9.5",
29
29
  "@salesforce/plugin-api": "1.3.8",
30
30
  "@salesforce/plugin-auth": "4.1.4",
@@ -37,7 +37,7 @@
37
37
  "@salesforce/plugin-packaging": "2.24.11",
38
38
  "@salesforce/plugin-schema": "3.3.90",
39
39
  "@salesforce/plugin-settings": "2.4.54",
40
- "@salesforce/plugin-sobject": "1.4.81",
40
+ "@salesforce/plugin-sobject": "1.4.82",
41
41
  "@salesforce/plugin-telemetry": "3.6.71",
42
42
  "@salesforce/plugin-templates": "56.4.7",
43
43
  "@salesforce/plugin-trust": "3.7.113",
@@ -3009,9 +3009,9 @@
3009
3009
  }
3010
3010
  },
3011
3011
  "node_modules/@isaacs/brace-expansion": {
3012
- "version": "5.0.0",
3013
- "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz",
3014
- "integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==",
3012
+ "version": "5.0.1",
3013
+ "resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.1.tgz",
3014
+ "integrity": "sha512-WMz71T1JS624nWj2n2fnYAuPovhv7EUhk69R6i9dsVyzxt5eM3bjwvgk9L+APE1TRscGysAVMANkB0jh0LQZrQ==",
3015
3015
  "license": "MIT",
3016
3016
  "dependencies": {
3017
3017
  "@isaacs/balanced-match": "^4.0.1"
@@ -4679,16 +4679,16 @@
4679
4679
  "license": "BSD-3-Clause"
4680
4680
  },
4681
4681
  "node_modules/@salesforce/agents": {
4682
- "version": "0.22.0",
4683
- "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-0.22.0.tgz",
4684
- "integrity": "sha512-Od2c6Iu+32Fv06YB8qS1Q/ajW4npzUZ5r9/giOVJDJPvNLTm7gcYKZ3rjc/WD3sP9y8KFvxJZPtsJoZoWvALAg==",
4682
+ "version": "0.22.2",
4683
+ "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-0.22.2.tgz",
4684
+ "integrity": "sha512-TF/hvrM2wv3rSLWkBbLCjBGax6y5EaO5t6cevM+i/VMX140M+ls63O/8AaoXAwjNo3udorNUhm0wbs1HE3QfRw==",
4685
4685
  "license": "Apache-2.0",
4686
4686
  "dependencies": {
4687
4687
  "@salesforce/core": "^8.24.0",
4688
4688
  "@salesforce/kit": "^3.2.4",
4689
4689
  "@salesforce/source-deploy-retrieve": "^12.31.6",
4690
4690
  "@salesforce/types": "^1.5.0",
4691
- "fast-xml-parser": "^5.3.2",
4691
+ "fast-xml-parser": "^5.3.4",
4692
4692
  "nock": "^13.5.6",
4693
4693
  "yaml": "^2.8.2"
4694
4694
  },
@@ -4696,24 +4696,6 @@
4696
4696
  "node": ">=18.0.0"
4697
4697
  }
4698
4698
  },
4699
- "node_modules/@salesforce/agents/node_modules/fast-xml-parser": {
4700
- "version": "5.3.4",
4701
- "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.3.4.tgz",
4702
- "integrity": "sha512-EFd6afGmXlCx8H8WTZHhAoDaWaGyuIBoZJ2mknrNxug+aZKjkp0a0dlars9Izl+jF+7Gu1/5f/2h68cQpe0IiA==",
4703
- "funding": [
4704
- {
4705
- "type": "github",
4706
- "url": "https://github.com/sponsors/NaturalIntelligence"
4707
- }
4708
- ],
4709
- "license": "MIT",
4710
- "dependencies": {
4711
- "strnum": "^2.1.0"
4712
- },
4713
- "bin": {
4714
- "fxparser": "src/cli/cli.js"
4715
- }
4716
- },
4717
4699
  "node_modules/@salesforce/apex-node": {
4718
4700
  "version": "8.4.2",
4719
4701
  "resolved": "https://registry.npmjs.org/@salesforce/apex-node/-/apex-node-8.4.2.tgz",
@@ -5071,24 +5053,6 @@
5071
5053
  "node": ">=18.0.0"
5072
5054
  }
5073
5055
  },
5074
- "node_modules/@salesforce/packaging/node_modules/fast-xml-parser": {
5075
- "version": "5.3.4",
5076
- "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.3.4.tgz",
5077
- "integrity": "sha512-EFd6afGmXlCx8H8WTZHhAoDaWaGyuIBoZJ2mknrNxug+aZKjkp0a0dlars9Izl+jF+7Gu1/5f/2h68cQpe0IiA==",
5078
- "funding": [
5079
- {
5080
- "type": "github",
5081
- "url": "https://github.com/sponsors/NaturalIntelligence"
5082
- }
5083
- ],
5084
- "license": "MIT",
5085
- "dependencies": {
5086
- "strnum": "^2.1.0"
5087
- },
5088
- "bin": {
5089
- "fxparser": "src/cli/cli.js"
5090
- }
5091
- },
5092
5056
  "node_modules/@salesforce/packaging/node_modules/object-treeify": {
5093
5057
  "version": "2.1.1",
5094
5058
  "resolved": "https://registry.npmjs.org/object-treeify/-/object-treeify-2.1.1.tgz",
@@ -5099,29 +5063,29 @@
5099
5063
  }
5100
5064
  },
5101
5065
  "node_modules/@salesforce/plugin-agent": {
5102
- "version": "1.27.2",
5103
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.27.2.tgz",
5104
- "integrity": "sha512-8RWJQn7ZPNJxJBDk6W9AvbDp7Iq90DxXxX9g+6Q6J2qNQtmKEiDNCNBu8PQ1Gxt5W9eyHgYBcWI45+FbZCEidg==",
5066
+ "version": "1.27.5",
5067
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.27.5.tgz",
5068
+ "integrity": "sha512-20Yaz+pbcMufQ7xGauWP9M+dn9XBkAHUfx/kRRLEOf+3mOwEkSUIOQ1nfuxOiYqSR9bNB2LPGIJ4l54ADGA4mQ==",
5105
5069
  "license": "Apache-2.0",
5106
5070
  "dependencies": {
5107
5071
  "@inquirer/core": "^10.3.2",
5108
5072
  "@inquirer/prompts": "^7.10.1",
5109
5073
  "@oclif/core": "^4",
5110
5074
  "@oclif/multi-stage-output": "^0.8.29",
5111
- "@salesforce/agents": "^0.22.0",
5075
+ "@salesforce/agents": "^0.22.1",
5112
5076
  "@salesforce/core": "^8.24.3",
5113
- "@salesforce/kit": "^3.2.3",
5077
+ "@salesforce/kit": "^3.2.4",
5114
5078
  "@salesforce/sf-plugins-core": "^12.2.6",
5115
5079
  "@salesforce/source-deploy-retrieve": "^12.31.10",
5116
5080
  "@salesforce/types": "^1.5.0",
5117
5081
  "ansis": "^3.3.2",
5118
- "fast-xml-parser": "^4.5.1",
5082
+ "fast-xml-parser": "^5.3.4",
5119
5083
  "glob": "^11.0.3",
5120
5084
  "ink": "5.0.1",
5121
5085
  "ink-text-input": "^6.0.0",
5122
5086
  "inquirer-autocomplete-standalone": "^0.8.1",
5123
5087
  "react": "^18.3.1",
5124
- "yaml": "^2.8.1"
5088
+ "yaml": "^2.8.2"
5125
5089
  },
5126
5090
  "engines": {
5127
5091
  "node": ">=18.0.0"
@@ -5677,9 +5641,9 @@
5677
5641
  }
5678
5642
  },
5679
5643
  "node_modules/@salesforce/plugin-sobject": {
5680
- "version": "1.4.81",
5681
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-sobject/-/plugin-sobject-1.4.81.tgz",
5682
- "integrity": "sha512-0LdzCv+I2G/crEuxxQyxdEDiygKkScLxcaF/udJwW3rTOcLPHjAr5Vih4dkphBiqPLJbrK+ehkSnbhk7SvBnXg==",
5644
+ "version": "1.4.82",
5645
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-sobject/-/plugin-sobject-1.4.82.tgz",
5646
+ "integrity": "sha512-RlrNhoDZEy8hJlMVtFpzYhq/0UDsE+TF7QQS+N0G1529XG+rIOEXTtrZ6KP248D5X6NRaBkHM5oDd52yIZXzYA==",
5683
5647
  "license": "Apache-2.0",
5684
5648
  "dependencies": {
5685
5649
  "@inquirer/confirm": "^3.2.0",
@@ -5690,7 +5654,7 @@
5690
5654
  "@salesforce/kit": "^3.2.4",
5691
5655
  "@salesforce/sf-plugins-core": "^11.3.12",
5692
5656
  "fast-glob": "^3.3.3",
5693
- "fast-xml-parser": "^4.5.3",
5657
+ "fast-xml-parser": "^5.3.4",
5694
5658
  "js2xmlparser": "^4.0.2"
5695
5659
  },
5696
5660
  "engines": {
@@ -5940,24 +5904,6 @@
5940
5904
  "node": ">=8"
5941
5905
  }
5942
5906
  },
5943
- "node_modules/@salesforce/source-deploy-retrieve/node_modules/fast-xml-parser": {
5944
- "version": "5.3.4",
5945
- "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.3.4.tgz",
5946
- "integrity": "sha512-EFd6afGmXlCx8H8WTZHhAoDaWaGyuIBoZJ2mknrNxug+aZKjkp0a0dlars9Izl+jF+7Gu1/5f/2h68cQpe0IiA==",
5947
- "funding": [
5948
- {
5949
- "type": "github",
5950
- "url": "https://github.com/sponsors/NaturalIntelligence"
5951
- }
5952
- ],
5953
- "license": "MIT",
5954
- "dependencies": {
5955
- "strnum": "^2.1.0"
5956
- },
5957
- "bin": {
5958
- "fxparser": "src/cli/cli.js"
5959
- }
5960
- },
5961
5907
  "node_modules/@salesforce/source-deploy-retrieve/node_modules/get-stream": {
5962
5908
  "version": "5.2.0",
5963
5909
  "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
@@ -6051,6 +5997,36 @@
6051
5997
  "node": ">=18.0.0"
6052
5998
  }
6053
5999
  },
6000
+ "node_modules/@salesforce/source-tracking/node_modules/fast-xml-parser": {
6001
+ "version": "4.5.3",
6002
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz",
6003
+ "integrity": "sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==",
6004
+ "funding": [
6005
+ {
6006
+ "type": "github",
6007
+ "url": "https://github.com/sponsors/NaturalIntelligence"
6008
+ }
6009
+ ],
6010
+ "license": "MIT",
6011
+ "dependencies": {
6012
+ "strnum": "^1.1.1"
6013
+ },
6014
+ "bin": {
6015
+ "fxparser": "src/cli/cli.js"
6016
+ }
6017
+ },
6018
+ "node_modules/@salesforce/source-tracking/node_modules/strnum": {
6019
+ "version": "1.1.2",
6020
+ "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.1.2.tgz",
6021
+ "integrity": "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==",
6022
+ "funding": [
6023
+ {
6024
+ "type": "github",
6025
+ "url": "https://github.com/sponsors/NaturalIntelligence"
6026
+ }
6027
+ ],
6028
+ "license": "MIT"
6029
+ },
6054
6030
  "node_modules/@salesforce/telemetry": {
6055
6031
  "version": "6.4.3",
6056
6032
  "resolved": "https://registry.npmjs.org/@salesforce/telemetry/-/telemetry-6.4.3.tgz",
@@ -12048,9 +12024,9 @@
12048
12024
  "license": "MIT"
12049
12025
  },
12050
12026
  "node_modules/fast-xml-parser": {
12051
- "version": "4.5.3",
12052
- "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz",
12053
- "integrity": "sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==",
12027
+ "version": "5.3.4",
12028
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.3.4.tgz",
12029
+ "integrity": "sha512-EFd6afGmXlCx8H8WTZHhAoDaWaGyuIBoZJ2mknrNxug+aZKjkp0a0dlars9Izl+jF+7Gu1/5f/2h68cQpe0IiA==",
12054
12030
  "funding": [
12055
12031
  {
12056
12032
  "type": "github",
@@ -12059,24 +12035,12 @@
12059
12035
  ],
12060
12036
  "license": "MIT",
12061
12037
  "dependencies": {
12062
- "strnum": "^1.1.1"
12038
+ "strnum": "^2.1.0"
12063
12039
  },
12064
12040
  "bin": {
12065
12041
  "fxparser": "src/cli/cli.js"
12066
12042
  }
12067
12043
  },
12068
- "node_modules/fast-xml-parser/node_modules/strnum": {
12069
- "version": "1.1.2",
12070
- "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.1.2.tgz",
12071
- "integrity": "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==",
12072
- "funding": [
12073
- {
12074
- "type": "github",
12075
- "url": "https://github.com/sponsors/NaturalIntelligence"
12076
- }
12077
- ],
12078
- "license": "MIT"
12079
- },
12080
12044
  "node_modules/fastest-levenshtein": {
12081
12045
  "version": "1.0.16",
12082
12046
  "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz",
package/oclif.lock CHANGED
@@ -1346,9 +1346,9 @@
1346
1346
  integrity sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==
1347
1347
 
1348
1348
  "@isaacs/brace-expansion@^5.0.0":
1349
- version "5.0.0"
1350
- resolved "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz"
1351
- integrity sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==
1349
+ version "5.0.1"
1350
+ resolved "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.1.tgz"
1351
+ integrity sha512-WMz71T1JS624nWj2n2fnYAuPovhv7EUhk69R6i9dsVyzxt5eM3bjwvgk9L+APE1TRscGysAVMANkB0jh0LQZrQ==
1352
1352
  dependencies:
1353
1353
  "@isaacs/balanced-match" "^4.0.1"
1354
1354
 
@@ -2074,16 +2074,16 @@
2074
2074
  resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz"
2075
2075
  integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
2076
2076
 
2077
- "@salesforce/agents@^0.22.0":
2078
- version "0.22.0"
2079
- resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-0.22.0.tgz"
2080
- integrity sha512-Od2c6Iu+32Fv06YB8qS1Q/ajW4npzUZ5r9/giOVJDJPvNLTm7gcYKZ3rjc/WD3sP9y8KFvxJZPtsJoZoWvALAg==
2077
+ "@salesforce/agents@^0.22.1":
2078
+ version "0.22.2"
2079
+ resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-0.22.2.tgz"
2080
+ integrity sha512-TF/hvrM2wv3rSLWkBbLCjBGax6y5EaO5t6cevM+i/VMX140M+ls63O/8AaoXAwjNo3udorNUhm0wbs1HE3QfRw==
2081
2081
  dependencies:
2082
2082
  "@salesforce/core" "^8.24.0"
2083
2083
  "@salesforce/kit" "^3.2.4"
2084
2084
  "@salesforce/source-deploy-retrieve" "^12.31.6"
2085
2085
  "@salesforce/types" "^1.5.0"
2086
- fast-xml-parser "^5.3.2"
2086
+ fast-xml-parser "^5.3.4"
2087
2087
  nock "^13.5.6"
2088
2088
  yaml "^2.8.2"
2089
2089
 
@@ -2215,29 +2215,29 @@
2215
2215
  jszip "^3.10.1"
2216
2216
  object-treeify "^2"
2217
2217
 
2218
- "@salesforce/plugin-agent@1.27.2":
2219
- version "1.27.2"
2220
- resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.27.2.tgz"
2221
- integrity sha512-8RWJQn7ZPNJxJBDk6W9AvbDp7Iq90DxXxX9g+6Q6J2qNQtmKEiDNCNBu8PQ1Gxt5W9eyHgYBcWI45+FbZCEidg==
2218
+ "@salesforce/plugin-agent@1.27.5":
2219
+ version "1.27.5"
2220
+ resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.27.5.tgz"
2221
+ integrity sha512-20Yaz+pbcMufQ7xGauWP9M+dn9XBkAHUfx/kRRLEOf+3mOwEkSUIOQ1nfuxOiYqSR9bNB2LPGIJ4l54ADGA4mQ==
2222
2222
  dependencies:
2223
2223
  "@inquirer/core" "^10.3.2"
2224
2224
  "@inquirer/prompts" "^7.10.1"
2225
2225
  "@oclif/core" "^4"
2226
2226
  "@oclif/multi-stage-output" "^0.8.29"
2227
- "@salesforce/agents" "^0.22.0"
2227
+ "@salesforce/agents" "^0.22.1"
2228
2228
  "@salesforce/core" "^8.24.3"
2229
- "@salesforce/kit" "^3.2.3"
2229
+ "@salesforce/kit" "^3.2.4"
2230
2230
  "@salesforce/sf-plugins-core" "^12.2.6"
2231
2231
  "@salesforce/source-deploy-retrieve" "^12.31.10"
2232
2232
  "@salesforce/types" "^1.5.0"
2233
2233
  ansis "^3.3.2"
2234
- fast-xml-parser "^4.5.1"
2234
+ fast-xml-parser "^5.3.4"
2235
2235
  glob "^11.0.3"
2236
2236
  ink "5.0.1"
2237
2237
  ink-text-input "^6.0.0"
2238
2238
  inquirer-autocomplete-standalone "^0.8.1"
2239
2239
  react "^18.3.1"
2240
- yaml "^2.8.1"
2240
+ yaml "^2.8.2"
2241
2241
 
2242
2242
  "@salesforce/plugin-apex@3.9.5":
2243
2243
  version "3.9.5"
@@ -2446,10 +2446,10 @@
2446
2446
  "@salesforce/sf-plugins-core" "^12.2.6"
2447
2447
  fast-levenshtein "^3.0.0"
2448
2448
 
2449
- "@salesforce/plugin-sobject@1.4.81":
2450
- version "1.4.81"
2451
- resolved "https://registry.npmjs.org/@salesforce/plugin-sobject/-/plugin-sobject-1.4.81.tgz"
2452
- integrity sha512-0LdzCv+I2G/crEuxxQyxdEDiygKkScLxcaF/udJwW3rTOcLPHjAr5Vih4dkphBiqPLJbrK+ehkSnbhk7SvBnXg==
2449
+ "@salesforce/plugin-sobject@1.4.82":
2450
+ version "1.4.82"
2451
+ resolved "https://registry.npmjs.org/@salesforce/plugin-sobject/-/plugin-sobject-1.4.82.tgz"
2452
+ integrity sha512-RlrNhoDZEy8hJlMVtFpzYhq/0UDsE+TF7QQS+N0G1529XG+rIOEXTtrZ6KP248D5X6NRaBkHM5oDd52yIZXzYA==
2453
2453
  dependencies:
2454
2454
  "@inquirer/confirm" "^3.2.0"
2455
2455
  "@inquirer/input" "^2.3.0"
@@ -2459,7 +2459,7 @@
2459
2459
  "@salesforce/kit" "^3.2.4"
2460
2460
  "@salesforce/sf-plugins-core" "^11.3.12"
2461
2461
  fast-glob "^3.3.3"
2462
- fast-xml-parser "^4.5.3"
2462
+ fast-xml-parser "^5.3.4"
2463
2463
  js2xmlparser "^4.0.2"
2464
2464
 
2465
2465
  "@salesforce/plugin-telemetry@3.6.71":
@@ -5992,20 +5992,13 @@ fast-uri@^3.0.1:
5992
5992
  resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz"
5993
5993
  integrity sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==
5994
5994
 
5995
- fast-xml-parser@^4.5.1, fast-xml-parser@^4.5.3:
5995
+ fast-xml-parser@^4.5.3:
5996
5996
  version "4.5.3"
5997
5997
  resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.5.3.tgz"
5998
5998
  integrity sha512-RKihhV+SHsIUGXObeVy9AXiBbFwkVk7Syp8XgwN5U3JV416+Gwp/GO9i0JYKmikykgz/UHRrrV4ROuZEo/T0ig==
5999
5999
  dependencies:
6000
6000
  strnum "^1.1.1"
6001
6001
 
6002
- fast-xml-parser@^5.3.2:
6003
- version "5.3.4"
6004
- resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.3.4.tgz"
6005
- integrity sha512-EFd6afGmXlCx8H8WTZHhAoDaWaGyuIBoZJ2mknrNxug+aZKjkp0a0dlars9Izl+jF+7Gu1/5f/2h68cQpe0IiA==
6006
- dependencies:
6007
- strnum "^2.1.0"
6008
-
6009
6002
  fast-xml-parser@^5.3.4:
6010
6003
  version "5.3.4"
6011
6004
  resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.3.4.tgz"
@@ -4180,5 +4180,5 @@
4180
4180
  "requiresProject": true
4181
4181
  }
4182
4182
  },
4183
- "version": "2.122.5"
4183
+ "version": "2.123.0"
4184
4184
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.122.5",
4
+ "version": "2.123.0",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -78,7 +78,7 @@
78
78
  "jitPlugins": {
79
79
  "@salesforce/plugin-code-analyzer": "5.9.0",
80
80
  "@salesforce/plugin-community": "3.3.48",
81
- "@salesforce/plugin-custom-metadata": "3.3.72",
81
+ "@salesforce/plugin-custom-metadata": "3.3.74",
82
82
  "@salesforce/plugin-dev": "2.5.1",
83
83
  "@salesforce/plugin-devops-center": "1.2.27",
84
84
  "@salesforce/plugin-flow": "1.0.5",
@@ -157,7 +157,7 @@
157
157
  "@oclif/plugin-which": "3.2.43",
158
158
  "@salesforce/core": "^8.25.0",
159
159
  "@salesforce/kit": "^3.1.6",
160
- "@salesforce/plugin-agent": "1.27.2",
160
+ "@salesforce/plugin-agent": "1.27.5",
161
161
  "@salesforce/plugin-apex": "3.9.5",
162
162
  "@salesforce/plugin-api": "1.3.8",
163
163
  "@salesforce/plugin-auth": "4.1.4",
@@ -170,7 +170,7 @@
170
170
  "@salesforce/plugin-packaging": "2.24.11",
171
171
  "@salesforce/plugin-schema": "3.3.90",
172
172
  "@salesforce/plugin-settings": "2.4.54",
173
- "@salesforce/plugin-sobject": "1.4.81",
173
+ "@salesforce/plugin-sobject": "1.4.82",
174
174
  "@salesforce/plugin-telemetry": "3.6.71",
175
175
  "@salesforce/plugin-templates": "56.4.7",
176
176
  "@salesforce/plugin-trust": "3.7.113",