@salesforce/cli 2.131.6 → 2.131.7
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 +20 -20
- package/npm-shrinkwrap.json +61 -48
- package/oclif.lock +62 -56
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
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.131.
|
|
28
|
+
@salesforce/cli/2.131.7 linux-x64 node-v22.22.2
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -274,7 +274,7 @@ ERROR CODES
|
|
|
274
274
|
ActivationFailed (4) Failed to activate the agent due to API or network errors.
|
|
275
275
|
```
|
|
276
276
|
|
|
277
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
277
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/activate.ts)_
|
|
278
278
|
|
|
279
279
|
## `sf agent create`
|
|
280
280
|
|
|
@@ -341,7 +341,7 @@ EXAMPLES
|
|
|
341
341
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
342
342
|
```
|
|
343
343
|
|
|
344
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
344
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/create.ts)_
|
|
345
345
|
|
|
346
346
|
## `sf agent deactivate`
|
|
347
347
|
|
|
@@ -390,7 +390,7 @@ ERROR CODES
|
|
|
390
390
|
DeactivationFailed (4) Failed to deactivate the agent due to API or network errors.
|
|
391
391
|
```
|
|
392
392
|
|
|
393
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
393
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/deactivate.ts)_
|
|
394
394
|
|
|
395
395
|
## `sf agent generate agent-spec`
|
|
396
396
|
|
|
@@ -497,7 +497,7 @@ EXAMPLES
|
|
|
497
497
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
498
498
|
```
|
|
499
499
|
|
|
500
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
500
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/generate/agent-spec.ts)_
|
|
501
501
|
|
|
502
502
|
## `sf agent generate authoring-bundle`
|
|
503
503
|
|
|
@@ -574,7 +574,7 @@ EXAMPLES
|
|
|
574
574
|
other-package-dir/main/default --target-org my-dev-org
|
|
575
575
|
```
|
|
576
576
|
|
|
577
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
577
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/generate/authoring-bundle.ts)_
|
|
578
578
|
|
|
579
579
|
## `sf agent generate template`
|
|
580
580
|
|
|
@@ -636,7 +636,7 @@ EXAMPLES
|
|
|
636
636
|
my-package --source-org my-scratch-org
|
|
637
637
|
```
|
|
638
638
|
|
|
639
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
639
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/generate/template.ts)_
|
|
640
640
|
|
|
641
641
|
## `sf agent generate test-spec`
|
|
642
642
|
|
|
@@ -701,7 +701,7 @@ EXAMPLES
|
|
|
701
701
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
702
702
|
```
|
|
703
703
|
|
|
704
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
704
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/generate/test-spec.ts)_
|
|
705
705
|
|
|
706
706
|
## `sf agent preview`
|
|
707
707
|
|
|
@@ -774,7 +774,7 @@ EXAMPLES
|
|
|
774
774
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
775
775
|
```
|
|
776
776
|
|
|
777
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
777
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/preview.ts)_
|
|
778
778
|
|
|
779
779
|
## `sf agent preview end`
|
|
780
780
|
|
|
@@ -838,7 +838,7 @@ ERROR CODES
|
|
|
838
838
|
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
839
839
|
```
|
|
840
840
|
|
|
841
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
841
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/preview/end.ts)_
|
|
842
842
|
|
|
843
843
|
## `sf agent preview send`
|
|
844
844
|
|
|
@@ -905,7 +905,7 @@ ERROR CODES
|
|
|
905
905
|
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
906
906
|
```
|
|
907
907
|
|
|
908
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
908
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/preview/send.ts)_
|
|
909
909
|
|
|
910
910
|
## `sf agent preview sessions`
|
|
911
911
|
|
|
@@ -941,7 +941,7 @@ ERROR CODES
|
|
|
941
941
|
Succeeded (0) Sessions listed successfully (or empty list if no active sessions).
|
|
942
942
|
```
|
|
943
943
|
|
|
944
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
944
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/preview/sessions.ts)_
|
|
945
945
|
|
|
946
946
|
## `sf agent preview start`
|
|
947
947
|
|
|
@@ -1017,7 +1017,7 @@ ERROR CODES
|
|
|
1017
1017
|
PreviewStartFailed (4) Preview session failed to start due to API or network errors.
|
|
1018
1018
|
```
|
|
1019
1019
|
|
|
1020
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1020
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/preview/start.ts)_
|
|
1021
1021
|
|
|
1022
1022
|
## `sf agent publish authoring-bundle`
|
|
1023
1023
|
|
|
@@ -1066,7 +1066,7 @@ EXAMPLES
|
|
|
1066
1066
|
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
|
|
1067
1067
|
```
|
|
1068
1068
|
|
|
1069
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1069
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/publish/authoring-bundle.ts)_
|
|
1070
1070
|
|
|
1071
1071
|
## `sf agent test create`
|
|
1072
1072
|
|
|
@@ -1130,7 +1130,7 @@ ERROR CODES
|
|
|
1130
1130
|
DeploymentFailed (4) Deployment failed due to API or network errors.
|
|
1131
1131
|
```
|
|
1132
1132
|
|
|
1133
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1133
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/test/create.ts)_
|
|
1134
1134
|
|
|
1135
1135
|
## `sf agent test list`
|
|
1136
1136
|
|
|
@@ -1172,7 +1172,7 @@ ERROR CODES
|
|
|
1172
1172
|
Failed (4) Failed to retrieve agent tests due to API or network errors.
|
|
1173
1173
|
```
|
|
1174
1174
|
|
|
1175
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1175
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/test/list.ts)_
|
|
1176
1176
|
|
|
1177
1177
|
## `sf agent test results`
|
|
1178
1178
|
|
|
@@ -1246,7 +1246,7 @@ ERROR CODES
|
|
|
1246
1246
|
Failed (4) Failed to retrieve results due to API or network errors.
|
|
1247
1247
|
```
|
|
1248
1248
|
|
|
1249
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1249
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/test/results.ts)_
|
|
1250
1250
|
|
|
1251
1251
|
## `sf agent test resume`
|
|
1252
1252
|
|
|
@@ -1328,7 +1328,7 @@ ERROR CODES
|
|
|
1328
1328
|
OperationFailed (4) Failed to poll test due to API or network errors.
|
|
1329
1329
|
```
|
|
1330
1330
|
|
|
1331
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1331
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/test/resume.ts)_
|
|
1332
1332
|
|
|
1333
1333
|
## `sf agent test run`
|
|
1334
1334
|
|
|
@@ -1411,7 +1411,7 @@ ERROR CODES
|
|
|
1411
1411
|
OperationFailed (4) Failed to start or poll test due to API or network errors.
|
|
1412
1412
|
```
|
|
1413
1413
|
|
|
1414
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1414
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/test/run.ts)_
|
|
1415
1415
|
|
|
1416
1416
|
## `sf agent validate authoring-bundle`
|
|
1417
1417
|
|
|
@@ -1468,7 +1468,7 @@ ERROR CODES
|
|
|
1468
1468
|
ServerError (3) Validation/compilation API returned HTTP 500. A server error occurred during compilation.
|
|
1469
1469
|
```
|
|
1470
1470
|
|
|
1471
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1471
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1472
1472
|
|
|
1473
1473
|
## `sf alias list`
|
|
1474
1474
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.131.
|
|
3
|
+
"version": "2.131.7",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.131.
|
|
9
|
+
"version": "2.131.7",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@oclif/plugin-which": "3.2.49",
|
|
25
25
|
"@salesforce/core": "^8.28.0",
|
|
26
26
|
"@salesforce/kit": "^3.1.6",
|
|
27
|
-
"@salesforce/plugin-agent": "1.32.
|
|
27
|
+
"@salesforce/plugin-agent": "1.32.20",
|
|
28
28
|
"@salesforce/plugin-apex": "3.9.20",
|
|
29
29
|
"@salesforce/plugin-api": "1.3.16",
|
|
30
30
|
"@salesforce/plugin-auth": "4.3.4",
|
|
@@ -3333,6 +3333,18 @@
|
|
|
3333
3333
|
"integrity": "sha512-2IHAOaLauc8qaAitvWS+U931T+ze+7MNWrDHY47IENP5y2UA0vqJDu67kWZDdpCN1fFC77sfgfB+HV7SrKshnQ==",
|
|
3334
3334
|
"license": "MIT"
|
|
3335
3335
|
},
|
|
3336
|
+
"node_modules/@nodable/entities": {
|
|
3337
|
+
"version": "2.1.0",
|
|
3338
|
+
"resolved": "https://registry.npmjs.org/@nodable/entities/-/entities-2.1.0.tgz",
|
|
3339
|
+
"integrity": "sha512-nyT7T3nbMyBI/lvr6L5TyWbFJAI9FTgVRakNoBqCD+PmID8DzFrrNdLLtHMwMszOtqZa8PAOV24ZqDnQrhQINA==",
|
|
3340
|
+
"funding": [
|
|
3341
|
+
{
|
|
3342
|
+
"type": "github",
|
|
3343
|
+
"url": "https://github.com/sponsors/nodable"
|
|
3344
|
+
}
|
|
3345
|
+
],
|
|
3346
|
+
"license": "MIT"
|
|
3347
|
+
},
|
|
3336
3348
|
"node_modules/@nodelib/fs.scandir": {
|
|
3337
3349
|
"version": "2.1.5",
|
|
3338
3350
|
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
|
|
@@ -3766,9 +3778,9 @@
|
|
|
3766
3778
|
}
|
|
3767
3779
|
},
|
|
3768
3780
|
"node_modules/@oclif/multi-stage-output": {
|
|
3769
|
-
"version": "0.8.
|
|
3770
|
-
"resolved": "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.8.
|
|
3771
|
-
"integrity": "sha512-
|
|
3781
|
+
"version": "0.8.36",
|
|
3782
|
+
"resolved": "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.8.36.tgz",
|
|
3783
|
+
"integrity": "sha512-3BEpG5CDUJYtyJQZbMPU+o3C0XSC7MgupTb75KjLE6RoG5r9q+BRYkyDyGMspWkqcPtbMqZjs0sMFKmYMiDrEA==",
|
|
3772
3784
|
"license": "MIT",
|
|
3773
3785
|
"dependencies": {
|
|
3774
3786
|
"@oclif/core": "^4",
|
|
@@ -4639,18 +4651,18 @@
|
|
|
4639
4651
|
"license": "BSD-3-Clause"
|
|
4640
4652
|
},
|
|
4641
4653
|
"node_modules/@salesforce/agents": {
|
|
4642
|
-
"version": "
|
|
4643
|
-
"resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-
|
|
4644
|
-
"integrity": "sha512-
|
|
4654
|
+
"version": "1.1.1",
|
|
4655
|
+
"resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-1.1.1.tgz",
|
|
4656
|
+
"integrity": "sha512-sHeyUGbBKtO8diQVjH+mb7wB4cfCZVN+WuqVD44GvaGpR1NBycWlSt/P5klekiO5lZoEyl8kGe3BgySShS4W4g==",
|
|
4645
4657
|
"license": "Apache-2.0",
|
|
4646
4658
|
"dependencies": {
|
|
4647
|
-
"@salesforce/core": "^8.
|
|
4648
|
-
"@salesforce/kit": "^3.2.
|
|
4649
|
-
"@salesforce/source-deploy-retrieve": "^12.
|
|
4650
|
-
"@salesforce/types": "^1.
|
|
4651
|
-
"fast-xml-parser": "^5.
|
|
4659
|
+
"@salesforce/core": "^8.28.3",
|
|
4660
|
+
"@salesforce/kit": "^3.2.6",
|
|
4661
|
+
"@salesforce/source-deploy-retrieve": "^12.32.7",
|
|
4662
|
+
"@salesforce/types": "^1.7.1",
|
|
4663
|
+
"fast-xml-parser": "^5.6.0",
|
|
4652
4664
|
"nock": "^13.5.6",
|
|
4653
|
-
"yaml": "^2.8.
|
|
4665
|
+
"yaml": "^2.8.3"
|
|
4654
4666
|
},
|
|
4655
4667
|
"engines": {
|
|
4656
4668
|
"node": ">=18.0.0"
|
|
@@ -4778,9 +4790,9 @@
|
|
|
4778
4790
|
}
|
|
4779
4791
|
},
|
|
4780
4792
|
"node_modules/@salesforce/core": {
|
|
4781
|
-
"version": "8.28.
|
|
4782
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.28.
|
|
4783
|
-
"integrity": "sha512-
|
|
4793
|
+
"version": "8.28.3",
|
|
4794
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.28.3.tgz",
|
|
4795
|
+
"integrity": "sha512-DDAeHVwDO8wUlqEGwfp8Vuu7Vp7K+hpubKu6baWkHAXiO1u7ZbQkvwCbpPz9JiYEXVUBvP11JtBQ7zOUIPShlQ==",
|
|
4784
4796
|
"license": "BSD-3-Clause",
|
|
4785
4797
|
"dependencies": {
|
|
4786
4798
|
"@jsforce/jsforce-node": "^3.10.13",
|
|
@@ -5029,23 +5041,23 @@
|
|
|
5029
5041
|
}
|
|
5030
5042
|
},
|
|
5031
5043
|
"node_modules/@salesforce/plugin-agent": {
|
|
5032
|
-
"version": "1.32.
|
|
5033
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.
|
|
5034
|
-
"integrity": "sha512-
|
|
5044
|
+
"version": "1.32.20",
|
|
5045
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.20.tgz",
|
|
5046
|
+
"integrity": "sha512-jZg1Ik76LL6CfdvWHPGMtmVbVQZc9UFL+uPWrJKlr11oNXxpbkWuo4/xEwFHF5byKYqV1MRANl+ljZCo2d/+Lg==",
|
|
5035
5047
|
"license": "Apache-2.0",
|
|
5036
5048
|
"dependencies": {
|
|
5037
5049
|
"@inquirer/core": "^10.3.2",
|
|
5038
5050
|
"@inquirer/prompts": "^7.10.1",
|
|
5039
5051
|
"@oclif/core": "^4",
|
|
5040
|
-
"@oclif/multi-stage-output": "^0.8.
|
|
5041
|
-
"@salesforce/agents": "^
|
|
5042
|
-
"@salesforce/core": "^8.
|
|
5043
|
-
"@salesforce/kit": "^3.2.
|
|
5052
|
+
"@oclif/multi-stage-output": "^0.8.36",
|
|
5053
|
+
"@salesforce/agents": "^1.1.1",
|
|
5054
|
+
"@salesforce/core": "^8.28.3",
|
|
5055
|
+
"@salesforce/kit": "^3.2.6",
|
|
5044
5056
|
"@salesforce/sf-plugins-core": "^12.2.6",
|
|
5045
|
-
"@salesforce/source-deploy-retrieve": "^12.32.
|
|
5046
|
-
"@salesforce/types": "^1.
|
|
5057
|
+
"@salesforce/source-deploy-retrieve": "^12.32.8",
|
|
5058
|
+
"@salesforce/types": "^1.7.1",
|
|
5047
5059
|
"ansis": "^3.3.2",
|
|
5048
|
-
"fast-xml-parser": "^5.
|
|
5060
|
+
"fast-xml-parser": "^5.7.1",
|
|
5049
5061
|
"glob": "^11.0.3",
|
|
5050
5062
|
"ink": "5.0.1",
|
|
5051
5063
|
"ink-text-input": "^6.0.0",
|
|
@@ -5857,9 +5869,9 @@
|
|
|
5857
5869
|
}
|
|
5858
5870
|
},
|
|
5859
5871
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
5860
|
-
"version": "12.32.
|
|
5861
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.32.
|
|
5862
|
-
"integrity": "sha512-
|
|
5872
|
+
"version": "12.32.8",
|
|
5873
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.32.8.tgz",
|
|
5874
|
+
"integrity": "sha512-1vTWVGmrrDZSixJjDOb2NfrIsbio9xuUaVcGZpxCfTgcEnggekxMkzq0vSqebgbi9cibLn/3BUkSSuEhsDK8Rw==",
|
|
5863
5875
|
"license": "Apache-2.0",
|
|
5864
5876
|
"dependencies": {
|
|
5865
5877
|
"@salesforce/core": "^8.27.1",
|
|
@@ -5867,13 +5879,13 @@
|
|
|
5867
5879
|
"@salesforce/ts-types": "^2.0.12",
|
|
5868
5880
|
"@salesforce/types": "^1.6.0",
|
|
5869
5881
|
"fast-levenshtein": "^3.0.0",
|
|
5870
|
-
"fast-xml-parser": "^5.5.
|
|
5882
|
+
"fast-xml-parser": "^5.5.11",
|
|
5871
5883
|
"got": "^11.8.6",
|
|
5872
5884
|
"graceful-fs": "^4.2.11",
|
|
5873
5885
|
"ignore": "^5.3.2",
|
|
5874
5886
|
"jszip": "^3.10.1",
|
|
5875
5887
|
"mime": "2.6.0",
|
|
5876
|
-
"minimatch": "^9.0.
|
|
5888
|
+
"minimatch": "^9.0.9",
|
|
5877
5889
|
"proxy-agent": "^6.5.0",
|
|
5878
5890
|
"yaml": "^2.8.3"
|
|
5879
5891
|
},
|
|
@@ -11939,9 +11951,9 @@
|
|
|
11939
11951
|
"license": "MIT"
|
|
11940
11952
|
},
|
|
11941
11953
|
"node_modules/fast-xml-builder": {
|
|
11942
|
-
"version": "1.1.
|
|
11943
|
-
"resolved": "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.1.
|
|
11944
|
-
"integrity": "sha512-
|
|
11954
|
+
"version": "1.1.5",
|
|
11955
|
+
"resolved": "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.1.5.tgz",
|
|
11956
|
+
"integrity": "sha512-4TJn/8FKLeslLAH3dnohXqE3QSoxkhvaMzepOIZytwJXZO69Bfz0HBdDHzOTOon6G59Zrk6VQ2bEiv1t61rfkA==",
|
|
11945
11957
|
"funding": [
|
|
11946
11958
|
{
|
|
11947
11959
|
"type": "github",
|
|
@@ -11954,9 +11966,9 @@
|
|
|
11954
11966
|
}
|
|
11955
11967
|
},
|
|
11956
11968
|
"node_modules/fast-xml-parser": {
|
|
11957
|
-
"version": "5.
|
|
11958
|
-
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.
|
|
11959
|
-
"integrity": "sha512-
|
|
11969
|
+
"version": "5.7.1",
|
|
11970
|
+
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.7.1.tgz",
|
|
11971
|
+
"integrity": "sha512-8Cc3f8GUGUULg34pBch/KGyPLglS+OFs05deyOlY7fL2MTagYPKrVQNmR1fLF/yJ9PH5ZSTd3YDF6pnmeZU+zA==",
|
|
11960
11972
|
"funding": [
|
|
11961
11973
|
{
|
|
11962
11974
|
"type": "github",
|
|
@@ -11965,9 +11977,10 @@
|
|
|
11965
11977
|
],
|
|
11966
11978
|
"license": "MIT",
|
|
11967
11979
|
"dependencies": {
|
|
11968
|
-
"
|
|
11969
|
-
"
|
|
11970
|
-
"
|
|
11980
|
+
"@nodable/entities": "^2.1.0",
|
|
11981
|
+
"fast-xml-builder": "^1.1.5",
|
|
11982
|
+
"path-expression-matcher": "^1.5.0",
|
|
11983
|
+
"strnum": "^2.2.3"
|
|
11971
11984
|
},
|
|
11972
11985
|
"bin": {
|
|
11973
11986
|
"fxparser": "src/cli/cli.js"
|
|
@@ -20472,9 +20485,9 @@
|
|
|
20472
20485
|
}
|
|
20473
20486
|
},
|
|
20474
20487
|
"node_modules/path-expression-matcher": {
|
|
20475
|
-
"version": "1.
|
|
20476
|
-
"resolved": "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.
|
|
20477
|
-
"integrity": "sha512-
|
|
20488
|
+
"version": "1.5.0",
|
|
20489
|
+
"resolved": "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.5.0.tgz",
|
|
20490
|
+
"integrity": "sha512-cbrerZV+6rvdQrrD+iGMcZFEiiSrbv9Tfdkvnusy6y0x0GKBXREFg/Y65GhIfm0tnLntThhzCnfKwp1WRjeCyQ==",
|
|
20478
20491
|
"funding": [
|
|
20479
20492
|
{
|
|
20480
20493
|
"type": "github",
|
|
@@ -22995,9 +23008,9 @@
|
|
|
22995
23008
|
}
|
|
22996
23009
|
},
|
|
22997
23010
|
"node_modules/strnum": {
|
|
22998
|
-
"version": "2.2.
|
|
22999
|
-
"resolved": "https://registry.npmjs.org/strnum/-/strnum-2.2.
|
|
23000
|
-
"integrity": "sha512-
|
|
23011
|
+
"version": "2.2.3",
|
|
23012
|
+
"resolved": "https://registry.npmjs.org/strnum/-/strnum-2.2.3.tgz",
|
|
23013
|
+
"integrity": "sha512-oKx6RUCuHfT3oyVjtnrmn19H1SiCqgJSg+54XqURKp5aCMbrXrhLjRN9TjuwMjiYstZ0MzDrHqkGZ5dFTKd+zg==",
|
|
23001
23014
|
"funding": [
|
|
23002
23015
|
{
|
|
23003
23016
|
"type": "github",
|
package/oclif.lock
CHANGED
|
@@ -1444,6 +1444,11 @@
|
|
|
1444
1444
|
resolved "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.0.1.tgz"
|
|
1445
1445
|
integrity sha512-2IHAOaLauc8qaAitvWS+U931T+ze+7MNWrDHY47IENP5y2UA0vqJDu67kWZDdpCN1fFC77sfgfB+HV7SrKshnQ==
|
|
1446
1446
|
|
|
1447
|
+
"@nodable/entities@^2.1.0":
|
|
1448
|
+
version "2.1.0"
|
|
1449
|
+
resolved "https://registry.npmjs.org/@nodable/entities/-/entities-2.1.0.tgz"
|
|
1450
|
+
integrity sha512-nyT7T3nbMyBI/lvr6L5TyWbFJAI9FTgVRakNoBqCD+PmID8DzFrrNdLLtHMwMszOtqZa8PAOV24ZqDnQrhQINA==
|
|
1451
|
+
|
|
1447
1452
|
"@nodelib/fs.scandir@2.1.5":
|
|
1448
1453
|
version "2.1.5"
|
|
1449
1454
|
resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
|
|
@@ -1685,10 +1690,10 @@
|
|
|
1685
1690
|
wordwrap "^1.0.0"
|
|
1686
1691
|
wrap-ansi "^7.0.0"
|
|
1687
1692
|
|
|
1688
|
-
"@oclif/multi-stage-output@^0.8.
|
|
1689
|
-
version "0.8.
|
|
1690
|
-
resolved "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.8.
|
|
1691
|
-
integrity sha512-
|
|
1693
|
+
"@oclif/multi-stage-output@^0.8.30", "@oclif/multi-stage-output@^0.8.34", "@oclif/multi-stage-output@^0.8.36":
|
|
1694
|
+
version "0.8.36"
|
|
1695
|
+
resolved "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.8.36.tgz"
|
|
1696
|
+
integrity sha512-3BEpG5CDUJYtyJQZbMPU+o3C0XSC7MgupTb75KjLE6RoG5r9q+BRYkyDyGMspWkqcPtbMqZjs0sMFKmYMiDrEA==
|
|
1692
1697
|
dependencies:
|
|
1693
1698
|
"@oclif/core" "^4"
|
|
1694
1699
|
"@types/react" "^18.3.12"
|
|
@@ -2047,18 +2052,18 @@
|
|
|
2047
2052
|
resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz"
|
|
2048
2053
|
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
|
|
2049
2054
|
|
|
2050
|
-
"@salesforce/agents@^
|
|
2051
|
-
version "
|
|
2052
|
-
resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-
|
|
2053
|
-
integrity sha512-
|
|
2055
|
+
"@salesforce/agents@^1.1.1":
|
|
2056
|
+
version "1.1.1"
|
|
2057
|
+
resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-1.1.1.tgz"
|
|
2058
|
+
integrity sha512-sHeyUGbBKtO8diQVjH+mb7wB4cfCZVN+WuqVD44GvaGpR1NBycWlSt/P5klekiO5lZoEyl8kGe3BgySShS4W4g==
|
|
2054
2059
|
dependencies:
|
|
2055
|
-
"@salesforce/core" "^8.
|
|
2056
|
-
"@salesforce/kit" "^3.2.
|
|
2057
|
-
"@salesforce/source-deploy-retrieve" "^12.
|
|
2058
|
-
"@salesforce/types" "^1.
|
|
2059
|
-
fast-xml-parser "^5.
|
|
2060
|
+
"@salesforce/core" "^8.28.3"
|
|
2061
|
+
"@salesforce/kit" "^3.2.6"
|
|
2062
|
+
"@salesforce/source-deploy-retrieve" "^12.32.7"
|
|
2063
|
+
"@salesforce/types" "^1.7.1"
|
|
2064
|
+
fast-xml-parser "^5.6.0"
|
|
2060
2065
|
nock "^13.5.6"
|
|
2061
|
-
yaml "^2.8.
|
|
2066
|
+
yaml "^2.8.3"
|
|
2062
2067
|
|
|
2063
2068
|
"@salesforce/apex-node@^8.4.16", "@salesforce/apex-node@^8.4.18":
|
|
2064
2069
|
version "8.4.20"
|
|
@@ -2091,10 +2096,10 @@
|
|
|
2091
2096
|
strip-ansi "6.0.1"
|
|
2092
2097
|
ts-retry-promise "^0.8.1"
|
|
2093
2098
|
|
|
2094
|
-
"@salesforce/core@^8.18.7", "@salesforce/core@^8.25.1", "@salesforce/core@^8.
|
|
2095
|
-
version "8.28.
|
|
2096
|
-
resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.28.
|
|
2097
|
-
integrity sha512-
|
|
2099
|
+
"@salesforce/core@^8.18.7", "@salesforce/core@^8.25.1", "@salesforce/core@^8.27.0", "@salesforce/core@^8.27.1", "@salesforce/core@^8.28.0", "@salesforce/core@^8.28.1", "@salesforce/core@^8.28.3", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.5":
|
|
2100
|
+
version "8.28.3"
|
|
2101
|
+
resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.28.3.tgz"
|
|
2102
|
+
integrity sha512-DDAeHVwDO8wUlqEGwfp8Vuu7Vp7K+hpubKu6baWkHAXiO1u7ZbQkvwCbpPz9JiYEXVUBvP11JtBQ7zOUIPShlQ==
|
|
2098
2103
|
dependencies:
|
|
2099
2104
|
"@jsforce/jsforce-node" "^3.10.13"
|
|
2100
2105
|
"@salesforce/kit" "^3.2.4"
|
|
@@ -2188,23 +2193,23 @@
|
|
|
2188
2193
|
jszip "^3.10.1"
|
|
2189
2194
|
object-treeify "^2"
|
|
2190
2195
|
|
|
2191
|
-
"@salesforce/plugin-agent@1.32.
|
|
2192
|
-
version "1.32.
|
|
2193
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.
|
|
2194
|
-
integrity sha512-
|
|
2196
|
+
"@salesforce/plugin-agent@1.32.20":
|
|
2197
|
+
version "1.32.20"
|
|
2198
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.20.tgz"
|
|
2199
|
+
integrity sha512-jZg1Ik76LL6CfdvWHPGMtmVbVQZc9UFL+uPWrJKlr11oNXxpbkWuo4/xEwFHF5byKYqV1MRANl+ljZCo2d/+Lg==
|
|
2195
2200
|
dependencies:
|
|
2196
2201
|
"@inquirer/core" "^10.3.2"
|
|
2197
2202
|
"@inquirer/prompts" "^7.10.1"
|
|
2198
2203
|
"@oclif/core" "^4"
|
|
2199
|
-
"@oclif/multi-stage-output" "^0.8.
|
|
2200
|
-
"@salesforce/agents" "^
|
|
2201
|
-
"@salesforce/core" "^8.
|
|
2202
|
-
"@salesforce/kit" "^3.2.
|
|
2204
|
+
"@oclif/multi-stage-output" "^0.8.36"
|
|
2205
|
+
"@salesforce/agents" "^1.1.1"
|
|
2206
|
+
"@salesforce/core" "^8.28.3"
|
|
2207
|
+
"@salesforce/kit" "^3.2.6"
|
|
2203
2208
|
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
2204
|
-
"@salesforce/source-deploy-retrieve" "^12.32.
|
|
2205
|
-
"@salesforce/types" "^1.
|
|
2209
|
+
"@salesforce/source-deploy-retrieve" "^12.32.8"
|
|
2210
|
+
"@salesforce/types" "^1.7.1"
|
|
2206
2211
|
ansis "^3.3.2"
|
|
2207
|
-
fast-xml-parser "^5.
|
|
2212
|
+
fast-xml-parser "^5.7.1"
|
|
2208
2213
|
glob "^11.0.3"
|
|
2209
2214
|
ink "5.0.1"
|
|
2210
2215
|
ink-text-input "^6.0.0"
|
|
@@ -2529,23 +2534,23 @@
|
|
|
2529
2534
|
cli-progress "^3.12.0"
|
|
2530
2535
|
terminal-link "^3.0.0"
|
|
2531
2536
|
|
|
2532
|
-
"@salesforce/source-deploy-retrieve@^12.31.
|
|
2533
|
-
version "12.32.
|
|
2534
|
-
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.32.
|
|
2535
|
-
integrity sha512-
|
|
2537
|
+
"@salesforce/source-deploy-retrieve@^12.31.30", "@salesforce/source-deploy-retrieve@^12.32.1", "@salesforce/source-deploy-retrieve@^12.32.7", "@salesforce/source-deploy-retrieve@^12.32.8":
|
|
2538
|
+
version "12.32.8"
|
|
2539
|
+
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.32.8.tgz"
|
|
2540
|
+
integrity sha512-1vTWVGmrrDZSixJjDOb2NfrIsbio9xuUaVcGZpxCfTgcEnggekxMkzq0vSqebgbi9cibLn/3BUkSSuEhsDK8Rw==
|
|
2536
2541
|
dependencies:
|
|
2537
2542
|
"@salesforce/core" "^8.27.1"
|
|
2538
2543
|
"@salesforce/kit" "^3.2.4"
|
|
2539
2544
|
"@salesforce/ts-types" "^2.0.12"
|
|
2540
2545
|
"@salesforce/types" "^1.6.0"
|
|
2541
2546
|
fast-levenshtein "^3.0.0"
|
|
2542
|
-
fast-xml-parser "^5.5.
|
|
2547
|
+
fast-xml-parser "^5.5.11"
|
|
2543
2548
|
got "^11.8.6"
|
|
2544
2549
|
graceful-fs "^4.2.11"
|
|
2545
2550
|
ignore "^5.3.2"
|
|
2546
2551
|
jszip "^3.10.1"
|
|
2547
2552
|
mime "2.6.0"
|
|
2548
|
-
minimatch "^9.0.
|
|
2553
|
+
minimatch "^9.0.9"
|
|
2549
2554
|
proxy-agent "^6.5.0"
|
|
2550
2555
|
yaml "^2.8.3"
|
|
2551
2556
|
|
|
@@ -5983,21 +5988,22 @@ fast-uri@^3.0.1:
|
|
|
5983
5988
|
resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz"
|
|
5984
5989
|
integrity sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==
|
|
5985
5990
|
|
|
5986
|
-
fast-xml-builder@^1.1.4:
|
|
5987
|
-
version "1.1.
|
|
5988
|
-
resolved "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.1.
|
|
5989
|
-
integrity sha512-
|
|
5991
|
+
fast-xml-builder@^1.1.4, fast-xml-builder@^1.1.5:
|
|
5992
|
+
version "1.1.5"
|
|
5993
|
+
resolved "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.1.5.tgz"
|
|
5994
|
+
integrity sha512-4TJn/8FKLeslLAH3dnohXqE3QSoxkhvaMzepOIZytwJXZO69Bfz0HBdDHzOTOon6G59Zrk6VQ2bEiv1t61rfkA==
|
|
5990
5995
|
dependencies:
|
|
5991
5996
|
path-expression-matcher "^1.1.3"
|
|
5992
5997
|
|
|
5993
|
-
fast-xml-parser@^5.
|
|
5994
|
-
version "5.
|
|
5995
|
-
resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.
|
|
5996
|
-
integrity sha512-
|
|
5998
|
+
fast-xml-parser@^5.5.10, fast-xml-parser@^5.5.11, fast-xml-parser@^5.5.7, fast-xml-parser@^5.5.9, fast-xml-parser@^5.6.0, fast-xml-parser@^5.7.1:
|
|
5999
|
+
version "5.7.1"
|
|
6000
|
+
resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.7.1.tgz"
|
|
6001
|
+
integrity sha512-8Cc3f8GUGUULg34pBch/KGyPLglS+OFs05deyOlY7fL2MTagYPKrVQNmR1fLF/yJ9PH5ZSTd3YDF6pnmeZU+zA==
|
|
5997
6002
|
dependencies:
|
|
5998
|
-
|
|
5999
|
-
|
|
6000
|
-
|
|
6003
|
+
"@nodable/entities" "^2.1.0"
|
|
6004
|
+
fast-xml-builder "^1.1.5"
|
|
6005
|
+
path-expression-matcher "^1.5.0"
|
|
6006
|
+
strnum "^2.2.3"
|
|
6001
6007
|
|
|
6002
6008
|
fast-xml-parser@5.5.8:
|
|
6003
6009
|
version "5.5.8"
|
|
@@ -8497,7 +8503,7 @@ minimatch@^5.0.1, minimatch@^5.1.6:
|
|
|
8497
8503
|
dependencies:
|
|
8498
8504
|
brace-expansion "^2.0.1"
|
|
8499
8505
|
|
|
8500
|
-
minimatch@^9.0.0, minimatch@^9.0.4, minimatch@^9.0.5, minimatch@^9.0.
|
|
8506
|
+
minimatch@^9.0.0, minimatch@^9.0.4, minimatch@^9.0.5, minimatch@^9.0.9:
|
|
8501
8507
|
version "9.0.9"
|
|
8502
8508
|
resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz"
|
|
8503
8509
|
integrity sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==
|
|
@@ -9518,10 +9524,10 @@ path-exists@^4.0.0:
|
|
|
9518
9524
|
resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
|
|
9519
9525
|
integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
|
|
9520
9526
|
|
|
9521
|
-
path-expression-matcher@^1.1.3, path-expression-matcher@^1.2.0, path-expression-matcher@^1.
|
|
9522
|
-
version "1.
|
|
9523
|
-
resolved "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.
|
|
9524
|
-
integrity sha512-
|
|
9527
|
+
path-expression-matcher@^1.1.3, path-expression-matcher@^1.2.0, path-expression-matcher@^1.5.0:
|
|
9528
|
+
version "1.5.0"
|
|
9529
|
+
resolved "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.5.0.tgz"
|
|
9530
|
+
integrity sha512-cbrerZV+6rvdQrrD+iGMcZFEiiSrbv9Tfdkvnusy6y0x0GKBXREFg/Y65GhIfm0tnLntThhzCnfKwp1WRjeCyQ==
|
|
9525
9531
|
|
|
9526
9532
|
path-is-absolute@^1.0.0:
|
|
9527
9533
|
version "1.0.1"
|
|
@@ -10940,10 +10946,10 @@ strip-json-comments@^3.1.1:
|
|
|
10940
10946
|
resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
|
|
10941
10947
|
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
|
|
10942
10948
|
|
|
10943
|
-
strnum@^2.2.0, strnum@^2.2.
|
|
10944
|
-
version "2.2.
|
|
10945
|
-
resolved "https://registry.npmjs.org/strnum/-/strnum-2.2.
|
|
10946
|
-
integrity sha512-
|
|
10949
|
+
strnum@^2.2.0, strnum@^2.2.3:
|
|
10950
|
+
version "2.2.3"
|
|
10951
|
+
resolved "https://registry.npmjs.org/strnum/-/strnum-2.2.3.tgz"
|
|
10952
|
+
integrity sha512-oKx6RUCuHfT3oyVjtnrmn19H1SiCqgJSg+54XqURKp5aCMbrXrhLjRN9TjuwMjiYstZ0MzDrHqkGZ5dFTKd+zg==
|
|
10947
10953
|
|
|
10948
10954
|
supports-color@^5.3.0:
|
|
10949
10955
|
version "5.5.0"
|
|
@@ -11882,7 +11888,7 @@ yallist@^5.0.0:
|
|
|
11882
11888
|
resolved "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz"
|
|
11883
11889
|
integrity sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==
|
|
11884
11890
|
|
|
11885
|
-
yaml@^2.5.1, yaml@^2.8.
|
|
11891
|
+
yaml@^2.5.1, yaml@^2.8.3:
|
|
11886
11892
|
version "2.8.3"
|
|
11887
11893
|
resolved "https://registry.npmjs.org/yaml/-/yaml-2.8.3.tgz"
|
|
11888
11894
|
integrity sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.131.
|
|
4
|
+
"version": "2.131.7",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"@oclif/plugin-which": "3.2.49",
|
|
160
160
|
"@salesforce/core": "^8.28.0",
|
|
161
161
|
"@salesforce/kit": "^3.1.6",
|
|
162
|
-
"@salesforce/plugin-agent": "1.32.
|
|
162
|
+
"@salesforce/plugin-agent": "1.32.20",
|
|
163
163
|
"@salesforce/plugin-apex": "3.9.20",
|
|
164
164
|
"@salesforce/plugin-api": "1.3.16",
|
|
165
165
|
"@salesforce/plugin-auth": "4.3.4",
|