sfdx-hardis 5.44.2-alpha202507220958.0 → 5.44.2-alpha202507221024.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 +1 -0
- package/lib/common/utils/authUtils.js +1 -1
- package/lib/common/utils/index.js +2 -2
- package/oclif.lock +12 -1
- package/oclif.manifest.json +510 -510
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,7 @@ Note: Can be used with `sfdx plugins:install sfdx-hardis@beta` and docker image
|
|
|
9
9
|
- Generate ubuntu-based Docker images
|
|
10
10
|
- docker.io/hardisgroupcom/sfdx-hardis-ubuntu
|
|
11
11
|
- ghcr.io/hardisgroupcom/sfdx-hardis-ubuntu
|
|
12
|
+
- Display commands in blue for better readability on BitBucket
|
|
12
13
|
|
|
13
14
|
## [5.44.1] 2025-07-16
|
|
14
15
|
|
|
@@ -195,7 +195,7 @@ export async function authOrg(orgAlias, options) {
|
|
|
195
195
|
loginCommandArgs.push('--set-default');
|
|
196
196
|
}
|
|
197
197
|
const commandStr = 'sf ' + loginCommandArgs.join(' ');
|
|
198
|
-
uxLog(this, `[sfdx-hardis][command] ${c.bold(c.bgWhite(c.
|
|
198
|
+
uxLog(this, `[sfdx-hardis][command] ${c.bold(c.bgWhite(c.blue(commandStr)))}`);
|
|
199
199
|
loginResult = crossSpawn.sync('sf', loginCommandArgs, { stdio: 'inherit' });
|
|
200
200
|
}
|
|
201
201
|
// Web Login if device login not used
|
|
@@ -47,7 +47,7 @@ export function git(options = { output: false, displayCommand: true }) {
|
|
|
47
47
|
const gitArgsStr = (gitArgs || []).join(' ');
|
|
48
48
|
if (!(gitArgsStr.includes('branch -v') || gitArgsStr.includes('config --list --show-origin --null'))) {
|
|
49
49
|
if (options.displayCommand) {
|
|
50
|
-
uxLog(this, `[command] ${c.bold(c.bgWhite(c.
|
|
50
|
+
uxLog(this, `[command] ${c.bold(c.bgWhite(c.blue(command + ' ' + gitArgsStr)))}`);
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
}
|
|
@@ -537,7 +537,7 @@ export async function execCommand(command, commandThis, options = {
|
|
|
537
537
|
debug: false,
|
|
538
538
|
spinner: true,
|
|
539
539
|
}) {
|
|
540
|
-
let commandLog = `[sfdx-hardis][command] ${c.bold(c.bgWhite(c.
|
|
540
|
+
let commandLog = `[sfdx-hardis][command] ${c.bold(c.bgWhite(c.blue(command)))}`;
|
|
541
541
|
const execOptions = { maxBuffer: 10000 * 10000 };
|
|
542
542
|
if (options.cwd) {
|
|
543
543
|
execOptions.cwd = options.cwd;
|
package/oclif.lock
CHANGED
|
@@ -6723,7 +6723,7 @@ form-data@^2.5.0:
|
|
|
6723
6723
|
combined-stream "^1.0.6"
|
|
6724
6724
|
mime-types "^2.1.12"
|
|
6725
6725
|
|
|
6726
|
-
form-data@^4.0.0
|
|
6726
|
+
form-data@^4.0.0:
|
|
6727
6727
|
version "4.0.3"
|
|
6728
6728
|
resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.3.tgz#608b1b3f3e28be0fccf5901fc85fb3641e5cf0ae"
|
|
6729
6729
|
integrity sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==
|
|
@@ -6734,6 +6734,17 @@ form-data@^4.0.0, form-data@^4.0.3:
|
|
|
6734
6734
|
hasown "^2.0.2"
|
|
6735
6735
|
mime-types "^2.1.12"
|
|
6736
6736
|
|
|
6737
|
+
form-data@^4.0.4:
|
|
6738
|
+
version "4.0.4"
|
|
6739
|
+
resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz#784cdcce0669a9d68e94d11ac4eea98088edd2c4"
|
|
6740
|
+
integrity sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==
|
|
6741
|
+
dependencies:
|
|
6742
|
+
asynckit "^0.4.0"
|
|
6743
|
+
combined-stream "^1.0.8"
|
|
6744
|
+
es-set-tostringtag "^2.1.0"
|
|
6745
|
+
hasown "^2.0.2"
|
|
6746
|
+
mime-types "^2.1.12"
|
|
6747
|
+
|
|
6737
6748
|
formdata-node@^4.3.2:
|
|
6738
6749
|
version "4.4.1"
|
|
6739
6750
|
resolved "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz"
|
package/oclif.manifest.json
CHANGED
|
@@ -5476,6 +5476,121 @@
|
|
|
5476
5476
|
"import:data:org:hardis"
|
|
5477
5477
|
]
|
|
5478
5478
|
},
|
|
5479
|
+
"hardis:org:fix:listviewmine": {
|
|
5480
|
+
"aliases": [],
|
|
5481
|
+
"args": {},
|
|
5482
|
+
"description": "Fix listviews whose scope Mine has been replaced by Everything\n\n[](https://nicolas.vuillamy.fr/invalid-scope-mine-not-allowed-deploy-your-listviews-anyway-443aceca8ac7)\n\nList of ListViews can be:\n\n- read from .sfdx-hardis.yml file in property **listViewsToSetToMine**\n- sent in argument listviews\n\nNote: property **listViewsToSetToMine** can be auto-generated by command hardis:work:save if .sfdx-hardis.yml contains the following configuration\n\n```yaml\nautoCleanTypes:\n - listViewsMine\n```\n\n- Example of sfdx-hardis.yml property `listViewsToSetToMine`:\n\n```yaml\nlistViewsToSetToMine:\n - \"force-app/main/default/objects/Operation__c/listViews/MyCurrentOperations.listView-meta.xml\"\n - \"force-app/main/default/objects/Operation__c/listViews/MyFinalizedOperations.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/Default_Opportunity_Pipeline.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/MyCurrentSubscriptions.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/MySubscriptions.listView-meta.xml\"\n - \"force-app/main/default/objects/Account/listViews/MyActivePartners.listView-meta.xml\"\n```\n\n- If manually written, this could also be:\n\n```yaml\nlistViewsToSetToMine:\n - \"Operation__c:MyCurrentOperations\"\n - \"Operation__c:MyFinalizedOperations\"\n - \"Opportunity:Default_Opportunity_Pipeline\"\n - \"Opportunity:MyCurrentSubscriptions\"\n - \"Opportunity:MySubscriptions\"\n - \"Account:MyActivePartners\"\n```\n\nTroubleshooting: if you need to run this command from an alpine-linux based docker image, use this workaround in your dockerfile:\n\n```dockerfile\n# Do not use puppeteer embedded chromium\nRUN apk add --update --no-cache chromium\nENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=\"true\"\nENV CHROMIUM_PATH=\"/usr/bin/chromium-browser\"\nENV PUPPETEER_EXECUTABLE_PATH=\"$\\{CHROMIUM_PATH}\" // remove \\ before {\n```\n",
|
|
5483
|
+
"examples": [
|
|
5484
|
+
"$ sf hardis:org:fix:listviewmine",
|
|
5485
|
+
"$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
|
|
5486
|
+
],
|
|
5487
|
+
"flags": {
|
|
5488
|
+
"json": {
|
|
5489
|
+
"description": "Format output as json.",
|
|
5490
|
+
"helpGroup": "GLOBAL",
|
|
5491
|
+
"name": "json",
|
|
5492
|
+
"allowNo": false,
|
|
5493
|
+
"type": "boolean"
|
|
5494
|
+
},
|
|
5495
|
+
"flags-dir": {
|
|
5496
|
+
"helpGroup": "GLOBAL",
|
|
5497
|
+
"name": "flags-dir",
|
|
5498
|
+
"summary": "Import flag values from a directory.",
|
|
5499
|
+
"hasDynamicHelp": false,
|
|
5500
|
+
"multiple": false,
|
|
5501
|
+
"type": "option"
|
|
5502
|
+
},
|
|
5503
|
+
"listviews": {
|
|
5504
|
+
"char": "l",
|
|
5505
|
+
"description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
|
|
5506
|
+
"name": "listviews",
|
|
5507
|
+
"hasDynamicHelp": false,
|
|
5508
|
+
"multiple": false,
|
|
5509
|
+
"type": "option"
|
|
5510
|
+
},
|
|
5511
|
+
"debug": {
|
|
5512
|
+
"char": "d",
|
|
5513
|
+
"description": "Activate debug mode (more logs)",
|
|
5514
|
+
"name": "debug",
|
|
5515
|
+
"allowNo": false,
|
|
5516
|
+
"type": "boolean"
|
|
5517
|
+
},
|
|
5518
|
+
"websocket": {
|
|
5519
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5520
|
+
"name": "websocket",
|
|
5521
|
+
"hasDynamicHelp": false,
|
|
5522
|
+
"multiple": false,
|
|
5523
|
+
"type": "option"
|
|
5524
|
+
},
|
|
5525
|
+
"skipauth": {
|
|
5526
|
+
"description": "Skip authentication check when a default username is required",
|
|
5527
|
+
"name": "skipauth",
|
|
5528
|
+
"allowNo": false,
|
|
5529
|
+
"type": "boolean"
|
|
5530
|
+
},
|
|
5531
|
+
"target-org": {
|
|
5532
|
+
"aliases": [
|
|
5533
|
+
"targetusername",
|
|
5534
|
+
"u"
|
|
5535
|
+
],
|
|
5536
|
+
"char": "o",
|
|
5537
|
+
"deprecateAliases": true,
|
|
5538
|
+
"name": "target-org",
|
|
5539
|
+
"noCacheDefault": true,
|
|
5540
|
+
"required": true,
|
|
5541
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5542
|
+
"hasDynamicHelp": true,
|
|
5543
|
+
"multiple": false,
|
|
5544
|
+
"type": "option"
|
|
5545
|
+
}
|
|
5546
|
+
},
|
|
5547
|
+
"hasDynamicHelp": true,
|
|
5548
|
+
"hiddenAliases": [],
|
|
5549
|
+
"id": "hardis:org:fix:listviewmine",
|
|
5550
|
+
"pluginAlias": "sfdx-hardis",
|
|
5551
|
+
"pluginName": "sfdx-hardis",
|
|
5552
|
+
"pluginType": "core",
|
|
5553
|
+
"strict": true,
|
|
5554
|
+
"enableJsonFlag": true,
|
|
5555
|
+
"title": "Fix listviews with ",
|
|
5556
|
+
"requiresProject": true,
|
|
5557
|
+
"isESM": true,
|
|
5558
|
+
"relativePath": [
|
|
5559
|
+
"lib",
|
|
5560
|
+
"commands",
|
|
5561
|
+
"hardis",
|
|
5562
|
+
"org",
|
|
5563
|
+
"fix",
|
|
5564
|
+
"listviewmine.js"
|
|
5565
|
+
],
|
|
5566
|
+
"aliasPermutations": [],
|
|
5567
|
+
"permutations": [
|
|
5568
|
+
"hardis:org:fix:listviewmine",
|
|
5569
|
+
"org:hardis:fix:listviewmine",
|
|
5570
|
+
"org:fix:hardis:listviewmine",
|
|
5571
|
+
"org:fix:listviewmine:hardis",
|
|
5572
|
+
"hardis:fix:org:listviewmine",
|
|
5573
|
+
"fix:hardis:org:listviewmine",
|
|
5574
|
+
"fix:org:hardis:listviewmine",
|
|
5575
|
+
"fix:org:listviewmine:hardis",
|
|
5576
|
+
"hardis:fix:listviewmine:org",
|
|
5577
|
+
"fix:hardis:listviewmine:org",
|
|
5578
|
+
"fix:listviewmine:hardis:org",
|
|
5579
|
+
"fix:listviewmine:org:hardis",
|
|
5580
|
+
"hardis:org:listviewmine:fix",
|
|
5581
|
+
"org:hardis:listviewmine:fix",
|
|
5582
|
+
"org:listviewmine:hardis:fix",
|
|
5583
|
+
"org:listviewmine:fix:hardis",
|
|
5584
|
+
"hardis:listviewmine:org:fix",
|
|
5585
|
+
"listviewmine:hardis:org:fix",
|
|
5586
|
+
"listviewmine:org:hardis:fix",
|
|
5587
|
+
"listviewmine:org:fix:hardis",
|
|
5588
|
+
"hardis:listviewmine:fix:org",
|
|
5589
|
+
"listviewmine:hardis:fix:org",
|
|
5590
|
+
"listviewmine:fix:hardis:org",
|
|
5591
|
+
"listviewmine:fix:org:hardis"
|
|
5592
|
+
]
|
|
5593
|
+
},
|
|
5479
5594
|
"hardis:org:files:export": {
|
|
5480
5595
|
"aliases": [],
|
|
5481
5596
|
"args": {},
|
|
@@ -5738,6 +5853,121 @@
|
|
|
5738
5853
|
"import:files:org:hardis"
|
|
5739
5854
|
]
|
|
5740
5855
|
},
|
|
5856
|
+
"hardis:org:generate:packagexmlfull": {
|
|
5857
|
+
"aliases": [],
|
|
5858
|
+
"args": {},
|
|
5859
|
+
"description": "Generates full org package.xml, including managed items",
|
|
5860
|
+
"examples": [
|
|
5861
|
+
"$ sf hardis:org:generate:packagexmlfull",
|
|
5862
|
+
"$ sf hardis:org:generate:packagexmlfull --outputfile /tmp/packagexmlfull.xml",
|
|
5863
|
+
"$ sf hardis:org:generate:packagexmlfull --target-org nico@example.com"
|
|
5864
|
+
],
|
|
5865
|
+
"flags": {
|
|
5866
|
+
"json": {
|
|
5867
|
+
"description": "Format output as json.",
|
|
5868
|
+
"helpGroup": "GLOBAL",
|
|
5869
|
+
"name": "json",
|
|
5870
|
+
"allowNo": false,
|
|
5871
|
+
"type": "boolean"
|
|
5872
|
+
},
|
|
5873
|
+
"flags-dir": {
|
|
5874
|
+
"helpGroup": "GLOBAL",
|
|
5875
|
+
"name": "flags-dir",
|
|
5876
|
+
"summary": "Import flag values from a directory.",
|
|
5877
|
+
"hasDynamicHelp": false,
|
|
5878
|
+
"multiple": false,
|
|
5879
|
+
"type": "option"
|
|
5880
|
+
},
|
|
5881
|
+
"outputfile": {
|
|
5882
|
+
"description": "Output package.xml file",
|
|
5883
|
+
"name": "outputfile",
|
|
5884
|
+
"hasDynamicHelp": false,
|
|
5885
|
+
"multiple": false,
|
|
5886
|
+
"type": "option"
|
|
5887
|
+
},
|
|
5888
|
+
"debug": {
|
|
5889
|
+
"char": "d",
|
|
5890
|
+
"description": "Activate debug mode (more logs)",
|
|
5891
|
+
"name": "debug",
|
|
5892
|
+
"allowNo": false,
|
|
5893
|
+
"type": "boolean"
|
|
5894
|
+
},
|
|
5895
|
+
"websocket": {
|
|
5896
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5897
|
+
"name": "websocket",
|
|
5898
|
+
"hasDynamicHelp": false,
|
|
5899
|
+
"multiple": false,
|
|
5900
|
+
"type": "option"
|
|
5901
|
+
},
|
|
5902
|
+
"skipauth": {
|
|
5903
|
+
"description": "Skip authentication check when a default username is required",
|
|
5904
|
+
"name": "skipauth",
|
|
5905
|
+
"allowNo": false,
|
|
5906
|
+
"type": "boolean"
|
|
5907
|
+
},
|
|
5908
|
+
"target-org": {
|
|
5909
|
+
"aliases": [
|
|
5910
|
+
"targetusername",
|
|
5911
|
+
"u"
|
|
5912
|
+
],
|
|
5913
|
+
"char": "o",
|
|
5914
|
+
"deprecateAliases": true,
|
|
5915
|
+
"name": "target-org",
|
|
5916
|
+
"noCacheDefault": true,
|
|
5917
|
+
"required": true,
|
|
5918
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5919
|
+
"hasDynamicHelp": true,
|
|
5920
|
+
"multiple": false,
|
|
5921
|
+
"type": "option"
|
|
5922
|
+
}
|
|
5923
|
+
},
|
|
5924
|
+
"hasDynamicHelp": true,
|
|
5925
|
+
"hiddenAliases": [],
|
|
5926
|
+
"id": "hardis:org:generate:packagexmlfull",
|
|
5927
|
+
"pluginAlias": "sfdx-hardis",
|
|
5928
|
+
"pluginName": "sfdx-hardis",
|
|
5929
|
+
"pluginType": "core",
|
|
5930
|
+
"strict": true,
|
|
5931
|
+
"enableJsonFlag": true,
|
|
5932
|
+
"title": "Generate Full Org package.xml",
|
|
5933
|
+
"requiresProject": false,
|
|
5934
|
+
"isESM": true,
|
|
5935
|
+
"relativePath": [
|
|
5936
|
+
"lib",
|
|
5937
|
+
"commands",
|
|
5938
|
+
"hardis",
|
|
5939
|
+
"org",
|
|
5940
|
+
"generate",
|
|
5941
|
+
"packagexmlfull.js"
|
|
5942
|
+
],
|
|
5943
|
+
"aliasPermutations": [],
|
|
5944
|
+
"permutations": [
|
|
5945
|
+
"hardis:org:generate:packagexmlfull",
|
|
5946
|
+
"org:hardis:generate:packagexmlfull",
|
|
5947
|
+
"org:generate:hardis:packagexmlfull",
|
|
5948
|
+
"org:generate:packagexmlfull:hardis",
|
|
5949
|
+
"hardis:generate:org:packagexmlfull",
|
|
5950
|
+
"generate:hardis:org:packagexmlfull",
|
|
5951
|
+
"generate:org:hardis:packagexmlfull",
|
|
5952
|
+
"generate:org:packagexmlfull:hardis",
|
|
5953
|
+
"hardis:generate:packagexmlfull:org",
|
|
5954
|
+
"generate:hardis:packagexmlfull:org",
|
|
5955
|
+
"generate:packagexmlfull:hardis:org",
|
|
5956
|
+
"generate:packagexmlfull:org:hardis",
|
|
5957
|
+
"hardis:org:packagexmlfull:generate",
|
|
5958
|
+
"org:hardis:packagexmlfull:generate",
|
|
5959
|
+
"org:packagexmlfull:hardis:generate",
|
|
5960
|
+
"org:packagexmlfull:generate:hardis",
|
|
5961
|
+
"hardis:packagexmlfull:org:generate",
|
|
5962
|
+
"packagexmlfull:hardis:org:generate",
|
|
5963
|
+
"packagexmlfull:org:hardis:generate",
|
|
5964
|
+
"packagexmlfull:org:generate:hardis",
|
|
5965
|
+
"hardis:packagexmlfull:generate:org",
|
|
5966
|
+
"packagexmlfull:hardis:generate:org",
|
|
5967
|
+
"packagexmlfull:generate:hardis:org",
|
|
5968
|
+
"packagexmlfull:generate:org:hardis"
|
|
5969
|
+
]
|
|
5970
|
+
},
|
|
5741
5971
|
"hardis:org:diagnose:audittrail": {
|
|
5742
5972
|
"aliases": [],
|
|
5743
5973
|
"args": {},
|
|
@@ -6887,13 +7117,12 @@
|
|
|
6887
7117
|
"unusedusers:diagnose:org:hardis"
|
|
6888
7118
|
]
|
|
6889
7119
|
},
|
|
6890
|
-
"hardis:org:
|
|
7120
|
+
"hardis:org:monitor:all": {
|
|
6891
7121
|
"aliases": [],
|
|
6892
7122
|
"args": {},
|
|
6893
|
-
"description": "
|
|
7123
|
+
"description": "Monitor org, generate reports and sends notifications\n\nYou can disable some commands defining either a **monitoringDisable** property in `.sfdx-hardis.yml`, or a comma separated list in env variable **MONITORING_DISABLE**\n\nExample in .sfdx-hardis.yml:\n \n```yaml\nmonitoringDisable:\n - METADATA_STATUS\n - MISSING_ATTRIBUTES\n - UNUSED_METADATAS\n```\n \nExample in env var:\n\n```sh\nMONITORING_DISABLE=METADATA_STATUS,MISSING_ATTRIBUTES,UNUSED_METADATAS\n```\n\nA [default list of monitoring commands](https://sfdx-hardis.cloudity.com/salesforce-monitoring-home/#monitoring-commands) is used, if you want to override it you can define property **monitoringCommands** in your .sfdx-hardis.yml file\n\nExample:\n\n```yaml\nmonitoringCommands:\n - title: My Custom command\n command: sf my:custom:command\n - title: My Custom command 2\n command: sf my:other:custom:command\n```\n\nYou can force the daily run of all commands by defining env var `MONITORING_IGNORE_FREQUENCY=true`\n\nThe default list of commands is the following:\n\n| Key | Description | Command | Frequency |\n| :---: | :---- | :---- | :-----: |\n| [AUDIT_TRAIL](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/audittrail) | Detect suspect setup actions in major org | [sf hardis:org:diagnose:audittrail](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/audittrail) | daily |\n| [LEGACY_API](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/legacyapi) | Detect calls to deprecated API versions | [sf hardis:org:diagnose:legacyapi](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/legacyapi) | daily |\n| [ORG_LIMITS](https://sfdx-hardis.cloudity.com/hardis/org/monitor/limits) | Detect if org limits are close to be reached | [sf hardis:org:monitor:limits](https://sfdx-hardis.cloudity.com/hardis/org/monitor/limits) | daily |\n| [LICENSES](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/licenses) | Extract licenses information | [sf hardis:org:diagnose:licenses](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/licenses) | weekly |\n| [LINT_ACCESS](https://sfdx-hardis.cloudity.com/hardis/lint/access) | Detect custom elements with no access rights defined in permission sets | [sf hardis:lint:access](https://sfdx-hardis.cloudity.com/hardis/lint/access) | weekly |\n| [UNUSED_LICENSES](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedlicenses) | Detect permission set licenses that are assigned to users that do not need them | [sf hardis:org:diagnose:unusedlicenses](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedlicenses) | weekly |\n| [UNUSED_USERS](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedusers) | Detect active users without recent logins | [sf hardis:org:diagnose:unusedusers](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedusers) | weekly |\n| [ACTIVE_USERS](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedusers) | Detect active users with recent logins | [sf hardis:org:diagnose:unusedusers --returnactiveusers](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedusers) | weekly |\n| [ORG_INFO](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/instanceupgrade) | Get org info + SF instance info + next major upgrade date | [sf hardis:org:diagnose:instanceupgrade](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/instanceupgrade) | weekly |\n| [RELEASE_UPDATES](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/releaseupdates) | Gather warnings about incoming and overdue Release Updates | [sf hardis:org:diagnose:releaseupdates](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/releaseupdates) | weekly |\n| [UNUSED_METADATAS](https://sfdx-hardis.cloudity.com/hardis/lint/unusedmetadatas) | Detect custom labels and custom permissions that are not in use | [sf hardis:lint:unusedmetadatas](https://sfdx-hardis.cloudity.com/hardis/lint/unusedmetadatas) | weekly |\n| [UNUSED_APEX_CLASSES](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unused-apex-classes) | Detect unused Apex classes in an org | [sf hardis:org:diagnose:unused-apex-classes](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unused-apex-classes) | weekly |\n| [CONNECTED_APPS](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unused-connected-apps) | Detect unused Connected Apps in an org | [sf hardis:org:diagnose:unused-connected-apps](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unused-connected-apps) | weekly |\n| [METADATA_STATUS](https://sfdx-hardis.cloudity.com/hardis/lint/metadatastatus) | Detect inactive metadata | [sf hardis:lint:metadatastatus](https://sfdx-hardis.cloudity.com/hardis/lint/metadatastatus) | weekly |\n| [MISSING_ATTRIBUTES](https://sfdx-hardis.cloudity.com/hardis/lint/missingattributes) | Detect missing description on custom field | [sf hardis:lint:missingattributes](https://sfdx-hardis.cloudity.com/hardis/lint/missingattributes) | weekly |\n\n",
|
|
6894
7124
|
"examples": [
|
|
6895
|
-
"$ sf hardis:org:
|
|
6896
|
-
"$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
|
|
7125
|
+
"$ sf hardis:org:monitor:all"
|
|
6897
7126
|
],
|
|
6898
7127
|
"flags": {
|
|
6899
7128
|
"json": {
|
|
@@ -6911,14 +7140,6 @@
|
|
|
6911
7140
|
"multiple": false,
|
|
6912
7141
|
"type": "option"
|
|
6913
7142
|
},
|
|
6914
|
-
"listviews": {
|
|
6915
|
-
"char": "l",
|
|
6916
|
-
"description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
|
|
6917
|
-
"name": "listviews",
|
|
6918
|
-
"hasDynamicHelp": false,
|
|
6919
|
-
"multiple": false,
|
|
6920
|
-
"type": "option"
|
|
6921
|
-
},
|
|
6922
7143
|
"debug": {
|
|
6923
7144
|
"char": "d",
|
|
6924
7145
|
"description": "Activate debug mode (more logs)",
|
|
@@ -6957,228 +7178,7 @@
|
|
|
6957
7178
|
},
|
|
6958
7179
|
"hasDynamicHelp": true,
|
|
6959
7180
|
"hiddenAliases": [],
|
|
6960
|
-
"id": "hardis:org:
|
|
6961
|
-
"pluginAlias": "sfdx-hardis",
|
|
6962
|
-
"pluginName": "sfdx-hardis",
|
|
6963
|
-
"pluginType": "core",
|
|
6964
|
-
"strict": true,
|
|
6965
|
-
"enableJsonFlag": true,
|
|
6966
|
-
"title": "Fix listviews with ",
|
|
6967
|
-
"requiresProject": true,
|
|
6968
|
-
"isESM": true,
|
|
6969
|
-
"relativePath": [
|
|
6970
|
-
"lib",
|
|
6971
|
-
"commands",
|
|
6972
|
-
"hardis",
|
|
6973
|
-
"org",
|
|
6974
|
-
"fix",
|
|
6975
|
-
"listviewmine.js"
|
|
6976
|
-
],
|
|
6977
|
-
"aliasPermutations": [],
|
|
6978
|
-
"permutations": [
|
|
6979
|
-
"hardis:org:fix:listviewmine",
|
|
6980
|
-
"org:hardis:fix:listviewmine",
|
|
6981
|
-
"org:fix:hardis:listviewmine",
|
|
6982
|
-
"org:fix:listviewmine:hardis",
|
|
6983
|
-
"hardis:fix:org:listviewmine",
|
|
6984
|
-
"fix:hardis:org:listviewmine",
|
|
6985
|
-
"fix:org:hardis:listviewmine",
|
|
6986
|
-
"fix:org:listviewmine:hardis",
|
|
6987
|
-
"hardis:fix:listviewmine:org",
|
|
6988
|
-
"fix:hardis:listviewmine:org",
|
|
6989
|
-
"fix:listviewmine:hardis:org",
|
|
6990
|
-
"fix:listviewmine:org:hardis",
|
|
6991
|
-
"hardis:org:listviewmine:fix",
|
|
6992
|
-
"org:hardis:listviewmine:fix",
|
|
6993
|
-
"org:listviewmine:hardis:fix",
|
|
6994
|
-
"org:listviewmine:fix:hardis",
|
|
6995
|
-
"hardis:listviewmine:org:fix",
|
|
6996
|
-
"listviewmine:hardis:org:fix",
|
|
6997
|
-
"listviewmine:org:hardis:fix",
|
|
6998
|
-
"listviewmine:org:fix:hardis",
|
|
6999
|
-
"hardis:listviewmine:fix:org",
|
|
7000
|
-
"listviewmine:hardis:fix:org",
|
|
7001
|
-
"listviewmine:fix:hardis:org",
|
|
7002
|
-
"listviewmine:fix:org:hardis"
|
|
7003
|
-
]
|
|
7004
|
-
},
|
|
7005
|
-
"hardis:org:generate:packagexmlfull": {
|
|
7006
|
-
"aliases": [],
|
|
7007
|
-
"args": {},
|
|
7008
|
-
"description": "Generates full org package.xml, including managed items",
|
|
7009
|
-
"examples": [
|
|
7010
|
-
"$ sf hardis:org:generate:packagexmlfull",
|
|
7011
|
-
"$ sf hardis:org:generate:packagexmlfull --outputfile /tmp/packagexmlfull.xml",
|
|
7012
|
-
"$ sf hardis:org:generate:packagexmlfull --target-org nico@example.com"
|
|
7013
|
-
],
|
|
7014
|
-
"flags": {
|
|
7015
|
-
"json": {
|
|
7016
|
-
"description": "Format output as json.",
|
|
7017
|
-
"helpGroup": "GLOBAL",
|
|
7018
|
-
"name": "json",
|
|
7019
|
-
"allowNo": false,
|
|
7020
|
-
"type": "boolean"
|
|
7021
|
-
},
|
|
7022
|
-
"flags-dir": {
|
|
7023
|
-
"helpGroup": "GLOBAL",
|
|
7024
|
-
"name": "flags-dir",
|
|
7025
|
-
"summary": "Import flag values from a directory.",
|
|
7026
|
-
"hasDynamicHelp": false,
|
|
7027
|
-
"multiple": false,
|
|
7028
|
-
"type": "option"
|
|
7029
|
-
},
|
|
7030
|
-
"outputfile": {
|
|
7031
|
-
"description": "Output package.xml file",
|
|
7032
|
-
"name": "outputfile",
|
|
7033
|
-
"hasDynamicHelp": false,
|
|
7034
|
-
"multiple": false,
|
|
7035
|
-
"type": "option"
|
|
7036
|
-
},
|
|
7037
|
-
"debug": {
|
|
7038
|
-
"char": "d",
|
|
7039
|
-
"description": "Activate debug mode (more logs)",
|
|
7040
|
-
"name": "debug",
|
|
7041
|
-
"allowNo": false,
|
|
7042
|
-
"type": "boolean"
|
|
7043
|
-
},
|
|
7044
|
-
"websocket": {
|
|
7045
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
7046
|
-
"name": "websocket",
|
|
7047
|
-
"hasDynamicHelp": false,
|
|
7048
|
-
"multiple": false,
|
|
7049
|
-
"type": "option"
|
|
7050
|
-
},
|
|
7051
|
-
"skipauth": {
|
|
7052
|
-
"description": "Skip authentication check when a default username is required",
|
|
7053
|
-
"name": "skipauth",
|
|
7054
|
-
"allowNo": false,
|
|
7055
|
-
"type": "boolean"
|
|
7056
|
-
},
|
|
7057
|
-
"target-org": {
|
|
7058
|
-
"aliases": [
|
|
7059
|
-
"targetusername",
|
|
7060
|
-
"u"
|
|
7061
|
-
],
|
|
7062
|
-
"char": "o",
|
|
7063
|
-
"deprecateAliases": true,
|
|
7064
|
-
"name": "target-org",
|
|
7065
|
-
"noCacheDefault": true,
|
|
7066
|
-
"required": true,
|
|
7067
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
7068
|
-
"hasDynamicHelp": true,
|
|
7069
|
-
"multiple": false,
|
|
7070
|
-
"type": "option"
|
|
7071
|
-
}
|
|
7072
|
-
},
|
|
7073
|
-
"hasDynamicHelp": true,
|
|
7074
|
-
"hiddenAliases": [],
|
|
7075
|
-
"id": "hardis:org:generate:packagexmlfull",
|
|
7076
|
-
"pluginAlias": "sfdx-hardis",
|
|
7077
|
-
"pluginName": "sfdx-hardis",
|
|
7078
|
-
"pluginType": "core",
|
|
7079
|
-
"strict": true,
|
|
7080
|
-
"enableJsonFlag": true,
|
|
7081
|
-
"title": "Generate Full Org package.xml",
|
|
7082
|
-
"requiresProject": false,
|
|
7083
|
-
"isESM": true,
|
|
7084
|
-
"relativePath": [
|
|
7085
|
-
"lib",
|
|
7086
|
-
"commands",
|
|
7087
|
-
"hardis",
|
|
7088
|
-
"org",
|
|
7089
|
-
"generate",
|
|
7090
|
-
"packagexmlfull.js"
|
|
7091
|
-
],
|
|
7092
|
-
"aliasPermutations": [],
|
|
7093
|
-
"permutations": [
|
|
7094
|
-
"hardis:org:generate:packagexmlfull",
|
|
7095
|
-
"org:hardis:generate:packagexmlfull",
|
|
7096
|
-
"org:generate:hardis:packagexmlfull",
|
|
7097
|
-
"org:generate:packagexmlfull:hardis",
|
|
7098
|
-
"hardis:generate:org:packagexmlfull",
|
|
7099
|
-
"generate:hardis:org:packagexmlfull",
|
|
7100
|
-
"generate:org:hardis:packagexmlfull",
|
|
7101
|
-
"generate:org:packagexmlfull:hardis",
|
|
7102
|
-
"hardis:generate:packagexmlfull:org",
|
|
7103
|
-
"generate:hardis:packagexmlfull:org",
|
|
7104
|
-
"generate:packagexmlfull:hardis:org",
|
|
7105
|
-
"generate:packagexmlfull:org:hardis",
|
|
7106
|
-
"hardis:org:packagexmlfull:generate",
|
|
7107
|
-
"org:hardis:packagexmlfull:generate",
|
|
7108
|
-
"org:packagexmlfull:hardis:generate",
|
|
7109
|
-
"org:packagexmlfull:generate:hardis",
|
|
7110
|
-
"hardis:packagexmlfull:org:generate",
|
|
7111
|
-
"packagexmlfull:hardis:org:generate",
|
|
7112
|
-
"packagexmlfull:org:hardis:generate",
|
|
7113
|
-
"packagexmlfull:org:generate:hardis",
|
|
7114
|
-
"hardis:packagexmlfull:generate:org",
|
|
7115
|
-
"packagexmlfull:hardis:generate:org",
|
|
7116
|
-
"packagexmlfull:generate:hardis:org",
|
|
7117
|
-
"packagexmlfull:generate:org:hardis"
|
|
7118
|
-
]
|
|
7119
|
-
},
|
|
7120
|
-
"hardis:org:monitor:all": {
|
|
7121
|
-
"aliases": [],
|
|
7122
|
-
"args": {},
|
|
7123
|
-
"description": "Monitor org, generate reports and sends notifications\n\nYou can disable some commands defining either a **monitoringDisable** property in `.sfdx-hardis.yml`, or a comma separated list in env variable **MONITORING_DISABLE**\n\nExample in .sfdx-hardis.yml:\n \n```yaml\nmonitoringDisable:\n - METADATA_STATUS\n - MISSING_ATTRIBUTES\n - UNUSED_METADATAS\n```\n \nExample in env var:\n\n```sh\nMONITORING_DISABLE=METADATA_STATUS,MISSING_ATTRIBUTES,UNUSED_METADATAS\n```\n\nA [default list of monitoring commands](https://sfdx-hardis.cloudity.com/salesforce-monitoring-home/#monitoring-commands) is used, if you want to override it you can define property **monitoringCommands** in your .sfdx-hardis.yml file\n\nExample:\n\n```yaml\nmonitoringCommands:\n - title: My Custom command\n command: sf my:custom:command\n - title: My Custom command 2\n command: sf my:other:custom:command\n```\n\nYou can force the daily run of all commands by defining env var `MONITORING_IGNORE_FREQUENCY=true`\n\nThe default list of commands is the following:\n\n| Key | Description | Command | Frequency |\n| :---: | :---- | :---- | :-----: |\n| [AUDIT_TRAIL](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/audittrail) | Detect suspect setup actions in major org | [sf hardis:org:diagnose:audittrail](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/audittrail) | daily |\n| [LEGACY_API](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/legacyapi) | Detect calls to deprecated API versions | [sf hardis:org:diagnose:legacyapi](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/legacyapi) | daily |\n| [ORG_LIMITS](https://sfdx-hardis.cloudity.com/hardis/org/monitor/limits) | Detect if org limits are close to be reached | [sf hardis:org:monitor:limits](https://sfdx-hardis.cloudity.com/hardis/org/monitor/limits) | daily |\n| [LICENSES](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/licenses) | Extract licenses information | [sf hardis:org:diagnose:licenses](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/licenses) | weekly |\n| [LINT_ACCESS](https://sfdx-hardis.cloudity.com/hardis/lint/access) | Detect custom elements with no access rights defined in permission sets | [sf hardis:lint:access](https://sfdx-hardis.cloudity.com/hardis/lint/access) | weekly |\n| [UNUSED_LICENSES](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedlicenses) | Detect permission set licenses that are assigned to users that do not need them | [sf hardis:org:diagnose:unusedlicenses](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedlicenses) | weekly |\n| [UNUSED_USERS](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedusers) | Detect active users without recent logins | [sf hardis:org:diagnose:unusedusers](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedusers) | weekly |\n| [ACTIVE_USERS](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedusers) | Detect active users with recent logins | [sf hardis:org:diagnose:unusedusers --returnactiveusers](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unusedusers) | weekly |\n| [ORG_INFO](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/instanceupgrade) | Get org info + SF instance info + next major upgrade date | [sf hardis:org:diagnose:instanceupgrade](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/instanceupgrade) | weekly |\n| [RELEASE_UPDATES](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/releaseupdates) | Gather warnings about incoming and overdue Release Updates | [sf hardis:org:diagnose:releaseupdates](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/releaseupdates) | weekly |\n| [UNUSED_METADATAS](https://sfdx-hardis.cloudity.com/hardis/lint/unusedmetadatas) | Detect custom labels and custom permissions that are not in use | [sf hardis:lint:unusedmetadatas](https://sfdx-hardis.cloudity.com/hardis/lint/unusedmetadatas) | weekly |\n| [UNUSED_APEX_CLASSES](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unused-apex-classes) | Detect unused Apex classes in an org | [sf hardis:org:diagnose:unused-apex-classes](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unused-apex-classes) | weekly |\n| [CONNECTED_APPS](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unused-connected-apps) | Detect unused Connected Apps in an org | [sf hardis:org:diagnose:unused-connected-apps](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unused-connected-apps) | weekly |\n| [METADATA_STATUS](https://sfdx-hardis.cloudity.com/hardis/lint/metadatastatus) | Detect inactive metadata | [sf hardis:lint:metadatastatus](https://sfdx-hardis.cloudity.com/hardis/lint/metadatastatus) | weekly |\n| [MISSING_ATTRIBUTES](https://sfdx-hardis.cloudity.com/hardis/lint/missingattributes) | Detect missing description on custom field | [sf hardis:lint:missingattributes](https://sfdx-hardis.cloudity.com/hardis/lint/missingattributes) | weekly |\n\n",
|
|
7124
|
-
"examples": [
|
|
7125
|
-
"$ sf hardis:org:monitor:all"
|
|
7126
|
-
],
|
|
7127
|
-
"flags": {
|
|
7128
|
-
"json": {
|
|
7129
|
-
"description": "Format output as json.",
|
|
7130
|
-
"helpGroup": "GLOBAL",
|
|
7131
|
-
"name": "json",
|
|
7132
|
-
"allowNo": false,
|
|
7133
|
-
"type": "boolean"
|
|
7134
|
-
},
|
|
7135
|
-
"flags-dir": {
|
|
7136
|
-
"helpGroup": "GLOBAL",
|
|
7137
|
-
"name": "flags-dir",
|
|
7138
|
-
"summary": "Import flag values from a directory.",
|
|
7139
|
-
"hasDynamicHelp": false,
|
|
7140
|
-
"multiple": false,
|
|
7141
|
-
"type": "option"
|
|
7142
|
-
},
|
|
7143
|
-
"debug": {
|
|
7144
|
-
"char": "d",
|
|
7145
|
-
"description": "Activate debug mode (more logs)",
|
|
7146
|
-
"name": "debug",
|
|
7147
|
-
"allowNo": false,
|
|
7148
|
-
"type": "boolean"
|
|
7149
|
-
},
|
|
7150
|
-
"websocket": {
|
|
7151
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
7152
|
-
"name": "websocket",
|
|
7153
|
-
"hasDynamicHelp": false,
|
|
7154
|
-
"multiple": false,
|
|
7155
|
-
"type": "option"
|
|
7156
|
-
},
|
|
7157
|
-
"skipauth": {
|
|
7158
|
-
"description": "Skip authentication check when a default username is required",
|
|
7159
|
-
"name": "skipauth",
|
|
7160
|
-
"allowNo": false,
|
|
7161
|
-
"type": "boolean"
|
|
7162
|
-
},
|
|
7163
|
-
"target-org": {
|
|
7164
|
-
"aliases": [
|
|
7165
|
-
"targetusername",
|
|
7166
|
-
"u"
|
|
7167
|
-
],
|
|
7168
|
-
"char": "o",
|
|
7169
|
-
"deprecateAliases": true,
|
|
7170
|
-
"name": "target-org",
|
|
7171
|
-
"noCacheDefault": true,
|
|
7172
|
-
"required": true,
|
|
7173
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
7174
|
-
"hasDynamicHelp": true,
|
|
7175
|
-
"multiple": false,
|
|
7176
|
-
"type": "option"
|
|
7177
|
-
}
|
|
7178
|
-
},
|
|
7179
|
-
"hasDynamicHelp": true,
|
|
7180
|
-
"hiddenAliases": [],
|
|
7181
|
-
"id": "hardis:org:monitor:all",
|
|
7181
|
+
"id": "hardis:org:monitor:all",
|
|
7182
7182
|
"pluginAlias": "sfdx-hardis",
|
|
7183
7183
|
"pluginName": "sfdx-hardis",
|
|
7184
7184
|
"pluginType": "core",
|
|
@@ -7967,14 +7967,12 @@
|
|
|
7967
7967
|
"packageconfig:retrieve:org:hardis"
|
|
7968
7968
|
]
|
|
7969
7969
|
},
|
|
7970
|
-
"hardis:org:
|
|
7970
|
+
"hardis:org:test:apex": {
|
|
7971
7971
|
"aliases": [],
|
|
7972
7972
|
"args": {},
|
|
7973
|
-
"description": "
|
|
7973
|
+
"description": "Run apex tests in Salesforce org\n\nIf following configuration is defined, it will fail if apex coverage target is not reached:\n\n- Env `APEX_TESTS_MIN_COVERAGE_ORG_WIDE` or `.sfdx-hardis` property `apexTestsMinCoverageOrgWide`\n- Env `APEX_TESTS_MIN_COVERAGE_ORG_WIDE` or `.sfdx-hardis` property `apexTestsMinCoverageOrgWide`\n\nYou can override env var SFDX_TEST_WAIT_MINUTES to wait more than 60 minutes.\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-apex-tests/) and can output Grafana, Slack and MsTeams Notifications.\n",
|
|
7974
7974
|
"examples": [
|
|
7975
|
-
"$ sf hardis:org:
|
|
7976
|
-
"$ sf hardis:org:user:activateinvalid --target-org my-user@myorg.com",
|
|
7977
|
-
"$ sf hardis:org:user:activateinvalid --profiles 'System Administrator,MyCustomProfile' --target-org my-user@myorg.com"
|
|
7975
|
+
"$ sf hardis:org:test:apex"
|
|
7978
7976
|
],
|
|
7979
7977
|
"flags": {
|
|
7980
7978
|
"json": {
|
|
@@ -7992,12 +7990,19 @@
|
|
|
7992
7990
|
"multiple": false,
|
|
7993
7991
|
"type": "option"
|
|
7994
7992
|
},
|
|
7995
|
-
"
|
|
7996
|
-
"char": "
|
|
7997
|
-
"description": "
|
|
7998
|
-
"name": "
|
|
7993
|
+
"testlevel": {
|
|
7994
|
+
"char": "l",
|
|
7995
|
+
"description": "Level of tests to apply to validate deployment",
|
|
7996
|
+
"name": "testlevel",
|
|
7997
|
+
"default": "RunLocalTests",
|
|
7999
7998
|
"hasDynamicHelp": false,
|
|
8000
7999
|
"multiple": false,
|
|
8000
|
+
"options": [
|
|
8001
|
+
"NoTestRun",
|
|
8002
|
+
"RunSpecifiedTests",
|
|
8003
|
+
"RunLocalTests",
|
|
8004
|
+
"RunAllTestsInOrg"
|
|
8005
|
+
],
|
|
8001
8006
|
"type": "option"
|
|
8002
8007
|
},
|
|
8003
8008
|
"debug": {
|
|
@@ -8038,37 +8043,152 @@
|
|
|
8038
8043
|
},
|
|
8039
8044
|
"hasDynamicHelp": true,
|
|
8040
8045
|
"hiddenAliases": [],
|
|
8041
|
-
"id": "hardis:org:
|
|
8046
|
+
"id": "hardis:org:test:apex",
|
|
8042
8047
|
"pluginAlias": "sfdx-hardis",
|
|
8043
8048
|
"pluginName": "sfdx-hardis",
|
|
8044
8049
|
"pluginType": "core",
|
|
8045
8050
|
"strict": true,
|
|
8046
8051
|
"enableJsonFlag": true,
|
|
8047
|
-
"title": "
|
|
8048
|
-
"requiresProject": false,
|
|
8052
|
+
"title": "Run apex tests",
|
|
8049
8053
|
"isESM": true,
|
|
8050
8054
|
"relativePath": [
|
|
8051
8055
|
"lib",
|
|
8052
8056
|
"commands",
|
|
8053
8057
|
"hardis",
|
|
8054
8058
|
"org",
|
|
8055
|
-
"
|
|
8056
|
-
"
|
|
8059
|
+
"test",
|
|
8060
|
+
"apex.js"
|
|
8057
8061
|
],
|
|
8058
8062
|
"aliasPermutations": [],
|
|
8059
8063
|
"permutations": [
|
|
8060
|
-
"hardis:org:
|
|
8061
|
-
"org:hardis:
|
|
8062
|
-
"org:
|
|
8063
|
-
"org:
|
|
8064
|
-
"hardis:
|
|
8065
|
-
"
|
|
8066
|
-
"
|
|
8067
|
-
"
|
|
8068
|
-
"hardis:
|
|
8069
|
-
"
|
|
8070
|
-
"
|
|
8071
|
-
"
|
|
8064
|
+
"hardis:org:test:apex",
|
|
8065
|
+
"org:hardis:test:apex",
|
|
8066
|
+
"org:test:hardis:apex",
|
|
8067
|
+
"org:test:apex:hardis",
|
|
8068
|
+
"hardis:test:org:apex",
|
|
8069
|
+
"test:hardis:org:apex",
|
|
8070
|
+
"test:org:hardis:apex",
|
|
8071
|
+
"test:org:apex:hardis",
|
|
8072
|
+
"hardis:test:apex:org",
|
|
8073
|
+
"test:hardis:apex:org",
|
|
8074
|
+
"test:apex:hardis:org",
|
|
8075
|
+
"test:apex:org:hardis",
|
|
8076
|
+
"hardis:org:apex:test",
|
|
8077
|
+
"org:hardis:apex:test",
|
|
8078
|
+
"org:apex:hardis:test",
|
|
8079
|
+
"org:apex:test:hardis",
|
|
8080
|
+
"hardis:apex:org:test",
|
|
8081
|
+
"apex:hardis:org:test",
|
|
8082
|
+
"apex:org:hardis:test",
|
|
8083
|
+
"apex:org:test:hardis",
|
|
8084
|
+
"hardis:apex:test:org",
|
|
8085
|
+
"apex:hardis:test:org",
|
|
8086
|
+
"apex:test:hardis:org",
|
|
8087
|
+
"apex:test:org:hardis"
|
|
8088
|
+
]
|
|
8089
|
+
},
|
|
8090
|
+
"hardis:org:user:activateinvalid": {
|
|
8091
|
+
"aliases": [],
|
|
8092
|
+
"args": {},
|
|
8093
|
+
"description": "Update sandbox users so their email is valid\n\n Example: replaces `toto@company.com.dev.invalid` with `toto@company.com.dev.invalid`\n\nSee article below\n\n[](https://nicolas.vuillamy.fr/reactivate-all-the-sandbox-users-with-invalid-emails-in-3-clicks-2265af4e3a3d)\n",
|
|
8094
|
+
"examples": [
|
|
8095
|
+
"$ sf hardis:org:user:activateinvalid",
|
|
8096
|
+
"$ sf hardis:org:user:activateinvalid --target-org my-user@myorg.com",
|
|
8097
|
+
"$ sf hardis:org:user:activateinvalid --profiles 'System Administrator,MyCustomProfile' --target-org my-user@myorg.com"
|
|
8098
|
+
],
|
|
8099
|
+
"flags": {
|
|
8100
|
+
"json": {
|
|
8101
|
+
"description": "Format output as json.",
|
|
8102
|
+
"helpGroup": "GLOBAL",
|
|
8103
|
+
"name": "json",
|
|
8104
|
+
"allowNo": false,
|
|
8105
|
+
"type": "boolean"
|
|
8106
|
+
},
|
|
8107
|
+
"flags-dir": {
|
|
8108
|
+
"helpGroup": "GLOBAL",
|
|
8109
|
+
"name": "flags-dir",
|
|
8110
|
+
"summary": "Import flag values from a directory.",
|
|
8111
|
+
"hasDynamicHelp": false,
|
|
8112
|
+
"multiple": false,
|
|
8113
|
+
"type": "option"
|
|
8114
|
+
},
|
|
8115
|
+
"profiles": {
|
|
8116
|
+
"char": "p",
|
|
8117
|
+
"description": "Comma-separated list of profiles names that you want to reactive users assigned to and with a .invalid email",
|
|
8118
|
+
"name": "profiles",
|
|
8119
|
+
"hasDynamicHelp": false,
|
|
8120
|
+
"multiple": false,
|
|
8121
|
+
"type": "option"
|
|
8122
|
+
},
|
|
8123
|
+
"debug": {
|
|
8124
|
+
"char": "d",
|
|
8125
|
+
"description": "Activate debug mode (more logs)",
|
|
8126
|
+
"name": "debug",
|
|
8127
|
+
"allowNo": false,
|
|
8128
|
+
"type": "boolean"
|
|
8129
|
+
},
|
|
8130
|
+
"websocket": {
|
|
8131
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
8132
|
+
"name": "websocket",
|
|
8133
|
+
"hasDynamicHelp": false,
|
|
8134
|
+
"multiple": false,
|
|
8135
|
+
"type": "option"
|
|
8136
|
+
},
|
|
8137
|
+
"skipauth": {
|
|
8138
|
+
"description": "Skip authentication check when a default username is required",
|
|
8139
|
+
"name": "skipauth",
|
|
8140
|
+
"allowNo": false,
|
|
8141
|
+
"type": "boolean"
|
|
8142
|
+
},
|
|
8143
|
+
"target-org": {
|
|
8144
|
+
"aliases": [
|
|
8145
|
+
"targetusername",
|
|
8146
|
+
"u"
|
|
8147
|
+
],
|
|
8148
|
+
"char": "o",
|
|
8149
|
+
"deprecateAliases": true,
|
|
8150
|
+
"name": "target-org",
|
|
8151
|
+
"noCacheDefault": true,
|
|
8152
|
+
"required": true,
|
|
8153
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
8154
|
+
"hasDynamicHelp": true,
|
|
8155
|
+
"multiple": false,
|
|
8156
|
+
"type": "option"
|
|
8157
|
+
}
|
|
8158
|
+
},
|
|
8159
|
+
"hasDynamicHelp": true,
|
|
8160
|
+
"hiddenAliases": [],
|
|
8161
|
+
"id": "hardis:org:user:activateinvalid",
|
|
8162
|
+
"pluginAlias": "sfdx-hardis",
|
|
8163
|
+
"pluginName": "sfdx-hardis",
|
|
8164
|
+
"pluginType": "core",
|
|
8165
|
+
"strict": true,
|
|
8166
|
+
"enableJsonFlag": true,
|
|
8167
|
+
"title": "Reactivate sandbox invalid users",
|
|
8168
|
+
"requiresProject": false,
|
|
8169
|
+
"isESM": true,
|
|
8170
|
+
"relativePath": [
|
|
8171
|
+
"lib",
|
|
8172
|
+
"commands",
|
|
8173
|
+
"hardis",
|
|
8174
|
+
"org",
|
|
8175
|
+
"user",
|
|
8176
|
+
"activateinvalid.js"
|
|
8177
|
+
],
|
|
8178
|
+
"aliasPermutations": [],
|
|
8179
|
+
"permutations": [
|
|
8180
|
+
"hardis:org:user:activateinvalid",
|
|
8181
|
+
"org:hardis:user:activateinvalid",
|
|
8182
|
+
"org:user:hardis:activateinvalid",
|
|
8183
|
+
"org:user:activateinvalid:hardis",
|
|
8184
|
+
"hardis:user:org:activateinvalid",
|
|
8185
|
+
"user:hardis:org:activateinvalid",
|
|
8186
|
+
"user:org:hardis:activateinvalid",
|
|
8187
|
+
"user:org:activateinvalid:hardis",
|
|
8188
|
+
"hardis:user:activateinvalid:org",
|
|
8189
|
+
"user:hardis:activateinvalid:org",
|
|
8190
|
+
"user:activateinvalid:hardis:org",
|
|
8191
|
+
"user:activateinvalid:org:hardis",
|
|
8072
8192
|
"hardis:org:activateinvalid:user",
|
|
8073
8193
|
"org:hardis:activateinvalid:user",
|
|
8074
8194
|
"org:activateinvalid:hardis:user",
|
|
@@ -8367,126 +8487,6 @@
|
|
|
8367
8487
|
"unfreeze:user:org:hardis"
|
|
8368
8488
|
]
|
|
8369
8489
|
},
|
|
8370
|
-
"hardis:org:test:apex": {
|
|
8371
|
-
"aliases": [],
|
|
8372
|
-
"args": {},
|
|
8373
|
-
"description": "Run apex tests in Salesforce org\n\nIf following configuration is defined, it will fail if apex coverage target is not reached:\n\n- Env `APEX_TESTS_MIN_COVERAGE_ORG_WIDE` or `.sfdx-hardis` property `apexTestsMinCoverageOrgWide`\n- Env `APEX_TESTS_MIN_COVERAGE_ORG_WIDE` or `.sfdx-hardis` property `apexTestsMinCoverageOrgWide`\n\nYou can override env var SFDX_TEST_WAIT_MINUTES to wait more than 60 minutes.\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-apex-tests/) and can output Grafana, Slack and MsTeams Notifications.\n",
|
|
8374
|
-
"examples": [
|
|
8375
|
-
"$ sf hardis:org:test:apex"
|
|
8376
|
-
],
|
|
8377
|
-
"flags": {
|
|
8378
|
-
"json": {
|
|
8379
|
-
"description": "Format output as json.",
|
|
8380
|
-
"helpGroup": "GLOBAL",
|
|
8381
|
-
"name": "json",
|
|
8382
|
-
"allowNo": false,
|
|
8383
|
-
"type": "boolean"
|
|
8384
|
-
},
|
|
8385
|
-
"flags-dir": {
|
|
8386
|
-
"helpGroup": "GLOBAL",
|
|
8387
|
-
"name": "flags-dir",
|
|
8388
|
-
"summary": "Import flag values from a directory.",
|
|
8389
|
-
"hasDynamicHelp": false,
|
|
8390
|
-
"multiple": false,
|
|
8391
|
-
"type": "option"
|
|
8392
|
-
},
|
|
8393
|
-
"testlevel": {
|
|
8394
|
-
"char": "l",
|
|
8395
|
-
"description": "Level of tests to apply to validate deployment",
|
|
8396
|
-
"name": "testlevel",
|
|
8397
|
-
"default": "RunLocalTests",
|
|
8398
|
-
"hasDynamicHelp": false,
|
|
8399
|
-
"multiple": false,
|
|
8400
|
-
"options": [
|
|
8401
|
-
"NoTestRun",
|
|
8402
|
-
"RunSpecifiedTests",
|
|
8403
|
-
"RunLocalTests",
|
|
8404
|
-
"RunAllTestsInOrg"
|
|
8405
|
-
],
|
|
8406
|
-
"type": "option"
|
|
8407
|
-
},
|
|
8408
|
-
"debug": {
|
|
8409
|
-
"char": "d",
|
|
8410
|
-
"description": "Activate debug mode (more logs)",
|
|
8411
|
-
"name": "debug",
|
|
8412
|
-
"allowNo": false,
|
|
8413
|
-
"type": "boolean"
|
|
8414
|
-
},
|
|
8415
|
-
"websocket": {
|
|
8416
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
8417
|
-
"name": "websocket",
|
|
8418
|
-
"hasDynamicHelp": false,
|
|
8419
|
-
"multiple": false,
|
|
8420
|
-
"type": "option"
|
|
8421
|
-
},
|
|
8422
|
-
"skipauth": {
|
|
8423
|
-
"description": "Skip authentication check when a default username is required",
|
|
8424
|
-
"name": "skipauth",
|
|
8425
|
-
"allowNo": false,
|
|
8426
|
-
"type": "boolean"
|
|
8427
|
-
},
|
|
8428
|
-
"target-org": {
|
|
8429
|
-
"aliases": [
|
|
8430
|
-
"targetusername",
|
|
8431
|
-
"u"
|
|
8432
|
-
],
|
|
8433
|
-
"char": "o",
|
|
8434
|
-
"deprecateAliases": true,
|
|
8435
|
-
"name": "target-org",
|
|
8436
|
-
"noCacheDefault": true,
|
|
8437
|
-
"required": true,
|
|
8438
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
8439
|
-
"hasDynamicHelp": true,
|
|
8440
|
-
"multiple": false,
|
|
8441
|
-
"type": "option"
|
|
8442
|
-
}
|
|
8443
|
-
},
|
|
8444
|
-
"hasDynamicHelp": true,
|
|
8445
|
-
"hiddenAliases": [],
|
|
8446
|
-
"id": "hardis:org:test:apex",
|
|
8447
|
-
"pluginAlias": "sfdx-hardis",
|
|
8448
|
-
"pluginName": "sfdx-hardis",
|
|
8449
|
-
"pluginType": "core",
|
|
8450
|
-
"strict": true,
|
|
8451
|
-
"enableJsonFlag": true,
|
|
8452
|
-
"title": "Run apex tests",
|
|
8453
|
-
"isESM": true,
|
|
8454
|
-
"relativePath": [
|
|
8455
|
-
"lib",
|
|
8456
|
-
"commands",
|
|
8457
|
-
"hardis",
|
|
8458
|
-
"org",
|
|
8459
|
-
"test",
|
|
8460
|
-
"apex.js"
|
|
8461
|
-
],
|
|
8462
|
-
"aliasPermutations": [],
|
|
8463
|
-
"permutations": [
|
|
8464
|
-
"hardis:org:test:apex",
|
|
8465
|
-
"org:hardis:test:apex",
|
|
8466
|
-
"org:test:hardis:apex",
|
|
8467
|
-
"org:test:apex:hardis",
|
|
8468
|
-
"hardis:test:org:apex",
|
|
8469
|
-
"test:hardis:org:apex",
|
|
8470
|
-
"test:org:hardis:apex",
|
|
8471
|
-
"test:org:apex:hardis",
|
|
8472
|
-
"hardis:test:apex:org",
|
|
8473
|
-
"test:hardis:apex:org",
|
|
8474
|
-
"test:apex:hardis:org",
|
|
8475
|
-
"test:apex:org:hardis",
|
|
8476
|
-
"hardis:org:apex:test",
|
|
8477
|
-
"org:hardis:apex:test",
|
|
8478
|
-
"org:apex:hardis:test",
|
|
8479
|
-
"org:apex:test:hardis",
|
|
8480
|
-
"hardis:apex:org:test",
|
|
8481
|
-
"apex:hardis:org:test",
|
|
8482
|
-
"apex:org:hardis:test",
|
|
8483
|
-
"apex:org:test:hardis",
|
|
8484
|
-
"hardis:apex:test:org",
|
|
8485
|
-
"apex:hardis:test:org",
|
|
8486
|
-
"apex:test:hardis:org",
|
|
8487
|
-
"apex:test:org:hardis"
|
|
8488
|
-
]
|
|
8489
|
-
},
|
|
8490
8490
|
"hardis:package:version:create": {
|
|
8491
8491
|
"aliases": [],
|
|
8492
8492
|
"args": {},
|
|
@@ -8841,135 +8841,6 @@
|
|
|
8841
8841
|
"promote:version:package:hardis"
|
|
8842
8842
|
]
|
|
8843
8843
|
},
|
|
8844
|
-
"hardis:project:configure:auth": {
|
|
8845
|
-
"aliases": [],
|
|
8846
|
-
"args": {},
|
|
8847
|
-
"description": "Configure authentication from git branch to target org",
|
|
8848
|
-
"examples": [
|
|
8849
|
-
"$ sf hardis:project:configure:auth"
|
|
8850
|
-
],
|
|
8851
|
-
"flags": {
|
|
8852
|
-
"json": {
|
|
8853
|
-
"description": "Format output as json.",
|
|
8854
|
-
"helpGroup": "GLOBAL",
|
|
8855
|
-
"name": "json",
|
|
8856
|
-
"allowNo": false,
|
|
8857
|
-
"type": "boolean"
|
|
8858
|
-
},
|
|
8859
|
-
"flags-dir": {
|
|
8860
|
-
"helpGroup": "GLOBAL",
|
|
8861
|
-
"name": "flags-dir",
|
|
8862
|
-
"summary": "Import flag values from a directory.",
|
|
8863
|
-
"hasDynamicHelp": false,
|
|
8864
|
-
"multiple": false,
|
|
8865
|
-
"type": "option"
|
|
8866
|
-
},
|
|
8867
|
-
"devhub": {
|
|
8868
|
-
"char": "b",
|
|
8869
|
-
"description": "Configure project DevHub",
|
|
8870
|
-
"name": "devhub",
|
|
8871
|
-
"allowNo": false,
|
|
8872
|
-
"type": "boolean"
|
|
8873
|
-
},
|
|
8874
|
-
"debug": {
|
|
8875
|
-
"char": "d",
|
|
8876
|
-
"description": "Activate debug mode (more logs)",
|
|
8877
|
-
"name": "debug",
|
|
8878
|
-
"allowNo": false,
|
|
8879
|
-
"type": "boolean"
|
|
8880
|
-
},
|
|
8881
|
-
"websocket": {
|
|
8882
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
8883
|
-
"name": "websocket",
|
|
8884
|
-
"hasDynamicHelp": false,
|
|
8885
|
-
"multiple": false,
|
|
8886
|
-
"type": "option"
|
|
8887
|
-
},
|
|
8888
|
-
"skipauth": {
|
|
8889
|
-
"description": "Skip authentication check when a default username is required",
|
|
8890
|
-
"name": "skipauth",
|
|
8891
|
-
"allowNo": false,
|
|
8892
|
-
"type": "boolean"
|
|
8893
|
-
},
|
|
8894
|
-
"target-org": {
|
|
8895
|
-
"aliases": [
|
|
8896
|
-
"targetusername",
|
|
8897
|
-
"u"
|
|
8898
|
-
],
|
|
8899
|
-
"char": "o",
|
|
8900
|
-
"deprecateAliases": true,
|
|
8901
|
-
"name": "target-org",
|
|
8902
|
-
"noCacheDefault": true,
|
|
8903
|
-
"summary": "Username or alias of the target org.",
|
|
8904
|
-
"hasDynamicHelp": true,
|
|
8905
|
-
"multiple": false,
|
|
8906
|
-
"type": "option"
|
|
8907
|
-
},
|
|
8908
|
-
"target-dev-hub": {
|
|
8909
|
-
"aliases": [
|
|
8910
|
-
"targetdevhubusername"
|
|
8911
|
-
],
|
|
8912
|
-
"char": "v",
|
|
8913
|
-
"deprecateAliases": true,
|
|
8914
|
-
"name": "target-dev-hub",
|
|
8915
|
-
"noCacheDefault": true,
|
|
8916
|
-
"required": false,
|
|
8917
|
-
"summary": "Username or alias of the Dev Hub org.",
|
|
8918
|
-
"hasDynamicHelp": true,
|
|
8919
|
-
"multiple": false,
|
|
8920
|
-
"type": "option"
|
|
8921
|
-
}
|
|
8922
|
-
},
|
|
8923
|
-
"hasDynamicHelp": true,
|
|
8924
|
-
"hiddenAliases": [],
|
|
8925
|
-
"id": "hardis:project:configure:auth",
|
|
8926
|
-
"pluginAlias": "sfdx-hardis",
|
|
8927
|
-
"pluginName": "sfdx-hardis",
|
|
8928
|
-
"pluginType": "core",
|
|
8929
|
-
"strict": true,
|
|
8930
|
-
"enableJsonFlag": true,
|
|
8931
|
-
"title": "Configure authentication",
|
|
8932
|
-
"requiresProject": false,
|
|
8933
|
-
"requiresDependencies": [
|
|
8934
|
-
"openssl"
|
|
8935
|
-
],
|
|
8936
|
-
"isESM": true,
|
|
8937
|
-
"relativePath": [
|
|
8938
|
-
"lib",
|
|
8939
|
-
"commands",
|
|
8940
|
-
"hardis",
|
|
8941
|
-
"project",
|
|
8942
|
-
"configure",
|
|
8943
|
-
"auth.js"
|
|
8944
|
-
],
|
|
8945
|
-
"aliasPermutations": [],
|
|
8946
|
-
"permutations": [
|
|
8947
|
-
"hardis:project:configure:auth",
|
|
8948
|
-
"project:hardis:configure:auth",
|
|
8949
|
-
"project:configure:hardis:auth",
|
|
8950
|
-
"project:configure:auth:hardis",
|
|
8951
|
-
"hardis:configure:project:auth",
|
|
8952
|
-
"configure:hardis:project:auth",
|
|
8953
|
-
"configure:project:hardis:auth",
|
|
8954
|
-
"configure:project:auth:hardis",
|
|
8955
|
-
"hardis:configure:auth:project",
|
|
8956
|
-
"configure:hardis:auth:project",
|
|
8957
|
-
"configure:auth:hardis:project",
|
|
8958
|
-
"configure:auth:project:hardis",
|
|
8959
|
-
"hardis:project:auth:configure",
|
|
8960
|
-
"project:hardis:auth:configure",
|
|
8961
|
-
"project:auth:hardis:configure",
|
|
8962
|
-
"project:auth:configure:hardis",
|
|
8963
|
-
"hardis:auth:project:configure",
|
|
8964
|
-
"auth:hardis:project:configure",
|
|
8965
|
-
"auth:project:hardis:configure",
|
|
8966
|
-
"auth:project:configure:hardis",
|
|
8967
|
-
"hardis:auth:configure:project",
|
|
8968
|
-
"auth:hardis:configure:project",
|
|
8969
|
-
"auth:configure:hardis:project",
|
|
8970
|
-
"auth:configure:project:hardis"
|
|
8971
|
-
]
|
|
8972
|
-
},
|
|
8973
8844
|
"hardis:project:audit:apiversion": {
|
|
8974
8845
|
"aliases": [],
|
|
8975
8846
|
"args": {},
|
|
@@ -9383,6 +9254,135 @@
|
|
|
9383
9254
|
"remotesites:audit:project:hardis"
|
|
9384
9255
|
]
|
|
9385
9256
|
},
|
|
9257
|
+
"hardis:project:configure:auth": {
|
|
9258
|
+
"aliases": [],
|
|
9259
|
+
"args": {},
|
|
9260
|
+
"description": "Configure authentication from git branch to target org",
|
|
9261
|
+
"examples": [
|
|
9262
|
+
"$ sf hardis:project:configure:auth"
|
|
9263
|
+
],
|
|
9264
|
+
"flags": {
|
|
9265
|
+
"json": {
|
|
9266
|
+
"description": "Format output as json.",
|
|
9267
|
+
"helpGroup": "GLOBAL",
|
|
9268
|
+
"name": "json",
|
|
9269
|
+
"allowNo": false,
|
|
9270
|
+
"type": "boolean"
|
|
9271
|
+
},
|
|
9272
|
+
"flags-dir": {
|
|
9273
|
+
"helpGroup": "GLOBAL",
|
|
9274
|
+
"name": "flags-dir",
|
|
9275
|
+
"summary": "Import flag values from a directory.",
|
|
9276
|
+
"hasDynamicHelp": false,
|
|
9277
|
+
"multiple": false,
|
|
9278
|
+
"type": "option"
|
|
9279
|
+
},
|
|
9280
|
+
"devhub": {
|
|
9281
|
+
"char": "b",
|
|
9282
|
+
"description": "Configure project DevHub",
|
|
9283
|
+
"name": "devhub",
|
|
9284
|
+
"allowNo": false,
|
|
9285
|
+
"type": "boolean"
|
|
9286
|
+
},
|
|
9287
|
+
"debug": {
|
|
9288
|
+
"char": "d",
|
|
9289
|
+
"description": "Activate debug mode (more logs)",
|
|
9290
|
+
"name": "debug",
|
|
9291
|
+
"allowNo": false,
|
|
9292
|
+
"type": "boolean"
|
|
9293
|
+
},
|
|
9294
|
+
"websocket": {
|
|
9295
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
9296
|
+
"name": "websocket",
|
|
9297
|
+
"hasDynamicHelp": false,
|
|
9298
|
+
"multiple": false,
|
|
9299
|
+
"type": "option"
|
|
9300
|
+
},
|
|
9301
|
+
"skipauth": {
|
|
9302
|
+
"description": "Skip authentication check when a default username is required",
|
|
9303
|
+
"name": "skipauth",
|
|
9304
|
+
"allowNo": false,
|
|
9305
|
+
"type": "boolean"
|
|
9306
|
+
},
|
|
9307
|
+
"target-org": {
|
|
9308
|
+
"aliases": [
|
|
9309
|
+
"targetusername",
|
|
9310
|
+
"u"
|
|
9311
|
+
],
|
|
9312
|
+
"char": "o",
|
|
9313
|
+
"deprecateAliases": true,
|
|
9314
|
+
"name": "target-org",
|
|
9315
|
+
"noCacheDefault": true,
|
|
9316
|
+
"summary": "Username or alias of the target org.",
|
|
9317
|
+
"hasDynamicHelp": true,
|
|
9318
|
+
"multiple": false,
|
|
9319
|
+
"type": "option"
|
|
9320
|
+
},
|
|
9321
|
+
"target-dev-hub": {
|
|
9322
|
+
"aliases": [
|
|
9323
|
+
"targetdevhubusername"
|
|
9324
|
+
],
|
|
9325
|
+
"char": "v",
|
|
9326
|
+
"deprecateAliases": true,
|
|
9327
|
+
"name": "target-dev-hub",
|
|
9328
|
+
"noCacheDefault": true,
|
|
9329
|
+
"required": false,
|
|
9330
|
+
"summary": "Username or alias of the Dev Hub org.",
|
|
9331
|
+
"hasDynamicHelp": true,
|
|
9332
|
+
"multiple": false,
|
|
9333
|
+
"type": "option"
|
|
9334
|
+
}
|
|
9335
|
+
},
|
|
9336
|
+
"hasDynamicHelp": true,
|
|
9337
|
+
"hiddenAliases": [],
|
|
9338
|
+
"id": "hardis:project:configure:auth",
|
|
9339
|
+
"pluginAlias": "sfdx-hardis",
|
|
9340
|
+
"pluginName": "sfdx-hardis",
|
|
9341
|
+
"pluginType": "core",
|
|
9342
|
+
"strict": true,
|
|
9343
|
+
"enableJsonFlag": true,
|
|
9344
|
+
"title": "Configure authentication",
|
|
9345
|
+
"requiresProject": false,
|
|
9346
|
+
"requiresDependencies": [
|
|
9347
|
+
"openssl"
|
|
9348
|
+
],
|
|
9349
|
+
"isESM": true,
|
|
9350
|
+
"relativePath": [
|
|
9351
|
+
"lib",
|
|
9352
|
+
"commands",
|
|
9353
|
+
"hardis",
|
|
9354
|
+
"project",
|
|
9355
|
+
"configure",
|
|
9356
|
+
"auth.js"
|
|
9357
|
+
],
|
|
9358
|
+
"aliasPermutations": [],
|
|
9359
|
+
"permutations": [
|
|
9360
|
+
"hardis:project:configure:auth",
|
|
9361
|
+
"project:hardis:configure:auth",
|
|
9362
|
+
"project:configure:hardis:auth",
|
|
9363
|
+
"project:configure:auth:hardis",
|
|
9364
|
+
"hardis:configure:project:auth",
|
|
9365
|
+
"configure:hardis:project:auth",
|
|
9366
|
+
"configure:project:hardis:auth",
|
|
9367
|
+
"configure:project:auth:hardis",
|
|
9368
|
+
"hardis:configure:auth:project",
|
|
9369
|
+
"configure:hardis:auth:project",
|
|
9370
|
+
"configure:auth:hardis:project",
|
|
9371
|
+
"configure:auth:project:hardis",
|
|
9372
|
+
"hardis:project:auth:configure",
|
|
9373
|
+
"project:hardis:auth:configure",
|
|
9374
|
+
"project:auth:hardis:configure",
|
|
9375
|
+
"project:auth:configure:hardis",
|
|
9376
|
+
"hardis:auth:project:configure",
|
|
9377
|
+
"auth:hardis:project:configure",
|
|
9378
|
+
"auth:project:hardis:configure",
|
|
9379
|
+
"auth:project:configure:hardis",
|
|
9380
|
+
"hardis:auth:configure:project",
|
|
9381
|
+
"auth:hardis:configure:project",
|
|
9382
|
+
"auth:configure:hardis:project",
|
|
9383
|
+
"auth:configure:project:hardis"
|
|
9384
|
+
]
|
|
9385
|
+
},
|
|
9386
9386
|
"hardis:project:convert:profilestopermsets": {
|
|
9387
9387
|
"aliases": [],
|
|
9388
9388
|
"args": {},
|
|
@@ -14843,5 +14843,5 @@
|
|
|
14843
14843
|
]
|
|
14844
14844
|
}
|
|
14845
14845
|
},
|
|
14846
|
-
"version": "5.44.2-
|
|
14846
|
+
"version": "5.44.2-alpha202507221024.0"
|
|
14847
14847
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Swiss-army-knife Toolbox for Salesforce.\n Allows you to define a complete CD/CD Pipeline.\n Orchestrate base commands and assist users with interactive wizards",
|
|
4
4
|
"author": "NicolasVuillamy @nvuillam",
|
|
5
5
|
"bugs": "https://github.com/hardisgroupcom/sfdx-hardis/issues",
|
|
6
|
-
"version": "5.44.2-
|
|
6
|
+
"version": "5.44.2-alpha202507221024.0",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@actions/github": "^6.0.1",
|
|
9
9
|
"@cparra/apexdocs": "^3.14.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"extract-zip": "^2.0.1",
|
|
39
39
|
"farmhash": "^4.0.2",
|
|
40
40
|
"fast-xml-parser": "^4.5.3",
|
|
41
|
-
"form-data": "^4.0.
|
|
41
|
+
"form-data": "^4.0.4",
|
|
42
42
|
"fs-extra": "^11.3.0",
|
|
43
43
|
"fs-readdir-recursive": "^1.1.0",
|
|
44
44
|
"glob": "^11.0.3",
|