@salesforce/cli 2.107.0 → 2.107.2

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.107.0 linux-x64 node-v22.19.0
28
+ @salesforce/cli/2.107.2 linux-x64 node-v22.19.0
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -106,6 +106,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
106
106
  - [`sf lightning generate event`](#sf-lightning-generate-event)
107
107
  - [`sf lightning generate interface`](#sf-lightning-generate-interface)
108
108
  - [`sf lightning generate test`](#sf-lightning-generate-test)
109
+ - [`sf logic get test`](#sf-logic-get-test)
109
110
  - [`sf org assign permset`](#sf-org-assign-permset)
110
111
  - [`sf org assign permsetlicense`](#sf-org-assign-permsetlicense)
111
112
  - [`sf org create sandbox`](#sf-org-create-sandbox)
@@ -1267,7 +1268,7 @@ FLAG DESCRIPTIONS
1267
1268
  directory.
1268
1269
  ```
1269
1270
 
1270
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.6.19/src/commands/apex/get/log.ts)_
1271
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.7.0/src/commands/apex/get/log.ts)_
1271
1272
 
1272
1273
  ## `sf apex get test`
1273
1274
 
@@ -1327,7 +1328,7 @@ EXAMPLES
1327
1328
  me@myorg'
1328
1329
  ```
1329
1330
 
1330
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.6.19/src/commands/apex/get/test.ts)_
1331
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.7.0/src/commands/apex/get/test.ts)_
1331
1332
 
1332
1333
  ## `sf apex list log`
1333
1334
 
@@ -1367,7 +1368,7 @@ EXAMPLES
1367
1368
  $ sf apex list log --target-org me@my.org
1368
1369
  ```
1369
1370
 
1370
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.6.19/src/commands/apex/list/log.ts)_
1371
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.7.0/src/commands/apex/list/log.ts)_
1371
1372
 
1372
1373
  ## `sf apex run`
1373
1374
 
@@ -1414,7 +1415,7 @@ EXAMPLES
1414
1415
  $ sf apex run
1415
1416
  ```
1416
1417
 
1417
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.6.19/src/commands/apex/run.ts)_
1418
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.7.0/src/commands/apex/run.ts)_
1418
1419
 
1419
1420
  ## `sf apex run test`
1420
1421
 
@@ -1557,7 +1558,7 @@ FLAG DESCRIPTIONS
1557
1558
  --tests Test1 --tests Test2
1558
1559
  ```
1559
1560
 
1560
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.6.19/src/commands/apex/run/test.ts)_
1561
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.7.0/src/commands/apex/run/test.ts)_
1561
1562
 
1562
1563
  ## `sf apex tail log`
1563
1564
 
@@ -1600,7 +1601,7 @@ EXAMPLES
1600
1601
  $ sf apex tail log --color --skip-trace-flag
1601
1602
  ```
1602
1603
 
1603
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.6.19/src/commands/apex/tail/log.ts)_
1604
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.7.0/src/commands/apex/tail/log.ts)_
1604
1605
 
1605
1606
  ## `sf api request graphql`
1606
1607
 
@@ -3653,6 +3654,54 @@ FLAG DESCRIPTIONS
3653
3654
 
3654
3655
  _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.63/src/commands/lightning/generate/test.ts)_
3655
3656
 
3657
+ ## `sf logic get test`
3658
+
3659
+ Get the results of a test run.
3660
+
3661
+ ```
3662
+ USAGE
3663
+ $ sf logic get test -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>]
3664
+ [--detailed-coverage -c] [-d <value>] [-r human|tap|junit|json] [--concise]
3665
+
3666
+ FLAGS
3667
+ -c, --code-coverage Retrieve code coverage results.
3668
+ -d, --output-dir=<value> Directory in which to store test result files.
3669
+ -i, --test-run-id=<value> (required) ID of the test run.
3670
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
3671
+ configuration variable is already set.
3672
+ -r, --result-format=<option> [default: human] Format of the test results.
3673
+ <options: human|tap|junit|json>
3674
+ --api-version=<value> Override the api version used for api requests made by this command
3675
+ --concise Display only failed test results; works with human-readable output only.
3676
+ --detailed-coverage Display detailed code coverage per test.
3677
+
3678
+ GLOBAL FLAGS
3679
+ --flags-dir=<value> Import flag values from a directory.
3680
+ --json Format output as json.
3681
+
3682
+ DESCRIPTION
3683
+ Get the results of a test run.
3684
+
3685
+ When you run 'sf logic run test' to test Apex classes and Flows asynchronously, it returns a test run ID. Use that ID
3686
+ with this command to see the results.
3687
+
3688
+ To see code coverage results, use the --code-coverage flag with --result-format. The output displays a high-level
3689
+ summary of the test run and the code coverage values for classes in your org. If you specify human-readable result
3690
+ format, use the --detailed-coverage flag to see detailed coverage results for each test method run.
3691
+
3692
+ EXAMPLES
3693
+ Get the results for a specific test run ID in the default human-readable format; uses your default org:
3694
+
3695
+ $ sf logic get test --test-run-id <test run id>
3696
+
3697
+ Get the results for a specific test run ID, format them as JUnit, and save them to the "test-results/junit"
3698
+ directory; uses the org with alias "my-scratch":
3699
+
3700
+ $ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
3701
+ ```
3702
+
3703
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.7.0/src/commands/logic/get/test.ts)_
3704
+
3656
3705
  ## `sf org assign permset`
