sfdx-hardis 6.0.2-beta202508111754.0 → 6.0.4-beta202508131002.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 +8 -0
- package/lib/commands/hardis/doc/project2markdown.d.ts +1 -0
- package/lib/commands/hardis/doc/project2markdown.js +12 -2
- package/lib/commands/hardis/doc/project2markdown.js.map +1 -1
- package/lib/commands/hardis/work/new.js +3 -2
- package/lib/commands/hardis/work/new.js.map +1 -1
- package/lib/commands/hardis/work/save.js +16 -9
- package/lib/commands/hardis/work/save.js.map +1 -1
- package/oclif.manifest.json +738 -731
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -867,7 +867,8 @@
|
|
|
867
867
|
"examples": [
|
|
868
868
|
"$ sf hardis:doc:project2markdown",
|
|
869
869
|
"$ sf hardis:doc:project2markdown --with-history",
|
|
870
|
-
"$ sf hardis:doc:project2markdown --with-history --pdf"
|
|
870
|
+
"$ sf hardis:doc:project2markdown --with-history --pdf",
|
|
871
|
+
"$ sf hardis:doc:project2markdown --hide-apex-code"
|
|
871
872
|
],
|
|
872
873
|
"flags": {
|
|
873
874
|
"json": {
|
|
@@ -903,6 +904,12 @@
|
|
|
903
904
|
"allowNo": false,
|
|
904
905
|
"type": "boolean"
|
|
905
906
|
},
|
|
907
|
+
"hide-apex-code": {
|
|
908
|
+
"description": "Hide Apex code in the generated documentation for Apex classes.",
|
|
909
|
+
"name": "hide-apex-code",
|
|
910
|
+
"allowNo": false,
|
|
911
|
+
"type": "boolean"
|
|
912
|
+
},
|
|
906
913
|
"debug": {
|
|
907
914
|
"char": "d",
|
|
908
915
|
"description": "Activate debug mode (more logs)",
|
|
@@ -4719,6 +4726,117 @@
|
|
|
4719
4726
|
"extract:pull-requests:git:hardis"
|
|
4720
4727
|
]
|
|
4721
4728
|
},
|
|
4729
|
+
"hardis:org:community:update": {
|
|
4730
|
+
"aliases": [],
|
|
4731
|
+
"args": {},
|
|
4732
|
+
"description": "\n## Command Behavior\n\n**Updates the status of one or more Salesforce Experience Cloud (Community) networks.**\n\nThis command provides a way to programmatically change the status of your Salesforce Communities, allowing you to manage their availability. This is particularly useful for:\n\n- **Maintenance:** Taking communities offline for planned maintenance (`DownForMaintenance`).\n- **Activation/Deactivation:** Bringing communities online or offline (`Live`, `DownForMaintenance`).\n- **Automation:** Integrating community status changes into CI/CD pipelines or scheduled jobs.\n\nKey functionalities:\n\n- **Network Selection:** You can specify one or more community network names (separated by commas) using the `--name` flag.\n- **Status Update:** You can set the new status for the selected communities using the `--status` flag. Supported values are `Live` and `DownForMaintenance`.\n- **Confirmation Prompt:** In non-CI environments, it provides a confirmation prompt before executing the update, ensuring intentional changes.\n\n## Technical explanations\n\nThe command's technical implementation involves:\n\n- **Salesforce SOQL Query:** It first queries the Salesforce `Network` object using SOQL to retrieve the `Id`, `Name`, and `Status` of the specified communities. This ensures that only existing communities are targeted.\n- **SObject Update:** It then constructs an array of `Network` sObjects with their `Id` and the new `Status` and performs a DML update operation using `conn.sobject(\"Network\").update()`. The `allOrNone: false` option is used to allow partial success in case some updates fail.\n- **Error Handling and Reporting:** It iterates through the update results, logging success or failure for each community. It also provides a summary of successful and erroneous updates.\n- **User Interaction:** Uses `prompts` to confirm the update action with the user when not running in a CI environment.\n- **Salesforce Connection:** Establishes a connection to the target Salesforce org using the `target-org` flag.\n",
|
|
4733
|
+
"examples": [
|
|
4734
|
+
"$ sf hardis:org:community:update --name 'MyNetworkName' --status DownForMaintenance",
|
|
4735
|
+
"$ sf hardis:org:community:update --name 'MyNetworkName,MySecondNetworkName' --status Live"
|
|
4736
|
+
],
|
|
4737
|
+
"flags": {
|
|
4738
|
+
"json": {
|
|
4739
|
+
"description": "Format output as json.",
|
|
4740
|
+
"helpGroup": "GLOBAL",
|
|
4741
|
+
"name": "json",
|
|
4742
|
+
"allowNo": false,
|
|
4743
|
+
"type": "boolean"
|
|
4744
|
+
},
|
|
4745
|
+
"flags-dir": {
|
|
4746
|
+
"helpGroup": "GLOBAL",
|
|
4747
|
+
"name": "flags-dir",
|
|
4748
|
+
"summary": "Import flag values from a directory.",
|
|
4749
|
+
"hasDynamicHelp": false,
|
|
4750
|
+
"multiple": false,
|
|
4751
|
+
"type": "option"
|
|
4752
|
+
},
|
|
4753
|
+
"name": {
|
|
4754
|
+
"char": "n",
|
|
4755
|
+
"description": "List of Networks Names that you want to update, separated by comma",
|
|
4756
|
+
"name": "name",
|
|
4757
|
+
"required": true,
|
|
4758
|
+
"hasDynamicHelp": false,
|
|
4759
|
+
"multiple": false,
|
|
4760
|
+
"type": "option"
|
|
4761
|
+
},
|
|
4762
|
+
"status": {
|
|
4763
|
+
"char": "s",
|
|
4764
|
+
"description": "New status for the community, available values are: Live, DownForMaintenance",
|
|
4765
|
+
"name": "status",
|
|
4766
|
+
"required": true,
|
|
4767
|
+
"hasDynamicHelp": false,
|
|
4768
|
+
"multiple": false,
|
|
4769
|
+
"type": "option"
|
|
4770
|
+
},
|
|
4771
|
+
"debug": {
|
|
4772
|
+
"char": "d",
|
|
4773
|
+
"description": "Activate debug mode (more logs)",
|
|
4774
|
+
"name": "debug",
|
|
4775
|
+
"allowNo": false,
|
|
4776
|
+
"type": "boolean"
|
|
4777
|
+
},
|
|
4778
|
+
"target-org": {
|
|
4779
|
+
"aliases": [
|
|
4780
|
+
"targetusername",
|
|
4781
|
+
"u"
|
|
4782
|
+
],
|
|
4783
|
+
"char": "o",
|
|
4784
|
+
"deprecateAliases": true,
|
|
4785
|
+
"name": "target-org",
|
|
4786
|
+
"noCacheDefault": true,
|
|
4787
|
+
"required": true,
|
|
4788
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
4789
|
+
"hasDynamicHelp": true,
|
|
4790
|
+
"multiple": false,
|
|
4791
|
+
"type": "option"
|
|
4792
|
+
}
|
|
4793
|
+
},
|
|
4794
|
+
"hasDynamicHelp": true,
|
|
4795
|
+
"hiddenAliases": [],
|
|
4796
|
+
"id": "hardis:org:community:update",
|
|
4797
|
+
"pluginAlias": "sfdx-hardis",
|
|
4798
|
+
"pluginName": "sfdx-hardis",
|
|
4799
|
+
"pluginType": "core",
|
|
4800
|
+
"strict": true,
|
|
4801
|
+
"summary": "Update a community status.",
|
|
4802
|
+
"enableJsonFlag": true,
|
|
4803
|
+
"isESM": true,
|
|
4804
|
+
"relativePath": [
|
|
4805
|
+
"lib",
|
|
4806
|
+
"commands",
|
|
4807
|
+
"hardis",
|
|
4808
|
+
"org",
|
|
4809
|
+
"community",
|
|
4810
|
+
"update.js"
|
|
4811
|
+
],
|
|
4812
|
+
"aliasPermutations": [],
|
|
4813
|
+
"permutations": [
|
|
4814
|
+
"hardis:org:community:update",
|
|
4815
|
+
"org:hardis:community:update",
|
|
4816
|
+
"org:community:hardis:update",
|
|
4817
|
+
"org:community:update:hardis",
|
|
4818
|
+
"hardis:community:org:update",
|
|
4819
|
+
"community:hardis:org:update",
|
|
4820
|
+
"community:org:hardis:update",
|
|
4821
|
+
"community:org:update:hardis",
|
|
4822
|
+
"hardis:community:update:org",
|
|
4823
|
+
"community:hardis:update:org",
|
|
4824
|
+
"community:update:hardis:org",
|
|
4825
|
+
"community:update:org:hardis",
|
|
4826
|
+
"hardis:org:update:community",
|
|
4827
|
+
"org:hardis:update:community",
|
|
4828
|
+
"org:update:hardis:community",
|
|
4829
|
+
"org:update:community:hardis",
|
|
4830
|
+
"hardis:update:org:community",
|
|
4831
|
+
"update:hardis:org:community",
|
|
4832
|
+
"update:org:hardis:community",
|
|
4833
|
+
"update:org:community:hardis",
|
|
4834
|
+
"hardis:update:community:org",
|
|
4835
|
+
"update:hardis:community:org",
|
|
4836
|
+
"update:community:hardis:org",
|
|
4837
|
+
"update:community:org:hardis"
|
|
4838
|
+
]
|
|
4839
|
+
},
|
|
4722
4840
|
"hardis:org:configure:data": {
|
|
4723
4841
|
"aliases": [],
|
|
4724
4842
|
"args": {},
|
|
@@ -5020,117 +5138,6 @@
|
|
|
5020
5138
|
"monitoring:configure:org:hardis"
|
|
5021
5139
|
]
|
|
5022
5140
|
},
|
|
5023
|
-
"hardis:org:community:update": {
|
|
5024
|
-
"aliases": [],
|
|
5025
|
-
"args": {},
|
|
5026
|
-
"description": "\n## Command Behavior\n\n**Updates the status of one or more Salesforce Experience Cloud (Community) networks.**\n\nThis command provides a way to programmatically change the status of your Salesforce Communities, allowing you to manage their availability. This is particularly useful for:\n\n- **Maintenance:** Taking communities offline for planned maintenance (`DownForMaintenance`).\n- **Activation/Deactivation:** Bringing communities online or offline (`Live`, `DownForMaintenance`).\n- **Automation:** Integrating community status changes into CI/CD pipelines or scheduled jobs.\n\nKey functionalities:\n\n- **Network Selection:** You can specify one or more community network names (separated by commas) using the `--name` flag.\n- **Status Update:** You can set the new status for the selected communities using the `--status` flag. Supported values are `Live` and `DownForMaintenance`.\n- **Confirmation Prompt:** In non-CI environments, it provides a confirmation prompt before executing the update, ensuring intentional changes.\n\n## Technical explanations\n\nThe command's technical implementation involves:\n\n- **Salesforce SOQL Query:** It first queries the Salesforce `Network` object using SOQL to retrieve the `Id`, `Name`, and `Status` of the specified communities. This ensures that only existing communities are targeted.\n- **SObject Update:** It then constructs an array of `Network` sObjects with their `Id` and the new `Status` and performs a DML update operation using `conn.sobject(\"Network\").update()`. The `allOrNone: false` option is used to allow partial success in case some updates fail.\n- **Error Handling and Reporting:** It iterates through the update results, logging success or failure for each community. It also provides a summary of successful and erroneous updates.\n- **User Interaction:** Uses `prompts` to confirm the update action with the user when not running in a CI environment.\n- **Salesforce Connection:** Establishes a connection to the target Salesforce org using the `target-org` flag.\n",
|
|
5027
|
-
"examples": [
|
|
5028
|
-
"$ sf hardis:org:community:update --name 'MyNetworkName' --status DownForMaintenance",
|
|
5029
|
-
"$ sf hardis:org:community:update --name 'MyNetworkName,MySecondNetworkName' --status Live"
|
|
5030
|
-
],
|
|
5031
|
-
"flags": {
|
|
5032
|
-
"json": {
|
|
5033
|
-
"description": "Format output as json.",
|
|
5034
|
-
"helpGroup": "GLOBAL",
|
|
5035
|
-
"name": "json",
|
|
5036
|
-
"allowNo": false,
|
|
5037
|
-
"type": "boolean"
|
|
5038
|
-
},
|
|
5039
|
-
"flags-dir": {
|
|
5040
|
-
"helpGroup": "GLOBAL",
|
|
5041
|
-
"name": "flags-dir",
|
|
5042
|
-
"summary": "Import flag values from a directory.",
|
|
5043
|
-
"hasDynamicHelp": false,
|
|
5044
|
-
"multiple": false,
|
|
5045
|
-
"type": "option"
|
|
5046
|
-
},
|
|
5047
|
-
"name": {
|
|
5048
|
-
"char": "n",
|
|
5049
|
-
"description": "List of Networks Names that you want to update, separated by comma",
|
|
5050
|
-
"name": "name",
|
|
5051
|
-
"required": true,
|
|
5052
|
-
"hasDynamicHelp": false,
|
|
5053
|
-
"multiple": false,
|
|
5054
|
-
"type": "option"
|
|
5055
|
-
},
|
|
5056
|
-
"status": {
|
|
5057
|
-
"char": "s",
|
|
5058
|
-
"description": "New status for the community, available values are: Live, DownForMaintenance",
|
|
5059
|
-
"name": "status",
|
|
5060
|
-
"required": true,
|
|
5061
|
-
"hasDynamicHelp": false,
|
|
5062
|
-
"multiple": false,
|
|
5063
|
-
"type": "option"
|
|
5064
|
-
},
|
|
5065
|
-
"debug": {
|
|
5066
|
-
"char": "d",
|
|
5067
|
-
"description": "Activate debug mode (more logs)",
|
|
5068
|
-
"name": "debug",
|
|
5069
|
-
"allowNo": false,
|
|
5070
|
-
"type": "boolean"
|
|
5071
|
-
},
|
|
5072
|
-
"target-org": {
|
|
5073
|
-
"aliases": [
|
|
5074
|
-
"targetusername",
|
|
5075
|
-
"u"
|
|
5076
|
-
],
|
|
5077
|
-
"char": "o",
|
|
5078
|
-
"deprecateAliases": true,
|
|
5079
|
-
"name": "target-org",
|
|
5080
|
-
"noCacheDefault": true,
|
|
5081
|
-
"required": true,
|
|
5082
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5083
|
-
"hasDynamicHelp": true,
|
|
5084
|
-
"multiple": false,
|
|
5085
|
-
"type": "option"
|
|
5086
|
-
}
|
|
5087
|
-
},
|
|
5088
|
-
"hasDynamicHelp": true,
|
|
5089
|
-
"hiddenAliases": [],
|
|
5090
|
-
"id": "hardis:org:community:update",
|
|
5091
|
-
"pluginAlias": "sfdx-hardis",
|
|
5092
|
-
"pluginName": "sfdx-hardis",
|
|
5093
|
-
"pluginType": "core",
|
|
5094
|
-
"strict": true,
|
|
5095
|
-
"summary": "Update a community status.",
|
|
5096
|
-
"enableJsonFlag": true,
|
|
5097
|
-
"isESM": true,
|
|
5098
|
-
"relativePath": [
|
|
5099
|
-
"lib",
|
|
5100
|
-
"commands",
|
|
5101
|
-
"hardis",
|
|
5102
|
-
"org",
|
|
5103
|
-
"community",
|
|
5104
|
-
"update.js"
|
|
5105
|
-
],
|
|
5106
|
-
"aliasPermutations": [],
|
|
5107
|
-
"permutations": [
|
|
5108
|
-
"hardis:org:community:update",
|
|
5109
|
-
"org:hardis:community:update",
|
|
5110
|
-
"org:community:hardis:update",
|
|
5111
|
-
"org:community:update:hardis",
|
|
5112
|
-
"hardis:community:org:update",
|
|
5113
|
-
"community:hardis:org:update",
|
|
5114
|
-
"community:org:hardis:update",
|
|
5115
|
-
"community:org:update:hardis",
|
|
5116
|
-
"hardis:community:update:org",
|
|
5117
|
-
"community:hardis:update:org",
|
|
5118
|
-
"community:update:hardis:org",
|
|
5119
|
-
"community:update:org:hardis",
|
|
5120
|
-
"hardis:org:update:community",
|
|
5121
|
-
"org:hardis:update:community",
|
|
5122
|
-
"org:update:hardis:community",
|
|
5123
|
-
"org:update:community:hardis",
|
|
5124
|
-
"hardis:update:org:community",
|
|
5125
|
-
"update:hardis:org:community",
|
|
5126
|
-
"update:org:hardis:community",
|
|
5127
|
-
"update:org:community:hardis",
|
|
5128
|
-
"hardis:update:community:org",
|
|
5129
|
-
"update:hardis:community:org",
|
|
5130
|
-
"update:community:hardis:org",
|
|
5131
|
-
"update:community:org:hardis"
|
|
5132
|
-
]
|
|
5133
|
-
},
|
|
5134
5141
|
"hardis:org:data:delete": {
|
|
5135
5142
|
"aliases": [],
|
|
5136
5143
|
"args": {},
|
|
@@ -5744,15 +5751,13 @@
|
|
|
5744
5751
|
"import:files:org:hardis"
|
|
5745
5752
|
]
|
|
5746
5753
|
},
|
|
5747
|
-
"hardis:org:
|
|
5754
|
+
"hardis:org:fix:listviewmine": {
|
|
5748
5755
|
"aliases": [],
|
|
5749
5756
|
"args": {},
|
|
5750
|
-
"description": "
|
|
5757
|
+
"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",
|
|
5751
5758
|
"examples": [
|
|
5752
|
-
"$ sf hardis:org:
|
|
5753
|
-
"$ sf hardis:org:
|
|
5754
|
-
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
|
|
5755
|
-
"$ sf hardis:org:diagnose:audittrail --lastndays 5"
|
|
5759
|
+
"$ sf hardis:org:fix:listviewmine",
|
|
5760
|
+
"$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
|
|
5756
5761
|
],
|
|
5757
5762
|
"flags": {
|
|
5758
5763
|
"json": {
|
|
@@ -5770,21 +5775,260 @@
|
|
|
5770
5775
|
"multiple": false,
|
|
5771
5776
|
"type": "option"
|
|
5772
5777
|
},
|
|
5773
|
-
"
|
|
5774
|
-
"char": "
|
|
5775
|
-
"description": "Comma-separated list of
|
|
5776
|
-
"name": "
|
|
5778
|
+
"listviews": {
|
|
5779
|
+
"char": "l",
|
|
5780
|
+
"description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
|
|
5781
|
+
"name": "listviews",
|
|
5777
5782
|
"hasDynamicHelp": false,
|
|
5778
5783
|
"multiple": false,
|
|
5779
5784
|
"type": "option"
|
|
5780
5785
|
},
|
|
5781
|
-
"
|
|
5782
|
-
"char": "
|
|
5783
|
-
"description": "
|
|
5784
|
-
"name": "
|
|
5785
|
-
"
|
|
5786
|
-
"
|
|
5787
|
-
|
|
5786
|
+
"debug": {
|
|
5787
|
+
"char": "d",
|
|
5788
|
+
"description": "Activate debug mode (more logs)",
|
|
5789
|
+
"name": "debug",
|
|
5790
|
+
"allowNo": false,
|
|
5791
|
+
"type": "boolean"
|
|
5792
|
+
},
|
|
5793
|
+
"websocket": {
|
|
5794
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5795
|
+
"name": "websocket",
|
|
5796
|
+
"hasDynamicHelp": false,
|
|
5797
|
+
"multiple": false,
|
|
5798
|
+
"type": "option"
|
|
5799
|
+
},
|
|
5800
|
+
"skipauth": {
|
|
5801
|
+
"description": "Skip authentication check when a default username is required",
|
|
5802
|
+
"name": "skipauth",
|
|
5803
|
+
"allowNo": false,
|
|
5804
|
+
"type": "boolean"
|
|
5805
|
+
},
|
|
5806
|
+
"target-org": {
|
|
5807
|
+
"aliases": [
|
|
5808
|
+
"targetusername",
|
|
5809
|
+
"u"
|
|
5810
|
+
],
|
|
5811
|
+
"char": "o",
|
|
5812
|
+
"deprecateAliases": true,
|
|
5813
|
+
"name": "target-org",
|
|
5814
|
+
"noCacheDefault": true,
|
|
5815
|
+
"required": true,
|
|
5816
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5817
|
+
"hasDynamicHelp": true,
|
|
5818
|
+
"multiple": false,
|
|
5819
|
+
"type": "option"
|
|
5820
|
+
}
|
|
5821
|
+
},
|
|
5822
|
+
"hasDynamicHelp": true,
|
|
5823
|
+
"hiddenAliases": [],
|
|
5824
|
+
"id": "hardis:org:fix:listviewmine",
|
|
5825
|
+
"pluginAlias": "sfdx-hardis",
|
|
5826
|
+
"pluginName": "sfdx-hardis",
|
|
5827
|
+
"pluginType": "core",
|
|
5828
|
+
"strict": true,
|
|
5829
|
+
"enableJsonFlag": true,
|
|
5830
|
+
"title": "Fix listviews with ",
|
|
5831
|
+
"requiresProject": true,
|
|
5832
|
+
"isESM": true,
|
|
5833
|
+
"relativePath": [
|
|
5834
|
+
"lib",
|
|
5835
|
+
"commands",
|
|
5836
|
+
"hardis",
|
|
5837
|
+
"org",
|
|
5838
|
+
"fix",
|
|
5839
|
+
"listviewmine.js"
|
|
5840
|
+
],
|
|
5841
|
+
"aliasPermutations": [],
|
|
5842
|
+
"permutations": [
|
|
5843
|
+
"hardis:org:fix:listviewmine",
|
|
5844
|
+
"org:hardis:fix:listviewmine",
|
|
5845
|
+
"org:fix:hardis:listviewmine",
|
|
5846
|
+
"org:fix:listviewmine:hardis",
|
|
5847
|
+
"hardis:fix:org:listviewmine",
|
|
5848
|
+
"fix:hardis:org:listviewmine",
|
|
5849
|
+
"fix:org:hardis:listviewmine",
|
|
5850
|
+
"fix:org:listviewmine:hardis",
|
|
5851
|
+
"hardis:fix:listviewmine:org",
|
|
5852
|
+
"fix:hardis:listviewmine:org",
|
|
5853
|
+
"fix:listviewmine:hardis:org",
|
|
5854
|
+
"fix:listviewmine:org:hardis",
|
|
5855
|
+
"hardis:org:listviewmine:fix",
|
|
5856
|
+
"org:hardis:listviewmine:fix",
|
|
5857
|
+
"org:listviewmine:hardis:fix",
|
|
5858
|
+
"org:listviewmine:fix:hardis",
|
|
5859
|
+
"hardis:listviewmine:org:fix",
|
|
5860
|
+
"listviewmine:hardis:org:fix",
|
|
5861
|
+
"listviewmine:org:hardis:fix",
|
|
5862
|
+
"listviewmine:org:fix:hardis",
|
|
5863
|
+
"hardis:listviewmine:fix:org",
|
|
5864
|
+
"listviewmine:hardis:fix:org",
|
|
5865
|
+
"listviewmine:fix:hardis:org",
|
|
5866
|
+
"listviewmine:fix:org:hardis"
|
|
5867
|
+
]
|
|
5868
|
+
},
|
|
5869
|
+
"hardis:org:generate:packagexmlfull": {
|
|
5870
|
+
"aliases": [],
|
|
5871
|
+
"args": {},
|
|
5872
|
+
"description": "\n## Command Behavior\n\n**Generates a comprehensive `package.xml` file for a Salesforce org, including all metadata components, even managed ones.**\n\nThis command is essential for various Salesforce development and administration tasks, especially when you need a complete snapshot of an org's metadata. It goes beyond typical source tracking by including managed package components, which is crucial for understanding the full metadata footprint of an org.\n\nKey functionalities:\n\n- **Full Org Metadata Retrieval:** Connects to a specified Salesforce org (or prompts for one if not provided) and retrieves a complete list of all metadata types and their members.\n- **Managed Package Inclusion:** Unlike standard source retrieval, this command explicitly includes metadata from managed packages, providing a truly comprehensive `package.xml`.\n- **Customizable Output:** Allows you to specify the output file path for the generated `package.xml`.\n- **Interactive Org Selection:** If no target org is specified, it interactively prompts the user to choose an org. (or use --no-prompt to skip this step)\n\n## Technical explanations\n\nThe command's technical implementation involves:\n\n- **Salesforce Metadata API Interaction:** It leverages the Salesforce Metadata API to list all available metadata types and then retrieve all components for each type.\n- **`buildOrgManifest` Utility:** The core logic for querying the org's metadata and constructing the `package.xml` is encapsulated within the `buildOrgManifest` utility function.\n- **XML Generation:** It dynamically builds the XML structure of the `package.xml` file, including the `types` and `members` elements for all retrieved metadata.\n- **File System Operations:** It writes the generated `package.xml` file to the specified output path.\n- **Interactive Prompts:** Uses `promptOrgUsernameDefault` to guide the user in selecting the target Salesforce org.\n",
|
|
5873
|
+
"examples": [
|
|
5874
|
+
"$ sf hardis:org:generate:packagexmlfull",
|
|
5875
|
+
"$ sf hardis:org:generate:packagexmlfull --outputfile /tmp/packagexmlfull.xml",
|
|
5876
|
+
"$ sf hardis:org:generate:packagexmlfull --target-org nico@example.com"
|
|
5877
|
+
],
|
|
5878
|
+
"flags": {
|
|
5879
|
+
"json": {
|
|
5880
|
+
"description": "Format output as json.",
|
|
5881
|
+
"helpGroup": "GLOBAL",
|
|
5882
|
+
"name": "json",
|
|
5883
|
+
"allowNo": false,
|
|
5884
|
+
"type": "boolean"
|
|
5885
|
+
},
|
|
5886
|
+
"flags-dir": {
|
|
5887
|
+
"helpGroup": "GLOBAL",
|
|
5888
|
+
"name": "flags-dir",
|
|
5889
|
+
"summary": "Import flag values from a directory.",
|
|
5890
|
+
"hasDynamicHelp": false,
|
|
5891
|
+
"multiple": false,
|
|
5892
|
+
"type": "option"
|
|
5893
|
+
},
|
|
5894
|
+
"outputfile": {
|
|
5895
|
+
"description": "Output package.xml file",
|
|
5896
|
+
"name": "outputfile",
|
|
5897
|
+
"hasDynamicHelp": false,
|
|
5898
|
+
"multiple": false,
|
|
5899
|
+
"type": "option"
|
|
5900
|
+
},
|
|
5901
|
+
"debug": {
|
|
5902
|
+
"char": "d",
|
|
5903
|
+
"description": "Activate debug mode (more logs)",
|
|
5904
|
+
"name": "debug",
|
|
5905
|
+
"allowNo": false,
|
|
5906
|
+
"type": "boolean"
|
|
5907
|
+
},
|
|
5908
|
+
"no-prompt": {
|
|
5909
|
+
"char": "n",
|
|
5910
|
+
"description": "Do not prompt for org username, use the default one",
|
|
5911
|
+
"name": "no-prompt",
|
|
5912
|
+
"allowNo": false,
|
|
5913
|
+
"type": "boolean"
|
|
5914
|
+
},
|
|
5915
|
+
"websocket": {
|
|
5916
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5917
|
+
"name": "websocket",
|
|
5918
|
+
"hasDynamicHelp": false,
|
|
5919
|
+
"multiple": false,
|
|
5920
|
+
"type": "option"
|
|
5921
|
+
},
|
|
5922
|
+
"skipauth": {
|
|
5923
|
+
"description": "Skip authentication check when a default username is required",
|
|
5924
|
+
"name": "skipauth",
|
|
5925
|
+
"allowNo": false,
|
|
5926
|
+
"type": "boolean"
|
|
5927
|
+
},
|
|
5928
|
+
"target-org": {
|
|
5929
|
+
"aliases": [
|
|
5930
|
+
"targetusername",
|
|
5931
|
+
"u"
|
|
5932
|
+
],
|
|
5933
|
+
"char": "o",
|
|
5934
|
+
"deprecateAliases": true,
|
|
5935
|
+
"name": "target-org",
|
|
5936
|
+
"noCacheDefault": true,
|
|
5937
|
+
"required": true,
|
|
5938
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5939
|
+
"hasDynamicHelp": true,
|
|
5940
|
+
"multiple": false,
|
|
5941
|
+
"type": "option"
|
|
5942
|
+
}
|
|
5943
|
+
},
|
|
5944
|
+
"hasDynamicHelp": true,
|
|
5945
|
+
"hiddenAliases": [],
|
|
5946
|
+
"id": "hardis:org:generate:packagexmlfull",
|
|
5947
|
+
"pluginAlias": "sfdx-hardis",
|
|
5948
|
+
"pluginName": "sfdx-hardis",
|
|
5949
|
+
"pluginType": "core",
|
|
5950
|
+
"strict": true,
|
|
5951
|
+
"enableJsonFlag": true,
|
|
5952
|
+
"title": "Generate Full Org package.xml",
|
|
5953
|
+
"requiresProject": false,
|
|
5954
|
+
"isESM": true,
|
|
5955
|
+
"relativePath": [
|
|
5956
|
+
"lib",
|
|
5957
|
+
"commands",
|
|
5958
|
+
"hardis",
|
|
5959
|
+
"org",
|
|
5960
|
+
"generate",
|
|
5961
|
+
"packagexmlfull.js"
|
|
5962
|
+
],
|
|
5963
|
+
"aliasPermutations": [],
|
|
5964
|
+
"permutations": [
|
|
5965
|
+
"hardis:org:generate:packagexmlfull",
|
|
5966
|
+
"org:hardis:generate:packagexmlfull",
|
|
5967
|
+
"org:generate:hardis:packagexmlfull",
|
|
5968
|
+
"org:generate:packagexmlfull:hardis",
|
|
5969
|
+
"hardis:generate:org:packagexmlfull",
|
|
5970
|
+
"generate:hardis:org:packagexmlfull",
|
|
5971
|
+
"generate:org:hardis:packagexmlfull",
|
|
5972
|
+
"generate:org:packagexmlfull:hardis",
|
|
5973
|
+
"hardis:generate:packagexmlfull:org",
|
|
5974
|
+
"generate:hardis:packagexmlfull:org",
|
|
5975
|
+
"generate:packagexmlfull:hardis:org",
|
|
5976
|
+
"generate:packagexmlfull:org:hardis",
|
|
5977
|
+
"hardis:org:packagexmlfull:generate",
|
|
5978
|
+
"org:hardis:packagexmlfull:generate",
|
|
5979
|
+
"org:packagexmlfull:hardis:generate",
|
|
5980
|
+
"org:packagexmlfull:generate:hardis",
|
|
5981
|
+
"hardis:packagexmlfull:org:generate",
|
|
5982
|
+
"packagexmlfull:hardis:org:generate",
|
|
5983
|
+
"packagexmlfull:org:hardis:generate",
|
|
5984
|
+
"packagexmlfull:org:generate:hardis",
|
|
5985
|
+
"hardis:packagexmlfull:generate:org",
|
|
5986
|
+
"packagexmlfull:hardis:generate:org",
|
|
5987
|
+
"packagexmlfull:generate:hardis:org",
|
|
5988
|
+
"packagexmlfull:generate:org:hardis"
|
|
5989
|
+
]
|
|
5990
|
+
},
|
|
5991
|
+
"hardis:org:diagnose:audittrail": {
|
|
5992
|
+
"aliases": [],
|
|
5993
|
+
"args": {},
|
|
5994
|
+
"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- External Objects\n - xdsEncryptedFieldChange\n- Groups\n - groupMembership\n- Holidays\n - holiday_insert\n- Inbox mobile and legacy desktop apps\n - enableSIQUserNonEAC\n - siqUserAcceptedTOS\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 - changedUserAdminVerifiedStatusVerified\n - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedknowledgeuseroffon\n - changedsfcontentuseroffon\n - changedsupportuseroffon\n - changedusername\n - changedUserPhoneNumber\n - changedUserPhoneVerifiedStatusUnverified\n - changedUserPhoneVerifiedStatusVerified\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",
|
|
5995
|
+
"examples": [
|
|
5996
|
+
"$ sf hardis:org:diagnose:audittrail",
|
|
5997
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
|
|
5998
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
|
|
5999
|
+
"$ sf hardis:org:diagnose:audittrail --lastndays 5"
|
|
6000
|
+
],
|
|
6001
|
+
"flags": {
|
|
6002
|
+
"json": {
|
|
6003
|
+
"description": "Format output as json.",
|
|
6004
|
+
"helpGroup": "GLOBAL",
|
|
6005
|
+
"name": "json",
|
|
6006
|
+
"allowNo": false,
|
|
6007
|
+
"type": "boolean"
|
|
6008
|
+
},
|
|
6009
|
+
"flags-dir": {
|
|
6010
|
+
"helpGroup": "GLOBAL",
|
|
6011
|
+
"name": "flags-dir",
|
|
6012
|
+
"summary": "Import flag values from a directory.",
|
|
6013
|
+
"hasDynamicHelp": false,
|
|
6014
|
+
"multiple": false,
|
|
6015
|
+
"type": "option"
|
|
6016
|
+
},
|
|
6017
|
+
"excludeusers": {
|
|
6018
|
+
"char": "e",
|
|
6019
|
+
"description": "Comma-separated list of usernames to exclude",
|
|
6020
|
+
"name": "excludeusers",
|
|
6021
|
+
"hasDynamicHelp": false,
|
|
6022
|
+
"multiple": false,
|
|
6023
|
+
"type": "option"
|
|
6024
|
+
},
|
|
6025
|
+
"lastndays": {
|
|
6026
|
+
"char": "t",
|
|
6027
|
+
"description": "Number of days to extract from today (included)",
|
|
6028
|
+
"name": "lastndays",
|
|
6029
|
+
"hasDynamicHelp": false,
|
|
6030
|
+
"multiple": false,
|
|
6031
|
+
"type": "option"
|
|
5788
6032
|
},
|
|
5789
6033
|
"outputfile": {
|
|
5790
6034
|
"char": "f",
|
|
@@ -6893,249 +7137,12 @@
|
|
|
6893
7137
|
"unusedusers:diagnose:org:hardis"
|
|
6894
7138
|
]
|
|
6895
7139
|
},
|
|
6896
|
-
"hardis:org:
|
|
7140
|
+
"hardis:org:monitor:all": {
|
|
6897
7141
|
"aliases": [],
|
|
6898
7142
|
"args": {},
|
|
6899
|
-
"description": "
|
|
7143
|
+
"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",
|
|
6900
7144
|
"examples": [
|
|
6901
|
-
"$ sf hardis:org:
|
|
6902
|
-
"$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
|
|
6903
|
-
],
|
|
6904
|
-
"flags": {
|
|
6905
|
-
"json": {
|
|
6906
|
-
"description": "Format output as json.",
|
|
6907
|
-
"helpGroup": "GLOBAL",
|
|
6908
|
-
"name": "json",
|
|
6909
|
-
"allowNo": false,
|
|
6910
|
-
"type": "boolean"
|
|
6911
|
-
},
|
|
6912
|
-
"flags-dir": {
|
|
6913
|
-
"helpGroup": "GLOBAL",
|
|
6914
|
-
"name": "flags-dir",
|
|
6915
|
-
"summary": "Import flag values from a directory.",
|
|
6916
|
-
"hasDynamicHelp": false,
|
|
6917
|
-
"multiple": false,
|
|
6918
|
-
"type": "option"
|
|
6919
|
-
},
|
|
6920
|
-
"listviews": {
|
|
6921
|
-
"char": "l",
|
|
6922
|
-
"description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
|
|
6923
|
-
"name": "listviews",
|
|
6924
|
-
"hasDynamicHelp": false,
|
|
6925
|
-
"multiple": false,
|
|
6926
|
-
"type": "option"
|
|
6927
|
-
},
|
|
6928
|
-
"debug": {
|
|
6929
|
-
"char": "d",
|
|
6930
|
-
"description": "Activate debug mode (more logs)",
|
|
6931
|
-
"name": "debug",
|
|
6932
|
-
"allowNo": false,
|
|
6933
|
-
"type": "boolean"
|
|
6934
|
-
},
|
|
6935
|
-
"websocket": {
|
|
6936
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6937
|
-
"name": "websocket",
|
|
6938
|
-
"hasDynamicHelp": false,
|
|
6939
|
-
"multiple": false,
|
|
6940
|
-
"type": "option"
|
|
6941
|
-
},
|
|
6942
|
-
"skipauth": {
|
|
6943
|
-
"description": "Skip authentication check when a default username is required",
|
|
6944
|
-
"name": "skipauth",
|
|
6945
|
-
"allowNo": false,
|
|
6946
|
-
"type": "boolean"
|
|
6947
|
-
},
|
|
6948
|
-
"target-org": {
|
|
6949
|
-
"aliases": [
|
|
6950
|
-
"targetusername",
|
|
6951
|
-
"u"
|
|
6952
|
-
],
|
|
6953
|
-
"char": "o",
|
|
6954
|
-
"deprecateAliases": true,
|
|
6955
|
-
"name": "target-org",
|
|
6956
|
-
"noCacheDefault": true,
|
|
6957
|
-
"required": true,
|
|
6958
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
6959
|
-
"hasDynamicHelp": true,
|
|
6960
|
-
"multiple": false,
|
|
6961
|
-
"type": "option"
|
|
6962
|
-
}
|
|
6963
|
-
},
|
|
6964
|
-
"hasDynamicHelp": true,
|
|
6965
|
-
"hiddenAliases": [],
|
|
6966
|
-
"id": "hardis:org:fix:listviewmine",
|
|
6967
|
-
"pluginAlias": "sfdx-hardis",
|
|
6968
|
-
"pluginName": "sfdx-hardis",
|
|
6969
|
-
"pluginType": "core",
|
|
6970
|
-
"strict": true,
|
|
6971
|
-
"enableJsonFlag": true,
|
|
6972
|
-
"title": "Fix listviews with ",
|
|
6973
|
-
"requiresProject": true,
|
|
6974
|
-
"isESM": true,
|
|
6975
|
-
"relativePath": [
|
|
6976
|
-
"lib",
|
|
6977
|
-
"commands",
|
|
6978
|
-
"hardis",
|
|
6979
|
-
"org",
|
|
6980
|
-
"fix",
|
|
6981
|
-
"listviewmine.js"
|
|
6982
|
-
],
|
|
6983
|
-
"aliasPermutations": [],
|
|
6984
|
-
"permutations": [
|
|
6985
|
-
"hardis:org:fix:listviewmine",
|
|
6986
|
-
"org:hardis:fix:listviewmine",
|
|
6987
|
-
"org:fix:hardis:listviewmine",
|
|
6988
|
-
"org:fix:listviewmine:hardis",
|
|
6989
|
-
"hardis:fix:org:listviewmine",
|
|
6990
|
-
"fix:hardis:org:listviewmine",
|
|
6991
|
-
"fix:org:hardis:listviewmine",
|
|
6992
|
-
"fix:org:listviewmine:hardis",
|
|
6993
|
-
"hardis:fix:listviewmine:org",
|
|
6994
|
-
"fix:hardis:listviewmine:org",
|
|
6995
|
-
"fix:listviewmine:hardis:org",
|
|
6996
|
-
"fix:listviewmine:org:hardis",
|
|
6997
|
-
"hardis:org:listviewmine:fix",
|
|
6998
|
-
"org:hardis:listviewmine:fix",
|
|
6999
|
-
"org:listviewmine:hardis:fix",
|
|
7000
|
-
"org:listviewmine:fix:hardis",
|
|
7001
|
-
"hardis:listviewmine:org:fix",
|
|
7002
|
-
"listviewmine:hardis:org:fix",
|
|
7003
|
-
"listviewmine:org:hardis:fix",
|
|
7004
|
-
"listviewmine:org:fix:hardis",
|
|
7005
|
-
"hardis:listviewmine:fix:org",
|
|
7006
|
-
"listviewmine:hardis:fix:org",
|
|
7007
|
-
"listviewmine:fix:hardis:org",
|
|
7008
|
-
"listviewmine:fix:org:hardis"
|
|
7009
|
-
]
|
|
7010
|
-
},
|
|
7011
|
-
"hardis:org:generate:packagexmlfull": {
|
|
7012
|
-
"aliases": [],
|
|
7013
|
-
"args": {},
|
|
7014
|
-
"description": "\n## Command Behavior\n\n**Generates a comprehensive `package.xml` file for a Salesforce org, including all metadata components, even managed ones.**\n\nThis command is essential for various Salesforce development and administration tasks, especially when you need a complete snapshot of an org's metadata. It goes beyond typical source tracking by including managed package components, which is crucial for understanding the full metadata footprint of an org.\n\nKey functionalities:\n\n- **Full Org Metadata Retrieval:** Connects to a specified Salesforce org (or prompts for one if not provided) and retrieves a complete list of all metadata types and their members.\n- **Managed Package Inclusion:** Unlike standard source retrieval, this command explicitly includes metadata from managed packages, providing a truly comprehensive `package.xml`.\n- **Customizable Output:** Allows you to specify the output file path for the generated `package.xml`.\n- **Interactive Org Selection:** If no target org is specified, it interactively prompts the user to choose an org. (or use --no-prompt to skip this step)\n\n## Technical explanations\n\nThe command's technical implementation involves:\n\n- **Salesforce Metadata API Interaction:** It leverages the Salesforce Metadata API to list all available metadata types and then retrieve all components for each type.\n- **`buildOrgManifest` Utility:** The core logic for querying the org's metadata and constructing the `package.xml` is encapsulated within the `buildOrgManifest` utility function.\n- **XML Generation:** It dynamically builds the XML structure of the `package.xml` file, including the `types` and `members` elements for all retrieved metadata.\n- **File System Operations:** It writes the generated `package.xml` file to the specified output path.\n- **Interactive Prompts:** Uses `promptOrgUsernameDefault` to guide the user in selecting the target Salesforce org.\n",
|
|
7015
|
-
"examples": [
|
|
7016
|
-
"$ sf hardis:org:generate:packagexmlfull",
|
|
7017
|
-
"$ sf hardis:org:generate:packagexmlfull --outputfile /tmp/packagexmlfull.xml",
|
|
7018
|
-
"$ sf hardis:org:generate:packagexmlfull --target-org nico@example.com"
|
|
7019
|
-
],
|
|
7020
|
-
"flags": {
|
|
7021
|
-
"json": {
|
|
7022
|
-
"description": "Format output as json.",
|
|
7023
|
-
"helpGroup": "GLOBAL",
|
|
7024
|
-
"name": "json",
|
|
7025
|
-
"allowNo": false,
|
|
7026
|
-
"type": "boolean"
|
|
7027
|
-
},
|
|
7028
|
-
"flags-dir": {
|
|
7029
|
-
"helpGroup": "GLOBAL",
|
|
7030
|
-
"name": "flags-dir",
|
|
7031
|
-
"summary": "Import flag values from a directory.",
|
|
7032
|
-
"hasDynamicHelp": false,
|
|
7033
|
-
"multiple": false,
|
|
7034
|
-
"type": "option"
|
|
7035
|
-
},
|
|
7036
|
-
"outputfile": {
|
|
7037
|
-
"description": "Output package.xml file",
|
|
7038
|
-
"name": "outputfile",
|
|
7039
|
-
"hasDynamicHelp": false,
|
|
7040
|
-
"multiple": false,
|
|
7041
|
-
"type": "option"
|
|
7042
|
-
},
|
|
7043
|
-
"debug": {
|
|
7044
|
-
"char": "d",
|
|
7045
|
-
"description": "Activate debug mode (more logs)",
|
|
7046
|
-
"name": "debug",
|
|
7047
|
-
"allowNo": false,
|
|
7048
|
-
"type": "boolean"
|
|
7049
|
-
},
|
|
7050
|
-
"no-prompt": {
|
|
7051
|
-
"char": "n",
|
|
7052
|
-
"description": "Do not prompt for org username, use the default one",
|
|
7053
|
-
"name": "no-prompt",
|
|
7054
|
-
"allowNo": false,
|
|
7055
|
-
"type": "boolean"
|
|
7056
|
-
},
|
|
7057
|
-
"websocket": {
|
|
7058
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
7059
|
-
"name": "websocket",
|
|
7060
|
-
"hasDynamicHelp": false,
|
|
7061
|
-
"multiple": false,
|
|
7062
|
-
"type": "option"
|
|
7063
|
-
},
|
|
7064
|
-
"skipauth": {
|
|
7065
|
-
"description": "Skip authentication check when a default username is required",
|
|
7066
|
-
"name": "skipauth",
|
|
7067
|
-
"allowNo": false,
|
|
7068
|
-
"type": "boolean"
|
|
7069
|
-
},
|
|
7070
|
-
"target-org": {
|
|
7071
|
-
"aliases": [
|
|
7072
|
-
"targetusername",
|
|
7073
|
-
"u"
|
|
7074
|
-
],
|
|
7075
|
-
"char": "o",
|
|
7076
|
-
"deprecateAliases": true,
|
|
7077
|
-
"name": "target-org",
|
|
7078
|
-
"noCacheDefault": true,
|
|
7079
|
-
"required": true,
|
|
7080
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
7081
|
-
"hasDynamicHelp": true,
|
|
7082
|
-
"multiple": false,
|
|
7083
|
-
"type": "option"
|
|
7084
|
-
}
|
|
7085
|
-
},
|
|
7086
|
-
"hasDynamicHelp": true,
|
|
7087
|
-
"hiddenAliases": [],
|
|
7088
|
-
"id": "hardis:org:generate:packagexmlfull",
|
|
7089
|
-
"pluginAlias": "sfdx-hardis",
|
|
7090
|
-
"pluginName": "sfdx-hardis",
|
|
7091
|
-
"pluginType": "core",
|
|
7092
|
-
"strict": true,
|
|
7093
|
-
"enableJsonFlag": true,
|
|
7094
|
-
"title": "Generate Full Org package.xml",
|
|
7095
|
-
"requiresProject": false,
|
|
7096
|
-
"isESM": true,
|
|
7097
|
-
"relativePath": [
|
|
7098
|
-
"lib",
|
|
7099
|
-
"commands",
|
|
7100
|
-
"hardis",
|
|
7101
|
-
"org",
|
|
7102
|
-
"generate",
|
|
7103
|
-
"packagexmlfull.js"
|
|
7104
|
-
],
|
|
7105
|
-
"aliasPermutations": [],
|
|
7106
|
-
"permutations": [
|
|
7107
|
-
"hardis:org:generate:packagexmlfull",
|
|
7108
|
-
"org:hardis:generate:packagexmlfull",
|
|
7109
|
-
"org:generate:hardis:packagexmlfull",
|
|
7110
|
-
"org:generate:packagexmlfull:hardis",
|
|
7111
|
-
"hardis:generate:org:packagexmlfull",
|
|
7112
|
-
"generate:hardis:org:packagexmlfull",
|
|
7113
|
-
"generate:org:hardis:packagexmlfull",
|
|
7114
|
-
"generate:org:packagexmlfull:hardis",
|
|
7115
|
-
"hardis:generate:packagexmlfull:org",
|
|
7116
|
-
"generate:hardis:packagexmlfull:org",
|
|
7117
|
-
"generate:packagexmlfull:hardis:org",
|
|
7118
|
-
"generate:packagexmlfull:org:hardis",
|
|
7119
|
-
"hardis:org:packagexmlfull:generate",
|
|
7120
|
-
"org:hardis:packagexmlfull:generate",
|
|
7121
|
-
"org:packagexmlfull:hardis:generate",
|
|
7122
|
-
"org:packagexmlfull:generate:hardis",
|
|
7123
|
-
"hardis:packagexmlfull:org:generate",
|
|
7124
|
-
"packagexmlfull:hardis:org:generate",
|
|
7125
|
-
"packagexmlfull:org:hardis:generate",
|
|
7126
|
-
"packagexmlfull:org:generate:hardis",
|
|
7127
|
-
"hardis:packagexmlfull:generate:org",
|
|
7128
|
-
"packagexmlfull:hardis:generate:org",
|
|
7129
|
-
"packagexmlfull:generate:hardis:org",
|
|
7130
|
-
"packagexmlfull:generate:org:hardis"
|
|
7131
|
-
]
|
|
7132
|
-
},
|
|
7133
|
-
"hardis:org:monitor:all": {
|
|
7134
|
-
"aliases": [],
|
|
7135
|
-
"args": {},
|
|
7136
|
-
"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",
|
|
7137
|
-
"examples": [
|
|
7138
|
-
"$ sf hardis:org:monitor:all"
|
|
7145
|
+
"$ sf hardis:org:monitor:all"
|
|
7139
7146
|
],
|
|
7140
7147
|
"flags": {
|
|
7141
7148
|
"json": {
|
|
@@ -7605,13 +7612,13 @@
|
|
|
7605
7612
|
"limits:monitor:org:hardis"
|
|
7606
7613
|
]
|
|
7607
7614
|
},
|
|
7608
|
-
"hardis:org:
|
|
7615
|
+
"hardis:org:retrieve:packageconfig": {
|
|
7609
7616
|
"aliases": [],
|
|
7610
7617
|
"args": {},
|
|
7611
|
-
"description": "\n**
|
|
7618
|
+
"description": "\n**Retrieves the installed package configuration from a Salesforce org and optionally updates the local project configuration.**\n\nThis command is useful for maintaining an accurate record of installed packages within your Salesforce project, which is crucial for managing dependencies and ensuring consistent deployments across environments.\n\nKey functionalities:\n\n- **Package Listing:** Connects to a specified Salesforce org (or prompts for one if not provided) and retrieves a list of all installed packages.\n- **Configuration Update:** Offers the option to update your local project's configuration with the retrieved list of installed packages. This can be beneficial for automating package installations during environment setup or CI/CD processes.\n\n## Technical explanations\n\nThe command's technical implementation involves:\n\n- **Org Connection:** It establishes a connection to the target Salesforce org using the provided or prompted username.\n- **Metadata Retrieval:** It utilizes `MetadataUtils.listInstalledPackages` to query the Salesforce org and obtain details about the installed packages.\n- **Interactive Prompt:** It uses the `prompts` library to ask the user whether they want to update their local project configuration with the retrieved package list.\n- **Configuration Management:** If the user confirms, it calls `managePackageConfig` to update the project's configuration file (likely `.sfdx-hardis.yml`) with the new package information.\n- **User Feedback:** Provides clear messages to the user about the success of the package retrieval and configuration update.\n",
|
|
7612
7619
|
"examples": [
|
|
7613
|
-
"$ sf hardis:org:
|
|
7614
|
-
"
|
|
7620
|
+
"$ sf hardis:org:retrieve:packageconfig",
|
|
7621
|
+
"sf hardis:org:retrieve:packageconfig -u myOrg"
|
|
7615
7622
|
],
|
|
7616
7623
|
"flags": {
|
|
7617
7624
|
"json": {
|
|
@@ -7629,13 +7636,6 @@
|
|
|
7629
7636
|
"multiple": false,
|
|
7630
7637
|
"type": "option"
|
|
7631
7638
|
},
|
|
7632
|
-
"prompt": {
|
|
7633
|
-
"char": "z",
|
|
7634
|
-
"description": "Prompt for confirmation (true by default, use --no-prompt to skip)",
|
|
7635
|
-
"name": "prompt",
|
|
7636
|
-
"allowNo": true,
|
|
7637
|
-
"type": "boolean"
|
|
7638
|
-
},
|
|
7639
7639
|
"debug": {
|
|
7640
7640
|
"char": "d",
|
|
7641
7641
|
"description": "Activate debug mode (more logs)",
|
|
@@ -7674,13 +7674,13 @@
|
|
|
7674
7674
|
},
|
|
7675
7675
|
"hasDynamicHelp": true,
|
|
7676
7676
|
"hiddenAliases": [],
|
|
7677
|
-
"id": "hardis:org:
|
|
7677
|
+
"id": "hardis:org:retrieve:packageconfig",
|
|
7678
7678
|
"pluginAlias": "sfdx-hardis",
|
|
7679
7679
|
"pluginName": "sfdx-hardis",
|
|
7680
7680
|
"pluginType": "core",
|
|
7681
7681
|
"strict": true,
|
|
7682
7682
|
"enableJsonFlag": true,
|
|
7683
|
-
"title": "
|
|
7683
|
+
"title": "Retrieve package configuration from an org",
|
|
7684
7684
|
"requiresProject": false,
|
|
7685
7685
|
"isESM": true,
|
|
7686
7686
|
"relativePath": [
|
|
@@ -7688,45 +7688,44 @@
|
|
|
7688
7688
|
"commands",
|
|
7689
7689
|
"hardis",
|
|
7690
7690
|
"org",
|
|
7691
|
-
"
|
|
7692
|
-
"
|
|
7691
|
+
"retrieve",
|
|
7692
|
+
"packageconfig.js"
|
|
7693
7693
|
],
|
|
7694
7694
|
"aliasPermutations": [],
|
|
7695
7695
|
"permutations": [
|
|
7696
|
-
"hardis:org:
|
|
7697
|
-
"org:hardis:
|
|
7698
|
-
"org:
|
|
7699
|
-
"org:
|
|
7700
|
-
"hardis:
|
|
7701
|
-
"
|
|
7702
|
-
"
|
|
7703
|
-
"
|
|
7704
|
-
"hardis:
|
|
7705
|
-
"
|
|
7706
|
-
"
|
|
7707
|
-
"
|
|
7708
|
-
"hardis:org:
|
|
7709
|
-
"org:hardis:
|
|
7710
|
-
"org:
|
|
7711
|
-
"org:
|
|
7712
|
-
"hardis:
|
|
7713
|
-
"
|
|
7714
|
-
"
|
|
7715
|
-
"
|
|
7716
|
-
"hardis:
|
|
7717
|
-
"
|
|
7718
|
-
"
|
|
7719
|
-
"
|
|
7696
|
+
"hardis:org:retrieve:packageconfig",
|
|
7697
|
+
"org:hardis:retrieve:packageconfig",
|
|
7698
|
+
"org:retrieve:hardis:packageconfig",
|
|
7699
|
+
"org:retrieve:packageconfig:hardis",
|
|
7700
|
+
"hardis:retrieve:org:packageconfig",
|
|
7701
|
+
"retrieve:hardis:org:packageconfig",
|
|
7702
|
+
"retrieve:org:hardis:packageconfig",
|
|
7703
|
+
"retrieve:org:packageconfig:hardis",
|
|
7704
|
+
"hardis:retrieve:packageconfig:org",
|
|
7705
|
+
"retrieve:hardis:packageconfig:org",
|
|
7706
|
+
"retrieve:packageconfig:hardis:org",
|
|
7707
|
+
"retrieve:packageconfig:org:hardis",
|
|
7708
|
+
"hardis:org:packageconfig:retrieve",
|
|
7709
|
+
"org:hardis:packageconfig:retrieve",
|
|
7710
|
+
"org:packageconfig:hardis:retrieve",
|
|
7711
|
+
"org:packageconfig:retrieve:hardis",
|
|
7712
|
+
"hardis:packageconfig:org:retrieve",
|
|
7713
|
+
"packageconfig:hardis:org:retrieve",
|
|
7714
|
+
"packageconfig:org:hardis:retrieve",
|
|
7715
|
+
"packageconfig:org:retrieve:hardis",
|
|
7716
|
+
"hardis:packageconfig:retrieve:org",
|
|
7717
|
+
"packageconfig:hardis:retrieve:org",
|
|
7718
|
+
"packageconfig:retrieve:hardis:org",
|
|
7719
|
+
"packageconfig:retrieve:org:hardis"
|
|
7720
7720
|
]
|
|
7721
7721
|
},
|
|
7722
|
-
"hardis:org:purge:
|
|
7722
|
+
"hardis:org:purge:apexlog": {
|
|
7723
7723
|
"aliases": [],
|
|
7724
7724
|
"args": {},
|
|
7725
|
-
"description": "\n**Purges
|
|
7725
|
+
"description": "\n**Purges Apex debug logs from a Salesforce org.**\n\nThis command provides a quick and efficient way to clear out accumulated Apex debug logs from your Salesforce environment. This is particularly useful for:\n\n- **Storage Management:** Freeing up valuable data storage space in your Salesforce org.\n- **Performance Optimization:** Reducing the overhead associated with large volumes of debug logs.\n- **Troubleshooting:** Ensuring that new debug logs are generated cleanly without interference from old, irrelevant logs.\n\nKey functionalities:\n\n- **Log Identification:** Queries the `ApexLog` object to identify all existing debug logs.\n- **Confirmation Prompt:** Before deletion, it prompts for user confirmation, displaying the number of Apex logs that will be deleted.\n- **Bulk Deletion:** Uses the Salesforce Bulk API to efficiently delete a large number of Apex logs.\n\n## Technical explanations\n\nThe command's technical implementation involves:\n\n- **SOQL Query:** It executes a SOQL query (`SELECT Id FROM ApexLog LIMIT 50000`) to retrieve the IDs of Apex logs to be deleted. The limit is set to 50,000 to handle large volumes of logs.\n- **CSV Export:** The retrieved log IDs are temporarily exported to a CSV file (`ApexLogsToDelete_*.csv`) in the `./tmp` directory.\n- **User Confirmation:** It uses the `prompts` library to ask for user confirmation before proceeding with the deletion, displaying the count of logs to be purged.\n- **Bulk API Deletion:** It then uses the Salesforce CLI's `sf data delete bulk` command, pointing to the generated CSV file, to perform the mass deletion of Apex logs.\n- **File System Operations:** It uses `fs-extra` to create the temporary directory and manage the CSV file.\n- **Error Handling:** Includes error handling for the query and deletion operations.\n",
|
|
7726
7726
|
"examples": [
|
|
7727
|
-
"$ sf hardis:org:purge:
|
|
7728
|
-
"$ sf hardis:org:purge:
|
|
7729
|
-
"$ sf hardis:org:purge:flow --target-org nicolas.vuillamy@gmail.com --status \"Obsolete,Draft,InvalidDraft\" --name TestFlow"
|
|
7727
|
+
"$ sf hardis:org:purge:apexlog",
|
|
7728
|
+
"$ sf hardis:org:purge:apexlog --target-org nicolas.vuillamy@gmail.com"
|
|
7730
7729
|
],
|
|
7731
7730
|
"flags": {
|
|
7732
7731
|
"json": {
|
|
@@ -7751,45 +7750,6 @@
|
|
|
7751
7750
|
"allowNo": true,
|
|
7752
7751
|
"type": "boolean"
|
|
7753
7752
|
},
|
|
7754
|
-
"name": {
|
|
7755
|
-
"char": "n",
|
|
7756
|
-
"description": "Filter according to Name criteria",
|
|
7757
|
-
"name": "name",
|
|
7758
|
-
"hasDynamicHelp": false,
|
|
7759
|
-
"multiple": false,
|
|
7760
|
-
"type": "option"
|
|
7761
|
-
},
|
|
7762
|
-
"status": {
|
|
7763
|
-
"char": "s",
|
|
7764
|
-
"description": "Filter according to Status criteria",
|
|
7765
|
-
"name": "status",
|
|
7766
|
-
"hasDynamicHelp": false,
|
|
7767
|
-
"multiple": false,
|
|
7768
|
-
"type": "option"
|
|
7769
|
-
},
|
|
7770
|
-
"delete-flow-interviews": {
|
|
7771
|
-
"char": "w",
|
|
7772
|
-
"description": "If the presence of Flow interviews prevent to delete flows versions, delete them before retrying to delete flow versions",
|
|
7773
|
-
"name": "delete-flow-interviews",
|
|
7774
|
-
"allowNo": false,
|
|
7775
|
-
"type": "boolean"
|
|
7776
|
-
},
|
|
7777
|
-
"allowpurgefailure": {
|
|
7778
|
-
"char": "f",
|
|
7779
|
-
"description": "Allows purges to fail without exiting with 1. Use --no-allowpurgefailure to disable",
|
|
7780
|
-
"name": "allowpurgefailure",
|
|
7781
|
-
"allowNo": true,
|
|
7782
|
-
"type": "boolean"
|
|
7783
|
-
},
|
|
7784
|
-
"instanceurl": {
|
|
7785
|
-
"char": "r",
|
|
7786
|
-
"description": "URL of org instance",
|
|
7787
|
-
"name": "instanceurl",
|
|
7788
|
-
"default": "https://login.salesforce.com",
|
|
7789
|
-
"hasDynamicHelp": false,
|
|
7790
|
-
"multiple": false,
|
|
7791
|
-
"type": "option"
|
|
7792
|
-
},
|
|
7793
7753
|
"debug": {
|
|
7794
7754
|
"char": "d",
|
|
7795
7755
|
"description": "Activate debug mode (more logs)",
|
|
@@ -7828,13 +7788,13 @@
|
|
|
7828
7788
|
},
|
|
7829
7789
|
"hasDynamicHelp": true,
|
|
7830
7790
|
"hiddenAliases": [],
|
|
7831
|
-
"id": "hardis:org:purge:
|
|
7791
|
+
"id": "hardis:org:purge:apexlog",
|
|
7832
7792
|
"pluginAlias": "sfdx-hardis",
|
|
7833
7793
|
"pluginName": "sfdx-hardis",
|
|
7834
7794
|
"pluginType": "core",
|
|
7835
7795
|
"strict": true,
|
|
7836
7796
|
"enableJsonFlag": true,
|
|
7837
|
-
"title": "Purge
|
|
7797
|
+
"title": "Purge Apex Logs",
|
|
7838
7798
|
"requiresProject": false,
|
|
7839
7799
|
"isESM": true,
|
|
7840
7800
|
"relativePath": [
|
|
@@ -7843,43 +7803,44 @@
|
|
|
7843
7803
|
"hardis",
|
|
7844
7804
|
"org",
|
|
7845
7805
|
"purge",
|
|
7846
|
-
"
|
|
7806
|
+
"apexlog.js"
|
|
7847
7807
|
],
|
|
7848
7808
|
"aliasPermutations": [],
|
|
7849
7809
|
"permutations": [
|
|
7850
|
-
"hardis:org:purge:
|
|
7851
|
-
"org:hardis:purge:
|
|
7852
|
-
"org:purge:hardis:
|
|
7853
|
-
"org:purge:
|
|
7854
|
-
"hardis:purge:org:
|
|
7855
|
-
"purge:hardis:org:
|
|
7856
|
-
"purge:org:hardis:
|
|
7857
|
-
"purge:org:
|
|
7858
|
-
"hardis:purge:
|
|
7859
|
-
"purge:hardis:
|
|
7860
|
-
"purge:
|
|
7861
|
-
"purge:
|
|
7862
|
-
"hardis:org:
|
|
7863
|
-
"org:hardis:
|
|
7864
|
-
"org:
|
|
7865
|
-
"org:
|
|
7866
|
-
"hardis:
|
|
7867
|
-
"
|
|
7868
|
-
"
|
|
7869
|
-
"
|
|
7870
|
-
"hardis:
|
|
7871
|
-
"
|
|
7872
|
-
"
|
|
7873
|
-
"
|
|
7810
|
+
"hardis:org:purge:apexlog",
|
|
7811
|
+
"org:hardis:purge:apexlog",
|
|
7812
|
+
"org:purge:hardis:apexlog",
|
|
7813
|
+
"org:purge:apexlog:hardis",
|
|
7814
|
+
"hardis:purge:org:apexlog",
|
|
7815
|
+
"purge:hardis:org:apexlog",
|
|
7816
|
+
"purge:org:hardis:apexlog",
|
|
7817
|
+
"purge:org:apexlog:hardis",
|
|
7818
|
+
"hardis:purge:apexlog:org",
|
|
7819
|
+
"purge:hardis:apexlog:org",
|
|
7820
|
+
"purge:apexlog:hardis:org",
|
|
7821
|
+
"purge:apexlog:org:hardis",
|
|
7822
|
+
"hardis:org:apexlog:purge",
|
|
7823
|
+
"org:hardis:apexlog:purge",
|
|
7824
|
+
"org:apexlog:hardis:purge",
|
|
7825
|
+
"org:apexlog:purge:hardis",
|
|
7826
|
+
"hardis:apexlog:org:purge",
|
|
7827
|
+
"apexlog:hardis:org:purge",
|
|
7828
|
+
"apexlog:org:hardis:purge",
|
|
7829
|
+
"apexlog:org:purge:hardis",
|
|
7830
|
+
"hardis:apexlog:purge:org",
|
|
7831
|
+
"apexlog:hardis:purge:org",
|
|
7832
|
+
"apexlog:purge:hardis:org",
|
|
7833
|
+
"apexlog:purge:org:hardis"
|
|
7874
7834
|
]
|
|
7875
7835
|
},
|
|
7876
|
-
"hardis:org:
|
|
7836
|
+
"hardis:org:purge:flow": {
|
|
7877
7837
|
"aliases": [],
|
|
7878
7838
|
"args": {},
|
|
7879
|
-
"description": "\n**
|
|
7839
|
+
"description": "\n**Purges old or unwanted Flow versions from a Salesforce org, with an option to delete related Flow Interviews.**\n\nThis command helps maintain a clean and performant Salesforce org by removing obsolete Flow versions. Over time, multiple versions of Flows can accumulate, consuming storage and potentially impacting performance. This tool provides a controlled way to clean up these versions.\n\nKey functionalities:\n\n- **Targeted Flow Selection:** Allows you to filter Flow versions to delete by name (`--name`) and status (`--status`, e.g., `Obsolete`, `Draft`, `Inactive`).\n- **Flow Interview Deletion:** If a Flow version cannot be deleted due to active Flow Interviews, the `--delete-flow-interviews` flag (or interactive prompt) allows you to delete these interviews first, then retry the Flow version deletion.\n- **Confirmation Prompt:** In interactive mode, it prompts for confirmation before proceeding with the deletion of Flow versions and Flow Interviews.\n- **Partial Success Handling:** The `--allowpurgefailure` flag (default `true`) allows the command to continue even if some deletions fail, reporting the errors.\n\n## Technical explanations\n\nThe command's technical implementation involves:\n\n- **SOQL Queries (Tooling API):** It queries the `Flow` object (using the Tooling API) to list Flow versions based on the provided filters (name, status, manageable state).\n- **Bulk Deletion (Tooling API):** It uses `bulkDeleteTooling` to perform mass deletions of Flow versions. If deletion fails due to active interviews, it extracts the interview IDs.\n- **Flow Interview Management:** If `delete-flow-interviews` is enabled, it queries `FlowInterview` objects, performs bulk deletion of the identified interviews using `bulkDelete`, and then retries the Flow version deletion.\n- **Interactive Prompts:** Uses the `prompts` library to interact with the user for selecting Flows, statuses, and confirming deletion actions.\n- **Error Reporting:** Logs detailed error messages for failed deletions, including the specific reasons.\n- **Command-Line Execution:** Uses `execSfdxJson` to execute Salesforce CLI commands for querying Flow data.\n",
|
|
7880
7840
|
"examples": [
|
|
7881
|
-
"$ sf hardis:org:
|
|
7882
|
-
"sf hardis:org:
|
|
7841
|
+
"$ sf hardis:org:purge:flow",
|
|
7842
|
+
"$ sf hardis:org:purge:flow --target-org nicolas.vuillamy@gmail.com --no-prompt --delete-flow-interviews",
|
|
7843
|
+
"$ sf hardis:org:purge:flow --target-org nicolas.vuillamy@gmail.com --status \"Obsolete,Draft,InvalidDraft\" --name TestFlow"
|
|
7883
7844
|
],
|
|
7884
7845
|
"flags": {
|
|
7885
7846
|
"json": {
|
|
@@ -7889,10 +7850,56 @@
|
|
|
7889
7850
|
"allowNo": false,
|
|
7890
7851
|
"type": "boolean"
|
|
7891
7852
|
},
|
|
7892
|
-
"flags-dir": {
|
|
7893
|
-
"helpGroup": "GLOBAL",
|
|
7894
|
-
"name": "flags-dir",
|
|
7895
|
-
"summary": "Import flag values from a directory.",
|
|
7853
|
+
"flags-dir": {
|
|
7854
|
+
"helpGroup": "GLOBAL",
|
|
7855
|
+
"name": "flags-dir",
|
|
7856
|
+
"summary": "Import flag values from a directory.",
|
|
7857
|
+
"hasDynamicHelp": false,
|
|
7858
|
+
"multiple": false,
|
|
7859
|
+
"type": "option"
|
|
7860
|
+
},
|
|
7861
|
+
"prompt": {
|
|
7862
|
+
"char": "z",
|
|
7863
|
+
"description": "Prompt for confirmation (true by default, use --no-prompt to skip)",
|
|
7864
|
+
"name": "prompt",
|
|
7865
|
+
"allowNo": true,
|
|
7866
|
+
"type": "boolean"
|
|
7867
|
+
},
|
|
7868
|
+
"name": {
|
|
7869
|
+
"char": "n",
|
|
7870
|
+
"description": "Filter according to Name criteria",
|
|
7871
|
+
"name": "name",
|
|
7872
|
+
"hasDynamicHelp": false,
|
|
7873
|
+
"multiple": false,
|
|
7874
|
+
"type": "option"
|
|
7875
|
+
},
|
|
7876
|
+
"status": {
|
|
7877
|
+
"char": "s",
|
|
7878
|
+
"description": "Filter according to Status criteria",
|
|
7879
|
+
"name": "status",
|
|
7880
|
+
"hasDynamicHelp": false,
|
|
7881
|
+
"multiple": false,
|
|
7882
|
+
"type": "option"
|
|
7883
|
+
},
|
|
7884
|
+
"delete-flow-interviews": {
|
|
7885
|
+
"char": "w",
|
|
7886
|
+
"description": "If the presence of Flow interviews prevent to delete flows versions, delete them before retrying to delete flow versions",
|
|
7887
|
+
"name": "delete-flow-interviews",
|
|
7888
|
+
"allowNo": false,
|
|
7889
|
+
"type": "boolean"
|
|
7890
|
+
},
|
|
7891
|
+
"allowpurgefailure": {
|
|
7892
|
+
"char": "f",
|
|
7893
|
+
"description": "Allows purges to fail without exiting with 1. Use --no-allowpurgefailure to disable",
|
|
7894
|
+
"name": "allowpurgefailure",
|
|
7895
|
+
"allowNo": true,
|
|
7896
|
+
"type": "boolean"
|
|
7897
|
+
},
|
|
7898
|
+
"instanceurl": {
|
|
7899
|
+
"char": "r",
|
|
7900
|
+
"description": "URL of org instance",
|
|
7901
|
+
"name": "instanceurl",
|
|
7902
|
+
"default": "https://login.salesforce.com",
|
|
7896
7903
|
"hasDynamicHelp": false,
|
|
7897
7904
|
"multiple": false,
|
|
7898
7905
|
"type": "option"
|
|
@@ -7935,13 +7942,13 @@
|
|
|
7935
7942
|
},
|
|
7936
7943
|
"hasDynamicHelp": true,
|
|
7937
7944
|
"hiddenAliases": [],
|
|
7938
|
-
"id": "hardis:org:
|
|
7945
|
+
"id": "hardis:org:purge:flow",
|
|
7939
7946
|
"pluginAlias": "sfdx-hardis",
|
|
7940
7947
|
"pluginName": "sfdx-hardis",
|
|
7941
7948
|
"pluginType": "core",
|
|
7942
7949
|
"strict": true,
|
|
7943
7950
|
"enableJsonFlag": true,
|
|
7944
|
-
"title": "
|
|
7951
|
+
"title": "Purge Flow versions",
|
|
7945
7952
|
"requiresProject": false,
|
|
7946
7953
|
"isESM": true,
|
|
7947
7954
|
"relativePath": [
|
|
@@ -7949,35 +7956,35 @@
|
|
|
7949
7956
|
"commands",
|
|
7950
7957
|
"hardis",
|
|
7951
7958
|
"org",
|
|
7952
|
-
"
|
|
7953
|
-
"
|
|
7959
|
+
"purge",
|
|
7960
|
+
"flow.js"
|
|
7954
7961
|
],
|
|
7955
7962
|
"aliasPermutations": [],
|
|
7956
7963
|
"permutations": [
|
|
7957
|
-
"hardis:org:
|
|
7958
|
-
"org:hardis:
|
|
7959
|
-
"org:
|
|
7960
|
-
"org:
|
|
7961
|
-
"hardis:
|
|
7962
|
-
"
|
|
7963
|
-
"
|
|
7964
|
-
"
|
|
7965
|
-
"hardis:
|
|
7966
|
-
"
|
|
7967
|
-
"
|
|
7968
|
-
"
|
|
7969
|
-
"hardis:org:
|
|
7970
|
-
"org:hardis:
|
|
7971
|
-
"org:
|
|
7972
|
-
"org:
|
|
7973
|
-
"hardis:
|
|
7974
|
-
"
|
|
7975
|
-
"
|
|
7976
|
-
"
|
|
7977
|
-
"hardis:
|
|
7978
|
-
"
|
|
7979
|
-
"
|
|
7980
|
-
"
|
|
7964
|
+
"hardis:org:purge:flow",
|
|
7965
|
+
"org:hardis:purge:flow",
|
|
7966
|
+
"org:purge:hardis:flow",
|
|
7967
|
+
"org:purge:flow:hardis",
|
|
7968
|
+
"hardis:purge:org:flow",
|
|
7969
|
+
"purge:hardis:org:flow",
|
|
7970
|
+
"purge:org:hardis:flow",
|
|
7971
|
+
"purge:org:flow:hardis",
|
|
7972
|
+
"hardis:purge:flow:org",
|
|
7973
|
+
"purge:hardis:flow:org",
|
|
7974
|
+
"purge:flow:hardis:org",
|
|
7975
|
+
"purge:flow:org:hardis",
|
|
7976
|
+
"hardis:org:flow:purge",
|
|
7977
|
+
"org:hardis:flow:purge",
|
|
7978
|
+
"org:flow:hardis:purge",
|
|
7979
|
+
"org:flow:purge:hardis",
|
|
7980
|
+
"hardis:flow:org:purge",
|
|
7981
|
+
"flow:hardis:org:purge",
|
|
7982
|
+
"flow:org:hardis:purge",
|
|
7983
|
+
"flow:org:purge:hardis",
|
|
7984
|
+
"hardis:flow:purge:org",
|
|
7985
|
+
"flow:hardis:purge:org",
|
|
7986
|
+
"flow:purge:hardis:org",
|
|
7987
|
+
"flow:purge:org:hardis"
|
|
7981
7988
|
]
|
|
7982
7989
|
},
|
|
7983
7990
|
"hardis:org:test:apex": {
|
|
@@ -10984,6 +10991,221 @@
|
|
|
10984
10991
|
"xml:clean:project:hardis"
|
|
10985
10992
|
]
|
|
10986
10993
|
},
|
|
10994
|
+
"hardis:project:fix:profiletabs": {
|
|
10995
|
+
"aliases": [],
|
|
10996
|
+
"args": {},
|
|
10997
|
+
"description": "\n## Command Behavior\n\n**Interactively updates tab visibility settings in Salesforce profiles, addressing a common issue where tab visibilities are not correctly retrieved by `sf project retrieve start`.**\n\nThis command provides a user-friendly interface to manage tab settings within your profile XML files, ensuring that your local project accurately reflects the intended tab configurations in your Salesforce org.\n\nKey functionalities:\n\n- **Interactive Tab Selection:** Displays a multi-select menu of all available tabs in your org, allowing you to choose which tabs to update.\n- **Visibility Control:** Lets you set the visibility for the selected tabs to either `DefaultOn` (Visible) or `Hidden`.\n- **Profile Selection:** Presents a multi-select menu of all .profile-meta.xml files in your project, allowing you to apply the tab visibility changes to specific profiles.\n- **XML Updates:** Modifies the <tabVisibilities> section of the selected profile XML files to reflect the chosen tab settings. If a tab visibility setting already exists for a selected tab, it will be updated; otherwise, a new one will be added.\n- **Sorted Output:** The <tabVisibilities> in the updated profile XML files are sorted alphabetically for consistency and readability.\n\n## Technical explanations\n\nThe command's technical implementation involves:\n\n- **SOQL Queries (Tooling API):** It queries the `TabDefinition` object using `soqlQueryTooling` to retrieve a list of all available tabs in the target org.\n- **File Discovery:** Uses `glob` to find all .profile-meta.xml files within the specified project path.\n- **Interactive Prompts:** Leverages the `prompts` library to create interactive menus for selecting tabs, visibility settings, and profiles.\n- **XML Parsing and Manipulation:** Uses `parseXmlFile` to read the content of profile XML files and `writeXmlFile` to write the modified content back. It manipulates the `tabVisibilities` array within the parsed XML to add or update tab settings.\n- **Array Sorting:** Employs the `sort-array` library to sort the `tabVisibilities` alphabetically by tab name.\n- **Logging:** Provides feedback to the user about which profiles have been updated and a summary of the changes.\n",
|
|
10998
|
+
"examples": [
|
|
10999
|
+
"$ sf hardis:project:fix:profiletabs"
|
|
11000
|
+
],
|
|
11001
|
+
"flags": {
|
|
11002
|
+
"json": {
|
|
11003
|
+
"description": "Format output as json.",
|
|
11004
|
+
"helpGroup": "GLOBAL",
|
|
11005
|
+
"name": "json",
|
|
11006
|
+
"allowNo": false,
|
|
11007
|
+
"type": "boolean"
|
|
11008
|
+
},
|
|
11009
|
+
"flags-dir": {
|
|
11010
|
+
"helpGroup": "GLOBAL",
|
|
11011
|
+
"name": "flags-dir",
|
|
11012
|
+
"summary": "Import flag values from a directory.",
|
|
11013
|
+
"hasDynamicHelp": false,
|
|
11014
|
+
"multiple": false,
|
|
11015
|
+
"type": "option"
|
|
11016
|
+
},
|
|
11017
|
+
"path": {
|
|
11018
|
+
"char": "p",
|
|
11019
|
+
"description": "Root folder",
|
|
11020
|
+
"name": "path",
|
|
11021
|
+
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
11022
|
+
"hasDynamicHelp": false,
|
|
11023
|
+
"multiple": false,
|
|
11024
|
+
"type": "option"
|
|
11025
|
+
},
|
|
11026
|
+
"debug": {
|
|
11027
|
+
"char": "d",
|
|
11028
|
+
"description": "Activate debug mode (more logs)",
|
|
11029
|
+
"name": "debug",
|
|
11030
|
+
"allowNo": false,
|
|
11031
|
+
"type": "boolean"
|
|
11032
|
+
},
|
|
11033
|
+
"websocket": {
|
|
11034
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
11035
|
+
"name": "websocket",
|
|
11036
|
+
"hasDynamicHelp": false,
|
|
11037
|
+
"multiple": false,
|
|
11038
|
+
"type": "option"
|
|
11039
|
+
},
|
|
11040
|
+
"skipauth": {
|
|
11041
|
+
"description": "Skip authentication check when a default username is required",
|
|
11042
|
+
"name": "skipauth",
|
|
11043
|
+
"allowNo": false,
|
|
11044
|
+
"type": "boolean"
|
|
11045
|
+
},
|
|
11046
|
+
"target-org": {
|
|
11047
|
+
"aliases": [
|
|
11048
|
+
"targetusername",
|
|
11049
|
+
"u"
|
|
11050
|
+
],
|
|
11051
|
+
"char": "o",
|
|
11052
|
+
"deprecateAliases": true,
|
|
11053
|
+
"name": "target-org",
|
|
11054
|
+
"noCacheDefault": true,
|
|
11055
|
+
"required": true,
|
|
11056
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
11057
|
+
"hasDynamicHelp": true,
|
|
11058
|
+
"multiple": false,
|
|
11059
|
+
"type": "option"
|
|
11060
|
+
}
|
|
11061
|
+
},
|
|
11062
|
+
"hasDynamicHelp": true,
|
|
11063
|
+
"hiddenAliases": [],
|
|
11064
|
+
"id": "hardis:project:fix:profiletabs",
|
|
11065
|
+
"pluginAlias": "sfdx-hardis",
|
|
11066
|
+
"pluginName": "sfdx-hardis",
|
|
11067
|
+
"pluginType": "core",
|
|
11068
|
+
"strict": true,
|
|
11069
|
+
"enableJsonFlag": true,
|
|
11070
|
+
"title": "Fix profiles to add tabs that are not retrieved by SF CLI",
|
|
11071
|
+
"requiresProject": true,
|
|
11072
|
+
"isESM": true,
|
|
11073
|
+
"relativePath": [
|
|
11074
|
+
"lib",
|
|
11075
|
+
"commands",
|
|
11076
|
+
"hardis",
|
|
11077
|
+
"project",
|
|
11078
|
+
"fix",
|
|
11079
|
+
"profiletabs.js"
|
|
11080
|
+
],
|
|
11081
|
+
"aliasPermutations": [],
|
|
11082
|
+
"permutations": [
|
|
11083
|
+
"hardis:project:fix:profiletabs",
|
|
11084
|
+
"project:hardis:fix:profiletabs",
|
|
11085
|
+
"project:fix:hardis:profiletabs",
|
|
11086
|
+
"project:fix:profiletabs:hardis",
|
|
11087
|
+
"hardis:fix:project:profiletabs",
|
|
11088
|
+
"fix:hardis:project:profiletabs",
|
|
11089
|
+
"fix:project:hardis:profiletabs",
|
|
11090
|
+
"fix:project:profiletabs:hardis",
|
|
11091
|
+
"hardis:fix:profiletabs:project",
|
|
11092
|
+
"fix:hardis:profiletabs:project",
|
|
11093
|
+
"fix:profiletabs:hardis:project",
|
|
11094
|
+
"fix:profiletabs:project:hardis",
|
|
11095
|
+
"hardis:project:profiletabs:fix",
|
|
11096
|
+
"project:hardis:profiletabs:fix",
|
|
11097
|
+
"project:profiletabs:hardis:fix",
|
|
11098
|
+
"project:profiletabs:fix:hardis",
|
|
11099
|
+
"hardis:profiletabs:project:fix",
|
|
11100
|
+
"profiletabs:hardis:project:fix",
|
|
11101
|
+
"profiletabs:project:hardis:fix",
|
|
11102
|
+
"profiletabs:project:fix:hardis",
|
|
11103
|
+
"hardis:profiletabs:fix:project",
|
|
11104
|
+
"profiletabs:hardis:fix:project",
|
|
11105
|
+
"profiletabs:fix:hardis:project",
|
|
11106
|
+
"profiletabs:fix:project:hardis"
|
|
11107
|
+
]
|
|
11108
|
+
},
|
|
11109
|
+
"hardis:project:fix:v53flexipages": {
|
|
11110
|
+
"aliases": [],
|
|
11111
|
+
"args": {},
|
|
11112
|
+
"description": "\n## Command Behavior\n\n**Fixes Salesforce FlexiPages for compatibility with API Version 53.0 (Winter '22 release) by adding missing identifiers to component instances.**\n\nSalesforce introduced a change in API Version 53.0 that requires `identifier` tags within `componentInstance` and `fieldInstance` elements in FlexiPage metadata. If these identifiers are missing, deployments to orgs with API version 53.0 or higher will fail. This command automates the process of adding these missing identifiers, ensuring your FlexiPages remain deployable.\n\nKey functionalities:\n\n- **Targeted FlexiPage Processing:** Scans all .flexipage-meta.xml files within the specified root folder (defaults to current working directory).\n- **Identifier Injection:** Inserts a unique `identifier` tag (e.g., `SFDX_HARDIS_REPLACEMENT_ID`) into `componentInstance` and `fieldInstance` elements that lack one.\n\n**Important Note:** After running this command, ensure you update your `apiVersion` to `53.0` (or higher) in your `package.xml` and `sfdx-project.json` files.\n\n## Technical explanations\n\nThe command's technical implementation involves:\n\n- **File Discovery:** Uses `glob` to find all .flexipage-meta.xml files.\n- **Content Reading:** Reads the XML content of each FlexiPage file.\n- **Regular Expression Replacement:** Employs a set of regular expressions to identify specific XML patterns (componentName.../componentName.../componentInstance, componentName.../componentName.../visibilityRule, fieldItem.../fieldItem.../fieldInstance) that are missing the `identifier` tag.\n- **Dynamic ID Generation:** For each match, it generates a unique identifier (e.g., `sfdxHardisIdX`) and injects it into the XML structure.\n- **File Writing:** If changes are made, the modified XML content is written back to the FlexiPage file using `fs.writeFile`.\n- **Logging:** Provides messages about which FlexiPages are being processed and a summary of the total number of identifiers added.\n",
|
|
11113
|
+
"examples": [
|
|
11114
|
+
"$ sf hardis:project:fix:v53flexipages"
|
|
11115
|
+
],
|
|
11116
|
+
"flags": {
|
|
11117
|
+
"json": {
|
|
11118
|
+
"description": "Format output as json.",
|
|
11119
|
+
"helpGroup": "GLOBAL",
|
|
11120
|
+
"name": "json",
|
|
11121
|
+
"allowNo": false,
|
|
11122
|
+
"type": "boolean"
|
|
11123
|
+
},
|
|
11124
|
+
"flags-dir": {
|
|
11125
|
+
"helpGroup": "GLOBAL",
|
|
11126
|
+
"name": "flags-dir",
|
|
11127
|
+
"summary": "Import flag values from a directory.",
|
|
11128
|
+
"hasDynamicHelp": false,
|
|
11129
|
+
"multiple": false,
|
|
11130
|
+
"type": "option"
|
|
11131
|
+
},
|
|
11132
|
+
"path": {
|
|
11133
|
+
"char": "p",
|
|
11134
|
+
"description": "Root folder",
|
|
11135
|
+
"name": "path",
|
|
11136
|
+
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
11137
|
+
"hasDynamicHelp": false,
|
|
11138
|
+
"multiple": false,
|
|
11139
|
+
"type": "option"
|
|
11140
|
+
},
|
|
11141
|
+
"debug": {
|
|
11142
|
+
"char": "d",
|
|
11143
|
+
"description": "Activate debug mode (more logs)",
|
|
11144
|
+
"name": "debug",
|
|
11145
|
+
"allowNo": false,
|
|
11146
|
+
"type": "boolean"
|
|
11147
|
+
},
|
|
11148
|
+
"websocket": {
|
|
11149
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
11150
|
+
"name": "websocket",
|
|
11151
|
+
"hasDynamicHelp": false,
|
|
11152
|
+
"multiple": false,
|
|
11153
|
+
"type": "option"
|
|
11154
|
+
},
|
|
11155
|
+
"skipauth": {
|
|
11156
|
+
"description": "Skip authentication check when a default username is required",
|
|
11157
|
+
"name": "skipauth",
|
|
11158
|
+
"allowNo": false,
|
|
11159
|
+
"type": "boolean"
|
|
11160
|
+
}
|
|
11161
|
+
},
|
|
11162
|
+
"hasDynamicHelp": false,
|
|
11163
|
+
"hiddenAliases": [],
|
|
11164
|
+
"id": "hardis:project:fix:v53flexipages",
|
|
11165
|
+
"pluginAlias": "sfdx-hardis",
|
|
11166
|
+
"pluginName": "sfdx-hardis",
|
|
11167
|
+
"pluginType": "core",
|
|
11168
|
+
"strict": true,
|
|
11169
|
+
"enableJsonFlag": true,
|
|
11170
|
+
"title": "Fix flexipages for v53",
|
|
11171
|
+
"requiresProject": true,
|
|
11172
|
+
"isESM": true,
|
|
11173
|
+
"relativePath": [
|
|
11174
|
+
"lib",
|
|
11175
|
+
"commands",
|
|
11176
|
+
"hardis",
|
|
11177
|
+
"project",
|
|
11178
|
+
"fix",
|
|
11179
|
+
"v53flexipages.js"
|
|
11180
|
+
],
|
|
11181
|
+
"aliasPermutations": [],
|
|
11182
|
+
"permutations": [
|
|
11183
|
+
"hardis:project:fix:v53flexipages",
|
|
11184
|
+
"project:hardis:fix:v53flexipages",
|
|
11185
|
+
"project:fix:hardis:v53flexipages",
|
|
11186
|
+
"project:fix:v53flexipages:hardis",
|
|
11187
|
+
"hardis:fix:project:v53flexipages",
|
|
11188
|
+
"fix:hardis:project:v53flexipages",
|
|
11189
|
+
"fix:project:hardis:v53flexipages",
|
|
11190
|
+
"fix:project:v53flexipages:hardis",
|
|
11191
|
+
"hardis:fix:v53flexipages:project",
|
|
11192
|
+
"fix:hardis:v53flexipages:project",
|
|
11193
|
+
"fix:v53flexipages:hardis:project",
|
|
11194
|
+
"fix:v53flexipages:project:hardis",
|
|
11195
|
+
"hardis:project:v53flexipages:fix",
|
|
11196
|
+
"project:hardis:v53flexipages:fix",
|
|
11197
|
+
"project:v53flexipages:hardis:fix",
|
|
11198
|
+
"project:v53flexipages:fix:hardis",
|
|
11199
|
+
"hardis:v53flexipages:project:fix",
|
|
11200
|
+
"v53flexipages:hardis:project:fix",
|
|
11201
|
+
"v53flexipages:project:hardis:fix",
|
|
11202
|
+
"v53flexipages:project:fix:hardis",
|
|
11203
|
+
"hardis:v53flexipages:fix:project",
|
|
11204
|
+
"v53flexipages:hardis:fix:project",
|
|
11205
|
+
"v53flexipages:fix:hardis:project",
|
|
11206
|
+
"v53flexipages:fix:project:hardis"
|
|
11207
|
+
]
|
|
11208
|
+
},
|
|
10987
11209
|
"hardis:project:deploy:notify": {
|
|
10988
11210
|
"aliases": [],
|
|
10989
11211
|
"args": {},
|
|
@@ -12159,221 +12381,6 @@
|
|
|
12159
12381
|
"validate:deploy:project:hardis"
|
|
12160
12382
|
]
|
|
12161
12383
|
},
|
|
12162
|
-
"hardis:project:fix:profiletabs": {
|
|
12163
|
-
"aliases": [],
|
|
12164
|
-
"args": {},
|
|
12165
|
-
"description": "\n## Command Behavior\n\n**Interactively updates tab visibility settings in Salesforce profiles, addressing a common issue where tab visibilities are not correctly retrieved by `sf project retrieve start`.**\n\nThis command provides a user-friendly interface to manage tab settings within your profile XML files, ensuring that your local project accurately reflects the intended tab configurations in your Salesforce org.\n\nKey functionalities:\n\n- **Interactive Tab Selection:** Displays a multi-select menu of all available tabs in your org, allowing you to choose which tabs to update.\n- **Visibility Control:** Lets you set the visibility for the selected tabs to either `DefaultOn` (Visible) or `Hidden`.\n- **Profile Selection:** Presents a multi-select menu of all .profile-meta.xml files in your project, allowing you to apply the tab visibility changes to specific profiles.\n- **XML Updates:** Modifies the <tabVisibilities> section of the selected profile XML files to reflect the chosen tab settings. If a tab visibility setting already exists for a selected tab, it will be updated; otherwise, a new one will be added.\n- **Sorted Output:** The <tabVisibilities> in the updated profile XML files are sorted alphabetically for consistency and readability.\n\n## Technical explanations\n\nThe command's technical implementation involves:\n\n- **SOQL Queries (Tooling API):** It queries the `TabDefinition` object using `soqlQueryTooling` to retrieve a list of all available tabs in the target org.\n- **File Discovery:** Uses `glob` to find all .profile-meta.xml files within the specified project path.\n- **Interactive Prompts:** Leverages the `prompts` library to create interactive menus for selecting tabs, visibility settings, and profiles.\n- **XML Parsing and Manipulation:** Uses `parseXmlFile` to read the content of profile XML files and `writeXmlFile` to write the modified content back. It manipulates the `tabVisibilities` array within the parsed XML to add or update tab settings.\n- **Array Sorting:** Employs the `sort-array` library to sort the `tabVisibilities` alphabetically by tab name.\n- **Logging:** Provides feedback to the user about which profiles have been updated and a summary of the changes.\n",
|
|
12166
|
-
"examples": [
|
|
12167
|
-
"$ sf hardis:project:fix:profiletabs"
|
|
12168
|
-
],
|
|
12169
|
-
"flags": {
|
|
12170
|
-
"json": {
|
|
12171
|
-
"description": "Format output as json.",
|
|
12172
|
-
"helpGroup": "GLOBAL",
|
|
12173
|
-
"name": "json",
|
|
12174
|
-
"allowNo": false,
|
|
12175
|
-
"type": "boolean"
|
|
12176
|
-
},
|
|
12177
|
-
"flags-dir": {
|
|
12178
|
-
"helpGroup": "GLOBAL",
|
|
12179
|
-
"name": "flags-dir",
|
|
12180
|
-
"summary": "Import flag values from a directory.",
|
|
12181
|
-
"hasDynamicHelp": false,
|
|
12182
|
-
"multiple": false,
|
|
12183
|
-
"type": "option"
|
|
12184
|
-
},
|
|
12185
|
-
"path": {
|
|
12186
|
-
"char": "p",
|
|
12187
|
-
"description": "Root folder",
|
|
12188
|
-
"name": "path",
|
|
12189
|
-
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
12190
|
-
"hasDynamicHelp": false,
|
|
12191
|
-
"multiple": false,
|
|
12192
|
-
"type": "option"
|
|
12193
|
-
},
|
|
12194
|
-
"debug": {
|
|
12195
|
-
"char": "d",
|
|
12196
|
-
"description": "Activate debug mode (more logs)",
|
|
12197
|
-
"name": "debug",
|
|
12198
|
-
"allowNo": false,
|
|
12199
|
-
"type": "boolean"
|
|
12200
|
-
},
|
|
12201
|
-
"websocket": {
|
|
12202
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
12203
|
-
"name": "websocket",
|
|
12204
|
-
"hasDynamicHelp": false,
|
|
12205
|
-
"multiple": false,
|
|
12206
|
-
"type": "option"
|
|
12207
|
-
},
|
|
12208
|
-
"skipauth": {
|
|
12209
|
-
"description": "Skip authentication check when a default username is required",
|
|
12210
|
-
"name": "skipauth",
|
|
12211
|
-
"allowNo": false,
|
|
12212
|
-
"type": "boolean"
|
|
12213
|
-
},
|
|
12214
|
-
"target-org": {
|
|
12215
|
-
"aliases": [
|
|
12216
|
-
"targetusername",
|
|
12217
|
-
"u"
|
|
12218
|
-
],
|
|
12219
|
-
"char": "o",
|
|
12220
|
-
"deprecateAliases": true,
|
|
12221
|
-
"name": "target-org",
|
|
12222
|
-
"noCacheDefault": true,
|
|
12223
|
-
"required": true,
|
|
12224
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
12225
|
-
"hasDynamicHelp": true,
|
|
12226
|
-
"multiple": false,
|
|
12227
|
-
"type": "option"
|
|
12228
|
-
}
|
|
12229
|
-
},
|
|
12230
|
-
"hasDynamicHelp": true,
|
|
12231
|
-
"hiddenAliases": [],
|
|
12232
|
-
"id": "hardis:project:fix:profiletabs",
|
|
12233
|
-
"pluginAlias": "sfdx-hardis",
|
|
12234
|
-
"pluginName": "sfdx-hardis",
|
|
12235
|
-
"pluginType": "core",
|
|
12236
|
-
"strict": true,
|
|
12237
|
-
"enableJsonFlag": true,
|
|
12238
|
-
"title": "Fix profiles to add tabs that are not retrieved by SF CLI",
|
|
12239
|
-
"requiresProject": true,
|
|
12240
|
-
"isESM": true,
|
|
12241
|
-
"relativePath": [
|
|
12242
|
-
"lib",
|
|
12243
|
-
"commands",
|
|
12244
|
-
"hardis",
|
|
12245
|
-
"project",
|
|
12246
|
-
"fix",
|
|
12247
|
-
"profiletabs.js"
|
|
12248
|
-
],
|
|
12249
|
-
"aliasPermutations": [],
|
|
12250
|
-
"permutations": [
|
|
12251
|
-
"hardis:project:fix:profiletabs",
|
|
12252
|
-
"project:hardis:fix:profiletabs",
|
|
12253
|
-
"project:fix:hardis:profiletabs",
|
|
12254
|
-
"project:fix:profiletabs:hardis",
|
|
12255
|
-
"hardis:fix:project:profiletabs",
|
|
12256
|
-
"fix:hardis:project:profiletabs",
|
|
12257
|
-
"fix:project:hardis:profiletabs",
|
|
12258
|
-
"fix:project:profiletabs:hardis",
|
|
12259
|
-
"hardis:fix:profiletabs:project",
|
|
12260
|
-
"fix:hardis:profiletabs:project",
|
|
12261
|
-
"fix:profiletabs:hardis:project",
|
|
12262
|
-
"fix:profiletabs:project:hardis",
|
|
12263
|
-
"hardis:project:profiletabs:fix",
|
|
12264
|
-
"project:hardis:profiletabs:fix",
|
|
12265
|
-
"project:profiletabs:hardis:fix",
|
|
12266
|
-
"project:profiletabs:fix:hardis",
|
|
12267
|
-
"hardis:profiletabs:project:fix",
|
|
12268
|
-
"profiletabs:hardis:project:fix",
|
|
12269
|
-
"profiletabs:project:hardis:fix",
|
|
12270
|
-
"profiletabs:project:fix:hardis",
|
|
12271
|
-
"hardis:profiletabs:fix:project",
|
|
12272
|
-
"profiletabs:hardis:fix:project",
|
|
12273
|
-
"profiletabs:fix:hardis:project",
|
|
12274
|
-
"profiletabs:fix:project:hardis"
|
|
12275
|
-
]
|
|
12276
|
-
},
|
|
12277
|
-
"hardis:project:fix:v53flexipages": {
|
|
12278
|
-
"aliases": [],
|
|
12279
|
-
"args": {},
|
|
12280
|
-
"description": "\n## Command Behavior\n\n**Fixes Salesforce FlexiPages for compatibility with API Version 53.0 (Winter '22 release) by adding missing identifiers to component instances.**\n\nSalesforce introduced a change in API Version 53.0 that requires `identifier` tags within `componentInstance` and `fieldInstance` elements in FlexiPage metadata. If these identifiers are missing, deployments to orgs with API version 53.0 or higher will fail. This command automates the process of adding these missing identifiers, ensuring your FlexiPages remain deployable.\n\nKey functionalities:\n\n- **Targeted FlexiPage Processing:** Scans all .flexipage-meta.xml files within the specified root folder (defaults to current working directory).\n- **Identifier Injection:** Inserts a unique `identifier` tag (e.g., `SFDX_HARDIS_REPLACEMENT_ID`) into `componentInstance` and `fieldInstance` elements that lack one.\n\n**Important Note:** After running this command, ensure you update your `apiVersion` to `53.0` (or higher) in your `package.xml` and `sfdx-project.json` files.\n\n## Technical explanations\n\nThe command's technical implementation involves:\n\n- **File Discovery:** Uses `glob` to find all .flexipage-meta.xml files.\n- **Content Reading:** Reads the XML content of each FlexiPage file.\n- **Regular Expression Replacement:** Employs a set of regular expressions to identify specific XML patterns (componentName.../componentName.../componentInstance, componentName.../componentName.../visibilityRule, fieldItem.../fieldItem.../fieldInstance) that are missing the `identifier` tag.\n- **Dynamic ID Generation:** For each match, it generates a unique identifier (e.g., `sfdxHardisIdX`) and injects it into the XML structure.\n- **File Writing:** If changes are made, the modified XML content is written back to the FlexiPage file using `fs.writeFile`.\n- **Logging:** Provides messages about which FlexiPages are being processed and a summary of the total number of identifiers added.\n",
|
|
12281
|
-
"examples": [
|
|
12282
|
-
"$ sf hardis:project:fix:v53flexipages"
|
|
12283
|
-
],
|
|
12284
|
-
"flags": {
|
|
12285
|
-
"json": {
|
|
12286
|
-
"description": "Format output as json.",
|
|
12287
|
-
"helpGroup": "GLOBAL",
|
|
12288
|
-
"name": "json",
|
|
12289
|
-
"allowNo": false,
|
|
12290
|
-
"type": "boolean"
|
|
12291
|
-
},
|
|
12292
|
-
"flags-dir": {
|
|
12293
|
-
"helpGroup": "GLOBAL",
|
|
12294
|
-
"name": "flags-dir",
|
|
12295
|
-
"summary": "Import flag values from a directory.",
|
|
12296
|
-
"hasDynamicHelp": false,
|
|
12297
|
-
"multiple": false,
|
|
12298
|
-
"type": "option"
|
|
12299
|
-
},
|
|
12300
|
-
"path": {
|
|
12301
|
-
"char": "p",
|
|
12302
|
-
"description": "Root folder",
|
|
12303
|
-
"name": "path",
|
|
12304
|
-
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
12305
|
-
"hasDynamicHelp": false,
|
|
12306
|
-
"multiple": false,
|
|
12307
|
-
"type": "option"
|
|
12308
|
-
},
|
|
12309
|
-
"debug": {
|
|
12310
|
-
"char": "d",
|
|
12311
|
-
"description": "Activate debug mode (more logs)",
|
|
12312
|
-
"name": "debug",
|
|
12313
|
-
"allowNo": false,
|
|
12314
|
-
"type": "boolean"
|
|
12315
|
-
},
|
|
12316
|
-
"websocket": {
|
|
12317
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
12318
|
-
"name": "websocket",
|
|
12319
|
-
"hasDynamicHelp": false,
|
|
12320
|
-
"multiple": false,
|
|
12321
|
-
"type": "option"
|
|
12322
|
-
},
|
|
12323
|
-
"skipauth": {
|
|
12324
|
-
"description": "Skip authentication check when a default username is required",
|
|
12325
|
-
"name": "skipauth",
|
|
12326
|
-
"allowNo": false,
|
|
12327
|
-
"type": "boolean"
|
|
12328
|
-
}
|
|
12329
|
-
},
|
|
12330
|
-
"hasDynamicHelp": false,
|
|
12331
|
-
"hiddenAliases": [],
|
|
12332
|
-
"id": "hardis:project:fix:v53flexipages",
|
|
12333
|
-
"pluginAlias": "sfdx-hardis",
|
|
12334
|
-
"pluginName": "sfdx-hardis",
|
|
12335
|
-
"pluginType": "core",
|
|
12336
|
-
"strict": true,
|
|
12337
|
-
"enableJsonFlag": true,
|
|
12338
|
-
"title": "Fix flexipages for v53",
|
|
12339
|
-
"requiresProject": true,
|
|
12340
|
-
"isESM": true,
|
|
12341
|
-
"relativePath": [
|
|
12342
|
-
"lib",
|
|
12343
|
-
"commands",
|
|
12344
|
-
"hardis",
|
|
12345
|
-
"project",
|
|
12346
|
-
"fix",
|
|
12347
|
-
"v53flexipages.js"
|
|
12348
|
-
],
|
|
12349
|
-
"aliasPermutations": [],
|
|
12350
|
-
"permutations": [
|
|
12351
|
-
"hardis:project:fix:v53flexipages",
|
|
12352
|
-
"project:hardis:fix:v53flexipages",
|
|
12353
|
-
"project:fix:hardis:v53flexipages",
|
|
12354
|
-
"project:fix:v53flexipages:hardis",
|
|
12355
|
-
"hardis:fix:project:v53flexipages",
|
|
12356
|
-
"fix:hardis:project:v53flexipages",
|
|
12357
|
-
"fix:project:hardis:v53flexipages",
|
|
12358
|
-
"fix:project:v53flexipages:hardis",
|
|
12359
|
-
"hardis:fix:v53flexipages:project",
|
|
12360
|
-
"fix:hardis:v53flexipages:project",
|
|
12361
|
-
"fix:v53flexipages:hardis:project",
|
|
12362
|
-
"fix:v53flexipages:project:hardis",
|
|
12363
|
-
"hardis:project:v53flexipages:fix",
|
|
12364
|
-
"project:hardis:v53flexipages:fix",
|
|
12365
|
-
"project:v53flexipages:hardis:fix",
|
|
12366
|
-
"project:v53flexipages:fix:hardis",
|
|
12367
|
-
"hardis:v53flexipages:project:fix",
|
|
12368
|
-
"v53flexipages:hardis:project:fix",
|
|
12369
|
-
"v53flexipages:project:hardis:fix",
|
|
12370
|
-
"v53flexipages:project:fix:hardis",
|
|
12371
|
-
"hardis:v53flexipages:fix:project",
|
|
12372
|
-
"v53flexipages:hardis:fix:project",
|
|
12373
|
-
"v53flexipages:fix:hardis:project",
|
|
12374
|
-
"v53flexipages:fix:project:hardis"
|
|
12375
|
-
]
|
|
12376
|
-
},
|
|
12377
12384
|
"hardis:project:generate:bypass": {
|
|
12378
12385
|
"aliases": [],
|
|
12379
12386
|
"args": {},
|
|
@@ -14856,5 +14863,5 @@
|
|
|
14856
14863
|
]
|
|
14857
14864
|
}
|
|
14858
14865
|
},
|
|
14859
|
-
"version": "6.0.
|
|
14866
|
+
"version": "6.0.4-beta202508131002.0"
|
|
14860
14867
|
}
|