sfdx-hardis 5.36.0 → 5.36.2
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 +8 -0
- package/lib/commands/hardis/doc/project2markdown.js +13 -5
- package/lib/commands/hardis/doc/project2markdown.js.map +1 -1
- package/lib/commands/hardis/org/monitor/backup.js +14 -1
- package/lib/commands/hardis/org/monitor/backup.js.map +1 -1
- package/lib/common/docBuilder/docBuilderPackage.d.ts +2 -0
- package/lib/common/docBuilder/docBuilderPackage.js +18 -1
- package/lib/common/docBuilder/docBuilderPackage.js.map +1 -1
- package/lib/common/docBuilder/docBuilderPackageXml.js +4 -0
- package/lib/common/docBuilder/docBuilderPackageXml.js.map +1 -1
- package/lib/common/docBuilder/docBuilderRoot.js +12 -1
- package/lib/common/docBuilder/docBuilderRoot.js.map +1 -1
- package/lib/common/utils/gitUtils.d.ts +1 -0
- package/lib/common/utils/gitUtils.js +5 -0
- package/lib/common/utils/gitUtils.js.map +1 -1
- package/oclif.manifest.json +393 -393
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -5286,12 +5286,15 @@
|
|
|
5286
5286
|
"import:data:org:hardis"
|
|
5287
5287
|
]
|
|
5288
5288
|
},
|
|
5289
|
-
"hardis:org:
|
|
5289
|
+
"hardis:org:diagnose:audittrail": {
|
|
5290
5290
|
"aliases": [],
|
|
5291
5291
|
"args": {},
|
|
5292
|
-
"description": "Export
|
|
5292
|
+
"description": "Export Audit trail into a CSV file with selected criteria, and highlight suspect actions\n\nAlso detects updates of Custom Settings values (disable by defining `SKIP_AUDIT_TRAIL_CUSTOM_SETTINGS=true`)\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 - changedofflineuseroffon\n - changedprofileforuserstdtostd\n - changedprofileforuser\n - changedprofileforusercusttostd\n - changedprofileforuserstdtocust\n - changedroleforusertonone\n - changedroleforuser\n - changedroleforuserfromnone\n - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedknowledgeuseroffon\n - changedsfcontentuseroffon\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",
|
|
5293
5293
|
"examples": [
|
|
5294
|
-
"$ sf hardis:org:
|
|
5294
|
+
"$ sf hardis:org:diagnose:audittrail",
|
|
5295
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
|
|
5296
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
|
|
5297
|
+
"$ sf hardis:org:diagnose:audittrail --lastndays 5"
|
|
5295
5298
|
],
|
|
5296
5299
|
"flags": {
|
|
5297
5300
|
"json": {
|
|
@@ -5309,37 +5312,26 @@
|
|
|
5309
5312
|
"multiple": false,
|
|
5310
5313
|
"type": "option"
|
|
5311
5314
|
},
|
|
5312
|
-
"
|
|
5313
|
-
"char": "
|
|
5314
|
-
"description": "
|
|
5315
|
-
"name": "
|
|
5316
|
-
"hasDynamicHelp": false,
|
|
5317
|
-
"multiple": false,
|
|
5318
|
-
"type": "option"
|
|
5319
|
-
},
|
|
5320
|
-
"chunksize": {
|
|
5321
|
-
"char": "c",
|
|
5322
|
-
"description": "Number of records to add in a chunk before it is processed",
|
|
5323
|
-
"name": "chunksize",
|
|
5324
|
-
"default": 1000,
|
|
5315
|
+
"excludeusers": {
|
|
5316
|
+
"char": "e",
|
|
5317
|
+
"description": "Comma-separated list of usernames to exclude",
|
|
5318
|
+
"name": "excludeusers",
|
|
5325
5319
|
"hasDynamicHelp": false,
|
|
5326
5320
|
"multiple": false,
|
|
5327
5321
|
"type": "option"
|
|
5328
5322
|
},
|
|
5329
|
-
"
|
|
5323
|
+
"lastndays": {
|
|
5330
5324
|
"char": "t",
|
|
5331
|
-
"description": "
|
|
5332
|
-
"name": "
|
|
5333
|
-
"default": 300000,
|
|
5325
|
+
"description": "Number of days to extract from today (included)",
|
|
5326
|
+
"name": "lastndays",
|
|
5334
5327
|
"hasDynamicHelp": false,
|
|
5335
5328
|
"multiple": false,
|
|
5336
5329
|
"type": "option"
|
|
5337
5330
|
},
|
|
5338
|
-
"
|
|
5339
|
-
"char": "
|
|
5340
|
-
"description": "
|
|
5341
|
-
"name": "
|
|
5342
|
-
"default": 0,
|
|
5331
|
+
"outputfile": {
|
|
5332
|
+
"char": "f",
|
|
5333
|
+
"description": "Force the path and name of output report file. Must end with .csv",
|
|
5334
|
+
"name": "outputfile",
|
|
5343
5335
|
"hasDynamicHelp": false,
|
|
5344
5336
|
"multiple": false,
|
|
5345
5337
|
"type": "option"
|
|
@@ -5382,13 +5374,13 @@
|
|
|
5382
5374
|
},
|
|
5383
5375
|
"hasDynamicHelp": true,
|
|
5384
5376
|
"hiddenAliases": [],
|
|
5385
|
-
"id": "hardis:org:
|
|
5377
|
+
"id": "hardis:org:diagnose:audittrail",
|
|
5386
5378
|
"pluginAlias": "sfdx-hardis",
|
|
5387
5379
|
"pluginName": "sfdx-hardis",
|
|
5388
5380
|
"pluginType": "core",
|
|
5389
5381
|
"strict": true,
|
|
5390
5382
|
"enableJsonFlag": true,
|
|
5391
|
-
"title": "
|
|
5383
|
+
"title": "Diagnose content of Setup Audit Trail",
|
|
5392
5384
|
"requiresProject": false,
|
|
5393
5385
|
"isESM": true,
|
|
5394
5386
|
"relativePath": [
|
|
@@ -5396,43 +5388,43 @@
|
|
|
5396
5388
|
"commands",
|
|
5397
5389
|
"hardis",
|
|
5398
5390
|
"org",
|
|
5399
|
-
"
|
|
5400
|
-
"
|
|
5391
|
+
"diagnose",
|
|
5392
|
+
"audittrail.js"
|
|
5401
5393
|
],
|
|
5402
5394
|
"aliasPermutations": [],
|
|
5403
5395
|
"permutations": [
|
|
5404
|
-
"hardis:org:
|
|
5405
|
-
"org:hardis:
|
|
5406
|
-
"org:
|
|
5407
|
-
"org:
|
|
5408
|
-
"hardis:
|
|
5409
|
-
"
|
|
5410
|
-
"
|
|
5411
|
-
"
|
|
5412
|
-
"hardis:
|
|
5413
|
-
"
|
|
5414
|
-
"
|
|
5415
|
-
"
|
|
5416
|
-
"hardis:org:
|
|
5417
|
-
"org:hardis:
|
|
5418
|
-
"org:
|
|
5419
|
-
"org:
|
|
5420
|
-
"hardis:
|
|
5421
|
-
"
|
|
5422
|
-
"
|
|
5423
|
-
"
|
|
5424
|
-
"hardis:
|
|
5425
|
-
"
|
|
5426
|
-
"
|
|
5427
|
-
"
|
|
5396
|
+
"hardis:org:diagnose:audittrail",
|
|
5397
|
+
"org:hardis:diagnose:audittrail",
|
|
5398
|
+
"org:diagnose:hardis:audittrail",
|
|
5399
|
+
"org:diagnose:audittrail:hardis",
|
|
5400
|
+
"hardis:diagnose:org:audittrail",
|
|
5401
|
+
"diagnose:hardis:org:audittrail",
|
|
5402
|
+
"diagnose:org:hardis:audittrail",
|
|
5403
|
+
"diagnose:org:audittrail:hardis",
|
|
5404
|
+
"hardis:diagnose:audittrail:org",
|
|
5405
|
+
"diagnose:hardis:audittrail:org",
|
|
5406
|
+
"diagnose:audittrail:hardis:org",
|
|
5407
|
+
"diagnose:audittrail:org:hardis",
|
|
5408
|
+
"hardis:org:audittrail:diagnose",
|
|
5409
|
+
"org:hardis:audittrail:diagnose",
|
|
5410
|
+
"org:audittrail:hardis:diagnose",
|
|
5411
|
+
"org:audittrail:diagnose:hardis",
|
|
5412
|
+
"hardis:audittrail:org:diagnose",
|
|
5413
|
+
"audittrail:hardis:org:diagnose",
|
|
5414
|
+
"audittrail:org:hardis:diagnose",
|
|
5415
|
+
"audittrail:org:diagnose:hardis",
|
|
5416
|
+
"hardis:audittrail:diagnose:org",
|
|
5417
|
+
"audittrail:hardis:diagnose:org",
|
|
5418
|
+
"audittrail:diagnose:hardis:org",
|
|
5419
|
+
"audittrail:diagnose:org:hardis"
|
|
5428
5420
|
]
|
|
5429
5421
|
},
|
|
5430
|
-
"hardis:org:
|
|
5422
|
+
"hardis:org:diagnose:instanceupgrade": {
|
|
5431
5423
|
"aliases": [],
|
|
5432
5424
|
"args": {},
|
|
5433
|
-
"description": "
|
|
5425
|
+
"description": "Get the date when the org instance will be upgraded (to Spring, Summer or Winter)\n ",
|
|
5434
5426
|
"examples": [
|
|
5435
|
-
"$ sf hardis:org:
|
|
5427
|
+
"$ sf hardis:org:diagnose:instanceupgrade"
|
|
5436
5428
|
],
|
|
5437
5429
|
"flags": {
|
|
5438
5430
|
"json": {
|
|
@@ -5450,21 +5442,6 @@
|
|
|
5450
5442
|
"multiple": false,
|
|
5451
5443
|
"type": "option"
|
|
5452
5444
|
},
|
|
5453
|
-
"path": {
|
|
5454
|
-
"char": "p",
|
|
5455
|
-
"description": "Path to the file export project",
|
|
5456
|
-
"name": "path",
|
|
5457
|
-
"hasDynamicHelp": false,
|
|
5458
|
-
"multiple": false,
|
|
5459
|
-
"type": "option"
|
|
5460
|
-
},
|
|
5461
|
-
"overwrite": {
|
|
5462
|
-
"char": "f",
|
|
5463
|
-
"description": "Override existing files (doubles the number of API calls)",
|
|
5464
|
-
"name": "overwrite",
|
|
5465
|
-
"allowNo": false,
|
|
5466
|
-
"type": "boolean"
|
|
5467
|
-
},
|
|
5468
5445
|
"debug": {
|
|
5469
5446
|
"char": "d",
|
|
5470
5447
|
"description": "Activate debug mode (more logs)",
|
|
@@ -5503,13 +5480,13 @@
|
|
|
5503
5480
|
},
|
|
5504
5481
|
"hasDynamicHelp": true,
|
|
5505
5482
|
"hiddenAliases": [],
|
|
5506
|
-
"id": "hardis:org:
|
|
5483
|
+
"id": "hardis:org:diagnose:instanceupgrade",
|
|
5507
5484
|
"pluginAlias": "sfdx-hardis",
|
|
5508
5485
|
"pluginName": "sfdx-hardis",
|
|
5509
5486
|
"pluginType": "core",
|
|
5510
5487
|
"strict": true,
|
|
5511
5488
|
"enableJsonFlag": true,
|
|
5512
|
-
"title": "
|
|
5489
|
+
"title": "Get Instance Upgrade date",
|
|
5513
5490
|
"requiresProject": false,
|
|
5514
5491
|
"isESM": true,
|
|
5515
5492
|
"relativePath": [
|
|
@@ -5517,46 +5494,46 @@
|
|
|
5517
5494
|
"commands",
|
|
5518
5495
|
"hardis",
|
|
5519
5496
|
"org",
|
|
5520
|
-
"
|
|
5521
|
-
"
|
|
5497
|
+
"diagnose",
|
|
5498
|
+
"instanceupgrade.js"
|
|
5522
5499
|
],
|
|
5523
5500
|
"aliasPermutations": [],
|
|
5524
5501
|
"permutations": [
|
|
5525
|
-
"hardis:org:
|
|
5526
|
-
"org:hardis:
|
|
5527
|
-
"org:
|
|
5528
|
-
"org:
|
|
5529
|
-
"hardis:
|
|
5530
|
-
"
|
|
5531
|
-
"
|
|
5532
|
-
"
|
|
5533
|
-
"hardis:
|
|
5534
|
-
"
|
|
5535
|
-
"
|
|
5536
|
-
"
|
|
5537
|
-
"hardis:org:
|
|
5538
|
-
"org:hardis:
|
|
5539
|
-
"org:
|
|
5540
|
-
"org:
|
|
5541
|
-
"hardis:
|
|
5542
|
-
"
|
|
5543
|
-
"
|
|
5544
|
-
"
|
|
5545
|
-
"hardis:
|
|
5546
|
-
"
|
|
5547
|
-
"
|
|
5548
|
-
"
|
|
5502
|
+
"hardis:org:diagnose:instanceupgrade",
|
|
5503
|
+
"org:hardis:diagnose:instanceupgrade",
|
|
5504
|
+
"org:diagnose:hardis:instanceupgrade",
|
|
5505
|
+
"org:diagnose:instanceupgrade:hardis",
|
|
5506
|
+
"hardis:diagnose:org:instanceupgrade",
|
|
5507
|
+
"diagnose:hardis:org:instanceupgrade",
|
|
5508
|
+
"diagnose:org:hardis:instanceupgrade",
|
|
5509
|
+
"diagnose:org:instanceupgrade:hardis",
|
|
5510
|
+
"hardis:diagnose:instanceupgrade:org",
|
|
5511
|
+
"diagnose:hardis:instanceupgrade:org",
|
|
5512
|
+
"diagnose:instanceupgrade:hardis:org",
|
|
5513
|
+
"diagnose:instanceupgrade:org:hardis",
|
|
5514
|
+
"hardis:org:instanceupgrade:diagnose",
|
|
5515
|
+
"org:hardis:instanceupgrade:diagnose",
|
|
5516
|
+
"org:instanceupgrade:hardis:diagnose",
|
|
5517
|
+
"org:instanceupgrade:diagnose:hardis",
|
|
5518
|
+
"hardis:instanceupgrade:org:diagnose",
|
|
5519
|
+
"instanceupgrade:hardis:org:diagnose",
|
|
5520
|
+
"instanceupgrade:org:hardis:diagnose",
|
|
5521
|
+
"instanceupgrade:org:diagnose:hardis",
|
|
5522
|
+
"hardis:instanceupgrade:diagnose:org",
|
|
5523
|
+
"instanceupgrade:hardis:diagnose:org",
|
|
5524
|
+
"instanceupgrade:diagnose:hardis:org",
|
|
5525
|
+
"instanceupgrade:diagnose:org:hardis"
|
|
5549
5526
|
]
|
|
5550
5527
|
},
|
|
5551
|
-
"hardis:org:diagnose:
|
|
5528
|
+
"hardis:org:diagnose:legacyapi": {
|
|
5552
5529
|
"aliases": [],
|
|
5553
5530
|
"args": {},
|
|
5554
|
-
"description": "
|
|
5531
|
+
"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",
|
|
5555
5532
|
"examples": [
|
|
5556
|
-
"$ sf hardis:org:diagnose:
|
|
5557
|
-
"$ sf hardis:org:diagnose:
|
|
5558
|
-
"$ sf hardis:org:diagnose:
|
|
5559
|
-
"$ sf hardis:org:diagnose:
|
|
5533
|
+
"$ sf hardis:org:diagnose:legacyapi",
|
|
5534
|
+
"$ sf hardis:org:diagnose:legacyapi -u hardis@myclient.com",
|
|
5535
|
+
"$ sf hardis:org:diagnose:legacyapi --outputfile 'c:/path/to/folder/legacyapi.csv'",
|
|
5536
|
+
"$ sf hardis:org:diagnose:legacyapi -u hardis@myclient.com --outputfile ./tmp/legacyapi.csv"
|
|
5560
5537
|
],
|
|
5561
5538
|
"flags": {
|
|
5562
5539
|
"json": {
|
|
@@ -5574,18 +5551,20 @@
|
|
|
5574
5551
|
"multiple": false,
|
|
5575
5552
|
"type": "option"
|
|
5576
5553
|
},
|
|
5577
|
-
"
|
|
5554
|
+
"eventtype": {
|
|
5578
5555
|
"char": "e",
|
|
5579
|
-
"description": "
|
|
5580
|
-
"name": "
|
|
5556
|
+
"description": "Type of EventLogFile event to analyze",
|
|
5557
|
+
"name": "eventtype",
|
|
5558
|
+
"default": "ApiTotalUsage",
|
|
5581
5559
|
"hasDynamicHelp": false,
|
|
5582
5560
|
"multiple": false,
|
|
5583
5561
|
"type": "option"
|
|
5584
5562
|
},
|
|
5585
|
-
"
|
|
5586
|
-
"char": "
|
|
5587
|
-
"description": "Number of
|
|
5588
|
-
"name": "
|
|
5563
|
+
"limit": {
|
|
5564
|
+
"char": "l",
|
|
5565
|
+
"description": "Number of latest EventLogFile events to analyze",
|
|
5566
|
+
"name": "limit",
|
|
5567
|
+
"default": 999,
|
|
5589
5568
|
"hasDynamicHelp": false,
|
|
5590
5569
|
"multiple": false,
|
|
5591
5570
|
"type": "option"
|
|
@@ -5636,13 +5615,13 @@
|
|
|
5636
5615
|
},
|
|
5637
5616
|
"hasDynamicHelp": true,
|
|
5638
5617
|
"hiddenAliases": [],
|
|
5639
|
-
"id": "hardis:org:diagnose:
|
|
5618
|
+
"id": "hardis:org:diagnose:legacyapi",
|
|
5640
5619
|
"pluginAlias": "sfdx-hardis",
|
|
5641
5620
|
"pluginName": "sfdx-hardis",
|
|
5642
5621
|
"pluginType": "core",
|
|
5643
5622
|
"strict": true,
|
|
5644
5623
|
"enableJsonFlag": true,
|
|
5645
|
-
"title": "
|
|
5624
|
+
"title": "Check for legacy API use",
|
|
5646
5625
|
"requiresProject": false,
|
|
5647
5626
|
"isESM": true,
|
|
5648
5627
|
"relativePath": [
|
|
@@ -5651,248 +5630,7 @@
|
|
|
5651
5630
|
"hardis",
|
|
5652
5631
|
"org",
|
|
5653
5632
|
"diagnose",
|
|
5654
|
-
"
|
|
5655
|
-
],
|
|
5656
|
-
"aliasPermutations": [],
|
|
5657
|
-
"permutations": [
|
|
5658
|
-
"hardis:org:diagnose:audittrail",
|
|
5659
|
-
"org:hardis:diagnose:audittrail",
|
|
5660
|
-
"org:diagnose:hardis:audittrail",
|
|
5661
|
-
"org:diagnose:audittrail:hardis",
|
|
5662
|
-
"hardis:diagnose:org:audittrail",
|
|
5663
|
-
"diagnose:hardis:org:audittrail",
|
|
5664
|
-
"diagnose:org:hardis:audittrail",
|
|
5665
|
-
"diagnose:org:audittrail:hardis",
|
|
5666
|
-
"hardis:diagnose:audittrail:org",
|
|
5667
|
-
"diagnose:hardis:audittrail:org",
|
|
5668
|
-
"diagnose:audittrail:hardis:org",
|
|
5669
|
-
"diagnose:audittrail:org:hardis",
|
|
5670
|
-
"hardis:org:audittrail:diagnose",
|
|
5671
|
-
"org:hardis:audittrail:diagnose",
|
|
5672
|
-
"org:audittrail:hardis:diagnose",
|
|
5673
|
-
"org:audittrail:diagnose:hardis",
|
|
5674
|
-
"hardis:audittrail:org:diagnose",
|
|
5675
|
-
"audittrail:hardis:org:diagnose",
|
|
5676
|
-
"audittrail:org:hardis:diagnose",
|
|
5677
|
-
"audittrail:org:diagnose:hardis",
|
|
5678
|
-
"hardis:audittrail:diagnose:org",
|
|
5679
|
-
"audittrail:hardis:diagnose:org",
|
|
5680
|
-
"audittrail:diagnose:hardis:org",
|
|
5681
|
-
"audittrail:diagnose:org:hardis"
|
|
5682
|
-
]
|
|
5683
|
-
},
|
|
5684
|
-
"hardis:org:diagnose:instanceupgrade": {
|
|
5685
|
-
"aliases": [],
|
|
5686
|
-
"args": {},
|
|
5687
|
-
"description": "Get the date when the org instance will be upgraded (to Spring, Summer or Winter)\n ",
|
|
5688
|
-
"examples": [
|
|
5689
|
-
"$ sf hardis:org:diagnose:instanceupgrade"
|
|
5690
|
-
],
|
|
5691
|
-
"flags": {
|
|
5692
|
-
"json": {
|
|
5693
|
-
"description": "Format output as json.",
|
|
5694
|
-
"helpGroup": "GLOBAL",
|
|
5695
|
-
"name": "json",
|
|
5696
|
-
"allowNo": false,
|
|
5697
|
-
"type": "boolean"
|
|
5698
|
-
},
|
|
5699
|
-
"flags-dir": {
|
|
5700
|
-
"helpGroup": "GLOBAL",
|
|
5701
|
-
"name": "flags-dir",
|
|
5702
|
-
"summary": "Import flag values from a directory.",
|
|
5703
|
-
"hasDynamicHelp": false,
|
|
5704
|
-
"multiple": false,
|
|
5705
|
-
"type": "option"
|
|
5706
|
-
},
|
|
5707
|
-
"debug": {
|
|
5708
|
-
"char": "d",
|
|
5709
|
-
"description": "Activate debug mode (more logs)",
|
|
5710
|
-
"name": "debug",
|
|
5711
|
-
"allowNo": false,
|
|
5712
|
-
"type": "boolean"
|
|
5713
|
-
},
|
|
5714
|
-
"websocket": {
|
|
5715
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5716
|
-
"name": "websocket",
|
|
5717
|
-
"hasDynamicHelp": false,
|
|
5718
|
-
"multiple": false,
|
|
5719
|
-
"type": "option"
|
|
5720
|
-
},
|
|
5721
|
-
"skipauth": {
|
|
5722
|
-
"description": "Skip authentication check when a default username is required",
|
|
5723
|
-
"name": "skipauth",
|
|
5724
|
-
"allowNo": false,
|
|
5725
|
-
"type": "boolean"
|
|
5726
|
-
},
|
|
5727
|
-
"target-org": {
|
|
5728
|
-
"aliases": [
|
|
5729
|
-
"targetusername",
|
|
5730
|
-
"u"
|
|
5731
|
-
],
|
|
5732
|
-
"char": "o",
|
|
5733
|
-
"deprecateAliases": true,
|
|
5734
|
-
"name": "target-org",
|
|
5735
|
-
"noCacheDefault": true,
|
|
5736
|
-
"required": true,
|
|
5737
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5738
|
-
"hasDynamicHelp": true,
|
|
5739
|
-
"multiple": false,
|
|
5740
|
-
"type": "option"
|
|
5741
|
-
}
|
|
5742
|
-
},
|
|
5743
|
-
"hasDynamicHelp": true,
|
|
5744
|
-
"hiddenAliases": [],
|
|
5745
|
-
"id": "hardis:org:diagnose:instanceupgrade",
|
|
5746
|
-
"pluginAlias": "sfdx-hardis",
|
|
5747
|
-
"pluginName": "sfdx-hardis",
|
|
5748
|
-
"pluginType": "core",
|
|
5749
|
-
"strict": true,
|
|
5750
|
-
"enableJsonFlag": true,
|
|
5751
|
-
"title": "Get Instance Upgrade date",
|
|
5752
|
-
"requiresProject": false,
|
|
5753
|
-
"isESM": true,
|
|
5754
|
-
"relativePath": [
|
|
5755
|
-
"lib",
|
|
5756
|
-
"commands",
|
|
5757
|
-
"hardis",
|
|
5758
|
-
"org",
|
|
5759
|
-
"diagnose",
|
|
5760
|
-
"instanceupgrade.js"
|
|
5761
|
-
],
|
|
5762
|
-
"aliasPermutations": [],
|
|
5763
|
-
"permutations": [
|
|
5764
|
-
"hardis:org:diagnose:instanceupgrade",
|
|
5765
|
-
"org:hardis:diagnose:instanceupgrade",
|
|
5766
|
-
"org:diagnose:hardis:instanceupgrade",
|
|
5767
|
-
"org:diagnose:instanceupgrade:hardis",
|
|
5768
|
-
"hardis:diagnose:org:instanceupgrade",
|
|
5769
|
-
"diagnose:hardis:org:instanceupgrade",
|
|
5770
|
-
"diagnose:org:hardis:instanceupgrade",
|
|
5771
|
-
"diagnose:org:instanceupgrade:hardis",
|
|
5772
|
-
"hardis:diagnose:instanceupgrade:org",
|
|
5773
|
-
"diagnose:hardis:instanceupgrade:org",
|
|
5774
|
-
"diagnose:instanceupgrade:hardis:org",
|
|
5775
|
-
"diagnose:instanceupgrade:org:hardis",
|
|
5776
|
-
"hardis:org:instanceupgrade:diagnose",
|
|
5777
|
-
"org:hardis:instanceupgrade:diagnose",
|
|
5778
|
-
"org:instanceupgrade:hardis:diagnose",
|
|
5779
|
-
"org:instanceupgrade:diagnose:hardis",
|
|
5780
|
-
"hardis:instanceupgrade:org:diagnose",
|
|
5781
|
-
"instanceupgrade:hardis:org:diagnose",
|
|
5782
|
-
"instanceupgrade:org:hardis:diagnose",
|
|
5783
|
-
"instanceupgrade:org:diagnose:hardis",
|
|
5784
|
-
"hardis:instanceupgrade:diagnose:org",
|
|
5785
|
-
"instanceupgrade:hardis:diagnose:org",
|
|
5786
|
-
"instanceupgrade:diagnose:hardis:org",
|
|
5787
|
-
"instanceupgrade:diagnose:org:hardis"
|
|
5788
|
-
]
|
|
5789
|
-
},
|
|
5790
|
-
"hardis:org:diagnose:legacyapi": {
|
|
5791
|
-
"aliases": [],
|
|
5792
|
-
"args": {},
|
|
5793
|
-
"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",
|
|
5794
|
-
"examples": [
|
|
5795
|
-
"$ sf hardis:org:diagnose:legacyapi",
|
|
5796
|
-
"$ sf hardis:org:diagnose:legacyapi -u hardis@myclient.com",
|
|
5797
|
-
"$ sf hardis:org:diagnose:legacyapi --outputfile 'c:/path/to/folder/legacyapi.csv'",
|
|
5798
|
-
"$ sf hardis:org:diagnose:legacyapi -u hardis@myclient.com --outputfile ./tmp/legacyapi.csv"
|
|
5799
|
-
],
|
|
5800
|
-
"flags": {
|
|
5801
|
-
"json": {
|
|
5802
|
-
"description": "Format output as json.",
|
|
5803
|
-
"helpGroup": "GLOBAL",
|
|
5804
|
-
"name": "json",
|
|
5805
|
-
"allowNo": false,
|
|
5806
|
-
"type": "boolean"
|
|
5807
|
-
},
|
|
5808
|
-
"flags-dir": {
|
|
5809
|
-
"helpGroup": "GLOBAL",
|
|
5810
|
-
"name": "flags-dir",
|
|
5811
|
-
"summary": "Import flag values from a directory.",
|
|
5812
|
-
"hasDynamicHelp": false,
|
|
5813
|
-
"multiple": false,
|
|
5814
|
-
"type": "option"
|
|
5815
|
-
},
|
|
5816
|
-
"eventtype": {
|
|
5817
|
-
"char": "e",
|
|
5818
|
-
"description": "Type of EventLogFile event to analyze",
|
|
5819
|
-
"name": "eventtype",
|
|
5820
|
-
"default": "ApiTotalUsage",
|
|
5821
|
-
"hasDynamicHelp": false,
|
|
5822
|
-
"multiple": false,
|
|
5823
|
-
"type": "option"
|
|
5824
|
-
},
|
|
5825
|
-
"limit": {
|
|
5826
|
-
"char": "l",
|
|
5827
|
-
"description": "Number of latest EventLogFile events to analyze",
|
|
5828
|
-
"name": "limit",
|
|
5829
|
-
"default": 999,
|
|
5830
|
-
"hasDynamicHelp": false,
|
|
5831
|
-
"multiple": false,
|
|
5832
|
-
"type": "option"
|
|
5833
|
-
},
|
|
5834
|
-
"outputfile": {
|
|
5835
|
-
"char": "f",
|
|
5836
|
-
"description": "Force the path and name of output report file. Must end with .csv",
|
|
5837
|
-
"name": "outputfile",
|
|
5838
|
-
"hasDynamicHelp": false,
|
|
5839
|
-
"multiple": false,
|
|
5840
|
-
"type": "option"
|
|
5841
|
-
},
|
|
5842
|
-
"debug": {
|
|
5843
|
-
"char": "d",
|
|
5844
|
-
"description": "Activate debug mode (more logs)",
|
|
5845
|
-
"name": "debug",
|
|
5846
|
-
"allowNo": false,
|
|
5847
|
-
"type": "boolean"
|
|
5848
|
-
},
|
|
5849
|
-
"websocket": {
|
|
5850
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5851
|
-
"name": "websocket",
|
|
5852
|
-
"hasDynamicHelp": false,
|
|
5853
|
-
"multiple": false,
|
|
5854
|
-
"type": "option"
|
|
5855
|
-
},
|
|
5856
|
-
"skipauth": {
|
|
5857
|
-
"description": "Skip authentication check when a default username is required",
|
|
5858
|
-
"name": "skipauth",
|
|
5859
|
-
"allowNo": false,
|
|
5860
|
-
"type": "boolean"
|
|
5861
|
-
},
|
|
5862
|
-
"target-org": {
|
|
5863
|
-
"aliases": [
|
|
5864
|
-
"targetusername",
|
|
5865
|
-
"u"
|
|
5866
|
-
],
|
|
5867
|
-
"char": "o",
|
|
5868
|
-
"deprecateAliases": true,
|
|
5869
|
-
"name": "target-org",
|
|
5870
|
-
"noCacheDefault": true,
|
|
5871
|
-
"required": true,
|
|
5872
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5873
|
-
"hasDynamicHelp": true,
|
|
5874
|
-
"multiple": false,
|
|
5875
|
-
"type": "option"
|
|
5876
|
-
}
|
|
5877
|
-
},
|
|
5878
|
-
"hasDynamicHelp": true,
|
|
5879
|
-
"hiddenAliases": [],
|
|
5880
|
-
"id": "hardis:org:diagnose:legacyapi",
|
|
5881
|
-
"pluginAlias": "sfdx-hardis",
|
|
5882
|
-
"pluginName": "sfdx-hardis",
|
|
5883
|
-
"pluginType": "core",
|
|
5884
|
-
"strict": true,
|
|
5885
|
-
"enableJsonFlag": true,
|
|
5886
|
-
"title": "Check for legacy API use",
|
|
5887
|
-
"requiresProject": false,
|
|
5888
|
-
"isESM": true,
|
|
5889
|
-
"relativePath": [
|
|
5890
|
-
"lib",
|
|
5891
|
-
"commands",
|
|
5892
|
-
"hardis",
|
|
5893
|
-
"org",
|
|
5894
|
-
"diagnose",
|
|
5895
|
-
"legacyapi.js"
|
|
5633
|
+
"legacyapi.js"
|
|
5896
5634
|
],
|
|
5897
5635
|
"aliasPermutations": [],
|
|
5898
5636
|
"permutations": [
|
|
@@ -6697,14 +6435,12 @@
|
|
|
6697
6435
|
"unusedusers:diagnose:org:hardis"
|
|
6698
6436
|
]
|
|
6699
6437
|
},
|
|
6700
|
-
"hardis:org:
|
|
6438
|
+
"hardis:org:files:export": {
|
|
6701
6439
|
"aliases": [],
|
|
6702
6440
|
"args": {},
|
|
6703
|
-
"description": "
|
|
6441
|
+
"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",
|
|
6704
6442
|
"examples": [
|
|
6705
|
-
"$ sf hardis:org:
|
|
6706
|
-
"$ sf hardis:org:generate:packagexmlfull --outputfile /tmp/packagexmlfull.xml",
|
|
6707
|
-
"$ sf hardis:org:generate:packagexmlfull --target-org nico@example.com"
|
|
6443
|
+
"$ sf hardis:org:files:export"
|
|
6708
6444
|
],
|
|
6709
6445
|
"flags": {
|
|
6710
6446
|
"json": {
|
|
@@ -6722,9 +6458,37 @@
|
|
|
6722
6458
|
"multiple": false,
|
|
6723
6459
|
"type": "option"
|
|
6724
6460
|
},
|
|
6725
|
-
"
|
|
6726
|
-
"
|
|
6727
|
-
"
|
|
6461
|
+
"path": {
|
|
6462
|
+
"char": "p",
|
|
6463
|
+
"description": "Path to the file export project",
|
|
6464
|
+
"name": "path",
|
|
6465
|
+
"hasDynamicHelp": false,
|
|
6466
|
+
"multiple": false,
|
|
6467
|
+
"type": "option"
|
|
6468
|
+
},
|
|
6469
|
+
"chunksize": {
|
|
6470
|
+
"char": "c",
|
|
6471
|
+
"description": "Number of records to add in a chunk before it is processed",
|
|
6472
|
+
"name": "chunksize",
|
|
6473
|
+
"default": 1000,
|
|
6474
|
+
"hasDynamicHelp": false,
|
|
6475
|
+
"multiple": false,
|
|
6476
|
+
"type": "option"
|
|
6477
|
+
},
|
|
6478
|
+
"polltimeout": {
|
|
6479
|
+
"char": "t",
|
|
6480
|
+
"description": "Timeout in MS for Bulk API calls",
|
|
6481
|
+
"name": "polltimeout",
|
|
6482
|
+
"default": 300000,
|
|
6483
|
+
"hasDynamicHelp": false,
|
|
6484
|
+
"multiple": false,
|
|
6485
|
+
"type": "option"
|
|
6486
|
+
},
|
|
6487
|
+
"startchunknumber": {
|
|
6488
|
+
"char": "s",
|
|
6489
|
+
"description": "Chunk number to start from",
|
|
6490
|
+
"name": "startchunknumber",
|
|
6491
|
+
"default": 0,
|
|
6728
6492
|
"hasDynamicHelp": false,
|
|
6729
6493
|
"multiple": false,
|
|
6730
6494
|
"type": "option"
|
|
@@ -6767,13 +6531,13 @@
|
|
|
6767
6531
|
},
|
|
6768
6532
|
"hasDynamicHelp": true,
|
|
6769
6533
|
"hiddenAliases": [],
|
|
6770
|
-
"id": "hardis:org:
|
|
6534
|
+
"id": "hardis:org:files:export",
|
|
6771
6535
|
"pluginAlias": "sfdx-hardis",
|
|
6772
6536
|
"pluginName": "sfdx-hardis",
|
|
6773
6537
|
"pluginType": "core",
|
|
6774
6538
|
"strict": true,
|
|
6775
6539
|
"enableJsonFlag": true,
|
|
6776
|
-
"title": "
|
|
6540
|
+
"title": "Export files",
|
|
6777
6541
|
"requiresProject": false,
|
|
6778
6542
|
"isESM": true,
|
|
6779
6543
|
"relativePath": [
|
|
@@ -6781,35 +6545,156 @@
|
|
|
6781
6545
|
"commands",
|
|
6782
6546
|
"hardis",
|
|
6783
6547
|
"org",
|
|
6784
|
-
"
|
|
6785
|
-
"
|
|
6548
|
+
"files",
|
|
6549
|
+
"export.js"
|
|
6786
6550
|
],
|
|
6787
6551
|
"aliasPermutations": [],
|
|
6788
6552
|
"permutations": [
|
|
6789
|
-
"hardis:org:
|
|
6790
|
-
"org:hardis:
|
|
6791
|
-
"org:
|
|
6792
|
-
"org:
|
|
6793
|
-
"hardis:
|
|
6794
|
-
"
|
|
6795
|
-
"
|
|
6796
|
-
"
|
|
6797
|
-
"hardis:
|
|
6798
|
-
"
|
|
6799
|
-
"
|
|
6800
|
-
"
|
|
6801
|
-
"hardis:org:
|
|
6802
|
-
"org:hardis:
|
|
6803
|
-
"org:
|
|
6804
|
-
"org:
|
|
6805
|
-
"hardis:
|
|
6806
|
-
"
|
|
6807
|
-
"
|
|
6808
|
-
"
|
|
6809
|
-
"hardis:
|
|
6810
|
-
"
|
|
6811
|
-
"
|
|
6812
|
-
"
|
|
6553
|
+
"hardis:org:files:export",
|
|
6554
|
+
"org:hardis:files:export",
|
|
6555
|
+
"org:files:hardis:export",
|
|
6556
|
+
"org:files:export:hardis",
|
|
6557
|
+
"hardis:files:org:export",
|
|
6558
|
+
"files:hardis:org:export",
|
|
6559
|
+
"files:org:hardis:export",
|
|
6560
|
+
"files:org:export:hardis",
|
|
6561
|
+
"hardis:files:export:org",
|
|
6562
|
+
"files:hardis:export:org",
|
|
6563
|
+
"files:export:hardis:org",
|
|
6564
|
+
"files:export:org:hardis",
|
|
6565
|
+
"hardis:org:export:files",
|
|
6566
|
+
"org:hardis:export:files",
|
|
6567
|
+
"org:export:hardis:files",
|
|
6568
|
+
"org:export:files:hardis",
|
|
6569
|
+
"hardis:export:org:files",
|
|
6570
|
+
"export:hardis:org:files",
|
|
6571
|
+
"export:org:hardis:files",
|
|
6572
|
+
"export:org:files:hardis",
|
|
6573
|
+
"hardis:export:files:org",
|
|
6574
|
+
"export:hardis:files:org",
|
|
6575
|
+
"export:files:hardis:org",
|
|
6576
|
+
"export:files:org:hardis"
|
|
6577
|
+
]
|
|
6578
|
+
},
|
|
6579
|
+
"hardis:org:files:import": {
|
|
6580
|
+
"aliases": [],
|
|
6581
|
+
"args": {},
|
|
6582
|
+
"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",
|
|
6583
|
+
"examples": [
|
|
6584
|
+
"$ sf hardis:org:files:import"
|
|
6585
|
+
],
|
|
6586
|
+
"flags": {
|
|
6587
|
+
"json": {
|
|
6588
|
+
"description": "Format output as json.",
|
|
6589
|
+
"helpGroup": "GLOBAL",
|
|
6590
|
+
"name": "json",
|
|
6591
|
+
"allowNo": false,
|
|
6592
|
+
"type": "boolean"
|
|
6593
|
+
},
|
|
6594
|
+
"flags-dir": {
|
|
6595
|
+
"helpGroup": "GLOBAL",
|
|
6596
|
+
"name": "flags-dir",
|
|
6597
|
+
"summary": "Import flag values from a directory.",
|
|
6598
|
+
"hasDynamicHelp": false,
|
|
6599
|
+
"multiple": false,
|
|
6600
|
+
"type": "option"
|
|
6601
|
+
},
|
|
6602
|
+
"path": {
|
|
6603
|
+
"char": "p",
|
|
6604
|
+
"description": "Path to the file export project",
|
|
6605
|
+
"name": "path",
|
|
6606
|
+
"hasDynamicHelp": false,
|
|
6607
|
+
"multiple": false,
|
|
6608
|
+
"type": "option"
|
|
6609
|
+
},
|
|
6610
|
+
"overwrite": {
|
|
6611
|
+
"char": "f",
|
|
6612
|
+
"description": "Override existing files (doubles the number of API calls)",
|
|
6613
|
+
"name": "overwrite",
|
|
6614
|
+
"allowNo": false,
|
|
6615
|
+
"type": "boolean"
|
|
6616
|
+
},
|
|
6617
|
+
"debug": {
|
|
6618
|
+
"char": "d",
|
|
6619
|
+
"description": "Activate debug mode (more logs)",
|
|
6620
|
+
"name": "debug",
|
|
6621
|
+
"allowNo": false,
|
|
6622
|
+
"type": "boolean"
|
|
6623
|
+
},
|
|
6624
|
+
"websocket": {
|
|
6625
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6626
|
+
"name": "websocket",
|
|
6627
|
+
"hasDynamicHelp": false,
|
|
6628
|
+
"multiple": false,
|
|
6629
|
+
"type": "option"
|
|
6630
|
+
},
|
|
6631
|
+
"skipauth": {
|
|
6632
|
+
"description": "Skip authentication check when a default username is required",
|
|
6633
|
+
"name": "skipauth",
|
|
6634
|
+
"allowNo": false,
|
|
6635
|
+
"type": "boolean"
|
|
6636
|
+
},
|
|
6637
|
+
"target-org": {
|
|
6638
|
+
"aliases": [
|
|
6639
|
+
"targetusername",
|
|
6640
|
+
"u"
|
|
6641
|
+
],
|
|
6642
|
+
"char": "o",
|
|
6643
|
+
"deprecateAliases": true,
|
|
6644
|
+
"name": "target-org",
|
|
6645
|
+
"noCacheDefault": true,
|
|
6646
|
+
"required": true,
|
|
6647
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
6648
|
+
"hasDynamicHelp": true,
|
|
6649
|
+
"multiple": false,
|
|
6650
|
+
"type": "option"
|
|
6651
|
+
}
|
|
6652
|
+
},
|
|
6653
|
+
"hasDynamicHelp": true,
|
|
6654
|
+
"hiddenAliases": [],
|
|
6655
|
+
"id": "hardis:org:files:import",
|
|
6656
|
+
"pluginAlias": "sfdx-hardis",
|
|
6657
|
+
"pluginName": "sfdx-hardis",
|
|
6658
|
+
"pluginType": "core",
|
|
6659
|
+
"strict": true,
|
|
6660
|
+
"enableJsonFlag": true,
|
|
6661
|
+
"title": "Import files",
|
|
6662
|
+
"requiresProject": false,
|
|
6663
|
+
"isESM": true,
|
|
6664
|
+
"relativePath": [
|
|
6665
|
+
"lib",
|
|
6666
|
+
"commands",
|
|
6667
|
+
"hardis",
|
|
6668
|
+
"org",
|
|
6669
|
+
"files",
|
|
6670
|
+
"import.js"
|
|
6671
|
+
],
|
|
6672
|
+
"aliasPermutations": [],
|
|
6673
|
+
"permutations": [
|
|
6674
|
+
"hardis:org:files:import",
|
|
6675
|
+
"org:hardis:files:import",
|
|
6676
|
+
"org:files:hardis:import",
|
|
6677
|
+
"org:files:import:hardis",
|
|
6678
|
+
"hardis:files:org:import",
|
|
6679
|
+
"files:hardis:org:import",
|
|
6680
|
+
"files:org:hardis:import",
|
|
6681
|
+
"files:org:import:hardis",
|
|
6682
|
+
"hardis:files:import:org",
|
|
6683
|
+
"files:hardis:import:org",
|
|
6684
|
+
"files:import:hardis:org",
|
|
6685
|
+
"files:import:org:hardis",
|
|
6686
|
+
"hardis:org:import:files",
|
|
6687
|
+
"org:hardis:import:files",
|
|
6688
|
+
"org:import:hardis:files",
|
|
6689
|
+
"org:import:files:hardis",
|
|
6690
|
+
"hardis:import:org:files",
|
|
6691
|
+
"import:hardis:org:files",
|
|
6692
|
+
"import:org:hardis:files",
|
|
6693
|
+
"import:org:files:hardis",
|
|
6694
|
+
"hardis:import:files:org",
|
|
6695
|
+
"import:hardis:files:org",
|
|
6696
|
+
"import:files:hardis:org",
|
|
6697
|
+
"import:files:org:hardis"
|
|
6813
6698
|
]
|
|
6814
6699
|
},
|
|
6815
6700
|
"hardis:org:fix:listviewmine": {
|
|
@@ -6927,6 +6812,121 @@
|
|
|
6927
6812
|
"listviewmine:fix:org:hardis"
|
|
6928
6813
|
]
|
|
6929
6814
|
},
|
|
6815
|
+
"hardis:org:generate:packagexmlfull": {
|
|
6816
|
+
"aliases": [],
|
|
6817
|
+
"args": {},
|
|
6818
|
+
"description": "Generates full org package.xml, including managed items",
|
|
6819
|
+
"examples": [
|
|
6820
|
+
"$ sf hardis:org:generate:packagexmlfull",
|
|
6821
|
+
"$ sf hardis:org:generate:packagexmlfull --outputfile /tmp/packagexmlfull.xml",
|
|
6822
|
+
"$ sf hardis:org:generate:packagexmlfull --target-org nico@example.com"
|
|
6823
|
+
],
|
|
6824
|
+
"flags": {
|
|
6825
|
+
"json": {
|
|
6826
|
+
"description": "Format output as json.",
|
|
6827
|
+
"helpGroup": "GLOBAL",
|
|
6828
|
+
"name": "json",
|
|
6829
|
+
"allowNo": false,
|
|
6830
|
+
"type": "boolean"
|
|
6831
|
+
},
|
|
6832
|
+
"flags-dir": {
|
|
6833
|
+
"helpGroup": "GLOBAL",
|
|
6834
|
+
"name": "flags-dir",
|
|
6835
|
+
"summary": "Import flag values from a directory.",
|
|
6836
|
+
"hasDynamicHelp": false,
|
|
6837
|
+
"multiple": false,
|
|
6838
|
+
"type": "option"
|
|
6839
|
+
},
|
|
6840
|
+
"outputfile": {
|
|
6841
|
+
"description": "Output package.xml file",
|
|
6842
|
+
"name": "outputfile",
|
|
6843
|
+
"hasDynamicHelp": false,
|
|
6844
|
+
"multiple": false,
|
|
6845
|
+
"type": "option"
|
|
6846
|
+
},
|
|
6847
|
+
"debug": {
|
|
6848
|
+
"char": "d",
|
|
6849
|
+
"description": "Activate debug mode (more logs)",
|
|
6850
|
+
"name": "debug",
|
|
6851
|
+
"allowNo": false,
|
|
6852
|
+
"type": "boolean"
|
|
6853
|
+
},
|
|
6854
|
+
"websocket": {
|
|
6855
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6856
|
+
"name": "websocket",
|
|
6857
|
+
"hasDynamicHelp": false,
|
|
6858
|
+
"multiple": false,
|
|
6859
|
+
"type": "option"
|
|
6860
|
+
},
|
|
6861
|
+
"skipauth": {
|
|
6862
|
+
"description": "Skip authentication check when a default username is required",
|
|
6863
|
+
"name": "skipauth",
|
|
6864
|
+
"allowNo": false,
|
|
6865
|
+
"type": "boolean"
|
|
6866
|
+
},
|
|
6867
|
+
"target-org": {
|
|
6868
|
+
"aliases": [
|
|
6869
|
+
"targetusername",
|
|
6870
|
+
"u"
|
|
6871
|
+
],
|
|
6872
|
+
"char": "o",
|
|
6873
|
+
"deprecateAliases": true,
|
|
6874
|
+
"name": "target-org",
|
|
6875
|
+
"noCacheDefault": true,
|
|
6876
|
+
"required": true,
|
|
6877
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
6878
|
+
"hasDynamicHelp": true,
|
|
6879
|
+
"multiple": false,
|
|
6880
|
+
"type": "option"
|
|
6881
|
+
}
|
|
6882
|
+
},
|
|
6883
|
+
"hasDynamicHelp": true,
|
|
6884
|
+
"hiddenAliases": [],
|
|
6885
|
+
"id": "hardis:org:generate:packagexmlfull",
|
|
6886
|
+
"pluginAlias": "sfdx-hardis",
|
|
6887
|
+
"pluginName": "sfdx-hardis",
|
|
6888
|
+
"pluginType": "core",
|
|
6889
|
+
"strict": true,
|
|
6890
|
+
"enableJsonFlag": true,
|
|
6891
|
+
"title": "Generate Full Org package.xml",
|
|
6892
|
+
"requiresProject": false,
|
|
6893
|
+
"isESM": true,
|
|
6894
|
+
"relativePath": [
|
|
6895
|
+
"lib",
|
|
6896
|
+
"commands",
|
|
6897
|
+
"hardis",
|
|
6898
|
+
"org",
|
|
6899
|
+
"generate",
|
|
6900
|
+
"packagexmlfull.js"
|
|
6901
|
+
],
|
|
6902
|
+
"aliasPermutations": [],
|
|
6903
|
+
"permutations": [
|
|
6904
|
+
"hardis:org:generate:packagexmlfull",
|
|
6905
|
+
"org:hardis:generate:packagexmlfull",
|
|
6906
|
+
"org:generate:hardis:packagexmlfull",
|
|
6907
|
+
"org:generate:packagexmlfull:hardis",
|
|
6908
|
+
"hardis:generate:org:packagexmlfull",
|
|
6909
|
+
"generate:hardis:org:packagexmlfull",
|
|
6910
|
+
"generate:org:hardis:packagexmlfull",
|
|
6911
|
+
"generate:org:packagexmlfull:hardis",
|
|
6912
|
+
"hardis:generate:packagexmlfull:org",
|
|
6913
|
+
"generate:hardis:packagexmlfull:org",
|
|
6914
|
+
"generate:packagexmlfull:hardis:org",
|
|
6915
|
+
"generate:packagexmlfull:org:hardis",
|
|
6916
|
+
"hardis:org:packagexmlfull:generate",
|
|
6917
|
+
"org:hardis:packagexmlfull:generate",
|
|
6918
|
+
"org:packagexmlfull:hardis:generate",
|
|
6919
|
+
"org:packagexmlfull:generate:hardis",
|
|
6920
|
+
"hardis:packagexmlfull:org:generate",
|
|
6921
|
+
"packagexmlfull:hardis:org:generate",
|
|
6922
|
+
"packagexmlfull:org:hardis:generate",
|
|
6923
|
+
"packagexmlfull:org:generate:hardis",
|
|
6924
|
+
"hardis:packagexmlfull:generate:org",
|
|
6925
|
+
"packagexmlfull:hardis:generate:org",
|
|
6926
|
+
"packagexmlfull:generate:hardis:org",
|
|
6927
|
+
"packagexmlfull:generate:org:hardis"
|
|
6928
|
+
]
|
|
6929
|
+
},
|
|
6930
6930
|
"hardis:org:monitor:all": {
|
|
6931
6931
|
"aliases": [],
|
|
6932
6932
|
"args": {},
|
|
@@ -14615,5 +14615,5 @@
|
|
|
14615
14615
|
]
|
|
14616
14616
|
}
|
|
14617
14617
|
},
|
|
14618
|
-
"version": "5.36.
|
|
14618
|
+
"version": "5.36.2"
|
|
14619
14619
|
}
|