@salesforce/plugin-packaging 1.12.3 → 1.12.5
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 +0 -2
- package/lib/commands/package/convert.d.ts +23 -0
- package/lib/commands/package/convert.js +128 -0
- package/lib/commands/package/convert.js.map +1 -0
- package/lib/commands/package/create.d.ts +26 -0
- package/lib/commands/package/create.js +92 -0
- package/lib/commands/package/create.js.map +1 -0
- package/lib/commands/package/delete.d.ts +20 -0
- package/lib/commands/package/delete.js +65 -0
- package/lib/commands/package/delete.js.map +1 -0
- package/lib/commands/package/install/report.d.ts +19 -0
- package/lib/commands/package/install/report.js +65 -0
- package/lib/commands/package/install/report.js.map +1 -0
- package/lib/commands/package/install.d.ts +31 -0
- package/lib/commands/{force/package → package}/install.js +72 -76
- package/lib/commands/package/install.js.map +1 -0
- package/lib/commands/package/installed/list.d.ts +24 -0
- package/lib/commands/{force/package → package}/installed/list.js +19 -14
- package/lib/commands/package/installed/list.js.map +1 -0
- package/lib/commands/package/list.d.ts +26 -0
- package/lib/commands/{force/package → package}/list.js +23 -21
- package/lib/commands/package/list.js.map +1 -0
- package/lib/commands/package/uninstall/report.d.ts +15 -0
- package/lib/commands/package/uninstall/report.js +46 -0
- package/lib/commands/package/uninstall/report.js.map +1 -0
- package/lib/commands/package/uninstall.d.ts +19 -0
- package/lib/commands/package/uninstall.js +60 -0
- package/lib/commands/package/uninstall.js.map +1 -0
- package/lib/commands/package/update.d.ts +20 -0
- package/lib/commands/package/update.js +67 -0
- package/lib/commands/package/update.js.map +1 -0
- package/lib/commands/package/version/create/list.d.ts +18 -0
- package/lib/commands/{force/package → package}/version/create/list.js +28 -20
- package/lib/commands/package/version/create/list.js.map +1 -0
- package/lib/commands/package/version/create/report.d.ts +19 -0
- package/lib/commands/{force/package → package}/version/create/report.js +28 -24
- package/lib/commands/package/version/create/report.js.map +1 -0
- package/lib/commands/package/version/create.d.ts +40 -0
- package/lib/commands/package/version/create.js +220 -0
- package/lib/commands/package/version/create.js.map +1 -0
- package/lib/commands/package/version/delete.d.ts +21 -0
- package/lib/commands/package/version/delete.js +71 -0
- package/lib/commands/package/version/delete.js.map +1 -0
- package/lib/commands/package/version/displayancestry.d.ts +19 -0
- package/lib/commands/package/version/displayancestry.js +74 -0
- package/lib/commands/package/version/displayancestry.js.map +1 -0
- package/lib/commands/package/version/list.d.ts +40 -0
- package/lib/commands/{force/package → package}/version/list.js +56 -57
- package/lib/commands/package/version/list.js.map +1 -0
- package/lib/commands/package/version/promote.d.ts +18 -0
- package/lib/commands/{force/package → package}/version/promote.js +28 -25
- package/lib/commands/package/version/promote.js.map +1 -0
- package/lib/commands/package/version/report.d.ts +29 -0
- package/lib/commands/{force/package → package}/version/report.js +34 -32
- package/lib/commands/package/version/report.js.map +1 -0
- package/lib/commands/package/version/update.d.ts +22 -0
- package/lib/commands/package/version/update.js +77 -0
- package/lib/commands/package/version/update.js.map +1 -0
- package/lib/commands/package1/version/create/get.d.ts +15 -0
- package/lib/commands/{force/package1 → package1}/version/create/get.js +22 -14
- package/lib/commands/package1/version/create/get.js.map +1 -0
- package/lib/commands/package1/version/create.d.ts +28 -0
- package/lib/commands/package1/version/create.js +130 -0
- package/lib/commands/package1/version/create.js.map +1 -0
- package/lib/commands/package1/version/display.d.ts +16 -0
- package/lib/commands/{force/package1 → package1}/version/display.js +20 -18
- package/lib/commands/package1/version/display.js.map +1 -0
- package/lib/commands/package1/version/list.d.ts +16 -0
- package/lib/commands/{force/package1 → package1}/version/list.js +21 -20
- package/lib/commands/package1/version/list.js.map +1 -0
- package/messages/package1_version_create.md +33 -44
- package/messages/package1_version_create_get.md +11 -10
- package/messages/package1_version_display.md +10 -8
- package/messages/package1_version_list.md +14 -8
- package/messages/package_convert.md +31 -31
- package/messages/package_create.md +31 -40
- package/messages/package_delete.md +15 -20
- package/messages/package_displayancestry.md +25 -19
- package/messages/package_install.md +43 -52
- package/messages/package_install_report.md +9 -8
- package/messages/package_installed_list.md +9 -4
- package/messages/package_list.md +16 -13
- package/messages/package_uninstall.md +17 -15
- package/messages/package_uninstall_report.md +11 -10
- package/messages/package_update.md +13 -18
- package/messages/package_version_create.md +82 -130
- package/messages/package_version_create_list.md +26 -14
- package/messages/package_version_create_report.md +13 -10
- package/messages/package_version_delete.md +17 -17
- package/messages/package_version_list.md +29 -32
- package/messages/package_version_promote.md +22 -16
- package/messages/package_version_report.md +13 -14
- package/messages/package_version_update.md +23 -37
- package/messages/packaging.md +4 -12
- package/oclif.manifest.json +2455 -1
- package/package.json +60 -75
- package/schemas/package-convert.json +73 -0
- package/schemas/package-create.json +16 -0
- package/schemas/package-delete.json +72 -0
- package/schemas/package-install-report.json +169 -0
- package/schemas/package-install.json +169 -0
- package/schemas/package-installed-list.json +40 -0
- package/schemas/package-list.json +55 -0
- package/schemas/package-uninstall-report.json +51 -0
- package/schemas/package-uninstall.json +54 -0
- package/schemas/package-update.json +72 -0
- package/schemas/package-version-create-list.json +79 -0
- package/schemas/package-version-create-report.json +79 -0
- package/schemas/package-version-create.json +60 -0
- package/schemas/package-version-delete.json +72 -0
- package/schemas/package-version-displayancestry.json +61 -0
- package/schemas/package-version-list.json +146 -0
- package/schemas/package-version-promote.json +72 -0
- package/schemas/package-version-report.json +232 -0
- package/schemas/package-version-update.json +72 -0
- package/schemas/package1-version-create-get.json +91 -0
- package/schemas/package1-version-create.json +94 -0
- package/schemas/package1-version-display.json +37 -0
- package/schemas/package1-version-list.json +37 -0
- package/lib/commands/force/package/convert.d.ts +0 -11
- package/lib/commands/force/package/convert.js +0 -106
- package/lib/commands/force/package/convert.js.map +0 -1
- package/lib/commands/force/package/create.d.ts +0 -13
- package/lib/commands/force/package/create.js +0 -82
- package/lib/commands/force/package/create.js.map +0 -1
- package/lib/commands/force/package/delete.d.ts +0 -12
- package/lib/commands/force/package/delete.js +0 -63
- package/lib/commands/force/package/delete.js.map +0 -1
- package/lib/commands/force/package/install/report.d.ts +0 -12
- package/lib/commands/force/package/install/report.js +0 -39
- package/lib/commands/force/package/install/report.js.map +0 -1
- package/lib/commands/force/package/install.d.ts +0 -20
- package/lib/commands/force/package/install.js.map +0 -1
- package/lib/commands/force/package/installed/list.d.ts +0 -18
- package/lib/commands/force/package/installed/list.js.map +0 -1
- package/lib/commands/force/package/list.d.ts +0 -19
- package/lib/commands/force/package/list.js.map +0 -1
- package/lib/commands/force/package/uninstall/report.d.ts +0 -10
- package/lib/commands/force/package/uninstall/report.js +0 -44
- package/lib/commands/force/package/uninstall/report.js.map +0 -1
- package/lib/commands/force/package/uninstall.d.ts +0 -12
- package/lib/commands/force/package/uninstall.js +0 -55
- package/lib/commands/force/package/uninstall.js.map +0 -1
- package/lib/commands/force/package/update.d.ts +0 -11
- package/lib/commands/force/package/update.js +0 -63
- package/lib/commands/force/package/update.js.map +0 -1
- package/lib/commands/force/package/version/create/list.d.ts +0 -10
- package/lib/commands/force/package/version/create/list.js.map +0 -1
- package/lib/commands/force/package/version/create/report.d.ts +0 -11
- package/lib/commands/force/package/version/create/report.js.map +0 -1
- package/lib/commands/force/package/version/create.d.ts +0 -12
- package/lib/commands/force/package/version/create.js +0 -203
- package/lib/commands/force/package/version/create.js.map +0 -1
- package/lib/commands/force/package/version/delete.d.ts +0 -13
- package/lib/commands/force/package/version/delete.js +0 -66
- package/lib/commands/force/package/version/delete.js.map +0 -1
- package/lib/commands/force/package/version/displayancestry.d.ts +0 -13
- package/lib/commands/force/package/version/displayancestry.js +0 -70
- package/lib/commands/force/package/version/displayancestry.js.map +0 -1
- package/lib/commands/force/package/version/list.d.ts +0 -27
- package/lib/commands/force/package/version/list.js.map +0 -1
- package/lib/commands/force/package/version/promote.d.ts +0 -11
- package/lib/commands/force/package/version/promote.js.map +0 -1
- package/lib/commands/force/package/version/report.d.ts +0 -22
- package/lib/commands/force/package/version/report.js.map +0 -1
- package/lib/commands/force/package/version/update.d.ts +0 -11
- package/lib/commands/force/package/version/update.js +0 -73
- package/lib/commands/force/package/version/update.js.map +0 -1
- package/lib/commands/force/package1/version/create/get.d.ts +0 -10
- package/lib/commands/force/package1/version/create/get.js.map +0 -1
- package/lib/commands/force/package1/version/create.d.ts +0 -13
- package/lib/commands/force/package1/version/create.js +0 -115
- package/lib/commands/force/package1/version/create.js.map +0 -1
- package/lib/commands/force/package1/version/display.d.ts +0 -9
- package/lib/commands/force/package1/version/display.js.map +0 -1
- package/lib/commands/force/package1/version/list.d.ts +0 -9
- package/lib/commands/force/package1/version/list.js.map +0 -1
|
@@ -1,97 +1,88 @@
|
|
|
1
|
-
#
|
|
1
|
+
# summary
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Install a version of a package in the target org.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
# description
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
To install a package, specify a specific version of the package using the 04t package ID. The package and the version you specified installs in your default target org unless you supply the username for a different target org.
|
|
8
|
+
|
|
9
|
+
For package upgrades, to specify options for component deprecation or deletion of removed components, include an --upgrade-type value. To delete components that can be safely deleted and deprecate the others, specify --upgrade-type Mixed (the default). To deprecate all removed components, specify --upgrade-type DeprecateOnly. To delete all removed components, except for custom objects and custom fields, that don't have dependencies, specify --upgrade-type Delete. (Note: This option can result in the loss of data that is associated with the deleted components.) The default is Mixed.
|
|
8
10
|
|
|
9
11
|
# examples
|
|
10
12
|
|
|
11
|
-
|
|
12
|
-
$ sfdx force:package:install --package awesome_package_alias
|
|
13
|
-
$ sfdx force:package:install --package "Awesome Package Alias"
|
|
14
|
-
$ sfdx force:package:install --package 04t... -t DeprecateOnly
|
|
13
|
+
- Install a package version with the specified ID in the org with username "me@example.com":
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
<%= config.bin %> <%= command.id %> --package 04t... --target-org me@example.com
|
|
17
16
|
|
|
18
|
-
|
|
17
|
+
- Install a package version with the specified alias into your default org:
|
|
19
18
|
|
|
20
|
-
|
|
19
|
+
<%= config.bin %> <%= command.id %> --package awesome_package_alias
|
|
21
20
|
|
|
22
|
-
|
|
21
|
+
- Install a package version with an alias that includes spaces into your default org:
|
|
23
22
|
|
|
24
|
-
|
|
23
|
+
<%= config.bin %> <%= command.id %> --package "Awesome Package Alias"
|
|
25
24
|
|
|
26
|
-
|
|
25
|
+
- Install an unlocked package version with the specified ID and deprecate all removed components:
|
|
27
26
|
|
|
28
|
-
|
|
27
|
+
<%= config.bin %> <%= command.id %> --package 04t... --upgrade-type DeprecateOnly
|
|
29
28
|
|
|
30
|
-
|
|
29
|
+
# flags.wait.summary
|
|
31
30
|
|
|
32
|
-
|
|
31
|
+
Number of minutes to wait for installation status.
|
|
33
32
|
|
|
34
|
-
|
|
33
|
+
# flags.installation-key.summary
|
|
35
34
|
|
|
36
|
-
|
|
35
|
+
Installation key for key-protected package (default: null).
|
|
37
36
|
|
|
38
|
-
|
|
37
|
+
# flags.no-prompt.summary
|
|
39
38
|
|
|
40
|
-
|
|
39
|
+
Don't prompt for confirmation.
|
|
41
40
|
|
|
42
|
-
|
|
41
|
+
# flags.no-prompt.description
|
|
43
42
|
|
|
44
|
-
|
|
43
|
+
Allows the following without an explicit confirmation response: 1) Remote Site Settings and Content Security Policy websites to send or receive data, and 2) --upgrade-type Delete to proceed.
|
|
45
44
|
|
|
46
|
-
#
|
|
45
|
+
# prompt-upgrade-type
|
|
47
46
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
# publishWait
|
|
47
|
+
The Delete upgrade type permanently deletes metadata types that have been removed from the package. Deleted metadata can’t be recovered. We don't delete custom objects and custom fields. Instead, we deprecate them.
|
|
51
48
|
|
|
52
|
-
|
|
49
|
+
Do you want to continue? (y/n)
|
|
53
50
|
|
|
54
|
-
#
|
|
51
|
+
# flags.publish-wait.summary
|
|
55
52
|
|
|
56
|
-
Maximum number of minutes to wait for the Subscriber Package Version ID to become available in the target org before canceling the install request.
|
|
53
|
+
Maximum number of minutes to wait for the Subscriber Package Version ID to become available in the target org before canceling the install request.
|
|
57
54
|
|
|
58
|
-
#
|
|
55
|
+
# package-install-success
|
|
59
56
|
|
|
60
57
|
Successfully installed package [%s]
|
|
61
58
|
|
|
62
|
-
# package
|
|
63
|
-
|
|
64
|
-
ID (starts with 04t) or alias of the package version to install
|
|
65
|
-
|
|
66
|
-
# packageLong
|
|
67
|
-
|
|
68
|
-
The ID (starts with 04t) or alias of the package version to install.
|
|
59
|
+
# flags.package.summary
|
|
69
60
|
|
|
70
|
-
|
|
61
|
+
ID (starts with 04t) or alias of the package version to install.
|
|
71
62
|
|
|
72
|
-
security
|
|
63
|
+
# flags.security-type.summary
|
|
73
64
|
|
|
74
|
-
|
|
65
|
+
Security access type for the installed package. (deprecation notice: The default --security-type value will change from AllUsers to AdminsOnly in v47.0 or later.)
|
|
75
66
|
|
|
76
|
-
|
|
67
|
+
# flags.upgrade-type.summary
|
|
77
68
|
|
|
78
|
-
|
|
69
|
+
Upgrade type for the package installation; available only for unlocked packages.
|
|
79
70
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
# upgradeTypeLong
|
|
71
|
+
# flags.upgrade-type.description
|
|
83
72
|
|
|
84
73
|
For package upgrades, specifies whether to mark all removed components as deprecated (DeprecateOnly), to delete removed components that can be safely deleted and deprecate the others (Mixed), or to delete all removed components, except for custom objects and custom fields, that don't have dependencies (Delete). The default is Mixed. Can specify DeprecateOnly or Delete only for unlocked package upgrades.
|
|
85
74
|
|
|
86
|
-
#
|
|
75
|
+
# flags.apex-compile.summary
|
|
87
76
|
|
|
88
|
-
|
|
77
|
+
Compile all Apex in the org and package, or only Apex in the package; unlocked packages only.
|
|
89
78
|
|
|
90
|
-
#
|
|
79
|
+
# flags.apex-compile.description
|
|
91
80
|
|
|
92
81
|
Applies to unlocked packages only. Specifies whether to compile all Apex in the org and package, or only the Apex in the package.
|
|
82
|
+
|
|
93
83
|
For package installs into production orgs, or any org that has Apex Compile on Deploy enabled, the platform compiles all Apex in the org after the package install or upgrade operation completes.
|
|
94
|
-
|
|
84
|
+
|
|
85
|
+
This approach assures that package installs and upgrades don’t impact the performance of an org, and is done even if --apex-compile package is specified.
|
|
95
86
|
|
|
96
87
|
# promptEnableRss
|
|
97
88
|
|
|
@@ -101,7 +92,7 @@ This package might send or receive data from these third-party websites:
|
|
|
101
92
|
|
|
102
93
|
Grant access (y/n)?
|
|
103
94
|
|
|
104
|
-
#
|
|
95
|
+
# prompt-upgrade-type
|
|
105
96
|
|
|
106
97
|
The Delete upgrade type permanently deletes metadata types that have been removed from the package. Deleted metadata can’t be recovered. We don't delete custom objects and custom fields. Instead, we deprecate them.
|
|
107
98
|
|
|
@@ -118,7 +109,7 @@ This command is supported only on API versions 36.0 and higher
|
|
|
118
109
|
# packageInstallInProgress
|
|
119
110
|
|
|
120
111
|
PackageInstallRequest is currently InProgress. You can continue to query the status using
|
|
121
|
-
|
|
112
|
+
%s package:install:report -i %s -o %s
|
|
122
113
|
|
|
123
114
|
# packageInstallError
|
|
124
115
|
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
#
|
|
1
|
+
# summary
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Retrieve the status of a package installation request.
|
|
4
4
|
|
|
5
5
|
# examples
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
$ sfdx force:package:install:report -i 0Hf... -u me@example.com
|
|
7
|
+
- Retrieve the status of a package installation request with the specified ID on your default org:
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
<%= config.bin %> <%= command.id %> --request-id 0Hf...
|
|
11
10
|
|
|
12
|
-
|
|
11
|
+
- Similar to previous example, except use the org with username me@example.com:
|
|
13
12
|
|
|
14
|
-
|
|
13
|
+
<%= config.bin %> <%= command.id %> --request-id 0Hf... --target-org me@example.com
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
# flags.request-id.summary
|
|
16
|
+
|
|
17
|
+
ID of the package install request you want to check; starts with 0Hf.
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
#
|
|
1
|
+
# summary
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
List the org’s installed packages.
|
|
4
4
|
|
|
5
5
|
# examples
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
- List the installed packages in your default org:
|
|
8
|
+
|
|
9
|
+
<%= config.bin %> <%= command.id %>
|
|
10
|
+
|
|
11
|
+
- List the installed packages in the org with username me@example.com:
|
|
12
|
+
|
|
13
|
+
<%= config.bin %> <%= command.id %> --target-org me@example.com
|
package/messages/package_list.md
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
|
-
#
|
|
1
|
+
# summary
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
List all packages in the Dev Hub org.
|
|
4
|
+
|
|
5
|
+
# description
|
|
4
6
|
|
|
5
7
|
You can view the namespace, IDs, and other details for each package.
|
|
6
8
|
|
|
7
9
|
# examples
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
- List all packages in the specified Dev Hub org:
|
|
12
|
+
|
|
13
|
+
<%= config.bin %> <%= command.id %> --target-hub-org devhub@example.com
|
|
14
|
+
|
|
15
|
+
- List all packages details in the specified Dev Hub org, and show extended details about each package:
|
|
16
|
+
|
|
17
|
+
<%= config.bin %> <%= command.id %> --target-hub-org devhub@example.com --verbose
|
|
11
18
|
|
|
12
19
|
# namespace
|
|
13
20
|
|
|
@@ -21,7 +28,7 @@ Name
|
|
|
21
28
|
|
|
22
29
|
Id
|
|
23
30
|
|
|
24
|
-
#
|
|
31
|
+
# package-id
|
|
25
32
|
|
|
26
33
|
Subscriber Package Id
|
|
27
34
|
|
|
@@ -33,17 +40,13 @@ Alias
|
|
|
33
40
|
|
|
34
41
|
Description
|
|
35
42
|
|
|
36
|
-
#
|
|
43
|
+
# package-type
|
|
37
44
|
|
|
38
45
|
Type
|
|
39
46
|
|
|
40
|
-
#
|
|
41
|
-
|
|
42
|
-
display extended package detail
|
|
43
|
-
|
|
44
|
-
# verboseLongDescription
|
|
47
|
+
# flags.verbose.summary
|
|
45
48
|
|
|
46
|
-
|
|
49
|
+
Display extended package detail.
|
|
47
50
|
|
|
48
51
|
# convertedFromPackageId
|
|
49
52
|
|
|
@@ -53,7 +56,7 @@ Converted From Package Id
|
|
|
53
56
|
|
|
54
57
|
Org-Dependent Unlocked Package
|
|
55
58
|
|
|
56
|
-
#
|
|
59
|
+
# error-notification-username
|
|
57
60
|
|
|
58
61
|
Error Notification Username
|
|
59
62
|
|
|
@@ -1,39 +1,41 @@
|
|
|
1
|
-
#
|
|
1
|
+
# summary
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Uninstall a second-generation package from the target org.
|
|
4
|
+
|
|
5
|
+
# description
|
|
4
6
|
|
|
5
7
|
Specify the package ID for a second-generation package.
|
|
6
8
|
|
|
7
|
-
To list the org’s installed packages, run "
|
|
9
|
+
To list the org’s installed packages, run "<%= config.bin %> package installed list".
|
|
8
10
|
|
|
9
11
|
To uninstall a first-generation package, from Setup, enter Installed Packages in the Quick Find box, then select Installed Packages.
|
|
10
12
|
|
|
11
13
|
# examples
|
|
12
14
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
15
|
+
- Uninstall a package with specified ID from an org with username me@example.com:
|
|
16
|
+
|
|
17
|
+
<%= config.bin %> <%= command.id %> --package 04t... --target-org me@example.com
|
|
16
18
|
|
|
17
|
-
|
|
19
|
+
- Uninstall a package with the specified alias from your default org:
|
|
18
20
|
|
|
19
|
-
|
|
21
|
+
<%= config.bin %> <%= command.id %> --package undesirable_package_alias
|
|
20
22
|
|
|
21
|
-
|
|
23
|
+
- Uninstall a package with an alias that contains spaces from your default org:
|
|
22
24
|
|
|
23
|
-
|
|
25
|
+
<%= config.bin %> <%= command.id %> --package "Undesirable Package Alias"
|
|
24
26
|
|
|
25
|
-
#
|
|
27
|
+
# flags.wait.summary
|
|
26
28
|
|
|
27
|
-
|
|
29
|
+
Number of minutes to wait for uninstall status.
|
|
28
30
|
|
|
29
|
-
#
|
|
31
|
+
# flags.package.summary
|
|
30
32
|
|
|
31
|
-
|
|
33
|
+
ID (starts with 04t) or alias of the package version to uninstall.
|
|
32
34
|
|
|
33
35
|
# InProgress
|
|
34
36
|
|
|
35
37
|
PackageUninstallRequest is currently InProgress.
|
|
36
|
-
You can continue to query the status using
|
|
38
|
+
You can continue to query the status using %s package uninstall report -i %s -o %s
|
|
37
39
|
|
|
38
40
|
# Success
|
|
39
41
|
|
|
@@ -1,24 +1,25 @@
|
|
|
1
|
-
#
|
|
1
|
+
# summary
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Retrieve the status of a package uninstall request.
|
|
4
4
|
|
|
5
5
|
# examples
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
$ sfdx force:package:uninstall:report -i 06y... -u me@example.com
|
|
7
|
+
- Retrieve the status of a package uninstall in your default org using the specified request ID:
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
<%= config.bin %> <%= command.id %> --request-id 06y...
|
|
11
10
|
|
|
12
|
-
|
|
11
|
+
- Similar to previous example, but use the org with username me@example.com:
|
|
13
12
|
|
|
14
|
-
|
|
13
|
+
<%= config.bin %> <%= command.id %> --request-id 06y... --target-org me@example.com
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
# flags.request-id.summary
|
|
16
|
+
|
|
17
|
+
ID of the package uninstall request you want to check; starts with 06y.
|
|
17
18
|
|
|
18
19
|
# InProgress
|
|
19
20
|
|
|
20
21
|
PackageUninstallRequest is currently InProgress. You can continue to query the status using
|
|
21
|
-
|
|
22
|
+
%s package:uninstall:report -i %s -o %s
|
|
22
23
|
|
|
23
24
|
# Unknown
|
|
24
25
|
|
|
@@ -28,6 +29,6 @@ TODO: fix me
|
|
|
28
29
|
|
|
29
30
|
Successfully uninstalled package [%s]
|
|
30
31
|
|
|
31
|
-
#
|
|
32
|
+
# package-id-invalid
|
|
32
33
|
|
|
33
34
|
Verify that you entered a valid package uninstall request ID (starts with 06y) and try again.
|
|
@@ -1,37 +1,32 @@
|
|
|
1
|
-
#
|
|
1
|
+
# summary
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Update package details.
|
|
4
|
+
|
|
5
|
+
# description
|
|
4
6
|
|
|
5
7
|
Specify a new value for each option you want to update.
|
|
6
8
|
|
|
7
|
-
Run "
|
|
9
|
+
Run "<%= config.bin %> package list" to list all packages in the Dev Hub org.
|
|
8
10
|
|
|
9
11
|
# examples
|
|
10
12
|
|
|
11
|
-
|
|
12
|
-
$ sfdx force:package:update -p 0Ho... -d "New Package Description"
|
|
13
|
-
|
|
14
|
-
# package
|
|
13
|
+
- Update the name of the package with the specified alias; uses your default Dev Hub org:
|
|
15
14
|
|
|
16
|
-
|
|
15
|
+
<%= config.bin %> <%= command.id %> --package "Your Package Alias" --name "New Package Name"
|
|
17
16
|
|
|
18
|
-
|
|
17
|
+
- Update the description of the package with the specified ID; uses the specified Dev Hub org:
|
|
19
18
|
|
|
20
|
-
|
|
19
|
+
<%= config.bin %> <%= command.id %> --package 0Ho... --description "New Package Description" --target-hub-org devhub@example.com
|
|
21
20
|
|
|
22
|
-
#
|
|
21
|
+
# flags.package.summary
|
|
23
22
|
|
|
24
|
-
|
|
23
|
+
ID (starts with 0Ho) or alias of the package to update.
|
|
25
24
|
|
|
26
|
-
#
|
|
25
|
+
# flags.name.summary
|
|
27
26
|
|
|
28
27
|
New name of the package.
|
|
29
28
|
|
|
30
|
-
# description
|
|
31
|
-
|
|
32
|
-
new package description
|
|
33
|
-
|
|
34
|
-
# descriptionLong
|
|
29
|
+
# flags.description.summary
|
|
35
30
|
|
|
36
31
|
New description of the package.
|
|
37
32
|
|