@salesforce/plugin-packaging 2.12.3 → 2.13.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/README.md +22 -22
- package/lib/commands/package/convert.d.ts +1 -0
- package/lib/commands/package/convert.js +9 -0
- package/lib/commands/package/convert.js.map +1 -1
- package/messages/package_convert.md +9 -1
- package/oclif.manifest.json +1309 -1295
- package/package.json +10 -10
package/oclif.manifest.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
],
|
|
7
7
|
"args": {},
|
|
8
8
|
"deprecateAliases": true,
|
|
9
|
-
"description": "The package convert creates a new package in the Dev Hub if one does not already exist for the specified first-generation package.\n\nIt then creates a new package version in the Dev Hub with contents based on the specified first-generation package.\n\
|
|
9
|
+
"description": "The package convert creates a new package in the Dev Hub if one does not already exist for the specified first-generation package.\n\nIt then creates a new package version in the Dev Hub with contents based on the specified first-generation package.\n\nBy default, the latest released non-patch version from the specified first-generation package will be converted. Use --patch-version to override the default. Read more about --patch-version option in help\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 specifying the --installation-key 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\".",
|
|
10
10
|
"examples": [
|
|
11
11
|
"Create a second-generation package version from the first-generation package with the specified ID and give it the installation key \"password123\"; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 033... --installation-key password123",
|
|
12
12
|
"Similar to previous example, but uses the specified Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 033... --installation-key password123 --target-dev-hub devhuborg@example.com"
|
|
@@ -145,6 +145,20 @@
|
|
|
145
145
|
"summary": "Display verbose command output.",
|
|
146
146
|
"allowNo": false,
|
|
147
147
|
"type": "boolean"
|
|
148
|
+
},
|
|
149
|
+
"patch-version": {
|
|
150
|
+
"aliases": [
|
|
151
|
+
"patchversion"
|
|
152
|
+
],
|
|
153
|
+
"char": "a",
|
|
154
|
+
"deprecateAliases": true,
|
|
155
|
+
"description": "Specify a released patch version as major.minor.patch.build to convert to second generation package version",
|
|
156
|
+
"hidden": true,
|
|
157
|
+
"name": "patch-version",
|
|
158
|
+
"summary": "Specific released patch version to convert",
|
|
159
|
+
"hasDynamicHelp": false,
|
|
160
|
+
"multiple": false,
|
|
161
|
+
"type": "option"
|
|
148
162
|
}
|
|
149
163
|
},
|
|
150
164
|
"hasDynamicHelp": true,
|
|
@@ -1033,15 +1047,15 @@
|
|
|
1033
1047
|
"update:package"
|
|
1034
1048
|
]
|
|
1035
1049
|
},
|
|
1036
|
-
"package:
|
|
1050
|
+
"package:install:report": {
|
|
1037
1051
|
"aliases": [
|
|
1038
|
-
"force:package:
|
|
1052
|
+
"force:package:install:report"
|
|
1039
1053
|
],
|
|
1040
1054
|
"args": {},
|
|
1041
1055
|
"deprecateAliases": true,
|
|
1042
1056
|
"examples": [
|
|
1043
|
-
"
|
|
1044
|
-
"
|
|
1057
|
+
"Retrieve the status of a package installation request with the specified ID on your default org:\n<%= config.bin %> <%= command.id %> --request-id 0Hf...",
|
|
1058
|
+
"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"
|
|
1045
1059
|
],
|
|
1046
1060
|
"flags": {
|
|
1047
1061
|
"json": {
|
|
@@ -1059,16 +1073,6 @@
|
|
|
1059
1073
|
"multiple": false,
|
|
1060
1074
|
"type": "option"
|
|
1061
1075
|
},
|
|
1062
|
-
"loglevel": {
|
|
1063
|
-
"deprecated": {
|
|
1064
|
-
"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."
|
|
1065
|
-
},
|
|
1066
|
-
"hidden": true,
|
|
1067
|
-
"name": "loglevel",
|
|
1068
|
-
"hasDynamicHelp": false,
|
|
1069
|
-
"multiple": false,
|
|
1070
|
-
"type": "option"
|
|
1071
|
-
},
|
|
1072
1076
|
"target-org": {
|
|
1073
1077
|
"aliases": [
|
|
1074
1078
|
"targetusername",
|
|
@@ -1094,69 +1098,92 @@
|
|
|
1094
1098
|
"hasDynamicHelp": false,
|
|
1095
1099
|
"multiple": false,
|
|
1096
1100
|
"type": "option"
|
|
1101
|
+
},
|
|
1102
|
+
"loglevel": {
|
|
1103
|
+
"deprecated": {
|
|
1104
|
+
"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."
|
|
1105
|
+
},
|
|
1106
|
+
"hidden": true,
|
|
1107
|
+
"name": "loglevel",
|
|
1108
|
+
"hasDynamicHelp": false,
|
|
1109
|
+
"multiple": false,
|
|
1110
|
+
"type": "option"
|
|
1111
|
+
},
|
|
1112
|
+
"request-id": {
|
|
1113
|
+
"aliases": [
|
|
1114
|
+
"requestid"
|
|
1115
|
+
],
|
|
1116
|
+
"char": "i",
|
|
1117
|
+
"deprecateAliases": true,
|
|
1118
|
+
"name": "request-id",
|
|
1119
|
+
"required": true,
|
|
1120
|
+
"summary": "ID of the package install request you want to check; starts with 0Hf.",
|
|
1121
|
+
"hasDynamicHelp": false,
|
|
1122
|
+
"multiple": false,
|
|
1123
|
+
"type": "option"
|
|
1097
1124
|
}
|
|
1098
1125
|
},
|
|
1099
1126
|
"hasDynamicHelp": true,
|
|
1100
1127
|
"hiddenAliases": [],
|
|
1101
|
-
"id": "package:
|
|
1128
|
+
"id": "package:install:report",
|
|
1102
1129
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1103
1130
|
"pluginName": "@salesforce/plugin-packaging",
|
|
1104
1131
|
"pluginType": "core",
|
|
1105
1132
|
"strict": true,
|
|
1106
|
-
"summary": "
|
|
1133
|
+
"summary": "Retrieve the status of a package installation request.",
|
|
1107
1134
|
"enableJsonFlag": true,
|
|
1108
1135
|
"isESM": true,
|
|
1109
1136
|
"relativePath": [
|
|
1110
1137
|
"lib",
|
|
1111
1138
|
"commands",
|
|
1112
1139
|
"package",
|
|
1113
|
-
"
|
|
1114
|
-
"
|
|
1140
|
+
"install",
|
|
1141
|
+
"report.js"
|
|
1115
1142
|
],
|
|
1116
1143
|
"aliasPermutations": [
|
|
1117
|
-
"force:package:
|
|
1118
|
-
"package:force:
|
|
1119
|
-
"package:
|
|
1120
|
-
"package:
|
|
1121
|
-
"force:
|
|
1122
|
-
"
|
|
1123
|
-
"
|
|
1124
|
-
"
|
|
1125
|
-
"force:
|
|
1126
|
-
"
|
|
1127
|
-
"
|
|
1128
|
-
"
|
|
1129
|
-
"force:package:
|
|
1130
|
-
"package:force:
|
|
1131
|
-
"package:
|
|
1132
|
-
"package:
|
|
1133
|
-
"force:
|
|
1134
|
-
"
|
|
1135
|
-
"
|
|
1136
|
-
"
|
|
1137
|
-
"force:
|
|
1138
|
-
"
|
|
1139
|
-
"
|
|
1140
|
-
"
|
|
1144
|
+
"force:package:install:report",
|
|
1145
|
+
"package:force:install:report",
|
|
1146
|
+
"package:install:force:report",
|
|
1147
|
+
"package:install:report:force",
|
|
1148
|
+
"force:install:package:report",
|
|
1149
|
+
"install:force:package:report",
|
|
1150
|
+
"install:package:force:report",
|
|
1151
|
+
"install:package:report:force",
|
|
1152
|
+
"force:install:report:package",
|
|
1153
|
+
"install:force:report:package",
|
|
1154
|
+
"install:report:force:package",
|
|
1155
|
+
"install:report:package:force",
|
|
1156
|
+
"force:package:report:install",
|
|
1157
|
+
"package:force:report:install",
|
|
1158
|
+
"package:report:force:install",
|
|
1159
|
+
"package:report:install:force",
|
|
1160
|
+
"force:report:package:install",
|
|
1161
|
+
"report:force:package:install",
|
|
1162
|
+
"report:package:force:install",
|
|
1163
|
+
"report:package:install:force",
|
|
1164
|
+
"force:report:install:package",
|
|
1165
|
+
"report:force:install:package",
|
|
1166
|
+
"report:install:force:package",
|
|
1167
|
+
"report:install:package:force"
|
|
1141
1168
|
],
|
|
1142
1169
|
"permutations": [
|
|
1143
|
-
"package:
|
|
1144
|
-
"
|
|
1145
|
-
"
|
|
1146
|
-
"package:
|
|
1147
|
-
"
|
|
1148
|
-
"
|
|
1170
|
+
"package:install:report",
|
|
1171
|
+
"install:package:report",
|
|
1172
|
+
"install:report:package",
|
|
1173
|
+
"package:report:install",
|
|
1174
|
+
"report:package:install",
|
|
1175
|
+
"report:install:package"
|
|
1149
1176
|
]
|
|
1150
1177
|
},
|
|
1151
|
-
"package:
|
|
1178
|
+
"package:installed:list": {
|
|
1152
1179
|
"aliases": [
|
|
1153
|
-
"force:package:
|
|
1180
|
+
"force:package:installed:list"
|
|
1154
1181
|
],
|
|
1155
1182
|
"args": {},
|
|
1156
1183
|
"deprecateAliases": true,
|
|
1157
1184
|
"examples": [
|
|
1158
|
-
"
|
|
1159
|
-
"
|
|
1185
|
+
"List the installed packages in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
1186
|
+
"List the installed packages in the org with username me@example.com:\n<%= config.bin %> <%= command.id %> --target-org me@example.com"
|
|
1160
1187
|
],
|
|
1161
1188
|
"flags": {
|
|
1162
1189
|
"json": {
|
|
@@ -1174,6 +1201,16 @@
|
|
|
1174
1201
|
"multiple": false,
|
|
1175
1202
|
"type": "option"
|
|
1176
1203
|
},
|
|
1204
|
+
"loglevel": {
|
|
1205
|
+
"deprecated": {
|
|
1206
|
+
"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."
|
|
1207
|
+
},
|
|
1208
|
+
"hidden": true,
|
|
1209
|
+
"name": "loglevel",
|
|
1210
|
+
"hasDynamicHelp": false,
|
|
1211
|
+
"multiple": false,
|
|
1212
|
+
"type": "option"
|
|
1213
|
+
},
|
|
1177
1214
|
"target-org": {
|
|
1178
1215
|
"aliases": [
|
|
1179
1216
|
"targetusername",
|
|
@@ -1199,81 +1236,58 @@
|
|
|
1199
1236
|
"hasDynamicHelp": false,
|
|
1200
1237
|
"multiple": false,
|
|
1201
1238
|
"type": "option"
|
|
1202
|
-
},
|
|
1203
|
-
"loglevel": {
|
|
1204
|
-
"deprecated": {
|
|
1205
|
-
"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."
|
|
1206
|
-
},
|
|
1207
|
-
"hidden": true,
|
|
1208
|
-
"name": "loglevel",
|
|
1209
|
-
"hasDynamicHelp": false,
|
|
1210
|
-
"multiple": false,
|
|
1211
|
-
"type": "option"
|
|
1212
|
-
},
|
|
1213
|
-
"request-id": {
|
|
1214
|
-
"aliases": [
|
|
1215
|
-
"requestid"
|
|
1216
|
-
],
|
|
1217
|
-
"char": "i",
|
|
1218
|
-
"deprecateAliases": true,
|
|
1219
|
-
"name": "request-id",
|
|
1220
|
-
"required": true,
|
|
1221
|
-
"summary": "ID of the package install request you want to check; starts with 0Hf.",
|
|
1222
|
-
"hasDynamicHelp": false,
|
|
1223
|
-
"multiple": false,
|
|
1224
|
-
"type": "option"
|
|
1225
1239
|
}
|
|
1226
1240
|
},
|
|
1227
1241
|
"hasDynamicHelp": true,
|
|
1228
1242
|
"hiddenAliases": [],
|
|
1229
|
-
"id": "package:
|
|
1243
|
+
"id": "package:installed:list",
|
|
1230
1244
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1231
1245
|
"pluginName": "@salesforce/plugin-packaging",
|
|
1232
1246
|
"pluginType": "core",
|
|
1233
1247
|
"strict": true,
|
|
1234
|
-
"summary": "
|
|
1248
|
+
"summary": "List the org’s installed packages.",
|
|
1235
1249
|
"enableJsonFlag": true,
|
|
1236
1250
|
"isESM": true,
|
|
1237
1251
|
"relativePath": [
|
|
1238
1252
|
"lib",
|
|
1239
1253
|
"commands",
|
|
1240
1254
|
"package",
|
|
1241
|
-
"
|
|
1242
|
-
"
|
|
1255
|
+
"installed",
|
|
1256
|
+
"list.js"
|
|
1243
1257
|
],
|
|
1244
1258
|
"aliasPermutations": [
|
|
1245
|
-
"force:package:
|
|
1246
|
-
"package:force:
|
|
1247
|
-
"package:
|
|
1248
|
-
"package:
|
|
1249
|
-
"force:
|
|
1250
|
-
"
|
|
1251
|
-
"
|
|
1252
|
-
"
|
|
1253
|
-
"force:
|
|
1254
|
-
"
|
|
1255
|
-
"
|
|
1256
|
-
"
|
|
1257
|
-
"force:package:
|
|
1258
|
-
"package:force:
|
|
1259
|
-
"package:
|
|
1260
|
-
"package:
|
|
1261
|
-
"force:
|
|
1262
|
-
"
|
|
1263
|
-
"
|
|
1264
|
-
"
|
|
1265
|
-
"force:
|
|
1266
|
-
"
|
|
1267
|
-
"
|
|
1268
|
-
"
|
|
1259
|
+
"force:package:installed:list",
|
|
1260
|
+
"package:force:installed:list",
|
|
1261
|
+
"package:installed:force:list",
|
|
1262
|
+
"package:installed:list:force",
|
|
1263
|
+
"force:installed:package:list",
|
|
1264
|
+
"installed:force:package:list",
|
|
1265
|
+
"installed:package:force:list",
|
|
1266
|
+
"installed:package:list:force",
|
|
1267
|
+
"force:installed:list:package",
|
|
1268
|
+
"installed:force:list:package",
|
|
1269
|
+
"installed:list:force:package",
|
|
1270
|
+
"installed:list:package:force",
|
|
1271
|
+
"force:package:list:installed",
|
|
1272
|
+
"package:force:list:installed",
|
|
1273
|
+
"package:list:force:installed",
|
|
1274
|
+
"package:list:installed:force",
|
|
1275
|
+
"force:list:package:installed",
|
|
1276
|
+
"list:force:package:installed",
|
|
1277
|
+
"list:package:force:installed",
|
|
1278
|
+
"list:package:installed:force",
|
|
1279
|
+
"force:list:installed:package",
|
|
1280
|
+
"list:force:installed:package",
|
|
1281
|
+
"list:installed:force:package",
|
|
1282
|
+
"list:installed:package:force"
|
|
1269
1283
|
],
|
|
1270
1284
|
"permutations": [
|
|
1271
|
-
"package:
|
|
1272
|
-
"
|
|
1273
|
-
"
|
|
1274
|
-
"package:
|
|
1275
|
-
"
|
|
1276
|
-
"
|
|
1285
|
+
"package:installed:list",
|
|
1286
|
+
"installed:package:list",
|
|
1287
|
+
"installed:list:package",
|
|
1288
|
+
"package:list:installed",
|
|
1289
|
+
"list:package:installed",
|
|
1290
|
+
"list:installed:package"
|
|
1277
1291
|
]
|
|
1278
1292
|
},
|
|
1279
1293
|
"package:uninstall:report": {
|
|
@@ -1404,16 +1418,19 @@
|
|
|
1404
1418
|
"report:uninstall:package"
|
|
1405
1419
|
]
|
|
1406
1420
|
},
|
|
1407
|
-
"
|
|
1421
|
+
"package:version:create": {
|
|
1408
1422
|
"aliases": [
|
|
1409
|
-
"force:
|
|
1423
|
+
"force:package:version:create"
|
|
1410
1424
|
],
|
|
1411
1425
|
"args": {},
|
|
1412
1426
|
"deprecateAliases": true,
|
|
1413
|
-
"description": "The package version is based on the contents
|
|
1427
|
+
"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.",
|
|
1414
1428
|
"examples": [
|
|
1415
|
-
"Create a
|
|
1416
|
-
"
|
|
1429
|
+
"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",
|
|
1430
|
+
"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",
|
|
1431
|
+
"Create a package version from a package with the specified ID:\n<%= config.bin %> <%= command.id %> --package 0Ho... --installation-key password123",
|
|
1432
|
+
"Create a package version and skip the validation step:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123 --skip-validation",
|
|
1433
|
+
"Create a package version and perform package validations asynchronously:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123 --async-validation"
|
|
1417
1434
|
],
|
|
1418
1435
|
"flags": {
|
|
1419
1436
|
"json": {
|
|
@@ -1441,17 +1458,17 @@
|
|
|
1441
1458
|
"multiple": false,
|
|
1442
1459
|
"type": "option"
|
|
1443
1460
|
},
|
|
1444
|
-
"target-
|
|
1461
|
+
"target-dev-hub": {
|
|
1445
1462
|
"aliases": [
|
|
1446
|
-
"
|
|
1447
|
-
"
|
|
1463
|
+
"targetdevhubusername",
|
|
1464
|
+
"target-hub-org"
|
|
1448
1465
|
],
|
|
1449
|
-
"char": "
|
|
1466
|
+
"char": "v",
|
|
1450
1467
|
"deprecateAliases": true,
|
|
1451
|
-
"name": "target-
|
|
1468
|
+
"name": "target-dev-hub",
|
|
1452
1469
|
"noCacheDefault": true,
|
|
1453
1470
|
"required": true,
|
|
1454
|
-
"summary": "Username or alias of the
|
|
1471
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1455
1472
|
"hasDynamicHelp": true,
|
|
1456
1473
|
"multiple": false,
|
|
1457
1474
|
"type": "option"
|
|
@@ -1467,90 +1484,239 @@
|
|
|
1467
1484
|
"multiple": false,
|
|
1468
1485
|
"type": "option"
|
|
1469
1486
|
},
|
|
1470
|
-
"
|
|
1471
|
-
"
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
"
|
|
1487
|
+
"branch": {
|
|
1488
|
+
"char": "b",
|
|
1489
|
+
"name": "branch",
|
|
1490
|
+
"summary": "Name of the branch in your source control system that the package version is based on.",
|
|
1491
|
+
"hasDynamicHelp": false,
|
|
1492
|
+
"multiple": false,
|
|
1493
|
+
"type": "option"
|
|
1494
|
+
},
|
|
1495
|
+
"build-instance": {
|
|
1496
|
+
"aliases": [
|
|
1497
|
+
"buildinstance"
|
|
1498
|
+
],
|
|
1499
|
+
"char": "s",
|
|
1475
1500
|
"deprecateAliases": true,
|
|
1476
|
-
"
|
|
1477
|
-
"
|
|
1478
|
-
"summary": "
|
|
1501
|
+
"hidden": true,
|
|
1502
|
+
"name": "build-instance",
|
|
1503
|
+
"summary": "Instance where the package version will be created, such as NA50.",
|
|
1479
1504
|
"hasDynamicHelp": false,
|
|
1480
1505
|
"multiple": false,
|
|
1481
1506
|
"type": "option"
|
|
1482
1507
|
},
|
|
1483
|
-
"
|
|
1484
|
-
"
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
"
|
|
1508
|
+
"code-coverage": {
|
|
1509
|
+
"aliases": [
|
|
1510
|
+
"codecoverage"
|
|
1511
|
+
],
|
|
1512
|
+
"char": "c",
|
|
1513
|
+
"deprecateAliases": true,
|
|
1514
|
+
"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.",
|
|
1515
|
+
"exclusive": [
|
|
1516
|
+
"skip-validation"
|
|
1517
|
+
],
|
|
1518
|
+
"name": "code-coverage",
|
|
1519
|
+
"summary": "Calculate and store the code coverage percentage by running the packaged Apex tests included in this package version.",
|
|
1520
|
+
"allowNo": false,
|
|
1521
|
+
"type": "boolean"
|
|
1522
|
+
},
|
|
1523
|
+
"definition-file": {
|
|
1524
|
+
"aliases": [
|
|
1525
|
+
"definitionfile"
|
|
1526
|
+
],
|
|
1527
|
+
"char": "f",
|
|
1528
|
+
"deprecateAliases": true,
|
|
1529
|
+
"description": "For a patch version, the features specified in this file are ignored, and instead the features specified for the ancestor version are used.",
|
|
1530
|
+
"name": "definition-file",
|
|
1531
|
+
"summary": "Path to a definition file similar to scratch org definition file that contains the list of features and org preferences that the metadata of the package version depends on.",
|
|
1488
1532
|
"hasDynamicHelp": false,
|
|
1489
1533
|
"multiple": false,
|
|
1490
1534
|
"type": "option"
|
|
1491
1535
|
},
|
|
1492
|
-
"
|
|
1536
|
+
"installation-key": {
|
|
1537
|
+
"aliases": [
|
|
1538
|
+
"installationkey"
|
|
1539
|
+
],
|
|
1540
|
+
"char": "k",
|
|
1541
|
+
"deprecateAliases": true,
|
|
1542
|
+
"name": "installation-key",
|
|
1543
|
+
"summary": "Installation key for key-protected package. (either --installation-key or --installation-key-bypass is required)",
|
|
1544
|
+
"hasDynamicHelp": false,
|
|
1545
|
+
"multiple": false,
|
|
1546
|
+
"type": "option"
|
|
1547
|
+
},
|
|
1548
|
+
"installation-key-bypass": {
|
|
1549
|
+
"aliases": [
|
|
1550
|
+
"installationkeybypass"
|
|
1551
|
+
],
|
|
1552
|
+
"char": "x",
|
|
1553
|
+
"deprecateAliases": true,
|
|
1554
|
+
"description": "If you bypass this requirement, anyone can install your package.",
|
|
1555
|
+
"name": "installation-key-bypass",
|
|
1556
|
+
"summary": "Bypass the installation key requirement. (either --installation-key or --installation-key-bypass is required)",
|
|
1557
|
+
"allowNo": false,
|
|
1558
|
+
"type": "boolean"
|
|
1559
|
+
},
|
|
1560
|
+
"package": {
|
|
1561
|
+
"char": "p",
|
|
1562
|
+
"name": "package",
|
|
1563
|
+
"summary": "ID (starts with 0Ho) or alias of the package to create a version of.",
|
|
1564
|
+
"hasDynamicHelp": false,
|
|
1565
|
+
"multiple": false,
|
|
1566
|
+
"type": "option"
|
|
1567
|
+
},
|
|
1568
|
+
"path": {
|
|
1493
1569
|
"char": "d",
|
|
1494
|
-
"name": "
|
|
1495
|
-
"summary": "
|
|
1570
|
+
"name": "path",
|
|
1571
|
+
"summary": "Path to the directory that contains the contents of the package.",
|
|
1496
1572
|
"hasDynamicHelp": false,
|
|
1497
1573
|
"multiple": false,
|
|
1498
1574
|
"type": "option"
|
|
1499
1575
|
},
|
|
1500
|
-
"
|
|
1501
|
-
"
|
|
1502
|
-
|
|
1503
|
-
|
|
1576
|
+
"post-install-script": {
|
|
1577
|
+
"aliases": [
|
|
1578
|
+
"postinstallscript"
|
|
1579
|
+
],
|
|
1580
|
+
"deprecateAliases": true,
|
|
1581
|
+
"description": "The post-install script is an Apex class within this package that is run in the installing org after installations or upgrades of this package version.",
|
|
1582
|
+
"name": "post-install-script",
|
|
1583
|
+
"summary": "Name of the post-install script; applies to managed packages only.",
|
|
1504
1584
|
"hasDynamicHelp": false,
|
|
1505
1585
|
"multiple": false,
|
|
1506
1586
|
"type": "option"
|
|
1507
1587
|
},
|
|
1508
|
-
"
|
|
1588
|
+
"post-install-url": {
|
|
1509
1589
|
"aliases": [
|
|
1510
|
-
"
|
|
1590
|
+
"postinstallurl"
|
|
1511
1591
|
],
|
|
1512
|
-
"char": "m",
|
|
1513
1592
|
"deprecateAliases": true,
|
|
1514
|
-
"description": "
|
|
1515
|
-
"name": "
|
|
1516
|
-
"summary": "
|
|
1593
|
+
"description": "The contents of the post-installation instructions URL are displayed in the UI after installation of the package version.",
|
|
1594
|
+
"name": "post-install-url",
|
|
1595
|
+
"summary": "Post-install instructions URL.",
|
|
1596
|
+
"hasDynamicHelp": false,
|
|
1597
|
+
"multiple": false,
|
|
1598
|
+
"type": "option"
|
|
1599
|
+
},
|
|
1600
|
+
"preserve": {
|
|
1601
|
+
"char": "r",
|
|
1602
|
+
"hidden": true,
|
|
1603
|
+
"name": "preserve",
|
|
1604
|
+
"summary": "Preserve temp files that would otherwise be deleted.",
|
|
1517
1605
|
"allowNo": false,
|
|
1518
1606
|
"type": "boolean"
|
|
1519
1607
|
},
|
|
1520
|
-
"
|
|
1608
|
+
"releasenotes-url": {
|
|
1521
1609
|
"aliases": [
|
|
1522
1610
|
"releasenotesurl"
|
|
1523
1611
|
],
|
|
1524
|
-
"char": "r",
|
|
1525
1612
|
"deprecateAliases": true,
|
|
1526
1613
|
"description": "This link is displayed in the package installation UI to provide release notes for this package version to subscribers.",
|
|
1527
|
-
"name": "
|
|
1614
|
+
"name": "releasenotes-url",
|
|
1528
1615
|
"summary": "Release notes URL.",
|
|
1529
1616
|
"hasDynamicHelp": false,
|
|
1530
1617
|
"multiple": false,
|
|
1531
1618
|
"type": "option"
|
|
1532
1619
|
},
|
|
1533
|
-
"
|
|
1620
|
+
"skip-ancestor-check": {
|
|
1534
1621
|
"aliases": [
|
|
1535
|
-
"
|
|
1622
|
+
"skipancestorcheck"
|
|
1536
1623
|
],
|
|
1537
|
-
"char": "p",
|
|
1538
1624
|
"deprecateAliases": true,
|
|
1539
|
-
"
|
|
1540
|
-
"
|
|
1541
|
-
"
|
|
1625
|
+
"name": "skip-ancestor-check",
|
|
1626
|
+
"summary": "Overrides ancestry requirements, which allows you to specify a package ancestor that isn’t the highest released package version.",
|
|
1627
|
+
"allowNo": false,
|
|
1628
|
+
"type": "boolean"
|
|
1629
|
+
},
|
|
1630
|
+
"skip-validation": {
|
|
1631
|
+
"aliases": [
|
|
1632
|
+
"skipvalidation"
|
|
1633
|
+
],
|
|
1634
|
+
"deprecateAliases": true,
|
|
1635
|
+
"description": "Skips validation of dependencies, package ancestors, and metadata during package version creation. Skipping validation reduces the time it takes to create a new package version, but you can promote only validated package versions. Skipping validation can suppress important errors that can surface at a later stage. You can specify skip validation or code coverage, but not both. Code coverage is calculated during validation.",
|
|
1636
|
+
"exclusive": [
|
|
1637
|
+
"code-coverage",
|
|
1638
|
+
"async-validation"
|
|
1639
|
+
],
|
|
1640
|
+
"name": "skip-validation",
|
|
1641
|
+
"summary": "Skip validation during package version creation; you can’t promote unvalidated package versions.",
|
|
1642
|
+
"allowNo": false,
|
|
1643
|
+
"type": "boolean"
|
|
1644
|
+
},
|
|
1645
|
+
"async-validation": {
|
|
1646
|
+
"description": "Specifying async validation returns the package version earlier in the process, allowing you to install and test the new version right away. If your development team is using continuous integration (CI) scripts, async validation can reduce your overall CI run time.",
|
|
1647
|
+
"exclusive": [
|
|
1648
|
+
"skip-validation"
|
|
1649
|
+
],
|
|
1650
|
+
"name": "async-validation",
|
|
1651
|
+
"summary": "Return a new package version before completing package validations.",
|
|
1652
|
+
"allowNo": false,
|
|
1653
|
+
"type": "boolean"
|
|
1654
|
+
},
|
|
1655
|
+
"tag": {
|
|
1656
|
+
"char": "t",
|
|
1657
|
+
"name": "tag",
|
|
1658
|
+
"summary": "Package version’s tag.",
|
|
1542
1659
|
"hasDynamicHelp": false,
|
|
1543
1660
|
"multiple": false,
|
|
1544
1661
|
"type": "option"
|
|
1545
1662
|
},
|
|
1546
|
-
"
|
|
1663
|
+
"uninstall-script": {
|
|
1547
1664
|
"aliases": [
|
|
1548
|
-
"
|
|
1665
|
+
"uninstallscript"
|
|
1549
1666
|
],
|
|
1550
|
-
"char": "k",
|
|
1551
1667
|
"deprecateAliases": true,
|
|
1552
|
-
"
|
|
1553
|
-
"
|
|
1668
|
+
"description": "The uninstall script is an Apex class within this package that is run in the installing org after uninstallations of this package.",
|
|
1669
|
+
"name": "uninstall-script",
|
|
1670
|
+
"summary": "Uninstall script name; applies to managed packages only.",
|
|
1671
|
+
"hasDynamicHelp": false,
|
|
1672
|
+
"multiple": false,
|
|
1673
|
+
"type": "option"
|
|
1674
|
+
},
|
|
1675
|
+
"validate-schema": {
|
|
1676
|
+
"aliases": [
|
|
1677
|
+
"validateschema"
|
|
1678
|
+
],
|
|
1679
|
+
"char": "j",
|
|
1680
|
+
"deprecateAliases": true,
|
|
1681
|
+
"hidden": true,
|
|
1682
|
+
"name": "validate-schema",
|
|
1683
|
+
"summary": "Validate the sfdx-project.json file against the JSON schema.",
|
|
1684
|
+
"allowNo": false,
|
|
1685
|
+
"type": "boolean"
|
|
1686
|
+
},
|
|
1687
|
+
"version-description": {
|
|
1688
|
+
"aliases": [
|
|
1689
|
+
"versiondescription"
|
|
1690
|
+
],
|
|
1691
|
+
"char": "e",
|
|
1692
|
+
"deprecateAliases": true,
|
|
1693
|
+
"name": "version-description",
|
|
1694
|
+
"summary": "Description of the package version to be created; overrides the sfdx-project.json value.",
|
|
1695
|
+
"hasDynamicHelp": false,
|
|
1696
|
+
"multiple": false,
|
|
1697
|
+
"type": "option"
|
|
1698
|
+
},
|
|
1699
|
+
"version-name": {
|
|
1700
|
+
"aliases": [
|
|
1701
|
+
"versionname"
|
|
1702
|
+
],
|
|
1703
|
+
"char": "a",
|
|
1704
|
+
"deprecateAliases": true,
|
|
1705
|
+
"name": "version-name",
|
|
1706
|
+
"summary": "Name of the package version to be created; overrides the sfdx-project.json value.",
|
|
1707
|
+
"hasDynamicHelp": false,
|
|
1708
|
+
"multiple": false,
|
|
1709
|
+
"type": "option"
|
|
1710
|
+
},
|
|
1711
|
+
"version-number": {
|
|
1712
|
+
"aliases": [
|
|
1713
|
+
"versionnumber"
|
|
1714
|
+
],
|
|
1715
|
+
"char": "n",
|
|
1716
|
+
"deprecateAliases": true,
|
|
1717
|
+
"description": "For information about the format of the version number, see https://developer.salesforce.com/docs/atlas.en-us.pkg2_dev.meta/pkg2_dev/sfdx_dev2gp_config_file.htm.",
|
|
1718
|
+
"name": "version-number",
|
|
1719
|
+
"summary": "Version number of the package version to be created; overrides the sfdx-project.json value.",
|
|
1554
1720
|
"hasDynamicHelp": false,
|
|
1555
1721
|
"multiple": false,
|
|
1556
1722
|
"type": "option"
|
|
@@ -1558,73 +1724,90 @@
|
|
|
1558
1724
|
"wait": {
|
|
1559
1725
|
"char": "w",
|
|
1560
1726
|
"name": "wait",
|
|
1561
|
-
"summary": "
|
|
1727
|
+
"summary": "Number of minutes to wait for the package version to be created.",
|
|
1562
1728
|
"hasDynamicHelp": true,
|
|
1563
1729
|
"multiple": false,
|
|
1564
1730
|
"type": "option"
|
|
1731
|
+
},
|
|
1732
|
+
"language": {
|
|
1733
|
+
"description": "Specify the language using a language code listed under \"Supported Languages\" in Salesforce Help. If no language is specified, the language defaults to the language of the Dev Hub user who created the package.",
|
|
1734
|
+
"name": "language",
|
|
1735
|
+
"summary": "Language for the package.",
|
|
1736
|
+
"hasDynamicHelp": false,
|
|
1737
|
+
"multiple": false,
|
|
1738
|
+
"type": "option"
|
|
1739
|
+
},
|
|
1740
|
+
"verbose": {
|
|
1741
|
+
"description": "Display verbose command output. When polling for the status of the creation, this will output status and timeout data on a separate line for each poll request, which is useful in CI systems where timeouts can occur with long periods of no output from commands.",
|
|
1742
|
+
"name": "verbose",
|
|
1743
|
+
"summary": "Display verbose command output.",
|
|
1744
|
+
"allowNo": false,
|
|
1745
|
+
"type": "boolean"
|
|
1565
1746
|
}
|
|
1566
1747
|
},
|
|
1567
1748
|
"hasDynamicHelp": true,
|
|
1568
1749
|
"hiddenAliases": [],
|
|
1569
|
-
"id": "
|
|
1750
|
+
"id": "package:version:create",
|
|
1570
1751
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1571
1752
|
"pluginName": "@salesforce/plugin-packaging",
|
|
1572
1753
|
"pluginType": "core",
|
|
1573
1754
|
"strict": true,
|
|
1574
|
-
"summary": "Create a
|
|
1755
|
+
"summary": "Create a package version in the Dev Hub org.",
|
|
1575
1756
|
"enableJsonFlag": true,
|
|
1757
|
+
"requiresProject": true,
|
|
1576
1758
|
"isESM": true,
|
|
1577
1759
|
"relativePath": [
|
|
1578
1760
|
"lib",
|
|
1579
1761
|
"commands",
|
|
1580
|
-
"
|
|
1762
|
+
"package",
|
|
1581
1763
|
"version",
|
|
1582
1764
|
"create.js"
|
|
1583
1765
|
],
|
|
1584
1766
|
"aliasPermutations": [
|
|
1585
|
-
"force:
|
|
1586
|
-
"
|
|
1587
|
-
"
|
|
1588
|
-
"
|
|
1589
|
-
"force:version:
|
|
1590
|
-
"version:force:
|
|
1591
|
-
"version:
|
|
1592
|
-
"version:
|
|
1593
|
-
"force:version:create:
|
|
1594
|
-
"version:force:create:
|
|
1595
|
-
"version:create:force:
|
|
1596
|
-
"version:create:
|
|
1597
|
-
"force:
|
|
1598
|
-
"
|
|
1599
|
-
"
|
|
1600
|
-
"
|
|
1601
|
-
"force:create:
|
|
1602
|
-
"create:force:
|
|
1603
|
-
"create:
|
|
1604
|
-
"create:
|
|
1605
|
-
"force:create:version:
|
|
1606
|
-
"create:force:version:
|
|
1607
|
-
"create:version:force:
|
|
1608
|
-
"create:version:
|
|
1767
|
+
"force:package:version:create",
|
|
1768
|
+
"package:force:version:create",
|
|
1769
|
+
"package:version:force:create",
|
|
1770
|
+
"package:version:create:force",
|
|
1771
|
+
"force:version:package:create",
|
|
1772
|
+
"version:force:package:create",
|
|
1773
|
+
"version:package:force:create",
|
|
1774
|
+
"version:package:create:force",
|
|
1775
|
+
"force:version:create:package",
|
|
1776
|
+
"version:force:create:package",
|
|
1777
|
+
"version:create:force:package",
|
|
1778
|
+
"version:create:package:force",
|
|
1779
|
+
"force:package:create:version",
|
|
1780
|
+
"package:force:create:version",
|
|
1781
|
+
"package:create:force:version",
|
|
1782
|
+
"package:create:version:force",
|
|
1783
|
+
"force:create:package:version",
|
|
1784
|
+
"create:force:package:version",
|
|
1785
|
+
"create:package:force:version",
|
|
1786
|
+
"create:package:version:force",
|
|
1787
|
+
"force:create:version:package",
|
|
1788
|
+
"create:force:version:package",
|
|
1789
|
+
"create:version:force:package",
|
|
1790
|
+
"create:version:package:force"
|
|
1609
1791
|
],
|
|
1610
1792
|
"permutations": [
|
|
1611
|
-
"
|
|
1612
|
-
"version:
|
|
1613
|
-
"version:create:
|
|
1614
|
-
"
|
|
1615
|
-
"create:
|
|
1616
|
-
"create:version:
|
|
1793
|
+
"package:version:create",
|
|
1794
|
+
"version:package:create",
|
|
1795
|
+
"version:create:package",
|
|
1796
|
+
"package:create:version",
|
|
1797
|
+
"create:package:version",
|
|
1798
|
+
"create:version:package"
|
|
1617
1799
|
]
|
|
1618
1800
|
},
|
|
1619
|
-
"
|
|
1801
|
+
"package:version:delete": {
|
|
1620
1802
|
"aliases": [
|
|
1621
|
-
"force:
|
|
1803
|
+
"force:package:version:delete"
|
|
1622
1804
|
],
|
|
1623
1805
|
"args": {},
|
|
1624
1806
|
"deprecateAliases": true,
|
|
1807
|
+
"description": "Specify the ID or alias of the package version you want to delete. In second-generation managed packaging, only beta package versions can be deleted. Before deleting a package version, review the considerations outlined in https://developer.salesforce.com/docs/atlas.en-us.pkg2_dev.meta/pkg2_dev/sfdx_dev_dev2gp_package_deletion.htm.",
|
|
1625
1808
|
"examples": [
|
|
1626
|
-
"
|
|
1627
|
-
"
|
|
1809
|
+
"Delete a package version with the specified alias using your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package \"Your Package Alias\"",
|
|
1810
|
+
"Delete a package version with the specified ID using the Dev Hub org with username \"devhub@example.com\":\n<%= config.bin %> <%= command.id %> --package 04t... --target-org devhub@example.com"
|
|
1628
1811
|
],
|
|
1629
1812
|
"flags": {
|
|
1630
1813
|
"json": {
|
|
@@ -1652,17 +1835,17 @@
|
|
|
1652
1835
|
"multiple": false,
|
|
1653
1836
|
"type": "option"
|
|
1654
1837
|
},
|
|
1655
|
-
"target-
|
|
1838
|
+
"target-dev-hub": {
|
|
1656
1839
|
"aliases": [
|
|
1657
|
-
"
|
|
1658
|
-
"
|
|
1840
|
+
"targetdevhubusername",
|
|
1841
|
+
"target-hub-org"
|
|
1659
1842
|
],
|
|
1660
|
-
"char": "
|
|
1843
|
+
"char": "v",
|
|
1661
1844
|
"deprecateAliases": true,
|
|
1662
|
-
"name": "target-
|
|
1845
|
+
"name": "target-dev-hub",
|
|
1663
1846
|
"noCacheDefault": true,
|
|
1664
1847
|
"required": true,
|
|
1665
|
-
"summary": "Username or alias of the
|
|
1848
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1666
1849
|
"hasDynamicHelp": true,
|
|
1667
1850
|
"multiple": false,
|
|
1668
1851
|
"type": "option"
|
|
@@ -1678,81 +1861,97 @@
|
|
|
1678
1861
|
"multiple": false,
|
|
1679
1862
|
"type": "option"
|
|
1680
1863
|
},
|
|
1681
|
-
"
|
|
1864
|
+
"no-prompt": {
|
|
1682
1865
|
"aliases": [
|
|
1683
|
-
"
|
|
1866
|
+
"noprompt"
|
|
1684
1867
|
],
|
|
1685
|
-
"char": "
|
|
1868
|
+
"char": "n",
|
|
1686
1869
|
"deprecateAliases": true,
|
|
1687
|
-
"name": "
|
|
1870
|
+
"name": "no-prompt",
|
|
1871
|
+
"summary": "Don’t prompt before deleting the package version.",
|
|
1872
|
+
"allowNo": false,
|
|
1873
|
+
"type": "boolean"
|
|
1874
|
+
},
|
|
1875
|
+
"package": {
|
|
1876
|
+
"char": "p",
|
|
1877
|
+
"name": "package",
|
|
1688
1878
|
"required": true,
|
|
1689
|
-
"summary": "ID (starts with 04t) of the
|
|
1879
|
+
"summary": "ID (starts with 04t) or alias of the package version to delete.",
|
|
1690
1880
|
"hasDynamicHelp": false,
|
|
1691
1881
|
"multiple": false,
|
|
1692
1882
|
"type": "option"
|
|
1883
|
+
},
|
|
1884
|
+
"undelete": {
|
|
1885
|
+
"hidden": true,
|
|
1886
|
+
"name": "undelete",
|
|
1887
|
+
"summary": "Undelete a deleted package version.",
|
|
1888
|
+
"allowNo": false,
|
|
1889
|
+
"type": "boolean"
|
|
1693
1890
|
}
|
|
1694
1891
|
},
|
|
1695
1892
|
"hasDynamicHelp": true,
|
|
1696
1893
|
"hiddenAliases": [],
|
|
1697
|
-
"id": "
|
|
1894
|
+
"id": "package:version:delete",
|
|
1698
1895
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1699
1896
|
"pluginName": "@salesforce/plugin-packaging",
|
|
1700
1897
|
"pluginType": "core",
|
|
1701
1898
|
"strict": true,
|
|
1702
|
-
"summary": "
|
|
1899
|
+
"summary": "Delete a package version.",
|
|
1703
1900
|
"enableJsonFlag": true,
|
|
1704
1901
|
"isESM": true,
|
|
1705
1902
|
"relativePath": [
|
|
1706
1903
|
"lib",
|
|
1707
1904
|
"commands",
|
|
1708
|
-
"
|
|
1905
|
+
"package",
|
|
1709
1906
|
"version",
|
|
1710
|
-
"
|
|
1907
|
+
"delete.js"
|
|
1711
1908
|
],
|
|
1712
1909
|
"aliasPermutations": [
|
|
1713
|
-
"force:
|
|
1714
|
-
"
|
|
1715
|
-
"
|
|
1716
|
-
"
|
|
1717
|
-
"force:version:
|
|
1718
|
-
"version:force:
|
|
1719
|
-
"version:
|
|
1720
|
-
"version:
|
|
1721
|
-
"force:version:
|
|
1722
|
-
"version:force:
|
|
1723
|
-
"version:
|
|
1724
|
-
"version:
|
|
1725
|
-
"force:
|
|
1726
|
-
"
|
|
1727
|
-
"
|
|
1728
|
-
"
|
|
1729
|
-
"force:
|
|
1730
|
-
"
|
|
1731
|
-
"
|
|
1732
|
-
"
|
|
1733
|
-
"force:
|
|
1734
|
-
"
|
|
1735
|
-
"
|
|
1736
|
-
"
|
|
1910
|
+
"force:package:version:delete",
|
|
1911
|
+
"package:force:version:delete",
|
|
1912
|
+
"package:version:force:delete",
|
|
1913
|
+
"package:version:delete:force",
|
|
1914
|
+
"force:version:package:delete",
|
|
1915
|
+
"version:force:package:delete",
|
|
1916
|
+
"version:package:force:delete",
|
|
1917
|
+
"version:package:delete:force",
|
|
1918
|
+
"force:version:delete:package",
|
|
1919
|
+
"version:force:delete:package",
|
|
1920
|
+
"version:delete:force:package",
|
|
1921
|
+
"version:delete:package:force",
|
|
1922
|
+
"force:package:delete:version",
|
|
1923
|
+
"package:force:delete:version",
|
|
1924
|
+
"package:delete:force:version",
|
|
1925
|
+
"package:delete:version:force",
|
|
1926
|
+
"force:delete:package:version",
|
|
1927
|
+
"delete:force:package:version",
|
|
1928
|
+
"delete:package:force:version",
|
|
1929
|
+
"delete:package:version:force",
|
|
1930
|
+
"force:delete:version:package",
|
|
1931
|
+
"delete:force:version:package",
|
|
1932
|
+
"delete:version:force:package",
|
|
1933
|
+
"delete:version:package:force"
|
|
1737
1934
|
],
|
|
1738
1935
|
"permutations": [
|
|
1739
|
-
"
|
|
1740
|
-
"version:
|
|
1741
|
-
"version:
|
|
1742
|
-
"
|
|
1743
|
-
"
|
|
1744
|
-
"
|
|
1936
|
+
"package:version:delete",
|
|
1937
|
+
"version:package:delete",
|
|
1938
|
+
"version:delete:package",
|
|
1939
|
+
"package:delete:version",
|
|
1940
|
+
"delete:package:version",
|
|
1941
|
+
"delete:version:package"
|
|
1745
1942
|
]
|
|
1746
1943
|
},
|
|
1747
|
-
"
|
|
1944
|
+
"package:version:displayancestry": {
|
|
1748
1945
|
"aliases": [
|
|
1749
|
-
"force:
|
|
1946
|
+
"force:package:version:displayancestry"
|
|
1750
1947
|
],
|
|
1751
1948
|
"args": {},
|
|
1752
1949
|
"deprecateAliases": true,
|
|
1753
1950
|
"examples": [
|
|
1754
|
-
"
|
|
1755
|
-
"
|
|
1951
|
+
"Display the ancestry tree for a package version with the specified alias, using your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package package_version_alias",
|
|
1952
|
+
"Similar to previous example, but display the output in DOT code:\n<%= config.bin %> <%= command.id %> --package package_version_alias --dot-code",
|
|
1953
|
+
"Display the ancestry tree for a package with the specified ID, using the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --package OHo... --target-dev-hub devhub@example.com",
|
|
1954
|
+
"Display the ancestry tree of a package version with the specified ID, using your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t..."
|
|
1756
1955
|
],
|
|
1757
1956
|
"flags": {
|
|
1758
1957
|
"json": {
|
|
@@ -1780,488 +1979,127 @@
|
|
|
1780
1979
|
"multiple": false,
|
|
1781
1980
|
"type": "option"
|
|
1782
1981
|
},
|
|
1783
|
-
"target-
|
|
1784
|
-
"aliases": [
|
|
1785
|
-
"targetusername",
|
|
1786
|
-
"u"
|
|
1787
|
-
],
|
|
1788
|
-
"char": "o",
|
|
1789
|
-
"deprecateAliases": true,
|
|
1790
|
-
"name": "target-org",
|
|
1791
|
-
"noCacheDefault": true,
|
|
1792
|
-
"required": true,
|
|
1793
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1794
|
-
"hasDynamicHelp": true,
|
|
1795
|
-
"multiple": false,
|
|
1796
|
-
"type": "option"
|
|
1797
|
-
},
|
|
1798
|
-
"api-version": {
|
|
1799
|
-
"aliases": [
|
|
1800
|
-
"apiversion"
|
|
1801
|
-
],
|
|
1802
|
-
"deprecateAliases": true,
|
|
1803
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1804
|
-
"name": "api-version",
|
|
1805
|
-
"hasDynamicHelp": false,
|
|
1806
|
-
"multiple": false,
|
|
1807
|
-
"type": "option"
|
|
1808
|
-
},
|
|
1809
|
-
"package-id": {
|
|
1810
|
-
"aliases": [
|
|
1811
|
-
"packageid"
|
|
1812
|
-
],
|
|
1813
|
-
"char": "i",
|
|
1814
|
-
"deprecateAliases": true,
|
|
1815
|
-
"description": "If not specified, shows all versions for all packages (managed and unmanaged) in the org.",
|
|
1816
|
-
"name": "package-id",
|
|
1817
|
-
"summary": "Metadata package ID (starts with 033) whose package versions you want to list.",
|
|
1818
|
-
"hasDynamicHelp": false,
|
|
1819
|
-
"multiple": false,
|
|
1820
|
-
"type": "option"
|
|
1821
|
-
}
|
|
1822
|
-
},
|
|
1823
|
-
"hasDynamicHelp": true,
|
|
1824
|
-
"hiddenAliases": [],
|
|
1825
|
-
"id": "package1:version:list",
|
|
1826
|
-
"pluginAlias": "@salesforce/plugin-packaging",
|
|
1827
|
-
"pluginName": "@salesforce/plugin-packaging",
|
|
1828
|
-
"pluginType": "core",
|
|
1829
|
-
"strict": true,
|
|
1830
|
-
"summary": "List package versions for the specified first-generation package or for the org.",
|
|
1831
|
-
"enableJsonFlag": true,
|
|
1832
|
-
"isESM": true,
|
|
1833
|
-
"relativePath": [
|
|
1834
|
-
"lib",
|
|
1835
|
-
"commands",
|
|
1836
|
-
"package1",
|
|
1837
|
-
"version",
|
|
1838
|
-
"list.js"
|
|
1839
|
-
],
|
|
1840
|
-
"aliasPermutations": [
|
|
1841
|
-
"force:package1:version:list",
|
|
1842
|
-
"package1:force:version:list",
|
|
1843
|
-
"package1:version:force:list",
|
|
1844
|
-
"package1:version:list:force",
|
|
1845
|
-
"force:version:package1:list",
|
|
1846
|
-
"version:force:package1:list",
|
|
1847
|
-
"version:package1:force:list",
|
|
1848
|
-
"version:package1:list:force",
|
|
1849
|
-
"force:version:list:package1",
|
|
1850
|
-
"version:force:list:package1",
|
|
1851
|
-
"version:list:force:package1",
|
|
1852
|
-
"version:list:package1:force",
|
|
1853
|
-
"force:package1:list:version",
|
|
1854
|
-
"package1:force:list:version",
|
|
1855
|
-
"package1:list:force:version",
|
|
1856
|
-
"package1:list:version:force",
|
|
1857
|
-
"force:list:package1:version",
|
|
1858
|
-
"list:force:package1:version",
|
|
1859
|
-
"list:package1:force:version",
|
|
1860
|
-
"list:package1:version:force",
|
|
1861
|
-
"force:list:version:package1",
|
|
1862
|
-
"list:force:version:package1",
|
|
1863
|
-
"list:version:force:package1",
|
|
1864
|
-
"list:version:package1:force"
|
|
1865
|
-
],
|
|
1866
|
-
"permutations": [
|
|
1867
|
-
"package1:version:list",
|
|
1868
|
-
"version:package1:list",
|
|
1869
|
-
"version:list:package1",
|
|
1870
|
-
"package1:list:version",
|
|
1871
|
-
"list:package1:version",
|
|
1872
|
-
"list:version:package1"
|
|
1873
|
-
]
|
|
1874
|
-
},
|
|
1875
|
-
"package:version:create": {
|
|
1876
|
-
"aliases": [
|
|
1877
|
-
"force:package:version:create"
|
|
1878
|
-
],
|
|
1879
|
-
"args": {},
|
|
1880
|
-
"deprecateAliases": true,
|
|
1881
|
-
"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.",
|
|
1882
|
-
"examples": [
|
|
1883
|
-
"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",
|
|
1884
|
-
"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",
|
|
1885
|
-
"Create a package version from a package with the specified ID:\n<%= config.bin %> <%= command.id %> --package 0Ho... --installation-key password123",
|
|
1886
|
-
"Create a package version and skip the validation step:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123 --skip-validation",
|
|
1887
|
-
"Create a package version and perform package validations asynchronously:\n<%= config.bin %> <%= command.id %> --path common --installation-key password123 --async-validation"
|
|
1888
|
-
],
|
|
1889
|
-
"flags": {
|
|
1890
|
-
"json": {
|
|
1891
|
-
"description": "Format output as json.",
|
|
1892
|
-
"helpGroup": "GLOBAL",
|
|
1893
|
-
"name": "json",
|
|
1894
|
-
"allowNo": false,
|
|
1895
|
-
"type": "boolean"
|
|
1896
|
-
},
|
|
1897
|
-
"flags-dir": {
|
|
1898
|
-
"helpGroup": "GLOBAL",
|
|
1899
|
-
"name": "flags-dir",
|
|
1900
|
-
"summary": "Import flag values from a directory.",
|
|
1901
|
-
"hasDynamicHelp": false,
|
|
1902
|
-
"multiple": false,
|
|
1903
|
-
"type": "option"
|
|
1904
|
-
},
|
|
1905
|
-
"loglevel": {
|
|
1906
|
-
"deprecated": {
|
|
1907
|
-
"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."
|
|
1908
|
-
},
|
|
1909
|
-
"hidden": true,
|
|
1910
|
-
"name": "loglevel",
|
|
1911
|
-
"hasDynamicHelp": false,
|
|
1912
|
-
"multiple": false,
|
|
1913
|
-
"type": "option"
|
|
1914
|
-
},
|
|
1915
|
-
"target-dev-hub": {
|
|
1982
|
+
"target-dev-hub": {
|
|
1916
1983
|
"aliases": [
|
|
1917
1984
|
"targetdevhubusername",
|
|
1918
1985
|
"target-hub-org"
|
|
1919
1986
|
],
|
|
1920
|
-
"char": "v",
|
|
1921
|
-
"deprecateAliases": true,
|
|
1922
|
-
"name": "target-dev-hub",
|
|
1923
|
-
"noCacheDefault": true,
|
|
1924
|
-
"required": true,
|
|
1925
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
1926
|
-
"hasDynamicHelp": true,
|
|
1927
|
-
"multiple": false,
|
|
1928
|
-
"type": "option"
|
|
1929
|
-
},
|
|
1930
|
-
"api-version": {
|
|
1931
|
-
"aliases": [
|
|
1932
|
-
"apiversion"
|
|
1933
|
-
],
|
|
1934
|
-
"deprecateAliases": true,
|
|
1935
|
-
"description": "Override the api version used for api requests made by this command",
|
|
1936
|
-
"name": "api-version",
|
|
1937
|
-
"hasDynamicHelp": false,
|
|
1938
|
-
"multiple": false,
|
|
1939
|
-
"type": "option"
|
|
1940
|
-
},
|
|
1941
|
-
"branch": {
|
|
1942
|
-
"char": "b",
|
|
1943
|
-
"name": "branch",
|
|
1944
|
-
"summary": "Name of the branch in your source control system that the package version is based on.",
|
|
1945
|
-
"hasDynamicHelp": false,
|
|
1946
|
-
"multiple": false,
|
|
1947
|
-
"type": "option"
|
|
1948
|
-
},
|
|
1949
|
-
"build-instance": {
|
|
1950
|
-
"aliases": [
|
|
1951
|
-
"buildinstance"
|
|
1952
|
-
],
|
|
1953
|
-
"char": "s",
|
|
1954
|
-
"deprecateAliases": true,
|
|
1955
|
-
"hidden": true,
|
|
1956
|
-
"name": "build-instance",
|
|
1957
|
-
"summary": "Instance where the package version will be created, such as NA50.",
|
|
1958
|
-
"hasDynamicHelp": false,
|
|
1959
|
-
"multiple": false,
|
|
1960
|
-
"type": "option"
|
|
1961
|
-
},
|
|
1962
|
-
"code-coverage": {
|
|
1963
|
-
"aliases": [
|
|
1964
|
-
"codecoverage"
|
|
1965
|
-
],
|
|
1966
|
-
"char": "c",
|
|
1967
|
-
"deprecateAliases": true,
|
|
1968
|
-
"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.",
|
|
1969
|
-
"exclusive": [
|
|
1970
|
-
"skip-validation"
|
|
1971
|
-
],
|
|
1972
|
-
"name": "code-coverage",
|
|
1973
|
-
"summary": "Calculate and store the code coverage percentage by running the packaged Apex tests included in this package version.",
|
|
1974
|
-
"allowNo": false,
|
|
1975
|
-
"type": "boolean"
|
|
1976
|
-
},
|
|
1977
|
-
"definition-file": {
|
|
1978
|
-
"aliases": [
|
|
1979
|
-
"definitionfile"
|
|
1980
|
-
],
|
|
1981
|
-
"char": "f",
|
|
1982
|
-
"deprecateAliases": true,
|
|
1983
|
-
"description": "For a patch version, the features specified in this file are ignored, and instead the features specified for the ancestor version are used.",
|
|
1984
|
-
"name": "definition-file",
|
|
1985
|
-
"summary": "Path to a definition file similar to scratch org definition file that contains the list of features and org preferences that the metadata of the package version depends on.",
|
|
1986
|
-
"hasDynamicHelp": false,
|
|
1987
|
-
"multiple": false,
|
|
1988
|
-
"type": "option"
|
|
1989
|
-
},
|
|
1990
|
-
"installation-key": {
|
|
1991
|
-
"aliases": [
|
|
1992
|
-
"installationkey"
|
|
1993
|
-
],
|
|
1994
|
-
"char": "k",
|
|
1995
|
-
"deprecateAliases": true,
|
|
1996
|
-
"name": "installation-key",
|
|
1997
|
-
"summary": "Installation key for key-protected package. (either --installation-key or --installation-key-bypass is required)",
|
|
1998
|
-
"hasDynamicHelp": false,
|
|
1999
|
-
"multiple": false,
|
|
2000
|
-
"type": "option"
|
|
2001
|
-
},
|
|
2002
|
-
"installation-key-bypass": {
|
|
2003
|
-
"aliases": [
|
|
2004
|
-
"installationkeybypass"
|
|
2005
|
-
],
|
|
2006
|
-
"char": "x",
|
|
2007
|
-
"deprecateAliases": true,
|
|
2008
|
-
"description": "If you bypass this requirement, anyone can install your package.",
|
|
2009
|
-
"name": "installation-key-bypass",
|
|
2010
|
-
"summary": "Bypass the installation key requirement. (either --installation-key or --installation-key-bypass is required)",
|
|
2011
|
-
"allowNo": false,
|
|
2012
|
-
"type": "boolean"
|
|
2013
|
-
},
|
|
2014
|
-
"package": {
|
|
2015
|
-
"char": "p",
|
|
2016
|
-
"name": "package",
|
|
2017
|
-
"summary": "ID (starts with 0Ho) or alias of the package to create a version of.",
|
|
2018
|
-
"hasDynamicHelp": false,
|
|
2019
|
-
"multiple": false,
|
|
2020
|
-
"type": "option"
|
|
2021
|
-
},
|
|
2022
|
-
"path": {
|
|
2023
|
-
"char": "d",
|
|
2024
|
-
"name": "path",
|
|
2025
|
-
"summary": "Path to the directory that contains the contents of the package.",
|
|
2026
|
-
"hasDynamicHelp": false,
|
|
2027
|
-
"multiple": false,
|
|
2028
|
-
"type": "option"
|
|
2029
|
-
},
|
|
2030
|
-
"post-install-script": {
|
|
2031
|
-
"aliases": [
|
|
2032
|
-
"postinstallscript"
|
|
2033
|
-
],
|
|
2034
|
-
"deprecateAliases": true,
|
|
2035
|
-
"description": "The post-install script is an Apex class within this package that is run in the installing org after installations or upgrades of this package version.",
|
|
2036
|
-
"name": "post-install-script",
|
|
2037
|
-
"summary": "Name of the post-install script; applies to managed packages only.",
|
|
2038
|
-
"hasDynamicHelp": false,
|
|
2039
|
-
"multiple": false,
|
|
2040
|
-
"type": "option"
|
|
2041
|
-
},
|
|
2042
|
-
"post-install-url": {
|
|
2043
|
-
"aliases": [
|
|
2044
|
-
"postinstallurl"
|
|
2045
|
-
],
|
|
2046
|
-
"deprecateAliases": true,
|
|
2047
|
-
"description": "The contents of the post-installation instructions URL are displayed in the UI after installation of the package version.",
|
|
2048
|
-
"name": "post-install-url",
|
|
2049
|
-
"summary": "Post-install instructions URL.",
|
|
2050
|
-
"hasDynamicHelp": false,
|
|
2051
|
-
"multiple": false,
|
|
2052
|
-
"type": "option"
|
|
2053
|
-
},
|
|
2054
|
-
"preserve": {
|
|
2055
|
-
"char": "r",
|
|
2056
|
-
"hidden": true,
|
|
2057
|
-
"name": "preserve",
|
|
2058
|
-
"summary": "Preserve temp files that would otherwise be deleted.",
|
|
2059
|
-
"allowNo": false,
|
|
2060
|
-
"type": "boolean"
|
|
2061
|
-
},
|
|
2062
|
-
"releasenotes-url": {
|
|
2063
|
-
"aliases": [
|
|
2064
|
-
"releasenotesurl"
|
|
2065
|
-
],
|
|
2066
|
-
"deprecateAliases": true,
|
|
2067
|
-
"description": "This link is displayed in the package installation UI to provide release notes for this package version to subscribers.",
|
|
2068
|
-
"name": "releasenotes-url",
|
|
2069
|
-
"summary": "Release notes URL.",
|
|
2070
|
-
"hasDynamicHelp": false,
|
|
2071
|
-
"multiple": false,
|
|
2072
|
-
"type": "option"
|
|
2073
|
-
},
|
|
2074
|
-
"skip-ancestor-check": {
|
|
2075
|
-
"aliases": [
|
|
2076
|
-
"skipancestorcheck"
|
|
2077
|
-
],
|
|
2078
|
-
"deprecateAliases": true,
|
|
2079
|
-
"name": "skip-ancestor-check",
|
|
2080
|
-
"summary": "Overrides ancestry requirements, which allows you to specify a package ancestor that isn’t the highest released package version.",
|
|
2081
|
-
"allowNo": false,
|
|
2082
|
-
"type": "boolean"
|
|
2083
|
-
},
|
|
2084
|
-
"skip-validation": {
|
|
2085
|
-
"aliases": [
|
|
2086
|
-
"skipvalidation"
|
|
2087
|
-
],
|
|
2088
|
-
"deprecateAliases": true,
|
|
2089
|
-
"description": "Skips validation of dependencies, package ancestors, and metadata during package version creation. Skipping validation reduces the time it takes to create a new package version, but you can promote only validated package versions. Skipping validation can suppress important errors that can surface at a later stage. You can specify skip validation or code coverage, but not both. Code coverage is calculated during validation.",
|
|
2090
|
-
"exclusive": [
|
|
2091
|
-
"code-coverage",
|
|
2092
|
-
"async-validation"
|
|
2093
|
-
],
|
|
2094
|
-
"name": "skip-validation",
|
|
2095
|
-
"summary": "Skip validation during package version creation; you can’t promote unvalidated package versions.",
|
|
2096
|
-
"allowNo": false,
|
|
2097
|
-
"type": "boolean"
|
|
2098
|
-
},
|
|
2099
|
-
"async-validation": {
|
|
2100
|
-
"description": "Specifying async validation returns the package version earlier in the process, allowing you to install and test the new version right away. If your development team is using continuous integration (CI) scripts, async validation can reduce your overall CI run time.",
|
|
2101
|
-
"exclusive": [
|
|
2102
|
-
"skip-validation"
|
|
2103
|
-
],
|
|
2104
|
-
"name": "async-validation",
|
|
2105
|
-
"summary": "Return a new package version before completing package validations.",
|
|
2106
|
-
"allowNo": false,
|
|
2107
|
-
"type": "boolean"
|
|
2108
|
-
},
|
|
2109
|
-
"tag": {
|
|
2110
|
-
"char": "t",
|
|
2111
|
-
"name": "tag",
|
|
2112
|
-
"summary": "Package version’s tag.",
|
|
2113
|
-
"hasDynamicHelp": false,
|
|
2114
|
-
"multiple": false,
|
|
2115
|
-
"type": "option"
|
|
2116
|
-
},
|
|
2117
|
-
"uninstall-script": {
|
|
2118
|
-
"aliases": [
|
|
2119
|
-
"uninstallscript"
|
|
2120
|
-
],
|
|
2121
|
-
"deprecateAliases": true,
|
|
2122
|
-
"description": "The uninstall script is an Apex class within this package that is run in the installing org after uninstallations of this package.",
|
|
2123
|
-
"name": "uninstall-script",
|
|
2124
|
-
"summary": "Uninstall script name; applies to managed packages only.",
|
|
2125
|
-
"hasDynamicHelp": false,
|
|
2126
|
-
"multiple": false,
|
|
2127
|
-
"type": "option"
|
|
2128
|
-
},
|
|
2129
|
-
"validate-schema": {
|
|
2130
|
-
"aliases": [
|
|
2131
|
-
"validateschema"
|
|
2132
|
-
],
|
|
2133
|
-
"char": "j",
|
|
2134
|
-
"deprecateAliases": true,
|
|
2135
|
-
"hidden": true,
|
|
2136
|
-
"name": "validate-schema",
|
|
2137
|
-
"summary": "Validate the sfdx-project.json file against the JSON schema.",
|
|
2138
|
-
"allowNo": false,
|
|
2139
|
-
"type": "boolean"
|
|
2140
|
-
},
|
|
2141
|
-
"version-description": {
|
|
2142
|
-
"aliases": [
|
|
2143
|
-
"versiondescription"
|
|
2144
|
-
],
|
|
2145
|
-
"char": "e",
|
|
2146
|
-
"deprecateAliases": true,
|
|
2147
|
-
"name": "version-description",
|
|
2148
|
-
"summary": "Description of the package version to be created; overrides the sfdx-project.json value.",
|
|
2149
|
-
"hasDynamicHelp": false,
|
|
2150
|
-
"multiple": false,
|
|
2151
|
-
"type": "option"
|
|
2152
|
-
},
|
|
2153
|
-
"version-name": {
|
|
2154
|
-
"aliases": [
|
|
2155
|
-
"versionname"
|
|
2156
|
-
],
|
|
2157
|
-
"char": "a",
|
|
1987
|
+
"char": "v",
|
|
2158
1988
|
"deprecateAliases": true,
|
|
2159
|
-
"name": "
|
|
2160
|
-
"
|
|
2161
|
-
"
|
|
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,
|
|
2162
1994
|
"multiple": false,
|
|
2163
1995
|
"type": "option"
|
|
2164
1996
|
},
|
|
2165
|
-
"version
|
|
1997
|
+
"api-version": {
|
|
2166
1998
|
"aliases": [
|
|
2167
|
-
"
|
|
1999
|
+
"apiversion"
|
|
2168
2000
|
],
|
|
2169
|
-
"char": "n",
|
|
2170
2001
|
"deprecateAliases": true,
|
|
2171
|
-
"description": "
|
|
2172
|
-
"name": "version
|
|
2173
|
-
"summary": "Version number of the package version to be created; overrides the sfdx-project.json value.",
|
|
2002
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2003
|
+
"name": "api-version",
|
|
2174
2004
|
"hasDynamicHelp": false,
|
|
2175
2005
|
"multiple": false,
|
|
2176
2006
|
"type": "option"
|
|
2177
2007
|
},
|
|
2178
|
-
"
|
|
2179
|
-
"char": "
|
|
2180
|
-
"
|
|
2181
|
-
"
|
|
2182
|
-
"
|
|
2183
|
-
"
|
|
2184
|
-
"type": "option"
|
|
2185
|
-
},
|
|
2186
|
-
"language": {
|
|
2187
|
-
"description": "Specify the language using a language code listed under \"Supported Languages\" in Salesforce Help. If no language is specified, the language defaults to the language of the Dev Hub user who created the package.",
|
|
2188
|
-
"name": "language",
|
|
2189
|
-
"summary": "Language for the package.",
|
|
2008
|
+
"package": {
|
|
2009
|
+
"char": "p",
|
|
2010
|
+
"description": "If you specify a package ID (starts with 0Ho) or alias, the ancestor tree for every package version associated with the package ID is displayed. If you specify a package version (starts with 04t) or alias, the ancestry tree of the specified package version is displayed.",
|
|
2011
|
+
"name": "package",
|
|
2012
|
+
"required": true,
|
|
2013
|
+
"summary": "ID or alias of the package (starts with 0Ho) or package version (starts with 04t) to display ancestry for.",
|
|
2190
2014
|
"hasDynamicHelp": false,
|
|
2191
2015
|
"multiple": false,
|
|
2192
2016
|
"type": "option"
|
|
2193
2017
|
},
|
|
2018
|
+
"dot-code": {
|
|
2019
|
+
"aliases": [
|
|
2020
|
+
"dotcode"
|
|
2021
|
+
],
|
|
2022
|
+
"deprecateAliases": true,
|
|
2023
|
+
"description": "You can use the DOT code output in graph visualization software to create tree visualizations.",
|
|
2024
|
+
"name": "dot-code",
|
|
2025
|
+
"summary": "Display the ancestry tree in DOT code.",
|
|
2026
|
+
"allowNo": false,
|
|
2027
|
+
"type": "boolean"
|
|
2028
|
+
},
|
|
2194
2029
|
"verbose": {
|
|
2195
|
-
"description": "Display verbose command output. When polling for the status of the creation, this will output status and timeout data on a separate line for each poll request, which is useful in CI systems where timeouts can occur with long periods of no output from commands.",
|
|
2196
2030
|
"name": "verbose",
|
|
2197
|
-
"summary": "Display
|
|
2031
|
+
"summary": "Display both the package version ID (starts with 04t) and the version number (major.minor.patch.build) in the ancestry tree.",
|
|
2198
2032
|
"allowNo": false,
|
|
2199
2033
|
"type": "boolean"
|
|
2200
2034
|
}
|
|
2201
2035
|
},
|
|
2202
2036
|
"hasDynamicHelp": true,
|
|
2203
2037
|
"hiddenAliases": [],
|
|
2204
|
-
"id": "package:version:
|
|
2038
|
+
"id": "package:version:displayancestry",
|
|
2205
2039
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2206
2040
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2207
2041
|
"pluginType": "core",
|
|
2208
2042
|
"strict": true,
|
|
2209
|
-
"summary": "
|
|
2043
|
+
"summary": "Display the ancestry tree for a 2GP managed package version.",
|
|
2210
2044
|
"enableJsonFlag": true,
|
|
2211
|
-
"requiresProject": true,
|
|
2212
2045
|
"isESM": true,
|
|
2213
2046
|
"relativePath": [
|
|
2214
2047
|
"lib",
|
|
2215
2048
|
"commands",
|
|
2216
2049
|
"package",
|
|
2217
2050
|
"version",
|
|
2218
|
-
"
|
|
2051
|
+
"displayancestry.js"
|
|
2219
2052
|
],
|
|
2220
2053
|
"aliasPermutations": [
|
|
2221
|
-
"force:package:version:
|
|
2222
|
-
"package:force:version:
|
|
2223
|
-
"package:version:force:
|
|
2224
|
-
"package:version:
|
|
2225
|
-
"force:version:package:
|
|
2226
|
-
"version:force:package:
|
|
2227
|
-
"version:package:force:
|
|
2228
|
-
"version:package:
|
|
2229
|
-
"force:version:
|
|
2230
|
-
"version:force:
|
|
2231
|
-
"version:
|
|
2232
|
-
"version:
|
|
2233
|
-
"force:package:
|
|
2234
|
-
"package:force:
|
|
2235
|
-
"package:
|
|
2236
|
-
"package:
|
|
2237
|
-
"force:
|
|
2238
|
-
"
|
|
2239
|
-
"
|
|
2240
|
-
"
|
|
2241
|
-
"force:
|
|
2242
|
-
"
|
|
2243
|
-
"
|
|
2244
|
-
"
|
|
2054
|
+
"force:package:version:displayancestry",
|
|
2055
|
+
"package:force:version:displayancestry",
|
|
2056
|
+
"package:version:force:displayancestry",
|
|
2057
|
+
"package:version:displayancestry:force",
|
|
2058
|
+
"force:version:package:displayancestry",
|
|
2059
|
+
"version:force:package:displayancestry",
|
|
2060
|
+
"version:package:force:displayancestry",
|
|
2061
|
+
"version:package:displayancestry:force",
|
|
2062
|
+
"force:version:displayancestry:package",
|
|
2063
|
+
"version:force:displayancestry:package",
|
|
2064
|
+
"version:displayancestry:force:package",
|
|
2065
|
+
"version:displayancestry:package:force",
|
|
2066
|
+
"force:package:displayancestry:version",
|
|
2067
|
+
"package:force:displayancestry:version",
|
|
2068
|
+
"package:displayancestry:force:version",
|
|
2069
|
+
"package:displayancestry:version:force",
|
|
2070
|
+
"force:displayancestry:package:version",
|
|
2071
|
+
"displayancestry:force:package:version",
|
|
2072
|
+
"displayancestry:package:force:version",
|
|
2073
|
+
"displayancestry:package:version:force",
|
|
2074
|
+
"force:displayancestry:version:package",
|
|
2075
|
+
"displayancestry:force:version:package",
|
|
2076
|
+
"displayancestry:version:force:package",
|
|
2077
|
+
"displayancestry:version:package:force"
|
|
2245
2078
|
],
|
|
2246
2079
|
"permutations": [
|
|
2247
|
-
"package:version:
|
|
2248
|
-
"version:package:
|
|
2249
|
-
"version:
|
|
2250
|
-
"package:
|
|
2251
|
-
"
|
|
2252
|
-
"
|
|
2080
|
+
"package:version:displayancestry",
|
|
2081
|
+
"version:package:displayancestry",
|
|
2082
|
+
"version:displayancestry:package",
|
|
2083
|
+
"package:displayancestry:version",
|
|
2084
|
+
"displayancestry:package:version",
|
|
2085
|
+
"displayancestry:version:package"
|
|
2253
2086
|
]
|
|
2254
2087
|
},
|
|
2255
|
-
"package:version:
|
|
2088
|
+
"package:version:list": {
|
|
2256
2089
|
"aliases": [
|
|
2257
|
-
"force:package:version:
|
|
2090
|
+
"force:package:version:list"
|
|
2258
2091
|
],
|
|
2259
2092
|
"args": {},
|
|
2260
2093
|
"deprecateAliases": true,
|
|
2261
|
-
"description": "
|
|
2094
|
+
"description": "Description",
|
|
2262
2095
|
"examples": [
|
|
2263
|
-
"
|
|
2264
|
-
"
|
|
2096
|
+
"List package versions in your default Dev Hub org that were created in the last 3 days; show only the released versions and order the list using the PatchVersion field. Display extended details about each package version:\n<%= config.bin %> <%= command.id %> --verbose --created-last-days 3 --released --order-by PatchVersion",
|
|
2097
|
+
"List the released package versions for the two specified packages that were modified today; use the Dev Hub org with username devhub@example.com:\n<%= config.bin %> <%= command.id %> --packages 0Ho000000000000,0Ho000000000001 --released --modified-last-days 0 --target-dev-hub devhub@example.com",
|
|
2098
|
+
"List all released package versions in your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --released",
|
|
2099
|
+
"List package versions that were modified today in your default Dev Hub org; show limited details about each one:\n<%= config.bin %> <%= command.id %> --concise --modified-last-days 0",
|
|
2100
|
+
"List package versions that are based on the \"featureA\" branch in your source control system that were modified today in your default Dev Hub org; show limited details about each one:\n<%= config.bin %> <%= command.id %> --concise --modified-last-days 0 --branch featureA",
|
|
2101
|
+
"List released package versions that were created in the last 3 days in your default Dev Hub org; show limited details:\n<%= config.bin %> <%= command.id %> --concise --created-last-days 3 --released",
|
|
2102
|
+
"List released package versions that were modified today for the two packages with specified aliases in your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --packages exp-mgr,exp-mgr-util --released --modified-last-days 0"
|
|
2265
2103
|
],
|
|
2266
2104
|
"flags": {
|
|
2267
2105
|
"json": {
|
|
@@ -2315,42 +2153,92 @@
|
|
|
2315
2153
|
"multiple": false,
|
|
2316
2154
|
"type": "option"
|
|
2317
2155
|
},
|
|
2318
|
-
"
|
|
2156
|
+
"created-last-days": {
|
|
2319
2157
|
"aliases": [
|
|
2320
|
-
"
|
|
2158
|
+
"createdlastdays"
|
|
2321
2159
|
],
|
|
2322
|
-
"char": "
|
|
2160
|
+
"char": "c",
|
|
2323
2161
|
"deprecateAliases": true,
|
|
2324
|
-
"name": "
|
|
2325
|
-
"summary": "
|
|
2162
|
+
"name": "created-last-days",
|
|
2163
|
+
"summary": "Number of days since the request was created, starting at 00:00:00 of first day to now. Use 0 for today.",
|
|
2164
|
+
"hasDynamicHelp": false,
|
|
2165
|
+
"multiple": false,
|
|
2166
|
+
"type": "option"
|
|
2167
|
+
},
|
|
2168
|
+
"concise": {
|
|
2169
|
+
"name": "concise",
|
|
2170
|
+
"summary": "Display limited package version details.",
|
|
2326
2171
|
"allowNo": false,
|
|
2327
2172
|
"type": "boolean"
|
|
2328
2173
|
},
|
|
2329
|
-
"
|
|
2174
|
+
"show-conversions-only": {
|
|
2175
|
+
"name": "show-conversions-only",
|
|
2176
|
+
"summary": "Filter the list output to display only converted package version.",
|
|
2177
|
+
"allowNo": false,
|
|
2178
|
+
"type": "boolean"
|
|
2179
|
+
},
|
|
2180
|
+
"modified-last-days": {
|
|
2181
|
+
"aliases": [
|
|
2182
|
+
"modifiedlastdays"
|
|
2183
|
+
],
|
|
2184
|
+
"char": "m",
|
|
2185
|
+
"deprecateAliases": true,
|
|
2186
|
+
"name": "modified-last-days",
|
|
2187
|
+
"summary": "Number of days since the items were modified, starting at 00:00:00 of first day to now. Use 0 for today.",
|
|
2188
|
+
"hasDynamicHelp": false,
|
|
2189
|
+
"multiple": false,
|
|
2190
|
+
"type": "option"
|
|
2191
|
+
},
|
|
2192
|
+
"packages": {
|
|
2330
2193
|
"char": "p",
|
|
2331
|
-
"name": "
|
|
2332
|
-
"
|
|
2333
|
-
"summary": "ID (starts with 04t) or alias of the package version to delete.",
|
|
2194
|
+
"name": "packages",
|
|
2195
|
+
"summary": "Comma-delimited list of packages (aliases or 0Ho IDs) to list.",
|
|
2334
2196
|
"hasDynamicHelp": false,
|
|
2335
2197
|
"multiple": false,
|
|
2336
2198
|
"type": "option"
|
|
2337
2199
|
},
|
|
2338
|
-
"
|
|
2339
|
-
"
|
|
2340
|
-
"name": "
|
|
2341
|
-
"summary": "
|
|
2200
|
+
"released": {
|
|
2201
|
+
"char": "r",
|
|
2202
|
+
"name": "released",
|
|
2203
|
+
"summary": "Display released versions only (IsReleased=true).",
|
|
2204
|
+
"allowNo": false,
|
|
2205
|
+
"type": "boolean"
|
|
2206
|
+
},
|
|
2207
|
+
"branch": {
|
|
2208
|
+
"char": "b",
|
|
2209
|
+
"name": "branch",
|
|
2210
|
+
"summary": "Branch in your source control system used to filter the results; only package versions based on the specified branch are listed.",
|
|
2211
|
+
"hasDynamicHelp": false,
|
|
2212
|
+
"multiple": false,
|
|
2213
|
+
"type": "option"
|
|
2214
|
+
},
|
|
2215
|
+
"order-by": {
|
|
2216
|
+
"aliases": [
|
|
2217
|
+
"orderby"
|
|
2218
|
+
],
|
|
2219
|
+
"char": "o",
|
|
2220
|
+
"deprecateAliases": true,
|
|
2221
|
+
"name": "order-by",
|
|
2222
|
+
"summary": "Package version fields used to order the list.",
|
|
2223
|
+
"hasDynamicHelp": false,
|
|
2224
|
+
"multiple": false,
|
|
2225
|
+
"type": "option"
|
|
2226
|
+
},
|
|
2227
|
+
"verbose": {
|
|
2228
|
+
"name": "verbose",
|
|
2229
|
+
"summary": "Display extended package version details.",
|
|
2342
2230
|
"allowNo": false,
|
|
2343
2231
|
"type": "boolean"
|
|
2344
2232
|
}
|
|
2345
2233
|
},
|
|
2346
2234
|
"hasDynamicHelp": true,
|
|
2347
2235
|
"hiddenAliases": [],
|
|
2348
|
-
"id": "package:version:
|
|
2236
|
+
"id": "package:version:list",
|
|
2349
2237
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2350
2238
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2351
2239
|
"pluginType": "core",
|
|
2352
2240
|
"strict": true,
|
|
2353
|
-
"summary": "
|
|
2241
|
+
"summary": "List all package versions in the Dev Hub org.",
|
|
2354
2242
|
"enableJsonFlag": true,
|
|
2355
2243
|
"isESM": true,
|
|
2356
2244
|
"relativePath": [
|
|
@@ -2358,54 +2246,54 @@
|
|
|
2358
2246
|
"commands",
|
|
2359
2247
|
"package",
|
|
2360
2248
|
"version",
|
|
2361
|
-
"
|
|
2249
|
+
"list.js"
|
|
2362
2250
|
],
|
|
2363
2251
|
"aliasPermutations": [
|
|
2364
|
-
"force:package:version:
|
|
2365
|
-
"package:force:version:
|
|
2366
|
-
"package:version:force:
|
|
2367
|
-
"package:version:
|
|
2368
|
-
"force:version:package:
|
|
2369
|
-
"version:force:package:
|
|
2370
|
-
"version:package:force:
|
|
2371
|
-
"version:package:
|
|
2372
|
-
"force:version:
|
|
2373
|
-
"version:force:
|
|
2374
|
-
"version:
|
|
2375
|
-
"version:
|
|
2376
|
-
"force:package:
|
|
2377
|
-
"package:force:
|
|
2378
|
-
"package:
|
|
2379
|
-
"package:
|
|
2380
|
-
"force:
|
|
2381
|
-
"
|
|
2382
|
-
"
|
|
2383
|
-
"
|
|
2384
|
-
"force:
|
|
2385
|
-
"
|
|
2386
|
-
"
|
|
2387
|
-
"
|
|
2252
|
+
"force:package:version:list",
|
|
2253
|
+
"package:force:version:list",
|
|
2254
|
+
"package:version:force:list",
|
|
2255
|
+
"package:version:list:force",
|
|
2256
|
+
"force:version:package:list",
|
|
2257
|
+
"version:force:package:list",
|
|
2258
|
+
"version:package:force:list",
|
|
2259
|
+
"version:package:list:force",
|
|
2260
|
+
"force:version:list:package",
|
|
2261
|
+
"version:force:list:package",
|
|
2262
|
+
"version:list:force:package",
|
|
2263
|
+
"version:list:package:force",
|
|
2264
|
+
"force:package:list:version",
|
|
2265
|
+
"package:force:list:version",
|
|
2266
|
+
"package:list:force:version",
|
|
2267
|
+
"package:list:version:force",
|
|
2268
|
+
"force:list:package:version",
|
|
2269
|
+
"list:force:package:version",
|
|
2270
|
+
"list:package:force:version",
|
|
2271
|
+
"list:package:version:force",
|
|
2272
|
+
"force:list:version:package",
|
|
2273
|
+
"list:force:version:package",
|
|
2274
|
+
"list:version:force:package",
|
|
2275
|
+
"list:version:package:force"
|
|
2388
2276
|
],
|
|
2389
2277
|
"permutations": [
|
|
2390
|
-
"package:version:
|
|
2391
|
-
"version:package:
|
|
2392
|
-
"version:
|
|
2393
|
-
"package:
|
|
2394
|
-
"
|
|
2395
|
-
"
|
|
2278
|
+
"package:version:list",
|
|
2279
|
+
"version:package:list",
|
|
2280
|
+
"version:list:package",
|
|
2281
|
+
"package:list:version",
|
|
2282
|
+
"list:package:version",
|
|
2283
|
+
"list:version:package"
|
|
2396
2284
|
]
|
|
2397
2285
|
},
|
|
2398
|
-
"package:version:
|
|
2286
|
+
"package:version:promote": {
|
|
2399
2287
|
"aliases": [
|
|
2400
|
-
"force:package:version:
|
|
2288
|
+
"force:package:version:promote"
|
|
2401
2289
|
],
|
|
2402
2290
|
"args": {},
|
|
2403
2291
|
"deprecateAliases": true,
|
|
2292
|
+
"description": "Supply the ID or alias of the package version you want to promote. Promotes the package version to released status.",
|
|
2404
2293
|
"examples": [
|
|
2405
|
-
"
|
|
2406
|
-
"
|
|
2407
|
-
"
|
|
2408
|
-
"Display the ancestry tree of a package version with the specified ID, using your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t..."
|
|
2294
|
+
"Promote the package version with the specified ID to released; uses your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t...",
|
|
2295
|
+
"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",
|
|
2296
|
+
"Promote the package version with an alias that has spaces to released:\n<%= config.bin %> <%= command.id %> --package \"Awesome Package Alias\""
|
|
2409
2297
|
],
|
|
2410
2298
|
"flags": {
|
|
2411
2299
|
"json": {
|
|
@@ -2461,40 +2349,33 @@
|
|
|
2461
2349
|
},
|
|
2462
2350
|
"package": {
|
|
2463
2351
|
"char": "p",
|
|
2464
|
-
"description": "If you specify a package ID (starts with 0Ho) or alias, the ancestor tree for every package version associated with the package ID is displayed. If you specify a package version (starts with 04t) or alias, the ancestry tree of the specified package version is displayed.",
|
|
2465
2352
|
"name": "package",
|
|
2466
2353
|
"required": true,
|
|
2467
|
-
"summary": "ID
|
|
2354
|
+
"summary": "ID (starts with 04t) or alias of the package version to promote.",
|
|
2468
2355
|
"hasDynamicHelp": false,
|
|
2469
2356
|
"multiple": false,
|
|
2470
2357
|
"type": "option"
|
|
2471
2358
|
},
|
|
2472
|
-
"
|
|
2359
|
+
"no-prompt": {
|
|
2473
2360
|
"aliases": [
|
|
2474
|
-
"
|
|
2361
|
+
"noprompt"
|
|
2475
2362
|
],
|
|
2363
|
+
"char": "n",
|
|
2476
2364
|
"deprecateAliases": true,
|
|
2477
|
-
"
|
|
2478
|
-
"
|
|
2479
|
-
"summary": "Display the ancestry tree in DOT code.",
|
|
2480
|
-
"allowNo": false,
|
|
2481
|
-
"type": "boolean"
|
|
2482
|
-
},
|
|
2483
|
-
"verbose": {
|
|
2484
|
-
"name": "verbose",
|
|
2485
|
-
"summary": "Display both the package version ID (starts with 04t) and the version number (major.minor.patch.build) in the ancestry tree.",
|
|
2365
|
+
"name": "no-prompt",
|
|
2366
|
+
"summary": "Don't prompt to confirm setting the package version as released.",
|
|
2486
2367
|
"allowNo": false,
|
|
2487
2368
|
"type": "boolean"
|
|
2488
2369
|
}
|
|
2489
2370
|
},
|
|
2490
2371
|
"hasDynamicHelp": true,
|
|
2491
2372
|
"hiddenAliases": [],
|
|
2492
|
-
"id": "package:version:
|
|
2373
|
+
"id": "package:version:promote",
|
|
2493
2374
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2494
2375
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2495
2376
|
"pluginType": "core",
|
|
2496
2377
|
"strict": true,
|
|
2497
|
-
"summary": "
|
|
2378
|
+
"summary": "Promote a package version to released.",
|
|
2498
2379
|
"enableJsonFlag": true,
|
|
2499
2380
|
"isESM": true,
|
|
2500
2381
|
"relativePath": [
|
|
@@ -2502,58 +2383,53 @@
|
|
|
2502
2383
|
"commands",
|
|
2503
2384
|
"package",
|
|
2504
2385
|
"version",
|
|
2505
|
-
"
|
|
2386
|
+
"promote.js"
|
|
2506
2387
|
],
|
|
2507
2388
|
"aliasPermutations": [
|
|
2508
|
-
"force:package:version:
|
|
2509
|
-
"package:force:version:
|
|
2510
|
-
"package:version:force:
|
|
2511
|
-
"package:version:
|
|
2512
|
-
"force:version:package:
|
|
2513
|
-
"version:force:package:
|
|
2514
|
-
"version:package:force:
|
|
2515
|
-
"version:package:
|
|
2516
|
-
"force:version:
|
|
2517
|
-
"version:force:
|
|
2518
|
-
"version:
|
|
2519
|
-
"version:
|
|
2520
|
-
"force:package:
|
|
2521
|
-
"package:force:
|
|
2522
|
-
"package:
|
|
2523
|
-
"package:
|
|
2524
|
-
"force:
|
|
2525
|
-
"
|
|
2526
|
-
"
|
|
2527
|
-
"
|
|
2528
|
-
"force:
|
|
2529
|
-
"
|
|
2530
|
-
"
|
|
2531
|
-
"
|
|
2389
|
+
"force:package:version:promote",
|
|
2390
|
+
"package:force:version:promote",
|
|
2391
|
+
"package:version:force:promote",
|
|
2392
|
+
"package:version:promote:force",
|
|
2393
|
+
"force:version:package:promote",
|
|
2394
|
+
"version:force:package:promote",
|
|
2395
|
+
"version:package:force:promote",
|
|
2396
|
+
"version:package:promote:force",
|
|
2397
|
+
"force:version:promote:package",
|
|
2398
|
+
"version:force:promote:package",
|
|
2399
|
+
"version:promote:force:package",
|
|
2400
|
+
"version:promote:package:force",
|
|
2401
|
+
"force:package:promote:version",
|
|
2402
|
+
"package:force:promote:version",
|
|
2403
|
+
"package:promote:force:version",
|
|
2404
|
+
"package:promote:version:force",
|
|
2405
|
+
"force:promote:package:version",
|
|
2406
|
+
"promote:force:package:version",
|
|
2407
|
+
"promote:package:force:version",
|
|
2408
|
+
"promote:package:version:force",
|
|
2409
|
+
"force:promote:version:package",
|
|
2410
|
+
"promote:force:version:package",
|
|
2411
|
+
"promote:version:force:package",
|
|
2412
|
+
"promote:version:package:force"
|
|
2532
2413
|
],
|
|
2533
2414
|
"permutations": [
|
|
2534
|
-
"package:version:
|
|
2535
|
-
"version:package:
|
|
2536
|
-
"version:
|
|
2537
|
-
"package:
|
|
2538
|
-
"
|
|
2539
|
-
"
|
|
2415
|
+
"package:version:promote",
|
|
2416
|
+
"version:package:promote",
|
|
2417
|
+
"version:promote:package",
|
|
2418
|
+
"package:promote:version",
|
|
2419
|
+
"promote:package:version",
|
|
2420
|
+
"promote:version:package"
|
|
2540
2421
|
]
|
|
2541
2422
|
},
|
|
2542
|
-
"package:version:
|
|
2423
|
+
"package:version:report": {
|
|
2543
2424
|
"aliases": [
|
|
2544
|
-
"force:package:version:
|
|
2425
|
+
"force:package:version:report"
|
|
2545
2426
|
],
|
|
2546
2427
|
"args": {},
|
|
2547
2428
|
"deprecateAliases": true,
|
|
2548
|
-
"description": "
|
|
2429
|
+
"description": "To update package version values, run \"<%= config.bin %> package version update\".",
|
|
2549
2430
|
"examples": [
|
|
2550
|
-
"
|
|
2551
|
-
"
|
|
2552
|
-
"List all released package versions in your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --released",
|
|
2553
|
-
"List package versions that were modified today in your default Dev Hub org; show limited details about each one:\n<%= config.bin %> <%= command.id %> --concise --modified-last-days 0",
|
|
2554
|
-
"List package versions that are based on the \"featureA\" branch in your source control system that were modified today in your default Dev Hub org; show limited details about each one:\n<%= config.bin %> <%= command.id %> --concise --modified-last-days 0 --branch featureA",
|
|
2555
|
-
"List released package versions that were created in the last 3 days in your default Dev Hub org; show limited details:\n<%= config.bin %> <%= command.id %> --concise --created-last-days 3 --released",
|
|
2556
|
-
"List released package versions that were modified today for the two packages with specified aliases in your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --packages exp-mgr,exp-mgr-util --released --modified-last-days 0"
|
|
2431
|
+
"Retrieve details about the package version with the specified ID from your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --package 04t...",
|
|
2432
|
+
"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"
|
|
2557
2433
|
],
|
|
2558
2434
|
"flags": {
|
|
2559
2435
|
"json": {
|
|
@@ -2607,73 +2483,11 @@
|
|
|
2607
2483
|
"multiple": false,
|
|
2608
2484
|
"type": "option"
|
|
2609
2485
|
},
|
|
2610
|
-
"
|
|
2611
|
-
"aliases": [
|
|
2612
|
-
"createdlastdays"
|
|
2613
|
-
],
|
|
2614
|
-
"char": "c",
|
|
2615
|
-
"deprecateAliases": true,
|
|
2616
|
-
"name": "created-last-days",
|
|
2617
|
-
"summary": "Number of days since the request was created, starting at 00:00:00 of first day to now. Use 0 for today.",
|
|
2618
|
-
"hasDynamicHelp": false,
|
|
2619
|
-
"multiple": false,
|
|
2620
|
-
"type": "option"
|
|
2621
|
-
},
|
|
2622
|
-
"concise": {
|
|
2623
|
-
"name": "concise",
|
|
2624
|
-
"summary": "Display limited package version details.",
|
|
2625
|
-
"allowNo": false,
|
|
2626
|
-
"type": "boolean"
|
|
2627
|
-
},
|
|
2628
|
-
"show-conversions-only": {
|
|
2629
|
-
"name": "show-conversions-only",
|
|
2630
|
-
"summary": "Filter the list output to display only converted package version.",
|
|
2631
|
-
"allowNo": false,
|
|
2632
|
-
"type": "boolean"
|
|
2633
|
-
},
|
|
2634
|
-
"modified-last-days": {
|
|
2635
|
-
"aliases": [
|
|
2636
|
-
"modifiedlastdays"
|
|
2637
|
-
],
|
|
2638
|
-
"char": "m",
|
|
2639
|
-
"deprecateAliases": true,
|
|
2640
|
-
"name": "modified-last-days",
|
|
2641
|
-
"summary": "Number of days since the items were modified, starting at 00:00:00 of first day to now. Use 0 for today.",
|
|
2642
|
-
"hasDynamicHelp": false,
|
|
2643
|
-
"multiple": false,
|
|
2644
|
-
"type": "option"
|
|
2645
|
-
},
|
|
2646
|
-
"packages": {
|
|
2486
|
+
"package": {
|
|
2647
2487
|
"char": "p",
|
|
2648
|
-
"name": "
|
|
2649
|
-
"
|
|
2650
|
-
"
|
|
2651
|
-
"multiple": false,
|
|
2652
|
-
"type": "option"
|
|
2653
|
-
},
|
|
2654
|
-
"released": {
|
|
2655
|
-
"char": "r",
|
|
2656
|
-
"name": "released",
|
|
2657
|
-
"summary": "Display released versions only (IsReleased=true).",
|
|
2658
|
-
"allowNo": false,
|
|
2659
|
-
"type": "boolean"
|
|
2660
|
-
},
|
|
2661
|
-
"branch": {
|
|
2662
|
-
"char": "b",
|
|
2663
|
-
"name": "branch",
|
|
2664
|
-
"summary": "Branch in your source control system used to filter the results; only package versions based on the specified branch are listed.",
|
|
2665
|
-
"hasDynamicHelp": false,
|
|
2666
|
-
"multiple": false,
|
|
2667
|
-
"type": "option"
|
|
2668
|
-
},
|
|
2669
|
-
"order-by": {
|
|
2670
|
-
"aliases": [
|
|
2671
|
-
"orderby"
|
|
2672
|
-
],
|
|
2673
|
-
"char": "o",
|
|
2674
|
-
"deprecateAliases": true,
|
|
2675
|
-
"name": "order-by",
|
|
2676
|
-
"summary": "Package version fields used to order the list.",
|
|
2488
|
+
"name": "package",
|
|
2489
|
+
"required": true,
|
|
2490
|
+
"summary": "ID (starts with 04t) or alias of the package to retrieve details for.",
|
|
2677
2491
|
"hasDynamicHelp": false,
|
|
2678
2492
|
"multiple": false,
|
|
2679
2493
|
"type": "option"
|
|
@@ -2687,12 +2501,12 @@
|
|
|
2687
2501
|
},
|
|
2688
2502
|
"hasDynamicHelp": true,
|
|
2689
2503
|
"hiddenAliases": [],
|
|
2690
|
-
"id": "package:version:
|
|
2504
|
+
"id": "package:version:report",
|
|
2691
2505
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2692
2506
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2693
2507
|
"pluginType": "core",
|
|
2694
2508
|
"strict": true,
|
|
2695
|
-
"summary": "
|
|
2509
|
+
"summary": "Retrieve details about a package version in the Dev Hub org.",
|
|
2696
2510
|
"enableJsonFlag": true,
|
|
2697
2511
|
"isESM": true,
|
|
2698
2512
|
"relativePath": [
|
|
@@ -2700,54 +2514,49 @@
|
|
|
2700
2514
|
"commands",
|
|
2701
2515
|
"package",
|
|
2702
2516
|
"version",
|
|
2703
|
-
"
|
|
2517
|
+
"report.js"
|
|
2704
2518
|
],
|
|
2705
2519
|
"aliasPermutations": [
|
|
2706
|
-
"force:package:version:
|
|
2707
|
-
"package:force:version:
|
|
2708
|
-
"package:version:force:
|
|
2709
|
-
"package:version:
|
|
2710
|
-
"force:version:package:
|
|
2711
|
-
"version:force:package:
|
|
2712
|
-
"version:package:force:
|
|
2713
|
-
"version:package:
|
|
2714
|
-
"force:version:
|
|
2715
|
-
"version:force:
|
|
2716
|
-
"version:
|
|
2717
|
-
"version:
|
|
2718
|
-
"force:package:
|
|
2719
|
-
"package:force:
|
|
2720
|
-
"package:
|
|
2721
|
-
"package:
|
|
2722
|
-
"force:
|
|
2723
|
-
"
|
|
2724
|
-
"
|
|
2725
|
-
"
|
|
2726
|
-
"force:
|
|
2727
|
-
"
|
|
2728
|
-
"
|
|
2729
|
-
"
|
|
2520
|
+
"force:package:version:report",
|
|
2521
|
+
"package:force:version:report",
|
|
2522
|
+
"package:version:force:report",
|
|
2523
|
+
"package:version:report:force",
|
|
2524
|
+
"force:version:package:report",
|
|
2525
|
+
"version:force:package:report",
|
|
2526
|
+
"version:package:force:report",
|
|
2527
|
+
"version:package:report:force",
|
|
2528
|
+
"force:version:report:package",
|
|
2529
|
+
"version:force:report:package",
|
|
2530
|
+
"version:report:force:package",
|
|
2531
|
+
"version:report:package:force",
|
|
2532
|
+
"force:package:report:version",
|
|
2533
|
+
"package:force:report:version",
|
|
2534
|
+
"package:report:force:version",
|
|
2535
|
+
"package:report:version:force",
|
|
2536
|
+
"force:report:package:version",
|
|
2537
|
+
"report:force:package:version",
|
|
2538
|
+
"report:package:force:version",
|
|
2539
|
+
"report:package:version:force",
|
|
2540
|
+
"force:report:version:package",
|
|
2541
|
+
"report:force:version:package",
|
|
2542
|
+
"report:version:force:package",
|
|
2543
|
+
"report:version:package:force"
|
|
2730
2544
|
],
|
|
2731
2545
|
"permutations": [
|
|
2732
|
-
"package:version:
|
|
2733
|
-
"version:package:
|
|
2734
|
-
"version:
|
|
2735
|
-
"package:
|
|
2736
|
-
"
|
|
2737
|
-
"
|
|
2546
|
+
"package:version:report",
|
|
2547
|
+
"version:package:report",
|
|
2548
|
+
"version:report:package",
|
|
2549
|
+
"package:report:version",
|
|
2550
|
+
"report:package:version",
|
|
2551
|
+
"report:version:package"
|
|
2738
2552
|
]
|
|
2739
2553
|
},
|
|
2740
|
-
"package:version:
|
|
2741
|
-
"aliases": [
|
|
2742
|
-
"force:package:version:promote"
|
|
2743
|
-
],
|
|
2554
|
+
"package:version:retrieve": {
|
|
2555
|
+
"aliases": [],
|
|
2744
2556
|
"args": {},
|
|
2745
|
-
"
|
|
2746
|
-
"description": "Supply the ID or alias of the package version you want to promote. Promotes the package version to released status.",
|
|
2557
|
+
"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.",
|
|
2747
2558
|
"examples": [
|
|
2748
|
-
"
|
|
2749
|
-
"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",
|
|
2750
|
-
"Promote the package version with an alias that has spaces to released:\n<%= config.bin %> <%= command.id %> --package \"Awesome Package Alias\""
|
|
2559
|
+
"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."
|
|
2751
2560
|
],
|
|
2752
2561
|
"flags": {
|
|
2753
2562
|
"json": {
|
|
@@ -2775,29 +2584,29 @@
|
|
|
2775
2584
|
"multiple": false,
|
|
2776
2585
|
"type": "option"
|
|
2777
2586
|
},
|
|
2778
|
-
"
|
|
2587
|
+
"api-version": {
|
|
2779
2588
|
"aliases": [
|
|
2780
|
-
"
|
|
2781
|
-
"target-hub-org"
|
|
2589
|
+
"apiversion"
|
|
2782
2590
|
],
|
|
2783
|
-
"char": "v",
|
|
2784
2591
|
"deprecateAliases": true,
|
|
2785
|
-
"
|
|
2786
|
-
"
|
|
2787
|
-
"
|
|
2788
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2789
|
-
"hasDynamicHelp": true,
|
|
2592
|
+
"description": "Override the api version used for api requests made by this command",
|
|
2593
|
+
"name": "api-version",
|
|
2594
|
+
"hasDynamicHelp": false,
|
|
2790
2595
|
"multiple": false,
|
|
2791
2596
|
"type": "option"
|
|
2792
2597
|
},
|
|
2793
|
-
"
|
|
2598
|
+
"target-org": {
|
|
2794
2599
|
"aliases": [
|
|
2795
|
-
"
|
|
2600
|
+
"targetusername",
|
|
2601
|
+
"u"
|
|
2796
2602
|
],
|
|
2603
|
+
"char": "o",
|
|
2797
2604
|
"deprecateAliases": true,
|
|
2798
|
-
"
|
|
2799
|
-
"
|
|
2800
|
-
"
|
|
2605
|
+
"name": "target-org",
|
|
2606
|
+
"noCacheDefault": true,
|
|
2607
|
+
"required": true,
|
|
2608
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2609
|
+
"hasDynamicHelp": true,
|
|
2801
2610
|
"multiple": false,
|
|
2802
2611
|
"type": "option"
|
|
2803
2612
|
},
|
|
@@ -2805,85 +2614,61 @@
|
|
|
2805
2614
|
"char": "p",
|
|
2806
2615
|
"name": "package",
|
|
2807
2616
|
"required": true,
|
|
2808
|
-
"summary": "ID (starts with 04t)
|
|
2617
|
+
"summary": "Subscriber package version ID (starts with 04t).",
|
|
2809
2618
|
"hasDynamicHelp": false,
|
|
2810
2619
|
"multiple": false,
|
|
2811
2620
|
"type": "option"
|
|
2812
2621
|
},
|
|
2813
|
-
"
|
|
2814
|
-
"
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
"
|
|
2818
|
-
"
|
|
2819
|
-
"
|
|
2820
|
-
"
|
|
2821
|
-
"allowNo": false,
|
|
2822
|
-
"type": "boolean"
|
|
2622
|
+
"output-dir": {
|
|
2623
|
+
"char": "d",
|
|
2624
|
+
"name": "output-dir",
|
|
2625
|
+
"summary": "Path within your Salesforce DX project directory in which to download the metadata. This directory must be empty.",
|
|
2626
|
+
"default": "force-app",
|
|
2627
|
+
"hasDynamicHelp": false,
|
|
2628
|
+
"multiple": false,
|
|
2629
|
+
"type": "option"
|
|
2823
2630
|
}
|
|
2824
2631
|
},
|
|
2825
2632
|
"hasDynamicHelp": true,
|
|
2633
|
+
"hidden": true,
|
|
2826
2634
|
"hiddenAliases": [],
|
|
2827
|
-
"id": "package:version:
|
|
2635
|
+
"id": "package:version:retrieve",
|
|
2828
2636
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2829
2637
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2830
2638
|
"pluginType": "core",
|
|
2831
2639
|
"strict": true,
|
|
2832
|
-
"summary": "
|
|
2640
|
+
"summary": "Retrieve package metadata for a specified package version.",
|
|
2833
2641
|
"enableJsonFlag": true,
|
|
2642
|
+
"requiresProject": true,
|
|
2834
2643
|
"isESM": true,
|
|
2835
2644
|
"relativePath": [
|
|
2836
2645
|
"lib",
|
|
2837
2646
|
"commands",
|
|
2838
2647
|
"package",
|
|
2839
2648
|
"version",
|
|
2840
|
-
"
|
|
2841
|
-
],
|
|
2842
|
-
"aliasPermutations": [
|
|
2843
|
-
"force:package:version:promote",
|
|
2844
|
-
"package:force:version:promote",
|
|
2845
|
-
"package:version:force:promote",
|
|
2846
|
-
"package:version:promote:force",
|
|
2847
|
-
"force:version:package:promote",
|
|
2848
|
-
"version:force:package:promote",
|
|
2849
|
-
"version:package:force:promote",
|
|
2850
|
-
"version:package:promote:force",
|
|
2851
|
-
"force:version:promote:package",
|
|
2852
|
-
"version:force:promote:package",
|
|
2853
|
-
"version:promote:force:package",
|
|
2854
|
-
"version:promote:package:force",
|
|
2855
|
-
"force:package:promote:version",
|
|
2856
|
-
"package:force:promote:version",
|
|
2857
|
-
"package:promote:force:version",
|
|
2858
|
-
"package:promote:version:force",
|
|
2859
|
-
"force:promote:package:version",
|
|
2860
|
-
"promote:force:package:version",
|
|
2861
|
-
"promote:package:force:version",
|
|
2862
|
-
"promote:package:version:force",
|
|
2863
|
-
"force:promote:version:package",
|
|
2864
|
-
"promote:force:version:package",
|
|
2865
|
-
"promote:version:force:package",
|
|
2866
|
-
"promote:version:package:force"
|
|
2649
|
+
"retrieve.js"
|
|
2867
2650
|
],
|
|
2651
|
+
"aliasPermutations": [],
|
|
2868
2652
|
"permutations": [
|
|
2869
|
-
"package:version:
|
|
2870
|
-
"version:package:
|
|
2871
|
-
"version:
|
|
2872
|
-
"package:
|
|
2873
|
-
"
|
|
2874
|
-
"
|
|
2653
|
+
"package:version:retrieve",
|
|
2654
|
+
"version:package:retrieve",
|
|
2655
|
+
"version:retrieve:package",
|
|
2656
|
+
"package:retrieve:version",
|
|
2657
|
+
"retrieve:package:version",
|
|
2658
|
+
"retrieve:version:package"
|
|
2875
2659
|
]
|
|
2876
2660
|
},
|
|
2877
|
-
"package:version:
|
|
2661
|
+
"package:version:update": {
|
|
2878
2662
|
"aliases": [
|
|
2879
|
-
"force:package:version:
|
|
2663
|
+
"force:package:version:update"
|
|
2880
2664
|
],
|
|
2881
2665
|
"args": {},
|
|
2882
2666
|
"deprecateAliases": true,
|
|
2883
|
-
"description": "
|
|
2667
|
+
"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\".",
|
|
2884
2668
|
"examples": [
|
|
2885
|
-
"
|
|
2886
|
-
"
|
|
2669
|
+
"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",
|
|
2670
|
+
"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",
|
|
2671
|
+
"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\""
|
|
2887
2672
|
],
|
|
2888
2673
|
"flags": {
|
|
2889
2674
|
"json": {
|
|
@@ -2941,76 +2726,127 @@
|
|
|
2941
2726
|
"char": "p",
|
|
2942
2727
|
"name": "package",
|
|
2943
2728
|
"required": true,
|
|
2944
|
-
"summary": "ID (starts with 04t) or alias of the package to
|
|
2729
|
+
"summary": "ID (starts with 04t) or alias of the package to update a version of.",
|
|
2945
2730
|
"hasDynamicHelp": false,
|
|
2946
2731
|
"multiple": false,
|
|
2947
2732
|
"type": "option"
|
|
2948
2733
|
},
|
|
2949
|
-
"
|
|
2950
|
-
"
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
"
|
|
2734
|
+
"version-name": {
|
|
2735
|
+
"aliases": [
|
|
2736
|
+
"versionname"
|
|
2737
|
+
],
|
|
2738
|
+
"char": "a",
|
|
2739
|
+
"deprecateAliases": true,
|
|
2740
|
+
"name": "version-name",
|
|
2741
|
+
"summary": "New package version name.",
|
|
2742
|
+
"hasDynamicHelp": false,
|
|
2743
|
+
"multiple": false,
|
|
2744
|
+
"type": "option"
|
|
2745
|
+
},
|
|
2746
|
+
"version-description": {
|
|
2747
|
+
"aliases": [
|
|
2748
|
+
"versiondescription"
|
|
2749
|
+
],
|
|
2750
|
+
"char": "e",
|
|
2751
|
+
"deprecateAliases": true,
|
|
2752
|
+
"name": "version-description",
|
|
2753
|
+
"summary": "New package version description.",
|
|
2754
|
+
"hasDynamicHelp": false,
|
|
2755
|
+
"multiple": false,
|
|
2756
|
+
"type": "option"
|
|
2757
|
+
},
|
|
2758
|
+
"branch": {
|
|
2759
|
+
"char": "b",
|
|
2760
|
+
"name": "branch",
|
|
2761
|
+
"summary": "New package version branch.",
|
|
2762
|
+
"hasDynamicHelp": false,
|
|
2763
|
+
"multiple": false,
|
|
2764
|
+
"type": "option"
|
|
2765
|
+
},
|
|
2766
|
+
"tag": {
|
|
2767
|
+
"char": "t",
|
|
2768
|
+
"name": "tag",
|
|
2769
|
+
"summary": "New package version tag.",
|
|
2770
|
+
"hasDynamicHelp": false,
|
|
2771
|
+
"multiple": false,
|
|
2772
|
+
"type": "option"
|
|
2773
|
+
},
|
|
2774
|
+
"installation-key": {
|
|
2775
|
+
"aliases": [
|
|
2776
|
+
"installationkey"
|
|
2777
|
+
],
|
|
2778
|
+
"char": "k",
|
|
2779
|
+
"deprecateAliases": true,
|
|
2780
|
+
"name": "installation-key",
|
|
2781
|
+
"summary": "New installation key for key-protected package (default: null)",
|
|
2782
|
+
"hasDynamicHelp": false,
|
|
2783
|
+
"multiple": false,
|
|
2784
|
+
"type": "option"
|
|
2954
2785
|
}
|
|
2955
2786
|
},
|
|
2956
2787
|
"hasDynamicHelp": true,
|
|
2957
2788
|
"hiddenAliases": [],
|
|
2958
|
-
"id": "package:version:
|
|
2789
|
+
"id": "package:version:update",
|
|
2959
2790
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
2960
2791
|
"pluginName": "@salesforce/plugin-packaging",
|
|
2961
2792
|
"pluginType": "core",
|
|
2962
2793
|
"strict": true,
|
|
2963
|
-
"summary": "
|
|
2794
|
+
"summary": "Update a package version.",
|
|
2964
2795
|
"enableJsonFlag": true,
|
|
2796
|
+
"requiresProject": true,
|
|
2965
2797
|
"isESM": true,
|
|
2966
2798
|
"relativePath": [
|
|
2967
2799
|
"lib",
|
|
2968
2800
|
"commands",
|
|
2969
2801
|
"package",
|
|
2970
2802
|
"version",
|
|
2971
|
-
"
|
|
2803
|
+
"update.js"
|
|
2972
2804
|
],
|
|
2973
2805
|
"aliasPermutations": [
|
|
2974
|
-
"force:package:version:
|
|
2975
|
-
"package:force:version:
|
|
2976
|
-
"package:version:force:
|
|
2977
|
-
"package:version:
|
|
2978
|
-
"force:version:package:
|
|
2979
|
-
"version:force:package:
|
|
2980
|
-
"version:package:force:
|
|
2981
|
-
"version:package:
|
|
2982
|
-
"force:version:
|
|
2983
|
-
"version:force:
|
|
2984
|
-
"version:
|
|
2985
|
-
"version:
|
|
2986
|
-
"force:package:
|
|
2987
|
-
"package:force:
|
|
2988
|
-
"package:
|
|
2989
|
-
"package:
|
|
2990
|
-
"force:
|
|
2991
|
-
"
|
|
2992
|
-
"
|
|
2993
|
-
"
|
|
2994
|
-
"force:
|
|
2995
|
-
"
|
|
2996
|
-
"
|
|
2997
|
-
"
|
|
2806
|
+
"force:package:version:update",
|
|
2807
|
+
"package:force:version:update",
|
|
2808
|
+
"package:version:force:update",
|
|
2809
|
+
"package:version:update:force",
|
|
2810
|
+
"force:version:package:update",
|
|
2811
|
+
"version:force:package:update",
|
|
2812
|
+
"version:package:force:update",
|
|
2813
|
+
"version:package:update:force",
|
|
2814
|
+
"force:version:update:package",
|
|
2815
|
+
"version:force:update:package",
|
|
2816
|
+
"version:update:force:package",
|
|
2817
|
+
"version:update:package:force",
|
|
2818
|
+
"force:package:update:version",
|
|
2819
|
+
"package:force:update:version",
|
|
2820
|
+
"package:update:force:version",
|
|
2821
|
+
"package:update:version:force",
|
|
2822
|
+
"force:update:package:version",
|
|
2823
|
+
"update:force:package:version",
|
|
2824
|
+
"update:package:force:version",
|
|
2825
|
+
"update:package:version:force",
|
|
2826
|
+
"force:update:version:package",
|
|
2827
|
+
"update:force:version:package",
|
|
2828
|
+
"update:version:force:package",
|
|
2829
|
+
"update:version:package:force"
|
|
2998
2830
|
],
|
|
2999
2831
|
"permutations": [
|
|
3000
|
-
"package:version:
|
|
3001
|
-
"version:package:
|
|
3002
|
-
"version:
|
|
3003
|
-
"package:
|
|
3004
|
-
"
|
|
3005
|
-
"
|
|
2832
|
+
"package:version:update",
|
|
2833
|
+
"version:package:update",
|
|
2834
|
+
"version:update:package",
|
|
2835
|
+
"package:update:version",
|
|
2836
|
+
"update:package:version",
|
|
2837
|
+
"update:version:package"
|
|
3006
2838
|
]
|
|
3007
2839
|
},
|
|
3008
|
-
"
|
|
3009
|
-
"aliases": [
|
|
2840
|
+
"package1:version:create": {
|
|
2841
|
+
"aliases": [
|
|
2842
|
+
"force:package1:version:create"
|
|
2843
|
+
],
|
|
3010
2844
|
"args": {},
|
|
3011
|
-
"
|
|
2845
|
+
"deprecateAliases": true,
|
|
2846
|
+
"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.",
|
|
3012
2847
|
"examples": [
|
|
3013
|
-
"
|
|
2848
|
+
"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",
|
|
2849
|
+
"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"
|
|
3014
2850
|
],
|
|
3015
2851
|
"flags": {
|
|
3016
2852
|
"json": {
|
|
@@ -3038,6 +2874,21 @@
|
|
|
3038
2874
|
"multiple": false,
|
|
3039
2875
|
"type": "option"
|
|
3040
2876
|
},
|
|
2877
|
+
"target-org": {
|
|
2878
|
+
"aliases": [
|
|
2879
|
+
"targetusername",
|
|
2880
|
+
"u"
|
|
2881
|
+
],
|
|
2882
|
+
"char": "o",
|
|
2883
|
+
"deprecateAliases": true,
|
|
2884
|
+
"name": "target-org",
|
|
2885
|
+
"noCacheDefault": true,
|
|
2886
|
+
"required": true,
|
|
2887
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2888
|
+
"hasDynamicHelp": true,
|
|
2889
|
+
"multiple": false,
|
|
2890
|
+
"type": "option"
|
|
2891
|
+
},
|
|
3041
2892
|
"api-version": {
|
|
3042
2893
|
"aliases": [
|
|
3043
2894
|
"apiversion"
|
|
@@ -3049,80 +2900,164 @@
|
|
|
3049
2900
|
"multiple": false,
|
|
3050
2901
|
"type": "option"
|
|
3051
2902
|
},
|
|
3052
|
-
"
|
|
2903
|
+
"package-id": {
|
|
3053
2904
|
"aliases": [
|
|
3054
|
-
"
|
|
3055
|
-
"u"
|
|
2905
|
+
"packageid"
|
|
3056
2906
|
],
|
|
3057
|
-
"char": "
|
|
2907
|
+
"char": "i",
|
|
3058
2908
|
"deprecateAliases": true,
|
|
3059
|
-
"name": "
|
|
3060
|
-
"noCacheDefault": true,
|
|
2909
|
+
"name": "package-id",
|
|
3061
2910
|
"required": true,
|
|
3062
|
-
"summary": "
|
|
3063
|
-
"hasDynamicHelp":
|
|
2911
|
+
"summary": "ID of the metadata package (starts with 033) of which you’re creating a new version.",
|
|
2912
|
+
"hasDynamicHelp": false,
|
|
3064
2913
|
"multiple": false,
|
|
3065
2914
|
"type": "option"
|
|
3066
2915
|
},
|
|
3067
|
-
"
|
|
3068
|
-
"char": "
|
|
3069
|
-
"name": "
|
|
2916
|
+
"name": {
|
|
2917
|
+
"char": "n",
|
|
2918
|
+
"name": "name",
|
|
3070
2919
|
"required": true,
|
|
3071
|
-
"summary": "
|
|
2920
|
+
"summary": "Package version name.",
|
|
3072
2921
|
"hasDynamicHelp": false,
|
|
3073
2922
|
"multiple": false,
|
|
3074
2923
|
"type": "option"
|
|
3075
2924
|
},
|
|
3076
|
-
"
|
|
2925
|
+
"description": {
|
|
3077
2926
|
"char": "d",
|
|
3078
|
-
"name": "
|
|
3079
|
-
"summary": "
|
|
3080
|
-
"
|
|
2927
|
+
"name": "description",
|
|
2928
|
+
"summary": "Package version description.",
|
|
2929
|
+
"hasDynamicHelp": false,
|
|
2930
|
+
"multiple": false,
|
|
2931
|
+
"type": "option"
|
|
2932
|
+
},
|
|
2933
|
+
"version": {
|
|
2934
|
+
"char": "v",
|
|
2935
|
+
"name": "version",
|
|
2936
|
+
"summary": "Package version in major.minor format, for example, 3.2.",
|
|
3081
2937
|
"hasDynamicHelp": false,
|
|
3082
2938
|
"multiple": false,
|
|
3083
2939
|
"type": "option"
|
|
2940
|
+
},
|
|
2941
|
+
"managed-released": {
|
|
2942
|
+
"aliases": [
|
|
2943
|
+
"managedrelease"
|
|
2944
|
+
],
|
|
2945
|
+
"char": "m",
|
|
2946
|
+
"deprecateAliases": true,
|
|
2947
|
+
"description": "To create a beta version, don’t include this parameter.",
|
|
2948
|
+
"name": "managed-released",
|
|
2949
|
+
"summary": "Create a managed package version.",
|
|
2950
|
+
"allowNo": false,
|
|
2951
|
+
"type": "boolean"
|
|
2952
|
+
},
|
|
2953
|
+
"release-notes-url": {
|
|
2954
|
+
"aliases": [
|
|
2955
|
+
"releasenotesurl"
|
|
2956
|
+
],
|
|
2957
|
+
"char": "r",
|
|
2958
|
+
"deprecateAliases": true,
|
|
2959
|
+
"description": "This link is displayed in the package installation UI to provide release notes for this package version to subscribers.",
|
|
2960
|
+
"name": "release-notes-url",
|
|
2961
|
+
"summary": "Release notes URL.",
|
|
2962
|
+
"hasDynamicHelp": false,
|
|
2963
|
+
"multiple": false,
|
|
2964
|
+
"type": "option"
|
|
2965
|
+
},
|
|
2966
|
+
"post-install-url": {
|
|
2967
|
+
"aliases": [
|
|
2968
|
+
"postinstallurl"
|
|
2969
|
+
],
|
|
2970
|
+
"char": "p",
|
|
2971
|
+
"deprecateAliases": true,
|
|
2972
|
+
"description": "The contents of the post-installation instructions URL are displayed in the UI after installation of the package version.",
|
|
2973
|
+
"name": "post-install-url",
|
|
2974
|
+
"summary": "Post install URL.",
|
|
2975
|
+
"hasDynamicHelp": false,
|
|
2976
|
+
"multiple": false,
|
|
2977
|
+
"type": "option"
|
|
2978
|
+
},
|
|
2979
|
+
"installation-key": {
|
|
2980
|
+
"aliases": [
|
|
2981
|
+
"installationkey"
|
|
2982
|
+
],
|
|
2983
|
+
"char": "k",
|
|
2984
|
+
"deprecateAliases": true,
|
|
2985
|
+
"name": "installation-key",
|
|
2986
|
+
"summary": "Installation key for key-protected package (default: null).",
|
|
2987
|
+
"hasDynamicHelp": false,
|
|
2988
|
+
"multiple": false,
|
|
2989
|
+
"type": "option"
|
|
2990
|
+
},
|
|
2991
|
+
"wait": {
|
|
2992
|
+
"char": "w",
|
|
2993
|
+
"name": "wait",
|
|
2994
|
+
"summary": "Minutes to wait for the package version to be created (default: 2 minutes).",
|
|
2995
|
+
"hasDynamicHelp": true,
|
|
2996
|
+
"multiple": false,
|
|
2997
|
+
"type": "option"
|
|
3084
2998
|
}
|
|
3085
2999
|
},
|
|
3086
3000
|
"hasDynamicHelp": true,
|
|
3087
|
-
"hidden": true,
|
|
3088
3001
|
"hiddenAliases": [],
|
|
3089
|
-
"id": "
|
|
3002
|
+
"id": "package1:version:create",
|
|
3090
3003
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
3091
3004
|
"pluginName": "@salesforce/plugin-packaging",
|
|
3092
3005
|
"pluginType": "core",
|
|
3093
3006
|
"strict": true,
|
|
3094
|
-
"summary": "
|
|
3007
|
+
"summary": "Create a first-generation package version in the release org.",
|
|
3095
3008
|
"enableJsonFlag": true,
|
|
3096
|
-
"requiresProject": true,
|
|
3097
3009
|
"isESM": true,
|
|
3098
3010
|
"relativePath": [
|
|
3099
3011
|
"lib",
|
|
3100
3012
|
"commands",
|
|
3101
|
-
"
|
|
3013
|
+
"package1",
|
|
3102
3014
|
"version",
|
|
3103
|
-
"
|
|
3015
|
+
"create.js"
|
|
3016
|
+
],
|
|
3017
|
+
"aliasPermutations": [
|
|
3018
|
+
"force:package1:version:create",
|
|
3019
|
+
"package1:force:version:create",
|
|
3020
|
+
"package1:version:force:create",
|
|
3021
|
+
"package1:version:create:force",
|
|
3022
|
+
"force:version:package1:create",
|
|
3023
|
+
"version:force:package1:create",
|
|
3024
|
+
"version:package1:force:create",
|
|
3025
|
+
"version:package1:create:force",
|
|
3026
|
+
"force:version:create:package1",
|
|
3027
|
+
"version:force:create:package1",
|
|
3028
|
+
"version:create:force:package1",
|
|
3029
|
+
"version:create:package1:force",
|
|
3030
|
+
"force:package1:create:version",
|
|
3031
|
+
"package1:force:create:version",
|
|
3032
|
+
"package1:create:force:version",
|
|
3033
|
+
"package1:create:version:force",
|
|
3034
|
+
"force:create:package1:version",
|
|
3035
|
+
"create:force:package1:version",
|
|
3036
|
+
"create:package1:force:version",
|
|
3037
|
+
"create:package1:version:force",
|
|
3038
|
+
"force:create:version:package1",
|
|
3039
|
+
"create:force:version:package1",
|
|
3040
|
+
"create:version:force:package1",
|
|
3041
|
+
"create:version:package1:force"
|
|
3104
3042
|
],
|
|
3105
|
-
"aliasPermutations": [],
|
|
3106
3043
|
"permutations": [
|
|
3107
|
-
"
|
|
3108
|
-
"version:
|
|
3109
|
-
"version:
|
|
3110
|
-
"
|
|
3111
|
-
"
|
|
3112
|
-
"
|
|
3044
|
+
"package1:version:create",
|
|
3045
|
+
"version:package1:create",
|
|
3046
|
+
"version:create:package1",
|
|
3047
|
+
"package1:create:version",
|
|
3048
|
+
"create:package1:version",
|
|
3049
|
+
"create:version:package1"
|
|
3113
3050
|
]
|
|
3114
3051
|
},
|
|
3115
|
-
"
|
|
3052
|
+
"package1:version:display": {
|
|
3116
3053
|
"aliases": [
|
|
3117
|
-
"force:
|
|
3054
|
+
"force:package1:version:display"
|
|
3118
3055
|
],
|
|
3119
3056
|
"args": {},
|
|
3120
3057
|
"deprecateAliases": true,
|
|
3121
|
-
"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\".",
|
|
3122
3058
|
"examples": [
|
|
3123
|
-
"
|
|
3124
|
-
"
|
|
3125
|
-
"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\""
|
|
3059
|
+
"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...",
|
|
3060
|
+
"Same as previous example, but use the specified org:\n<%= config.bin %> <%= command.id %> --package-version-id 04t... --target-org myorg@example.com"
|
|
3126
3061
|
],
|
|
3127
3062
|
"flags": {
|
|
3128
3063
|
"json": {
|
|
@@ -3150,17 +3085,17 @@
|
|
|
3150
3085
|
"multiple": false,
|
|
3151
3086
|
"type": "option"
|
|
3152
3087
|
},
|
|
3153
|
-
"target-
|
|
3088
|
+
"target-org": {
|
|
3154
3089
|
"aliases": [
|
|
3155
|
-
"
|
|
3156
|
-
"
|
|
3090
|
+
"targetusername",
|
|
3091
|
+
"u"
|
|
3157
3092
|
],
|
|
3158
|
-
"char": "
|
|
3093
|
+
"char": "o",
|
|
3159
3094
|
"deprecateAliases": true,
|
|
3160
|
-
"name": "target-
|
|
3095
|
+
"name": "target-org",
|
|
3161
3096
|
"noCacheDefault": true,
|
|
3162
3097
|
"required": true,
|
|
3163
|
-
"summary": "Username or alias of the
|
|
3098
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
3164
3099
|
"hasDynamicHelp": true,
|
|
3165
3100
|
"multiple": false,
|
|
3166
3101
|
"type": "option"
|
|
@@ -3176,63 +3111,15 @@
|
|
|
3176
3111
|
"multiple": false,
|
|
3177
3112
|
"type": "option"
|
|
3178
3113
|
},
|
|
3179
|
-
"package": {
|
|
3180
|
-
"char": "p",
|
|
3181
|
-
"name": "package",
|
|
3182
|
-
"required": true,
|
|
3183
|
-
"summary": "ID (starts with 04t) or alias of the package to update a version of.",
|
|
3184
|
-
"hasDynamicHelp": false,
|
|
3185
|
-
"multiple": false,
|
|
3186
|
-
"type": "option"
|
|
3187
|
-
},
|
|
3188
|
-
"version-name": {
|
|
3189
|
-
"aliases": [
|
|
3190
|
-
"versionname"
|
|
3191
|
-
],
|
|
3192
|
-
"char": "a",
|
|
3193
|
-
"deprecateAliases": true,
|
|
3194
|
-
"name": "version-name",
|
|
3195
|
-
"summary": "New package version name.",
|
|
3196
|
-
"hasDynamicHelp": false,
|
|
3197
|
-
"multiple": false,
|
|
3198
|
-
"type": "option"
|
|
3199
|
-
},
|
|
3200
|
-
"version-description": {
|
|
3201
|
-
"aliases": [
|
|
3202
|
-
"versiondescription"
|
|
3203
|
-
],
|
|
3204
|
-
"char": "e",
|
|
3205
|
-
"deprecateAliases": true,
|
|
3206
|
-
"name": "version-description",
|
|
3207
|
-
"summary": "New package version description.",
|
|
3208
|
-
"hasDynamicHelp": false,
|
|
3209
|
-
"multiple": false,
|
|
3210
|
-
"type": "option"
|
|
3211
|
-
},
|
|
3212
|
-
"branch": {
|
|
3213
|
-
"char": "b",
|
|
3214
|
-
"name": "branch",
|
|
3215
|
-
"summary": "New package version branch.",
|
|
3216
|
-
"hasDynamicHelp": false,
|
|
3217
|
-
"multiple": false,
|
|
3218
|
-
"type": "option"
|
|
3219
|
-
},
|
|
3220
|
-
"tag": {
|
|
3221
|
-
"char": "t",
|
|
3222
|
-
"name": "tag",
|
|
3223
|
-
"summary": "New package version tag.",
|
|
3224
|
-
"hasDynamicHelp": false,
|
|
3225
|
-
"multiple": false,
|
|
3226
|
-
"type": "option"
|
|
3227
|
-
},
|
|
3228
|
-
"installation-key": {
|
|
3114
|
+
"package-version-id": {
|
|
3229
3115
|
"aliases": [
|
|
3230
|
-
"
|
|
3116
|
+
"packageversionid"
|
|
3231
3117
|
],
|
|
3232
|
-
"char": "
|
|
3118
|
+
"char": "i",
|
|
3233
3119
|
"deprecateAliases": true,
|
|
3234
|
-
"name": "
|
|
3235
|
-
"
|
|
3120
|
+
"name": "package-version-id",
|
|
3121
|
+
"required": true,
|
|
3122
|
+
"summary": "ID (starts with 04t) of the metadata package version whose details you want to display.",
|
|
3236
3123
|
"hasDynamicHelp": false,
|
|
3237
3124
|
"multiple": false,
|
|
3238
3125
|
"type": "option"
|
|
@@ -3240,66 +3127,65 @@
|
|
|
3240
3127
|
},
|
|
3241
3128
|
"hasDynamicHelp": true,
|
|
3242
3129
|
"hiddenAliases": [],
|
|
3243
|
-
"id": "
|
|
3130
|
+
"id": "package1:version:display",
|
|
3244
3131
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
3245
3132
|
"pluginName": "@salesforce/plugin-packaging",
|
|
3246
3133
|
"pluginType": "core",
|
|
3247
3134
|
"strict": true,
|
|
3248
|
-
"summary": "
|
|
3135
|
+
"summary": "Display details about a first-generation package version.",
|
|
3249
3136
|
"enableJsonFlag": true,
|
|
3250
|
-
"requiresProject": true,
|
|
3251
3137
|
"isESM": true,
|
|
3252
3138
|
"relativePath": [
|
|
3253
3139
|
"lib",
|
|
3254
3140
|
"commands",
|
|
3255
|
-
"
|
|
3141
|
+
"package1",
|
|
3256
3142
|
"version",
|
|
3257
|
-
"
|
|
3143
|
+
"display.js"
|
|
3258
3144
|
],
|
|
3259
3145
|
"aliasPermutations": [
|
|
3260
|
-
"force:
|
|
3261
|
-
"
|
|
3262
|
-
"
|
|
3263
|
-
"
|
|
3264
|
-
"force:version:
|
|
3265
|
-
"version:force:
|
|
3266
|
-
"version:
|
|
3267
|
-
"version:
|
|
3268
|
-
"force:version:
|
|
3269
|
-
"version:force:
|
|
3270
|
-
"version:
|
|
3271
|
-
"version:
|
|
3272
|
-
"force:
|
|
3273
|
-
"
|
|
3274
|
-
"
|
|
3275
|
-
"
|
|
3276
|
-
"force:
|
|
3277
|
-
"
|
|
3278
|
-
"
|
|
3279
|
-
"
|
|
3280
|
-
"force:
|
|
3281
|
-
"
|
|
3282
|
-
"
|
|
3283
|
-
"
|
|
3146
|
+
"force:package1:version:display",
|
|
3147
|
+
"package1:force:version:display",
|
|
3148
|
+
"package1:version:force:display",
|
|
3149
|
+
"package1:version:display:force",
|
|
3150
|
+
"force:version:package1:display",
|
|
3151
|
+
"version:force:package1:display",
|
|
3152
|
+
"version:package1:force:display",
|
|
3153
|
+
"version:package1:display:force",
|
|
3154
|
+
"force:version:display:package1",
|
|
3155
|
+
"version:force:display:package1",
|
|
3156
|
+
"version:display:force:package1",
|
|
3157
|
+
"version:display:package1:force",
|
|
3158
|
+
"force:package1:display:version",
|
|
3159
|
+
"package1:force:display:version",
|
|
3160
|
+
"package1:display:force:version",
|
|
3161
|
+
"package1:display:version:force",
|
|
3162
|
+
"force:display:package1:version",
|
|
3163
|
+
"display:force:package1:version",
|
|
3164
|
+
"display:package1:force:version",
|
|
3165
|
+
"display:package1:version:force",
|
|
3166
|
+
"force:display:version:package1",
|
|
3167
|
+
"display:force:version:package1",
|
|
3168
|
+
"display:version:force:package1",
|
|
3169
|
+
"display:version:package1:force"
|
|
3284
3170
|
],
|
|
3285
3171
|
"permutations": [
|
|
3286
|
-
"
|
|
3287
|
-
"version:
|
|
3288
|
-
"version:
|
|
3289
|
-
"
|
|
3290
|
-
"
|
|
3291
|
-
"
|
|
3172
|
+
"package1:version:display",
|
|
3173
|
+
"version:package1:display",
|
|
3174
|
+
"version:display:package1",
|
|
3175
|
+
"package1:display:version",
|
|
3176
|
+
"display:package1:version",
|
|
3177
|
+
"display:version:package1"
|
|
3292
3178
|
]
|
|
3293
3179
|
},
|
|
3294
|
-
"package1:version:
|
|
3180
|
+
"package1:version:list": {
|
|
3295
3181
|
"aliases": [
|
|
3296
|
-
"force:package1:version:
|
|
3182
|
+
"force:package1:version:list"
|
|
3297
3183
|
],
|
|
3298
3184
|
"args": {},
|
|
3299
3185
|
"deprecateAliases": true,
|
|
3300
3186
|
"examples": [
|
|
3301
|
-
"
|
|
3302
|
-
"
|
|
3187
|
+
"List all first-generation package versions in your default org:\n<%= config.bin %> <%= command.id %>",
|
|
3188
|
+
"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"
|
|
3303
3189
|
],
|
|
3304
3190
|
"flags": {
|
|
3305
3191
|
"json": {
|
|
@@ -3353,15 +3239,15 @@
|
|
|
3353
3239
|
"multiple": false,
|
|
3354
3240
|
"type": "option"
|
|
3355
3241
|
},
|
|
3356
|
-
"
|
|
3242
|
+
"package-id": {
|
|
3357
3243
|
"aliases": [
|
|
3358
|
-
"
|
|
3244
|
+
"packageid"
|
|
3359
3245
|
],
|
|
3360
3246
|
"char": "i",
|
|
3361
3247
|
"deprecateAliases": true,
|
|
3362
|
-
"
|
|
3363
|
-
"
|
|
3364
|
-
"summary": "
|
|
3248
|
+
"description": "If not specified, shows all versions for all packages (managed and unmanaged) in the org.",
|
|
3249
|
+
"name": "package-id",
|
|
3250
|
+
"summary": "Metadata package ID (starts with 033) whose package versions you want to list.",
|
|
3365
3251
|
"hasDynamicHelp": false,
|
|
3366
3252
|
"multiple": false,
|
|
3367
3253
|
"type": "option"
|
|
@@ -3369,12 +3255,12 @@
|
|
|
3369
3255
|
},
|
|
3370
3256
|
"hasDynamicHelp": true,
|
|
3371
3257
|
"hiddenAliases": [],
|
|
3372
|
-
"id": "package1:version:
|
|
3258
|
+
"id": "package1:version:list",
|
|
3373
3259
|
"pluginAlias": "@salesforce/plugin-packaging",
|
|
3374
3260
|
"pluginName": "@salesforce/plugin-packaging",
|
|
3375
3261
|
"pluginType": "core",
|
|
3376
3262
|
"strict": true,
|
|
3377
|
-
"summary": "
|
|
3263
|
+
"summary": "List package versions for the specified first-generation package or for the org.",
|
|
3378
3264
|
"enableJsonFlag": true,
|
|
3379
3265
|
"isESM": true,
|
|
3380
3266
|
"relativePath": [
|
|
@@ -3382,156 +3268,41 @@
|
|
|
3382
3268
|
"commands",
|
|
3383
3269
|
"package1",
|
|
3384
3270
|
"version",
|
|
3385
|
-
"
|
|
3386
|
-
"get.js"
|
|
3271
|
+
"list.js"
|
|
3387
3272
|
],
|
|
3388
3273
|
"aliasPermutations": [
|
|
3389
|
-
"force:package1:version:
|
|
3390
|
-
"package1:force:version:
|
|
3391
|
-
"package1:version:force:
|
|
3392
|
-
"package1:version:
|
|
3393
|
-
"
|
|
3394
|
-
"force:
|
|
3395
|
-
"version:
|
|
3396
|
-
"version:package1:force
|
|
3397
|
-
"version:package1
|
|
3398
|
-
"version:
|
|
3399
|
-
"
|
|
3400
|
-
"version:
|
|
3401
|
-
"
|
|
3402
|
-
"
|
|
3403
|
-
"
|
|
3404
|
-
"
|
|
3405
|
-
"
|
|
3406
|
-
"
|
|
3407
|
-
"
|
|
3408
|
-
"
|
|
3409
|
-
"force:
|
|
3410
|
-
"
|
|
3411
|
-
"
|
|
3412
|
-
"
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
"
|
|
3416
|
-
"
|
|
3417
|
-
"
|
|
3418
|
-
"
|
|
3419
|
-
"
|
|
3420
|
-
"
|
|
3421
|
-
"create:version:force:package1:get",
|
|
3422
|
-
"create:version:package1:force:get",
|
|
3423
|
-
"create:version:package1:get:force",
|
|
3424
|
-
"force:create:version:get:package1",
|
|
3425
|
-
"create:force:version:get:package1",
|
|
3426
|
-
"create:version:force:get:package1",
|
|
3427
|
-
"create:version:get:force:package1",
|
|
3428
|
-
"create:version:get:package1:force",
|
|
3429
|
-
"force:package1:create:get:version",
|
|
3430
|
-
"package1:force:create:get:version",
|
|
3431
|
-
"package1:create:force:get:version",
|
|
3432
|
-
"package1:create:get:force:version",
|
|
3433
|
-
"package1:create:get:version:force",
|
|
3434
|
-
"force:create:package1:get:version",
|
|
3435
|
-
"create:force:package1:get:version",
|
|
3436
|
-
"create:package1:force:get:version",
|
|
3437
|
-
"create:package1:get:force:version",
|
|
3438
|
-
"create:package1:get:version:force",
|
|
3439
|
-
"force:create:get:package1:version",
|
|
3440
|
-
"create:force:get:package1:version",
|
|
3441
|
-
"create:get:force:package1:version",
|
|
3442
|
-
"create:get:package1:force:version",
|
|
3443
|
-
"create:get:package1:version:force",
|
|
3444
|
-
"force:create:get:version:package1",
|
|
3445
|
-
"create:force:get:version:package1",
|
|
3446
|
-
"create:get:force:version:package1",
|
|
3447
|
-
"create:get:version:force:package1",
|
|
3448
|
-
"create:get:version:package1:force",
|
|
3449
|
-
"force:package1:version:get:create",
|
|
3450
|
-
"package1:force:version:get:create",
|
|
3451
|
-
"package1:version:force:get:create",
|
|
3452
|
-
"package1:version:get:force:create",
|
|
3453
|
-
"package1:version:get:create:force",
|
|
3454
|
-
"force:version:package1:get:create",
|
|
3455
|
-
"version:force:package1:get:create",
|
|
3456
|
-
"version:package1:force:get:create",
|
|
3457
|
-
"version:package1:get:force:create",
|
|
3458
|
-
"version:package1:get:create:force",
|
|
3459
|
-
"force:version:get:package1:create",
|
|
3460
|
-
"version:force:get:package1:create",
|
|
3461
|
-
"version:get:force:package1:create",
|
|
3462
|
-
"version:get:package1:force:create",
|
|
3463
|
-
"version:get:package1:create:force",
|
|
3464
|
-
"force:version:get:create:package1",
|
|
3465
|
-
"version:force:get:create:package1",
|
|
3466
|
-
"version:get:force:create:package1",
|
|
3467
|
-
"version:get:create:force:package1",
|
|
3468
|
-
"version:get:create:package1:force",
|
|
3469
|
-
"force:package1:get:version:create",
|
|
3470
|
-
"package1:force:get:version:create",
|
|
3471
|
-
"package1:get:force:version:create",
|
|
3472
|
-
"package1:get:version:force:create",
|
|
3473
|
-
"package1:get:version:create:force",
|
|
3474
|
-
"force:get:package1:version:create",
|
|
3475
|
-
"get:force:package1:version:create",
|
|
3476
|
-
"get:package1:force:version:create",
|
|
3477
|
-
"get:package1:version:force:create",
|
|
3478
|
-
"get:package1:version:create:force",
|
|
3479
|
-
"force:get:version:package1:create",
|
|
3480
|
-
"get:force:version:package1:create",
|
|
3481
|
-
"get:version:force:package1:create",
|
|
3482
|
-
"get:version:package1:force:create",
|
|
3483
|
-
"get:version:package1:create:force",
|
|
3484
|
-
"force:get:version:create:package1",
|
|
3485
|
-
"get:force:version:create:package1",
|
|
3486
|
-
"get:version:force:create:package1",
|
|
3487
|
-
"get:version:create:force:package1",
|
|
3488
|
-
"get:version:create:package1:force",
|
|
3489
|
-
"force:package1:get:create:version",
|
|
3490
|
-
"package1:force:get:create:version",
|
|
3491
|
-
"package1:get:force:create:version",
|
|
3492
|
-
"package1:get:create:force:version",
|
|
3493
|
-
"package1:get:create:version:force",
|
|
3494
|
-
"force:get:package1:create:version",
|
|
3495
|
-
"get:force:package1:create:version",
|
|
3496
|
-
"get:package1:force:create:version",
|
|
3497
|
-
"get:package1:create:force:version",
|
|
3498
|
-
"get:package1:create:version:force",
|
|
3499
|
-
"force:get:create:package1:version",
|
|
3500
|
-
"get:force:create:package1:version",
|
|
3501
|
-
"get:create:force:package1:version",
|
|
3502
|
-
"get:create:package1:force:version",
|
|
3503
|
-
"get:create:package1:version:force",
|
|
3504
|
-
"force:get:create:version:package1",
|
|
3505
|
-
"get:force:create:version:package1",
|
|
3506
|
-
"get:create:force:version:package1",
|
|
3507
|
-
"get:create:version:force:package1",
|
|
3508
|
-
"get:create:version:package1:force"
|
|
3509
|
-
],
|
|
3510
|
-
"permutations": [
|
|
3511
|
-
"package1:version:create:get",
|
|
3512
|
-
"version:package1:create:get",
|
|
3513
|
-
"version:create:package1:get",
|
|
3514
|
-
"version:create:get:package1",
|
|
3515
|
-
"package1:create:version:get",
|
|
3516
|
-
"create:package1:version:get",
|
|
3517
|
-
"create:version:package1:get",
|
|
3518
|
-
"create:version:get:package1",
|
|
3519
|
-
"package1:create:get:version",
|
|
3520
|
-
"create:package1:get:version",
|
|
3521
|
-
"create:get:package1:version",
|
|
3522
|
-
"create:get:version:package1",
|
|
3523
|
-
"package1:version:get:create",
|
|
3524
|
-
"version:package1:get:create",
|
|
3525
|
-
"version:get:package1:create",
|
|
3526
|
-
"version:get:create:package1",
|
|
3527
|
-
"package1:get:version:create",
|
|
3528
|
-
"get:package1:version:create",
|
|
3529
|
-
"get:version:package1:create",
|
|
3530
|
-
"get:version:create:package1",
|
|
3531
|
-
"package1:get:create:version",
|
|
3532
|
-
"get:package1:create:version",
|
|
3533
|
-
"get:create:package1:version",
|
|
3534
|
-
"get:create:version:package1"
|
|
3274
|
+
"force:package1:version:list",
|
|
3275
|
+
"package1:force:version:list",
|
|
3276
|
+
"package1:version:force:list",
|
|
3277
|
+
"package1:version:list:force",
|
|
3278
|
+
"force:version:package1:list",
|
|
3279
|
+
"version:force:package1:list",
|
|
3280
|
+
"version:package1:force:list",
|
|
3281
|
+
"version:package1:list:force",
|
|
3282
|
+
"force:version:list:package1",
|
|
3283
|
+
"version:force:list:package1",
|
|
3284
|
+
"version:list:force:package1",
|
|
3285
|
+
"version:list:package1:force",
|
|
3286
|
+
"force:package1:list:version",
|
|
3287
|
+
"package1:force:list:version",
|
|
3288
|
+
"package1:list:force:version",
|
|
3289
|
+
"package1:list:version:force",
|
|
3290
|
+
"force:list:package1:version",
|
|
3291
|
+
"list:force:package1:version",
|
|
3292
|
+
"list:package1:force:version",
|
|
3293
|
+
"list:package1:version:force",
|
|
3294
|
+
"force:list:version:package1",
|
|
3295
|
+
"list:force:version:package1",
|
|
3296
|
+
"list:version:force:package1",
|
|
3297
|
+
"list:version:package1:force"
|
|
3298
|
+
],
|
|
3299
|
+
"permutations": [
|
|
3300
|
+
"package1:version:list",
|
|
3301
|
+
"version:package1:list",
|
|
3302
|
+
"version:list:package1",
|
|
3303
|
+
"package1:list:version",
|
|
3304
|
+
"list:package1:version",
|
|
3305
|
+
"list:version:package1"
|
|
3535
3306
|
]
|
|
3536
3307
|
},
|
|
3537
3308
|
"package:version:create:list": {
|
|
@@ -4049,7 +3820,250 @@
|
|
|
4049
3820
|
"report:create:package:version",
|
|
4050
3821
|
"report:create:version:package"
|
|
4051
3822
|
]
|
|
3823
|
+
},
|
|
3824
|
+
"package1:version:create:get": {
|
|
3825
|
+
"aliases": [
|
|
3826
|
+
"force:package1:version:create:get"
|
|
3827
|
+
],
|
|
3828
|
+
"args": {},
|
|
3829
|
+
"deprecateAliases": true,
|
|
3830
|
+
"examples": [
|
|
3831
|
+
"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...",
|
|
3832
|
+
"Same as previous example, but use the specified org:\n<%= config.bin %> <%= command.id %> --request-id 0HD... --target-org myorg@example.com"
|
|
3833
|
+
],
|
|
3834
|
+
"flags": {
|
|
3835
|
+
"json": {
|
|
3836
|
+
"description": "Format output as json.",
|
|
3837
|
+
"helpGroup": "GLOBAL",
|
|
3838
|
+
"name": "json",
|
|
3839
|
+
"allowNo": false,
|
|
3840
|
+
"type": "boolean"
|
|
3841
|
+
},
|
|
3842
|
+
"flags-dir": {
|
|
3843
|
+
"helpGroup": "GLOBAL",
|
|
3844
|
+
"name": "flags-dir",
|
|
3845
|
+
"summary": "Import flag values from a directory.",
|
|
3846
|
+
"hasDynamicHelp": false,
|
|
3847
|
+
"multiple": false,
|
|
3848
|
+
"type": "option"
|
|
3849
|
+
},
|
|
3850
|
+
"loglevel": {
|
|
3851
|
+
"deprecated": {
|
|
3852
|
+
"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."
|
|
3853
|
+
},
|
|
3854
|
+
"hidden": true,
|
|
3855
|
+
"name": "loglevel",
|
|
3856
|
+
"hasDynamicHelp": false,
|
|
3857
|
+
"multiple": false,
|
|
3858
|
+
"type": "option"
|
|
3859
|
+
},
|
|
3860
|
+
"target-org": {
|
|
3861
|
+
"aliases": [
|
|
3862
|
+
"targetusername",
|
|
3863
|
+
"u"
|
|
3864
|
+
],
|
|
3865
|
+
"char": "o",
|
|
3866
|
+
"deprecateAliases": true,
|
|
3867
|
+
"name": "target-org",
|
|
3868
|
+
"noCacheDefault": true,
|
|
3869
|
+
"required": true,
|
|
3870
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
3871
|
+
"hasDynamicHelp": true,
|
|
3872
|
+
"multiple": false,
|
|
3873
|
+
"type": "option"
|
|
3874
|
+
},
|
|
3875
|
+
"api-version": {
|
|
3876
|
+
"aliases": [
|
|
3877
|
+
"apiversion"
|
|
3878
|
+
],
|
|
3879
|
+
"deprecateAliases": true,
|
|
3880
|
+
"description": "Override the api version used for api requests made by this command",
|
|
3881
|
+
"name": "api-version",
|
|
3882
|
+
"hasDynamicHelp": false,
|
|
3883
|
+
"multiple": false,
|
|
3884
|
+
"type": "option"
|
|
3885
|
+
},
|
|
3886
|
+
"request-id": {
|
|
3887
|
+
"aliases": [
|
|
3888
|
+
"requestid"
|
|
3889
|
+
],
|
|
3890
|
+
"char": "i",
|
|
3891
|
+
"deprecateAliases": true,
|
|
3892
|
+
"name": "request-id",
|
|
3893
|
+
"required": true,
|
|
3894
|
+
"summary": "ID of the PackageUploadRequest (starts with 0HD).",
|
|
3895
|
+
"hasDynamicHelp": false,
|
|
3896
|
+
"multiple": false,
|
|
3897
|
+
"type": "option"
|
|
3898
|
+
}
|
|
3899
|
+
},
|
|
3900
|
+
"hasDynamicHelp": true,
|
|
3901
|
+
"hiddenAliases": [],
|
|
3902
|
+
"id": "package1:version:create:get",
|
|
3903
|
+
"pluginAlias": "@salesforce/plugin-packaging",
|
|
3904
|
+
"pluginName": "@salesforce/plugin-packaging",
|
|
3905
|
+
"pluginType": "core",
|
|
3906
|
+
"strict": true,
|
|
3907
|
+
"summary": "Retrieve the status of a package version creation request.",
|
|
3908
|
+
"enableJsonFlag": true,
|
|
3909
|
+
"isESM": true,
|
|
3910
|
+
"relativePath": [
|
|
3911
|
+
"lib",
|
|
3912
|
+
"commands",
|
|
3913
|
+
"package1",
|
|
3914
|
+
"version",
|
|
3915
|
+
"create",
|
|
3916
|
+
"get.js"
|
|
3917
|
+
],
|
|
3918
|
+
"aliasPermutations": [
|
|
3919
|
+
"force:package1:version:create:get",
|
|
3920
|
+
"package1:force:version:create:get",
|
|
3921
|
+
"package1:version:force:create:get",
|
|
3922
|
+
"package1:version:create:force:get",
|
|
3923
|
+
"package1:version:create:get:force",
|
|
3924
|
+
"force:version:package1:create:get",
|
|
3925
|
+
"version:force:package1:create:get",
|
|
3926
|
+
"version:package1:force:create:get",
|
|
3927
|
+
"version:package1:create:force:get",
|
|
3928
|
+
"version:package1:create:get:force",
|
|
3929
|
+
"force:version:create:package1:get",
|
|
3930
|
+
"version:force:create:package1:get",
|
|
3931
|
+
"version:create:force:package1:get",
|
|
3932
|
+
"version:create:package1:force:get",
|
|
3933
|
+
"version:create:package1:get:force",
|
|
3934
|
+
"force:version:create:get:package1",
|
|
3935
|
+
"version:force:create:get:package1",
|
|
3936
|
+
"version:create:force:get:package1",
|
|
3937
|
+
"version:create:get:force:package1",
|
|
3938
|
+
"version:create:get:package1:force",
|
|
3939
|
+
"force:package1:create:version:get",
|
|
3940
|
+
"package1:force:create:version:get",
|
|
3941
|
+
"package1:create:force:version:get",
|
|
3942
|
+
"package1:create:version:force:get",
|
|
3943
|
+
"package1:create:version:get:force",
|
|
3944
|
+
"force:create:package1:version:get",
|
|
3945
|
+
"create:force:package1:version:get",
|
|
3946
|
+
"create:package1:force:version:get",
|
|
3947
|
+
"create:package1:version:force:get",
|
|
3948
|
+
"create:package1:version:get:force",
|
|
3949
|
+
"force:create:version:package1:get",
|
|
3950
|
+
"create:force:version:package1:get",
|
|
3951
|
+
"create:version:force:package1:get",
|
|
3952
|
+
"create:version:package1:force:get",
|
|
3953
|
+
"create:version:package1:get:force",
|
|
3954
|
+
"force:create:version:get:package1",
|
|
3955
|
+
"create:force:version:get:package1",
|
|
3956
|
+
"create:version:force:get:package1",
|
|
3957
|
+
"create:version:get:force:package1",
|
|
3958
|
+
"create:version:get:package1:force",
|
|
3959
|
+
"force:package1:create:get:version",
|
|
3960
|
+
"package1:force:create:get:version",
|
|
3961
|
+
"package1:create:force:get:version",
|
|
3962
|
+
"package1:create:get:force:version",
|
|
3963
|
+
"package1:create:get:version:force",
|
|
3964
|
+
"force:create:package1:get:version",
|
|
3965
|
+
"create:force:package1:get:version",
|
|
3966
|
+
"create:package1:force:get:version",
|
|
3967
|
+
"create:package1:get:force:version",
|
|
3968
|
+
"create:package1:get:version:force",
|
|
3969
|
+
"force:create:get:package1:version",
|
|
3970
|
+
"create:force:get:package1:version",
|
|
3971
|
+
"create:get:force:package1:version",
|
|
3972
|
+
"create:get:package1:force:version",
|
|
3973
|
+
"create:get:package1:version:force",
|
|
3974
|
+
"force:create:get:version:package1",
|
|
3975
|
+
"create:force:get:version:package1",
|
|
3976
|
+
"create:get:force:version:package1",
|
|
3977
|
+
"create:get:version:force:package1",
|
|
3978
|
+
"create:get:version:package1:force",
|
|
3979
|
+
"force:package1:version:get:create",
|
|
3980
|
+
"package1:force:version:get:create",
|
|
3981
|
+
"package1:version:force:get:create",
|
|
3982
|
+
"package1:version:get:force:create",
|
|
3983
|
+
"package1:version:get:create:force",
|
|
3984
|
+
"force:version:package1:get:create",
|
|
3985
|
+
"version:force:package1:get:create",
|
|
3986
|
+
"version:package1:force:get:create",
|
|
3987
|
+
"version:package1:get:force:create",
|
|
3988
|
+
"version:package1:get:create:force",
|
|
3989
|
+
"force:version:get:package1:create",
|
|
3990
|
+
"version:force:get:package1:create",
|
|
3991
|
+
"version:get:force:package1:create",
|
|
3992
|
+
"version:get:package1:force:create",
|
|
3993
|
+
"version:get:package1:create:force",
|
|
3994
|
+
"force:version:get:create:package1",
|
|
3995
|
+
"version:force:get:create:package1",
|
|
3996
|
+
"version:get:force:create:package1",
|
|
3997
|
+
"version:get:create:force:package1",
|
|
3998
|
+
"version:get:create:package1:force",
|
|
3999
|
+
"force:package1:get:version:create",
|
|
4000
|
+
"package1:force:get:version:create",
|
|
4001
|
+
"package1:get:force:version:create",
|
|
4002
|
+
"package1:get:version:force:create",
|
|
4003
|
+
"package1:get:version:create:force",
|
|
4004
|
+
"force:get:package1:version:create",
|
|
4005
|
+
"get:force:package1:version:create",
|
|
4006
|
+
"get:package1:force:version:create",
|
|
4007
|
+
"get:package1:version:force:create",
|
|
4008
|
+
"get:package1:version:create:force",
|
|
4009
|
+
"force:get:version:package1:create",
|
|
4010
|
+
"get:force:version:package1:create",
|
|
4011
|
+
"get:version:force:package1:create",
|
|
4012
|
+
"get:version:package1:force:create",
|
|
4013
|
+
"get:version:package1:create:force",
|
|
4014
|
+
"force:get:version:create:package1",
|
|
4015
|
+
"get:force:version:create:package1",
|
|
4016
|
+
"get:version:force:create:package1",
|
|
4017
|
+
"get:version:create:force:package1",
|
|
4018
|
+
"get:version:create:package1:force",
|
|
4019
|
+
"force:package1:get:create:version",
|
|
4020
|
+
"package1:force:get:create:version",
|
|
4021
|
+
"package1:get:force:create:version",
|
|
4022
|
+
"package1:get:create:force:version",
|
|
4023
|
+
"package1:get:create:version:force",
|
|
4024
|
+
"force:get:package1:create:version",
|
|
4025
|
+
"get:force:package1:create:version",
|
|
4026
|
+
"get:package1:force:create:version",
|
|
4027
|
+
"get:package1:create:force:version",
|
|
4028
|
+
"get:package1:create:version:force",
|
|
4029
|
+
"force:get:create:package1:version",
|
|
4030
|
+
"get:force:create:package1:version",
|
|
4031
|
+
"get:create:force:package1:version",
|
|
4032
|
+
"get:create:package1:force:version",
|
|
4033
|
+
"get:create:package1:version:force",
|
|
4034
|
+
"force:get:create:version:package1",
|
|
4035
|
+
"get:force:create:version:package1",
|
|
4036
|
+
"get:create:force:version:package1",
|
|
4037
|
+
"get:create:version:force:package1",
|
|
4038
|
+
"get:create:version:package1:force"
|
|
4039
|
+
],
|
|
4040
|
+
"permutations": [
|
|
4041
|
+
"package1:version:create:get",
|
|
4042
|
+
"version:package1:create:get",
|
|
4043
|
+
"version:create:package1:get",
|
|
4044
|
+
"version:create:get:package1",
|
|
4045
|
+
"package1:create:version:get",
|
|
4046
|
+
"create:package1:version:get",
|
|
4047
|
+
"create:version:package1:get",
|
|
4048
|
+
"create:version:get:package1",
|
|
4049
|
+
"package1:create:get:version",
|
|
4050
|
+
"create:package1:get:version",
|
|
4051
|
+
"create:get:package1:version",
|
|
4052
|
+
"create:get:version:package1",
|
|
4053
|
+
"package1:version:get:create",
|
|
4054
|
+
"version:package1:get:create",
|
|
4055
|
+
"version:get:package1:create",
|
|
4056
|
+
"version:get:create:package1",
|
|
4057
|
+
"package1:get:version:create",
|
|
4058
|
+
"get:package1:version:create",
|
|
4059
|
+
"get:version:package1:create",
|
|
4060
|
+
"get:version:create:package1",
|
|
4061
|
+
"package1:get:create:version",
|
|
4062
|
+
"get:package1:create:version",
|
|
4063
|
+
"get:create:package1:version",
|
|
4064
|
+
"get:create:version:package1"
|
|
4065
|
+
]
|
|
4052
4066
|
}
|
|
4053
4067
|
},
|
|
4054
|
-
"version": "2.
|
|
4068
|
+
"version": "2.13.1"
|
|
4055
4069
|
}
|