@salesforce/plugin-packaging 1.6.0 → 1.6.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/CHANGELOG.md +16 -1
- package/README.md +37 -50
- package/lib/commands/force/package/beta/update.d.ts +2 -1
- package/lib/commands/force/package/beta/update.js +12 -2
- package/lib/commands/force/package/beta/update.js.map +1 -1
- package/lib/commands/force/package/beta/version/report.js +2 -5
- package/lib/commands/force/package/beta/version/report.js.map +1 -1
- package/lib/commands/force/package/beta/version/update.d.ts +2 -1
- package/lib/commands/force/package/beta/version/update.js +12 -2
- package/lib/commands/force/package/beta/version/update.js.map +1 -1
- package/messages/package2_create.md +2 -2
- package/messages/package2_update.md +2 -2
- package/messages/package2_version_create_get.md +2 -2
- package/messages/package2_version_get.md +2 -0
- package/messages/package2_version_update.md +2 -2
- package/messages/package_create.md +2 -2
- package/messages/package_uninstall.md +4 -4
- package/messages/package_update.md +4 -4
- package/messages/package_version_create_report.md +2 -2
- package/messages/package_version_report.md +2 -2
- package/messages/package_version_update.md +3 -3
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
|
@@ -4,13 +4,13 @@ retrieve details about a package version creation request
|
|
|
4
4
|
|
|
5
5
|
Specify the request ID for which you want to view details. If applicable, the command displays errors related to the request.
|
|
6
6
|
|
|
7
|
+
To show all requests in the org, run "sfdx force:package:version:create:list".
|
|
8
|
+
|
|
7
9
|
# examples
|
|
8
10
|
|
|
9
11
|
$ sfdx force:package:version:create:report -i 08c...
|
|
10
12
|
$ sfdx force:package:version:create:report -i 08c... -v devhub@example.com
|
|
11
13
|
|
|
12
|
-
To show all requests in the org, run "sfdx force:package:version:create:list".
|
|
13
|
-
|
|
14
14
|
# requestId
|
|
15
15
|
|
|
16
16
|
package version creation request ID (starts with 08c)
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
retrieve details about a package version in the Dev Hub org
|
|
4
4
|
|
|
5
|
+
To update package version values, run "sfdx force:package:version:update".
|
|
6
|
+
|
|
5
7
|
# examples
|
|
6
8
|
|
|
7
9
|
$ sfdx force:package:version:report -p 04t...
|
|
8
10
|
$ sfdx force:package:version:report -p "Your Package Alias"
|
|
9
11
|
|
|
10
|
-
To update package version values, run "sfdx force:package:version:update".
|
|
11
|
-
|
|
12
12
|
# package
|
|
13
13
|
|
|
14
14
|
ID (starts with 04t) or alias of the package to retrieve details for
|
|
@@ -4,14 +4,14 @@ update a package version
|
|
|
4
4
|
|
|
5
5
|
Specify a new value for each option you want to update.
|
|
6
6
|
|
|
7
|
+
To display details about a package version, run "sfdx force:package:version:report".
|
|
8
|
+
|
|
7
9
|
# examples
|
|
8
10
|
|
|
9
11
|
$ sfdx force:package:version:update -p "Your Package Alias" -k password123
|
|
10
12
|
$ sfdx force:package:version:update -p 04t... -b main -t 'Release 1.0.7'
|
|
11
13
|
$ sfdx force:package:version:update -p 04t... -e "New Package Version Description"
|
|
12
14
|
|
|
13
|
-
To display details about a package version, run "sfdx force:package:version:report".
|
|
14
|
-
|
|
15
15
|
# package
|
|
16
16
|
|
|
17
17
|
ID (starts with 04t) or alias of the package to update a version of
|
|
@@ -60,7 +60,7 @@ new installation key for key-protected package (default: null)
|
|
|
60
60
|
|
|
61
61
|
The new installation key for the key-protected package. The default is null.
|
|
62
62
|
|
|
63
|
-
#
|
|
63
|
+
# success
|
|
64
64
|
|
|
65
65
|
Successfully updated the package version.
|
|
66
66
|
|