@salesforce/plugin-packaging 2.24.1 → 2.24.2
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 +29 -29
- package/messages/bundle_create.md +6 -7
- package/messages/bundle_install.md +10 -14
- package/messages/bundle_install_list.md +7 -7
- package/messages/bundle_install_report.md +5 -9
- package/messages/bundle_list.md +9 -9
- package/messages/bundle_version_create.md +16 -12
- package/messages/bundle_version_create_list.md +13 -13
- package/messages/bundle_version_create_report.md +5 -9
- package/messages/bundle_version_list.md +6 -6
- package/messages/bundle_version_report.md +5 -5
- package/messages/package_bundle_delete.md +2 -4
- package/oclif.manifest.json +533 -536
- package/package.json +3 -3
|
@@ -4,21 +4,17 @@ Report on the status of a package bundle version creation request.
|
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
The command returns information such as the request's current status and details about the package bundle version being created.
|
|
8
8
|
|
|
9
|
-
# examples
|
|
9
|
+
# examples
|
|
10
10
|
|
|
11
11
|
- Report on a package bundle version creation request:
|
|
12
12
|
|
|
13
13
|
<%= config.bin %> <%= command.id %> --package-create-request-id 0Ho0x0000000000000
|
|
14
14
|
|
|
15
|
-
- Report on a package bundle version creation request using an alias:
|
|
16
|
-
|
|
17
|
-
<%= config.bin %> force:package:bundle:version:create:report -i 0Ho0x0000000000000
|
|
18
|
-
|
|
19
15
|
# flags.bundle-version-create-request-id.summary
|
|
20
16
|
|
|
21
|
-
|
|
17
|
+
ID of the package bundle version creation request to report on.
|
|
22
18
|
|
|
23
19
|
# id
|
|
24
20
|
|
|
@@ -36,11 +32,11 @@ Package Bundle ID
|
|
|
36
32
|
|
|
37
33
|
Package Bundle Version ID
|
|
38
34
|
|
|
39
|
-
# version-name
|
|
35
|
+
# version-name
|
|
40
36
|
|
|
41
37
|
Version Name
|
|
42
38
|
|
|
43
|
-
# created-date
|
|
39
|
+
# created-date
|
|
44
40
|
|
|
45
41
|
Created Date
|
|
46
42
|
|
|
@@ -4,9 +4,9 @@ List all package bundle versions in the Dev Hub org.
|
|
|
4
4
|
|
|
5
5
|
# examples
|
|
6
6
|
|
|
7
|
-
List package bundle versions in the Dev Hub org with the username devhub@example.com:
|
|
7
|
+
- List package bundle versions in the Dev Hub org with the username devhub@example.com:
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
<%= config.bin %> <%= command.id %> --target-dev-hub devhub@example.com
|
|
10
10
|
|
|
11
11
|
# namespace
|
|
12
12
|
|
|
@@ -15,14 +15,14 @@ Namespace Prefix
|
|
|
15
15
|
# name
|
|
16
16
|
|
|
17
17
|
Name
|
|
18
|
-
|
|
18
|
+
|
|
19
19
|
# id
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
ID
|
|
22
22
|
|
|
23
23
|
# bundle-id
|
|
24
24
|
|
|
25
|
-
Package Bundle
|
|
25
|
+
Package Bundle ID
|
|
26
26
|
|
|
27
27
|
# alias
|
|
28
28
|
|
|
@@ -34,7 +34,7 @@ Description
|
|
|
34
34
|
|
|
35
35
|
# flags.verbose.summary
|
|
36
36
|
|
|
37
|
-
Display extended bundle
|
|
37
|
+
Display extended details about the package bundle versions.
|
|
38
38
|
|
|
39
39
|
# error-notification-username
|
|
40
40
|
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# summary
|
|
2
2
|
|
|
3
|
-
Retrieve details about a package bundle version
|
|
3
|
+
Retrieve details about a specific package bundle version.
|
|
4
4
|
|
|
5
5
|
# examples
|
|
6
6
|
|
|
7
|
-
Retrieve details about the package bundle version; uses the Dev Hub org with the username devhub@example.com:
|
|
7
|
+
- Retrieve details about the package bundle version; uses the Dev Hub org with the username devhub@example.com:
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
<%= config.bin %> <%= command.id %> --bundle-version "Your bundle version name or ID" --target-dev-hub devhub@example.com
|
|
10
10
|
|
|
11
11
|
# flags.bundle-version.summary
|
|
12
12
|
|
|
13
|
-
ID of the package bundle version to retrieve details
|
|
13
|
+
Name or ID of the package bundle version to retrieve details about.
|
|
14
14
|
|
|
15
15
|
# flags.verbose.summary
|
|
16
16
|
|
|
17
|
-
Display extended package bundle version
|
|
17
|
+
Display extended details about the package bundle version.
|
|
@@ -4,9 +4,7 @@ Delete a package bundle.
|
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
7
|
-
Specify the ID or alias of the package bundle you want to delete.
|
|
8
|
-
|
|
9
|
-
Delete package bundles. Before you delete a package bundle, first delete all associated package bundle versions.
|
|
7
|
+
Specify the ID or alias of the package bundle you want to delete. Before you delete a package bundle, first delete all associated package bundle versions.
|
|
10
8
|
|
|
11
9
|
# examples
|
|
12
10
|
|
|
@@ -34,7 +32,7 @@ Do you want to continue? (y/n)
|
|
|
34
32
|
|
|
35
33
|
# prompt-delete-deny
|
|
36
34
|
|
|
37
|
-
The request to delete this package bundle was canceled
|
|
35
|
+
The request to delete this package bundle was canceled.
|
|
38
36
|
|
|
39
37
|
# humanSuccess
|
|
40
38
|
|