sfdx-hardis 5.34.1 → 5.35.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.
Files changed (42) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/lib/commands/hardis/doc/project2markdown.d.ts +2 -1
  3. package/lib/commands/hardis/doc/project2markdown.js +64 -46
  4. package/lib/commands/hardis/doc/project2markdown.js.map +1 -1
  5. package/lib/common/aiProvider/index.js +6 -1
  6. package/lib/common/aiProvider/index.js.map +1 -1
  7. package/lib/common/aiProvider/promptTemplates/PROMPT_DESCRIBE_PACKAGE.d.ts +3 -0
  8. package/lib/common/aiProvider/promptTemplates/PROMPT_DESCRIBE_PACKAGE.js +54 -0
  9. package/lib/common/aiProvider/promptTemplates/PROMPT_DESCRIBE_PACKAGE.js.map +1 -0
  10. package/lib/common/aiProvider/promptTemplates/index.js +2 -0
  11. package/lib/common/aiProvider/promptTemplates/index.js.map +1 -1
  12. package/lib/common/aiProvider/promptTemplates/types.d.ts +1 -0
  13. package/lib/common/aiProvider/promptTemplates.d.ts +1 -1
  14. package/lib/common/aiProvider/promptTemplates.js +6 -0
  15. package/lib/common/aiProvider/promptTemplates.js.map +1 -1
  16. package/lib/common/aiProvider/utils.js +7 -0
  17. package/lib/common/aiProvider/utils.js.map +1 -1
  18. package/lib/common/docBuilder/docBuilderPackage.d.ts +10 -0
  19. package/lib/common/docBuilder/docBuilderPackage.js +41 -0
  20. package/lib/common/docBuilder/docBuilderPackage.js.map +1 -0
  21. package/lib/common/docBuilder/docBuilderPermissionSet.js +6 -1
  22. package/lib/common/docBuilder/docBuilderPermissionSet.js.map +1 -1
  23. package/lib/common/docBuilder/docBuilderProfile.d.ts +1 -0
  24. package/lib/common/docBuilder/docBuilderProfile.js +39 -12
  25. package/lib/common/docBuilder/docBuilderProfile.js.map +1 -1
  26. package/lib/common/docBuilder/docBuilderRoot.js +27 -8
  27. package/lib/common/docBuilder/docBuilderRoot.js.map +1 -1
  28. package/lib/common/docBuilder/docUtils.d.ts +1 -0
  29. package/lib/common/docBuilder/docUtils.js +32 -2
  30. package/lib/common/docBuilder/docUtils.js.map +1 -1
  31. package/lib/common/utils/flowVisualiser/nodeFormatUtils.js +1 -1
  32. package/lib/common/utils/flowVisualiser/nodeFormatUtils.js.map +1 -1
  33. package/lib/common/utils/index.js +15 -0
  34. package/lib/common/utils/index.js.map +1 -1
  35. package/lib/common/utils/markdownUtils.d.ts +1 -0
  36. package/lib/common/utils/markdownUtils.js +22 -0
  37. package/lib/common/utils/markdownUtils.js.map +1 -1
  38. package/lib/common/utils/mermaidUtils.js +3 -2
  39. package/lib/common/utils/mermaidUtils.js.map +1 -1
  40. package/oclif.lock +32 -52
  41. package/oclif.manifest.json +365 -365
  42. package/package.json +6 -6
@@ -57,12 +57,13 @@
57
57
  "world:hello"
58
58
  ]
59
59
  },
