@salesforce/cli 2.135.6 → 2.135.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 +24 -24
- package/npm-shrinkwrap.json +76 -19
- package/oclif.lock +64 -19
- 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.135.
|
|
28
|
+
@salesforce/cli/2.135.7 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
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.135.
|
|
3
|
+
"version": "2.135.7",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.135.
|
|
9
|
+
"version": "2.135.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.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",
|
|
@@ -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",
|
|
@@ -14921,6 +14960,12 @@
|
|
|
14921
14960
|
"url": "https://github.com/sponsors/ljharb"
|
|
14922
14961
|
}
|
|
14923
14962
|
},
|
|
14963
|
+
"node_modules/is-node-process": {
|
|
14964
|
+
"version": "1.2.0",
|
|
14965
|
+
"resolved": "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz",
|
|
14966
|
+
"integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==",
|
|
14967
|
+
"license": "MIT"
|
|
14968
|
+
},
|
|
14924
14969
|
"node_modules/is-number": {
|
|
14925
14970
|
"version": "7.0.0",
|
|
14926
14971
|
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
@@ -17323,17 +17368,17 @@
|
|
|
17323
17368
|
}
|
|
17324
17369
|
},
|
|
17325
17370
|
"node_modules/nock": {
|
|
17326
|
-
"version": "
|
|
17327
|
-
"resolved": "https://registry.npmjs.org/nock/-/nock-
|
|
17328
|
-
"integrity": "sha512-
|
|
17371
|
+
"version": "14.0.15",
|
|
17372
|
+
"resolved": "https://registry.npmjs.org/nock/-/nock-14.0.15.tgz",
|
|
17373
|
+
"integrity": "sha512-S0a47C9pLvcYx/Ugf0H30BVBEcUgMMBDk9VJIDlJ8XGrfH2QDUD4Tgdp45qDIiHttokBG+IbsOtsvIjGR/j3bg==",
|
|
17329
17374
|
"license": "MIT",
|
|
17330
17375
|
"dependencies": {
|
|
17331
|
-
"
|
|
17376
|
+
"@mswjs/interceptors": "^0.41.0",
|
|
17332
17377
|
"json-stringify-safe": "^5.0.1",
|
|
17333
17378
|
"propagate": "^2.0.0"
|
|
17334
17379
|
},
|
|
17335
17380
|
"engines": {
|
|
17336
|
-
"node": ">=
|
|
17381
|
+
"node": ">=18.20.0 <20 || >=20.12.1"
|
|
17337
17382
|
}
|
|
17338
17383
|
},
|
|
17339
17384
|
"node_modules/node-emoji": {
|
|
@@ -20245,6 +20290,12 @@
|
|
|
20245
20290
|
"dev": true,
|
|
20246
20291
|
"license": "MIT"
|
|
20247
20292
|
},
|
|
20293
|
+
"node_modules/outvariant": {
|
|
20294
|
+
"version": "1.4.3",
|
|
20295
|
+
"resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz",
|
|
20296
|
+
"integrity": "sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==",
|
|
20297
|
+
"license": "MIT"
|
|
20298
|
+
},
|
|
20248
20299
|
"node_modules/p-cancelable": {
|
|
20249
20300
|
"version": "3.0.0",
|
|
20250
20301
|
"resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
|
|
@@ -22575,6 +22626,12 @@
|
|
|
22575
22626
|
"node": ">=8"
|
|
22576
22627
|
}
|
|
22577
22628
|
},
|
|
22629
|
+
"node_modules/strict-event-emitter": {
|
|
22630
|
+
"version": "0.5.1",
|
|
22631
|
+
"resolved": "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz",
|
|
22632
|
+
"integrity": "sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==",
|
|
22633
|
+
"license": "MIT"
|
|
22634
|
+
},
|
|
22578
22635
|
"node_modules/string_decoder": {
|
|
22579
22636
|
"version": "1.3.0",
|
|
22580
22637
|
"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"
|
|
@@ -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.135.
|
|
4
|
+
"version": "2.135.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.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",
|