@salesforce/plugin-packaging 1.0.0 → 1.2.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 +32 -1
- package/README.md +749 -9
- package/lib/commands/force/package/beta/convert.d.ts +13 -0
- package/lib/commands/force/package/beta/convert.js +61 -0
- package/lib/commands/force/package/beta/convert.js.map +1 -0
- package/lib/commands/force/package/beta/create.d.ts +15 -0
- package/lib/commands/force/package/beta/create.js +87 -0
- package/lib/commands/force/package/beta/create.js.map +1 -0
- package/lib/commands/force/package/beta/delete.d.ts +14 -0
- package/lib/commands/force/package/beta/delete.js +61 -0
- package/lib/commands/force/package/beta/delete.js.map +1 -0
- package/lib/commands/force/package/beta/install/report.d.ts +15 -0
- package/lib/commands/force/package/beta/install/report.js +66 -0
- package/lib/commands/force/package/beta/install/report.js.map +1 -0
- package/lib/commands/force/package/beta/install.d.ts +22 -0
- package/lib/commands/force/package/beta/install.js +228 -0
- package/lib/commands/force/package/beta/install.js.map +1 -0
- package/lib/commands/force/package/beta/installed/list.d.ts +17 -0
- package/lib/commands/force/package/beta/installed/list.js +46 -0
- package/lib/commands/force/package/beta/installed/list.js.map +1 -0
- package/lib/commands/force/package/beta/list.d.ts +21 -0
- package/lib/commands/force/package/beta/list.js +90 -0
- package/lib/commands/force/package/beta/list.js.map +1 -0
- package/lib/commands/force/package/beta/uninstall/report.d.ts +10 -0
- package/lib/commands/force/package/beta/uninstall/report.js +33 -0
- package/lib/commands/force/package/beta/uninstall/report.js.map +1 -0
- package/lib/commands/force/package/beta/uninstall.d.ts +12 -0
- package/lib/commands/force/package/beta/uninstall.js +52 -0
- package/lib/commands/force/package/beta/uninstall.js.map +1 -0
- package/lib/commands/force/package/beta/update.d.ts +12 -0
- package/lib/commands/force/package/beta/update.js +51 -0
- package/lib/commands/force/package/beta/update.js.map +1 -0
- package/lib/commands/force/package/beta/version/create/list.d.ts +12 -0
- package/lib/commands/force/package/beta/version/create/list.js +40 -0
- package/lib/commands/force/package/beta/version/create/list.js.map +1 -0
- package/lib/commands/force/package/beta/version/create/report.d.ts +12 -0
- package/lib/commands/force/package/beta/version/create/report.js +87 -0
- package/lib/commands/force/package/beta/version/create/report.js.map +1 -0
- package/lib/commands/force/package/beta/version/create.d.ts +11 -0
- package/lib/commands/force/package/beta/version/create.js +200 -0
- package/lib/commands/force/package/beta/version/create.js.map +1 -0
- package/lib/commands/force/package/beta/version/delete.d.ts +15 -0
- package/lib/commands/force/package/beta/version/delete.js +64 -0
- package/lib/commands/force/package/beta/version/delete.js.map +1 -0
- package/lib/commands/force/package/beta/version/displayancestry.d.ts +13 -0
- package/lib/commands/force/package/beta/version/displayancestry.js +46 -0
- package/lib/commands/force/package/beta/version/displayancestry.js.map +1 -0
- package/lib/commands/force/package/beta/version/list.d.ts +12 -0
- package/lib/commands/force/package/beta/version/list.js +62 -0
- package/lib/commands/force/package/beta/version/list.js.map +1 -0
- package/lib/commands/force/package/beta/version/promote.d.ts +12 -0
- package/lib/commands/force/package/beta/version/promote.js +40 -0
- package/lib/commands/force/package/beta/version/promote.js.map +1 -0
- package/lib/commands/force/package/beta/version/report.d.ts +24 -0
- package/lib/commands/force/package/beta/version/report.js +209 -0
- package/lib/commands/force/package/beta/version/report.js.map +1 -0
- package/lib/commands/force/package/beta/version/update.d.ts +12 -0
- package/lib/commands/force/package/beta/version/update.js +60 -0
- package/lib/commands/force/package/beta/version/update.js.map +1 -0
- package/lib/commands/force/package1/beta/version/create/get.d.ts +9 -0
- package/lib/commands/force/package1/beta/version/create/get.js +48 -0
- package/lib/commands/force/package1/beta/version/create/get.js.map +1 -0
- package/lib/commands/force/package1/beta/version/create.d.ts +14 -0
- package/lib/commands/force/package1/beta/version/create.js +116 -0
- package/lib/commands/force/package1/beta/version/create.js.map +1 -0
- package/lib/commands/force/package1/beta/version/display.d.ts +9 -0
- package/lib/commands/force/package1/beta/version/display.js +55 -0
- package/lib/commands/force/package1/beta/version/display.js.map +1 -0
- package/lib/commands/force/package1/beta/version/list.d.ts +10 -0
- package/lib/commands/force/package1/beta/version/list.js +54 -0
- package/lib/commands/force/package1/beta/version/list.js.map +1 -0
- package/messages/default.md +1127 -0
- package/messages/package1_version_create.md +128 -0
- package/messages/package1_version_create_get.md +31 -0
- package/messages/package1_version_display.md +19 -0
- package/messages/package1_version_list.md +31 -0
- package/messages/package2.md +87 -0
- package/messages/package2_create.md +56 -0
- package/messages/package2_list.md +35 -0
- package/messages/package2_update.md +45 -0
- package/messages/package2_version_create.md +149 -0
- package/messages/package2_version_create_get.md +34 -0
- package/messages/package2_version_create_list.md +62 -0
- package/messages/package2_version_get.md +14 -0
- package/messages/package2_version_list.md +98 -0
- package/messages/package2_version_update.md +89 -0
- package/messages/package_convert.md +72 -0
- package/messages/package_create.md +90 -0
- package/messages/package_delete.md +63 -0
- package/messages/package_displayancestry.md +64 -0
- package/messages/package_install.md +178 -0
- package/messages/package_install_get.md +34 -0
- package/messages/package_install_report.md +34 -0
- package/messages/package_install_request.md +34 -0
- package/messages/package_installed_list.md +16 -0
- package/messages/package_list.md +67 -0
- package/messages/package_uninstall.md +73 -0
- package/messages/package_uninstall_get.md +34 -0
- package/messages/package_uninstall_report.md +34 -0
- package/messages/package_update.md +45 -0
- package/messages/package_version_create.md +306 -0
- package/messages/package_version_create_list.md +62 -0
- package/messages/package_version_create_report.md +35 -0
- package/messages/package_version_delete.md +63 -0
- package/messages/package_version_list.md +135 -0
- package/messages/package_version_promote.md +50 -0
- package/messages/package_version_report.md +51 -0
- package/messages/package_version_update.md +74 -0
- package/messages/packaging.md +157 -0
- package/oclif.manifest.json +1 -1
- package/package.json +98 -15
- package/lib/commands/force/package/placeholder.d.ts +0 -5
- package/lib/commands/force/package/placeholder.js +0 -17
- package/lib/commands/force/package/placeholder.js.map +0 -1
- package/messages/org.json +0 -12
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# cliDescription
|
|
2
|
+
|
|
3
|
+
retrieve details about a package version creation request
|
|
4
|
+
|
|
5
|
+
# cliLongDescription
|
|
6
|
+
|
|
7
|
+
Retrieves details about a package version creation request in the Dev Hub org.
|
|
8
|
+
|
|
9
|
+
# help
|
|
10
|
+
|
|
11
|
+
Specify the request ID for which you want to view details. If applicable, the command displays errors related to the request.
|
|
12
|
+
|
|
13
|
+
Examples:
|
|
14
|
+
$ sfdx force:package:version:create:report -i 08c...
|
|
15
|
+
$ sfdx force:package:version:create:report -i 08c... -v devhub@example.com
|
|
16
|
+
|
|
17
|
+
To show all requests in the org, run "sfdx force:package:version:create:list".
|
|
18
|
+
|
|
19
|
+
# requestId
|
|
20
|
+
|
|
21
|
+
package version creation request ID (starts with 08c)
|
|
22
|
+
|
|
23
|
+
# requestIdLong
|
|
24
|
+
|
|
25
|
+
The ID (starts with 08c) of the package version creation request you want to display.
|
|
26
|
+
|
|
27
|
+
# error
|
|
28
|
+
|
|
29
|
+
Error
|
|
30
|
+
|
|
31
|
+
# truncatedErrors
|
|
32
|
+
|
|
33
|
+
...
|
|
34
|
+
|
|
35
|
+
To see all errors, run: sfdx force:data:soql:query -t -q "SELECT Message FROM Package2VersionCreateRequestError WHERE ParentRequest.Id ='%s'"
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# cliDescription
|
|
2
|
+
|
|
3
|
+
delete a package version
|
|
4
|
+
|
|
5
|
+
# cliLongDescription
|
|
6
|
+
|
|
7
|
+
Delete unlocked and second-generation managed package versions.
|
|
8
|
+
|
|
9
|
+
# help
|
|
10
|
+
|
|
11
|
+
Specify the ID or alias of the package version you want to delete.
|
|
12
|
+
|
|
13
|
+
Examples:
|
|
14
|
+
$ sfdx force:package:version:delete -p "Your Package Alias"
|
|
15
|
+
$ sfdx force:package:version:delete -p 04t...
|
|
16
|
+
|
|
17
|
+
# package
|
|
18
|
+
|
|
19
|
+
ID (starts with 04t) or alias of the package to update a version of
|
|
20
|
+
|
|
21
|
+
# packageLong
|
|
22
|
+
|
|
23
|
+
The ID (starts with 04t) or alias of the package version to delete.
|
|
24
|
+
|
|
25
|
+
# undelete
|
|
26
|
+
|
|
27
|
+
undelete a deleted package version
|
|
28
|
+
|
|
29
|
+
# undeleteLong
|
|
30
|
+
|
|
31
|
+
Undelete a deleted package version.
|
|
32
|
+
|
|
33
|
+
# noPrompt
|
|
34
|
+
|
|
35
|
+
don’t prompt before deleting the package version
|
|
36
|
+
|
|
37
|
+
# noPromptLong
|
|
38
|
+
|
|
39
|
+
Don’t prompt before deleting the package version.
|
|
40
|
+
|
|
41
|
+
# promptDelete
|
|
42
|
+
|
|
43
|
+
Deleted package versions can’t be recovered.
|
|
44
|
+
|
|
45
|
+
Do you want to continue? (y/n)
|
|
46
|
+
|
|
47
|
+
# promptUndelete
|
|
48
|
+
|
|
49
|
+
This will undelete the package version, which may result in unintended consequences for customers. Proceed with caution.
|
|
50
|
+
|
|
51
|
+
Do you want to continue? (y/n)
|
|
52
|
+
|
|
53
|
+
# promptDeleteDeny
|
|
54
|
+
|
|
55
|
+
The request to delete this package version has been canceled.
|
|
56
|
+
|
|
57
|
+
# humanSuccess
|
|
58
|
+
|
|
59
|
+
Successfully deleted the package version.
|
|
60
|
+
|
|
61
|
+
# humanSuccessUndelete
|
|
62
|
+
|
|
63
|
+
Successfully undeleted the package version.
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
# cliDescription
|
|
2
|
+
|
|
3
|
+
list all package versions in the Dev Hub org
|
|
4
|
+
|
|
5
|
+
# cliLongDescription
|
|
6
|
+
|
|
7
|
+
Lists all package versions in the Dev Hub org.
|
|
8
|
+
|
|
9
|
+
# conciseDescription
|
|
10
|
+
|
|
11
|
+
display limited package version details
|
|
12
|
+
|
|
13
|
+
# conciseLongDescription
|
|
14
|
+
|
|
15
|
+
Displays limited package version details.
|
|
16
|
+
|
|
17
|
+
# packagesDescription
|
|
18
|
+
|
|
19
|
+
filter results on specified comma-delimited packages (aliases or 0Ho IDs)
|
|
20
|
+
|
|
21
|
+
# packagesLongDescription
|
|
22
|
+
|
|
23
|
+
Filters results on the specified comma-delimited packages (aliases or 0Ho IDs).
|
|
24
|
+
|
|
25
|
+
# releasedDescription
|
|
26
|
+
|
|
27
|
+
display released versions only
|
|
28
|
+
|
|
29
|
+
# releasedLongDescription
|
|
30
|
+
|
|
31
|
+
Displays released versions only (IsReleased=true).
|
|
32
|
+
|
|
33
|
+
# orderByDescription
|
|
34
|
+
|
|
35
|
+
order by the specified package version fields
|
|
36
|
+
|
|
37
|
+
# orderByLongDescription
|
|
38
|
+
|
|
39
|
+
Orders the list by the specified package version fields.
|
|
40
|
+
|
|
41
|
+
# verboseDescription
|
|
42
|
+
|
|
43
|
+
display extended package version details
|
|
44
|
+
|
|
45
|
+
# verboseLongDescription
|
|
46
|
+
|
|
47
|
+
Displays extended package version details.
|
|
48
|
+
|
|
49
|
+
# help
|
|
50
|
+
|
|
51
|
+
Displays details of each package version in the org.
|
|
52
|
+
|
|
53
|
+
Use --concise or --verbose to display limited or additional details, respectively.
|
|
54
|
+
|
|
55
|
+
All filter parameters are applied using the AND logical operator (not OR).
|
|
56
|
+
|
|
57
|
+
Examples:
|
|
58
|
+
$ sfdx force:package:version:list --verbose --createdlastdays 3 --released --orderby PatchVersion
|
|
59
|
+
$ sfdx force:package:version:list --packages 0Ho000000000000,0Ho000000000001 --released --modifiedlastdays 0
|
|
60
|
+
$ sfdx force:package:version:list --released
|
|
61
|
+
$ sfdx force:package:version:list --concise --modifiedlastdays 0
|
|
62
|
+
$ sfdx force:package:version:list --concise -c 3 -r
|
|
63
|
+
$ sfdx force:package:version:list --packages exp-mgr,exp-mgr-util --released --modifiedlastdays 0
|
|
64
|
+
|
|
65
|
+
# name
|
|
66
|
+
|
|
67
|
+
Name
|
|
68
|
+
|
|
69
|
+
# description
|
|
70
|
+
|
|
71
|
+
Description
|
|
72
|
+
|
|
73
|
+
# version
|
|
74
|
+
|
|
75
|
+
Version
|
|
76
|
+
|
|
77
|
+
# id
|
|
78
|
+
|
|
79
|
+
Package Version Id
|
|
80
|
+
|
|
81
|
+
# alias
|
|
82
|
+
|
|
83
|
+
Alias
|
|
84
|
+
|
|
85
|
+
# subscriberPackageVersionId
|
|
86
|
+
|
|
87
|
+
Subscriber Package Version Id
|
|
88
|
+
|
|
89
|
+
# convertedFromVersionId
|
|
90
|
+
|
|
91
|
+
Converted From Version Id
|
|
92
|
+
|
|
93
|
+
# packageId
|
|
94
|
+
|
|
95
|
+
Package Id
|
|
96
|
+
|
|
97
|
+
# packageBranch
|
|
98
|
+
|
|
99
|
+
Branch
|
|
100
|
+
|
|
101
|
+
# packageTag
|
|
102
|
+
|
|
103
|
+
Tag
|
|
104
|
+
|
|
105
|
+
# installUrl
|
|
106
|
+
|
|
107
|
+
Installation URL
|
|
108
|
+
|
|
109
|
+
# installKey
|
|
110
|
+
|
|
111
|
+
Installation Key
|
|
112
|
+
|
|
113
|
+
# codeCoverage
|
|
114
|
+
|
|
115
|
+
Code Coverage
|
|
116
|
+
|
|
117
|
+
# hasPassedCodeCoverageCheck
|
|
118
|
+
|
|
119
|
+
Code Coverage Met
|
|
120
|
+
|
|
121
|
+
# validationSkipped
|
|
122
|
+
|
|
123
|
+
Validation Skipped
|
|
124
|
+
|
|
125
|
+
# releaseVersion
|
|
126
|
+
|
|
127
|
+
Release Version
|
|
128
|
+
|
|
129
|
+
# buildDurationInSeconds
|
|
130
|
+
|
|
131
|
+
Build Duration in Seconds
|
|
132
|
+
|
|
133
|
+
# hasMetadataRemoved
|
|
134
|
+
|
|
135
|
+
Managed Metadata Removed
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# cliDescription
|
|
2
|
+
|
|
3
|
+
promote a package version to released
|
|
4
|
+
|
|
5
|
+
# cliDescriptionLong
|
|
6
|
+
|
|
7
|
+
Promotes a package version to released status.
|
|
8
|
+
|
|
9
|
+
# help
|
|
10
|
+
|
|
11
|
+
Supply the ID or alias of the package version you want to promote. Promotes the package version to released status.
|
|
12
|
+
|
|
13
|
+
Examples:
|
|
14
|
+
$ sfdx force:package:version:promote -p 04t...
|
|
15
|
+
$ sfdx force:package:version:promote -p awesome_package_alias
|
|
16
|
+
$ sfdx force:package:version:promote -p "Awesome Package Alias"
|
|
17
|
+
|
|
18
|
+
# package
|
|
19
|
+
|
|
20
|
+
ID (starts with 04t) or alias of the package version to promote
|
|
21
|
+
|
|
22
|
+
# packageLong
|
|
23
|
+
|
|
24
|
+
The ID (starts with 04t) or alias of the package version to promote.
|
|
25
|
+
|
|
26
|
+
# packageVersionPromoteSetAsReleasedYesNo
|
|
27
|
+
|
|
28
|
+
Are you sure you want to release package version %s? You can't undo this action. Release package (y/n)?
|
|
29
|
+
|
|
30
|
+
# setasreleasedForce
|
|
31
|
+
|
|
32
|
+
no prompt to confirm setting the package version as released
|
|
33
|
+
|
|
34
|
+
# setasreleasedForceLong
|
|
35
|
+
|
|
36
|
+
Do not prompt to confirm setting the package version as released.
|
|
37
|
+
|
|
38
|
+
# humanSuccess
|
|
39
|
+
|
|
40
|
+
Successfully promoted the package version, ID: %s, to released. Starting in Winter ‘21, only unlocked package versions that have met the minimum 75% code coverage requirement can be promoted. Code coverage minimums aren’t enforced on org-dependent unlocked packages.
|
|
41
|
+
|
|
42
|
+
# previouslyReleasedMessage
|
|
43
|
+
|
|
44
|
+
You already promoted a package version with this major.minor.patch version number. For a given major.minor.patch number, you can promote only one version.
|
|
45
|
+
|
|
46
|
+
# previouslyReleasedAction
|
|
47
|
+
|
|
48
|
+
Create a new package version with a different --versionumber, then promote the package version.
|
|
49
|
+
sfdx force:package:version:create -p <name> -n <versionnum> -k <key>
|
|
50
|
+
sfdx force:package:version:promote -p 05ixxx
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# cliDescription
|
|
2
|
+
|
|
3
|
+
retrieve details about a package version in the Dev Hub org
|
|
4
|
+
|
|
5
|
+
# cliLongDescription
|
|
6
|
+
|
|
7
|
+
Retrieves details about a package version in the Dev Hub org.
|
|
8
|
+
|
|
9
|
+
# help
|
|
10
|
+
|
|
11
|
+
Examples:
|
|
12
|
+
$ sfdx force:package:version:report -p 04t...
|
|
13
|
+
$ sfdx force:package:version:report -p "Your Package Alias"
|
|
14
|
+
|
|
15
|
+
To update package version values, run "sfdx force:package:version:update".
|
|
16
|
+
|
|
17
|
+
# package
|
|
18
|
+
|
|
19
|
+
ID (starts with 04t) or alias of the package to retrieve details for
|
|
20
|
+
|
|
21
|
+
# packageLong
|
|
22
|
+
|
|
23
|
+
The ID (starts with 04t) or alias of the package to retrieve details for.
|
|
24
|
+
|
|
25
|
+
# verboseDescription
|
|
26
|
+
|
|
27
|
+
displays extended package version details
|
|
28
|
+
|
|
29
|
+
# verboseLongDescription
|
|
30
|
+
|
|
31
|
+
Displays extended package version details.
|
|
32
|
+
|
|
33
|
+
# dependencies
|
|
34
|
+
|
|
35
|
+
Dependencies
|
|
36
|
+
|
|
37
|
+
# codeCoveragePercentages
|
|
38
|
+
|
|
39
|
+
Code Coverage Details
|
|
40
|
+
|
|
41
|
+
# ancestorId
|
|
42
|
+
|
|
43
|
+
Ancestor
|
|
44
|
+
|
|
45
|
+
# ancestorVersion
|
|
46
|
+
|
|
47
|
+
Ancestor Version
|
|
48
|
+
|
|
49
|
+
# isReleased
|
|
50
|
+
|
|
51
|
+
Released
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# cliDescription
|
|
2
|
+
|
|
3
|
+
update a package version
|
|
4
|
+
|
|
5
|
+
# cliLongDescription
|
|
6
|
+
|
|
7
|
+
Updates a second-generation package version in the Dev Hub org.
|
|
8
|
+
|
|
9
|
+
# help
|
|
10
|
+
|
|
11
|
+
Specify a new value for each option you want to update.
|
|
12
|
+
|
|
13
|
+
Examples:
|
|
14
|
+
$ sfdx force:package:version:update -p "Your Package Alias" -k password123
|
|
15
|
+
$ sfdx force:package:version:update -p 04t... -b main -t 'Release 1.0.7'
|
|
16
|
+
$ sfdx force:package:version:update -p 04t... -e "New Package Version Description"
|
|
17
|
+
|
|
18
|
+
To display details about a package version, run "sfdx force:package:version:report".
|
|
19
|
+
|
|
20
|
+
# package
|
|
21
|
+
|
|
22
|
+
ID (starts with 04t) or alias of the package to update a version of
|
|
23
|
+
|
|
24
|
+
# packageLong
|
|
25
|
+
|
|
26
|
+
The ID (starts with 04t) or alias of the package to update a version of.
|
|
27
|
+
|
|
28
|
+
# name
|
|
29
|
+
|
|
30
|
+
new package version name
|
|
31
|
+
|
|
32
|
+
# nameLong
|
|
33
|
+
|
|
34
|
+
The new package version name.
|
|
35
|
+
|
|
36
|
+
# description
|
|
37
|
+
|
|
38
|
+
new package version description
|
|
39
|
+
|
|
40
|
+
# descriptionLong
|
|
41
|
+
|
|
42
|
+
The new package version description.
|
|
43
|
+
|
|
44
|
+
# branch
|
|
45
|
+
|
|
46
|
+
new package version branch
|
|
47
|
+
|
|
48
|
+
# branchLong
|
|
49
|
+
|
|
50
|
+
The new package version branch.
|
|
51
|
+
|
|
52
|
+
# tag
|
|
53
|
+
|
|
54
|
+
new package version tag
|
|
55
|
+
|
|
56
|
+
# tagLong
|
|
57
|
+
|
|
58
|
+
The new package version tag.
|
|
59
|
+
|
|
60
|
+
# key
|
|
61
|
+
|
|
62
|
+
new installation key for key-protected package (default: null)
|
|
63
|
+
|
|
64
|
+
# longKey
|
|
65
|
+
|
|
66
|
+
The new installation key for the key-protected package. The default is null.
|
|
67
|
+
|
|
68
|
+
# humanSuccess
|
|
69
|
+
|
|
70
|
+
Successfully updated the package version.
|
|
71
|
+
|
|
72
|
+
# previousReleased
|
|
73
|
+
|
|
74
|
+
To release the new package version, run "sfdx force:package:version:update -s <new package version ID>".
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
# topicHelp
|
|
2
|
+
|
|
3
|
+
develop, install, and manage packages
|
|
4
|
+
|
|
5
|
+
# topicHelpLong
|
|
6
|
+
|
|
7
|
+
Use the package commands to develop, install, and manage packages.
|
|
8
|
+
|
|
9
|
+
# createdLastDaysDescription
|
|
10
|
+
|
|
11
|
+
created in the last specified number of days (starting at 00:00:00 of first day to now; 0 for today)
|
|
12
|
+
|
|
13
|
+
# createdLastDaysLongDescription
|
|
14
|
+
|
|
15
|
+
Filters the list based on the specified maximum number of days since the request was created (starting at 00:00:00 of first day to now; 0 for today).
|
|
16
|
+
|
|
17
|
+
# modifiedLastDaysDescription
|
|
18
|
+
|
|
19
|
+
list items modified in the specified last number of days (starting at 00:00:00 of first day to now; 0 for today)
|
|
20
|
+
|
|
21
|
+
# modifiedLastDaysLongDescription
|
|
22
|
+
|
|
23
|
+
Lists the items modified in the specified last number of days, starting at 00:00:00 of first day to now. Use 0 for today.
|
|
24
|
+
|
|
25
|
+
# invalidIdOrAlias
|
|
26
|
+
|
|
27
|
+
The %s: %s isn't defined in the sfdx-project.json. Add it to the packageDirectories section and add the alias to packageAliases with its %s ID.
|
|
28
|
+
|
|
29
|
+
# invalidDaysNumber
|
|
30
|
+
|
|
31
|
+
Provide a valid positive number for %s.
|
|
32
|
+
|
|
33
|
+
# invalidStatus
|
|
34
|
+
|
|
35
|
+
Invalid status '%s'. Please provide one of these statuses: %s
|
|
36
|
+
|
|
37
|
+
# packageNotEnabledAction
|
|
38
|
+
|
|
39
|
+
Packaging is not enabled on this org. Verify that you are authenticated to the desired org and try again. Otherwise, contact Salesforce Customer Support for more information.
|
|
40
|
+
|
|
41
|
+
# packageInstanceNotEnabled
|
|
42
|
+
|
|
43
|
+
Your org does not have permission to specify a build instance for your package version. Verify that you are authenticated to the desired org and try again. Otherwise, contact Salesforce Customer Support for more information.
|
|
44
|
+
|
|
45
|
+
# packageSourceOrgNotEnabled
|
|
46
|
+
|
|
47
|
+
Your Dev Hub does not have permission to specify a source org for your build org. Verify that you are authenticated to the correct Dev Hub and try again. Otherwise, contact Salesforce Customer Support for assistance.
|
|
48
|
+
|
|
49
|
+
# installStatus
|
|
50
|
+
|
|
51
|
+
Waiting for the package install request to complete. Status = %s
|
|
52
|
+
|
|
53
|
+
# errorMissingVersionNumber
|
|
54
|
+
|
|
55
|
+
The VersionNumber property must be specified.
|
|
56
|
+
|
|
57
|
+
# errorInvalidVersionNumber
|
|
58
|
+
|
|
59
|
+
VersionNumber must be in the format major.minor.patch.build but the value found is [%s].
|
|
60
|
+
|
|
61
|
+
# errorInvalidBuildNumber
|
|
62
|
+
|
|
63
|
+
The provided VersionNumber '%s' is invalid. Provide an integer value or use the keyword '%s' for the build number.
|
|
64
|
+
|
|
65
|
+
# errorInvalidBuildNumberForKeywords
|
|
66
|
+
|
|
67
|
+
The provided VersionNumber '%s' is invalid. Provide an integer value or use the keyword '%s' or '%s' for the build number.
|
|
68
|
+
|
|
69
|
+
# errorInvalidPatchNumber
|
|
70
|
+
|
|
71
|
+
The provided VersionNumber '%s' is not supported. Provide a patch number of 0.
|
|
72
|
+
|
|
73
|
+
# errorInvalidMajorMinorNumber
|
|
74
|
+
|
|
75
|
+
The provided VersionNumber '%s' is invalid. Provide an integer value for the %s number.
|
|
76
|
+
|
|
77
|
+
# errorInvalidAncestorVersionFormat
|
|
78
|
+
|
|
79
|
+
The ancestor versionNumber must be in the format major.minor.patch but the value found is [%s].
|
|
80
|
+
|
|
81
|
+
# errorNoMatchingMajorMinorForPatch
|
|
82
|
+
|
|
83
|
+
Can’t create patch version. The specified package ancestor [%s] either isn’t a promoted and released version, or can’t be found. Check the specified ancestor version, and then retry creating the patch version.
|
|
84
|
+
|
|
85
|
+
# errorNoMatchingAncestor
|
|
86
|
+
|
|
87
|
+
The ancestorId for ancestorVersion [%s] can't be found. Package ID [%s].
|
|
88
|
+
|
|
89
|
+
# errorAncestorNotReleased
|
|
90
|
+
|
|
91
|
+
The ancestor package version [%s] specified in the sfdx-project.json file hasn’t been promoted and released. Release the ancestor package version before specifying it as the ancestor in a new package or patch version.
|
|
92
|
+
|
|
93
|
+
# errorAncestorNotHighest
|
|
94
|
+
|
|
95
|
+
Can’t create package version. The ancestor version [%s] you specified isn’t the highest released package version. Set the ancestor version to %s, and try creating the package version again. You can also specify --skipancestorcheck to override the ancestry requirement.
|
|
96
|
+
|
|
97
|
+
# errorAncestorNoneNotAllowed
|
|
98
|
+
|
|
99
|
+
Can’t create package version because you didn’t specify a package ancestor. Set the ancestor version to %s, and try creating the package version. You can also specify --skipancestorcheck to override the ancestry requirement.
|
|
100
|
+
|
|
101
|
+
# errorAncestorIdVersionMismatch
|
|
102
|
+
|
|
103
|
+
Can’t create package version. The ancestorVersion listed in your sfdx-project.json file doesn’t map to this package. Ensure the ancestor ID is correct, or set the ID to ancestorID:HIGHEST to ensure the highest released package version is used as the ancestor. Then try creating the package version again.
|
|
104
|
+
|
|
105
|
+
# errorAncestorIdVersionHighestOrNoneMismatch
|
|
106
|
+
|
|
107
|
+
Can’t create package version. The ancestorId [%s] and ancestorVersion [%s] in your sfdx-project.json file don’t map to the same package version. Remove the incorrect entry, and try creating the package version again.
|
|
108
|
+
|
|
109
|
+
# errorpackageAncestorIdsKeyNotSupported
|
|
110
|
+
|
|
111
|
+
The package2AncestorIds key is no longer supported in a scratch org definition. Ancestors defined in sfdx-project.json will be included in the scratch org.
|
|
112
|
+
|
|
113
|
+
# errorInvalidIdNoMatchingVersionId
|
|
114
|
+
|
|
115
|
+
The %s %s is invalid, as a corresponding %s was not found
|
|
116
|
+
|
|
117
|
+
# errorIdTypeMismatch
|
|
118
|
+
|
|
119
|
+
ID type mismatch: an ID of type %s is required, but an ID of type %s was specified: %s
|
|
120
|
+
|
|
121
|
+
# updatedSfProject
|
|
122
|
+
|
|
123
|
+
sfdx-project.json has been updated.
|
|
124
|
+
|
|
125
|
+
# errorSfProjectFileWrite
|
|
126
|
+
|
|
127
|
+
sfdx-project.json could not be updated with the following entry for this package:
|
|
128
|
+
%s
|
|
129
|
+
Reason: %s
|
|
130
|
+
|
|
131
|
+
# invalidPackageTypeAction
|
|
132
|
+
|
|
133
|
+
Specify Unlocked or Managed for package type.
|
|
134
|
+
|
|
135
|
+
# invalidPackageTypeMessage
|
|
136
|
+
|
|
137
|
+
Invalid package type
|
|
138
|
+
|
|
139
|
+
# idNotFoundAction
|
|
140
|
+
|
|
141
|
+
It`s possible that this package was created on a different Dev Hub. Authenticate to the Dev Hub org that owns the package, and reference that Dev Hub when running the command.
|
|
142
|
+
|
|
143
|
+
# malformedPackageVersionIdAction
|
|
144
|
+
|
|
145
|
+
Use "sfdx force:package:version:list" to verify the 05i package version ID.
|
|
146
|
+
|
|
147
|
+
# malformedPackageVersionIdMessage
|
|
148
|
+
|
|
149
|
+
We can’t find this package version ID for this Dev Hub.
|
|
150
|
+
|
|
151
|
+
# malformedPackageIdAction
|
|
152
|
+
|
|
153
|
+
Use "sfdx force:package:list" to verify the 0Ho package version ID.
|
|
154
|
+
|
|
155
|
+
# malformedPackageIdMessage
|
|
156
|
+
|
|
157
|
+
We can’t find this package ID for this Dev Hub.
|