60
- "hardis:cache:clear": {
60
+ "hardis:auth:login": {
61
61
  "aliases": [],
62
62
  "args": {},
63
- "description": "Clear cache generated by sfdx-hardis",
63
+ "description": "Login to salesforce org",
64
64
  "examples": [
65
- "$ sf hardis:cache:clear"
65
+ "$ sf hardis:auth:login",
66
+ "CI=true sf hardis:auth:login"
66
67
  ],
67
68
  "flags": {
68
69
  "json": {
@@ -80,6 +81,28 @@
80
81
  "multiple": false,
81
82
  "type": "option"
82
83
  },
84
+ "instanceurl": {
85
+ "char": "r",
86
+ "description": "URL of org instance",
87
+ "name": "instanceurl",
88
+ "hasDynamicHelp": false,
89
+ "multiple": false,
90
+ "type": "option"
91
+ },
92
+ "devhub": {
93
+ "char": "h",
94
+ "description": "Also connect associated DevHub",
95
+ "name": "devhub",
96
+ "allowNo": false,
97
+ "type": "boolean"
98
+ },
99
+ "scratchorg": {
100
+ "char": "s",
101
+ "description": "Scratch org",
102
+ "name": "scratchorg",
103
+ "allowNo": false,
104
+ "type": "boolean"
105
+ },
83
106
  "debug": {
84
107
  "char": "d",
85
108
  "description": "Activate debug mode (more logs)",
@@ -103,39 +126,38 @@
103
126
  },
104
127
  "hasDynamicHelp": false,
105
128
  "hiddenAliases": [],
106
- "id": "hardis:cache:clear",
129
+ "id": "hardis:auth:login",
107
130
  "pluginAlias": "sfdx-hardis",
108
131
  "pluginName": "sfdx-hardis",
109
132
  "pluginType": "core",
110
133
  "strict": true,
111
134
  "enableJsonFlag": true,
112
- "title": "Clear sfdx-hardis cache",
135
+ "title": "Login",
113
136
  "requiresProject": false,
114
137
  "isESM": true,
115
138
  "relativePath": [
116
139
  "lib",
117
140
  "commands",
118
141
  "hardis",
119
- "cache",
120
- "clear.js"
142
+ "auth",
143
+ "login.js"
121
144
  ],
122
145
  "aliasPermutations": [],
123
146
  "permutations": [
124
- "hardis:cache:clear",
125
- "cache:hardis:clear",
126
- "cache:clear:hardis",
127
- "hardis:clear:cache",
128
- "clear:hardis:cache",
129
- "clear:cache:hardis"
147
+ "hardis:auth:login",
148
+ "auth:hardis:login",
149
+ "auth:login:hardis",
150
+ "hardis:login:auth",
151
+ "login:hardis:auth",
152
+ "login:auth:hardis"
130
153
  ]
131
154
  },
132
- "hardis:auth:login": {
155
+ "hardis:cache:clear": {
133
156
  "aliases": [],
134
157
  "args": {},
135
- "description": "Login to salesforce org",
158
+ "description": "Clear cache generated by sfdx-hardis",
136
159
  "examples": [
137
- "$ sf hardis:auth:login",
138
- "CI=true sf hardis:auth:login"
160
+ "$ sf hardis:cache:clear"
139
161
  ],
140
162
  "flags": {
141
163
  "json": {
@@ -153,28 +175,6 @@
153
175
  "multiple": false,
154
176
  "type": "option"
155
177
  },
156
- "instanceurl": {
157
- "char": "r",
158
- "description": "URL of org instance",
159
- "name": "instanceurl",
160
- "hasDynamicHelp": false,
161
- "multiple": false,
162
- "type": "option"
163
- },
164
- "devhub": {
165
- "char": "h",
166
- "description": "Also connect associated DevHub",
167
- "name": "devhub",
168
- "allowNo": false,
169
- "type": "boolean"
170
- },
171
- "scratchorg": {
172
- "char": "s",
173
- "description": "Scratch org",
174
- "name": "scratchorg",
175
- "allowNo": false,
176
- "type": "boolean"
177
- },
178
178
  "debug": {
179
179
  "char": "d",
180
180
  "description": "Activate debug mode (more logs)",
@@ -198,30 +198,30 @@
198
198
  },
199
199
  "hasDynamicHelp": false,
200
200
  "hiddenAliases": [],
201
- "id": "hardis:auth:login",
201
+ "id": "hardis:cache:clear",
202
202
  "pluginAlias": "sfdx-hardis",
203
203
  "pluginName": "sfdx-hardis",
204
204
  "pluginType": "core",
205
205
  "strict": true,
206
206
  "enableJsonFlag": true,
207
- "title": "Login",
207
+ "title": "Clear sfdx-hardis cache",
208
208
  "requiresProject": false,
209
209
  "isESM": true,
210
210
  "relativePath": [
211
211
  "lib",
212
212
  "commands",
213
213
  "hardis",
214
- "auth",
215
- "login.js"
214
+ "cache",
215
+ "clear.js"
216
216
  ],
217
217
  "aliasPermutations": [],
218
218
  "permutations": [
219
- "hardis:auth:login",
220
- "auth:hardis:login",
221
- "auth:login:hardis",
222
- "hardis:login:auth",
223
- "login:hardis:auth",
224
- "login:auth:hardis"
219
+ "hardis:cache:clear",
220
+ "cache:hardis:clear",
221
+ "cache:clear:hardis",
222
+ "hardis:clear:cache",
223
+ "clear:hardis:cache",
224
+ "clear:cache:hardis"
225
225
  ]
226
226
  },
227
227
  "hardis:config:get": {
@@ -781,7 +781,7 @@
781
781
  "hardis:doc:project2markdown": {
782
782
  "aliases": [],
783
783
  "args": {},
784
- "description": "Generates a markdown documentation from a SFDX project\n\n- Objects (with fields, validation rules, relationships and dependencies)\n- Automations\n - Approval Processes\n - Assignment Rules\n - AutoResponse Rules\n - Escalation Rules\n - Flows\n- Authorizations\n - Profiles\n - Permission Set Groups\n - Permission Sets\n- Code\n - Apex\n - Lightning Web Components\n- Lightning Pages\n- SFDX-Hardis Config\n- Branches & Orgs\n- Installed Packages\n- Manifests\n\nCan work on any sfdx project, no need for it to be a sfdx-hardis flavored one.\n\nGenerates markdown files will be written in **docs** folder (except README.md where a link to doc index is added)\n\n- You can customize the pages following [mkdocs-material setup documentation](https://squidfunk.github.io/mkdocs-material/setup/)\n- You can manually add new markdown files in the \"docs\" folder to extend this documentation and add references to them in \"mkdocs.yml\"\n- You can also add images in folder \"docs/assets\" and embed them in markdown files.\n\nTo read Flow documentations if your markdown reader doesn't handle MermaidJS syntax, this command could require @mermaid-js/mermaid-cli\n\n- Run `npm install @mermaid-js/mermaid-cli --global` if puppeteer works in your environment\n- It can also be run as a docker image\n\nBoth modes will be tried by default, but you can also force one of them by defining environment variable `MERMAID_MODES=docker` or `MERMAID_MODES=cli`\n\n_sfdx-hardis docker image is alpine-based and does not succeed to run mermaid/puppeteer: if you can help, please submit a PR !_\n\nIf Flow history doc always display a single state, you probably need to update your workflow configuration:\n\n- on Gitlab: Env variable [`GIT_FETCH_EXTRA_FLAGS: --depth 10000`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.gitlab-ci.yml#L11)\n- on GitHub: [`fetch-depth: 0`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.github/workflows/org-monitoring.yml#L58)\n- on Azure: [`fetchDepth: \"0\"`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/azure-pipelines.yml#L39)\n- on Bitbucket: [`step: clone: depth: full`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/bitbucket-pipelines.yml#L18)\n\n![Screenshot flow doc](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-flow-doc.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-project-doc.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-project-doc-2.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-object-diagram.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-project-doc-profile.gif)\n\nIf it is a sfdx-hardis CI/CD project, a diagram of the branches and orgs strategy will be generated.\n\n![](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-doc-branches-strategy.jpg)\n\nIf [AI integration](https://sfdx-hardis.cloudity.com/salesforce-ai-setup/) is configured, documentation will contain a summary of the Flow.\n\nIf you have a complex strategy, you might need to input property **mergeTargets** in branch-scoped sfdx-hardis.yml file to have a correct diagram.\n\n## Doc HTML Pages\n\nTo read the documentation as HTML pages, run the following code (you need [**Python**](https://www.python.org/downloads/) on your computer)\n\n```python\npip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || python -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || py -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists\nmkdocs serve -v || python -m mkdocs serve -v || py -m mkdocs serve -v\n```\n\nTo just generate HTML pages that you can host anywhere, run `mkdocs build -v || python -m mkdocs build -v || py -m mkdocs build -v`\n\n",
784
+ "description": "Generates a markdown documentation from a SFDX project\n\n- Objects (with fields, validation rules, relationships and dependencies)\n- Automations\n - Approval Processes\n - Assignment Rules\n - AutoResponse Rules\n - Escalation Rules\n - Flows\n- Authorizations\n - Profiles\n - Permission Set Groups\n - Permission Sets\n- Code\n - Apex\n - Lightning Web Components\n- Lightning Pages\n- Packages\n- SFDX-Hardis Config\n- Branches & Orgs\n- Manifests\n\nCan work on any sfdx project, no need for it to be a sfdx-hardis flavored one.\n\nGenerates markdown files will be written in **docs** folder (except README.md where a link to doc index is added)\n\n- You can customize the pages following [mkdocs-material setup documentation](https://squidfunk.github.io/mkdocs-material/setup/)\n- You can manually add new markdown files in the \"docs\" folder to extend this documentation and add references to them in \"mkdocs.yml\"\n- You can also add images in folder \"docs/assets\" and embed them in markdown files.\n\nTo read Flow documentations if your markdown reader doesn't handle MermaidJS syntax, this command could require @mermaid-js/mermaid-cli\n\n- Run `npm install @mermaid-js/mermaid-cli --global` if puppeteer works in your environment\n- It can also be run as a docker image\n\nBoth modes will be tried by default, but you can also force one of them by defining environment variable `MERMAID_MODES=docker` or `MERMAID_MODES=cli`\n\n_sfdx-hardis docker image is alpine-based and does not succeed to run mermaid/puppeteer: if you can help, please submit a PR !_\n\nIf Flow history doc always display a single state, you probably need to update your workflow configuration:\n\n- on Gitlab: Env variable [`GIT_FETCH_EXTRA_FLAGS: --depth 10000`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.gitlab-ci.yml#L11)\n- on GitHub: [`fetch-depth: 0`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.github/workflows/org-monitoring.yml#L58)\n- on Azure: [`fetchDepth: \"0\"`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/azure-pipelines.yml#L39)\n- on Bitbucket: [`step: clone: depth: full`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/bitbucket-pipelines.yml#L18)\n\n![Screenshot flow doc](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-flow-doc.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-project-doc.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-project-doc-2.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-object-diagram.jpg)\n\n![Screenshot project documentation](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-project-doc-profile.gif)\n\nIf it is a sfdx-hardis CI/CD project, a diagram of the branches and orgs strategy will be generated.\n\n![](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/screenshot-doc-branches-strategy.jpg)\n\nIf [AI integration](https://sfdx-hardis.cloudity.com/salesforce-ai-setup/) is configured, documentation will contain a summary of the Flow.\n\nIf you have a complex strategy, you might need to input property **mergeTargets** in branch-scoped sfdx-hardis.yml file to have a correct diagram.\n\n## Doc HTML Pages\n\nTo read the documentation as HTML pages, run the following code (you need [**Python**](https://www.python.org/downloads/) on your computer)\n\n```python\npip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || python -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || py -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists\nmkdocs serve -v || python -m mkdocs serve -v || py -m mkdocs serve -v\n```\n\nTo just generate HTML pages that you can host anywhere, run `mkdocs build -v || python -m mkdocs build -v || py -m mkdocs build -v`\n\n",
785
785
  "examples": [
786
786
  "$ sf hardis:doc:project2markdown",
787
787
  "$ sf hardis:doc:project2markdown --with-history",
@@ -10772,12 +10772,14 @@
10772
10772
  "profilestopermsets:convert:project:hardis"
10773
10773
  ]
10774
10774
  },
10775
- "hardis:project:fix:profiletabs": {
10775
+ "hardis:project:deploy:notify": {
10776
10776
  "aliases": [],
10777
10777
  "args": {},
10778
- "description": "Interactive prompts to add tab visibilities that are not retrieved by project retrieve start",
10778
+ "description": "Post notifications related to:\n\n- **Deployment simulation** _(use with --check-only)_\n\n- **Deployment process** _(to call only if your deployment is successful)_\n\n### Integrations\n\nAccording to the [integrations you configured](https://sfdx-hardis.cloudity.com/salesforce-ci-cd-setup-integrations-home/), notifications can contain deployment information and [Flow Visual Git Diff](https://sfdx-hardis.cloudity.com/salesforce-deployment-assistant-home/#flow-visual-git-diff)\n\n - GitHub, Gitlab, Azure DevOps, Bitbucket comments on Pull Requests (including Flows Visual Git Diff)\n\n - Slack, Microsoft Teams, Email deployment summary after a successful deployment\n\n - JIRA tags and comments on tickets that just has been deployed\n\n![](https://sfdx-hardis.cloudity.com/assets/images/screenshot-jira-gitlab.jpg)\n\n![](https://sfdx-hardis.cloudity.com/assets/images/screenshot-jira-slack.jpg)\n\n### Flows Visual Git Diff\n\n- Visually show you the differences on a diagram\n\n- Display the update details without having to open any XML !\n\n🟩 = added\n\n🟥 = removed\n\n🟧 = updated\n\n![](https://sfdx-hardis.cloudity.com/assets/images/flow-visual-git-diff.jpg)\n\n![](https://sfdx-hardis.cloudity.com/assets/images/flow-visual-git-diff-2.jpg)\n\n### In custom CI/CD workflow\n\nExample of usage in a custom CI/CD pipeline:\n\n```bash\n# Disable exit-on-error temporarily\nset +e\n\n# Run the deploy command\nsf project deploy start [....]\nRET_CODE=$?\n\n# Re-enable exit-on-error\nset -e\n\n# Determine MYSTATUS based on return code\nif [ $RET_CODE -eq 0 ]; then\n MYSTATUS=\"valid\"\nelse\n MYSTATUS=\"invalid\"\nfi\n\n# Run the notify command with MYSTATUS\nsf hardis:project:deploy:notify --check-only --deploy-status \"$MYSTATUS\"\n```\n\n### Other usages\n\nThis command is for custom SF Cli pipelines, if you are a sfdx-hardis user, it is already embedded in sf hardis:deploy:smart.\n\nYou can also use [sfdx-hardis wrapper commands of SF deployment commands](https://sfdx-hardis.cloudity.com/salesforce-deployment-assistant-setup/#using-custom-cicd-pipeline)\n",
10779
10779
  "examples": [
10780
- "$ sf hardis:project:fix:profiletabs"
10780
+ "$ sf hardis:project:deploy:notify --check-only --deploy-status valid --message \"This deployment check is valid\\n\\nYahooo !!\"",
10781
+ "$ sf hardis:project:deploy:notify --check-only --deploy-status invalid --message \"This deployment check has failed !\\n\\Oh no !!\"",
10782
+ "$ sf hardis:project:deploy:notify --deploy-status valid --message \"This deployment has been processed !\\n\\nYahooo !!\""
10781
10783
  ],
10782
10784
  "flags": {
10783
10785
  "json": {
@@ -10795,11 +10797,32 @@
10795
10797
  "multiple": false,
10796
10798
  "type": "option"
10797
10799
  },
10798
- "path": {
10799
- "char": "p",
10800
- "description": "Root folder",
10801
- "name": "path",
10802
- "default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
10800
+ "check-only": {
10801
+ "char": "c",
10802
+ "description": "Use this option to send notifications from a Deployment simulation job",
10803
+ "name": "check-only",
10804
+ "allowNo": false,
10805
+ "type": "boolean"
10806
+ },
10807
+ "deploy-status": {
10808
+ "char": "s",
10809
+ "description": "Send success, failure or unknown (default) to indicate if the deployment or deployment simulation is in success or not",
10810
+ "name": "deploy-status",
10811
+ "default": "unknown",
10812
+ "hasDynamicHelp": false,
10813
+ "multiple": false,
10814
+ "options": [
10815
+ "valid",
10816
+ "invalid",
10817
+ "unknown"
10818
+ ],
10819
+ "type": "option"
10820
+ },
10821
+ "message": {
10822
+ "char": "m",
10823
+ "description": "Custom message that you want to be added in notifications (string or markdown format)",
10824
+ "name": "message",
10825
+ "default": "",
10803
10826
  "hasDynamicHelp": false,
10804
10827
  "multiple": false,
10805
10828
  "type": "option"
@@ -10842,13 +10865,13 @@
10842
10865
  },
10843
10866
  "hasDynamicHelp": true,
10844
10867
  "hiddenAliases": [],
10845
- "id": "hardis:project:fix:profiletabs",
10868
+ "id": "hardis:project:deploy:notify",
10846
10869
  "pluginAlias": "sfdx-hardis",
10847
10870
  "pluginName": "sfdx-hardis",
10848
10871
  "pluginType": "core",
10849
10872
  "strict": true,
10850
10873
  "enableJsonFlag": true,
10851
- "title": "Fix profiles to add tabs that are not retrieved by SF CLI",
10874
+ "title": "Deployment Notifications",
10852
10875
  "requiresProject": true,
10853
10876
  "isESM": true,
10854
10877
  "relativePath": [
@@ -10856,44 +10879,43 @@
10856
10879
  "commands",
10857
10880
  "hardis",
10858
10881
  "project",
10859
- "fix",
10860
- "profiletabs.js"
10882
+ "deploy",
10883
+ "notify.js"
10861
10884
  ],
10862
10885
  "aliasPermutations": [],
10863
10886
  "permutations": [
10864
- "hardis:project:fix:profiletabs",
10865
- "project:hardis:fix:profiletabs",
10866
- "project:fix:hardis:profiletabs",
10867
- "project:fix:profiletabs:hardis",
10868
- "hardis:fix:project:profiletabs",
10869
- "fix:hardis:project:profiletabs",
10870
- "fix:project:hardis:profiletabs",
10871
- "fix:project:profiletabs:hardis",
10872
- "hardis:fix:profiletabs:project",
10873
- "fix:hardis:profiletabs:project",
10874
- "fix:profiletabs:hardis:project",
10875
- "fix:profiletabs:project:hardis",
10876
- "hardis:project:profiletabs:fix",
10877
- "project:hardis:profiletabs:fix",
10878
- "project:profiletabs:hardis:fix",
10879
- "project:profiletabs:fix:hardis",
10880
- "hardis:profiletabs:project:fix",
10881
- "profiletabs:hardis:project:fix",
10882
- "profiletabs:project:hardis:fix",
10883
- "profiletabs:project:fix:hardis",
10884
- "hardis:profiletabs:fix:project",
10885
- "profiletabs:hardis:fix:project",
10886
- "profiletabs:fix:hardis:project",
10887
- "profiletabs:fix:project:hardis"
10887
+ "hardis:project:deploy:notify",
10888
+ "project:hardis:deploy:notify",
10889
+ "project:deploy:hardis:notify",
10890
+ "project:deploy:notify:hardis",
10891
+ "hardis:deploy:project:notify",
10892
+ "deploy:hardis:project:notify",
10893
+ "deploy:project:hardis:notify",
10894
+ "deploy:project:notify:hardis",
10895
+ "hardis:deploy:notify:project",
10896
+ "deploy:hardis:notify:project",
10897
+ "deploy:notify:hardis:project",
10898
+ "deploy:notify:project:hardis",
10899
+ "hardis:project:notify:deploy",
10900
+ "project:hardis:notify:deploy",
10901
+ "project:notify:hardis:deploy",
10902
+ "project:notify:deploy:hardis",
10903
+ "hardis:notify:project:deploy",
10904
+ "notify:hardis:project:deploy",
10905
+ "notify:project:hardis:deploy",
10906
+ "notify:project:deploy:hardis",
10907
+ "hardis:notify:deploy:project",
10908
+ "notify:hardis:deploy:project",
10909
+ "notify:deploy:hardis:project",
10910
+ "notify:deploy:project:hardis"
10888
10911
  ]
10889
10912
  },
10890
- "hardis:project:fix:v53flexipages": {
10891
- "aliases": [],
10892
- "args": {},
10893
- "description": "Fix flexipages for apiVersion v53 (Winter22).\n\nNote: Update api version to 53.0 in package.xml and sfdx-project.json",
10894
- "examples": [
10895
- "$ sf hardis:project:fix:v53flexipages"
10913
+ "hardis:project:deploy:quick": {
10914
+ "aliases": [
10915
+ "hardis:deploy:quick"
10896
10916
  ],
10917
+ "args": {},
10918
+ "description": "sfdx-hardis wrapper for **sf project deploy quick** that displays tips to solve deployment errors.\n\nNote: Use **--json** argument to have better results\n\n[![Assisted solving of Salesforce deployments errors](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/article-deployment-errors.jpg)](https://nicolas.vuillamy.fr/assisted-solving-of-salesforce-deployments-errors-47f3666a9ed0)\n\n[See documentation of Salesforce command](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference_project_commands_unified.htm#cli_reference_project_deploy_quick_unified)\n\n### Deployment pre or post commands\n\nYou can define command lines to run before or after a deployment, with parameters:\n\n- **id**: Unique Id for the command\n- **label**: Human readable label for the command\n- **skipIfError**: If defined to \"true\", the post-command won't be run if there is a deployment failure\n- **context**: Defines the context where the command will be run. Can be **all** (default), **check-deployment-only** or **process-deployment-only**\n- **runOnlyOnceByOrg**: If set to true, the command will be run only one time per org. A record of SfdxHardisTrace__c is stored to make that possible (it needs to be existing in target org)\n\nIf the commands are not the same depending on the target org, you can define them into **config/branches/.sfdx-hardis-BRANCHNAME.yml** instead of root **config/.sfdx-hardis.yml**\n\nExample:\n\n```yaml\ncommandsPreDeploy:\n - id: knowledgeUnassign\n label: Remove KnowledgeUser right to the user who has it\n command: sf data update record --sobject User --where \"UserPermissionsKnowledgeUser='true'\" --values \"UserPermissionsKnowledgeUser='false'\" --json\n - id: knowledgeAssign\n label: Assign Knowledge user to the deployment user\n command: sf data update record --sobject User --where \"Username='deploy.github@myclient.com'\" --values \"UserPermissionsKnowledgeUser='true'\" --json\n\ncommandsPostDeploy:\n - id: knowledgeUnassign\n label: Remove KnowledgeUser right to the user who has it\n command: sf data update record --sobject User --where \"UserPermissionsKnowledgeUser='true'\" --values \"UserPermissionsKnowledgeUser='false'\" --json\n - id: knowledgeAssign\n label: Assign Knowledge user to desired username\n command: sf data update record --sobject User --where \"Username='admin-yser@myclient.com'\" --values \"UserPermissionsKnowledgeUser='true'\" --json\n - id: someActionToRunJustOneTime\n label: And to run only if deployment is success\n command: sf sfdmu:run ...\n skipIfError: true\n context: process-deployment-only\n runOnlyOnceByOrg: true\n```\n",
10897
10919
  "flags": {
10898
10920
  "json": {
10899
10921
  "description": "Format output as json.",
@@ -10910,289 +10932,52 @@
10910
10932
  "multiple": false,
10911
10933
  "type": "option"
10912
10934
  },
10913
- "path": {
10914
- "char": "p",
10915
- "description": "Root folder",
10916
- "name": "path",
10917
- "default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
10935
+ "api-version": {
10936
+ "char": "a",
10937
+ "description": "api-version",
10938
+ "name": "api-version",
10918
10939
  "hasDynamicHelp": false,
10919
10940
  "multiple": false,
10920
10941
  "type": "option"
10921
10942
  },
10922
- "debug": {
10923
- "char": "d",
10924
- "description": "Activate debug mode (more logs)",
10925
- "name": "debug",
10943
+ "async": {
10944
+ "description": "async",
10945
+ "exclusive": [
10946
+ "wait"
10947
+ ],
10948
+ "name": "async",
10926
10949
  "allowNo": false,
10927
10950
  "type": "boolean"
10928
10951
  },
10929
- "websocket": {
10930
- "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
10931
- "name": "websocket",
10952
+ "target-org": {
10953
+ "char": "o",
10954
+ "name": "target-org",
10955
+ "noCacheDefault": true,
10956
+ "required": true,
10957
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
10958
+ "hasDynamicHelp": true,
10959
+ "multiple": false,
10960
+ "type": "option"
10961
+ },
10962
+ "tests": {
10963
+ "description": "tests",
10964
+ "name": "tests",
10932
10965
  "hasDynamicHelp": false,
10933
10966
  "multiple": false,
10934
10967
  "type": "option"
10935
10968
  },
10936
- "skipauth": {
10937
- "description": "Skip authentication check when a default username is required",
10938
- "name": "skipauth",
10939
- "allowNo": false,
10940
- "type": "boolean"
10941
- }
10942
- },
10943
- "hasDynamicHelp": false,
10944
- "hiddenAliases": [],
10945
- "id": "hardis:project:fix:v53flexipages",
10946
- "pluginAlias": "sfdx-hardis",
10947
- "pluginName": "sfdx-hardis",
10948
- "pluginType": "core",
10949
- "strict": true,
10950
- "enableJsonFlag": true,
10951
- "title": "Fix flexipages for v53",
10952
- "requiresProject": true,
10953
- "isESM": true,
10954
- "relativePath": [
10955
- "lib",
10956
- "commands",
10957
- "hardis",
10958
- "project",
10959
- "fix",
10960
- "v53flexipages.js"
10961
- ],
10962
- "aliasPermutations": [],
10963
- "permutations": [
10964
- "hardis:project:fix:v53flexipages",
10965
- "project:hardis:fix:v53flexipages",
10966
- "project:fix:hardis:v53flexipages",
10967
- "project:fix:v53flexipages:hardis",
10968
- "hardis:fix:project:v53flexipages",
10969
- "fix:hardis:project:v53flexipages",
10970
- "fix:project:hardis:v53flexipages",
10971
- "fix:project:v53flexipages:hardis",
10972
- "hardis:fix:v53flexipages:project",
10973
- "fix:hardis:v53flexipages:project",
10974
- "fix:v53flexipages:hardis:project",
10975
- "fix:v53flexipages:project:hardis",
10976
- "hardis:project:v53flexipages:fix",
10977
- "project:hardis:v53flexipages:fix",
10978
- "project:v53flexipages:hardis:fix",
10979
- "project:v53flexipages:fix:hardis",
10980
- "hardis:v53flexipages:project:fix",
10981
- "v53flexipages:hardis:project:fix",
10982
- "v53flexipages:project:hardis:fix",
10983
- "v53flexipages:project:fix:hardis",
10984
- "hardis:v53flexipages:fix:project",
10985
- "v53flexipages:hardis:fix:project",
10986
- "v53flexipages:fix:hardis:project",
10987
- "v53flexipages:fix:project:hardis"
10988
- ]
10989
- },
10990
- "hardis:project:deploy:notify": {
10991
- "aliases": [],
10992
- "args": {},
10993
- "description": "Post notifications related to:\n\n- **Deployment simulation** _(use with --check-only)_\n\n- **Deployment process** _(to call only if your deployment is successful)_\n\n### Integrations\n\nAccording to the [integrations you configured](https://sfdx-hardis.cloudity.com/salesforce-ci-cd-setup-integrations-home/), notifications can contain deployment information and [Flow Visual Git Diff](https://sfdx-hardis.cloudity.com/salesforce-deployment-assistant-home/#flow-visual-git-diff)\n\n - GitHub, Gitlab, Azure DevOps, Bitbucket comments on Pull Requests (including Flows Visual Git Diff)\n\n - Slack, Microsoft Teams, Email deployment summary after a successful deployment\n\n - JIRA tags and comments on tickets that just has been deployed\n\n![](https://sfdx-hardis.cloudity.com/assets/images/screenshot-jira-gitlab.jpg)\n\n![](https://sfdx-hardis.cloudity.com/assets/images/screenshot-jira-slack.jpg)\n\n### Flows Visual Git Diff\n\n- Visually show you the differences on a diagram\n\n- Display the update details without having to open any XML !\n\n🟩 = added\n\n🟥 = removed\n\n🟧 = updated\n\n![](https://sfdx-hardis.cloudity.com/assets/images/flow-visual-git-diff.jpg)\n\n![](https://sfdx-hardis.cloudity.com/assets/images/flow-visual-git-diff-2.jpg)\n\n### In custom CI/CD workflow\n\nExample of usage in a custom CI/CD pipeline:\n\n```bash\n# Disable exit-on-error temporarily\nset +e\n\n# Run the deploy command\nsf project deploy start [....]\nRET_CODE=$?\n\n# Re-enable exit-on-error\nset -e\n\n# Determine MYSTATUS based on return code\nif [ $RET_CODE -eq 0 ]; then\n MYSTATUS=\"valid\"\nelse\n MYSTATUS=\"invalid\"\nfi\n\n# Run the notify command with MYSTATUS\nsf hardis:project:deploy:notify --check-only --deploy-status \"$MYSTATUS\"\n```\n\n### Other usages\n\nThis command is for custom SF Cli pipelines, if you are a sfdx-hardis user, it is already embedded in sf hardis:deploy:smart.\n\nYou can also use [sfdx-hardis wrapper commands of SF deployment commands](https://sfdx-hardis.cloudity.com/salesforce-deployment-assistant-setup/#using-custom-cicd-pipeline)\n",
10994
- "examples": [
10995
- "$ sf hardis:project:deploy:notify --check-only --deploy-status valid --message \"This deployment check is valid\\n\\nYahooo !!\"",
10996
- "$ sf hardis:project:deploy:notify --check-only --deploy-status invalid --message \"This deployment check has failed !\\n\\Oh no !!\"",
10997
- "$ sf hardis:project:deploy:notify --deploy-status valid --message \"This deployment has been processed !\\n\\nYahooo !!\""
10998
- ],
10999
- "flags": {
11000
- "json": {
11001
- "description": "Format output as json.",
11002
- "helpGroup": "GLOBAL",
11003
- "name": "json",
11004
- "allowNo": false,
11005
- "type": "boolean"
11006
- },
11007
- "flags-dir": {
11008
- "helpGroup": "GLOBAL",
11009
- "name": "flags-dir",
11010
- "summary": "Import flag values from a directory.",
11011
- "hasDynamicHelp": false,
11012
- "multiple": false,
11013
- "type": "option"
11014
- },
11015
- "check-only": {
11016
- "char": "c",
11017
- "description": "Use this option to send notifications from a Deployment simulation job",
11018
- "name": "check-only",
11019
- "allowNo": false,
11020
- "type": "boolean"
11021
- },
11022
- "deploy-status": {
11023
- "char": "s",
11024
- "description": "Send success, failure or unknown (default) to indicate if the deployment or deployment simulation is in success or not",
11025
- "name": "deploy-status",
11026
- "default": "unknown",
11027
- "hasDynamicHelp": false,
11028
- "multiple": false,
11029
- "options": [
11030
- "valid",
11031
- "invalid",
11032
- "unknown"
11033
- ],
11034
- "type": "option"
11035
- },
11036
- "message": {
11037
- "char": "m",
11038
- "description": "Custom message that you want to be added in notifications (string or markdown format)",
11039
- "name": "message",
11040
- "default": "",
11041
- "hasDynamicHelp": false,
11042
- "multiple": false,
11043
- "type": "option"
11044
- },
11045
- "debug": {
11046
- "char": "d",
11047
- "description": "Activate debug mode (more logs)",
11048
- "name": "debug",
11049
- "allowNo": false,
11050
- "type": "boolean"
11051
- },
11052
- "websocket": {
11053
- "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
11054
- "name": "websocket",
11055
- "hasDynamicHelp": false,
11056
- "multiple": false,
11057
- "type": "option"
11058
- },
11059
- "skipauth": {
11060
- "description": "Skip authentication check when a default username is required",
11061
- "name": "skipauth",
11062
- "allowNo": false,
11063
- "type": "boolean"
11064
- },
11065
- "target-org": {
11066
- "aliases": [
11067
- "targetusername",
11068
- "u"
11069
- ],
11070
- "char": "o",
11071
- "deprecateAliases": true,
11072
- "name": "target-org",
11073
- "noCacheDefault": true,
11074
- "required": true,
11075
- "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
11076
- "hasDynamicHelp": true,
11077
- "multiple": false,
11078
- "type": "option"
11079
- }
11080
- },
11081
- "hasDynamicHelp": true,
11082
- "hiddenAliases": [],
11083
- "id": "hardis:project:deploy:notify",
11084
- "pluginAlias": "sfdx-hardis",
11085
- "pluginName": "sfdx-hardis",
11086
- "pluginType": "core",
11087
- "strict": true,
11088
- "enableJsonFlag": true,
11089
- "title": "Deployment Notifications",
11090
- "requiresProject": true,
11091
- "isESM": true,
11092
- "relativePath": [
11093
- "lib",
11094
- "commands",
11095
- "hardis",
11096
- "project",
11097
- "deploy",
11098
- "notify.js"
11099
- ],
11100
- "aliasPermutations": [],
11101
- "permutations": [
11102
- "hardis:project:deploy:notify",
11103
- "project:hardis:deploy:notify",
11104
- "project:deploy:hardis:notify",
11105
- "project:deploy:notify:hardis",
11106
- "hardis:deploy:project:notify",
11107
- "deploy:hardis:project:notify",
11108
- "deploy:project:hardis:notify",
11109
- "deploy:project:notify:hardis",
11110
- "hardis:deploy:notify:project",
11111
- "deploy:hardis:notify:project",
11112
- "deploy:notify:hardis:project",
11113
- "deploy:notify:project:hardis",
11114
- "hardis:project:notify:deploy",
11115
- "project:hardis:notify:deploy",
11116
- "project:notify:hardis:deploy",
11117
- "project:notify:deploy:hardis",
11118
- "hardis:notify:project:deploy",
11119
- "notify:hardis:project:deploy",
11120
- "notify:project:hardis:deploy",
11121
- "notify:project:deploy:hardis",
11122
- "hardis:notify:deploy:project",
11123
- "notify:hardis:deploy:project",
11124
- "notify:deploy:hardis:project",
11125
- "notify:deploy:project:hardis"
11126
- ]
11127
- },
11128
- "hardis:project:deploy:quick": {
11129
- "aliases": [
11130
- "hardis:deploy:quick"
11131
- ],
11132
- "args": {},
11133
- "description": "sfdx-hardis wrapper for **sf project deploy quick** that displays tips to solve deployment errors.\n\nNote: Use **--json** argument to have better results\n\n[![Assisted solving of Salesforce deployments errors](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/article-deployment-errors.jpg)](https://nicolas.vuillamy.fr/assisted-solving-of-salesforce-deployments-errors-47f3666a9ed0)\n\n[See documentation of Salesforce command](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference_project_commands_unified.htm#cli_reference_project_deploy_quick_unified)\n\n### Deployment pre or post commands\n\nYou can define command lines to run before or after a deployment, with parameters:\n\n- **id**: Unique Id for the command\n- **label**: Human readable label for the command\n- **skipIfError**: If defined to \"true\", the post-command won't be run if there is a deployment failure\n- **context**: Defines the context where the command will be run. Can be **all** (default), **check-deployment-only** or **process-deployment-only**\n- **runOnlyOnceByOrg**: If set to true, the command will be run only one time per org. A record of SfdxHardisTrace__c is stored to make that possible (it needs to be existing in target org)\n\nIf the commands are not the same depending on the target org, you can define them into **config/branches/.sfdx-hardis-BRANCHNAME.yml** instead of root **config/.sfdx-hardis.yml**\n\nExample:\n\n```yaml\ncommandsPreDeploy:\n - id: knowledgeUnassign\n label: Remove KnowledgeUser right to the user who has it\n command: sf data update record --sobject User --where \"UserPermissionsKnowledgeUser='true'\" --values \"UserPermissionsKnowledgeUser='false'\" --json\n - id: knowledgeAssign\n label: Assign Knowledge user to the deployment user\n command: sf data update record --sobject User --where \"Username='deploy.github@myclient.com'\" --values \"UserPermissionsKnowledgeUser='true'\" --json\n\ncommandsPostDeploy:\n - id: knowledgeUnassign\n label: Remove KnowledgeUser right to the user who has it\n command: sf data update record --sobject User --where \"UserPermissionsKnowledgeUser='true'\" --values \"UserPermissionsKnowledgeUser='false'\" --json\n - id: knowledgeAssign\n label: Assign Knowledge user to desired username\n command: sf data update record --sobject User --where \"Username='admin-yser@myclient.com'\" --values \"UserPermissionsKnowledgeUser='true'\" --json\n - id: someActionToRunJustOneTime\n label: And to run only if deployment is success\n command: sf sfdmu:run ...\n skipIfError: true\n context: process-deployment-only\n runOnlyOnceByOrg: true\n```\n",
11134
- "flags": {
11135
- "json": {
11136
- "description": "Format output as json.",
11137
- "helpGroup": "GLOBAL",
11138
- "name": "json",
11139
- "allowNo": false,
11140
- "type": "boolean"
11141
- },
11142
- "flags-dir": {
11143
- "helpGroup": "GLOBAL",
11144
- "name": "flags-dir",
11145
- "summary": "Import flag values from a directory.",
11146
- "hasDynamicHelp": false,
11147
- "multiple": false,
11148
- "type": "option"
11149
- },
11150
- "api-version": {
11151
- "char": "a",
11152
- "description": "api-version",
11153
- "name": "api-version",
11154
- "hasDynamicHelp": false,
11155
- "multiple": false,
11156
- "type": "option"
11157
- },
11158
- "async": {
11159
- "description": "async",
11160
- "exclusive": [
11161
- "wait"
11162
- ],
11163
- "name": "async",
11164
- "allowNo": false,
11165
- "type": "boolean"
11166
- },
11167
- "target-org": {
11168
- "char": "o",
11169
- "name": "target-org",
11170
- "noCacheDefault": true,
11171
- "required": true,
11172
- "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
11173
- "hasDynamicHelp": true,
11174
- "multiple": false,
11175
- "type": "option"
11176
- },
11177
- "tests": {
11178
- "description": "tests",
11179
- "name": "tests",
11180
- "hasDynamicHelp": false,
11181
- "multiple": false,
11182
- "type": "option"
11183
- },
11184
- "--job-id": {
11185
- "char": "i",
11186
- "description": "job-id",
11187
- "name": "--job-id",
11188
- "hasDynamicHelp": false,
11189
- "multiple": false,
11190
- "type": "option"
11191
- },
11192
- "--use-most-recent": {
11193
- "char": "r",
11194
- "description": "use-most-recent",
11195
- "name": "--use-most-recent",
10969
+ "--job-id": {
10970
+ "char": "i",
10971
+ "description": "job-id",
10972
+ "name": "--job-id",
10973
+ "hasDynamicHelp": false,
10974
+ "multiple": false,
10975
+ "type": "option"
10976
+ },
10977
+ "--use-most-recent": {
10978
+ "char": "r",
10979
+ "description": "use-most-recent",
10980
+ "name": "--use-most-recent",
11196
10981
  "allowNo": false,
11197
10982
  "type": "boolean"
11198
10983
  },
@@ -12162,6 +11947,221 @@
12162
11947
  "validate:deploy:project:hardis"
12163
11948
  ]
12164
11949
  },
11950
+ "hardis:project:fix:profiletabs": {
11951
+ "aliases": [],
11952
+ "args": {},
11953
+ "description": "Interactive prompts to add tab visibilities that are not retrieved by project retrieve start",
11954
+ "examples": [
11955
+ "$ sf hardis:project:fix:profiletabs"
11956
+ ],
11957
+ "flags": {
11958
+ "json": {
11959
+ "description": "Format output as json.",
11960
+ "helpGroup": "GLOBAL",
11961
+ "name": "json",
11962
+ "allowNo": false,
11963
+ "type": "boolean"
11964
+ },
11965
+ "flags-dir": {
11966
+ "helpGroup": "GLOBAL",
11967
+ "name": "flags-dir",
11968
+ "summary": "Import flag values from a directory.",
11969
+ "hasDynamicHelp": false,
11970
+ "multiple": false,
11971
+ "type": "option"
11972
+ },
11973
+ "path": {
11974
+ "char": "p",
11975
+ "description": "Root folder",
11976
+ "name": "path",
11977
+ "default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
11978
+ "hasDynamicHelp": false,
11979
+ "multiple": false,
11980
+ "type": "option"
11981
+ },
11982
+ "debug": {
11983
+ "char": "d",
11984
+ "description": "Activate debug mode (more logs)",
11985
+ "name": "debug",
11986
+ "allowNo": false,
11987
+ "type": "boolean"
11988
+ },
11989
+ "websocket": {
11990
+ "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
11991
+ "name": "websocket",
11992
+ "hasDynamicHelp": false,
11993
+ "multiple": false,
11994
+ "type": "option"
11995
+ },
11996
+ "skipauth": {
11997
+ "description": "Skip authentication check when a default username is required",
11998
+ "name": "skipauth",
11999
+ "allowNo": false,
12000
+ "type": "boolean"
12001
+ },
12002
+ "target-org": {
12003
+ "aliases": [
12004
+ "targetusername",
12005
+ "u"
12006
+ ],
12007
+ "char": "o",
12008
+ "deprecateAliases": true,
12009
+ "name": "target-org",
12010
+ "noCacheDefault": true,
12011
+ "required": true,
12012
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
12013
+ "hasDynamicHelp": true,
12014
+ "multiple": false,
12015
+ "type": "option"
12016
+ }
12017
+ },
12018
+ "hasDynamicHelp": true,
12019
+ "hiddenAliases": [],
12020
+ "id": "hardis:project:fix:profiletabs",
12021
+ "pluginAlias": "sfdx-hardis",
12022
+ "pluginName": "sfdx-hardis",
12023
+ "pluginType": "core",
12024
+ "strict": true,
12025
+ "enableJsonFlag": true,
12026
+ "title": "Fix profiles to add tabs that are not retrieved by SF CLI",
12027
+ "requiresProject": true,
12028
+ "isESM": true,
12029
+ "relativePath": [
12030
+ "lib",
12031
+ "commands",
12032
+ "hardis",
12033
+ "project",
12034
+ "fix",
12035
+ "profiletabs.js"
12036
+ ],
12037
+ "aliasPermutations": [],
12038
+ "permutations": [
12039
+ "hardis:project:fix:profiletabs",
12040
+ "project:hardis:fix:profiletabs",
12041
+ "project:fix:hardis:profiletabs",
12042
+ "project:fix:profiletabs:hardis",
12043
+ "hardis:fix:project:profiletabs",
12044
+ "fix:hardis:project:profiletabs",
12045
+ "fix:project:hardis:profiletabs",
12046
+ "fix:project:profiletabs:hardis",
12047
+ "hardis:fix:profiletabs:project",
12048
+ "fix:hardis:profiletabs:project",
12049
+ "fix:profiletabs:hardis:project",
12050
+ "fix:profiletabs:project:hardis",
12051
+ "hardis:project:profiletabs:fix",
12052
+ "project:hardis:profiletabs:fix",
12053
+ "project:profiletabs:hardis:fix",
12054
+ "project:profiletabs:fix:hardis",
12055
+ "hardis:profiletabs:project:fix",
12056
+ "profiletabs:hardis:project:fix",
12057
+ "profiletabs:project:hardis:fix",
12058
+ "profiletabs:project:fix:hardis",
12059
+ "hardis:profiletabs:fix:project",
12060
+ "profiletabs:hardis:fix:project",
12061
+ "profiletabs:fix:hardis:project",
12062
+ "profiletabs:fix:project:hardis"
12063
+ ]
12064
+ },
12065
+ "hardis:project:fix:v53flexipages": {
12066
+ "aliases": [],
12067
+ "args": {},
12068
+ "description": "Fix flexipages for apiVersion v53 (Winter22).\n\nNote: Update api version to 53.0 in package.xml and sfdx-project.json",
12069
+ "examples": [
12070
+ "$ sf hardis:project:fix:v53flexipages"
12071
+ ],
12072
+ "flags": {
12073
+ "json": {
12074
+ "description": "Format output as json.",
12075
+ "helpGroup": "GLOBAL",
12076
+ "name": "json",
12077
+ "allowNo": false,
12078
+ "type": "boolean"
12079
+ },
12080
+ "flags-dir": {
12081
+ "helpGroup": "GLOBAL",
12082
+ "name": "flags-dir",
12083
+ "summary": "Import flag values from a directory.",
12084
+ "hasDynamicHelp": false,
12085
+ "multiple": false,
12086
+ "type": "option"
12087
+ },
12088
+ "path": {
12089
+ "char": "p",
12090
+ "description": "Root folder",
12091
+ "name": "path",
12092
+ "default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
12093
+ "hasDynamicHelp": false,
12094
+ "multiple": false,
12095
+ "type": "option"
12096
+ },
12097
+ "debug": {
12098
+ "char": "d",
12099
+ "description": "Activate debug mode (more logs)",
12100
+ "name": "debug",
12101
+ "allowNo": false,
12102
+ "type": "boolean"
12103
+ },
12104
+ "websocket": {
12105
+ "description": "Websocket host:port for VsCode SFDX Hardis UI integration",
12106
+ "name": "websocket",
12107
+ "hasDynamicHelp": false,
12108
+ "multiple": false,
12109
+ "type": "option"
12110
+ },
12111
+ "skipauth": {
12112
+ "description": "Skip authentication check when a default username is required",
12113
+ "name": "skipauth",
12114
+ "allowNo": false,
12115
+ "type": "boolean"
12116
+ }
12117
+ },
12118
+ "hasDynamicHelp": false,
12119
+ "hiddenAliases": [],
12120
+ "id": "hardis:project:fix:v53flexipages",
12121
+ "pluginAlias": "sfdx-hardis",
12122
+ "pluginName": "sfdx-hardis",
12123
+ "pluginType": "core",
12124
+ "strict": true,
12125
+ "enableJsonFlag": true,
12126
+ "title": "Fix flexipages for v53",
12127
+ "requiresProject": true,
12128
+ "isESM": true,
12129
+ "relativePath": [
12130
+ "lib",
12131
+ "commands",
12132
+ "hardis",
12133
+ "project",
12134
+ "fix",
12135
+ "v53flexipages.js"
12136
+ ],
12137
+ "aliasPermutations": [],
12138
+ "permutations": [
12139
+ "hardis:project:fix:v53flexipages",
12140
+ "project:hardis:fix:v53flexipages",
12141
+ "project:fix:hardis:v53flexipages",
12142
+ "project:fix:v53flexipages:hardis",
12143
+ "hardis:fix:project:v53flexipages",
12144
+ "fix:hardis:project:v53flexipages",
12145
+ "fix:project:hardis:v53flexipages",
12146
+ "fix:project:v53flexipages:hardis",
12147
+ "hardis:fix:v53flexipages:project",
12148
+ "fix:hardis:v53flexipages:project",
12149
+ "fix:v53flexipages:hardis:project",
12150
+ "fix:v53flexipages:project:hardis",
12151
+ "hardis:project:v53flexipages:fix",
12152
+ "project:hardis:v53flexipages:fix",
12153
+ "project:v53flexipages:hardis:fix",
12154
+ "project:v53flexipages:fix:hardis",
12155
+ "hardis:v53flexipages:project:fix",
12156
+ "v53flexipages:hardis:project:fix",
12157
+ "v53flexipages:project:hardis:fix",
12158
+ "v53flexipages:project:fix:hardis",
12159
+ "hardis:v53flexipages:fix:project",
12160
+ "v53flexipages:hardis:fix:project",
12161
+ "v53flexipages:fix:hardis:project",
12162
+ "v53flexipages:fix:project:hardis"
12163
+ ]
12164
+ },
12165
12165
  "hardis:project:generate:bypass": {
12166
12166
  "aliases": [],
12167
12167
  "args": {},
@@ -14615,5 +14615,5 @@
14615
14615
  ]
14616
14616
  }
14617
14617
  },
14618
- "version": "5.34.1"
14618
+ "version": "5.35.0"
14619
14619
  }