sfdx-hardis 5.28.0 → 5.28.2-beta202505012337.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/CHANGELOG.md +15 -0
- package/defaults/ci/bitbucket-pipelines.yml +4 -0
- package/lib/commands/hardis/doc/extract/permsetgroups.js +2 -3
- package/lib/commands/hardis/doc/extract/permsetgroups.js.map +1 -1
- package/lib/commands/hardis/doc/project2markdown.d.ts +2 -0
- package/lib/commands/hardis/doc/project2markdown.js +95 -14
- package/lib/commands/hardis/doc/project2markdown.js.map +1 -1
- package/lib/commands/hardis/org/diagnose/audittrail.js +45 -6
- package/lib/commands/hardis/org/diagnose/audittrail.js.map +1 -1
- package/lib/common/aiProvider/promptTemplates.d.ts +7 -1
- package/lib/common/aiProvider/promptTemplates.js +32 -6
- package/lib/common/aiProvider/promptTemplates.js.map +1 -1
- package/lib/common/docBuilder/docBuilderApprovalProcess.d.ts +11 -0
- package/lib/common/docBuilder/docBuilderApprovalProcess.js +61 -0
- package/lib/common/docBuilder/docBuilderApprovalProcess.js.map +1 -0
- package/oclif.lock +328 -347
- package/oclif.manifest.json +382 -382
- package/package.json +5 -6
package/oclif.manifest.json
CHANGED
|
@@ -5196,15 +5196,12 @@
|
|
|
5196
5196
|
"import:data:org:hardis"
|
|
5197
5197
|
]
|
|
5198
5198
|
},
|
|
5199
|
-
"hardis:org:
|
|
5199
|
+
"hardis:org:files:export": {
|
|
5200
5200
|
"aliases": [],
|
|
5201
5201
|
"args": {},
|
|
5202
|
-
"description": "Export
|
|
5202
|
+
"description": "Export file attachments from a Salesforce org\n\nHandles:\n\n- ContentVersion\n- Attachment\n\nSee article below:\n\n[](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
|
|
5203
5203
|
"examples": [
|
|
5204
|
-
"$ sf hardis:org:
|
|
5205
|
-
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
|
|
5206
|
-
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
|
|
5207
|
-
"$ sf hardis:org:diagnose:audittrail --lastndays 5"
|
|
5204
|
+
"$ sf hardis:org:files:export"
|
|
5208
5205
|
],
|
|
5209
5206
|
"flags": {
|
|
5210
5207
|
"json": {
|
|
@@ -5222,26 +5219,37 @@
|
|
|
5222
5219
|
"multiple": false,
|
|
5223
5220
|
"type": "option"
|
|
5224
5221
|
},
|
|
5225
|
-
"
|
|
5226
|
-
"char": "
|
|
5227
|
-
"description": "
|
|
5228
|
-
"name": "
|
|
5222
|
+
"path": {
|
|
5223
|
+
"char": "p",
|
|
5224
|
+
"description": "Path to the file export project",
|
|
5225
|
+
"name": "path",
|
|
5229
5226
|
"hasDynamicHelp": false,
|
|
5230
5227
|
"multiple": false,
|
|
5231
5228
|
"type": "option"
|
|
5232
5229
|
},
|
|
5233
|
-
"
|
|
5230
|
+
"chunksize": {
|
|
5231
|
+
"char": "c",
|
|
5232
|
+
"description": "Number of records to add in a chunk before it is processed",
|
|
5233
|
+
"name": "chunksize",
|
|
5234
|
+
"default": 1000,
|
|
5235
|
+
"hasDynamicHelp": false,
|
|
5236
|
+
"multiple": false,
|
|
5237
|
+
"type": "option"
|
|
5238
|
+
},
|
|
5239
|
+
"polltimeout": {
|
|
5234
5240
|
"char": "t",
|
|
5235
|
-
"description": "
|
|
5236
|
-
"name": "
|
|
5241
|
+
"description": "Timeout in MS for Bulk API calls",
|
|
5242
|
+
"name": "polltimeout",
|
|
5243
|
+
"default": 300000,
|
|
5237
5244
|
"hasDynamicHelp": false,
|
|
5238
5245
|
"multiple": false,
|
|
5239
5246
|
"type": "option"
|
|
5240
5247
|
},
|
|
5241
|
-
"
|
|
5242
|
-
"char": "
|
|
5243
|
-
"description": "
|
|
5244
|
-
"name": "
|
|
5248
|
+
"startchunknumber": {
|
|
5249
|
+
"char": "s",
|
|
5250
|
+
"description": "Chunk number to start from",
|
|
5251
|
+
"name": "startchunknumber",
|
|
5252
|
+
"default": 0,
|
|
5245
5253
|
"hasDynamicHelp": false,
|
|
5246
5254
|
"multiple": false,
|
|
5247
5255
|
"type": "option"
|
|
@@ -5284,13 +5292,13 @@
|
|
|
5284
5292
|
},
|
|
5285
5293
|
"hasDynamicHelp": true,
|
|
5286
5294
|
"hiddenAliases": [],
|
|
5287
|
-
"id": "hardis:org:
|
|
5295
|
+
"id": "hardis:org:files:export",
|
|
5288
5296
|
"pluginAlias": "sfdx-hardis",
|
|
5289
5297
|
"pluginName": "sfdx-hardis",
|
|
5290
5298
|
"pluginType": "core",
|
|
5291
5299
|
"strict": true,
|
|
5292
5300
|
"enableJsonFlag": true,
|
|
5293
|
-
"title": "
|
|
5301
|
+
"title": "Export files",
|
|
5294
5302
|
"requiresProject": false,
|
|
5295
5303
|
"isESM": true,
|
|
5296
5304
|
"relativePath": [
|
|
@@ -5298,43 +5306,43 @@
|
|
|
5298
5306
|
"commands",
|
|
5299
5307
|
"hardis",
|
|
5300
5308
|
"org",
|
|
5301
|
-
"
|
|
5302
|
-
"
|
|
5309
|
+
"files",
|
|
5310
|
+
"export.js"
|
|
5303
5311
|
],
|
|
5304
5312
|
"aliasPermutations": [],
|
|
5305
5313
|
"permutations": [
|
|
5306
|
-
"hardis:org:
|
|
5307
|
-
"org:hardis:
|
|
5308
|
-
"org:
|
|
5309
|
-
"org:
|
|
5310
|
-
"hardis:
|
|
5311
|
-
"
|
|
5312
|
-
"
|
|
5313
|
-
"
|
|
5314
|
-
"hardis:
|
|
5315
|
-
"
|
|
5316
|
-
"
|
|
5317
|
-
"
|
|
5318
|
-
"hardis:org:
|
|
5319
|
-
"org:hardis:
|
|
5320
|
-
"org:
|
|
5321
|
-
"org:
|
|
5322
|
-
"hardis:
|
|
5323
|
-
"
|
|
5324
|
-
"
|
|
5325
|
-
"
|
|
5326
|
-
"hardis:
|
|
5327
|
-
"
|
|
5328
|
-
"
|
|
5329
|
-
"
|
|
5314
|
+
"hardis:org:files:export",
|
|
5315
|
+
"org:hardis:files:export",
|
|
5316
|
+
"org:files:hardis:export",
|
|
5317
|
+
"org:files:export:hardis",
|
|
5318
|
+
"hardis:files:org:export",
|
|
5319
|
+
"files:hardis:org:export",
|
|
5320
|
+
"files:org:hardis:export",
|
|
5321
|
+
"files:org:export:hardis",
|
|
5322
|
+
"hardis:files:export:org",
|
|
5323
|
+
"files:hardis:export:org",
|
|
5324
|
+
"files:export:hardis:org",
|
|
5325
|
+
"files:export:org:hardis",
|
|
5326
|
+
"hardis:org:export:files",
|
|
5327
|
+
"org:hardis:export:files",
|
|
5328
|
+
"org:export:hardis:files",
|
|
5329
|
+
"org:export:files:hardis",
|
|
5330
|
+
"hardis:export:org:files",
|
|
5331
|
+
"export:hardis:org:files",
|
|
5332
|
+
"export:org:hardis:files",
|
|
5333
|
+
"export:org:files:hardis",
|
|
5334
|
+
"hardis:export:files:org",
|
|
5335
|
+
"export:hardis:files:org",
|
|
5336
|
+
"export:files:hardis:org",
|
|
5337
|
+
"export:files:org:hardis"
|
|
5330
5338
|
]
|
|
5331
5339
|
},
|
|
5332
|
-
"hardis:org:
|
|
5340
|
+
"hardis:org:files:import": {
|
|
5333
5341
|
"aliases": [],
|
|
5334
5342
|
"args": {},
|
|
5335
|
-
"description": "
|
|
5343
|
+
"description": "Import file attachments into a Salesforce org\n\nSee article below to see how to Export them.\n\n[](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
|
|
5336
5344
|
"examples": [
|
|
5337
|
-
"$ sf hardis:org:
|
|
5345
|
+
"$ sf hardis:org:files:import"
|
|
5338
5346
|
],
|
|
5339
5347
|
"flags": {
|
|
5340
5348
|
"json": {
|
|
@@ -5352,6 +5360,21 @@
|
|
|
5352
5360
|
"multiple": false,
|
|
5353
5361
|
"type": "option"
|
|
5354
5362
|
},
|
|
5363
|
+
"path": {
|
|
5364
|
+
"char": "p",
|
|
5365
|
+
"description": "Path to the file export project",
|
|
5366
|
+
"name": "path",
|
|
5367
|
+
"hasDynamicHelp": false,
|
|
5368
|
+
"multiple": false,
|
|
5369
|
+
"type": "option"
|
|
5370
|
+
},
|
|
5371
|
+
"overwrite": {
|
|
5372
|
+
"char": "f",
|
|
5373
|
+
"description": "Override existing files (doubles the number of API calls)",
|
|
5374
|
+
"name": "overwrite",
|
|
5375
|
+
"allowNo": false,
|
|
5376
|
+
"type": "boolean"
|
|
5377
|
+
},
|
|
5355
5378
|
"debug": {
|
|
5356
5379
|
"char": "d",
|
|
5357
5380
|
"description": "Activate debug mode (more logs)",
|
|
@@ -5390,13 +5413,13 @@
|
|
|
5390
5413
|
},
|
|
5391
5414
|
"hasDynamicHelp": true,
|
|
5392
5415
|
"hiddenAliases": [],
|
|
5393
|
-
"id": "hardis:org:
|
|
5416
|
+
"id": "hardis:org:files:import",
|
|
5394
5417
|
"pluginAlias": "sfdx-hardis",
|
|
5395
5418
|
"pluginName": "sfdx-hardis",
|
|
5396
5419
|
"pluginType": "core",
|
|
5397
5420
|
"strict": true,
|
|
5398
5421
|
"enableJsonFlag": true,
|
|
5399
|
-
"title": "
|
|
5422
|
+
"title": "Import files",
|
|
5400
5423
|
"requiresProject": false,
|
|
5401
5424
|
"isESM": true,
|
|
5402
5425
|
"relativePath": [
|
|
@@ -5404,46 +5427,46 @@
|
|
|
5404
5427
|
"commands",
|
|
5405
5428
|
"hardis",
|
|
5406
5429
|
"org",
|
|
5407
|
-
"
|
|
5408
|
-
"
|
|
5430
|
+
"files",
|
|
5431
|
+
"import.js"
|
|
5409
5432
|
],
|
|
5410
5433
|
"aliasPermutations": [],
|
|
5411
5434
|
"permutations": [
|
|
5412
|
-
"hardis:org:
|
|
5413
|
-
"org:hardis:
|
|
5414
|
-
"org:
|
|
5415
|
-
"org:
|
|
5416
|
-
"hardis:
|
|
5417
|
-
"
|
|
5418
|
-
"
|
|
5419
|
-
"
|
|
5420
|
-
"hardis:
|
|
5421
|
-
"
|
|
5422
|
-
"
|
|
5423
|
-
"
|
|
5424
|
-
"hardis:org:
|
|
5425
|
-
"org:hardis:
|
|
5426
|
-
"org:
|
|
5427
|
-
"org:
|
|
5428
|
-
"hardis:
|
|
5429
|
-
"
|
|
5430
|
-
"
|
|
5431
|
-
"
|
|
5432
|
-
"hardis:
|
|
5433
|
-
"
|
|
5434
|
-
"
|
|
5435
|
-
"
|
|
5435
|
+
"hardis:org:files:import",
|
|
5436
|
+
"org:hardis:files:import",
|
|
5437
|
+
"org:files:hardis:import",
|
|
5438
|
+
"org:files:import:hardis",
|
|
5439
|
+
"hardis:files:org:import",
|
|
5440
|
+
"files:hardis:org:import",
|
|
5441
|
+
"files:org:hardis:import",
|
|
5442
|
+
"files:org:import:hardis",
|
|
5443
|
+
"hardis:files:import:org",
|
|
5444
|
+
"files:hardis:import:org",
|
|
5445
|
+
"files:import:hardis:org",
|
|
5446
|
+
"files:import:org:hardis",
|
|
5447
|
+
"hardis:org:import:files",
|
|
5448
|
+
"org:hardis:import:files",
|
|
5449
|
+
"org:import:hardis:files",
|
|
5450
|
+
"org:import:files:hardis",
|
|
5451
|
+
"hardis:import:org:files",
|
|
5452
|
+
"import:hardis:org:files",
|
|
5453
|
+
"import:org:hardis:files",
|
|
5454
|
+
"import:org:files:hardis",
|
|
5455
|
+
"hardis:import:files:org",
|
|
5456
|
+
"import:hardis:files:org",
|
|
5457
|
+
"import:files:hardis:org",
|
|
5458
|
+
"import:files:org:hardis"
|
|
5436
5459
|
]
|
|
5437
5460
|
},
|
|
5438
|
-
"hardis:org:diagnose:
|
|
5461
|
+
"hardis:org:diagnose:audittrail": {
|
|
5439
5462
|
"aliases": [],
|
|
5440
5463
|
"args": {},
|
|
5441
|
-
"description": "
|
|
5464
|
+
"description": "Export Audit trail into a CSV file with selected criteria, and highlight suspect actions\n\nRegular setup actions performed in major orgs are filtered.\n\n- \"\"\n - createScratchOrg\n - changedsenderemail\n - deleteScratchOrg\n - loginasgrantedtopartnerbt\n- Certificate and Key Management\n - insertCertificate\n- Custom App Licenses\n - addeduserpackagelicense\n - granteduserpackagelicense\n - revokeduserpackagelicense\n- Customer Portal\n - createdcustomersuccessuser\n - CSPUserDisabled\n- Currency\n - updateddatedexchrate\n- Data Management\n - queueMembership\n- Email Administration\n - dkimRotationPreparationSuccessful\n - dkimRotationSuccessful\n- Groups\n - groupMembership\n- Holidays\n - holiday_insert\n- Inbox mobile and legacy desktop apps\n - enableSIQUserNonEAC\n- Manage Users\n - activateduser\n - createduser\n - changedcommunitynickname\n - changedemail\n - changedfederationid\n - changedpassword\n - changedinteractionuseroffon\n - changedinteractionuseronoff\n - changedmarketinguseroffon\n - changedmarketinguseronoff\n - changedprofileforuser\n - changedprofileforusercusttostd\n - changedprofileforuserstdtocust\n - changedroleforusertonone\n - changedroleforuser\n - changedroleforuserfromnone\n - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedknowledgeuseroffon\n - changedsupportuseroffon\n - changedUserPhoneNumber\n - changedUserPhoneVerifiedStatusUnverified\n - deactivateduser\n - deleteAuthenticatorPairing\n - deleteTwoFactorInfo2\n - deleteTwoFactorTempCode\n - frozeuser\n - insertAuthenticatorPairing\n - insertTwoFactorInfo2\n - insertTwoFactorTempCode\n - lightningloginenroll\n - PermSetAssign\n - PermSetGroupAssign\n - PermSetGroupUnassign\n - PermSetLicenseAssign\n - PermSetUnassign\n - PermSetLicenseUnassign\n - registeredUserPhoneNumber\n - resetpassword\n - suNetworkAdminLogin\n - suNetworkAdminLogout\n - suOrgAdminLogin\n - suOrgAdminLogout\n - unfrozeuser\n - useremailchangesent\n- Mobile Administration\n - assigneduserstomobileconfig\n- Reporting Snapshots\n - createdReportJob\n - deletedReportJob\n- Sandboxes\n - DeleteSandbox\n\nBy default, deployment user defined in .sfdx-hardis.yml targetUsername property will be excluded.\n\nYou can define additional users to exclude in .sfdx-hardis.yml **monitoringExcludeUsernames** property.\n\nYou can also add more sections / actions considered as not suspect using property **monitoringAllowedSectionsActions**\n\nExample:\n\n```yaml\nmonitoringExcludeUsernames:\n - deploymentuser@cloudity.com\n - marketingcloud@cloudity.com\n - integration-user@cloudity.com\n\nmonitoringAllowedSectionsActions:\n \"Some section\": [] // Will ignore all actions from such section\n \"Some other section\": [\"actionType1\",\"actionType2\",\"actionType3\"] // Will ignore only those 3 actions from section \"Some other section\". Other actions in the same section will be considered as suspect.\n```\n\n## Excel output example\n\n\n\n## Local output example\n\n\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-suspect-audit-trail/) and can output Grafana, Slack and MsTeams Notifications.\n",
|
|
5442
5465
|
"examples": [
|
|
5443
|
-
"$ sf hardis:org:diagnose:
|
|
5444
|
-
"$ sf hardis:org:diagnose:
|
|
5445
|
-
"$ sf hardis:org:diagnose:
|
|
5446
|
-
"$ sf hardis:org:diagnose:
|
|
5466
|
+
"$ sf hardis:org:diagnose:audittrail",
|
|
5467
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
|
|
5468
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
|
|
5469
|
+
"$ sf hardis:org:diagnose:audittrail --lastndays 5"
|
|
5447
5470
|
],
|
|
5448
5471
|
"flags": {
|
|
5449
5472
|
"json": {
|
|
@@ -5461,20 +5484,18 @@
|
|
|
5461
5484
|
"multiple": false,
|
|
5462
5485
|
"type": "option"
|
|
5463
5486
|
},
|
|
5464
|
-
"
|
|
5487
|
+
"excludeusers": {
|
|
5465
5488
|
"char": "e",
|
|
5466
|
-
"description": "
|
|
5467
|
-
"name": "
|
|
5468
|
-
"default": "ApiTotalUsage",
|
|
5489
|
+
"description": "Comma-separated list of usernames to exclude",
|
|
5490
|
+
"name": "excludeusers",
|
|
5469
5491
|
"hasDynamicHelp": false,
|
|
5470
5492
|
"multiple": false,
|
|
5471
5493
|
"type": "option"
|
|
5472
5494
|
},
|
|
5473
|
-
"
|
|
5474
|
-
"char": "
|
|
5475
|
-
"description": "Number of
|
|
5476
|
-
"name": "
|
|
5477
|
-
"default": 999,
|
|
5495
|
+
"lastndays": {
|
|
5496
|
+
"char": "t",
|
|
5497
|
+
"description": "Number of days to extract from today (included)",
|
|
5498
|
+
"name": "lastndays",
|
|
5478
5499
|
"hasDynamicHelp": false,
|
|
5479
5500
|
"multiple": false,
|
|
5480
5501
|
"type": "option"
|
|
@@ -5525,13 +5546,13 @@
|
|
|
5525
5546
|
},
|
|
5526
5547
|
"hasDynamicHelp": true,
|
|
5527
5548
|
"hiddenAliases": [],
|
|
5528
|
-
"id": "hardis:org:diagnose:
|
|
5549
|
+
"id": "hardis:org:diagnose:audittrail",
|
|
5529
5550
|
"pluginAlias": "sfdx-hardis",
|
|
5530
5551
|
"pluginName": "sfdx-hardis",
|
|
5531
5552
|
"pluginType": "core",
|
|
5532
5553
|
"strict": true,
|
|
5533
5554
|
"enableJsonFlag": true,
|
|
5534
|
-
"title": "
|
|
5555
|
+
"title": "Diagnose content of Setup Audit Trail",
|
|
5535
5556
|
"requiresProject": false,
|
|
5536
5557
|
"isESM": true,
|
|
5537
5558
|
"relativePath": [
|
|
@@ -5540,37 +5561,278 @@
|
|
|
5540
5561
|
"hardis",
|
|
5541
5562
|
"org",
|
|
5542
5563
|
"diagnose",
|
|
5543
|
-
"
|
|
5564
|
+
"audittrail.js"
|
|
5544
5565
|
],
|
|
5545
5566
|
"aliasPermutations": [],
|
|
5546
5567
|
"permutations": [
|
|
5547
|
-
"hardis:org:diagnose:
|
|
5548
|
-
"org:hardis:diagnose:
|
|
5549
|
-
"org:diagnose:hardis:
|
|
5550
|
-
"org:diagnose:
|
|
5551
|
-
"hardis:diagnose:org:
|
|
5552
|
-
"diagnose:hardis:org:
|
|
5553
|
-
"diagnose:org:hardis:
|
|
5554
|
-
"diagnose:org:
|
|
5555
|
-
"hardis:diagnose:
|
|
5556
|
-
"diagnose:hardis:
|
|
5557
|
-
"diagnose:
|
|
5558
|
-
"diagnose:
|
|
5559
|
-
"hardis:org:
|
|
5560
|
-
"org:hardis:
|
|
5561
|
-
"org:
|
|
5562
|
-
"org:
|
|
5563
|
-
"hardis:
|
|
5564
|
-
"
|
|
5565
|
-
"
|
|
5566
|
-
"
|
|
5567
|
-
"hardis:
|
|
5568
|
-
"
|
|
5569
|
-
"
|
|
5570
|
-
"
|
|
5568
|
+
"hardis:org:diagnose:audittrail",
|
|
5569
|
+
"org:hardis:diagnose:audittrail",
|
|
5570
|
+
"org:diagnose:hardis:audittrail",
|
|
5571
|
+
"org:diagnose:audittrail:hardis",
|
|
5572
|
+
"hardis:diagnose:org:audittrail",
|
|
5573
|
+
"diagnose:hardis:org:audittrail",
|
|
5574
|
+
"diagnose:org:hardis:audittrail",
|
|
5575
|
+
"diagnose:org:audittrail:hardis",
|
|
5576
|
+
"hardis:diagnose:audittrail:org",
|
|
5577
|
+
"diagnose:hardis:audittrail:org",
|
|
5578
|
+
"diagnose:audittrail:hardis:org",
|
|
5579
|
+
"diagnose:audittrail:org:hardis",
|
|
5580
|
+
"hardis:org:audittrail:diagnose",
|
|
5581
|
+
"org:hardis:audittrail:diagnose",
|
|
5582
|
+
"org:audittrail:hardis:diagnose",
|
|
5583
|
+
"org:audittrail:diagnose:hardis",
|
|
5584
|
+
"hardis:audittrail:org:diagnose",
|
|
5585
|
+
"audittrail:hardis:org:diagnose",
|
|
5586
|
+
"audittrail:org:hardis:diagnose",
|
|
5587
|
+
"audittrail:org:diagnose:hardis",
|
|
5588
|
+
"hardis:audittrail:diagnose:org",
|
|
5589
|
+
"audittrail:hardis:diagnose:org",
|
|
5590
|
+
"audittrail:diagnose:hardis:org",
|
|
5591
|
+
"audittrail:diagnose:org:hardis"
|
|
5571
5592
|
]
|
|
5572
5593
|
},
|
|
5573
|
-
"hardis:org:diagnose:
|
|
5594
|
+
"hardis:org:diagnose:instanceupgrade": {
|
|
5595
|
+
"aliases": [],
|
|
5596
|
+
"args": {},
|
|
5597
|
+
"description": "Get the date when the org instance will be upgraded (to Spring, Summer or Winter)\n ",
|
|
5598
|
+
"examples": [
|
|
5599
|
+
"$ sf hardis:org:diagnose:instanceupgrade"
|
|
5600
|
+
],
|
|
5601
|
+
"flags": {
|
|
5602
|
+
"json": {
|
|
5603
|
+
"description": "Format output as json.",
|
|
5604
|
+
"helpGroup": "GLOBAL",
|
|
5605
|
+
"name": "json",
|
|
5606
|
+
"allowNo": false,
|
|
5607
|
+
"type": "boolean"
|
|
5608
|
+
},
|
|
5609
|
+
"flags-dir": {
|
|
5610
|
+
"helpGroup": "GLOBAL",
|
|
5611
|
+
"name": "flags-dir",
|
|
5612
|
+
"summary": "Import flag values from a directory.",
|
|
5613
|
+
"hasDynamicHelp": false,
|
|
5614
|
+
"multiple": false,
|
|
5615
|
+
"type": "option"
|
|
5616
|
+
},
|
|
5617
|
+
"debug": {
|
|
5618
|
+
"char": "d",
|
|
5619
|
+
"description": "Activate debug mode (more logs)",
|
|
5620
|
+
"name": "debug",
|
|
5621
|
+
"allowNo": false,
|
|
5622
|
+
"type": "boolean"
|
|
5623
|
+
},
|
|
5624
|
+
"websocket": {
|
|
5625
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5626
|
+
"name": "websocket",
|
|
5627
|
+
"hasDynamicHelp": false,
|
|
5628
|
+
"multiple": false,
|
|
5629
|
+
"type": "option"
|
|
5630
|
+
},
|
|
5631
|
+
"skipauth": {
|
|
5632
|
+
"description": "Skip authentication check when a default username is required",
|
|
5633
|
+
"name": "skipauth",
|
|
5634
|
+
"allowNo": false,
|
|
5635
|
+
"type": "boolean"
|
|
5636
|
+
},
|
|
5637
|
+
"target-org": {
|
|
5638
|
+
"aliases": [
|
|
5639
|
+
"targetusername",
|
|
5640
|
+
"u"
|
|
5641
|
+
],
|
|
5642
|
+
"char": "o",
|
|
5643
|
+
"deprecateAliases": true,
|
|
5644
|
+
"name": "target-org",
|
|
5645
|
+
"noCacheDefault": true,
|
|
5646
|
+
"required": true,
|
|
5647
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5648
|
+
"hasDynamicHelp": true,
|
|
5649
|
+
"multiple": false,
|
|
5650
|
+
"type": "option"
|
|
5651
|
+
}
|
|
5652
|
+
},
|
|
5653
|
+
"hasDynamicHelp": true,
|
|
5654
|
+
"hiddenAliases": [],
|
|
5655
|
+
"id": "hardis:org:diagnose:instanceupgrade",
|
|
5656
|
+
"pluginAlias": "sfdx-hardis",
|
|
5657
|
+
"pluginName": "sfdx-hardis",
|
|
5658
|
+
"pluginType": "core",
|
|
5659
|
+
"strict": true,
|
|
5660
|
+
"enableJsonFlag": true,
|
|
5661
|
+
"title": "Get Instance Upgrade date",
|
|
5662
|
+
"requiresProject": false,
|
|
5663
|
+
"isESM": true,
|
|
5664
|
+
"relativePath": [
|
|
5665
|
+
"lib",
|
|
5666
|
+
"commands",
|
|
5667
|
+
"hardis",
|
|
5668
|
+
"org",
|
|
5669
|
+
"diagnose",
|
|
5670
|
+
"instanceupgrade.js"
|
|
5671
|
+
],
|
|
5672
|
+
"aliasPermutations": [],
|
|
5673
|
+
"permutations": [
|
|
5674
|
+
"hardis:org:diagnose:instanceupgrade",
|
|
5675
|
+
"org:hardis:diagnose:instanceupgrade",
|
|
5676
|
+
"org:diagnose:hardis:instanceupgrade",
|
|
5677
|
+
"org:diagnose:instanceupgrade:hardis",
|
|
5678
|
+
"hardis:diagnose:org:instanceupgrade",
|
|
5679
|
+
"diagnose:hardis:org:instanceupgrade",
|
|
5680
|
+
"diagnose:org:hardis:instanceupgrade",
|
|
5681
|
+
"diagnose:org:instanceupgrade:hardis",
|
|
5682
|
+
"hardis:diagnose:instanceupgrade:org",
|
|
5683
|
+
"diagnose:hardis:instanceupgrade:org",
|
|
5684
|
+
"diagnose:instanceupgrade:hardis:org",
|
|
5685
|
+
"diagnose:instanceupgrade:org:hardis",
|
|
5686
|
+
"hardis:org:instanceupgrade:diagnose",
|
|
5687
|
+
"org:hardis:instanceupgrade:diagnose",
|
|
5688
|
+
"org:instanceupgrade:hardis:diagnose",
|
|
5689
|
+
"org:instanceupgrade:diagnose:hardis",
|
|
5690
|
+
"hardis:instanceupgrade:org:diagnose",
|
|
5691
|
+
"instanceupgrade:hardis:org:diagnose",
|
|
5692
|
+
"instanceupgrade:org:hardis:diagnose",
|
|
5693
|
+
"instanceupgrade:org:diagnose:hardis",
|
|
5694
|
+
"hardis:instanceupgrade:diagnose:org",
|
|
5695
|
+
"instanceupgrade:hardis:diagnose:org",
|
|
5696
|
+
"instanceupgrade:diagnose:hardis:org",
|
|
5697
|
+
"instanceupgrade:diagnose:org:hardis"
|
|
5698
|
+
]
|
|
5699
|
+
},
|
|
5700
|
+
"hardis:org:diagnose:legacyapi": {
|
|
5701
|
+
"aliases": [],
|
|
5702
|
+
"args": {},
|
|
5703
|
+
"description": "Checks if an org uses retired or someday retired API version\n\n\nSee article below\n\n[](https://nicolas.vuillamy.fr/handle-salesforce-api-versions-deprecation-like-a-pro-335065f52238)\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-deprecated-api-calls/) and can output Grafana, Slack and MsTeams Notifications.\n",
|
|
5704
|
+
"examples": [
|
|
5705
|
+
"$ sf hardis:org:diagnose:legacyapi",
|
|
5706
|
+
"$ sf hardis:org:diagnose:legacyapi -u hardis@myclient.com",
|
|
5707
|
+
"$ sf hardis:org:diagnose:legacyapi --outputfile 'c:/path/to/folder/legacyapi.csv'",
|
|
5708
|
+
"$ sf hardis:org:diagnose:legacyapi -u hardis@myclient.com --outputfile ./tmp/legacyapi.csv"
|
|
5709
|
+
],
|
|
5710
|
+
"flags": {
|
|
5711
|
+
"json": {
|
|
5712
|
+
"description": "Format output as json.",
|
|
5713
|
+
"helpGroup": "GLOBAL",
|
|
5714
|
+
"name": "json",
|
|
5715
|
+
"allowNo": false,
|
|
5716
|
+
"type": "boolean"
|
|
5717
|
+
},
|
|
5718
|
+
"flags-dir": {
|
|
5719
|
+
"helpGroup": "GLOBAL",
|
|
5720
|
+
"name": "flags-dir",
|
|
5721
|
+
"summary": "Import flag values from a directory.",
|
|
5722
|
+
"hasDynamicHelp": false,
|
|
5723
|
+
"multiple": false,
|
|
5724
|
+
"type": "option"
|
|
5725
|
+
},
|
|
5726
|
+
"eventtype": {
|
|
5727
|
+
"char": "e",
|
|
5728
|
+
"description": "Type of EventLogFile event to analyze",
|
|
5729
|
+
"name": "eventtype",
|
|
5730
|
+
"default": "ApiTotalUsage",
|
|
5731
|
+
"hasDynamicHelp": false,
|
|
5732
|
+
"multiple": false,
|
|
5733
|
+
"type": "option"
|
|
5734
|
+
},
|
|
5735
|
+
"limit": {
|
|
5736
|
+
"char": "l",
|
|
5737
|
+
"description": "Number of latest EventLogFile events to analyze",
|
|
5738
|
+
"name": "limit",
|
|
5739
|
+
"default": 999,
|
|
5740
|
+
"hasDynamicHelp": false,
|
|
5741
|
+
"multiple": false,
|
|
5742
|
+
"type": "option"
|
|
5743
|
+
},
|
|
5744
|
+
"outputfile": {
|
|
5745
|
+
"char": "f",
|
|
5746
|
+
"description": "Force the path and name of output report file. Must end with .csv",
|
|
5747
|
+
"name": "outputfile",
|
|
5748
|
+
"hasDynamicHelp": false,
|
|
5749
|
+
"multiple": false,
|
|
5750
|
+
"type": "option"
|
|
5751
|
+
},
|
|
5752
|
+
"debug": {
|
|
5753
|
+
"char": "d",
|
|
5754
|
+
"description": "Activate debug mode (more logs)",
|
|
5755
|
+
"name": "debug",
|
|
5756
|
+
"allowNo": false,
|
|
5757
|
+
"type": "boolean"
|
|
5758
|
+
},
|
|
5759
|
+
"websocket": {
|
|
5760
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5761
|
+
"name": "websocket",
|
|
5762
|
+
"hasDynamicHelp": false,
|
|
5763
|
+
"multiple": false,
|
|
5764
|
+
"type": "option"
|
|
5765
|
+
},
|
|
5766
|
+
"skipauth": {
|
|
5767
|
+
"description": "Skip authentication check when a default username is required",
|
|
5768
|
+
"name": "skipauth",
|
|
5769
|
+
"allowNo": false,
|
|
5770
|
+
"type": "boolean"
|
|
5771
|
+
},
|
|
5772
|
+
"target-org": {
|
|
5773
|
+
"aliases": [
|
|
5774
|
+
"targetusername",
|
|
5775
|
+
"u"
|
|
5776
|
+
],
|
|
5777
|
+
"char": "o",
|
|
5778
|
+
"deprecateAliases": true,
|
|
5779
|
+
"name": "target-org",
|
|
5780
|
+
"noCacheDefault": true,
|
|
5781
|
+
"required": true,
|
|
5782
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5783
|
+
"hasDynamicHelp": true,
|
|
5784
|
+
"multiple": false,
|
|
5785
|
+
"type": "option"
|
|
5786
|
+
}
|
|
5787
|
+
},
|
|
5788
|
+
"hasDynamicHelp": true,
|
|
5789
|
+
"hiddenAliases": [],
|
|
5790
|
+
"id": "hardis:org:diagnose:legacyapi",
|
|
5791
|
+
"pluginAlias": "sfdx-hardis",
|
|
5792
|
+
"pluginName": "sfdx-hardis",
|
|
5793
|
+
"pluginType": "core",
|
|
5794
|
+
"strict": true,
|
|
5795
|
+
"enableJsonFlag": true,
|
|
5796
|
+
"title": "Check for legacy API use",
|
|
5797
|
+
"requiresProject": false,
|
|
5798
|
+
"isESM": true,
|
|
5799
|
+
"relativePath": [
|
|
5800
|
+
"lib",
|
|
5801
|
+
"commands",
|
|
5802
|
+
"hardis",
|
|
5803
|
+
"org",
|
|
5804
|
+
"diagnose",
|
|
5805
|
+
"legacyapi.js"
|
|
5806
|
+
],
|
|
5807
|
+
"aliasPermutations": [],
|
|
5808
|
+
"permutations": [
|
|
5809
|
+
"hardis:org:diagnose:legacyapi",
|
|
5810
|
+
"org:hardis:diagnose:legacyapi",
|
|
5811
|
+
"org:diagnose:hardis:legacyapi",
|
|
5812
|
+
"org:diagnose:legacyapi:hardis",
|
|
5813
|
+
"hardis:diagnose:org:legacyapi",
|
|
5814
|
+
"diagnose:hardis:org:legacyapi",
|
|
5815
|
+
"diagnose:org:hardis:legacyapi",
|
|
5816
|
+
"diagnose:org:legacyapi:hardis",
|
|
5817
|
+
"hardis:diagnose:legacyapi:org",
|
|
5818
|
+
"diagnose:hardis:legacyapi:org",
|
|
5819
|
+
"diagnose:legacyapi:hardis:org",
|
|
5820
|
+
"diagnose:legacyapi:org:hardis",
|
|
5821
|
+
"hardis:org:legacyapi:diagnose",
|
|
5822
|
+
"org:hardis:legacyapi:diagnose",
|
|
5823
|
+
"org:legacyapi:hardis:diagnose",
|
|
5824
|
+
"org:legacyapi:diagnose:hardis",
|
|
5825
|
+
"hardis:legacyapi:org:diagnose",
|
|
5826
|
+
"legacyapi:hardis:org:diagnose",
|
|
5827
|
+
"legacyapi:org:hardis:diagnose",
|
|
5828
|
+
"legacyapi:org:diagnose:hardis",
|
|
5829
|
+
"hardis:legacyapi:diagnose:org",
|
|
5830
|
+
"legacyapi:hardis:diagnose:org",
|
|
5831
|
+
"legacyapi:diagnose:hardis:org",
|
|
5832
|
+
"legacyapi:diagnose:org:hardis"
|
|
5833
|
+
]
|
|
5834
|
+
},
|
|
5835
|
+
"hardis:org:diagnose:licenses": {
|
|
5574
5836
|
"aliases": [],
|
|
5575
5837
|
"args": {},
|
|
5576
5838
|
"description": "Mostly used for monitoring (Grafana) but you can also use it manually :)",
|
|
@@ -6345,268 +6607,6 @@
|
|
|
6345
6607
|
"unusedusers:diagnose:org:hardis"
|
|
6346
6608
|
]
|
|
6347
6609
|
},
|
|
6348
|
-
"hardis:org:files:export": {
|
|
6349
|
-
"aliases": [],
|
|
6350
|
-
"args": {},
|
|
6351
|
-
"description": "Export file attachments from a Salesforce org\n\nHandles:\n\n- ContentVersion\n- Attachment\n\nSee article below:\n\n[](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
|
|
6352
|
-
"examples": [
|
|
6353
|
-
"$ sf hardis:org:files:export"
|
|
6354
|
-
],
|
|
6355
|
-
"flags": {
|
|
6356
|
-
"json": {
|
|
6357
|
-
"description": "Format output as json.",
|
|
6358
|
-
"helpGroup": "GLOBAL",
|
|
6359
|
-
"name": "json",
|
|
6360
|
-
"allowNo": false,
|
|
6361
|
-
"type": "boolean"
|
|
6362
|
-
},
|
|
6363
|
-
"flags-dir": {
|
|
6364
|
-
"helpGroup": "GLOBAL",
|
|
6365
|
-
"name": "flags-dir",
|
|
6366
|
-
"summary": "Import flag values from a directory.",
|
|
6367
|
-
"hasDynamicHelp": false,
|
|
6368
|
-
"multiple": false,
|
|
6369
|
-
"type": "option"
|
|
6370
|
-
},
|
|
6371
|
-
"path": {
|
|
6372
|
-
"char": "p",
|
|
6373
|
-
"description": "Path to the file export project",
|
|
6374
|
-
"name": "path",
|
|
6375
|
-
"hasDynamicHelp": false,
|
|
6376
|
-
"multiple": false,
|
|
6377
|
-
"type": "option"
|
|
6378
|
-
},
|
|
6379
|
-
"chunksize": {
|
|
6380
|
-
"char": "c",
|
|
6381
|
-
"description": "Number of records to add in a chunk before it is processed",
|
|
6382
|
-
"name": "chunksize",
|
|
6383
|
-
"default": 1000,
|
|
6384
|
-
"hasDynamicHelp": false,
|
|
6385
|
-
"multiple": false,
|
|
6386
|
-
"type": "option"
|
|
6387
|
-
},
|
|
6388
|
-
"polltimeout": {
|
|
6389
|
-
"char": "t",
|
|
6390
|
-
"description": "Timeout in MS for Bulk API calls",
|
|
6391
|
-
"name": "polltimeout",
|
|
6392
|
-
"default": 300000,
|
|
6393
|
-
"hasDynamicHelp": false,
|
|
6394
|
-
"multiple": false,
|
|
6395
|
-
"type": "option"
|
|
6396
|
-
},
|
|
6397
|
-
"startchunknumber": {
|
|
6398
|
-
"char": "s",
|
|
6399
|
-
"description": "Chunk number to start from",
|
|
6400
|
-
"name": "startchunknumber",
|
|
6401
|
-
"default": 0,
|
|
6402
|
-
"hasDynamicHelp": false,
|
|
6403
|
-
"multiple": false,
|
|
6404
|
-
"type": "option"
|
|
6405
|
-
},
|
|
6406
|
-
"debug": {
|
|
6407
|
-
"char": "d",
|
|
6408
|
-
"description": "Activate debug mode (more logs)",
|
|
6409
|
-
"name": "debug",
|
|
6410
|
-
"allowNo": false,
|
|
6411
|
-
"type": "boolean"
|
|
6412
|
-
},
|
|
6413
|
-
"websocket": {
|
|
6414
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6415
|
-
"name": "websocket",
|
|
6416
|
-
"hasDynamicHelp": false,
|
|
6417
|
-
"multiple": false,
|
|
6418
|
-
"type": "option"
|
|
6419
|
-
},
|
|
6420
|
-
"skipauth": {
|
|
6421
|
-
"description": "Skip authentication check when a default username is required",
|
|
6422
|
-
"name": "skipauth",
|
|
6423
|
-
"allowNo": false,
|
|
6424
|
-
"type": "boolean"
|
|
6425
|
-
},
|
|
6426
|
-
"target-org": {
|
|
6427
|
-
"aliases": [
|
|
6428
|
-
"targetusername",
|
|
6429
|
-
"u"
|
|
6430
|
-
],
|
|
6431
|
-
"char": "o",
|
|
6432
|
-
"deprecateAliases": true,
|
|
6433
|
-
"name": "target-org",
|
|
6434
|
-
"noCacheDefault": true,
|
|
6435
|
-
"required": true,
|
|
6436
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
6437
|
-
"hasDynamicHelp": true,
|
|
6438
|
-
"multiple": false,
|
|
6439
|
-
"type": "option"
|
|
6440
|
-
}
|
|
6441
|
-
},
|
|
6442
|
-
"hasDynamicHelp": true,
|
|
6443
|
-
"hiddenAliases": [],
|
|
6444
|
-
"id": "hardis:org:files:export",
|
|
6445
|
-
"pluginAlias": "sfdx-hardis",
|
|
6446
|
-
"pluginName": "sfdx-hardis",
|
|
6447
|
-
"pluginType": "core",
|
|
6448
|
-
"strict": true,
|
|
6449
|
-
"enableJsonFlag": true,
|
|
6450
|
-
"title": "Export files",
|
|
6451
|
-
"requiresProject": false,
|
|
6452
|
-
"isESM": true,
|
|
6453
|
-
"relativePath": [
|
|
6454
|
-
"lib",
|
|
6455
|
-
"commands",
|
|
6456
|
-
"hardis",
|
|
6457
|
-
"org",
|
|
6458
|
-
"files",
|
|
6459
|
-
"export.js"
|
|
6460
|
-
],
|
|
6461
|
-
"aliasPermutations": [],
|
|
6462
|
-
"permutations": [
|
|
6463
|
-
"hardis:org:files:export",
|
|
6464
|
-
"org:hardis:files:export",
|
|
6465
|
-
"org:files:hardis:export",
|
|
6466
|
-
"org:files:export:hardis",
|
|
6467
|
-
"hardis:files:org:export",
|
|
6468
|
-
"files:hardis:org:export",
|
|
6469
|
-
"files:org:hardis:export",
|
|
6470
|
-
"files:org:export:hardis",
|
|
6471
|
-
"hardis:files:export:org",
|
|
6472
|
-
"files:hardis:export:org",
|
|
6473
|
-
"files:export:hardis:org",
|
|
6474
|
-
"files:export:org:hardis",
|
|
6475
|
-
"hardis:org:export:files",
|
|
6476
|
-
"org:hardis:export:files",
|
|
6477
|
-
"org:export:hardis:files",
|
|
6478
|
-
"org:export:files:hardis",
|
|
6479
|
-
"hardis:export:org:files",
|
|
6480
|
-
"export:hardis:org:files",
|
|
6481
|
-
"export:org:hardis:files",
|
|
6482
|
-
"export:org:files:hardis",
|
|
6483
|
-
"hardis:export:files:org",
|
|
6484
|
-
"export:hardis:files:org",
|
|
6485
|
-
"export:files:hardis:org",
|
|
6486
|
-
"export:files:org:hardis"
|
|
6487
|
-
]
|
|
6488
|
-
},
|
|
6489
|
-
"hardis:org:files:import": {
|
|
6490
|
-
"aliases": [],
|
|
6491
|
-
"args": {},
|
|
6492
|
-
"description": "Import file attachments into a Salesforce org\n\nSee article below to see how to Export them.\n\n[](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
|
|
6493
|
-
"examples": [
|
|
6494
|
-
"$ sf hardis:org:files:import"
|
|
6495
|
-
],
|
|
6496
|
-
"flags": {
|
|
6497
|
-
"json": {
|
|
6498
|
-
"description": "Format output as json.",
|
|
6499
|
-
"helpGroup": "GLOBAL",
|
|
6500
|
-
"name": "json",
|
|
6501
|
-
"allowNo": false,
|
|
6502
|
-
"type": "boolean"
|
|
6503
|
-
},
|
|
6504
|
-
"flags-dir": {
|
|
6505
|
-
"helpGroup": "GLOBAL",
|
|
6506
|
-
"name": "flags-dir",
|
|
6507
|
-
"summary": "Import flag values from a directory.",
|
|
6508
|
-
"hasDynamicHelp": false,
|
|
6509
|
-
"multiple": false,
|
|
6510
|
-
"type": "option"
|
|
6511
|
-
},
|
|
6512
|
-
"path": {
|
|
6513
|
-
"char": "p",
|
|
6514
|
-
"description": "Path to the file export project",
|
|
6515
|
-
"name": "path",
|
|
6516
|
-
"hasDynamicHelp": false,
|
|
6517
|
-
"multiple": false,
|
|
6518
|
-
"type": "option"
|
|
6519
|
-
},
|
|
6520
|
-
"overwrite": {
|
|
6521
|
-
"char": "f",
|
|
6522
|
-
"description": "Override existing files (doubles the number of API calls)",
|
|
6523
|
-
"name": "overwrite",
|
|
6524
|
-
"allowNo": false,
|
|
6525
|
-
"type": "boolean"
|
|
6526
|
-
},
|
|
6527
|
-
"debug": {
|
|
6528
|
-
"char": "d",
|
|
6529
|
-
"description": "Activate debug mode (more logs)",
|
|
6530
|
-
"name": "debug",
|
|
6531
|
-
"allowNo": false,
|
|
6532
|
-
"type": "boolean"
|
|
6533
|
-
},
|
|
6534
|
-
"websocket": {
|
|
6535
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6536
|
-
"name": "websocket",
|
|
6537
|
-
"hasDynamicHelp": false,
|
|
6538
|
-
"multiple": false,
|
|
6539
|
-
"type": "option"
|
|
6540
|
-
},
|
|
6541
|
-
"skipauth": {
|
|
6542
|
-
"description": "Skip authentication check when a default username is required",
|
|
6543
|
-
"name": "skipauth",
|
|
6544
|
-
"allowNo": false,
|
|
6545
|
-
"type": "boolean"
|
|
6546
|
-
},
|
|
6547
|
-
"target-org": {
|
|
6548
|
-
"aliases": [
|
|
6549
|
-
"targetusername",
|
|
6550
|
-
"u"
|
|
6551
|
-
],
|
|
6552
|
-
"char": "o",
|
|
6553
|
-
"deprecateAliases": true,
|
|
6554
|
-
"name": "target-org",
|
|
6555
|
-
"noCacheDefault": true,
|
|
6556
|
-
"required": true,
|
|
6557
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
6558
|
-
"hasDynamicHelp": true,
|
|
6559
|
-
"multiple": false,
|
|
6560
|
-
"type": "option"
|
|
6561
|
-
}
|
|
6562
|
-
},
|
|
6563
|
-
"hasDynamicHelp": true,
|
|
6564
|
-
"hiddenAliases": [],
|
|
6565
|
-
"id": "hardis:org:files:import",
|
|
6566
|
-
"pluginAlias": "sfdx-hardis",
|
|
6567
|
-
"pluginName": "sfdx-hardis",
|
|
6568
|
-
"pluginType": "core",
|
|
6569
|
-
"strict": true,
|
|
6570
|
-
"enableJsonFlag": true,
|
|
6571
|
-
"title": "Import files",
|
|
6572
|
-
"requiresProject": false,
|
|
6573
|
-
"isESM": true,
|
|
6574
|
-
"relativePath": [
|
|
6575
|
-
"lib",
|
|
6576
|
-
"commands",
|
|
6577
|
-
"hardis",
|
|
6578
|
-
"org",
|
|
6579
|
-
"files",
|
|
6580
|
-
"import.js"
|
|
6581
|
-
],
|
|
6582
|
-
"aliasPermutations": [],
|
|
6583
|
-
"permutations": [
|
|
6584
|
-
"hardis:org:files:import",
|
|
6585
|
-
"org:hardis:files:import",
|
|
6586
|
-
"org:files:hardis:import",
|
|
6587
|
-
"org:files:import:hardis",
|
|
6588
|
-
"hardis:files:org:import",
|
|
6589
|
-
"files:hardis:org:import",
|
|
6590
|
-
"files:org:hardis:import",
|
|
6591
|
-
"files:org:import:hardis",
|
|
6592
|
-
"hardis:files:import:org",
|
|
6593
|
-
"files:hardis:import:org",
|
|
6594
|
-
"files:import:hardis:org",
|
|
6595
|
-
"files:import:org:hardis",
|
|
6596
|
-
"hardis:org:import:files",
|
|
6597
|
-
"org:hardis:import:files",
|
|
6598
|
-
"org:import:hardis:files",
|
|
6599
|
-
"org:import:files:hardis",
|
|
6600
|
-
"hardis:import:org:files",
|
|
6601
|
-
"import:hardis:org:files",
|
|
6602
|
-
"import:org:hardis:files",
|
|
6603
|
-
"import:org:files:hardis",
|
|
6604
|
-
"hardis:import:files:org",
|
|
6605
|
-
"import:hardis:files:org",
|
|
6606
|
-
"import:files:hardis:org",
|
|
6607
|
-
"import:files:org:hardis"
|
|
6608
|
-
]
|
|
6609
|
-
},
|
|
6610
6610
|
"hardis:org:fix:listviewmine": {
|
|
6611
6611
|
"aliases": [],
|
|
6612
6612
|
"args": {},
|
|
@@ -14525,5 +14525,5 @@
|
|
|
14525
14525
|
]
|
|
14526
14526
|
}
|
|
14527
14527
|
},
|
|
14528
|
-
"version": "5.28.0"
|
|
14528
|
+
"version": "5.28.2-beta202505012337.0"
|
|
14529
14529
|
}
|