@salesforce/cli 2.127.2 → 2.128.1
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 +77 -66
- package/npm-shrinkwrap.json +27 -27
- package/oclif.lock +27 -27
- 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.128.1 linux-x64 node-v22.22.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -223,13 +223,17 @@ Activate an agent in an org.
|
|
|
223
223
|
|
|
224
224
|
```
|
|
225
225
|
USAGE
|
|
226
|
-
$ sf agent activate -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
|
|
226
|
+
$ sf agent activate -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>] [--version
|
|
227
|
+
<value>]
|
|
227
228
|
|
|
228
229
|
FLAGS
|
|
229
|
-
-n, --api-name=<value> API name of the agent to activate
|
|
230
|
+
-n, --api-name=<value> API name of the agent to activate; if not specified, the command provides a list that you
|
|
231
|
+
choose from.
|
|
230
232
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
231
233
|
configuration variable is already set.
|
|
232
234
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
235
|
+
--version=<value> Version number of the agent to activate; if not specified, the command provides a list that
|
|
236
|
+
you choose from.
|
|
233
237
|
|
|
234
238
|
GLOBAL FLAGS
|
|
235
239
|
--flags-dir=<value> Import flag values from a directory.
|
|
@@ -238,23 +242,29 @@ GLOBAL FLAGS
|
|
|
238
242
|
DESCRIPTION
|
|
239
243
|
Activate an agent in an org.
|
|
240
244
|
|
|
241
|
-
Activating an agent makes it immediately available to your users.
|
|
242
|
-
with the "agent preview" CLI command or VS Code.
|
|
245
|
+
Activating an agent makes it immediately available to your users. A published agent must be active before you can
|
|
246
|
+
preview it with the "agent preview" CLI command or VS Code. Agents can have multiple versions; only one version can be
|
|
247
|
+
active at a time.
|
|
248
|
+
|
|
249
|
+
If you run the command without the --api-name or --version flags, the command provides a list of agent API names and
|
|
250
|
+
versions for you to choose from. Use the flags to specify the exact agent and version without being prompted. If you
|
|
251
|
+
use the --json flag and not --version, then the latest agent version is automatically activated.
|
|
243
252
|
|
|
244
|
-
|
|
245
|
-
|
|
253
|
+
The value of the --version flag is always a number, corresponding to the "vX" part of the "BotVersion" metadata in
|
|
254
|
+
your project. For example, if you have a force-app/main/default/bots/My_Agent/v4.botVersion-meta.xml file in your
|
|
255
|
+
project, then you activate this version with the "--version 4" flag.
|
|
246
256
|
|
|
247
257
|
EXAMPLES
|
|
248
|
-
Activate an agent in your default target org by being prompted:
|
|
258
|
+
Activate an agent in your default target org by being prompted for both its API name and version:
|
|
249
259
|
|
|
250
260
|
$ sf agent activate
|
|
251
261
|
|
|
252
|
-
Activate an agent with API name Resort_Manager in the org with alias "my-org":
|
|
262
|
+
Activate version 2 of an agent with API name Resort_Manager in the org with alias "my-org":
|
|
253
263
|
|
|
254
|
-
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
264
|
+
$ sf agent activate --api-name Resort_Manager --version 2 --target-org my-org
|
|
255
265
|
```
|
|
256
266
|
|
|
257
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
267
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/activate.ts)_
|
|
258
268
|
|
|
259
269
|
## `sf agent create`
|
|
260
270
|
|
|
@@ -321,7 +331,7 @@ EXAMPLES
|
|
|
321
331
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
322
332
|
```
|
|
323
333
|
|
|
324
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
334
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/create.ts)_
|
|
325
335
|
|
|
326
336
|
## `sf agent deactivate`
|
|
327
337
|
|
|
@@ -332,7 +342,8 @@ USAGE
|
|
|
332
342
|
$ sf agent deactivate -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
|
|
333
343
|
|
|
334
344
|
FLAGS
|
|
335
|
-
-n, --api-name=<value> API name of the agent to deactivate
|
|
345
|
+
-n, --api-name=<value> API name of the agent to deactivate; if not specified, the command provides a list that you
|
|
346
|
+
choose from.
|
|
336
347
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
337
348
|
configuration variable is already set.
|
|
338
349
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
@@ -348,8 +359,8 @@ DESCRIPTION
|
|
|
348
359
|
topics or actions, you must deactivate it. You can't preview an agent with the "agent preview" CLI command or VS Code
|
|
349
360
|
if it's deactivated.
|
|
350
361
|
|
|
351
|
-
|
|
352
|
-
|
|
362
|
+
If you run the command without the --api-name flag, the command provides a list of agent API names for you to choose
|
|
363
|
+
from. Use the flag to specify the exact agent without being prompted.
|
|
353
364
|
|
|
354
365
|
EXAMPLES
|
|
355
366
|
Deactivate an agent in your default target org by being prompted:
|
|
@@ -361,7 +372,7 @@ EXAMPLES
|
|
|
361
372
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
362
373
|
```
|
|
363
374
|
|
|
364
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
375
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/deactivate.ts)_
|
|
365
376
|
|
|
366
377
|
## `sf agent generate agent-spec`
|
|
367
378
|
|
|
@@ -468,7 +479,7 @@ EXAMPLES
|
|
|
468
479
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
469
480
|
```
|
|
470
481
|
|
|
471
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
482
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/generate/agent-spec.ts)_
|
|
472
483
|
|
|
473
484
|
## `sf agent generate authoring-bundle`
|
|
474
485
|
|
|
@@ -545,7 +556,7 @@ EXAMPLES
|
|
|
545
556
|
other-package-dir/main/default --target-org my-dev-org
|
|
546
557
|
```
|
|
547
558
|
|
|
548
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
559
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/generate/authoring-bundle.ts)_
|
|
549
560
|
|
|
550
561
|
## `sf agent generate template`
|
|
551
562
|
|
|
@@ -593,7 +604,7 @@ EXAMPLES
|
|
|
593
604
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
594
605
|
```
|
|
595
606
|
|
|
596
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
607
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/generate/template.ts)_
|
|
597
608
|
|
|
598
609
|
## `sf agent generate test-spec`
|
|
599
610
|
|
|
@@ -658,7 +669,7 @@ EXAMPLES
|
|
|
658
669
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
659
670
|
```
|
|
660
671
|
|
|
661
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
672
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/generate/test-spec.ts)_
|
|
662
673
|
|
|
663
674
|
## `sf agent preview`
|
|
664
675
|
|
|
@@ -731,7 +742,7 @@ EXAMPLES
|
|
|
731
742
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
732
743
|
```
|
|
733
744
|
|
|
734
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
745
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/preview.ts)_
|
|
735
746
|
|
|
736
747
|
## `sf agent preview end`
|
|
737
748
|
|
|
@@ -786,7 +797,7 @@ EXAMPLES
|
|
|
786
797
|
$ sf agent preview end --authoring-bundle My_Local_Agent
|
|
787
798
|
```
|
|
788
799
|
|
|
789
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
800
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/preview/end.ts)_
|
|
790
801
|
|
|
791
802
|
## `sf agent preview send`
|
|
792
803
|
|
|
@@ -844,7 +855,7 @@ EXAMPLES
|
|
|
844
855
|
$ sf agent preview send --utterance "what can you help me with?" --authoring-bundle My_Local_Agent
|
|
845
856
|
```
|
|
846
857
|
|
|
847
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
858
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/preview/send.ts)_
|
|
848
859
|
|
|
849
860
|
## `sf agent preview sessions`
|
|
850
861
|
|
|
@@ -877,7 +888,7 @@ EXAMPLES
|
|
|
877
888
|
$ sf agent preview sessions
|
|
878
889
|
```
|
|
879
890
|
|
|
880
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
891
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/preview/sessions.ts)_
|
|
881
892
|
|
|
882
893
|
## `sf agent preview start`
|
|
883
894
|
|
|
@@ -934,7 +945,7 @@ EXAMPLES
|
|
|
934
945
|
$ sf agent preview start --api-name My_Published_Agent
|
|
935
946
|
```
|
|
936
947
|
|
|
937
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
948
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/preview/start.ts)_
|
|
938
949
|
|
|
939
950
|
## `sf agent publish authoring-bundle`
|
|
940
951
|
|
|
@@ -983,7 +994,7 @@ EXAMPLES
|
|
|
983
994
|
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
|
|
984
995
|
```
|
|
985
996
|
|
|
986
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
997
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/publish/authoring-bundle.ts)_
|
|
987
998
|
|
|
988
999
|
## `sf agent test create`
|
|
989
1000
|
|
|
@@ -1038,7 +1049,7 @@ EXAMPLES
|
|
|
1038
1049
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
1039
1050
|
```
|
|
1040
1051
|
|
|
1041
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1052
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/test/create.ts)_
|
|
1042
1053
|
|
|
1043
1054
|
## `sf agent test list`
|
|
1044
1055
|
|
|
@@ -1073,7 +1084,7 @@ EXAMPLES
|
|
|
1073
1084
|
$ sf agent test list --target-org my-org
|
|
1074
1085
|
```
|
|
1075
1086
|
|
|
1076
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1087
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/test/list.ts)_
|
|
1077
1088
|
|
|
1078
1089
|
## `sf agent test results`
|
|
1079
1090
|
|
|
@@ -1139,7 +1150,7 @@ FLAG DESCRIPTIONS
|
|
|
1139
1150
|
expression when using custom evaluations.
|
|
1140
1151
|
```
|
|
1141
1152
|
|
|
1142
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1153
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/test/results.ts)_
|
|
1143
1154
|
|
|
1144
1155
|
## `sf agent test resume`
|
|
1145
1156
|
|
|
@@ -1212,7 +1223,7 @@ FLAG DESCRIPTIONS
|
|
|
1212
1223
|
expression when using custom evaluations.
|
|
1213
1224
|
```
|
|
1214
1225
|
|
|
1215
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1226
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/test/resume.ts)_
|
|
1216
1227
|
|
|
1217
1228
|
## `sf agent test run`
|
|
1218
1229
|
|
|
@@ -1286,7 +1297,7 @@ FLAG DESCRIPTIONS
|
|
|
1286
1297
|
expression when using custom evaluations.
|
|
1287
1298
|
```
|
|
1288
1299
|
|
|
1289
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1300
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/test/run.ts)_
|
|
1290
1301
|
|
|
1291
1302
|
## `sf agent validate authoring-bundle`
|
|
1292
1303
|
|
|
@@ -1333,7 +1344,7 @@ EXAMPLES
|
|
|
1333
1344
|
$ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
|
|
1334
1345
|
```
|
|
1335
1346
|
|
|
1336
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1347
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.1/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1337
1348
|
|
|
1338
1349
|
## `sf alias list`
|
|
1339
1350
|
|
|
@@ -2318,7 +2329,7 @@ EXAMPLES
|
|
|
2318
2329
|
$ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
|
|
2319
2330
|
```
|
|
2320
2331
|
|
|
2321
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2332
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/bulk/results.ts)_
|
|
2322
2333
|
|
|
2323
2334
|
## `sf data create file`
|
|
2324
2335
|
|
|
@@ -2367,7 +2378,7 @@ EXAMPLES
|
|
|
2367
2378
|
$ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
|
|
2368
2379
|
```
|
|
2369
2380
|
|
|
2370
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2381
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/create/file.ts)_
|
|
2371
2382
|
|
|
2372
2383
|
## `sf data create record`
|
|
2373
2384
|
|
|
@@ -2423,7 +2434,7 @@ EXAMPLES
|
|
|
2423
2434
|
TracedEntityId=01p17000000R6bLAAS"
|
|
2424
2435
|
```
|
|
2425
2436
|
|
|
2426
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2437
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/create/record.ts)_
|
|
2427
2438
|
|
|
2428
2439
|
## `sf data delete bulk`
|
|
2429
2440
|
|
|
@@ -2482,7 +2493,7 @@ FLAG DESCRIPTIONS
|
|
|
2482
2493
|
and can be enabled only by a system administrator.
|
|
2483
2494
|
```
|
|
2484
2495
|
|
|
2485
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2496
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/delete/bulk.ts)_
|
|
2486
2497
|
|
|
2487
2498
|
## `sf data delete record`
|
|
2488
2499
|
|
|
@@ -2543,7 +2554,7 @@ EXAMPLES
|
|
|
2543
2554
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2544
2555
|
```
|
|
2545
2556
|
|
|
2546
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2557
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/delete/record.ts)_
|
|
2547
2558
|
|
|
2548
2559
|
## `sf data delete resume`
|
|
2549
2560
|
|
|
@@ -2582,7 +2593,7 @@ EXAMPLES
|
|
|
2582
2593
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
2583
2594
|
```
|
|
2584
2595
|
|
|
2585
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2596
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/delete/resume.ts)_
|
|
2586
2597
|
|
|
2587
2598
|
## `sf data export bulk`
|
|
2588
2599
|
|
|
@@ -2649,7 +2660,7 @@ EXAMPLES
|
|
|
2649
2660
|
--result-format json --wait 10 --all-rows
|
|
2650
2661
|
```
|
|
2651
2662
|
|
|
2652
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2663
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/export/bulk.ts)_
|
|
2653
2664
|
|
|
2654
2665
|
## `sf data export resume`
|
|
2655
2666
|
|
|
@@ -2688,7 +2699,7 @@ EXAMPLES
|
|
|
2688
2699
|
$ sf data export resume --use-most-recent
|
|
2689
2700
|
```
|
|
2690
2701
|
|
|
2691
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2702
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/export/resume.ts)_
|
|
2692
2703
|
|
|
2693
2704
|
## `sf data export tree`
|
|
2694
2705
|
|
|
@@ -2748,7 +2759,7 @@ EXAMPLES
|
|
|
2748
2759
|
my-scratch
|
|
2749
2760
|
```
|
|
2750
2761
|
|
|
2751
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2762
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/export/tree.ts)_
|
|
2752
2763
|
|
|
2753
2764
|
## `sf data get record`
|
|
2754
2765
|
|
|
@@ -2812,7 +2823,7 @@ EXAMPLES
|
|
|
2812
2823
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2813
2824
|
```
|
|
2814
2825
|
|
|
2815
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2826
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/get/record.ts)_
|
|
2816
2827
|
|
|
2817
2828
|
## `sf data import bulk`
|
|
2818
2829
|
|
|
@@ -2864,7 +2875,7 @@ EXAMPLES
|
|
|
2864
2875
|
$ sf data import bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
|
|
2865
2876
|
```
|
|
2866
2877
|
|
|
2867
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2878
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/import/bulk.ts)_
|
|
2868
2879
|
|
|
2869
2880
|
## `sf data import resume`
|
|
2870
2881
|
|
|
@@ -2900,7 +2911,7 @@ EXAMPLES
|
|
|
2900
2911
|
$ sf data import resume --use-most-recent --target-org my-scratch
|
|
2901
2912
|
```
|
|
2902
2913
|
|
|
2903
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2914
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/import/resume.ts)_
|
|
2904
2915
|
|
|
2905
2916
|
## `sf data import tree`
|
|
2906
2917
|
|
|
@@ -2964,7 +2975,7 @@ FLAG DESCRIPTIONS
|
|
|
2964
2975
|
- files(array) - Files: An array of files paths to load
|
|
2965
2976
|
```
|
|
2966
2977
|
|
|
2967
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2978
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/import/tree.ts)_
|
|
2968
2979
|
|
|
2969
2980
|
## `sf data query`
|
|
2970
2981
|
|
|
@@ -3017,7 +3028,7 @@ EXAMPLES
|
|
|
3017
3028
|
$ sf data query --query "SELECT Name FROM ApexTrigger" --use-tooling-api
|
|
3018
3029
|
```
|
|
3019
3030
|
|
|
3020
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3031
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/query.ts)_
|
|
3021
3032
|
|
|
3022
3033
|
## `sf data resume`
|
|
3023
3034
|
|
|
@@ -3054,7 +3065,7 @@ EXAMPLES
|
|
|
3054
3065
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
3055
3066
|
```
|
|
3056
3067
|
|
|
3057
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3068
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/resume.ts)_
|
|
3058
3069
|
|
|
3059
3070
|
## `sf data search`
|
|
3060
3071
|
|
|
@@ -3104,7 +3115,7 @@ EXAMPLES
|
|
|
3104
3115
|
$ sf data search --file query.txt --target-org my-scratch --result-format csv
|
|
3105
3116
|
```
|
|
3106
3117
|
|
|
3107
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3118
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/search.ts)_
|
|
3108
3119
|
|
|
3109
3120
|
## `sf data update bulk`
|
|
3110
3121
|
|
|
@@ -3159,7 +3170,7 @@ EXAMPLES
|
|
|
3159
3170
|
$ sf data update bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
|
|
3160
3171
|
```
|
|
3161
3172
|
|
|
3162
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3173
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/update/bulk.ts)_
|
|
3163
3174
|
|
|
3164
3175
|
## `sf data update record`
|
|
3165
3176
|
|
|
@@ -3221,7 +3232,7 @@ EXAMPLES
|
|
|
3221
3232
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
3222
3233
|
```
|
|
3223
3234
|
|
|
3224
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3235
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/update/record.ts)_
|
|
3225
3236
|
|
|
3226
3237
|
## `sf data update resume`
|
|
3227
3238
|
|
|
@@ -3260,7 +3271,7 @@ EXAMPLES
|
|
|
3260
3271
|
$ sf data update resume --use-most-recent
|
|
3261
3272
|
```
|
|
3262
3273
|
|
|
3263
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3274
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/update/resume.ts)_
|
|
3264
3275
|
|
|
3265
3276
|
## `sf data upsert bulk`
|
|
3266
3277
|
|
|
@@ -3316,7 +3327,7 @@ EXAMPLES
|
|
|
3316
3327
|
my-scratch
|
|
3317
3328
|
```
|
|
3318
3329
|
|
|
3319
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3330
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/upsert/bulk.ts)_
|
|
3320
3331
|
|
|
3321
3332
|
## `sf data upsert resume`
|
|
3322
3333
|
|
|
@@ -3355,7 +3366,7 @@ EXAMPLES
|
|
|
3355
3366
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
3356
3367
|
```
|
|
3357
3368
|
|
|
3358
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3369
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/data/upsert/resume.ts)_
|
|
3359
3370
|
|
|
3360
3371
|
## `sf doctor`
|
|
3361
3372
|
|
|
@@ -3450,7 +3461,7 @@ EXAMPLES
|
|
|
3450
3461
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
3451
3462
|
```
|
|
3452
3463
|
|
|
3453
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3464
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/force/data/bulk/delete.ts)_
|
|
3454
3465
|
|
|
3455
3466
|
## `sf force data bulk status`
|
|
3456
3467
|
|
|
@@ -3487,7 +3498,7 @@ EXAMPLES
|
|
|
3487
3498
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
3488
3499
|
```
|
|
3489
3500
|
|
|
3490
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3501
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/force/data/bulk/status.ts)_
|
|
3491
3502
|
|
|
3492
3503
|
## `sf force data bulk upsert`
|
|
3493
3504
|
|
|
@@ -3545,7 +3556,7 @@ EXAMPLES
|
|
|
3545
3556
|
--target-org my-scratch
|
|
3546
3557
|
```
|
|
3547
3558
|
|
|
3548
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3559
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.78/src/commands/force/data/bulk/upsert.ts)_
|
|
3549
3560
|
|
|
3550
3561
|
## `sf help [COMMAND]`
|
|
3551
3562
|
|
|
@@ -3821,7 +3832,7 @@ EXAMPLES
|
|
|
3821
3832
|
$ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
|
|
3822
3833
|
```
|
|
3823
3834
|
|
|
3824
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.
|
|
3835
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.7.0/src/commands/org/assign/permset.ts)_
|
|
3825
3836
|
|
|
3826
3837
|
## `sf org assign permsetlicense`
|
|
3827
3838
|
|
|
@@ -3868,7 +3879,7 @@ EXAMPLES
|
|
|
3868
3879
|
user3
|
|
3869
3880
|
```
|
|
3870
3881
|
|
|
3871
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.
|
|
3882
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.7.0/src/commands/org/assign/permsetlicense.ts)_
|
|
3872
3883
|
|
|
3873
3884
|
## `sf org create sandbox`
|
|
3874
3885
|
|
|
@@ -4292,7 +4303,7 @@ FLAG DESCRIPTIONS
|
|
|
4292
4303
|
might be different than what you specify in the definition file.
|
|
4293
4304
|
```
|
|
4294
4305
|
|
|
4295
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.
|
|
4306
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.7.0/src/commands/org/create/user.ts)_
|
|
4296
4307
|
|
|
4297
4308
|
## `sf org delete sandbox`
|
|
4298
4309
|
|
|
@@ -4505,7 +4516,7 @@ EXAMPLES
|
|
|
4505
4516
|
$ sf org display user --target-org me@my.org --json
|
|
4506
4517
|
```
|
|
4507
4518
|
|
|
4508
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.
|
|
4519
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.7.0/src/commands/org/display/user.ts)_
|
|
4509
4520
|
|
|
4510
4521
|
## `sf org enable tracking`
|
|
4511
4522
|
|
|
@@ -4563,8 +4574,8 @@ FLAGS
|
|
|
4563
4574
|
created locally with the "org create user" command.
|
|
4564
4575
|
-c, --complexity=<value> [default: 5] Level of password complexity or strength; the higher the value, the
|
|
4565
4576
|
stronger the password.
|
|
4566
|
-
-l, --length=<value> [default:
|
|
4567
|
-
|
|
4577
|
+
-l, --length=<value> [default: 20] Number of characters in the generated password; valid values are between
|
|
4578
|
+
20 and 100. Default value is 20.
|
|
4568
4579
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
4569
4580
|
configuration variable is already set.
|
|
4570
4581
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
@@ -4599,10 +4610,10 @@ EXAMPLES
|
|
|
4599
4610
|
|
|
4600
4611
|
$ sf org generate password
|
|
4601
4612
|
|
|
4602
|
-
Generate a password that contains
|
|
4613
|
+
Generate a password that contains 25 characters for the original admin user of the scratch org with alias
|
|
4603
4614
|
"my-scratch":
|
|
4604
4615
|
|
|
4605
|
-
$ sf org generate password --length
|
|
4616
|
+
$ sf org generate password --length 25 --target-org my-scratch
|
|
4606
4617
|
|
|
4607
4618
|
Generate a password for your default scratch org admin user that uses lower and upper case letters and numbers only:
|
|
4608
4619
|
|
|
@@ -4614,7 +4625,7 @@ EXAMPLES
|
|
|
4614
4625
|
$ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
|
|
4615
4626
|
```
|
|
4616
4627
|
|
|
4617
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.
|
|
4628
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.7.0/src/commands/org/generate/password.ts)_
|
|
4618
4629
|
|
|
4619
4630
|
## `sf org list`
|
|
4620
4631
|
|
|
@@ -4931,7 +4942,7 @@ EXAMPLES
|
|
|
4931
4942
|
$ sf org list users --target-org me@my.org
|
|
4932
4943
|
```
|
|
4933
4944
|
|
|
4934
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.
|
|
4945
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.7.0/src/commands/org/list/users.ts)_
|
|
4935
4946
|
|
|
4936
4947
|
## `sf org login access-token`
|
|
4937
4948
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.128.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.128.1",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@inquirer/select": "^2.3.5",
|
|
14
|
-
"@oclif/core": "4.
|
|
14
|
+
"@oclif/core": "4.9.0",
|
|
15
15
|
"@oclif/plugin-autocomplete": "3.2.40",
|
|
16
16
|
"@oclif/plugin-commands": "4.1.40",
|
|
17
17
|
"@oclif/plugin-help": "6.2.37",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"@oclif/plugin-which": "3.2.44",
|
|
25
25
|
"@salesforce/core": "^8.25.0",
|
|
26
26
|
"@salesforce/kit": "^3.1.6",
|
|
27
|
-
"@salesforce/plugin-agent": "1.32.
|
|
27
|
+
"@salesforce/plugin-agent": "1.32.1",
|
|
28
28
|
"@salesforce/plugin-apex": "3.9.12",
|
|
29
29
|
"@salesforce/plugin-api": "1.3.11",
|
|
30
30
|
"@salesforce/plugin-auth": "4.3.0",
|
|
31
|
-
"@salesforce/plugin-data": "4.0.
|
|
31
|
+
"@salesforce/plugin-data": "4.0.78",
|
|
32
32
|
"@salesforce/plugin-deploy-retrieve": "3.24.15",
|
|
33
33
|
"@salesforce/plugin-info": "3.4.109",
|
|
34
34
|
"@salesforce/plugin-limits": "3.3.79",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@salesforce/plugin-telemetry": "3.8.2",
|
|
42
42
|
"@salesforce/plugin-templates": "56.10.5",
|
|
43
43
|
"@salesforce/plugin-trust": "3.7.114",
|
|
44
|
-
"@salesforce/plugin-user": "3.
|
|
44
|
+
"@salesforce/plugin-user": "3.7.0",
|
|
45
45
|
"@salesforce/sf-plugins-core": "12.2.6",
|
|
46
46
|
"ansis": "^3.12.0"
|
|
47
47
|
},
|
|
@@ -3651,9 +3651,9 @@
|
|
|
3651
3651
|
}
|
|
3652
3652
|
},
|
|
3653
3653
|
"node_modules/@oclif/core": {
|
|
3654
|
-
"version": "4.
|
|
3655
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.
|
|
3656
|
-
"integrity": "sha512-
|
|
3654
|
+
"version": "4.9.0",
|
|
3655
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.9.0.tgz",
|
|
3656
|
+
"integrity": "sha512-k/ntRgDcUprTT+aaNoF+whk3cY3f9fRD2lkF6ul7JeCUg2MaMXVXZXfbRhJCfsiX51X8/5Pqo0LGdO9SLYXNHg==",
|
|
3657
3657
|
"license": "MIT",
|
|
3658
3658
|
"dependencies": {
|
|
3659
3659
|
"ansi-escapes": "^4.3.2",
|
|
@@ -4636,14 +4636,14 @@
|
|
|
4636
4636
|
"license": "BSD-3-Clause"
|
|
4637
4637
|
},
|
|
4638
4638
|
"node_modules/@salesforce/agents": {
|
|
4639
|
-
"version": "0.24.
|
|
4640
|
-
"resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-0.24.
|
|
4641
|
-
"integrity": "sha512-
|
|
4639
|
+
"version": "0.24.2",
|
|
4640
|
+
"resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-0.24.2.tgz",
|
|
4641
|
+
"integrity": "sha512-apYmYxeS3bnqUl32BvqZX2ALu50GUfdLw4iyJjR2jGm2q/kVTSeb/UBq8FhJBCnsPocnhu+Hmmb60bU0NCLwbw==",
|
|
4642
4642
|
"license": "Apache-2.0",
|
|
4643
4643
|
"dependencies": {
|
|
4644
|
-
"@salesforce/core": "^8.26.
|
|
4644
|
+
"@salesforce/core": "^8.26.3",
|
|
4645
4645
|
"@salesforce/kit": "^3.2.4",
|
|
4646
|
-
"@salesforce/source-deploy-retrieve": "^12.31.
|
|
4646
|
+
"@salesforce/source-deploy-retrieve": "^12.31.14",
|
|
4647
4647
|
"@salesforce/types": "^1.6.0",
|
|
4648
4648
|
"fast-xml-parser": "^5.3.6",
|
|
4649
4649
|
"nock": "^13.5.6",
|
|
@@ -5026,16 +5026,16 @@
|
|
|
5026
5026
|
}
|
|
5027
5027
|
},
|
|
5028
5028
|
"node_modules/@salesforce/plugin-agent": {
|
|
5029
|
-
"version": "1.32.
|
|
5030
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.
|
|
5031
|
-
"integrity": "sha512-
|
|
5029
|
+
"version": "1.32.1",
|
|
5030
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.1.tgz",
|
|
5031
|
+
"integrity": "sha512-F7/aRxjfPe+wQ2oGZF8QJpQpNxy+ANJQOgkgeqx+Pp2LiTImKXwNBk5EJW/9xVYB8Vm6tgP6Qyr/1lC0maBSJg==",
|
|
5032
5032
|
"license": "Apache-2.0",
|
|
5033
5033
|
"dependencies": {
|
|
5034
5034
|
"@inquirer/core": "^10.3.2",
|
|
5035
5035
|
"@inquirer/prompts": "^7.10.1",
|
|
5036
5036
|
"@oclif/core": "^4",
|
|
5037
5037
|
"@oclif/multi-stage-output": "^0.8.29",
|
|
5038
|
-
"@salesforce/agents": "^0.24.
|
|
5038
|
+
"@salesforce/agents": "^0.24.2",
|
|
5039
5039
|
"@salesforce/core": "^8.26.3",
|
|
5040
5040
|
"@salesforce/kit": "^3.2.4",
|
|
5041
5041
|
"@salesforce/sf-plugins-core": "^12.2.6",
|
|
@@ -5321,9 +5321,9 @@
|
|
|
5321
5321
|
}
|
|
5322
5322
|
},
|
|
5323
5323
|
"node_modules/@salesforce/plugin-data": {
|
|
5324
|
-
"version": "4.0.
|
|
5325
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.
|
|
5326
|
-
"integrity": "sha512-
|
|
5324
|
+
"version": "4.0.78",
|
|
5325
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.78.tgz",
|
|
5326
|
+
"integrity": "sha512-5bpRkzqc2Qxc1Vt6xWEXd/DEgbKVHnFgVEuS9PI0ekEUyKpKt1rks1yI0L6jIjlxMI78APG2ABV17nwtRzy9tA==",
|
|
5327
5327
|
"license": "Apache-2.0",
|
|
5328
5328
|
"dependencies": {
|
|
5329
5329
|
"@jsforce/jsforce-node": "^3.10.14",
|
|
@@ -5805,9 +5805,9 @@
|
|
|
5805
5805
|
}
|
|
5806
5806
|
},
|
|
5807
5807
|
"node_modules/@salesforce/plugin-user": {
|
|
5808
|
-
"version": "3.
|
|
5809
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.
|
|
5810
|
-
"integrity": "sha512-
|
|
5808
|
+
"version": "3.7.0",
|
|
5809
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.7.0.tgz",
|
|
5810
|
+
"integrity": "sha512-FB6KfXY/r6sKRX1frnkb+K5jGwVUk3izlMXjfg0umxOct2tihQRhwMBoI2LMWkun/EQt9VSnSXZM4g/7Ci1iPA==",
|
|
5811
5811
|
"license": "Apache-2.0",
|
|
5812
5812
|
"dependencies": {
|
|
5813
5813
|
"@salesforce/core": "^8.26.3",
|
|
@@ -24084,9 +24084,9 @@
|
|
|
24084
24084
|
}
|
|
24085
24085
|
},
|
|
24086
24086
|
"node_modules/undici": {
|
|
24087
|
-
"version": "7.
|
|
24088
|
-
"resolved": "https://registry.npmjs.org/undici/-/undici-7.
|
|
24089
|
-
"integrity": "sha512-
|
|
24087
|
+
"version": "7.24.1",
|
|
24088
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-7.24.1.tgz",
|
|
24089
|
+
"integrity": "sha512-5xoBibbmnjlcR3jdqtY2Lnx7WbrD/tHlT01TmvqZUFVc9Q1w4+j5hbnapTqbcXITMH1ovjq/W7BkqBilHiVAaA==",
|
|
24090
24090
|
"license": "MIT",
|
|
24091
24091
|
"engines": {
|
|
24092
24092
|
"node": ">=20.18.1"
|
package/oclif.lock
CHANGED
|
@@ -1635,10 +1635,10 @@
|
|
|
1635
1635
|
proc-log "^5.0.0"
|
|
1636
1636
|
which "^5.0.0"
|
|
1637
1637
|
|
|
1638
|
-
"@oclif/core@^4", "@oclif/core@^4.0.27", "@oclif/core@^4.2.8", "@oclif/core@^4.5.2", "@oclif/core@^4.8.0", "@oclif/core@^4.8.2", "@oclif/core@^4.8.4", "@oclif/core@>= 3.0.0", "@oclif/core@4.
|
|
1639
|
-
version "4.
|
|
1640
|
-
resolved "https://registry.npmjs.org/@oclif/core/-/core-4.
|
|
1641
|
-
integrity sha512-
|
|
1638
|
+
"@oclif/core@^4", "@oclif/core@^4.0.27", "@oclif/core@^4.2.8", "@oclif/core@^4.5.2", "@oclif/core@^4.8.0", "@oclif/core@^4.8.2", "@oclif/core@^4.8.4", "@oclif/core@>= 3.0.0", "@oclif/core@4.9.0":
|
|
1639
|
+
version "4.9.0"
|
|
1640
|
+
resolved "https://registry.npmjs.org/@oclif/core/-/core-4.9.0.tgz"
|
|
1641
|
+
integrity sha512-k/ntRgDcUprTT+aaNoF+whk3cY3f9fRD2lkF6ul7JeCUg2MaMXVXZXfbRhJCfsiX51X8/5Pqo0LGdO9SLYXNHg==
|
|
1642
1642
|
dependencies:
|
|
1643
1643
|
ansi-escapes "^4.3.2"
|
|
1644
1644
|
ansis "^3.17.0"
|
|
@@ -2045,14 +2045,14 @@
|
|
|
2045
2045
|
resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz"
|
|
2046
2046
|
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
|
|
2047
2047
|
|
|
2048
|
-
"@salesforce/agents@^0.24.
|
|
2049
|
-
version "0.24.
|
|
2050
|
-
resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-0.24.
|
|
2051
|
-
integrity sha512-
|
|
2048
|
+
"@salesforce/agents@^0.24.2":
|
|
2049
|
+
version "0.24.2"
|
|
2050
|
+
resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-0.24.2.tgz"
|
|
2051
|
+
integrity sha512-apYmYxeS3bnqUl32BvqZX2ALu50GUfdLw4iyJjR2jGm2q/kVTSeb/UBq8FhJBCnsPocnhu+Hmmb60bU0NCLwbw==
|
|
2052
2052
|
dependencies:
|
|
2053
|
-
"@salesforce/core" "^8.26.
|
|
2053
|
+
"@salesforce/core" "^8.26.3"
|
|
2054
2054
|
"@salesforce/kit" "^3.2.4"
|
|
2055
|
-
"@salesforce/source-deploy-retrieve" "^12.31.
|
|
2055
|
+
"@salesforce/source-deploy-retrieve" "^12.31.14"
|
|
2056
2056
|
"@salesforce/types" "^1.6.0"
|
|
2057
2057
|
fast-xml-parser "^5.3.6"
|
|
2058
2058
|
nock "^13.5.6"
|
|
@@ -2186,16 +2186,16 @@
|
|
|
2186
2186
|
jszip "^3.10.1"
|
|
2187
2187
|
object-treeify "^2"
|
|
2188
2188
|
|
|
2189
|
-
"@salesforce/plugin-agent@1.32.
|
|
2190
|
-
version "1.32.
|
|
2191
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.
|
|
2192
|
-
integrity sha512-
|
|
2189
|
+
"@salesforce/plugin-agent@1.32.1":
|
|
2190
|
+
version "1.32.1"
|
|
2191
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.32.1.tgz"
|
|
2192
|
+
integrity sha512-F7/aRxjfPe+wQ2oGZF8QJpQpNxy+ANJQOgkgeqx+Pp2LiTImKXwNBk5EJW/9xVYB8Vm6tgP6Qyr/1lC0maBSJg==
|
|
2193
2193
|
dependencies:
|
|
2194
2194
|
"@inquirer/core" "^10.3.2"
|
|
2195
2195
|
"@inquirer/prompts" "^7.10.1"
|
|
2196
2196
|
"@oclif/core" "^4"
|
|
2197
2197
|
"@oclif/multi-stage-output" "^0.8.29"
|
|
2198
|
-
"@salesforce/agents" "^0.24.
|
|
2198
|
+
"@salesforce/agents" "^0.24.2"
|
|
2199
2199
|
"@salesforce/core" "^8.26.3"
|
|
2200
2200
|
"@salesforce/kit" "^3.2.4"
|
|
2201
2201
|
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
@@ -2265,10 +2265,10 @@
|
|
|
2265
2265
|
debug "^4.4.0"
|
|
2266
2266
|
handlebars "^4.7.8"
|
|
2267
2267
|
|
|
2268
|
-
"@salesforce/plugin-data@4.0.
|
|
2269
|
-
version "4.0.
|
|
2270
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.
|
|
2271
|
-
integrity sha512-
|
|
2268
|
+
"@salesforce/plugin-data@4.0.78":
|
|
2269
|
+
version "4.0.78"
|
|
2270
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-data/-/plugin-data-4.0.78.tgz"
|
|
2271
|
+
integrity sha512-5bpRkzqc2Qxc1Vt6xWEXd/DEgbKVHnFgVEuS9PI0ekEUyKpKt1rks1yI0L6jIjlxMI78APG2ABV17nwtRzy9tA==
|
|
2272
2272
|
dependencies:
|
|
2273
2273
|
"@jsforce/jsforce-node" "^3.10.14"
|
|
2274
2274
|
"@oclif/multi-stage-output" "^0.8.30"
|
|
@@ -2473,10 +2473,10 @@
|
|
|
2473
2473
|
semver "^7.7.4"
|
|
2474
2474
|
shelljs "0.10.0"
|
|
2475
2475
|
|
|
2476
|
-
"@salesforce/plugin-user@3.
|
|
2477
|
-
version "3.
|
|
2478
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.
|
|
2479
|
-
integrity sha512-
|
|
2476
|
+
"@salesforce/plugin-user@3.7.0":
|
|
2477
|
+
version "3.7.0"
|
|
2478
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.7.0.tgz"
|
|
2479
|
+
integrity sha512-FB6KfXY/r6sKRX1frnkb+K5jGwVUk3izlMXjfg0umxOct2tihQRhwMBoI2LMWkun/EQt9VSnSXZM4g/7Ci1iPA==
|
|
2480
2480
|
dependencies:
|
|
2481
2481
|
"@salesforce/core" "^8.26.3"
|
|
2482
2482
|
"@salesforce/kit" "^3.2.4"
|
|
@@ -2527,7 +2527,7 @@
|
|
|
2527
2527
|
cli-progress "^3.12.0"
|
|
2528
2528
|
terminal-link "^3.0.0"
|
|
2529
2529
|
|
|
2530
|
-
"@salesforce/source-deploy-retrieve@^12.31.11", "@salesforce/source-deploy-retrieve@^12.31.
|
|
2530
|
+
"@salesforce/source-deploy-retrieve@^12.31.11", "@salesforce/source-deploy-retrieve@^12.31.14", "@salesforce/source-deploy-retrieve@^12.31.19", "@salesforce/source-deploy-retrieve@^12.31.8":
|
|
2531
2531
|
version "12.31.19"
|
|
2532
2532
|
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.19.tgz"
|
|
2533
2533
|
integrity sha512-ITf0KQOWS4OfNGE8SYerwaB9PnVZS2aXgctM9EjINmRiMJBVgQ5Pjm71IIJiR6yiEsAGfnn0S7Efir2RgtmL7Q==
|
|
@@ -11383,9 +11383,9 @@ undici-types@~7.8.0:
|
|
|
11383
11383
|
integrity sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==
|
|
11384
11384
|
|
|
11385
11385
|
undici@^7.22.0:
|
|
11386
|
-
version "7.
|
|
11387
|
-
resolved "https://registry.npmjs.org/undici/-/undici-7.
|
|
11388
|
-
integrity sha512-
|
|
11386
|
+
version "7.24.1"
|
|
11387
|
+
resolved "https://registry.npmjs.org/undici/-/undici-7.24.1.tgz"
|
|
11388
|
+
integrity sha512-5xoBibbmnjlcR3jdqtY2Lnx7WbrD/tHlT01TmvqZUFVc9Q1w4+j5hbnapTqbcXITMH1ovjq/W7BkqBilHiVAaA==
|
|
11389
11389
|
|
|
11390
11390
|
unicorn-magic@^0.1.0:
|
|
11391
11391
|
version "0.1.0"
|
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.128.1",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
},
|
|
145
145
|
"dependencies": {
|
|
146
146
|
"@inquirer/select": "^2.3.5",
|
|
147
|
-
"@oclif/core": "4.
|
|
147
|
+
"@oclif/core": "4.9.0",
|
|
148
148
|
"@oclif/plugin-autocomplete": "3.2.40",
|
|
149
149
|
"@oclif/plugin-commands": "4.1.40",
|
|
150
150
|
"@oclif/plugin-help": "6.2.37",
|
|
@@ -157,11 +157,11 @@
|
|
|
157
157
|
"@oclif/plugin-which": "3.2.44",
|
|
158
158
|
"@salesforce/core": "^8.25.0",
|
|
159
159
|
"@salesforce/kit": "^3.1.6",
|
|
160
|
-
"@salesforce/plugin-agent": "1.32.
|
|
160
|
+
"@salesforce/plugin-agent": "1.32.1",
|
|
161
161
|
"@salesforce/plugin-apex": "3.9.12",
|
|
162
162
|
"@salesforce/plugin-api": "1.3.11",
|
|
163
163
|
"@salesforce/plugin-auth": "4.3.0",
|
|
164
|
-
"@salesforce/plugin-data": "4.0.
|
|
164
|
+
"@salesforce/plugin-data": "4.0.78",
|
|
165
165
|
"@salesforce/plugin-deploy-retrieve": "3.24.15",
|
|
166
166
|
"@salesforce/plugin-info": "3.4.109",
|
|
167
167
|
"@salesforce/plugin-limits": "3.3.79",
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
"@salesforce/plugin-telemetry": "3.8.2",
|
|
175
175
|
"@salesforce/plugin-templates": "56.10.5",
|
|
176
176
|
"@salesforce/plugin-trust": "3.7.114",
|
|
177
|
-
"@salesforce/plugin-user": "3.
|
|
177
|
+
"@salesforce/plugin-user": "3.7.0",
|
|
178
178
|
"@salesforce/sf-plugins-core": "12.2.6",
|
|
179
179
|
"ansis": "^3.12.0"
|
|
180
180
|
},
|