3657
3706
 
3658
3707
  Assign a permission set to one or more org users.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.107.0",
3
+ "version": "2.107.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.107.0",
9
+ "version": "2.107.2",
10
10
  "hasInstallScript": true,
11
11
  "license": "Apache-2.0",
12
12
  "dependencies": {
@@ -25,7 +25,7 @@
25
25
  "@salesforce/core": "^8.9.1",
26
26
  "@salesforce/kit": "^3.1.6",
27
27
  "@salesforce/plugin-agent": "1.24.9",
28
- "@salesforce/plugin-apex": "3.6.19",
28
+ "@salesforce/plugin-apex": "3.7.0",
29
29
  "@salesforce/plugin-api": "1.3.3",
30
30
  "@salesforce/plugin-auth": "3.9.5",
31
31
  "@salesforce/plugin-data": "4.0.55",
@@ -5039,20 +5039,20 @@
5039
5039
  "license": "MIT"
5040
5040
  },
5041
5041
  "node_modules/@salesforce/apex-node": {
5042
- "version": "8.2.8",
5043
- "resolved": "https://registry.npmjs.org/@salesforce/apex-node/-/apex-node-8.2.8.tgz",
5044
- "integrity": "sha512-lKZkfcOHVmUL8RrMU1KAh7LOt4OiztyWXvFpaignQwv1RMHFdkByq1YGyQsD74akLu6vH8iw0UrojM638BU6Uw==",
5042
+ "version": "8.3.2",
5043
+ "resolved": "https://registry.npmjs.org/@salesforce/apex-node/-/apex-node-8.3.2.tgz",
5044
+ "integrity": "sha512-sDz2+KT9KXx4miXG+Wxmzrsxt0QLSyFrSPwqyvpMeZ+FoyIcQ4mXCZ1KlffRKakh60vRcWp1Q9Us5pMLm9wIMg==",
5045
5045
  "license": "BSD-3-Clause",
5046
5046
  "dependencies": {
5047
- "@salesforce/core": "^8.19.1",
5048
- "@salesforce/kit": "^3.2.3",
5047
+ "@salesforce/core": "^8.23.0",
5048
+ "@salesforce/kit": "^3.2.4",
5049
5049
  "@types/istanbul-reports": "^3.0.4",
5050
- "bfj": "8.0.0",
5051
5050
  "fast-glob": "^3.3.2",
5052
5051
  "faye": "1.4.1",
5053
5052
  "istanbul-lib-coverage": "^3.2.2",
5054
5053
  "istanbul-lib-report": "^3.0.1",
5055
- "istanbul-reports": "^3.1.7"
5054
+ "istanbul-reports": "^3.2.0",
5055
+ "json-stream-stringify": "^3.1.6"
5056
5056
  },
5057
5057
  "engines": {
5058
5058
  "node": ">=18.18.2"
@@ -5332,12 +5332,12 @@
5332
5332
  }
5333
5333
  },
5334
5334
  "node_modules/@salesforce/plugin-apex": {
5335
- "version": "3.6.19",
5336
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.6.19.tgz",
5337
- "integrity": "sha512-tn2/o1Yk4dOofolGJ6YTvqhwhuIoVqV6yIyq5DUWmMCJ51UJEshsAeW4gYUzA++di5wefwDFHtTCddgx5xChKg==",
5335
+ "version": "3.7.0",
5336
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.7.0.tgz",
5337
+ "integrity": "sha512-9Y6WMFVVZuQQbFnzpuDE5NZVEziahvxHSmkGuQBUjNEBcZWJMZyEjNRzbbOhfk9qlLdUEEkmlH66DOFXT4bz+A==",
5338
5338
  "license": "BSD-3-Clause",
5339
5339
  "dependencies": {
5340
- "@salesforce/apex-node": "^8.1.27",
5340
+ "@salesforce/apex-node": "^8.3.1",
5341
5341
  "@salesforce/core": "^8.10.1",
5342
5342
  "@salesforce/kit": "^3.2.3",
5343
5343
  "@salesforce/sf-plugins-core": "^12.2.1",
@@ -8852,22 +8852,6 @@
8852
8852
  "dev": true,
8853
8853
  "license": "Apache-2.0"
8854
8854
  },
8855
- "node_modules/bfj": {
8856
- "version": "8.0.0",
8857
- "resolved": "https://registry.npmjs.org/bfj/-/bfj-8.0.0.tgz",
8858
- "integrity": "sha512-6KJe4gFrZ4lhmvWcUIj37yFAs36mi2FZXuTkw6udZ/QsX/znFypW4SatqcLA5K5T4BAWgJZD73UFEJJQxuJjoA==",
8859
- "license": "MIT",
8860
- "dependencies": {
8861
- "bluebird": "^3.7.2",
8862
- "check-types": "^11.2.3",
8863
- "hoopy": "^0.1.4",
8864
- "jsonpath": "^1.1.1",
8865
- "tryer": "^1.0.1"
8866
- },
8867
- "engines": {
8868
- "node": ">= 18.0.0"
8869
- }
8870
- },
8871
8855
  "node_modules/bin-links": {
8872
8856
  "version": "5.0.0",
8873
8857
  "resolved": "https://registry.npmjs.org/bin-links/-/bin-links-5.0.0.tgz",
@@ -8933,12 +8917,6 @@
8933
8917
  "ieee754": "^1.1.13"
8934
8918
  }
8935
8919
  },
