@salesforce/cli 2.108.4 → 2.108.6
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 +41 -41
- package/npm-shrinkwrap.json +695 -120
- package/oclif.lock +479 -143
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
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.108.
|
|
28
|
+
@salesforce/cli/2.108.6 linux-x64 node-v22.19.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -243,7 +243,7 @@ EXAMPLES
|
|
|
243
243
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
244
244
|
```
|
|
245
245
|
|
|
246
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
246
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/activate.ts)_
|
|
247
247
|
|
|
248
248
|
## `sf agent create`
|
|
249
249
|
|
|
@@ -305,7 +305,7 @@ EXAMPLES
|
|
|
305
305
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
306
306
|
```
|
|
307
307
|
|
|
308
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
308
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/create.ts)_
|
|
309
309
|
|
|
310
310
|
## `sf agent deactivate`
|
|
311
311
|
|
|
@@ -345,7 +345,7 @@ EXAMPLES
|
|
|
345
345
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
346
346
|
```
|
|
347
347
|
|
|
348
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
348
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/deactivate.ts)_
|
|
349
349
|
|
|
350
350
|
## `sf agent generate agent-spec`
|
|
351
351
|
|
|
@@ -450,7 +450,7 @@ EXAMPLES
|
|
|
450
450
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
451
451
|
```
|
|
452
452
|
|
|
453
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
453
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/generate/agent-spec.ts)_
|
|
454
454
|
|
|
455
455
|
## `sf agent generate template`
|
|
456
456
|
|
|
@@ -498,7 +498,7 @@ EXAMPLES
|
|
|
498
498
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
499
499
|
```
|
|
500
500
|
|
|
501
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
501
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/generate/template.ts)_
|
|
502
502
|
|
|
503
503
|
## `sf agent generate test-spec`
|
|
504
504
|
|
|
@@ -559,7 +559,7 @@ EXAMPLES
|
|
|
559
559
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
560
560
|
```
|
|
561
561
|
|
|
562
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
562
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/generate/test-spec.ts)_
|
|
563
563
|
|
|
564
564
|
## `sf agent preview`
|
|
565
565
|
|
|
@@ -623,7 +623,7 @@ EXAMPLES
|
|
|
623
623
|
transcripts/my-preview
|
|
624
624
|
```
|
|
625
625
|
|
|
626
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
626
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/preview.ts)_
|
|
627
627
|
|
|
628
628
|
## `sf agent test create`
|
|
629
629
|
|
|
@@ -678,7 +678,7 @@ EXAMPLES
|
|
|
678
678
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
679
679
|
```
|
|
680
680
|
|
|
681
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
681
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/create.ts)_
|
|
682
682
|
|
|
683
683
|
## `sf agent test list`
|
|
684
684
|
|
|
@@ -713,7 +713,7 @@ EXAMPLES
|
|
|
713
713
|
$ sf agent test list --target-org my-org
|
|
714
714
|
```
|
|
715
715
|
|
|
716
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
716
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/list.ts)_
|
|
717
717
|
|
|
718
718
|
## `sf agent test results`
|
|
719
719
|
|
|
@@ -779,7 +779,7 @@ FLAG DESCRIPTIONS
|
|
|
779
779
|
expression when using custom evaluations.
|
|
780
780
|
```
|
|
781
781
|
|
|
782
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
782
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/results.ts)_
|
|
783
783
|
|
|
784
784
|
## `sf agent test resume`
|
|
785
785
|
|
|
@@ -852,7 +852,7 @@ FLAG DESCRIPTIONS
|
|
|
852
852
|
expression when using custom evaluations.
|
|
853
853
|
```
|
|
854
854
|
|
|
855
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
855
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/resume.ts)_
|
|
856
856
|
|
|
857
857
|
## `sf agent test run`
|
|
858
858
|
|
|
@@ -926,7 +926,7 @@ FLAG DESCRIPTIONS
|
|
|
926
926
|
expression when using custom evaluations.
|
|
927
927
|
```
|
|
928
928
|
|
|
929
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
929
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/run.ts)_
|
|
930
930
|
|
|
931
931
|
## `sf alias list`
|
|
932
932
|
|
|
@@ -5811,7 +5811,7 @@ FLAG DESCRIPTIONS
|
|
|
5811
5811
|
--installation-key-bypass flag is required.
|
|
5812
5812
|
```
|
|
5813
5813
|
|
|
5814
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
5814
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/convert.ts)_
|
|
5815
5815
|
|
|
5816
5816
|
## `sf package create`
|
|
5817
5817
|
|
|
@@ -5890,7 +5890,7 @@ FLAG DESCRIPTIONS
|
|
|
5890
5890
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
5891
5891
|
```
|
|
5892
5892
|
|
|
5893
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
5893
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/create.ts)_
|
|
5894
5894
|
|
|
5895
5895
|
## `sf package delete`
|
|
5896
5896
|
|
|
@@ -5932,7 +5932,7 @@ EXAMPLES
|
|
|
5932
5932
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
5933
5933
|
```
|
|
5934
5934
|
|
|
5935
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
5935
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/delete.ts)_
|
|
5936
5936
|
|
|
5937
5937
|
## `sf package install`
|
|
5938
5938
|
|
|
@@ -6031,7 +6031,7 @@ FLAG DESCRIPTIONS
|
|
|
6031
6031
|
- Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
|
|
6032
6032
|
```
|
|
6033
6033
|
|
|
6034
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6034
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/install.ts)_
|
|
6035
6035
|
|
|
6036
6036
|
## `sf package install report`
|
|
6037
6037
|
|
|
@@ -6064,7 +6064,7 @@ EXAMPLES
|
|
|
6064
6064
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
6065
6065
|
```
|
|
6066
6066
|
|
|
6067
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6067
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/install/report.ts)_
|
|
6068
6068
|
|
|
6069
6069
|
## `sf package installed list`
|
|
6070
6070
|
|
|
@@ -6096,7 +6096,7 @@ EXAMPLES
|
|
|
6096
6096
|
$ sf package installed list --target-org me@example.com
|
|
6097
6097
|
```
|
|
6098
6098
|
|
|
6099
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6099
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/installed/list.ts)_
|
|
6100
6100
|
|
|
6101
6101
|
## `sf package list`
|
|
6102
6102
|
|
|
@@ -6134,7 +6134,7 @@ EXAMPLES
|
|
|
6134
6134
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
6135
6135
|
```
|
|
6136
6136
|
|
|
6137
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6137
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/list.ts)_
|
|
6138
6138
|
|
|
6139
6139
|
## `sf package push-upgrade abort`
|
|
6140
6140
|
|
|
@@ -6173,7 +6173,7 @@ EXAMPLES
|
|
|
6173
6173
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6174
6174
|
```
|
|
6175
6175
|
|
|
6176
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6176
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/push-upgrade/abort.ts)_
|
|
6177
6177
|
|
|
6178
6178
|
## `sf package push-upgrade list`
|
|
6179
6179
|
|
|
@@ -6232,7 +6232,7 @@ EXAMPLES
|
|
|
6232
6232
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6233
6233
|
```
|
|
6234
6234
|
|
|
6235
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6235
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/push-upgrade/list.ts)_
|
|
6236
6236
|
|
|
6237
6237
|
## `sf package push-upgrade report`
|
|
6238
6238
|
|
|
@@ -6274,7 +6274,7 @@ EXAMPLES
|
|
|
6274
6274
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6275
6275
|
```
|
|
6276
6276
|
|
|
6277
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6277
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/push-upgrade/report.ts)_
|
|
6278
6278
|
|
|
6279
6279
|
## `sf package push-upgrade schedule`
|
|
6280
6280
|
|
|
@@ -6361,7 +6361,7 @@ FLAG DESCRIPTIONS
|
|
|
6361
6361
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6362
6362
|
```
|
|
6363
6363
|
|
|
6364
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6364
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/push-upgrade/schedule.ts)_
|
|
6365
6365
|
|
|
6366
6366
|
## `sf package uninstall`
|
|
6367
6367
|
|
|
@@ -6409,7 +6409,7 @@ EXAMPLES
|
|
|
6409
6409
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6410
6410
|
```
|
|
6411
6411
|
|
|
6412
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6412
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/uninstall.ts)_
|
|
6413
6413
|
|
|
6414
6414
|
## `sf package uninstall report`
|
|
6415
6415
|
|
|
@@ -6442,7 +6442,7 @@ EXAMPLES
|
|
|
6442
6442
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6443
6443
|
```
|
|
6444
6444
|
|
|
6445
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6445
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/uninstall/report.ts)_
|
|
6446
6446
|
|
|
6447
6447
|
## `sf package update`
|
|
6448
6448
|
|
|
@@ -6497,7 +6497,7 @@ FLAG DESCRIPTIONS
|
|
|
6497
6497
|
associated with your package.
|
|
6498
6498
|
```
|
|
6499
6499
|
|
|
6500
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6500
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/update.ts)_
|
|
6501
6501
|
|
|
6502
6502
|
## `sf package version create`
|
|
6503
6503
|
|
|
@@ -6672,7 +6672,7 @@ FLAG DESCRIPTIONS
|
|
|
6672
6672
|
periods of no output from commands.
|
|
6673
6673
|
```
|
|
6674
6674
|
|
|
6675
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6675
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/version/create.ts)_
|
|
6676
6676
|
|
|
6677
6677
|
## `sf package version create list`
|
|
6678
6678
|
|
|
@@ -6733,7 +6733,7 @@ EXAMPLES
|
|
|
6733
6733
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6734
6734
|
```
|
|
6735
6735
|
|
|
6736
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6736
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/version/create/list.ts)_
|
|
6737
6737
|
|
|
6738
6738
|
## `sf package version create report`
|
|
6739
6739
|
|
|
@@ -6776,7 +6776,7 @@ EXAMPLES
|
|
|
6776
6776
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6777
6777
|
```
|
|
6778
6778
|
|
|
6779
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6779
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/version/create/report.ts)_
|
|
6780
6780
|
|
|
6781
6781
|
## `sf package version delete`
|
|
6782
6782
|
|
|
@@ -6817,7 +6817,7 @@ EXAMPLES
|
|
|
6817
6817
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
6818
6818
|
```
|
|
6819
6819
|
|
|
6820
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6820
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/version/delete.ts)_
|
|
6821
6821
|
|
|
6822
6822
|
## `sf package version displayancestry`
|
|
6823
6823
|
|
|
@@ -6877,7 +6877,7 @@ FLAG DESCRIPTIONS
|
|
|
6877
6877
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
6878
6878
|
```
|
|
6879
6879
|
|
|
6880
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6880
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/version/displayancestry.ts)_
|
|
6881
6881
|
|
|
6882
6882
|
## `sf package version displaydependencies`
|
|
6883
6883
|
|
|
@@ -6939,7 +6939,7 @@ FLAG DESCRIPTIONS
|
|
|
6939
6939
|
package, which must be installed last.
|
|
6940
6940
|
```
|
|
6941
6941
|
|
|
6942
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6942
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/version/displaydependencies.ts)_
|
|
6943
6943
|
|
|
6944
6944
|
## `sf package version list`
|
|
6945
6945
|
|
|
@@ -7015,7 +7015,7 @@ EXAMPLES
|
|
|
7015
7015
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
7016
7016
|
```
|
|
7017
7017
|
|
|
7018
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7018
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/version/list.ts)_
|
|
7019
7019
|
|
|
7020
7020
|
## `sf package version promote`
|
|
7021
7021
|
|
|
@@ -7059,7 +7059,7 @@ EXAMPLES
|
|
|
7059
7059
|
$ sf package version promote --package "Awesome Package Alias"
|
|
7060
7060
|
```
|
|
7061
7061
|
|
|
7062
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7062
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/version/promote.ts)_
|
|
7063
7063
|
|
|
7064
7064
|
## `sf package version report`
|
|
7065
7065
|
|
|
@@ -7099,7 +7099,7 @@ EXAMPLES
|
|
|
7099
7099
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
7100
7100
|
```
|
|
7101
7101
|
|
|
7102
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7102
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/version/report.ts)_
|
|
7103
7103
|
|
|
7104
7104
|
## `sf package version update`
|
|
7105
7105
|
|
|
@@ -7152,7 +7152,7 @@ EXAMPLES
|
|
|
7152
7152
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
7153
7153
|
```
|
|
7154
7154
|
|
|
7155
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7155
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package/version/update.ts)_
|
|
7156
7156
|
|
|
7157
7157
|
## `sf package1 version create`
|
|
7158
7158
|
|
|
@@ -7219,7 +7219,7 @@ FLAG DESCRIPTIONS
|
|
|
7219
7219
|
subscribers.
|
|
7220
7220
|
```
|
|
7221
7221
|
|
|
7222
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7222
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package1/version/create.ts)_
|
|
7223
7223
|
|
|
7224
7224
|
## `sf package1 version create get`
|
|
7225
7225
|
|
|
@@ -7252,7 +7252,7 @@ EXAMPLES
|
|
|
7252
7252
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
7253
7253
|
```
|
|
7254
7254
|
|
|
7255
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7255
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package1/version/create/get.ts)_
|
|
7256
7256
|
|
|
7257
7257
|
## `sf package1 version display`
|
|
7258
7258
|
|
|
@@ -7286,7 +7286,7 @@ EXAMPLES
|
|
|
7286
7286
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
7287
7287
|
```
|
|
7288
7288
|
|
|
7289
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7289
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package1/version/display.ts)_
|
|
7290
7290
|
|
|
7291
7291
|
## `sf package1 version list`
|
|
7292
7292
|
|
|
@@ -7324,7 +7324,7 @@ FLAG DESCRIPTIONS
|
|
|
7324
7324
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7325
7325
|
```
|
|
7326
7326
|
|
|
7327
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7327
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.5/src/commands/package1/version/list.ts)_
|
|
7328
7328
|
|
|
7329
7329
|
## `sf plugins`
|
|
7330
7330
|
|