@salesforce/cli 2.135.6 → 2.136.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 +30 -30
- package/npm-shrinkwrap.json +89 -203
- package/oclif.lock +77 -32
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
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.
|
|
28
|
+
@salesforce/cli/2.136.0 linux-x64 node-v22.22.2
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -281,7 +281,7 @@ ERROR CODES
|
|
|
281
281
|
ActivationFailed (4) Failed to activate the agent due to API or network errors.
|
|
282
282
|
```
|
|
283
283
|
|
|
284
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
284
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/activate.ts)_
|
|
285
285
|
|
|
286
286
|
## `sf agent create`
|
|
287
287
|
|
|
@@ -348,7 +348,7 @@ EXAMPLES
|
|
|
348
348
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
349
349
|
```
|
|
350
350
|
|
|
351
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
351
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/create.ts)_
|
|
352
352
|
|
|
353
353
|
## `sf agent deactivate`
|
|
354
354
|
|
|
@@ -397,7 +397,7 @@ ERROR CODES
|
|
|
397
397
|
DeactivationFailed (4) Failed to deactivate the agent due to API or network errors.
|
|
398
398
|
```
|
|
399
399
|
|
|
400
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
400
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/deactivate.ts)_
|
|
401
401
|
|
|
402
402
|
## `sf agent generate agent-spec`
|
|
403
403
|
|
|
@@ -504,7 +504,7 @@ EXAMPLES
|
|
|
504
504
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
505
505
|
```
|
|
506
506
|
|
|
507
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
507
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/generate/agent-spec.ts)_
|
|
508
508
|
|
|
509
509
|
## `sf agent generate authoring-bundle`
|
|
510
510
|
|
|
@@ -581,7 +581,7 @@ EXAMPLES
|
|
|
581
581
|
other-package-dir/main/default --target-org my-dev-org
|
|
582
582
|
```
|
|
583
583
|
|
|
584
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
584
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/generate/authoring-bundle.ts)_
|
|
585
585
|
|
|
586
586
|
## `sf agent generate template`
|
|
587
587
|
|
|
@@ -643,7 +643,7 @@ EXAMPLES
|
|
|
643
643
|
my-package --source-org my-scratch-org
|
|
644
644
|
```
|
|
645
645
|
|
|
646
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
646
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/generate/template.ts)_
|
|
647
647
|
|
|
648
648
|
## `sf agent generate test-spec`
|
|
649
649
|
|
|
@@ -708,7 +708,7 @@ EXAMPLES
|
|
|
708
708
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
709
709
|
```
|
|
710
710
|
|
|
711
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
711
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/generate/test-spec.ts)_
|
|
712
712
|
|
|
713
713
|
## `sf agent preview`
|
|
714
714
|
|
|
@@ -781,7 +781,7 @@ EXAMPLES
|
|
|
781
781
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
782
782
|
```
|
|
783
783
|
|
|
784
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
784
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/preview.ts)_
|
|
785
785
|
|
|
786
786
|
## `sf agent preview end`
|
|
787
787
|
|
|
@@ -865,7 +865,7 @@ ERROR CODES
|
|
|
865
865
|
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
866
866
|
```
|
|
867
867
|
|
|
868
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
868
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/preview/end.ts)_
|
|
869
869
|
|
|
870
870
|
## `sf agent preview send`
|
|
871
871
|
|
|
@@ -932,7 +932,7 @@ ERROR CODES
|
|
|
932
932
|
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
933
933
|
```
|
|
934
934
|
|
|
935
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
935
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/preview/send.ts)_
|
|
936
936
|
|
|
937
937
|
## `sf agent preview sessions`
|
|
938
938
|
|
|
@@ -968,7 +968,7 @@ ERROR CODES
|
|
|
968
968
|
Succeeded (0) Sessions listed successfully (or empty list if no active sessions).
|
|
969
969
|
```
|
|
970
970
|
|
|
971
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
971
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/preview/sessions.ts)_
|
|
972
972
|
|
|
973
973
|
## `sf agent preview start`
|
|
974
974
|
|
|
@@ -1044,7 +1044,7 @@ ERROR CODES
|
|
|
1044
1044
|
PreviewStartFailed (4) Preview session failed to start due to API or network errors.
|
|
1045
1045
|
```
|
|
1046
1046
|
|
|
1047
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1047
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/preview/start.ts)_
|
|
1048
1048
|
|
|
1049
1049
|
## `sf agent publish authoring-bundle`
|
|
1050
1050
|
|
|
@@ -1108,7 +1108,7 @@ ERROR CODES
|
|
|
1108
1108
|
Failed (1) Compilation errors found in the Agent Script file.
|
|
1109
1109
|
```
|
|
1110
1110
|
|
|
1111
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1111
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/publish/authoring-bundle.ts)_
|
|
1112
1112
|
|
|
1113
1113
|
## `sf agent test create`
|
|
1114
1114
|
|
|
@@ -1172,7 +1172,7 @@ ERROR CODES
|
|
|
1172
1172
|
DeploymentFailed (4) Deployment failed due to API or network errors.
|
|
1173
1173
|
```
|
|
1174
1174
|
|
|
1175
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1175
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/test/create.ts)_
|
|
1176
1176
|
|
|
1177
1177
|
## `sf agent test list`
|
|
1178
1178
|
|
|
@@ -1214,7 +1214,7 @@ ERROR CODES
|
|
|
1214
1214
|
Failed (4) Failed to retrieve agent tests due to API or network errors.
|
|
1215
1215
|
```
|
|
1216
1216
|
|
|
1217
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1217
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/test/list.ts)_
|
|
1218
1218
|
|
|
1219
1219
|
## `sf agent test results`
|
|
1220
1220
|
|
|
@@ -1298,7 +1298,7 @@ ERROR CODES
|
|
|
1298
1298
|
Failed (4) Failed to retrieve results due to API or network errors.
|
|
1299
1299
|
```
|
|
1300
1300
|
|
|
1301
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1301
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/test/results.ts)_
|
|
1302
1302
|
|
|
1303
1303
|
## `sf agent test resume`
|
|
1304
1304
|
|
|
@@ -1391,7 +1391,7 @@ ERROR CODES
|
|
|
1391
1391
|
OperationFailed (4) Failed to poll test due to API or network errors.
|
|
1392
1392
|
```
|
|
1393
1393
|
|
|
1394
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1394
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/test/resume.ts)_
|
|
1395
1395
|
|
|
1396
1396
|
## `sf agent test run`
|
|
1397
1397
|
|
|
@@ -1484,7 +1484,7 @@ ERROR CODES
|
|
|
1484
1484
|
OperationFailed (4) Failed to start or poll test due to API or network errors.
|
|
1485
1485
|
```
|
|
1486
1486
|
|
|
1487
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1487
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/test/run.ts)_
|
|
1488
1488
|
|
|
1489
1489
|
## `sf agent test run-eval`
|
|
1490
1490
|
|
|
@@ -1569,7 +1569,7 @@ ERROR CODES
|
|
|
1569
1569
|
OperationFailed (4) Failed to execute tests due to API or network errors.
|
|
1570
1570
|
```
|
|
1571
1571
|
|
|
1572
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1572
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/test/run-eval.ts)_
|
|
1573
1573
|
|
|
1574
1574
|
## `sf agent trace delete`
|
|
1575
1575
|
|
|
@@ -1636,7 +1636,7 @@ ERROR CODES
|
|
|
1636
1636
|
Succeeded (0) Traces deleted successfully (or no traces matched).
|
|
1637
1637
|
```
|
|
1638
1638
|
|
|
1639
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1639
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/trace/delete.ts)_
|
|
1640
1640
|
|
|
1641
1641
|
## `sf agent trace list`
|
|
1642
1642
|
|
|
@@ -1709,7 +1709,7 @@ ERROR CODES
|
|
|
1709
1709
|
Succeeded (0) Trace files listed successfully (or empty list if none found).
|
|
1710
1710
|
```
|
|
1711
1711
|
|
|
1712
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1712
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/trace/list.ts)_
|
|
1713
1713
|
|
|
1714
1714
|
## `sf agent trace read`
|
|
1715
1715
|
|
|
@@ -1797,7 +1797,7 @@ EXAMPLES
|
|
|
1797
1797
|
$ sf agent trace read --session-id <SESSION_ID> --json
|
|
1798
1798
|
```
|
|
1799
1799
|
|
|
1800
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1800
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/trace/read.ts)_
|
|
1801
1801
|
|
|
1802
1802
|
## `sf agent validate authoring-bundle`
|
|
1803
1803
|
|
|
@@ -1854,7 +1854,7 @@ ERROR CODES
|
|
|
1854
1854
|
ServerError (3) Validation/compilation API returned HTTP 500. A server error occurred during compilation.
|
|
1855
1855
|
```
|
|
1856
1856
|
|
|
1857
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.
|
|
1857
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.2/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1858
1858
|
|
|
1859
1859
|
## `sf alias list`
|
|
1860
1860
|
|
|
@@ -8202,7 +8202,7 @@ EXAMPLES
|
|
|
8202
8202
|
$ sf plugins trust allowlist add --name @scope/my-plugin --name another-plugin
|
|
8203
8203
|
```
|
|
8204
8204
|
|
|
8205
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.
|
|
8205
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.8/src/commands/plugins/trust/allowlist/add.ts)_
|
|
8206
8206
|
|
|
8207
8207
|
## `sf plugins trust allowlist list`
|
|
8208
8208
|
|
|
@@ -8230,7 +8230,7 @@ EXAMPLES
|
|
|
8230
8230
|
$ sf plugins trust allowlist list
|
|
8231
8231
|
```
|
|
8232
8232
|
|
|
8233
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.
|
|
8233
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.8/src/commands/plugins/trust/allowlist/list.ts)_
|
|
8234
8234
|
|
|
8235
8235
|
## `sf plugins trust allowlist remove`
|
|
8236
8236
|
|
|
@@ -8267,7 +8267,7 @@ EXAMPLES
|
|
|
8267
8267
|
$ sf plugins trust allowlist remove --name @scope/my-plugin --name another-plugin
|
|
8268
8268
|
```
|
|
8269
8269
|
|
|
8270
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.
|
|
8270
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.8/src/commands/plugins/trust/allowlist/remove.ts)_
|
|
8271
8271
|
|
|
8272
8272
|
## `sf plugins trust verify`
|
|
8273
8273
|
|
|
@@ -8296,7 +8296,7 @@ EXAMPLES
|
|
|
8296
8296
|
$ sf plugins trust verify --npm @scope/npmName
|
|
8297
8297
|
```
|
|
8298
8298
|
|
|
8299
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.
|
|
8299
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.8/src/commands/plugins/trust/verify.ts)_
|
|
8300
8300
|
|
|
8301
8301
|
## `sf plugins uninstall [PLUGIN]`
|
|
8302
8302
|
|
|
@@ -10310,7 +10310,7 @@ EXAMPLES
|
|
|
10310
10310
|
$ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
|
|
10311
10311
|
```
|
|
10312
10312
|
|
|
10313
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
10313
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.112/src/commands/sobject/describe.ts)_
|
|
10314
10314
|
|
|
10315
10315
|
## `sf sobject list`
|
|
10316
10316
|
|
|
@@ -10349,7 +10349,7 @@ EXAMPLES
|
|
|
10349
10349
|
$ sf sobject list --sobject custom --target-org my-scratch-org
|
|
10350
10350
|
```
|
|
10351
10351
|
|
|
10352
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
10352
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.112/src/commands/sobject/list.ts)_
|
|
10353
10353
|
|
|
10354
10354
|
## `sf template generate analytics template`
|
|
10355
10355
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.136.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.136.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.53",
|
|
25
25
|
"@salesforce/core": "^8.28.0",
|
|
26
26
|
"@salesforce/kit": "^3.1.6",
|
|
27
|
-
"@salesforce/plugin-agent": "1.40.
|
|
27
|
+
"@salesforce/plugin-agent": "1.40.2",
|
|
28
28
|
"@salesforce/plugin-apex": "3.9.27",
|
|
29
29
|
"@salesforce/plugin-api": "1.3.30",
|
|
30
30
|
"@salesforce/plugin-auth": "4.3.10",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"@salesforce/plugin-marketplace": "1.3.26",
|
|
36
36
|
"@salesforce/plugin-org": "5.10.13",
|
|
37
37
|
"@salesforce/plugin-packaging": "2.27.17",
|
|
38
|
-
"@salesforce/plugin-schema": "3.3.
|
|
38
|
+
"@salesforce/plugin-schema": "3.3.112",
|
|
39
39
|
"@salesforce/plugin-settings": "2.4.78",
|
|
40
40
|
"@salesforce/plugin-sobject": "1.4.105",
|
|
41
|
-
"@salesforce/plugin-telemetry": "3.8.
|
|
41
|
+
"@salesforce/plugin-telemetry": "3.8.21",
|
|
42
42
|
"@salesforce/plugin-templates": "56.16.7",
|
|
43
|
-
"@salesforce/plugin-trust": "3.8.
|
|
43
|
+
"@salesforce/plugin-trust": "3.8.8",
|
|
44
44
|
"@salesforce/plugin-user": "3.9.4",
|
|
45
45
|
"@salesforce/sf-plugins-core": "12.2.16",
|
|
46
46
|
"ansis": "^3.12.0"
|
|
@@ -3345,6 +3345,23 @@
|
|
|
3345
3345
|
"integrity": "sha512-2IHAOaLauc8qaAitvWS+U931T+ze+7MNWrDHY47IENP5y2UA0vqJDu67kWZDdpCN1fFC77sfgfB+HV7SrKshnQ==",
|
|
3346
3346
|
"license": "MIT"
|
|
3347
3347
|
},
|
|
3348
|
+
"node_modules/@mswjs/interceptors": {
|
|
3349
|
+
"version": "0.41.9",
|
|
3350
|
+
"resolved": "https://registry.npmjs.org/@mswjs/interceptors/-/interceptors-0.41.9.tgz",
|
|
3351
|
+
"integrity": "sha512-VVPPgHyQ6ShqnrmDWuxjmUIsO9gWyOZFmuOfLd9LfBGQJwZfy0gvv9pbHSJuoFNIYC7ZDX9aoFwowjcdSC4E8w==",
|
|
3352
|
+
"license": "MIT",
|
|
3353
|
+
"dependencies": {
|
|
3354
|
+
"@open-draft/deferred-promise": "^2.2.0",
|
|
3355
|
+
"@open-draft/logger": "^0.3.0",
|
|
3356
|
+
"@open-draft/until": "^2.0.0",
|
|
3357
|
+
"is-node-process": "^1.2.0",
|
|
3358
|
+
"outvariant": "^1.4.3",
|
|
3359
|
+
"strict-event-emitter": "^0.5.1"
|
|
3360
|
+
},
|
|
3361
|
+
"engines": {
|
|
3362
|
+
"node": ">=18"
|
|
3363
|
+
}
|
|
3364
|
+
},
|
|
3348
3365
|
"node_modules/@nodable/entities": {
|
|
3349
3366
|
"version": "2.1.0",
|
|
3350
3367
|
"resolved": "https://registry.npmjs.org/@nodable/entities/-/entities-2.1.0.tgz",
|
|
@@ -4490,6 +4507,28 @@
|
|
|
4490
4507
|
"@octokit/openapi-types": "^25.1.0"
|
|
4491
4508
|
}
|
|
4492
4509
|
},
|
|
4510
|
+
"node_modules/@open-draft/deferred-promise": {
|
|
4511
|
+
"version": "2.2.0",
|
|
4512
|
+
"resolved": "https://registry.npmjs.org/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz",
|
|
4513
|
+
"integrity": "sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==",
|
|
4514
|
+
"license": "MIT"
|
|
4515
|
+
},
|
|
4516
|
+
"node_modules/@open-draft/logger": {
|
|
4517
|
+
"version": "0.3.0",
|
|
4518
|
+
"resolved": "https://registry.npmjs.org/@open-draft/logger/-/logger-0.3.0.tgz",
|
|
4519
|
+
"integrity": "sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==",
|
|
4520
|
+
"license": "MIT",
|
|
4521
|
+
"dependencies": {
|
|
4522
|
+
"is-node-process": "^1.2.0",
|
|
4523
|
+
"outvariant": "^1.4.0"
|
|
4524
|
+
}
|
|
4525
|
+
},
|
|
4526
|
+
"node_modules/@open-draft/until": {
|
|
4527
|
+
"version": "2.1.0",
|
|
4528
|
+
"resolved": "https://registry.npmjs.org/@open-draft/until/-/until-2.1.0.tgz",
|
|
4529
|
+
"integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==",
|
|
4530
|
+
"license": "MIT"
|
|
4531
|
+
},
|
|
4493
4532
|
"node_modules/@opentelemetry/api": {
|
|
4494
4533
|
"version": "1.8.0",
|
|
4495
4534
|
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.8.0.tgz",
|
|
@@ -4692,17 +4731,17 @@
|
|
|
4692
4731
|
"license": "BSD-3-Clause"
|
|
4693
4732
|
},
|
|
4694
4733
|
"node_modules/@salesforce/agents": {
|
|
4695
|
-
"version": "1.6.
|
|
4696
|
-
"resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-1.6.
|
|
4697
|
-
"integrity": "sha512-
|
|
4734
|
+
"version": "1.6.6",
|
|
4735
|
+
"resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-1.6.6.tgz",
|
|
4736
|
+
"integrity": "sha512-YMYOPv45aSLjIARu+9vkHz5GWXGh0EMhiQw+oCBEwlxD55/O4Gm6Zb/HzLuOPKhXt5xn9TogG87vvHvCNgiUyA==",
|
|
4698
4737
|
"license": "Apache-2.0",
|
|
4699
4738
|
"dependencies": {
|
|
4700
|
-
"@salesforce/core": "^8.29.
|
|
4739
|
+
"@salesforce/core": "^8.29.1",
|
|
4701
4740
|
"@salesforce/kit": "^3.2.6",
|
|
4702
|
-
"@salesforce/source-deploy-retrieve": "^12.35.
|
|
4741
|
+
"@salesforce/source-deploy-retrieve": "^12.35.8",
|
|
4703
4742
|
"@salesforce/types": "^1.7.1",
|
|
4704
|
-
"fast-xml-parser": "^5.7.
|
|
4705
|
-
"nock": "^
|
|
4743
|
+
"fast-xml-parser": "^5.7.3",
|
|
4744
|
+
"nock": "^14.0.15",
|
|
4706
4745
|
"yaml": "^2.8.4"
|
|
4707
4746
|
},
|
|
4708
4747
|
"engines": {
|
|
@@ -5149,16 +5188,16 @@
|
|
|
5149
5188
|
}
|
|
5150
5189
|
},
|
|
5151
5190
|
"node_modules/@salesforce/plugin-agent": {
|
|
5152
|
-
"version": "1.40.
|
|
5153
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.40.
|
|
5154
|
-
"integrity": "sha512-
|
|
5191
|
+
"version": "1.40.2",
|
|
5192
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.40.2.tgz",
|
|
5193
|
+
"integrity": "sha512-ChkJ+CtlJ+b85lsOCRs4MMLqdsXAwl92bIFzdh94q/HvKE91jQ7Jr+J+KiKPoenw5/OW+8FOzqCdWCF8hu8nTQ==",
|
|
5155
5194
|
"license": "Apache-2.0",
|
|
5156
5195
|
"dependencies": {
|
|
5157
5196
|
"@inquirer/core": "^10.3.2",
|
|
5158
5197
|
"@inquirer/prompts": "^7.10.1",
|
|
5159
5198
|
"@oclif/core": "^4",
|
|
5160
5199
|
"@oclif/multi-stage-output": "^0.8.36",
|
|
5161
|
-
"@salesforce/agents": "^1.6.
|
|
5200
|
+
"@salesforce/agents": "^1.6.6",
|
|
5162
5201
|
"@salesforce/core": "^8.28.3",
|
|
5163
5202
|
"@salesforce/kit": "^3.2.6",
|
|
5164
5203
|
"@salesforce/sf-plugins-core": "^12.2.6",
|
|
@@ -5761,190 +5800,19 @@
|
|
|
5761
5800
|
}
|
|
5762
5801
|
},
|
|
5763
5802
|
"node_modules/@salesforce/plugin-schema": {
|
|
5764
|
-
"version": "3.3.
|
|
5765
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-schema/-/plugin-schema-3.3.
|
|
5766
|
-
"integrity": "sha512-
|
|
5803
|
+
"version": "3.3.112",
|
|
5804
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-schema/-/plugin-schema-3.3.112.tgz",
|
|
5805
|
+
"integrity": "sha512-NWLUYIRPIeYyTfuJF7bdvrsXCoqVcFQGy5BbrIZRvwIcb+9qWZSV1Oj7DUMA2xIupCraDYxb2L0jJMqsmYAmQQ==",
|
|
5767
5806
|
"license": "Apache-2.0",
|
|
5768
5807
|
"dependencies": {
|
|
5769
5808
|
"@oclif/core": "^4",
|
|
5770
5809
|
"@salesforce/core": "^8.29.1",
|
|
5771
|
-
"@salesforce/sf-plugins-core": "^
|
|
5810
|
+
"@salesforce/sf-plugins-core": "^12.2.16"
|
|
5772
5811
|
},
|
|
5773
5812
|
"engines": {
|
|
5774
5813
|
"node": ">=18.0.0"
|
|
5775
5814
|
}
|
|
5776
5815
|
},
|
|
5777
|
-
"node_modules/@salesforce/plugin-schema/node_modules/@inquirer/core": {
|
|
5778
|
-
"version": "9.1.0",
|
|
5779
|
-
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-9.1.0.tgz",
|
|
5780
|
-
"integrity": "sha512-RZVfH//2ytTjmaBIzeKT1zefcQZzuruwkpTwwbe/i2jTl4o9M+iML5ChULzz6iw1Ok8iUBBsRCjY2IEbD8Ft4w==",
|
|
5781
|
-
"license": "MIT",
|
|
5782
|
-
"dependencies": {
|
|
5783
|
-
"@inquirer/figures": "^1.0.5",
|
|
5784
|
-
"@inquirer/type": "^1.5.3",
|
|
5785
|
-
"@types/mute-stream": "^0.0.4",
|
|
5786
|
-
"@types/node": "^22.5.2",
|
|
5787
|
-
"@types/wrap-ansi": "^3.0.0",
|
|
5788
|
-
"ansi-escapes": "^4.3.2",
|
|
5789
|
-
"cli-spinners": "^2.9.2",
|
|
5790
|
-
"cli-width": "^4.1.0",
|
|
5791
|
-
"mute-stream": "^1.0.0",
|
|
5792
|
-
"signal-exit": "^4.1.0",
|
|
5793
|
-
"strip-ansi": "^6.0.1",
|
|
5794
|
-
"wrap-ansi": "^6.2.0",
|
|
5795
|
-
"yoctocolors-cjs": "^2.1.2"
|
|
5796
|
-
},
|
|
5797
|
-
"engines": {
|
|
5798
|
-
"node": ">=18"
|
|
5799
|
-
}
|
|
5800
|
-
},
|
|
5801
|
-
"node_modules/@salesforce/plugin-schema/node_modules/@inquirer/core/node_modules/ansi-regex": {
|
|
5802
|
-
"version": "5.0.1",
|
|
5803
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
|
|
5804
|
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
|
|
5805
|
-
"license": "MIT",
|
|
5806
|
-
"engines": {
|
|
5807
|
-
"node": ">=8"
|
|
5808
|
-
}
|
|
5809
|
-
},
|
|
5810
|
-
"node_modules/@salesforce/plugin-schema/node_modules/@inquirer/core/node_modules/strip-ansi": {
|
|
5811
|
-
"version": "6.0.1",
|
|
5812
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
|
|
5813
|
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
5814
|
-
"license": "MIT",
|
|
5815
|
-
"dependencies": {
|
|
5816
|
-
"ansi-regex": "^5.0.1"
|
|
5817
|
-
},
|
|
5818
|
-
"engines": {
|
|
5819
|
-
"node": ">=8"
|
|
5820
|
-
}
|
|
5821
|
-
},
|
|
5822
|
-
"node_modules/@salesforce/plugin-schema/node_modules/@inquirer/password": {
|
|
5823
|
-
"version": "2.2.0",
|
|
5824
|
-
"resolved": "https://registry.npmjs.org/@inquirer/password/-/password-2.2.0.tgz",
|
|
5825
|
-
"integrity": "sha512-5otqIpgsPYIshqhgtEwSspBQE40etouR8VIxzpJkv9i0dVHIpyhiivbkH9/dGiMLdyamT54YRdGJLfl8TFnLHg==",
|
|
5826
|
-
"license": "MIT",
|
|
5827
|
-
"dependencies": {
|
|
5828
|
-
"@inquirer/core": "^9.1.0",
|
|
5829
|
-
"@inquirer/type": "^1.5.3",
|
|
5830
|
-
"ansi-escapes": "^4.3.2"
|
|
5831
|
-
},
|
|
5832
|
-
"engines": {
|
|
5833
|
-
"node": ">=18"
|
|
5834
|
-
}
|
|
5835
|
-
},
|
|
5836
|
-
"node_modules/@salesforce/plugin-schema/node_modules/@inquirer/type": {
|
|
5837
|
-
"version": "1.5.3",
|
|
5838
|
-
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-1.5.3.tgz",
|
|
5839
|
-
"integrity": "sha512-xUQ14WQGR/HK5ei+2CvgcwoH9fQ4PgPGmVFSN0pc1+fVyDL3MREhyAY7nxEErSu6CkllBM3D7e3e+kOvtu+eIg==",
|
|
5840
|
-
"license": "MIT",
|
|
5841
|
-
"dependencies": {
|
|
5842
|
-
"mute-stream": "^1.0.0"
|
|
5843
|
-
},
|
|
5844
|
-
"engines": {
|
|
5845
|
-
"node": ">=18"
|
|
5846
|
-
}
|
|
5847
|
-
},
|
|
5848
|
-
"node_modules/@salesforce/plugin-schema/node_modules/@salesforce/sf-plugins-core": {
|
|
5849
|
-
"version": "11.3.12",
|
|
5850
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-11.3.12.tgz",
|
|
5851
|
-
"integrity": "sha512-hi8EcSoRHRxj4sm/V5YDtzq9bPr/cKpM4fC6abo/jRzpXygwizinc2gVQkXfVdhjK7NGMskVRQB1N+0TThG7bA==",
|
|
5852
|
-
"license": "BSD-3-Clause",
|
|
5853
|
-
"dependencies": {
|
|
5854
|
-
"@inquirer/confirm": "^3.1.22",
|
|
5855
|
-
"@inquirer/password": "^2.2.0",
|
|
5856
|
-
"@oclif/core": "^4.0.27",
|
|
5857
|
-
"@salesforce/core": "^8.5.1",
|
|
5858
|
-
"@salesforce/kit": "^3.2.3",
|
|
5859
|
-
"@salesforce/ts-types": "^2.0.12",
|
|
5860
|
-
"ansis": "^3.3.2",
|
|
5861
|
-
"cli-progress": "^3.12.0",
|
|
5862
|
-
"natural-orderby": "^3.0.2",
|
|
5863
|
-
"slice-ansi": "^7.1.0",
|
|
5864
|
-
"string-width": "^7.2.0",
|
|
5865
|
-
"terminal-link": "^3.0.0"
|
|
5866
|
-
},
|
|
5867
|
-
"engines": {
|
|
5868
|
-
"node": ">=18.0.0"
|
|
5869
|
-
}
|
|
5870
|
-
},
|
|
5871
|
-
"node_modules/@salesforce/plugin-schema/node_modules/@types/node": {
|
|
5872
|
-
"version": "22.5.4",
|
|
5873
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.5.4.tgz",
|
|
5874
|
-
"integrity": "sha512-FDuKUJQm/ju9fT/SeX/6+gBzoPzlVCzfzmGkwKvRHQVxi4BntVbyIwf6a4Xn62mrvndLiml6z/UBXIdEVjQLXg==",
|
|
5875
|
-
"license": "MIT",
|
|
5876
|
-
"dependencies": {
|
|
5877
|
-
"undici-types": "~6.19.2"
|
|
5878
|
-
}
|
|
5879
|
-
},
|
|
5880
|
-
"node_modules/@salesforce/plugin-schema/node_modules/ansi-regex": {
|
|
5881
|
-
"version": "6.0.1",
|
|
5882
|
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
|
|
5883
|
-
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
|
|
5884
|
-
"license": "MIT",
|
|
5885
|
-
"engines": {
|
|
5886
|
-
"node": ">=12"
|
|
5887
|
-
},
|
|
5888
|
-
"funding": {
|
|
5889
|
-
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
5890
|
-
}
|
|
5891
|
-
},
|
|
5892
|
-
"node_modules/@salesforce/plugin-schema/node_modules/emoji-regex": {
|
|
5893
|
-
"version": "10.3.0",
|
|
5894
|
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz",
|
|
5895
|
-
"integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==",
|
|
5896
|
-
"license": "MIT"
|
|
5897
|
-
},
|
|
5898
|
-
"node_modules/@salesforce/plugin-schema/node_modules/signal-exit": {
|
|
5899
|
-
"version": "4.1.0",
|
|
5900
|
-
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
|
|
5901
|
-
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
5902
|
-
"license": "ISC",
|
|
5903
|
-
"engines": {
|
|
5904
|
-
"node": ">=14"
|
|
5905
|
-
},
|
|
5906
|
-
"funding": {
|
|
5907
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
5908
|
-
}
|
|
5909
|
-
},
|
|
5910
|
-
"node_modules/@salesforce/plugin-schema/node_modules/string-width": {
|
|
5911
|
-
"version": "7.2.0",
|
|
5912
|
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz",
|
|
5913
|
-
"integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==",
|
|
5914
|
-
"license": "MIT",
|
|
5915
|
-
"dependencies": {
|
|
5916
|
-
"emoji-regex": "^10.3.0",
|
|
5917
|
-
"get-east-asian-width": "^1.0.0",
|
|
5918
|
-
"strip-ansi": "^7.1.0"
|
|
5919
|
-
},
|
|
5920
|
-
"engines": {
|
|
5921
|
-
"node": ">=18"
|
|
5922
|
-
},
|
|
5923
|
-
"funding": {
|
|
5924
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
5925
|
-
}
|
|
5926
|
-
},
|
|
5927
|
-
"node_modules/@salesforce/plugin-schema/node_modules/strip-ansi": {
|
|
5928
|
-
"version": "7.1.2",
|
|
5929
|
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz",
|
|
5930
|
-
"integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
|
|
5931
|
-
"license": "MIT",
|
|
5932
|
-
"dependencies": {
|
|
5933
|
-
"ansi-regex": "^6.0.1"
|
|
5934
|
-
},
|
|
5935
|
-
"engines": {
|
|
5936
|
-
"node": ">=12"
|
|
5937
|
-
},
|
|
5938
|
-
"funding": {
|
|
5939
|
-
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
5940
|
-
}
|
|
5941
|
-
},
|
|
5942
|
-
"node_modules/@salesforce/plugin-schema/node_modules/undici-types": {
|
|
5943
|
-
"version": "6.19.8",
|
|
5944
|
-
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz",
|
|
5945
|
-
"integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==",
|
|
5946
|
-
"license": "MIT"
|
|
5947
|
-
},
|
|
5948
5816
|
"node_modules/@salesforce/plugin-settings": {
|
|
5949
5817
|
"version": "2.4.78",
|
|
5950
5818
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-settings/-/plugin-settings-2.4.78.tgz",
|
|
@@ -6153,9 +6021,9 @@
|
|
|
6153
6021
|
"license": "MIT"
|
|
6154
6022
|
},
|
|
6155
6023
|
"node_modules/@salesforce/plugin-telemetry": {
|
|
6156
|
-
"version": "3.8.
|
|
6157
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.8.
|
|
6158
|
-
"integrity": "sha512-
|
|
6024
|
+
"version": "3.8.21",
|
|
6025
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.8.21.tgz",
|
|
6026
|
+
"integrity": "sha512-VtSFAxy8yH/RdDCf0OCKGqd4I2Bgs9c29bqcjHSPi+x7DDWVbIBZ7NkD7GxljU4X9dWvAqC0jI6nNIlq8ypm6Q==",
|
|
6159
6027
|
"license": "Apache-2.0",
|
|
6160
6028
|
"dependencies": {
|
|
6161
6029
|
"@oclif/core": "^4.10.5",
|
|
@@ -6185,9 +6053,9 @@
|
|
|
6185
6053
|
}
|
|
6186
6054
|
},
|
|
6187
6055
|
"node_modules/@salesforce/plugin-trust": {
|
|
6188
|
-
"version": "3.8.
|
|
6189
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.8.
|
|
6190
|
-
"integrity": "sha512-
|
|
6056
|
+
"version": "3.8.8",
|
|
6057
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.8.8.tgz",
|
|
6058
|
+
"integrity": "sha512-Alv98aAtnf39beiiyKBeRpSF0XnDJn69bCby1PsOkdqCOazOahk5TH8WIfmEz/HNg0oqT0/NtuaRZkExtjeGAw==",
|
|
6191
6059
|
"license": "Apache-2.0",
|
|
6192
6060
|
"dependencies": {
|
|
6193
6061
|
"@oclif/core": "^4",
|
|
@@ -14921,6 +14789,12 @@
|
|
|
14921
14789
|
"url": "https://github.com/sponsors/ljharb"
|
|
14922
14790
|
}
|
|
14923
14791
|
},
|
|
14792
|
+
"node_modules/is-node-process": {
|
|
14793
|
+
"version": "1.2.0",
|
|
14794
|
+
"resolved": "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz",
|
|
14795
|
+
"integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==",
|
|
14796
|
+
"license": "MIT"
|
|
14797
|
+
},
|
|
14924
14798
|
"node_modules/is-number": {
|
|
14925
14799
|
"version": "7.0.0",
|
|
14926
14800
|
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
@@ -17323,17 +17197,17 @@
|
|
|
17323
17197
|
}
|
|
17324
17198
|
},
|
|
17325
17199
|
"node_modules/nock": {
|
|
17326
|
-
"version": "
|
|
17327
|
-
"resolved": "https://registry.npmjs.org/nock/-/nock-
|
|
17328
|
-
"integrity": "sha512-
|
|
17200
|
+
"version": "14.0.15",
|
|
17201
|
+
"resolved": "https://registry.npmjs.org/nock/-/nock-14.0.15.tgz",
|
|
17202
|
+
"integrity": "sha512-S0a47C9pLvcYx/Ugf0H30BVBEcUgMMBDk9VJIDlJ8XGrfH2QDUD4Tgdp45qDIiHttokBG+IbsOtsvIjGR/j3bg==",
|
|
17329
17203
|
"license": "MIT",
|
|
17330
17204
|
"dependencies": {
|
|
17331
|
-
"
|
|
17205
|
+
"@mswjs/interceptors": "^0.41.0",
|
|
17332
17206
|
"json-stringify-safe": "^5.0.1",
|
|
17333
17207
|
"propagate": "^2.0.0"
|
|
17334
17208
|
},
|
|
17335
17209
|
"engines": {
|
|
17336
|
-
"node": ">=
|
|
17210
|
+
"node": ">=18.20.0 <20 || >=20.12.1"
|
|
17337
17211
|
}
|
|
17338
17212
|
},
|
|
17339
17213
|
"node_modules/node-emoji": {
|
|
@@ -20245,6 +20119,12 @@
|
|
|
20245
20119
|
"dev": true,
|
|
20246
20120
|
"license": "MIT"
|
|
20247
20121
|
},
|
|
20122
|
+
"node_modules/outvariant": {
|
|
20123
|
+
"version": "1.4.3",
|
|
20124
|
+
"resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz",
|
|
20125
|
+
"integrity": "sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==",
|
|
20126
|
+
"license": "MIT"
|
|
20127
|
+
},
|
|
20248
20128
|
"node_modules/p-cancelable": {
|
|
20249
20129
|
"version": "3.0.0",
|
|
20250
20130
|
"resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
|
|
@@ -22575,6 +22455,12 @@
|
|
|
22575
22455
|
"node": ">=8"
|
|
22576
22456
|
}
|
|
22577
22457
|
},
|
|
22458
|
+
"node_modules/strict-event-emitter": {
|
|
22459
|
+
"version": "0.5.1",
|
|
22460
|
+
"resolved": "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz",
|
|
22461
|
+
"integrity": "sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==",
|
|
22462
|
+
"license": "MIT"
|
|
22463
|
+
},
|
|
22578
22464
|
"node_modules/string_decoder": {
|
|
22579
22465
|
"version": "1.3.0",
|
|
22580
22466
|
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
package/oclif.lock
CHANGED
|
@@ -1555,6 +1555,18 @@
|
|
|
1555
1555
|
resolved "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.0.1.tgz"
|
|
1556
1556
|
integrity sha512-2IHAOaLauc8qaAitvWS+U931T+ze+7MNWrDHY47IENP5y2UA0vqJDu67kWZDdpCN1fFC77sfgfB+HV7SrKshnQ==
|
|
1557
1557
|
|
|
1558
|
+
"@mswjs/interceptors@^0.41.0":
|
|
1559
|
+
version "0.41.9"
|
|
1560
|
+
resolved "https://registry.npmjs.org/@mswjs/interceptors/-/interceptors-0.41.9.tgz"
|
|
1561
|
+
integrity sha512-VVPPgHyQ6ShqnrmDWuxjmUIsO9gWyOZFmuOfLd9LfBGQJwZfy0gvv9pbHSJuoFNIYC7ZDX9aoFwowjcdSC4E8w==
|
|
1562
|
+
dependencies:
|
|
1563
|
+
"@open-draft/deferred-promise" "^2.2.0"
|
|
1564
|
+
"@open-draft/logger" "^0.3.0"
|
|
1565
|
+
"@open-draft/until" "^2.0.0"
|
|
1566
|
+
is-node-process "^1.2.0"
|
|
1567
|
+
outvariant "^1.4.3"
|
|
1568
|
+
strict-event-emitter "^0.5.1"
|
|
1569
|
+
|
|
1558
1570
|
"@nodable/entities@^2.1.0":
|
|
1559
1571
|
version "2.1.0"
|
|
1560
1572
|
resolved "https://registry.npmjs.org/@nodable/entities/-/entities-2.1.0.tgz"
|
|
@@ -2055,6 +2067,24 @@
|
|
|
2055
2067
|
dependencies:
|
|
2056
2068
|
"@octokit/openapi-types" "^25.1.0"
|
|
2057
2069
|
|
|
2070
|
+
"@open-draft/deferred-promise@^2.2.0":
|
|
2071
|
+
version "2.2.0"
|
|
2072
|
+
resolved "https://registry.npmjs.org/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz"
|
|
2073
|
+
integrity sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==
|
|
2074
|
+
|
|
2075
|
+
"@open-draft/logger@^0.3.0":
|
|
2076
|
+
version "0.3.0"
|
|
2077
|
+
resolved "https://registry.npmjs.org/@open-draft/logger/-/logger-0.3.0.tgz"
|
|
2078
|
+
integrity sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==
|
|
2079
|
+
dependencies:
|
|
2080
|
+
is-node-process "^1.2.0"
|
|
2081
|
+
outvariant "^1.4.0"
|
|
2082
|
+
|
|
2083
|
+
"@open-draft/until@^2.0.0":
|
|
2084
|
+
version "2.1.0"
|
|
2085
|
+
resolved "https://registry.npmjs.org/@open-draft/until/-/until-2.1.0.tgz"
|
|
2086
|
+
integrity sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==
|
|
2087
|
+
|
|
2058
2088
|
"@opentelemetry/api@^1.3.0", "@opentelemetry/api@^1.4.1", "@opentelemetry/api@^1.7.0", "@opentelemetry/api@>=1.0.0 <1.9.0":
|
|
2059
2089
|
version "1.8.0"
|
|
2060
2090
|
resolved "https://registry.npmjs.org/@opentelemetry/api/-/api-1.8.0.tgz"
|
|
@@ -2179,17 +2209,17 @@
|
|
|
2179
2209
|
resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz"
|
|
2180
2210
|
integrity sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==
|
|
2181
2211
|
|
|
2182
|
-
"@salesforce/agents@^1.6.
|
|
2183
|
-
version "1.6.
|
|
2184
|
-
resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-1.6.
|
|
2185
|
-
integrity sha512-
|
|
2212
|
+
"@salesforce/agents@^1.6.6":
|
|
2213
|
+
version "1.6.6"
|
|
2214
|
+
resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-1.6.6.tgz"
|
|
2215
|
+
integrity sha512-YMYOPv45aSLjIARu+9vkHz5GWXGh0EMhiQw+oCBEwlxD55/O4Gm6Zb/HzLuOPKhXt5xn9TogG87vvHvCNgiUyA==
|
|
2186
2216
|
dependencies:
|
|
2187
|
-
"@salesforce/core" "^8.29.
|
|
2217
|
+
"@salesforce/core" "^8.29.1"
|
|
2188
2218
|
"@salesforce/kit" "^3.2.6"
|
|
2189
|
-
"@salesforce/source-deploy-retrieve" "^12.35.
|
|
2219
|
+
"@salesforce/source-deploy-retrieve" "^12.35.8"
|
|
2190
2220
|
"@salesforce/types" "^1.7.1"
|
|
2191
|
-
fast-xml-parser "^5.7.
|
|
2192
|
-
nock "^
|
|
2221
|
+
fast-xml-parser "^5.7.3"
|
|
2222
|
+
nock "^14.0.15"
|
|
2193
2223
|
yaml "^2.8.4"
|
|
2194
2224
|
|
|
2195
2225
|
"@salesforce/apex-node@^8.4.22", "@salesforce/apex-node@^8.4.24":
|
|
@@ -2320,16 +2350,16 @@
|
|
|
2320
2350
|
jszip "^3.10.1"
|
|
2321
2351
|
object-treeify "^2"
|
|
2322
2352
|
|
|
2323
|
-
"@salesforce/plugin-agent@1.40.
|
|
2324
|
-
version "1.40.
|
|
2325
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.40.
|
|
2326
|
-
integrity sha512-
|
|
2353
|
+
"@salesforce/plugin-agent@1.40.2":
|
|
2354
|
+
version "1.40.2"
|
|
2355
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.40.2.tgz"
|
|
2356
|
+
integrity sha512-ChkJ+CtlJ+b85lsOCRs4MMLqdsXAwl92bIFzdh94q/HvKE91jQ7Jr+J+KiKPoenw5/OW+8FOzqCdWCF8hu8nTQ==
|
|
2327
2357
|
dependencies:
|
|
2328
2358
|
"@inquirer/core" "^10.3.2"
|
|
2329
2359
|
"@inquirer/prompts" "^7.10.1"
|
|
2330
2360
|
"@oclif/core" "^4"
|
|
2331
2361
|
"@oclif/multi-stage-output" "^0.8.36"
|
|
2332
|
-
"@salesforce/agents" "^1.6.
|
|
2362
|
+
"@salesforce/agents" "^1.6.6"
|
|
2333
2363
|
"@salesforce/core" "^8.28.3"
|
|
2334
2364
|
"@salesforce/kit" "^3.2.6"
|
|
2335
2365
|
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
@@ -2535,14 +2565,14 @@
|
|
|
2535
2565
|
strip-ansi "^6"
|
|
2536
2566
|
yarn-deduplicate "^6.0.2"
|
|
2537
2567
|
|
|
2538
|
-
"@salesforce/plugin-schema@3.3.
|
|
2539
|
-
version "3.3.
|
|
2540
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-schema/-/plugin-schema-3.3.
|
|
2541
|
-
integrity sha512-
|
|
2568
|
+
"@salesforce/plugin-schema@3.3.112":
|
|
2569
|
+
version "3.3.112"
|
|
2570
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-schema/-/plugin-schema-3.3.112.tgz"
|
|
2571
|
+
integrity sha512-NWLUYIRPIeYyTfuJF7bdvrsXCoqVcFQGy5BbrIZRvwIcb+9qWZSV1Oj7DUMA2xIupCraDYxb2L0jJMqsmYAmQQ==
|
|
2542
2572
|
dependencies:
|
|
2543
2573
|
"@oclif/core" "^4"
|
|
2544
2574
|
"@salesforce/core" "^8.29.1"
|
|
2545
|
-
"@salesforce/sf-plugins-core" "^
|
|
2575
|
+
"@salesforce/sf-plugins-core" "^12.2.16"
|
|
2546
2576
|
|
|
2547
2577
|
"@salesforce/plugin-settings@2.4.78":
|
|
2548
2578
|
version "2.4.78"
|
|
@@ -2570,10 +2600,10 @@
|
|
|
2570
2600
|
fast-xml-parser "^5.7.3"
|
|
2571
2601
|
js2xmlparser "^4.0.2"
|
|
2572
2602
|
|
|
2573
|
-
"@salesforce/plugin-telemetry@3.8.
|
|
2574
|
-
version "3.8.
|
|
2575
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.8.
|
|
2576
|
-
integrity sha512-
|
|
2603
|
+
"@salesforce/plugin-telemetry@3.8.21":
|
|
2604
|
+
version "3.8.21"
|
|
2605
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.8.21.tgz"
|
|
2606
|
+
integrity sha512-VtSFAxy8yH/RdDCf0OCKGqd4I2Bgs9c29bqcjHSPi+x7DDWVbIBZ7NkD7GxljU4X9dWvAqC0jI6nNIlq8ypm6Q==
|
|
2577
2607
|
dependencies:
|
|
2578
2608
|
"@oclif/core" "^4.10.5"
|
|
2579
2609
|
"@salesforce/core" "^8.27.1"
|
|
@@ -2592,10 +2622,10 @@
|
|
|
2592
2622
|
"@salesforce/sf-plugins-core" "^12"
|
|
2593
2623
|
"@salesforce/templates" "^66.7.12"
|
|
2594
2624
|
|
|
2595
|
-
"@salesforce/plugin-trust@^3.7.89", "@salesforce/plugin-trust@3.8.
|
|
2596
|
-
version "3.8.
|
|
2597
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.8.
|
|
2598
|
-
integrity sha512-
|
|
2625
|
+
"@salesforce/plugin-trust@^3.7.89", "@salesforce/plugin-trust@3.8.8":
|
|
2626
|
+
version "3.8.8"
|
|
2627
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.8.8.tgz"
|
|
2628
|
+
integrity sha512-Alv98aAtnf39beiiyKBeRpSF0XnDJn69bCby1PsOkdqCOazOahk5TH8WIfmEz/HNg0oqT0/NtuaRZkExtjeGAw==
|
|
2599
2629
|
dependencies:
|
|
2600
2630
|
"@oclif/core" "^4"
|
|
2601
2631
|
"@salesforce/core" "^8.29.1"
|
|
@@ -2663,7 +2693,7 @@
|
|
|
2663
2693
|
cli-progress "^3.12.0"
|
|
2664
2694
|
terminal-link "^3.0.0"
|
|
2665
2695
|
|
|
2666
|
-
"@salesforce/source-deploy-retrieve@^12.34.2", "@salesforce/source-deploy-retrieve@^12.35.1", "@salesforce/source-deploy-retrieve@^12.35.3", "@salesforce/source-deploy-retrieve@^12.35.9":
|
|
2696
|
+
"@salesforce/source-deploy-retrieve@^12.34.2", "@salesforce/source-deploy-retrieve@^12.35.1", "@salesforce/source-deploy-retrieve@^12.35.3", "@salesforce/source-deploy-retrieve@^12.35.8", "@salesforce/source-deploy-retrieve@^12.35.9":
|
|
2667
2697
|
version "12.35.9"
|
|
2668
2698
|
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.35.9.tgz"
|
|
2669
2699
|
integrity sha512-Qud+1lHS0u+LM/AAHPN9Y/6W6hBZ8nvw6/TxJRzn/BuvRSz74YBwvmVhmn5pvpZdNrYmKRMPxsK47l2VmazSsw==
|
|
@@ -7324,6 +7354,11 @@ is-negative-zero@^2.0.3:
|
|
|
7324
7354
|
resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz"
|
|
7325
7355
|
integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==
|
|
7326
7356
|
|
|
7357
|
+
is-node-process@^1.2.0:
|
|
7358
|
+
version "1.2.0"
|
|
7359
|
+
resolved "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz"
|
|
7360
|
+
integrity sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==
|
|
7361
|
+
|
|
7327
7362
|
is-number-object@^1.0.4:
|
|
7328
7363
|
version "1.0.7"
|
|
7329
7364
|
resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"
|
|
@@ -8772,12 +8807,12 @@ no-case@^3.0.4:
|
|
|
8772
8807
|
lower-case "^2.0.2"
|
|
8773
8808
|
tslib "^2.0.3"
|
|
8774
8809
|
|
|
8775
|
-
nock@^
|
|
8776
|
-
version "
|
|
8777
|
-
resolved "https://registry.npmjs.org/nock/-/nock-
|
|
8778
|
-
integrity sha512-
|
|
8810
|
+
nock@^14.0.15:
|
|
8811
|
+
version "14.0.15"
|
|
8812
|
+
resolved "https://registry.npmjs.org/nock/-/nock-14.0.15.tgz"
|
|
8813
|
+
integrity sha512-S0a47C9pLvcYx/Ugf0H30BVBEcUgMMBDk9VJIDlJ8XGrfH2QDUD4Tgdp45qDIiHttokBG+IbsOtsvIjGR/j3bg==
|
|
8779
8814
|
dependencies:
|
|
8780
|
-
|
|
8815
|
+
"@mswjs/interceptors" "^0.41.0"
|
|
8781
8816
|
json-stringify-safe "^5.0.1"
|
|
8782
8817
|
propagate "^2.0.0"
|
|
8783
8818
|
|
|
@@ -9258,6 +9293,11 @@ optionator@^0.9.3:
|
|
|
9258
9293
|
prelude-ls "^1.2.1"
|
|
9259
9294
|
type-check "^0.4.0"
|
|
9260
9295
|
|
|
9296
|
+
outvariant@^1.4.0, outvariant@^1.4.3:
|
|
9297
|
+
version "1.4.3"
|
|
9298
|
+
resolved "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz"
|
|
9299
|
+
integrity sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==
|
|
9300
|
+
|
|
9261
9301
|
p-cancelable@^2.0.0:
|
|
9262
9302
|
version "2.1.1"
|
|
9263
9303
|
resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz"
|
|
@@ -10702,6 +10742,11 @@ stack-utils@^2.0.6:
|
|
|
10702
10742
|
dependencies:
|
|
10703
10743
|
escape-string-regexp "^2.0.0"
|
|
10704
10744
|
|
|
10745
|
+
strict-event-emitter@^0.5.1:
|
|
10746
|
+
version "0.5.1"
|
|
10747
|
+
resolved "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz"
|
|
10748
|
+
integrity sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==
|
|
10749
|
+
|
|
10705
10750
|
string_decoder@^1.1.1, string_decoder@^1.3.0:
|
|
10706
10751
|
version "1.3.0"
|
|
10707
10752
|
resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
|
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.
|
|
4
|
+
"version": "2.136.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"@oclif/plugin-which": "3.2.53",
|
|
160
160
|
"@salesforce/core": "^8.28.0",
|
|
161
161
|
"@salesforce/kit": "^3.1.6",
|
|
162
|
-
"@salesforce/plugin-agent": "1.40.
|
|
162
|
+
"@salesforce/plugin-agent": "1.40.2",
|
|
163
163
|
"@salesforce/plugin-apex": "3.9.27",
|
|
164
164
|
"@salesforce/plugin-api": "1.3.30",
|
|
165
165
|
"@salesforce/plugin-auth": "4.3.10",
|
|
@@ -170,12 +170,12 @@
|
|
|
170
170
|
"@salesforce/plugin-marketplace": "1.3.26",
|
|
171
171
|
"@salesforce/plugin-org": "5.10.13",
|
|
172
172
|
"@salesforce/plugin-packaging": "2.27.17",
|
|
173
|
-
"@salesforce/plugin-schema": "3.3.
|
|
173
|
+
"@salesforce/plugin-schema": "3.3.112",
|
|
174
174
|
"@salesforce/plugin-settings": "2.4.78",
|
|
175
175
|
"@salesforce/plugin-sobject": "1.4.105",
|
|
176
|
-
"@salesforce/plugin-telemetry": "3.8.
|
|
176
|
+
"@salesforce/plugin-telemetry": "3.8.21",
|
|
177
177
|
"@salesforce/plugin-templates": "56.16.7",
|
|
178
|
-
"@salesforce/plugin-trust": "3.8.
|
|
178
|
+
"@salesforce/plugin-trust": "3.8.8",
|
|
179
179
|
"@salesforce/plugin-user": "3.9.4",
|
|
180
180
|
"@salesforce/sf-plugins-core": "12.2.16",
|
|
181
181
|
"ansis": "^3.12.0"
|