8936
- "node_modules/bluebird": {
8937
- "version": "3.7.2",
8938
- "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
8939
- "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
8940
- "license": "MIT"
8941
- },
8942
8920
  "node_modules/bottleneck": {
8943
8921
  "version": "2.19.5",
8944
8922
  "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz",
@@ -9538,12 +9516,6 @@
9538
9516
  "node": "*"
9539
9517
  }
9540
9518
  },
9541
- "node_modules/check-types": {
9542
- "version": "11.2.3",
9543
- "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz",
9544
- "integrity": "sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==",
9545
- "license": "MIT"
9546
- },
9547
9519
  "node_modules/chokidar": {
9548
9520
  "version": "3.6.0",
9549
9521
  "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
@@ -10850,6 +10822,7 @@
10850
10822
  "version": "0.1.4",
10851
10823
  "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
10852
10824
  "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
10825
+ "dev": true,
10853
10826
  "license": "MIT"
10854
10827
  },
10855
10828
  "node_modules/default-browser": {
@@ -10976,27 +10949,6 @@
10976
10949
  "node": ">= 14"
10977
10950
  }
10978
10951
  },
10979
- "node_modules/degenerator/node_modules/escodegen": {
10980
- "version": "2.1.0",
10981
- "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
10982
- "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
10983
- "license": "BSD-2-Clause",
10984
- "dependencies": {
10985
- "esprima": "^4.0.1",
10986
- "estraverse": "^5.2.0",
10987
- "esutils": "^2.0.2"
10988
- },
10989
- "bin": {
10990
- "escodegen": "bin/escodegen.js",
10991
- "esgenerate": "bin/esgenerate.js"
10992
- },
10993
- "engines": {
10994
- "node": ">=6.0"
10995
- },
10996
- "optionalDependencies": {
10997
- "source-map": "~0.6.1"
10998
- }
10999
- },
11000
10952
  "node_modules/delayed-stream": {
11001
10953
  "version": "1.0.0",
11002
10954
  "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
@@ -11584,72 +11536,26 @@
11584
11536
  }
11585
11537
  },
11586
11538
  "node_modules/escodegen": {
11587
- "version": "1.14.3",
11588
- "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz",
11589
- "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==",
11539
+ "version": "2.1.0",
11540
+ "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
11541
+ "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
11590
11542
  "license": "BSD-2-Clause",
11591
11543
  "dependencies": {
11592
11544
  "esprima": "^4.0.1",
11593
- "estraverse": "^4.2.0",
11594
- "esutils": "^2.0.2",
11595
- "optionator": "^0.8.1"
11545
+ "estraverse": "^5.2.0",
11546
+ "esutils": "^2.0.2"
11596
11547
  },
11597
11548
  "bin": {
11598
11549
  "escodegen": "bin/escodegen.js",
11599
11550
  "esgenerate": "bin/esgenerate.js"
11600
11551
  },
11601
11552
  "engines": {
11602
- "node": ">=4.0"
11553
+ "node": ">=6.0"
11603
11554
  },
11604
11555
  "optionalDependencies": {
11605
11556
  "source-map": "~0.6.1"
11606
11557
  }
11607
11558
  },
