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