@salesforce/plugin-packaging 1.27.7 → 1.27.9
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 +22 -22
- package/lib/commands/package/convert.js.map +1 -1
- package/lib/commands/package/delete.js.map +1 -1
- package/lib/commands/package/install/report.js.map +1 -1
- package/lib/commands/package/install.js.map +1 -1
- package/lib/commands/package/list.js.map +1 -1
- package/lib/commands/package/version/create/list.js.map +1 -1
- package/lib/commands/package/version/create/report.js.map +1 -1
- package/lib/commands/package/version/create.js.map +1 -1
- package/lib/commands/package/version/delete.js.map +1 -1
- package/lib/commands/package/version/displayancestry.js.map +1 -1
- package/lib/commands/package/version/list.js.map +1 -1
- package/lib/commands/package/version/promote.js.map +1 -1
- package/lib/commands/package/version/report.js.map +1 -1
- package/lib/commands/package/version/retrieve.js.map +1 -1
- package/lib/commands/package1/version/create/get.js.map +1 -1
- package/lib/commands/package1/version/create.js.map +1 -1
- package/lib/commands/package1/version/display.js.map +1 -1
- package/lib/commands/package1/version/list.js.map +1 -1
- package/oclif.lock +180 -82
- package/oclif.manifest.json +617 -617
- package/package.json +22 -11
package/oclif.manifest.json
CHANGED
|
@@ -919,15 +919,16 @@
|
|
|
919
919
|
"update.js"
|
|
920
920
|
]
|
|
921
921
|
},
|
|
922
|
-
"
|
|
922
|
+
"package1:version:create": {
|
|
923
923
|
"aliases": [
|
|
924
|
-
"force:
|
|
924
|
+
"force:package1:version:create"
|
|
925
925
|
],
|
|
926
926
|
"args": {},
|
|
927
927
|
"deprecateAliases": true,
|
|
928
|
+
"description": "The package version is based on the contents of the specified metadata package. Omit --managed-released if you want to create an unmanaged package version.",
|
|
928
929
|
"examples": [
|
|
929
|
-
"
|
|
930
|
-
"
|
|
930
|
+
"Create a first-generation package version from the package with the specified ID and name the package version \"example\"; use your default org:\n<%= config.bin %> <%= command.id %> --package-id 033... --name example",
|
|
931
|
+
"Same as previous example, but provide a description and wait for 30 minutes for the package version to be created; use the specified org:\n<%= config.bin %> <%= command.id %> --package-id 033... --name example --description \"example description\" --wait 30 --target-org myorg@example.com"
|
|
931
932
|
],
|
|
932
933
|
"flags": {
|
|
933
934
|
"json": {
|
|
@@ -937,6 +938,16 @@
|
|
|
937
938
|
"allowNo": false,
|
|
938
939
|
"type": "boolean"
|
|
939
940
|
},
|
|
941
|
+
"loglevel": {
|
|
942
|
+
"deprecated": {
|
|
943
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
944
|
+
},
|
|
945
|
+
"hidden": true,
|
|
946
|
+
"name": "loglevel",
|
|
947
|
+
"hasDynamicHelp": false,
|
|
948
|
+
"multiple": false,
|
|
949
|
+
"type": "option"
|
|
950
|
+
},
|
|
940
951
|
"target-org": {
|
|
941
952
|
"aliases": [
|
|
942
953
|
"targetusername",
|
|
@@ -963,25 +974,98 @@
|
|
|
963
974
|
"multiple": false,
|
|
964
975
|
"type": "option"
|
|
965
976
|
},
|
|
966
|
-
"
|
|
967
|
-
"
|
|
968
|
-
"
|
|
969
|
-
|
|
970
|
-
"
|
|
971
|
-
"
|
|
977
|
+
"package-id": {
|
|
978
|
+
"aliases": [
|
|
979
|
+
"packageid"
|
|
980
|
+
],
|
|
981
|
+
"char": "i",
|
|
982
|
+
"deprecateAliases": true,
|
|
983
|
+
"name": "package-id",
|
|
984
|
+
"required": true,
|
|
985
|
+
"summary": "ID of the metadata package (starts with 033) of which you’re creating a new version.",
|
|
972
986
|
"hasDynamicHelp": false,
|
|
973
987
|
"multiple": false,
|
|
974
988
|
"type": "option"
|
|
975
989
|
},
|
|
976
|
-
"
|
|
990
|
+
"name": {
|
|
991
|
+
"char": "n",
|
|
992
|
+
"name": "name",
|
|
993
|
+
"required": true,
|
|
994
|
+
"summary": "Package version name.",
|
|
995
|
+
"hasDynamicHelp": false,
|
|
996
|
+
"multiple": false,
|
|
997
|
+
"type": "option"
|
|
998
|
+
},
|
|
999
|
+
"description": {
|
|
1000
|
+
"char": "d",
|
|
1001
|
+
"name": "description",
|
|
1002
|
+
"summary": "Package version description.",
|
|
1003
|
+
"hasDynamicHelp": false,
|
|
1004
|
+
"multiple": false,
|
|
1005
|
+
"type": "option"
|
|
1006
|
+
},
|
|
1007
|
+
"version": {
|
|
1008
|
+
"char": "v",
|
|
1009
|
+
"name": "version",
|
|
1010
|
+
"summary": "Package version in major.minor format, for example, 3.2.",
|
|
1011
|
+
"hasDynamicHelp": false,
|
|
1012
|
+
"multiple": false,
|
|
1013
|
+
"type": "option"
|
|
1014
|
+
},
|
|
1015
|
+
"managed-released": {
|
|
977
1016
|
"aliases": [
|
|
978
|
-
"
|
|
1017
|
+
"managedrelease"
|
|
979
1018
|
],
|
|
980
|
-
"char": "
|
|
1019
|
+
"char": "m",
|
|
981
1020
|
"deprecateAliases": true,
|
|
982
|
-
"
|
|
983
|
-
"
|
|
984
|
-
"summary": "
|
|
1021
|
+
"description": "To create a beta version, don’t include this parameter.",
|
|
1022
|
+
"name": "managed-released",
|
|
1023
|
+
"summary": "Create a managed package version.",
|
|
1024
|
+
"allowNo": false,
|
|
1025
|
+
"type": "boolean"
|
|
1026
|
+
},
|
|
1027
|
+
"release-notes-url": {
|
|
1028
|
+
"aliases": [
|
|
1029
|
+
"releasenotesurl"
|
|
1030
|
+
],
|
|
1031
|
+
"char": "r",
|
|
1032
|
+
"deprecateAliases": true,
|
|
1033
|
+
"description": "This link is displayed in the package installation UI to provide release notes for this package version to subscribers.",
|
|
1034
|
+
"name": "release-notes-url",
|
|
1035
|
+
"summary": "Release notes URL.",
|
|
1036
|
+
"hasDynamicHelp": false,
|
|
1037
|
+
"multiple": false,
|
|
1038
|
+
"type": "option"
|
|
1039
|
+
},
|
|
1040
|
+
"post-install-url": {
|
|
1041
|
+
"aliases": [
|
|
1042
|
+
"postinstallurl"
|
|
1043
|
+
],
|
|
1044
|
+
"char": "p",
|
|
1045
|
+
"deprecateAliases": true,
|
|
1046
|
+
"description": "The contents of the post-installation instructions URL are displayed in the UI after installation of the package version.",
|
|
1047
|
+
"name": "post-install-url",
|
|
1048
|
+
"summary": "Post install URL.",
|
|
1049
|
+
"hasDynamicHelp": false,
|
|
1050
|
+
"multiple": false,
|
|
1051
|
+
"type": "option"
|
|
1052
|
+
},
|
|
1053
|
+
"installation-key": {
|
|
1054
|
+
"aliases": [
|
|
1055
|
+
"installationkey"
|
|
1056
|
+
],
|
|
1057
|
+
"char": "k",
|
|
1058
|
+
"deprecateAliases": true,
|
|
1059
|
+
"name": "installation-key",
|
|
1060
|
+
"summary": "Installation key for key-protected package (default: null).",
|
|
1061
|
+
"hasDynamicHelp": false,
|
|
1062
|
+
"multiple": false,
|
|
1063
|
+
"type": "option"
|
|
1064
|
+
},
|
|
1065
|
+
"wait": {
|
|
1066
|
+
"char": "w",
|
|
1067
|
+
"name": "wait",
|
|
1068
|
+
"summary": "Minutes to wait for the package version to be created (default: 2 minutes).",
|
|
985
1069
|
"hasDynamicHelp": false,
|
|
986
1070
|
"multiple": false,
|
|
987
1071
|
"type": "option"
|
|
@@ -989,32 +1073,33 @@
|
|
|
989
1073
|
},
|
|
990
1074
|
"hasDynamicHelp": true,
|
|
991
1075
|
"hiddenAliases": [],
|
|
992
|
-
"id": "
|
|
1076
|
+
"id": "package1:version:create",
|
|
993
1077
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
994
1078
|
"pluginName": "@salesforce/plugin-packaging",
|
|
995
1079
|
"pluginType": "core",
|
|
996
1080
|
"strict": true,
|
|
997
|
-
"summary": "
|
|
1081
|
+
"summary": "Create a first-generation package version in the release org.",
|
|
998
1082
|
"enableJsonFlag": true,
|
|
999
1083
|
"SF_ENV": "SF_ENV",
|
|
1084
|
+
"requiresProject": true,
|
|
1000
1085
|
"isESM": false,
|
|
1001
1086
|
"relativePath": [
|
|
1002
1087
|
"lib",
|
|
1003
1088
|
"commands",
|
|
1004
|
-
"
|
|
1005
|
-
"
|
|
1006
|
-
"
|
|
1089
|
+
"package1",
|
|
1090
|
+
"version",
|
|
1091
|
+
"create.js"
|
|
1007
1092
|
]
|
|
1008
1093
|
},
|
|
1009
|
-
"
|
|
1094
|
+
"package1:version:display": {
|
|
1010
1095
|
"aliases": [
|
|
1011
|
-
"force:
|
|
1096
|
+
"force:package1:version:display"
|
|
1012
1097
|
],
|
|
1013
1098
|
"args": {},
|
|
1014
1099
|
"deprecateAliases": true,
|
|
1015
1100
|
"examples": [
|
|
1016
|
-
"
|
|
1017
|
-
"
|
|
1101
|
+
"Display details about the first-generation package version with the specified ID in your default org:\n<%= config.bin %> <%= command.id %> --package-version-id 04t...",
|
|
1102
|
+
"Same as previous example, but use the specified org:\n<%= config.bin %> <%= command.id %> --package-version-id 04t... --target-org myorg@example.com"
|
|
1018
1103
|
],
|
|
1019
1104
|
"flags": {
|
|
1020
1105
|
"json": {
|
|
@@ -1059,37 +1144,49 @@
|
|
|
1059
1144
|
"hasDynamicHelp": false,
|
|
1060
1145
|
"multiple": false,
|
|
1061
1146
|
"type": "option"
|
|
1147
|
+
},
|
|
1148
|
+
"package-version-id": {
|
|
1149
|
+
"aliases": [
|
|
1150
|
+
"packageversionid"
|
|
1151
|
+
],
|
|
1152
|
+
"char": "i",
|
|
1153
|
+
"deprecateAliases": true,
|
|
1154
|
+
"name": "package-version-id",
|
|
1155
|
+
"required": true,
|
|
1156
|
+
"summary": "ID (starts with 04t) of the metadata package version whose details you want to display.",
|
|
1157
|
+
"hasDynamicHelp": false,
|
|
1158
|
+
"multiple": false,
|
|
1159
|
+
"type": "option"
|
|
1062
1160
|
}
|
|
1063
1161
|
},
|
|
1064
1162
|
"hasDynamicHelp": true,
|
|
1065
1163
|
"hiddenAliases": [],
|
|
1066
|
-
"id": "
|
|
1164
|
+
"id": "package1:version:display",
|
|
1067
1165
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1068
1166
|
"pluginName": "@salesforce/plugin-packaging",
|
|
1069
1167
|
"pluginType": "core",
|
|
1070
1168
|
"strict": true,
|
|
1071
|
-
"summary": "
|
|
1169
|
+
"summary": "Display details about a first-generation package version.",
|
|
1072
1170
|
"enableJsonFlag": true,
|
|
1073
1171
|
"SF_ENV": "SF_ENV",
|
|
1074
|
-
"requiresProject": true,
|
|
1075
1172
|
"isESM": false,
|
|
1076
1173
|
"relativePath": [
|
|
1077
1174
|
"lib",
|
|
1078
1175
|
"commands",
|
|
1079
|
-
"
|
|
1080
|
-
"
|
|
1081
|
-
"
|
|
1176
|
+
"package1",
|
|
1177
|
+
"version",
|
|
1178
|
+
"display.js"
|
|
1082
1179
|
]
|
|
1083
1180
|
},
|
|
1084
|
-
"
|
|
1181
|
+
"package1:version:list": {
|
|
1085
1182
|
"aliases": [
|
|
1086
|
-
"force:
|
|
1183
|
+
"force:package1:version:list"
|
|
1087
1184
|
],
|
|
1088
1185
|
"args": {},
|
|
1089
1186
|
"deprecateAliases": true,
|
|
1090
1187
|
"examples": [
|
|
1091
|
-
"
|
|
1092
|
-
"
|
|
1188
|
+
"List all first-generation package versions in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
1189
|
+
"List package versions for the specified first-generation package in the specifief org:\n<%= config.bin %> <%= command.id %> --package-id 033... --target-org myorg@example.com"
|
|
1093
1190
|
],
|
|
1094
1191
|
"flags": {
|
|
1095
1192
|
"json": {
|
|
@@ -1135,15 +1232,15 @@
|
|
|
1135
1232
|
"multiple": false,
|
|
1136
1233
|
"type": "option"
|
|
1137
1234
|
},
|
|
1138
|
-
"
|
|
1235
|
+
"package-id": {
|
|
1139
1236
|
"aliases": [
|
|
1140
|
-
"
|
|
1237
|
+
"packageid"
|
|
1141
1238
|
],
|
|
1142
1239
|
"char": "i",
|
|
1143
1240
|
"deprecateAliases": true,
|
|
1144
|
-
"
|
|
1145
|
-
"
|
|
1146
|
-
"summary": "ID
|
|
1241
|
+
"description": "If not specified, shows all versions for all packages (managed and unmanaged) in the org.",
|
|
1242
|
+
"name": "package-id",
|
|
1243
|
+
"summary": "Metadata package ID (starts with 033) whose package versions you want to list.",
|
|
1147
1244
|
"hasDynamicHelp": false,
|
|
1148
1245
|
"multiple": false,
|
|
1149
1246
|
"type": "option"
|
|
@@ -1151,35 +1248,32 @@
|
|
|
1151
1248
|
},
|
|
1152
1249
|
"hasDynamicHelp": true,
|
|
1153
1250
|
"hiddenAliases": [],
|
|
1154
|
-
"id": "
|
|
1251
|
+
"id": "package1:version:list",
|
|
1155
1252
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1156
1253
|
"pluginName": "@salesforce/plugin-packaging",
|
|
1157
1254
|
"pluginType": "core",
|
|
1158
1255
|
"strict": true,
|
|
1159
|
-
"summary": "
|
|
1256
|
+
"summary": "List package versions for the specified first-generation package or for the org.",
|
|
1160
1257
|
"enableJsonFlag": true,
|
|
1161
1258
|
"SF_ENV": "SF_ENV",
|
|
1162
1259
|
"isESM": false,
|
|
1163
1260
|
"relativePath": [
|
|
1164
1261
|
"lib",
|
|
1165
1262
|
"commands",
|
|
1166
|
-
"
|
|
1167
|
-
"
|
|
1168
|
-
"
|
|
1263
|
+
"package1",
|
|
1264
|
+
"version",
|
|
1265
|
+
"list.js"
|
|
1169
1266
|
]
|
|
1170
1267
|
},
|
|
1171
|
-
"package:
|
|
1268
|
+
"package:install:report": {
|
|
1172
1269
|
"aliases": [
|
|
1173
|
-
"force:package:
|
|
1270
|
+
"force:package:install:report"
|
|
1174
1271
|
],
|
|
1175
1272
|
"args": {},
|
|
1176
1273
|
"deprecateAliases": true,
|
|
1177
|
-
"description": "The package version is based on the package contents in the specified directory.\n\nTo retrieve details about a package version create request, including status and package version ID (04t), run \"<%= config.bin %> package version create report -i 08c...\".\n\nWe recommend that you specify the --installation-key parameter to protect the contents of your package and to prevent unauthorized installation of your package.\n\nTo list package version creation requests in the org, run \"<%= config.bin %> package version create list\".\nTo promote a package version to released, you must use the --code-coverage parameter. The package must also meet the code coverage requirements. This requirement applies to both managed and unlocked packages.\n\nWe don’t calculate code coverage for org-dependent unlocked packages, or for package versions that specify --skip-validation.",
|
|
1178
1274
|
"examples": [
|
|
1179
|
-
"
|
|
1180
|
-
"
|
|
1181
|
-
"Create a package version from a package with the specified ID:\n<%= config.bin %> <%= command.id %> --package 0Ho... --installation-key password123",
|
|
1182
|
-
"Create a package version and skip the validation step:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123 --skip-validation"
|
|
1275
|
+
"Retrieve the status of a package installation request with the specified ID on your default org:\n<%= config.bin %> <%= command.id %> --request-id 0Hf...",
|
|
1276
|
+
"Similar to previous example, except use the org with username me@example.com:\n<%= config.bin %> <%= command.id %> --request-id 0Hf... --target-org me@example.com"
|
|
1183
1277
|
],
|
|
1184
1278
|
"flags": {
|
|
1185
1279
|
"json": {
|
|
@@ -1189,27 +1283,17 @@
|
|
|
1189
1283
|
"allowNo": false,
|
|
1190
1284
|
"type": "boolean"
|
|
1191
1285
|
},
|
|
1192
|
-
"
|
|
1193
|
-
"deprecated": {
|
|
1194
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1195
|
-
},
|
|
1196
|
-
"hidden": true,
|
|
1197
|
-
"name": "loglevel",
|
|
1198
|
-
"hasDynamicHelp": false,
|
|
1199
|
-
"multiple": false,
|
|
1200
|
-
"type": "option"
|
|
1201
|
-
},
|
|
1202
|
-
"target-dev-hub": {
|
|
1286
|
+
"target-org": {
|
|
1203
1287
|
"aliases": [
|
|
1204
|
-
"
|
|
1205
|
-
"
|
|
1288
|
+
"targetusername",
|
|
1289
|
+
"u"
|
|
1206
1290
|
],
|
|
1207
|
-
"char": "
|
|
1291
|
+
"char": "o",
|
|
1208
1292
|
"deprecateAliases": true,
|
|
1209
|
-
"name": "target-
|
|
1293
|
+
"name": "target-org",
|
|
1210
1294
|
"noCacheDefault": true,
|
|
1211
1295
|
"required": true,
|
|
1212
|
-
"summary": "Username or alias of the
|
|
1296
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1213
1297
|
"hasDynamicHelp": true,
|
|
1214
1298
|
"multiple": false,
|
|
1215
1299
|
"type": "option"
|
|
@@ -1225,40 +1309,302 @@
|
|
|
1225
1309
|
"multiple": false,
|
|
1226
1310
|
"type": "option"
|
|
1227
1311
|
},
|
|
1228
|
-
"
|
|
1229
|
-
"
|
|
1230
|
-
|
|
1231
|
-
|
|
1312
|
+
"loglevel": {
|
|
1313
|
+
"deprecated": {
|
|
1314
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1315
|
+
},
|
|
1316
|
+
"hidden": true,
|
|
1317
|
+
"name": "loglevel",
|
|
1232
1318
|
"hasDynamicHelp": false,
|
|
1233
1319
|
"multiple": false,
|
|
1234
1320
|
"type": "option"
|
|
1235
1321
|
},
|
|
1236
|
-
"
|
|
1322
|
+
"request-id": {
|
|
1237
1323
|
"aliases": [
|
|
1238
|
-
"
|
|
1324
|
+
"requestid"
|
|
1239
1325
|
],
|
|
1240
|
-
"char": "
|
|
1326
|
+
"char": "i",
|
|
1241
1327
|
"deprecateAliases": true,
|
|
1242
|
-
"
|
|
1243
|
-
"
|
|
1244
|
-
"summary": "
|
|
1328
|
+
"name": "request-id",
|
|
1329
|
+
"required": true,
|
|
1330
|
+
"summary": "ID of the package install request you want to check; starts with 0Hf.",
|
|
1245
1331
|
"hasDynamicHelp": false,
|
|
1246
1332
|
"multiple": false,
|
|
1247
1333
|
"type": "option"
|
|
1248
|
-
}
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1334
|
+
}
|
|
1335
|
+
},
|
|
1336
|
+
"hasDynamicHelp": true,
|
|
1337
|
+
"hiddenAliases": [],
|
|
1338
|
+
"id": "package:install:report",
|
|
1339
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1340
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
1341
|
+
"pluginType": "core",
|
|
1342
|
+
"strict": true,
|
|
1343
|
+
"summary": "Retrieve the status of a package installation request.",
|
|
1344
|
+
"enableJsonFlag": true,
|
|
1345
|
+
"SF_ENV": "SF_ENV",
|
|
1346
|
+
"isESM": false,
|
|
1347
|
+
"relativePath": [
|
|
1348
|
+
"lib",
|
|
1349
|
+
"commands",
|
|
1350
|
+
"package",
|
|
1351
|
+
"install",
|
|
1352
|
+
"report.js"
|
|
1353
|
+
]
|
|
1354
|
+
},
|
|
1355
|
+
"package:installed:list": {
|
|
1356
|
+
"aliases": [
|
|
1357
|
+
"force:package:installed:list"
|
|
1358
|
+
],
|
|
1359
|
+
"args": {},
|
|
1360
|
+
"deprecateAliases": true,
|
|
1361
|
+
"examples": [
|
|
1362
|
+
"List the installed packages in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
1363
|
+
"List the installed packages in the org with username me@example.com:\n<%= config.bin %> <%= command.id %> --target-org me@example.com"
|
|
1364
|
+
],
|
|
1365
|
+
"flags": {
|
|
1366
|
+
"json": {
|
|
1367
|
+
"description": "Format output as json.",
|
|
1368
|
+
"helpGroup": "GLOBAL",
|
|
1369
|
+
"name": "json",
|
|
1370
|
+
"allowNo": false,
|
|
1371
|
+
"type": "boolean"
|
|
1372
|
+
},
|
|
1373
|
+
"loglevel": {
|
|
1374
|
+
"deprecated": {
|
|
1375
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1376
|
+
},
|
|
1377
|
+
"hidden": true,
|
|
1378
|
+
"name": "loglevel",
|
|
1379
|
+
"hasDynamicHelp": false,
|
|
1380
|
+
"multiple": false,
|
|
1381
|
+
"type": "option"
|
|
1382
|
+
},
|
|
1383
|
+
"target-org": {
|
|
1384
|
+
"aliases": [
|
|
1385
|
+
"targetusername",
|
|
1386
|
+
"u"
|
|
1387
|
+
],
|
|
1388
|
+
"char": "o",
|
|
1389
|
+
"deprecateAliases": true,
|
|
1390
|
+
"name": "target-org",
|
|
1391
|
+
"noCacheDefault": true,
|
|
1392
|
+
"required": true,
|
|
1393
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1394
|
+
"hasDynamicHelp": true,
|
|
1395
|
+
"multiple": false,
|
|
1396
|
+
"type": "option"
|
|
1397
|
+
},
|
|
1398
|
+
"api-version": {
|
|
1399
|
+
"aliases": [
|
|
1400
|
+
"apiversion"
|
|
1401
|
+
],
|
|
1402
|
+
"deprecateAliases": true,
|
|
1403
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1404
|
+
"name": "api-version",
|
|
1405
|
+
"hasDynamicHelp": false,
|
|
1406
|
+
"multiple": false,
|
|
1407
|
+
"type": "option"
|
|
1408
|
+
}
|
|
1409
|
+
},
|
|
1410
|
+
"hasDynamicHelp": true,
|
|
1411
|
+
"hiddenAliases": [],
|
|
1412
|
+
"id": "package:installed:list",
|
|
1413
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1414
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
1415
|
+
"pluginType": "core",
|
|
1416
|
+
"strict": true,
|
|
1417
|
+
"summary": "List the org’s installed packages.",
|
|
1418
|
+
"enableJsonFlag": true,
|
|
1419
|
+
"SF_ENV": "SF_ENV",
|
|
1420
|
+
"requiresProject": true,
|
|
1421
|
+
"isESM": false,
|
|
1422
|
+
"relativePath": [
|
|
1423
|
+
"lib",
|
|
1424
|
+
"commands",
|
|
1425
|
+
"package",
|
|
1426
|
+
"installed",
|
|
1427
|
+
"list.js"
|
|
1428
|
+
]
|
|
1429
|
+
},
|
|
1430
|
+
"package:uninstall:report": {
|
|
1431
|
+
"aliases": [
|
|
1432
|
+
"force:package:uninstall:report"
|
|
1433
|
+
],
|
|
1434
|
+
"args": {},
|
|
1435
|
+
"deprecateAliases": true,
|
|
1436
|
+
"examples": [
|
|
1437
|
+
"Retrieve the status of a package uninstall in your default org using the specified request ID:\n<%= config.bin %> <%= command.id %> --request-id 06y...",
|
|
1438
|
+
"Similar to previous example, but use the org with username me@example.com:\n<%= config.bin %> <%= command.id %> --request-id 06y... --target-org me@example.com"
|
|
1439
|
+
],
|
|
1440
|
+
"flags": {
|
|
1441
|
+
"json": {
|
|
1442
|
+
"description": "Format output as json.",
|
|
1443
|
+
"helpGroup": "GLOBAL",
|
|
1444
|
+
"name": "json",
|
|
1445
|
+
"allowNo": false,
|
|
1446
|
+
"type": "boolean"
|
|
1447
|
+
},
|
|
1448
|
+
"loglevel": {
|
|
1449
|
+
"deprecated": {
|
|
1450
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1451
|
+
},
|
|
1452
|
+
"hidden": true,
|
|
1453
|
+
"name": "loglevel",
|
|
1454
|
+
"hasDynamicHelp": false,
|
|
1455
|
+
"multiple": false,
|
|
1456
|
+
"type": "option"
|
|
1457
|
+
},
|
|
1458
|
+
"target-org": {
|
|
1459
|
+
"aliases": [
|
|
1460
|
+
"targetusername",
|
|
1461
|
+
"u"
|
|
1462
|
+
],
|
|
1463
|
+
"char": "o",
|
|
1464
|
+
"deprecateAliases": true,
|
|
1465
|
+
"name": "target-org",
|
|
1466
|
+
"noCacheDefault": true,
|
|
1467
|
+
"required": true,
|
|
1468
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1469
|
+
"hasDynamicHelp": true,
|
|
1470
|
+
"multiple": false,
|
|
1471
|
+
"type": "option"
|
|
1472
|
+
},
|
|
1473
|
+
"api-version": {
|
|
1474
|
+
"aliases": [
|
|
1475
|
+
"apiversion"
|
|
1476
|
+
],
|
|
1477
|
+
"deprecateAliases": true,
|
|
1478
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1479
|
+
"name": "api-version",
|
|
1480
|
+
"hasDynamicHelp": false,
|
|
1481
|
+
"multiple": false,
|
|
1482
|
+
"type": "option"
|
|
1483
|
+
},
|
|
1484
|
+
"request-id": {
|
|
1485
|
+
"aliases": [
|
|
1486
|
+
"requestid"
|
|
1487
|
+
],
|
|
1488
|
+
"char": "i",
|
|
1489
|
+
"deprecateAliases": true,
|
|
1490
|
+
"name": "request-id",
|
|
1491
|
+
"required": true,
|
|
1492
|
+
"summary": "ID of the package uninstall request you want to check; starts with 06y.",
|
|
1493
|
+
"hasDynamicHelp": false,
|
|
1494
|
+
"multiple": false,
|
|
1495
|
+
"type": "option"
|
|
1496
|
+
}
|
|
1497
|
+
},
|
|
1498
|
+
"hasDynamicHelp": true,
|
|
1499
|
+
"hiddenAliases": [],
|
|
1500
|
+
"id": "package:uninstall:report",
|
|
1501
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1502
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
1503
|
+
"pluginType": "core",
|
|
1504
|
+
"strict": true,
|
|
1505
|
+
"summary": "Retrieve the status of a package uninstall request.",
|
|
1506
|
+
"enableJsonFlag": true,
|
|
1507
|
+
"SF_ENV": "SF_ENV",
|
|
1508
|
+
"isESM": false,
|
|
1509
|
+
"relativePath": [
|
|
1510
|
+
"lib",
|
|
1511
|
+
"commands",
|
|
1512
|
+
"package",
|
|
1513
|
+
"uninstall",
|
|
1514
|
+
"report.js"
|
|
1515
|
+
]
|
|
1516
|
+
},
|
|
1517
|
+
"package:version:create": {
|
|
1518
|
+
"aliases": [
|
|
1519
|
+
"force:package:version:create"
|
|
1520
|
+
],
|
|
1521
|
+
"args": {},
|
|
1522
|
+
"deprecateAliases": true,
|
|
1523
|
+
"description": "The package version is based on the package contents in the specified directory.\n\nTo retrieve details about a package version create request, including status and package version ID (04t), run \"<%= config.bin %> package version create report -i 08c...\".\n\nWe recommend that you specify the --installation-key parameter to protect the contents of your package and to prevent unauthorized installation of your package.\n\nTo list package version creation requests in the org, run \"<%= config.bin %> package version create list\".\nTo promote a package version to released, you must use the --code-coverage parameter. The package must also meet the code coverage requirements. This requirement applies to both managed and unlocked packages.\n\nWe don’t calculate code coverage for org-dependent unlocked packages, or for package versions that specify --skip-validation.",
|
|
1524
|
+
"examples": [
|
|
1525
|
+
"Create a package version from the contents of the \"common\" directory and give it an installation key of \"password123\"; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123",
|
|
1526
|
+
"Create a package version from a package with the specified alias; uses the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\" --installation-key password123 --target-dev-hub devhub@example.com",
|
|
1527
|
+
"Create a package version from a package with the specified ID:\n<%= config.bin %> <%= command.id %> --package 0Ho... --installation-key password123",
|
|
1528
|
+
"Create a package version and skip the validation step:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123 --skip-validation"
|
|
1529
|
+
],
|
|
1530
|
+
"flags": {
|
|
1531
|
+
"json": {
|
|
1532
|
+
"description": "Format output as json.",
|
|
1533
|
+
"helpGroup": "GLOBAL",
|
|
1534
|
+
"name": "json",
|
|
1535
|
+
"allowNo": false,
|
|
1536
|
+
"type": "boolean"
|
|
1537
|
+
},
|
|
1538
|
+
"loglevel": {
|
|
1539
|
+
"deprecated": {
|
|
1540
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1541
|
+
},
|
|
1542
|
+
"hidden": true,
|
|
1543
|
+
"name": "loglevel",
|
|
1544
|
+
"hasDynamicHelp": false,
|
|
1545
|
+
"multiple": false,
|
|
1546
|
+
"type": "option"
|
|
1547
|
+
},
|
|
1548
|
+
"target-dev-hub": {
|
|
1549
|
+
"aliases": [
|
|
1550
|
+
"targetdevhubusername",
|
|
1551
|
+
"target-hub-org"
|
|
1552
|
+
],
|
|
1553
|
+
"char": "v",
|
|
1554
|
+
"deprecateAliases": true,
|
|
1555
|
+
"name": "target-dev-hub",
|
|
1556
|
+
"noCacheDefault": true,
|
|
1557
|
+
"required": true,
|
|
1558
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1559
|
+
"hasDynamicHelp": true,
|
|
1560
|
+
"multiple": false,
|
|
1561
|
+
"type": "option"
|
|
1562
|
+
},
|
|
1563
|
+
"api-version": {
|
|
1564
|
+
"aliases": [
|
|
1565
|
+
"apiversion"
|
|
1566
|
+
],
|
|
1567
|
+
"deprecateAliases": true,
|
|
1568
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1569
|
+
"name": "api-version",
|
|
1570
|
+
"hasDynamicHelp": false,
|
|
1571
|
+
"multiple": false,
|
|
1572
|
+
"type": "option"
|
|
1573
|
+
},
|
|
1574
|
+
"branch": {
|
|
1575
|
+
"char": "b",
|
|
1576
|
+
"name": "branch",
|
|
1577
|
+
"summary": "Name of the branch in your source control system that the package version is based on.",
|
|
1578
|
+
"hasDynamicHelp": false,
|
|
1579
|
+
"multiple": false,
|
|
1580
|
+
"type": "option"
|
|
1581
|
+
},
|
|
1582
|
+
"build-instance": {
|
|
1583
|
+
"aliases": [
|
|
1584
|
+
"buildinstance"
|
|
1585
|
+
],
|
|
1586
|
+
"char": "s",
|
|
1587
|
+
"deprecateAliases": true,
|
|
1588
|
+
"hidden": true,
|
|
1589
|
+
"name": "build-instance",
|
|
1590
|
+
"summary": "Instance where the package version will be created, such as NA50.",
|
|
1591
|
+
"hasDynamicHelp": false,
|
|
1592
|
+
"multiple": false,
|
|
1593
|
+
"type": "option"
|
|
1594
|
+
},
|
|
1595
|
+
"code-coverage": {
|
|
1596
|
+
"aliases": [
|
|
1597
|
+
"codecoverage"
|
|
1598
|
+
],
|
|
1599
|
+
"char": "c",
|
|
1600
|
+
"deprecateAliases": true,
|
|
1601
|
+
"description": "Before you can promote and release a managed or unlocked package version, the Apex code must meet a minimum 75% code coverage requirement. We don’t calculate code coverage for org-dependent unlocked packages or for package versions that specify --skip-validation.",
|
|
1602
|
+
"exclusive": [
|
|
1603
|
+
"skip-validation"
|
|
1604
|
+
],
|
|
1605
|
+
"name": "code-coverage",
|
|
1606
|
+
"summary": "Calculate and store the code coverage percentage by running the packaged Apex tests included in this package version.",
|
|
1607
|
+
"allowNo": false,
|
|
1262
1608
|
"type": "boolean"
|
|
1263
1609
|
},
|
|
1264
1610
|
"definition-file": {
|
|
@@ -1820,196 +2166,9 @@
|
|
|
1820
2166
|
"orderby"
|
|
1821
2167
|
],
|
|
1822
2168
|
"char": "o",
|
|
1823
|
-
"deprecateAliases": true,
|
|
1824
|
-
"name": "order-by",
|
|
1825
|
-
"summary": "Package version fields used to order the list.",
|
|
1826
|
-
"hasDynamicHelp": false,
|
|
1827
|
-
"multiple": false,
|
|
1828
|
-
"type": "option"
|
|
1829
|
-
},
|
|
1830
|
-
"verbose": {
|
|
1831
|
-
"name": "verbose",
|
|
1832
|
-
"summary": "Display extended package version details.",
|
|
1833
|
-
"allowNo": false,
|
|
1834
|
-
"type": "boolean"
|
|
1835
|
-
}
|
|
1836
|
-
},
|
|
1837
|
-
"hasDynamicHelp": true,
|
|
1838
|
-
"hiddenAliases": [],
|
|
1839
|
-
"id": "package:version:list",
|
|
1840
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1841
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1842
|
-
"pluginType": "core",
|
|
1843
|
-
"strict": true,
|
|
1844
|
-
"summary": "List all package versions in the Dev Hub org.",
|
|
1845
|
-
"enableJsonFlag": true,
|
|
1846
|
-
"SF_ENV": "SF_ENV",
|
|
1847
|
-
"isESM": false,
|
|
1848
|
-
"relativePath": [
|
|
1849
|
-
"lib",
|
|
1850
|
-
"commands",
|
|
1851
|
-
"package",
|
|
1852
|
-
"version",
|
|
1853
|
-
"list.js"
|
|
1854
|
-
]
|
|
1855
|
-
},
|
|
1856
|
-
"package:version:promote": {
|
|
1857
|
-
"aliases": [
|
|
1858
|
-
"force:package:version:promote"
|
|
1859
|
-
],
|
|
1860
|
-
"args": {},
|
|
1861
|
-
"deprecateAliases": true,
|
|
1862
|
-
"description": "Supply the ID or alias of the package version you want to promote. Promotes the package version to released status.",
|
|
1863
|
-
"examples": [
|
|
1864
|
-
"Promote the package version with the specified ID to released; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t...",
|
|
1865
|
-
"Promote the package version with the specified alias to released; uses the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package awesome_package_alias --target-dev-hub devhub@example.com",
|
|
1866
|
-
"Promote the package version with an alias that has spaces to released:\n<%= config.bin %> <%= command.id %> --package \"Awesome Package Alias\""
|
|
1867
|
-
],
|
|
1868
|
-
"flags": {
|
|
1869
|
-
"json": {
|
|
1870
|
-
"description": "Format output as json.",
|
|
1871
|
-
"helpGroup": "GLOBAL",
|
|
1872
|
-
"name": "json",
|
|
1873
|
-
"allowNo": false,
|
|
1874
|
-
"type": "boolean"
|
|
1875
|
-
},
|
|
1876
|
-
"loglevel": {
|
|
1877
|
-
"deprecated": {
|
|
1878
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1879
|
-
},
|
|
1880
|
-
"hidden": true,
|
|
1881
|
-
"name": "loglevel",
|
|
1882
|
-
"hasDynamicHelp": false,
|
|
1883
|
-
"multiple": false,
|
|
1884
|
-
"type": "option"
|
|
1885
|
-
},
|
|
1886
|
-
"target-dev-hub": {
|
|
1887
|
-
"aliases": [
|
|
1888
|
-
"targetdevhubusername",
|
|
1889
|
-
"target-hub-org"
|
|
1890
|
-
],
|
|
1891
|
-
"char": "v",
|
|
1892
|
-
"deprecateAliases": true,
|
|
1893
|
-
"name": "target-dev-hub",
|
|
1894
|
-
"noCacheDefault": true,
|
|
1895
|
-
"required": true,
|
|
1896
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1897
|
-
"hasDynamicHelp": true,
|
|
1898
|
-
"multiple": false,
|
|
1899
|
-
"type": "option"
|
|
1900
|
-
},
|
|
1901
|
-
"api-version": {
|
|
1902
|
-
"aliases": [
|
|
1903
|
-
"apiversion"
|
|
1904
|
-
],
|
|
1905
|
-
"deprecateAliases": true,
|
|
1906
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1907
|
-
"name": "api-version",
|
|
1908
|
-
"hasDynamicHelp": false,
|
|
1909
|
-
"multiple": false,
|
|
1910
|
-
"type": "option"
|
|
1911
|
-
},
|
|
1912
|
-
"package": {
|
|
1913
|
-
"char": "p",
|
|
1914
|
-
"name": "package",
|
|
1915
|
-
"required": true,
|
|
1916
|
-
"summary": "ID (starts with 04t) or alias of the package version to promote.",
|
|
1917
|
-
"hasDynamicHelp": false,
|
|
1918
|
-
"multiple": false,
|
|
1919
|
-
"type": "option"
|
|
1920
|
-
},
|
|
1921
|
-
"no-prompt": {
|
|
1922
|
-
"aliases": [
|
|
1923
|
-
"noprompt"
|
|
1924
|
-
],
|
|
1925
|
-
"char": "n",
|
|
1926
|
-
"deprecateAliases": true,
|
|
1927
|
-
"name": "no-prompt",
|
|
1928
|
-
"summary": "Don't prompt to confirm setting the package version as released.",
|
|
1929
|
-
"allowNo": false,
|
|
1930
|
-
"type": "boolean"
|
|
1931
|
-
}
|
|
1932
|
-
},
|
|
1933
|
-
"hasDynamicHelp": true,
|
|
1934
|
-
"hiddenAliases": [],
|
|
1935
|
-
"id": "package:version:promote",
|
|
1936
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1937
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1938
|
-
"pluginType": "core",
|
|
1939
|
-
"strict": true,
|
|
1940
|
-
"summary": "Promote a package version to released.",
|
|
1941
|
-
"enableJsonFlag": true,
|
|
1942
|
-
"SF_ENV": "SF_ENV",
|
|
1943
|
-
"requiresProject": true,
|
|
1944
|
-
"isESM": false,
|
|
1945
|
-
"relativePath": [
|
|
1946
|
-
"lib",
|
|
1947
|
-
"commands",
|
|
1948
|
-
"package",
|
|
1949
|
-
"version",
|
|
1950
|
-
"promote.js"
|
|
1951
|
-
]
|
|
1952
|
-
},
|
|
1953
|
-
"package:version:report": {
|
|
1954
|
-
"aliases": [
|
|
1955
|
-
"force:package:version:report"
|
|
1956
|
-
],
|
|
1957
|
-
"args": {},
|
|
1958
|
-
"deprecateAliases": true,
|
|
1959
|
-
"description": "To update package version values, run \"<%= config.bin %> package version update\".",
|
|
1960
|
-
"examples": [
|
|
1961
|
-
"Retrieve details about the package version with the specified ID from your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t...",
|
|
1962
|
-
"Retrieve details about the package version with the specified alias (that contains spaces) from the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\" --target-dev-hub devhub@example.com"
|
|
1963
|
-
],
|
|
1964
|
-
"flags": {
|
|
1965
|
-
"json": {
|
|
1966
|
-
"description": "Format output as json.",
|
|
1967
|
-
"helpGroup": "GLOBAL",
|
|
1968
|
-
"name": "json",
|
|
1969
|
-
"allowNo": false,
|
|
1970
|
-
"type": "boolean"
|
|
1971
|
-
},
|
|
1972
|
-
"loglevel": {
|
|
1973
|
-
"deprecated": {
|
|
1974
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
1975
|
-
},
|
|
1976
|
-
"hidden": true,
|
|
1977
|
-
"name": "loglevel",
|
|
1978
|
-
"hasDynamicHelp": false,
|
|
1979
|
-
"multiple": false,
|
|
1980
|
-
"type": "option"
|
|
1981
|
-
},
|
|
1982
|
-
"target-dev-hub": {
|
|
1983
|
-
"aliases": [
|
|
1984
|
-
"targetdevhubusername",
|
|
1985
|
-
"target-hub-org"
|
|
1986
|
-
],
|
|
1987
|
-
"char": "v",
|
|
1988
|
-
"deprecateAliases": true,
|
|
1989
|
-
"name": "target-dev-hub",
|
|
1990
|
-
"noCacheDefault": true,
|
|
1991
|
-
"required": true,
|
|
1992
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1993
|
-
"hasDynamicHelp": true,
|
|
1994
|
-
"multiple": false,
|
|
1995
|
-
"type": "option"
|
|
1996
|
-
},
|
|
1997
|
-
"api-version": {
|
|
1998
|
-
"aliases": [
|
|
1999
|
-
"apiversion"
|
|
2000
|
-
],
|
|
2001
|
-
"deprecateAliases": true,
|
|
2002
|
-
"description": "Override the api version used for api requests made by this command",
|
|
2003
|
-
"name": "api-version",
|
|
2004
|
-
"hasDynamicHelp": false,
|
|
2005
|
-
"multiple": false,
|
|
2006
|
-
"type": "option"
|
|
2007
|
-
},
|
|
2008
|
-
"package": {
|
|
2009
|
-
"char": "p",
|
|
2010
|
-
"name": "package",
|
|
2011
|
-
"required": true,
|
|
2012
|
-
"summary": "ID (starts with 04t) or alias of the package to retrieve details for.",
|
|
2169
|
+
"deprecateAliases": true,
|
|
2170
|
+
"name": "order-by",
|
|
2171
|
+
"summary": "Package version fields used to order the list.",
|
|
2013
2172
|
"hasDynamicHelp": false,
|
|
2014
2173
|
"multiple": false,
|
|
2015
2174
|
"type": "option"
|
|
@@ -2023,30 +2182,34 @@
|
|
|
2023
2182
|
},
|
|
2024
2183
|
"hasDynamicHelp": true,
|
|
2025
2184
|
"hiddenAliases": [],
|
|
2026
|
-
"id": "package:version:
|
|
2185
|
+
"id": "package:version:list",
|
|
2027
2186
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2028
2187
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2029
2188
|
"pluginType": "core",
|
|
2030
2189
|
"strict": true,
|
|
2031
|
-
"summary": "
|
|
2190
|
+
"summary": "List all package versions in the Dev Hub org.",
|
|
2032
2191
|
"enableJsonFlag": true,
|
|
2033
2192
|
"SF_ENV": "SF_ENV",
|
|
2034
|
-
"requiresProject": true,
|
|
2035
2193
|
"isESM": false,
|
|
2036
2194
|
"relativePath": [
|
|
2037
2195
|
"lib",
|
|
2038
2196
|
"commands",
|
|
2039
2197
|
"package",
|
|
2040
2198
|
"version",
|
|
2041
|
-
"
|
|
2199
|
+
"list.js"
|
|
2042
2200
|
]
|
|
2043
2201
|
},
|
|
2044
|
-
"package:version:
|
|
2045
|
-
"aliases": [
|
|
2202
|
+
"package:version:promote": {
|
|
2203
|
+
"aliases": [
|
|
2204
|
+
"force:package:version:promote"
|
|
2205
|
+
],
|
|
2046
2206
|
"args": {},
|
|
2047
|
-
"
|
|
2207
|
+
"deprecateAliases": true,
|
|
2208
|
+
"description": "Supply the ID or alias of the package version you want to promote. Promotes the package version to released status.",
|
|
2048
2209
|
"examples": [
|
|
2049
|
-
"
|
|
2210
|
+
"Promote the package version with the specified ID to released; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t...",
|
|
2211
|
+
"Promote the package version with the specified alias to released; uses the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package awesome_package_alias --target-dev-hub devhub@example.com",
|
|
2212
|
+
"Promote the package version with an alias that has spaces to released:\n<%= config.bin %> <%= command.id %> --package \"Awesome Package Alias\""
|
|
2050
2213
|
],
|
|
2051
2214
|
"flags": {
|
|
2052
2215
|
"json": {
|
|
@@ -2066,29 +2229,29 @@
|
|
|
2066
2229
|
"multiple": false,
|
|
2067
2230
|
"type": "option"
|
|
2068
2231
|
},
|
|
2069
|
-
"
|
|
2232
|
+
"target-dev-hub": {
|
|
2070
2233
|
"aliases": [
|
|
2071
|
-
"
|
|
2234
|
+
"targetdevhubusername",
|
|
2235
|
+
"target-hub-org"
|
|
2072
2236
|
],
|
|
2237
|
+
"char": "v",
|
|
2073
2238
|
"deprecateAliases": true,
|
|
2074
|
-
"
|
|
2075
|
-
"
|
|
2076
|
-
"
|
|
2239
|
+
"name": "target-dev-hub",
|
|
2240
|
+
"noCacheDefault": true,
|
|
2241
|
+
"required": true,
|
|
2242
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2243
|
+
"hasDynamicHelp": true,
|
|
2077
2244
|
"multiple": false,
|
|
2078
2245
|
"type": "option"
|
|
2079
2246
|
},
|
|
2080
|
-
"
|
|
2247
|
+
"api-version": {
|
|
2081
2248
|
"aliases": [
|
|
2082
|
-
"
|
|
2083
|
-
"u"
|
|
2249
|
+
"apiversion"
|
|
2084
2250
|
],
|
|
2085
|
-
"char": "o",
|
|
2086
2251
|
"deprecateAliases": true,
|
|
2087
|
-
"
|
|
2088
|
-
"
|
|
2089
|
-
"
|
|
2090
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2091
|
-
"hasDynamicHelp": true,
|
|
2252
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2253
|
+
"name": "api-version",
|
|
2254
|
+
"hasDynamicHelp": false,
|
|
2092
2255
|
"multiple": false,
|
|
2093
2256
|
"type": "option"
|
|
2094
2257
|
},
|
|
@@ -2096,30 +2259,31 @@
|
|
|
2096
2259
|
"char": "p",
|
|
2097
2260
|
"name": "package",
|
|
2098
2261
|
"required": true,
|
|
2099
|
-
"summary": "
|
|
2262
|
+
"summary": "ID (starts with 04t) or alias of the package version to promote.",
|
|
2100
2263
|
"hasDynamicHelp": false,
|
|
2101
2264
|
"multiple": false,
|
|
2102
2265
|
"type": "option"
|
|
2103
2266
|
},
|
|
2104
|
-
"
|
|
2105
|
-
"
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
"
|
|
2109
|
-
"
|
|
2110
|
-
"
|
|
2111
|
-
"
|
|
2267
|
+
"no-prompt": {
|
|
2268
|
+
"aliases": [
|
|
2269
|
+
"noprompt"
|
|
2270
|
+
],
|
|
2271
|
+
"char": "n",
|
|
2272
|
+
"deprecateAliases": true,
|
|
2273
|
+
"name": "no-prompt",
|
|
2274
|
+
"summary": "Don't prompt to confirm setting the package version as released.",
|
|
2275
|
+
"allowNo": false,
|
|
2276
|
+
"type": "boolean"
|
|
2112
2277
|
}
|
|
2113
2278
|
},
|
|
2114
2279
|
"hasDynamicHelp": true,
|
|
2115
|
-
"hidden": true,
|
|
2116
2280
|
"hiddenAliases": [],
|
|
2117
|
-
"id": "package:version:
|
|
2281
|
+
"id": "package:version:promote",
|
|
2118
2282
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2119
2283
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2120
2284
|
"pluginType": "core",
|
|
2121
2285
|
"strict": true,
|
|
2122
|
-
"summary": "
|
|
2286
|
+
"summary": "Promote a package version to released.",
|
|
2123
2287
|
"enableJsonFlag": true,
|
|
2124
2288
|
"SF_ENV": "SF_ENV",
|
|
2125
2289
|
"requiresProject": true,
|
|
@@ -2129,20 +2293,19 @@
|
|
|
2129
2293
|
"commands",
|
|
2130
2294
|
"package",
|
|
2131
2295
|
"version",
|
|
2132
|
-
"
|
|
2296
|
+
"promote.js"
|
|
2133
2297
|
]
|
|
2134
2298
|
},
|
|
2135
|
-
"package:version:
|
|
2299
|
+
"package:version:report": {
|
|
2136
2300
|
"aliases": [
|
|
2137
|
-
"force:package:version:
|
|
2301
|
+
"force:package:version:report"
|
|
2138
2302
|
],
|
|
2139
2303
|
"args": {},
|
|
2140
2304
|
"deprecateAliases": true,
|
|
2141
|
-
"description": "
|
|
2305
|
+
"description": "To update package version values, run \"<%= config.bin %> package version update\".",
|
|
2142
2306
|
"examples": [
|
|
2143
|
-
"
|
|
2144
|
-
"
|
|
2145
|
-
"Update the package version that has the specified ID with a new description:\n<%= config.bin %> <%= command.id %> --package 04t... --version-description \"New Package Version Description\""
|
|
2307
|
+
"Retrieve details about the package version with the specified ID from your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t...",
|
|
2308
|
+
"Retrieve details about the package version with the specified alias (that contains spaces) from the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\" --target-dev-hub devhub@example.com"
|
|
2146
2309
|
],
|
|
2147
2310
|
"flags": {
|
|
2148
2311
|
"json": {
|
|
@@ -2192,72 +2355,26 @@
|
|
|
2192
2355
|
"char": "p",
|
|
2193
2356
|
"name": "package",
|
|
2194
2357
|
"required": true,
|
|
2195
|
-
"summary": "ID (starts with 04t) or alias of the package to
|
|
2196
|
-
"hasDynamicHelp": false,
|
|
2197
|
-
"multiple": false,
|
|
2198
|
-
"type": "option"
|
|
2199
|
-
},
|
|
2200
|
-
"version-name": {
|
|
2201
|
-
"aliases": [
|
|
2202
|
-
"versionname"
|
|
2203
|
-
],
|
|
2204
|
-
"char": "a",
|
|
2205
|
-
"deprecateAliases": true,
|
|
2206
|
-
"name": "version-name",
|
|
2207
|
-
"summary": "New package version name.",
|
|
2208
|
-
"hasDynamicHelp": false,
|
|
2209
|
-
"multiple": false,
|
|
2210
|
-
"type": "option"
|
|
2211
|
-
},
|
|
2212
|
-
"version-description": {
|
|
2213
|
-
"aliases": [
|
|
2214
|
-
"versiondescription"
|
|
2215
|
-
],
|
|
2216
|
-
"char": "e",
|
|
2217
|
-
"deprecateAliases": true,
|
|
2218
|
-
"name": "version-description",
|
|
2219
|
-
"summary": "New package version description.",
|
|
2220
|
-
"hasDynamicHelp": false,
|
|
2221
|
-
"multiple": false,
|
|
2222
|
-
"type": "option"
|
|
2223
|
-
},
|
|
2224
|
-
"branch": {
|
|
2225
|
-
"char": "b",
|
|
2226
|
-
"name": "branch",
|
|
2227
|
-
"summary": "New package version branch.",
|
|
2228
|
-
"hasDynamicHelp": false,
|
|
2229
|
-
"multiple": false,
|
|
2230
|
-
"type": "option"
|
|
2231
|
-
},
|
|
2232
|
-
"tag": {
|
|
2233
|
-
"char": "t",
|
|
2234
|
-
"name": "tag",
|
|
2235
|
-
"summary": "New package version tag.",
|
|
2358
|
+
"summary": "ID (starts with 04t) or alias of the package to retrieve details for.",
|
|
2236
2359
|
"hasDynamicHelp": false,
|
|
2237
2360
|
"multiple": false,
|
|
2238
2361
|
"type": "option"
|
|
2239
2362
|
},
|
|
2240
|
-
"
|
|
2241
|
-
"
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
"
|
|
2245
|
-
"deprecateAliases": true,
|
|
2246
|
-
"name": "installation-key",
|
|
2247
|
-
"summary": "New installation key for key-protected package (default: null)",
|
|
2248
|
-
"hasDynamicHelp": false,
|
|
2249
|
-
"multiple": false,
|
|
2250
|
-
"type": "option"
|
|
2363
|
+
"verbose": {
|
|
2364
|
+
"name": "verbose",
|
|
2365
|
+
"summary": "Display extended package version details.",
|
|
2366
|
+
"allowNo": false,
|
|
2367
|
+
"type": "boolean"
|
|
2251
2368
|
}
|
|
2252
2369
|
},
|
|
2253
2370
|
"hasDynamicHelp": true,
|
|
2254
2371
|
"hiddenAliases": [],
|
|
2255
|
-
"id": "package:version:
|
|
2372
|
+
"id": "package:version:report",
|
|
2256
2373
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2257
2374
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2258
2375
|
"pluginType": "core",
|
|
2259
2376
|
"strict": true,
|
|
2260
|
-
"summary": "
|
|
2377
|
+
"summary": "Retrieve details about a package version in the Dev Hub org.",
|
|
2261
2378
|
"enableJsonFlag": true,
|
|
2262
2379
|
"SF_ENV": "SF_ENV",
|
|
2263
2380
|
"requiresProject": true,
|
|
@@ -2267,19 +2384,15 @@
|
|
|
2267
2384
|
"commands",
|
|
2268
2385
|
"package",
|
|
2269
2386
|
"version",
|
|
2270
|
-
"
|
|
2387
|
+
"report.js"
|
|
2271
2388
|
]
|
|
2272
2389
|
},
|
|
2273
|
-
"
|
|
2274
|
-
"aliases": [
|
|
2275
|
-
"force:package1:version:create"
|
|
2276
|
-
],
|
|
2390
|
+
"package:version:retrieve": {
|
|
2391
|
+
"aliases": [],
|
|
2277
2392
|
"args": {},
|
|
2278
|
-
"
|
|
2279
|
-
"description": "The package version is based on the contents of the specified metadata package. Omit --managed-released if you want to create an unmanaged package version.",
|
|
2393
|
+
"description": "Retrieving a package version downloads the metadata into the directory you specify.\n\nYou can retrieve metadata for a second- or first-generation managed package, or an unlocked package.\n\nSpecify the subscriber package version ID (starts with 04t) and the path to an empty directory when you run this command.",
|
|
2280
2394
|
"examples": [
|
|
2281
|
-
"
|
|
2282
|
-
"Same as previous example, but provide a description and wait for 30 minutes for the package version to be created; use the specified org:\n<%= config.bin %> <%= command.id %> --package-id 033... --name example --description \"example description\" --wait 30 --target-org myorg@example.com"
|
|
2395
|
+
"Retrieve package metadata for a subscriber package version ID (starts with 04t) into my-folder/ within your Salesforce DX project directory:\n<%= config.bin %> <%= command.id %> --package 04t... --output-dir my-folder –-target-org my-scratch\nIf you omit --target-org, this command runs against your default org."
|
|
2283
2396
|
],
|
|
2284
2397
|
"flags": {
|
|
2285
2398
|
"json": {
|
|
@@ -2293,143 +2406,66 @@
|
|
|
2293
2406
|
"deprecated": {
|
|
2294
2407
|
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
2295
2408
|
},
|
|
2296
|
-
"hidden": true,
|
|
2297
|
-
"name": "loglevel",
|
|
2298
|
-
"hasDynamicHelp": false,
|
|
2299
|
-
"multiple": false,
|
|
2300
|
-
"type": "option"
|
|
2301
|
-
},
|
|
2302
|
-
"target-org": {
|
|
2303
|
-
"aliases": [
|
|
2304
|
-
"targetusername",
|
|
2305
|
-
"u"
|
|
2306
|
-
],
|
|
2307
|
-
"char": "o",
|
|
2308
|
-
"deprecateAliases": true,
|
|
2309
|
-
"name": "target-org",
|
|
2310
|
-
"noCacheDefault": true,
|
|
2311
|
-
"required": true,
|
|
2312
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2313
|
-
"hasDynamicHelp": true,
|
|
2314
|
-
"multiple": false,
|
|
2315
|
-
"type": "option"
|
|
2316
|
-
},
|
|
2317
|
-
"api-version": {
|
|
2318
|
-
"aliases": [
|
|
2319
|
-
"apiversion"
|
|
2320
|
-
],
|
|
2321
|
-
"deprecateAliases": true,
|
|
2322
|
-
"description": "Override the api version used for api requests made by this command",
|
|
2323
|
-
"name": "api-version",
|
|
2324
|
-
"hasDynamicHelp": false,
|
|
2325
|
-
"multiple": false,
|
|
2326
|
-
"type": "option"
|
|
2327
|
-
},
|
|
2328
|
-
"package-id": {
|
|
2329
|
-
"aliases": [
|
|
2330
|
-
"packageid"
|
|
2331
|
-
],
|
|
2332
|
-
"char": "i",
|
|
2333
|
-
"deprecateAliases": true,
|
|
2334
|
-
"name": "package-id",
|
|
2335
|
-
"required": true,
|
|
2336
|
-
"summary": "ID of the metadata package (starts with 033) of which you’re creating a new version.",
|
|
2337
|
-
"hasDynamicHelp": false,
|
|
2338
|
-
"multiple": false,
|
|
2339
|
-
"type": "option"
|
|
2340
|
-
},
|
|
2341
|
-
"name": {
|
|
2342
|
-
"char": "n",
|
|
2343
|
-
"name": "name",
|
|
2344
|
-
"required": true,
|
|
2345
|
-
"summary": "Package version name.",
|
|
2346
|
-
"hasDynamicHelp": false,
|
|
2347
|
-
"multiple": false,
|
|
2348
|
-
"type": "option"
|
|
2349
|
-
},
|
|
2350
|
-
"description": {
|
|
2351
|
-
"char": "d",
|
|
2352
|
-
"name": "description",
|
|
2353
|
-
"summary": "Package version description.",
|
|
2354
|
-
"hasDynamicHelp": false,
|
|
2355
|
-
"multiple": false,
|
|
2356
|
-
"type": "option"
|
|
2357
|
-
},
|
|
2358
|
-
"version": {
|
|
2359
|
-
"char": "v",
|
|
2360
|
-
"name": "version",
|
|
2361
|
-
"summary": "Package version in major.minor format, for example, 3.2.",
|
|
2362
|
-
"hasDynamicHelp": false,
|
|
2363
|
-
"multiple": false,
|
|
2364
|
-
"type": "option"
|
|
2365
|
-
},
|
|
2366
|
-
"managed-released": {
|
|
2367
|
-
"aliases": [
|
|
2368
|
-
"managedrelease"
|
|
2369
|
-
],
|
|
2370
|
-
"char": "m",
|
|
2371
|
-
"deprecateAliases": true,
|
|
2372
|
-
"description": "To create a beta version, don’t include this parameter.",
|
|
2373
|
-
"name": "managed-released",
|
|
2374
|
-
"summary": "Create a managed package version.",
|
|
2375
|
-
"allowNo": false,
|
|
2376
|
-
"type": "boolean"
|
|
2377
|
-
},
|
|
2378
|
-
"release-notes-url": {
|
|
2379
|
-
"aliases": [
|
|
2380
|
-
"releasenotesurl"
|
|
2381
|
-
],
|
|
2382
|
-
"char": "r",
|
|
2383
|
-
"deprecateAliases": true,
|
|
2384
|
-
"description": "This link is displayed in the package installation UI to provide release notes for this package version to subscribers.",
|
|
2385
|
-
"name": "release-notes-url",
|
|
2386
|
-
"summary": "Release notes URL.",
|
|
2409
|
+
"hidden": true,
|
|
2410
|
+
"name": "loglevel",
|
|
2387
2411
|
"hasDynamicHelp": false,
|
|
2388
2412
|
"multiple": false,
|
|
2389
2413
|
"type": "option"
|
|
2390
2414
|
},
|
|
2391
|
-
"
|
|
2415
|
+
"api-version": {
|
|
2392
2416
|
"aliases": [
|
|
2393
|
-
"
|
|
2417
|
+
"apiversion"
|
|
2394
2418
|
],
|
|
2395
|
-
"char": "p",
|
|
2396
2419
|
"deprecateAliases": true,
|
|
2397
|
-
"description": "
|
|
2398
|
-
"name": "
|
|
2399
|
-
"summary": "Post install URL.",
|
|
2420
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2421
|
+
"name": "api-version",
|
|
2400
2422
|
"hasDynamicHelp": false,
|
|
2401
2423
|
"multiple": false,
|
|
2402
2424
|
"type": "option"
|
|
2403
2425
|
},
|
|
2404
|
-
"
|
|
2426
|
+
"target-org": {
|
|
2405
2427
|
"aliases": [
|
|
2406
|
-
"
|
|
2428
|
+
"targetusername",
|
|
2429
|
+
"u"
|
|
2407
2430
|
],
|
|
2408
|
-
"char": "
|
|
2431
|
+
"char": "o",
|
|
2409
2432
|
"deprecateAliases": true,
|
|
2410
|
-
"name": "
|
|
2411
|
-
"
|
|
2433
|
+
"name": "target-org",
|
|
2434
|
+
"noCacheDefault": true,
|
|
2435
|
+
"required": true,
|
|
2436
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2437
|
+
"hasDynamicHelp": true,
|
|
2438
|
+
"multiple": false,
|
|
2439
|
+
"type": "option"
|
|
2440
|
+
},
|
|
2441
|
+
"package": {
|
|
2442
|
+
"char": "p",
|
|
2443
|
+
"name": "package",
|
|
2444
|
+
"required": true,
|
|
2445
|
+
"summary": "Subscriber package version ID (starts with 04t).",
|
|
2412
2446
|
"hasDynamicHelp": false,
|
|
2413
2447
|
"multiple": false,
|
|
2414
2448
|
"type": "option"
|
|
2415
2449
|
},
|
|
2416
|
-
"
|
|
2417
|
-
"char": "
|
|
2418
|
-
"name": "
|
|
2419
|
-
"summary": "
|
|
2450
|
+
"output-dir": {
|
|
2451
|
+
"char": "d",
|
|
2452
|
+
"name": "output-dir",
|
|
2453
|
+
"summary": "Path within your Salesforce DX project directory in which to download the metadata. This directory must be empty.",
|
|
2454
|
+
"default": "force-app",
|
|
2420
2455
|
"hasDynamicHelp": false,
|
|
2421
2456
|
"multiple": false,
|
|
2422
2457
|
"type": "option"
|
|
2423
2458
|
}
|
|
2424
2459
|
},
|
|
2425
2460
|
"hasDynamicHelp": true,
|
|
2461
|
+
"hidden": true,
|
|
2426
2462
|
"hiddenAliases": [],
|
|
2427
|
-
"id": "
|
|
2463
|
+
"id": "package:version:retrieve",
|
|
2428
2464
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2429
2465
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2430
2466
|
"pluginType": "core",
|
|
2431
2467
|
"strict": true,
|
|
2432
|
-
"summary": "
|
|
2468
|
+
"summary": "Retrieve package metadata for a specified package version.",
|
|
2433
2469
|
"enableJsonFlag": true,
|
|
2434
2470
|
"SF_ENV": "SF_ENV",
|
|
2435
2471
|
"requiresProject": true,
|
|
@@ -2437,20 +2473,22 @@
|
|
|
2437
2473
|
"relativePath": [
|
|
2438
2474
|
"lib",
|
|
2439
2475
|
"commands",
|
|
2440
|
-
"
|
|
2476
|
+
"package",
|
|
2441
2477
|
"version",
|
|
2442
|
-
"
|
|
2478
|
+
"retrieve.js"
|
|
2443
2479
|
]
|
|
2444
2480
|
},
|
|
2445
|
-
"
|
|
2481
|
+
"package:version:update": {
|
|
2446
2482
|
"aliases": [
|
|
2447
|
-
"force:
|
|
2483
|
+
"force:package:version:update"
|
|
2448
2484
|
],
|
|
2449
2485
|
"args": {},
|
|
2450
2486
|
"deprecateAliases": true,
|
|
2487
|
+
"description": "Specify a new value for each option you want to update.\n\nTo display details about a package version, run \"<%= config.bin %> package version display\".",
|
|
2451
2488
|
"examples": [
|
|
2452
|
-
"
|
|
2453
|
-
"
|
|
2489
|
+
"Update the package version that has the specified alias (that contains spaces) with a new installation key \"password123\"; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\" --installation-key password123",
|
|
2490
|
+
"Update the package version that has the specified ID with a new branch and tag; use the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package 04t... --branch main --tag 'Release 1.0.7' --target-dev-hub devhub@example.com",
|
|
2491
|
+
"Update the package version that has the specified ID with a new description:\n<%= config.bin %> <%= command.id %> --package 04t... --version-description \"New Package Version Description\""
|
|
2454
2492
|
],
|
|
2455
2493
|
"flags": {
|
|
2456
2494
|
"json": {
|
|
@@ -2470,17 +2508,17 @@
|
|
|
2470
2508
|
"multiple": false,
|
|
2471
2509
|
"type": "option"
|
|
2472
2510
|
},
|
|
2473
|
-
"target-
|
|
2511
|
+
"target-dev-hub": {
|
|
2474
2512
|
"aliases": [
|
|
2475
|
-
"
|
|
2476
|
-
"
|
|
2513
|
+
"targetdevhubusername",
|
|
2514
|
+
"target-hub-org"
|
|
2477
2515
|
],
|
|
2478
|
-
"char": "
|
|
2516
|
+
"char": "v",
|
|
2479
2517
|
"deprecateAliases": true,
|
|
2480
|
-
"name": "target-
|
|
2518
|
+
"name": "target-dev-hub",
|
|
2481
2519
|
"noCacheDefault": true,
|
|
2482
2520
|
"required": true,
|
|
2483
|
-
"summary": "Username or alias of the
|
|
2521
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2484
2522
|
"hasDynamicHelp": true,
|
|
2485
2523
|
"multiple": false,
|
|
2486
2524
|
"type": "option"
|
|
@@ -2496,15 +2534,63 @@
|
|
|
2496
2534
|
"multiple": false,
|
|
2497
2535
|
"type": "option"
|
|
2498
2536
|
},
|
|
2499
|
-
"package
|
|
2537
|
+
"package": {
|
|
2538
|
+
"char": "p",
|
|
2539
|
+
"name": "package",
|
|
2540
|
+
"required": true,
|
|
2541
|
+
"summary": "ID (starts with 04t) or alias of the package to update a version of.",
|
|
2542
|
+
"hasDynamicHelp": false,
|
|
2543
|
+
"multiple": false,
|
|
2544
|
+
"type": "option"
|
|
2545
|
+
},
|
|
2546
|
+
"version-name": {
|
|
2500
2547
|
"aliases": [
|
|
2501
|
-
"
|
|
2548
|
+
"versionname"
|
|
2502
2549
|
],
|
|
2503
|
-
"char": "
|
|
2550
|
+
"char": "a",
|
|
2504
2551
|
"deprecateAliases": true,
|
|
2505
|
-
"name": "
|
|
2506
|
-
"
|
|
2507
|
-
"
|
|
2552
|
+
"name": "version-name",
|
|
2553
|
+
"summary": "New package version name.",
|
|
2554
|
+
"hasDynamicHelp": false,
|
|
2555
|
+
"multiple": false,
|
|
2556
|
+
"type": "option"
|
|
2557
|
+
},
|
|
2558
|
+
"version-description": {
|
|
2559
|
+
"aliases": [
|
|
2560
|
+
"versiondescription"
|
|
2561
|
+
],
|
|
2562
|
+
"char": "e",
|
|
2563
|
+
"deprecateAliases": true,
|
|
2564
|
+
"name": "version-description",
|
|
2565
|
+
"summary": "New package version description.",
|
|
2566
|
+
"hasDynamicHelp": false,
|
|
2567
|
+
"multiple": false,
|
|
2568
|
+
"type": "option"
|
|
2569
|
+
},
|
|
2570
|
+
"branch": {
|
|
2571
|
+
"char": "b",
|
|
2572
|
+
"name": "branch",
|
|
2573
|
+
"summary": "New package version branch.",
|
|
2574
|
+
"hasDynamicHelp": false,
|
|
2575
|
+
"multiple": false,
|
|
2576
|
+
"type": "option"
|
|
2577
|
+
},
|
|
2578
|
+
"tag": {
|
|
2579
|
+
"char": "t",
|
|
2580
|
+
"name": "tag",
|
|
2581
|
+
"summary": "New package version tag.",
|
|
2582
|
+
"hasDynamicHelp": false,
|
|
2583
|
+
"multiple": false,
|
|
2584
|
+
"type": "option"
|
|
2585
|
+
},
|
|
2586
|
+
"installation-key": {
|
|
2587
|
+
"aliases": [
|
|
2588
|
+
"installationkey"
|
|
2589
|
+
],
|
|
2590
|
+
"char": "k",
|
|
2591
|
+
"deprecateAliases": true,
|
|
2592
|
+
"name": "installation-key",
|
|
2593
|
+
"summary": "New installation key for key-protected package (default: null)",
|
|
2508
2594
|
"hasDynamicHelp": false,
|
|
2509
2595
|
"multiple": false,
|
|
2510
2596
|
"type": "option"
|
|
@@ -2512,32 +2598,33 @@
|
|
|
2512
2598
|
},
|
|
2513
2599
|
"hasDynamicHelp": true,
|
|
2514
2600
|
"hiddenAliases": [],
|
|
2515
|
-
"id": "
|
|
2601
|
+
"id": "package:version:update",
|
|
2516
2602
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2517
2603
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2518
2604
|
"pluginType": "core",
|
|
2519
2605
|
"strict": true,
|
|
2520
|
-
"summary": "
|
|
2606
|
+
"summary": "Update a package version.",
|
|
2521
2607
|
"enableJsonFlag": true,
|
|
2522
2608
|
"SF_ENV": "SF_ENV",
|
|
2609
|
+
"requiresProject": true,
|
|
2523
2610
|
"isESM": false,
|
|
2524
2611
|
"relativePath": [
|
|
2525
2612
|
"lib",
|
|
2526
2613
|
"commands",
|
|
2527
|
-
"
|
|
2614
|
+
"package",
|
|
2528
2615
|
"version",
|
|
2529
|
-
"
|
|
2616
|
+
"update.js"
|
|
2530
2617
|
]
|
|
2531
2618
|
},
|
|
2532
|
-
"package1:version:
|
|
2619
|
+
"package1:version:create:get": {
|
|
2533
2620
|
"aliases": [
|
|
2534
|
-
"force:package1:version:
|
|
2621
|
+
"force:package1:version:create:get"
|
|
2535
2622
|
],
|
|
2536
2623
|
"args": {},
|
|
2537
2624
|
"deprecateAliases": true,
|
|
2538
2625
|
"examples": [
|
|
2539
|
-
"
|
|
2540
|
-
"
|
|
2626
|
+
"Get the status of the creation request for the package version with the specified ID in your default org:\n<%= config.bin %> <%= command.id %> --request-id 0HD...",
|
|
2627
|
+
"Same as previous example, but use the specified org:\n<%= config.bin %> <%= command.id %> --request-id 0HD... --target-org myorg@example.com"
|
|
2541
2628
|
],
|
|
2542
2629
|
"flags": {
|
|
2543
2630
|
"json": {
|
|
@@ -2583,15 +2670,15 @@
|
|
|
2583
2670
|
"multiple": false,
|
|
2584
2671
|
"type": "option"
|
|
2585
2672
|
},
|
|
2586
|
-
"
|
|
2673
|
+
"request-id": {
|
|
2587
2674
|
"aliases": [
|
|
2588
|
-
"
|
|
2675
|
+
"requestid"
|
|
2589
2676
|
],
|
|
2590
2677
|
"char": "i",
|
|
2591
2678
|
"deprecateAliases": true,
|
|
2592
|
-
"
|
|
2593
|
-
"
|
|
2594
|
-
"summary": "
|
|
2679
|
+
"name": "request-id",
|
|
2680
|
+
"required": true,
|
|
2681
|
+
"summary": "ID of the PackageUploadRequest (starts with 0HD).",
|
|
2595
2682
|
"hasDynamicHelp": false,
|
|
2596
2683
|
"multiple": false,
|
|
2597
2684
|
"type": "option"
|
|
@@ -2599,12 +2686,12 @@
|
|
|
2599
2686
|
},
|
|
2600
2687
|
"hasDynamicHelp": true,
|
|
2601
2688
|
"hiddenAliases": [],
|
|
2602
|
-
"id": "package1:version:
|
|
2689
|
+
"id": "package1:version:create:get",
|
|
2603
2690
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2604
2691
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2605
2692
|
"pluginType": "core",
|
|
2606
2693
|
"strict": true,
|
|
2607
|
-
"summary": "
|
|
2694
|
+
"summary": "Retrieve the status of a package version creation request.",
|
|
2608
2695
|
"enableJsonFlag": true,
|
|
2609
2696
|
"SF_ENV": "SF_ENV",
|
|
2610
2697
|
"isESM": false,
|
|
@@ -2613,7 +2700,8 @@
|
|
|
2613
2700
|
"commands",
|
|
2614
2701
|
"package1",
|
|
2615
2702
|
"version",
|
|
2616
|
-
"
|
|
2703
|
+
"create",
|
|
2704
|
+
"get.js"
|
|
2617
2705
|
]
|
|
2618
2706
|
},
|
|
2619
2707
|
"package:version:create:list": {
|
|
@@ -2821,95 +2909,7 @@
|
|
|
2821
2909
|
"create",
|
|
2822
2910
|
"report.js"
|
|
2823
2911
|
]
|
|
2824
|
-
},
|
|
2825
|
-
"package1:version:create:get": {
|
|
2826
|
-
"aliases": [
|
|
2827
|
-
"force:package1:version:create:get"
|
|
2828
|
-
],
|
|
2829
|
-
"args": {},
|
|
2830
|
-
"deprecateAliases": true,
|
|
2831
|
-
"examples": [
|
|
2832
|
-
"Get the status of the creation request for the package version with the specified ID in your default org:\n<%= config.bin %> <%= command.id %> --request-id 0HD...",
|
|
2833
|
-
"Same as previous example, but use the specified org:\n<%= config.bin %> <%= command.id %> --request-id 0HD... --target-org myorg@example.com"
|
|
2834
|
-
],
|
|
2835
|
-
"flags": {
|
|
2836
|
-
"json": {
|
|
2837
|
-
"description": "Format output as json.",
|
|
2838
|
-
"helpGroup": "GLOBAL",
|
|
2839
|
-
"name": "json",
|
|
2840
|
-
"allowNo": false,
|
|
2841
|
-
"type": "boolean"
|
|
2842
|
-
},
|
|
2843
|
-
"loglevel": {
|
|
2844
|
-
"deprecated": {
|
|
2845
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
2846
|
-
},
|
|
2847
|
-
"hidden": true,
|
|
2848
|
-
"name": "loglevel",
|
|
2849
|
-
"hasDynamicHelp": false,
|
|
2850
|
-
"multiple": false,
|
|
2851
|
-
"type": "option"
|
|
2852
|
-
},
|
|
2853
|
-
"target-org": {
|
|
2854
|
-
"aliases": [
|
|
2855
|
-
"targetusername",
|
|
2856
|
-
"u"
|
|
2857
|
-
],
|
|
2858
|
-
"char": "o",
|
|
2859
|
-
"deprecateAliases": true,
|
|
2860
|
-
"name": "target-org",
|
|
2861
|
-
"noCacheDefault": true,
|
|
2862
|
-
"required": true,
|
|
2863
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2864
|
-
"hasDynamicHelp": true,
|
|
2865
|
-
"multiple": false,
|
|
2866
|
-
"type": "option"
|
|
2867
|
-
},
|
|
2868
|
-
"api-version": {
|
|
2869
|
-
"aliases": [
|
|
2870
|
-
"apiversion"
|
|
2871
|
-
],
|
|
2872
|
-
"deprecateAliases": true,
|
|
2873
|
-
"description": "Override the api version used for api requests made by this command",
|
|
2874
|
-
"name": "api-version",
|
|
2875
|
-
"hasDynamicHelp": false,
|
|
2876
|
-
"multiple": false,
|
|
2877
|
-
"type": "option"
|
|
2878
|
-
},
|
|
2879
|
-
"request-id": {
|
|
2880
|
-
"aliases": [
|
|
2881
|
-
"requestid"
|
|
2882
|
-
],
|
|
2883
|
-
"char": "i",
|
|
2884
|
-
"deprecateAliases": true,
|
|
2885
|
-
"name": "request-id",
|
|
2886
|
-
"required": true,
|
|
2887
|
-
"summary": "ID of the PackageUploadRequest (starts with 0HD).",
|
|
2888
|
-
"hasDynamicHelp": false,
|
|
2889
|
-
"multiple": false,
|
|
2890
|
-
"type": "option"
|
|
2891
|
-
}
|
|
2892
|
-
},
|
|
2893
|
-
"hasDynamicHelp": true,
|
|
2894
|
-
"hiddenAliases": [],
|
|
2895
|
-
"id": "package1:version:create:get",
|
|
2896
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2897
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
2898
|
-
"pluginType": "core",
|
|
2899
|
-
"strict": true,
|
|
2900
|
-
"summary": "Retrieve the status of a package version creation request.",
|
|
2901
|
-
"enableJsonFlag": true,
|
|
2902
|
-
"SF_ENV": "SF_ENV",
|
|
2903
|
-
"isESM": false,
|
|
2904
|
-
"relativePath": [
|
|
2905
|
-
"lib",
|
|
2906
|
-
"commands",
|
|
2907
|
-
"package1",
|
|
2908
|
-
"version",
|
|
2909
|
-
"create",
|
|
2910
|
-
"get.js"
|
|
2911
|
-
]
|
|
2912
2912
|
}
|
|
2913
2913
|
},
|
|
2914
|
-
"version": "1.27.
|
|
2914
|
+
"version": "1.27.9"
|
|
2915
2915
|
}
|