11608
- "node_modules/escodegen/node_modules/estraverse": {
11609
- "version": "4.3.0",
11610
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
11611
- "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
11612
- "license": "BSD-2-Clause",
11613
- "engines": {
11614
- "node": ">=4.0"
11615
- }
11616
- },
11617
- "node_modules/escodegen/node_modules/fast-levenshtein": {
11618
- "version": "2.0.6",
11619
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
11620
- "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
11621
- "license": "MIT"
11622
- },
11623
- "node_modules/escodegen/node_modules/levn": {
11624
- "version": "0.3.0",
11625
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
11626
- "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==",
11627
- "license": "MIT",
11628
- "dependencies": {
11629
- "prelude-ls": "~1.1.2",
11630
- "type-check": "~0.3.2"
11631
- },
11632
- "engines": {
11633
- "node": ">= 0.8.0"
11634
- }
11635
- },
11636
- "node_modules/escodegen/node_modules/optionator": {
11637
- "version": "0.8.3",
11638
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
11639
- "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
11640
- "license": "MIT",
11641
- "dependencies": {
11642
- "deep-is": "~0.1.3",
11643
- "fast-levenshtein": "~2.0.6",
11644
- "levn": "~0.3.0",
11645
- "prelude-ls": "~1.1.2",
11646
- "type-check": "~0.3.2",
11647
- "word-wrap": "~1.2.3"
11648
- },
11649
- "engines": {
11650
- "node": ">= 0.8.0"
11651
- }
11652
- },
11653
11559
  "node_modules/eslint": {
11654
11560
  "version": "8.57.0",
11655
11561
  "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz",
@@ -13544,15 +13450,6 @@
13544
13450
  "integrity": "sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==",
13545
13451
  "license": "MIT"
13546
13452
  },
13547
- "node_modules/hoopy": {
13548
- "version": "0.1.4",
13549
- "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz",
13550
- "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==",
13551
- "license": "MIT",
13552
- "engines": {
13553
- "node": ">= 6.0.0"
13554
- }
13555
- },
13556
13453
  "node_modules/hosted-git-info": {
13557
13454
  "version": "8.1.0",
13558
13455
  "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-8.1.0.tgz",
@@ -14983,9 +14880,9 @@
14983
14880
  }
14984
14881
  },
14985
14882
  "node_modules/istanbul-reports": {
14986
- "version": "3.1.7",
14987
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz",
14988
- "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==",
14883
+ "version": "3.2.0",
14884
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz",
14885
+ "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==",
14989
14886
  "license": "BSD-3-Clause",
14990
14887
  "dependencies": {
14991
14888
  "html-escaper": "^2.0.0",
@@ -15164,6 +15061,15 @@
15164
15061
  "dev": true,
15165
15062
  "license": "MIT"
15166
15063
  },
15064
+ "node_modules/json-stream-stringify": {
15065
+ "version": "3.1.6",
15066
+ "resolved": "https://registry.npmjs.org/json-stream-stringify/-/json-stream-stringify-3.1.6.tgz",
15067
+ "integrity": "sha512-x7fpwxOkbhFCaJDJ8vb1fBY3DdSa4AlITaz+HHILQJzdPMnHEFjxPwVUi1ALIbcIxDE0PNe/0i7frnY8QnBQog==",
15068
+ "license": "MIT",
15069
+ "engines": {
15070
+ "node": ">=7.10.1"
15071
+ }
15072
+ },
15167
15073
  "node_modules/json-stringify-nice": {
15168
15074
  "version": "1.1.4",
15169
15075
  "resolved": "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz",
@@ -15222,29 +15128,6 @@
15222
15128
  ],
15223
15129
  "license": "MIT"
15224
15130
  },
15225
- "node_modules/jsonpath": {
15226
- "version": "1.1.1",
15227
- "resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz",
15228
- "integrity": "sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==",
15229
- "license": "MIT",
15230
- "dependencies": {
15231
- "esprima": "1.2.2",
15232
- "static-eval": "2.0.2",
15233
- "underscore": "1.12.1"
15234
- }
15235
- },
15236
- "node_modules/jsonpath/node_modules/esprima": {
15237
- "version": "1.2.2",
15238
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz",
15239
- "integrity": "sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==",
15240
- "bin": {
15241
- "esparse": "bin/esparse.js",
15242
- "esvalidate": "bin/esvalidate.js"
15243
- },
15244
- "engines": {
15245
- "node": ">=0.4.0"
15246
- }
15247
- },
15248
15131
  "node_modules/JSONStream": {
15249
15132
  "version": "1.3.5",
15250
15133
  "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz",
@@ -15401,29 +15284,6 @@
15401
15284
  "node": ">= 0.8.0"
15402
15285
  }
15403
15286
  },
15404
- "node_modules/levn/node_modules/prelude-ls": {
15405
- "version": "1.2.1",
15406
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
15407
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
15408
- "dev": true,
15409
- "license": "MIT",
15410
- "engines": {
15411
- "node": ">= 0.8.0"
15412
- }
15413
- },
15414
- "node_modules/levn/node_modules/type-check": {
15415
- "version": "0.4.0",
15416
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
15417
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
15418
- "dev": true,
15419
- "license": "MIT",
15420
- "dependencies": {
15421
- "prelude-ls": "^1.2.1"
15422
- },
15423
- "engines": {
15424
- "node": ">= 0.8.0"
15425
- }
15426
- },
15427
15287
  "node_modules/libnpmaccess": {
15428
15288
  "version": "9.0.0",
15429
15289
  "resolved": "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-9.0.0.tgz",
@@ -20643,29 +20503,6 @@
20643
20503
  "dev": true,
20644
20504
  "license": "MIT"
20645
20505
  },
20646
- "node_modules/optionator/node_modules/prelude-ls": {
20647
- "version": "1.2.1",
20648
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
20649
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
20650
- "dev": true,
20651
- "license": "MIT",
20652
- "engines": {
20653
- "node": ">= 0.8.0"
20654
- }
20655
- },
20656
- "node_modules/optionator/node_modules/type-check": {
20657
- "version": "0.4.0",
20658
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
20659
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
20660
- "dev": true,
20661
- "license": "MIT",
20662
- "dependencies": {
20663
- "prelude-ls": "^1.2.1"
20664
- },
20665
- "engines": {
20666
- "node": ">= 0.8.0"
20667
- }
20668
- },
20669
20506
  "node_modules/p-cancelable": {
20670
20507
  "version": "3.0.0",
20671
20508
  "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
@@ -21270,9 +21107,11 @@
21270
21107
  }
21271
21108
  },
21272
21109
  "node_modules/prelude-ls": {
21273
- "version": "1.1.2",
21274
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
21275
- "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==",
21110
+ "version": "1.2.1",
21111
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
21112
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
21113
+ "dev": true,
21114
+ "license": "MIT",
21276
21115
  "engines": {
21277
21116
  "node": ">= 0.8.0"
21278
21117
  }
@@ -23317,15 +23156,6 @@
23317
23156
  "node": ">=4"
23318
23157
  }
23319
23158
  },
23320
- "node_modules/static-eval": {
23321
- "version": "2.0.2",
23322
- "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz",
23323
- "integrity": "sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==",
23324
- "license": "MIT",
23325
- "dependencies": {
23326
- "escodegen": "^1.8.1"
23327
- }
23328
- },
23329
23159
  "node_modules/string_decoder": {
23330
23160
  "version": "1.3.0",
23331
23161
  "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
@@ -23999,12 +23829,6 @@
23999
23829
  "node": ">=8"
24000
23830
  }
24001
23831
  },
24002
- "node_modules/tryer": {
24003
- "version": "1.0.1",
24004
- "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz",
24005
- "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==",
24006
- "license": "MIT"
24007
- },
24008
23832
  "node_modules/ts-api-utils": {
24009
23833
  "version": "1.3.0",
24010
23834
  "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz",
@@ -24220,12 +24044,13 @@
24220
24044
  }
24221
24045
  },
24222
24046
  "node_modules/type-check": {
24223
- "version": "0.3.2",
24224
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
24225
- "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==",
24047
+ "version": "0.4.0",
24048
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
24049
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
24050
+ "dev": true,
24226
24051
  "license": "MIT",
24227
24052
  "dependencies": {
24228
- "prelude-ls": "~1.1.2"
24053
+ "prelude-ls": "^1.2.1"
24229
24054
  },
24230
24055
  "engines": {
24231
24056
  "node": ">= 0.8.0"
@@ -24428,12 +24253,6 @@
24428
24253
  "url": "https://github.com/sponsors/ljharb"
24429
24254
  }
24430
24255
  },
24431
- "node_modules/underscore": {
24432
- "version": "1.12.1",
24433
- "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz",
24434
- "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==",
24435
- "license": "MIT"
24436
- },
24437
24256
  "node_modules/undici-types": {
24438
24257
  "version": "5.26.5",
24439
24258
  "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
@@ -24918,15 +24737,6 @@
24918
24737
  "node": ">= 18"
24919
24738
  }
24920
24739
  },
24921
- "node_modules/word-wrap": {
24922
- "version": "1.2.5",
24923
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
24924
- "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
24925
- "license": "MIT",
24926
- "engines": {
24927
- "node": ">=0.10.0"
24928
- }
24929
- },
24930
24740
  "node_modules/wordwrap": {
24931
24741
  "version": "1.0.0",
24932
24742
  "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
package/oclif.lock CHANGED
@@ -2293,20 +2293,20 @@
2293
2293
  nock "^13.5.6"
2294
2294
  yaml "^2.8.1"
2295
2295
 
2296
- "@salesforce/apex-node@^8.1.27", "@salesforce/apex-node@^8.2.8":
2297
- version "8.2.8"
2298
- resolved "https://registry.npmjs.org/@salesforce/apex-node/-/apex-node-8.2.8.tgz"
2299
- integrity sha512-lKZkfcOHVmUL8RrMU1KAh7LOt4OiztyWXvFpaignQwv1RMHFdkByq1YGyQsD74akLu6vH8iw0UrojM638BU6Uw==
2296
+ "@salesforce/apex-node@^8.2.8", "@salesforce/apex-node@^8.3.1":
2297
+ version "8.3.2"
2298
+ resolved "https://registry.npmjs.org/@salesforce/apex-node/-/apex-node-8.3.2.tgz"
2299
+ integrity sha512-sDz2+KT9KXx4miXG+Wxmzrsxt0QLSyFrSPwqyvpMeZ+FoyIcQ4mXCZ1KlffRKakh60vRcWp1Q9Us5pMLm9wIMg==
2300
2300
  dependencies:
2301
- "@salesforce/core" "^8.19.1"
2302
- "@salesforce/kit" "^3.2.3"
2301
+ "@salesforce/core" "^8.23.0"
2302
+ "@salesforce/kit" "^3.2.4"
2303
2303
  "@types/istanbul-reports" "^3.0.4"
2304
- bfj "8.0.0"
2305
2304
  fast-glob "^3.3.2"
2306
2305
  faye "1.4.1"
2307
2306
  istanbul-lib-coverage "^3.2.2"
2308
2307
  istanbul-lib-report "^3.0.1"
2309
- istanbul-reports "^3.1.7"
2308
+ istanbul-reports "^3.2.0"
2309
+ json-stream-stringify "^3.1.6"
2310
2310
 
2311
2311
  "@salesforce/cli-plugins-testkit@^5.3.39":
2312
2312
  version "5.3.39"
@@ -2469,12 +2469,12 @@
2469
2469
  react "^18.3.1"
2470
2470
  yaml "^2.8.1"
2471
2471
 
2472
- "@salesforce/plugin-apex@3.6.19":
2473
- version "3.6.19"
2474
- resolved "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.6.19.tgz"
2475
- integrity sha512-tn2/o1Yk4dOofolGJ6YTvqhwhuIoVqV6yIyq5DUWmMCJ51UJEshsAeW4gYUzA++di5wefwDFHtTCddgx5xChKg==
2472
+ "@salesforce/plugin-apex@3.7.0":
2473
+ version "3.7.0"
2474
+ resolved "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.7.0.tgz"
2475
+ integrity sha512-9Y6WMFVVZuQQbFnzpuDE5NZVEziahvxHSmkGuQBUjNEBcZWJMZyEjNRzbbOhfk9qlLdUEEkmlH66DOFXT4bz+A==
2476
2476
  dependencies:
2477
- "@salesforce/apex-node" "^8.1.27"
2477
+ "@salesforce/apex-node" "^8.3.1"
2478
2478
  "@salesforce/core" "^8.10.1"
2479
2479
  "@salesforce/kit" "^3.2.3"
2480
2480
  "@salesforce/sf-plugins-core" "^12.2.1"
@@ -4373,17 +4373,6 @@ before-after-hook@^3.0.2:
4373
4373
  resolved "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz"
4374
4374
  integrity sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==
4375
4375
 
4376
- bfj@8.0.0:
4377
- version "8.0.0"
4378
- resolved "https://registry.npmjs.org/bfj/-/bfj-8.0.0.tgz"
4379
- integrity sha512-6KJe4gFrZ4lhmvWcUIj37yFAs36mi2FZXuTkw6udZ/QsX/znFypW4SatqcLA5K5T4BAWgJZD73UFEJJQxuJjoA==
4380
- dependencies:
4381
- bluebird "^3.7.2"
4382
- check-types "^11.2.3"
4383
- hoopy "^0.1.4"
4384
- jsonpath "^1.1.1"
4385
- tryer "^1.0.1"
4386
-
4387
4376
  bin-links@^5.0.0:
4388
4377
  version "5.0.0"
4389
4378
  resolved "https://registry.npmjs.org/bin-links/-/bin-links-5.0.0.tgz"
@@ -4409,11 +4398,6 @@ bl@^4.0.3:
4409
4398
  inherits "^2.0.4"
4410
4399
  readable-stream "^3.4.0"
4411
4400
 
4412
- bluebird@^3.7.2:
4413
- version "3.7.2"
4414
- resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz"
4415
- integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
4416
-
4417
4401
  bottleneck@^2.15.3:
4418
4402
  version "2.19.5"
4419
4403
  resolved "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz"
@@ -4764,11 +4748,6 @@ check-error@^1.0.3:
4764
4748
  dependencies:
4765
4749
  get-func-name "^2.0.2"
4766
4750
 
4767
- check-types@^11.2.3:
4768
- version "11.2.3"
4769
- resolved "https://registry.npmjs.org/check-types/-/check-types-11.2.3.tgz"
4770
- integrity sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==
4771
-
4772
4751
  chokidar@^3.5.3:
4773
4752
  version "3.6.0"
4774
4753
  resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz"
@@ -5436,7 +5415,7 @@ deep-eql@^4.1.3:
5436
5415
  dependencies:
5437
5416
  type-detect "^4.0.0"
5438
5417
 
5439
- deep-is@^0.1.3, deep-is@~0.1.3:
5418
+ deep-is@^0.1.3:
5440
5419
  version "0.1.4"
5441
5420
  resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"
5442
5421
  integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
@@ -5877,18 +5856,6 @@ escape-string-regexp@^5.0.0:
5877
5856
  resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz"
5878
5857
  integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==
5879
5858
 
5880
- escodegen@^1.8.1:
5881
- version "1.14.3"
5882
- resolved "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz"
5883
- integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
5884
- dependencies:
5885
- esprima "^4.0.1"
5886
- estraverse "^4.2.0"
5887
- esutils "^2.0.2"
5888
- optionator "^0.8.1"
5889
- optionalDependencies:
5890
- source-map "~0.6.1"
5891
-
5892
5859
  escodegen@^2.1.0:
5893
5860
  version "2.1.0"
5894
5861
  resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz"
@@ -6083,11 +6050,6 @@ esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0:
6083
6050
  resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
6084
6051
  integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
6085
6052
 
6086
- esprima@1.2.2:
6087
- version "1.2.2"
6088
- resolved "https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz"
6089
- integrity sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==
6090
-
6091
6053
  esquery@^1.4.2, esquery@^1.5.0:
6092
6054
  version "1.5.0"
6093
6055
  resolved "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz"
@@ -6102,11 +6064,6 @@ esrecurse@^4.3.0:
6102
6064
  dependencies:
6103
6065
  estraverse "^5.2.0"
6104
6066
 
6105
- estraverse@^4.2.0:
6106
- version "4.3.0"
6107
- resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"
6108
- integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
6109
-
6110
6067
  estraverse@^5.1.0, estraverse@^5.2.0:
6111
6068
  version "5.3.0"
6112
6069
  resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"
@@ -6215,11 +6172,6 @@ fast-levenshtein@^3.0.0:
6215
6172
  dependencies:
6216
6173
  fastest-levenshtein "^1.0.7"
6217
6174
 
6218
- fast-levenshtein@~2.0.6:
6219
- version "2.0.6"
6220
- resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
6221
- integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
6222
-
6223
6175
  fast-redact@^3.1.1:
6224
6176
  version "3.5.0"
6225
6177
  resolved "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz"
@@ -7044,11 +6996,6 @@ help-me@^5.0.0:
7044
6996
  resolved "https://registry.npmjs.org/help-me/-/help-me-5.0.0.tgz"
7045
6997
  integrity sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==
7046
6998
 
7047
- hoopy@^0.1.4:
7048
- version "0.1.4"
7049
- resolved "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz"
7050
- integrity sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==
7051
-
7052
6999
  hosted-git-info@^2.1.4:
7053
7000
  version "2.8.9"
7054
7001
  resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz"
@@ -7745,10 +7692,10 @@ istanbul-lib-source-maps@^4.0.0:
7745
7692
  istanbul-lib-coverage "^3.0.0"
7746
7693
  source-map "^0.6.1"
7747
7694
 
7748
- istanbul-reports@^3.0.2, istanbul-reports@^3.1.7:
7749
- version "3.1.7"
7750
- resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz"
7751
- integrity sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==
7695
+ istanbul-reports@^3.0.2, istanbul-reports@^3.2.0:
7696
+ version "3.2.0"
7697
+ resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz"
7698
+ integrity sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==
7752
7699
  dependencies:
7753
7700
  html-escaper "^2.0.0"
7754
7701
  istanbul-lib-report "^3.0.0"
@@ -7864,6 +7811,11 @@ json-stable-stringify-without-jsonify@^1.0.1:
7864
7811
  resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
7865
7812
  integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
7866
7813
 
7814
+ json-stream-stringify@^3.1.6:
7815
+ version "3.1.6"
7816
+ resolved "https://registry.npmjs.org/json-stream-stringify/-/json-stream-stringify-3.1.6.tgz"
7817
+ integrity sha512-x7fpwxOkbhFCaJDJ8vb1fBY3DdSa4AlITaz+HHILQJzdPMnHEFjxPwVUi1ALIbcIxDE0PNe/0i7frnY8QnBQog==
7818
+
7867
7819
  json-stringify-nice@^1.1.4:
7868
7820
  version "1.1.4"
7869
7821
  resolved "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz"
@@ -7912,15 +7864,6 @@ jsonparse@^1.2.0, jsonparse@^1.3.1:
7912
7864
  resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"
7913
7865
  integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==
7914
7866
 
7915
- jsonpath@^1.1.1:
7916
- version "1.1.1"
7917
- resolved "https://registry.npmjs.org/jsonpath/-/jsonpath-1.1.1.tgz"
7918
- integrity sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==
7919
- dependencies:
7920
- esprima "1.2.2"
7921
- static-eval "2.0.2"
7922
- underscore "1.12.1"
7923
-
7924
7867
  JSONStream@^1.0.4, JSONStream@^1.3.5:
7925
7868
  version "1.3.5"
7926
7869
  resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz"
@@ -8017,14 +7960,6 @@ levn@^0.4.1:
8017
7960
  prelude-ls "^1.2.1"
8018
7961
  type-check "~0.4.0"
8019
7962
 
8020
- levn@~0.3.0:
8021
- version "0.3.0"
8022
- resolved "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz"
8023
- integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==
8024
- dependencies:
8025
- prelude-ls "~1.1.2"
8026
- type-check "~0.3.2"
8027
-
8028
7963
  libnpmaccess@^9.0.0:
8029
7964
  version "9.0.0"
8030
7965
  resolved "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-9.0.0.tgz"
@@ -9419,18 +9354,6 @@ open@^10.2.0:
9419
9354
  is-inside-container "^1.0.0"
9420
9355
  wsl-utils "^0.1.0"
9421
9356
 
9422
- optionator@^0.8.1:
9423
- version "0.8.3"
9424
- resolved "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz"
9425
- integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
9426
- dependencies:
9427
- deep-is "~0.1.3"
9428
- fast-levenshtein "~2.0.6"
9429
- levn "~0.3.0"
9430
- prelude-ls "~1.1.2"
9431
- type-check "~0.3.2"
9432
- word-wrap "~1.2.3"
9433
-
9434
9357
  optionator@^0.9.3:
9435
9358
  version "0.9.3"
9436
9359
  resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz"
@@ -9888,11 +9811,6 @@ prelude-ls@^1.2.1:
9888
9811
  resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"
9889
9812
  integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
9890
9813
 
9891
- prelude-ls@~1.1.2:
9892
- version "1.1.2"
9893
- resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz"
9894
- integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==
9895
-
9896
9814
  prettier@^2.0.0, prettier@^2.8.8:
9897
9815
  version "2.8.8"
9898
9816
  resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz"
@@ -10953,13 +10871,6 @@ standard-version@^9.5.0:
10953
10871
  stringify-package "^1.0.1"
10954
10872
  yargs "^16.0.0"
10955
10873
 
10956
- static-eval@2.0.2:
10957
- version "2.0.2"
10958
- resolved "https://registry.npmjs.org/static-eval/-/static-eval-2.0.2.tgz"
10959
- integrity sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==
10960
- dependencies:
10961
- escodegen "^1.8.1"
10962
-
10963
10874
  string_decoder@^1.1.1, string_decoder@^1.3.0:
10964
10875
  version "1.3.0"
10965
10876
  resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
@@ -11356,11 +11267,6 @@ trim-newlines@^3.0.0:
11356
11267
  resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz"
11357
11268
  integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==
11358
11269
 
11359
- tryer@^1.0.1:
11360
- version "1.0.1"
11361
- resolved "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz"
11362
- integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==
11363
-
11364
11270
  ts-api-utils@^1.0.1:
11365
11271
  version "1.3.0"
11366
11272
  resolved "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz"
@@ -11434,21 +11340,7 @@ tunnel-agent@*, tunnel-agent@^0.6.0:
11434
11340
  dependencies:
11435
11341
  safe-buffer "^5.0.1"
11436
11342
 
11437
- type-check@^0.4.0:
11438
- version "0.4.0"
11439
- resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
11440
- integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
11441
- dependencies:
11442
- prelude-ls "^1.2.1"
11443
-
11444
- type-check@~0.3.2:
11445
- version "0.3.2"
11446
- resolved "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz"
11447
- integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==
11448
- dependencies:
11449
- prelude-ls "~1.1.2"
11450
-
11451
- type-check@~0.4.0:
11343
+ type-check@^0.4.0, type-check@~0.4.0:
11452
11344
  version "0.4.0"
11453
11345
  resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
11454
11346
  integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
@@ -11602,11 +11494,6 @@ unbox-primitive@^1.0.2:
11602
11494
  has-symbols "^1.0.3"
11603
11495
  which-boxed-primitive "^1.0.2"
11604
11496
 
11605
- underscore@1.12.1:
11606
- version "1.12.1"
11607
- resolved "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz"
11608
- integrity sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==
11609
-
11610
11497
  undici-types@~5.26.4:
11611
11498
  version "5.26.5"
11612
11499
  resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz"
@@ -11926,11 +11813,6 @@ wireit@^0.14.12:
11926
11813
  jsonc-parser "^3.0.0"
11927
11814
  proper-lockfile "^4.1.2"
11928
11815
 
11929
- word-wrap@~1.2.3:
11930
- version "1.2.5"
11931
- resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz"
11932
- integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
11933
-
11934
11816
  wordwrap@^1.0.0:
11935
11817
  version "1.0.0"
11936
11818
  resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"
@@ -4159,5 +4159,5 @@
4159
4159
  "requiresProject": true
4160
4160
  }
4161
4161
  },
4162
- "version": "2.107.0"
4162
+ "version": "2.107.2"
4163
4163
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.107.0",
4
+ "version": "2.107.2",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -158,7 +158,7 @@
158
158
  "@salesforce/core": "^8.9.1",
159
159
  "@salesforce/kit": "^3.1.6",
160
160
  "@salesforce/plugin-agent": "1.24.9",
161
- "@salesforce/plugin-apex": "3.6.19",
161
+ "@salesforce/plugin-apex": "3.7.0",
162
162
  "@salesforce/plugin-api": "1.3.3",
163
163
  "@salesforce/plugin-auth": "3.9.5",
164
164
  "@salesforce/plugin-data": "4.0.55",