sfdx-hardis 6.9.0 → 6.9.1-alpha202510260151.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 +6 -0
- package/defaults/ci/.github/workflows/check-deploy.yml +2 -2
- package/defaults/ci/.github/workflows/process-deploy.yml +2 -2
- package/defaults/ci/azure-pipelines-checks.yml +1 -1
- package/defaults/ci/azure-pipelines-deployment.yml +1 -1
- package/defaults/monitoring/.github/workflows/org-monitoring.yml +6 -7
- package/lib/commands/hardis/org/test/apex.js +3 -3
- package/lib/commands/hardis/org/test/apex.js.map +1 -1
- package/lib/commands/hardis/project/deploy/notify.js +2 -2
- package/lib/commands/hardis/project/deploy/notify.js.map +1 -1
- package/lib/commands/hardis/project/deploy/quick.js +2 -1
- package/lib/commands/hardis/project/deploy/quick.js.map +1 -1
- package/lib/commands/hardis/project/deploy/start.js +2 -1
- package/lib/commands/hardis/project/deploy/start.js.map +1 -1
- package/lib/commands/hardis/project/deploy/validate.js +2 -1
- package/lib/commands/hardis/project/deploy/validate.js.map +1 -1
- package/lib/commands/hardis/source/deploy.js +2 -1
- package/lib/commands/hardis/source/deploy.js.map +1 -1
- package/lib/common/gitProvider/azureDevops.d.ts +1 -0
- package/lib/common/gitProvider/azureDevops.js +68 -1
- package/lib/common/gitProvider/azureDevops.js.map +1 -1
- package/lib/common/gitProvider/bitbucket.d.ts +1 -0
- package/lib/common/gitProvider/bitbucket.js +78 -0
- package/lib/common/gitProvider/bitbucket.js.map +1 -1
- package/lib/common/gitProvider/gitProviderRoot.d.ts +1 -0
- package/lib/common/gitProvider/gitProviderRoot.js +6 -0
- package/lib/common/gitProvider/gitProviderRoot.js.map +1 -1
- package/lib/common/gitProvider/github.d.ts +1 -0
- package/lib/common/gitProvider/github.js +71 -0
- package/lib/common/gitProvider/github.js.map +1 -1
- package/lib/common/gitProvider/gitlab.d.ts +3 -0
- package/lib/common/gitProvider/gitlab.js +107 -0
- package/lib/common/gitProvider/gitlab.js.map +1 -1
- package/lib/common/gitProvider/index.js +49 -37
- package/lib/common/gitProvider/index.js.map +1 -1
- package/lib/common/utils/dataUtils.d.ts +1 -1
- package/lib/common/utils/dataUtils.js +1 -0
- package/lib/common/utils/dataUtils.js.map +1 -1
- package/lib/common/utils/deployTips.js +2 -1
- package/lib/common/utils/deployTips.js.map +1 -1
- package/lib/common/utils/deployUtils.d.ts +0 -7
- package/lib/common/utils/deployUtils.js +20 -66
- package/lib/common/utils/deployUtils.js.map +1 -1
- package/lib/common/utils/gitUtils.d.ts +2 -0
- package/lib/common/utils/gitUtils.js +7 -1
- package/lib/common/utils/gitUtils.js.map +1 -1
- package/lib/common/utils/prePostCommandUtils.d.ts +31 -0
- package/lib/common/utils/prePostCommandUtils.js +353 -0
- package/lib/common/utils/prePostCommandUtils.js.map +1 -0
- package/oclif.lock +938 -918
- package/oclif.manifest.json +429 -429
- package/package.json +4 -4
package/oclif.manifest.json
CHANGED
|
@@ -57,13 +57,12 @@
|
|
|
57
57
|
"world:hello"
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
|
-
"hardis:
|
|
60
|
+
"hardis:cache:clear": {
|
|
61
61
|
"aliases": [],
|
|
62
62
|
"args": {},
|
|
63
|
-
"description": "\n## Command Behavior\n\n**
|
|
63
|
+
"description": "\n## Command Behavior\n\n**Clears the local cache generated by the sfdx-hardis plugin.**\n\nThis command is designed to remove temporary files, stored configurations, and other cached data that sfdx-hardis uses to optimize its operations. Clearing the cache can be beneficial for:\n\n- **Troubleshooting:** Resolving unexpected behavior or inconsistencies.\n- **Disk Space Management:** Freeing up storage on your local machine.\n- **Ensuring Fresh Data:** Guaranteeing that the plugin operates with the most current data and configurations.\n\n## Technical explanations\n\nThe command's technical implementation is straightforward:\n\n- **Direct Function Call:** It directly invokes the `clearCache()` function, which is imported from \buri../../../common/cache/index.js\buri.\n- **Cache Management Logic:** The \buriclearCache()` function encapsulates the logic for identifying and removing the specific files and directories that constitute the sfdx-hardis cache.\n",
|
|
64
64
|
"examples": [
|
|
65
|
-
"$ sf hardis:
|
|
66
|
-
"CI=true CI_COMMIT_REF_NAME=monitoring_myclient sf hardis:auth:login"
|
|
65
|
+
"$ sf hardis:cache:clear"
|
|
67
66
|
],
|
|
68
67
|
"flags": {
|
|
69
68
|
"json": {
|
|
@@ -81,28 +80,6 @@
|
|
|
81
80
|
"multiple": false,
|
|
82
81
|
"type": "option"
|
|
83
82
|
},
|
|
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
|
-
},
|
|
106
83
|
"debug": {
|
|
107
84
|
"char": "d",
|
|
108
85
|
"description": "Activate debug mode (more logs)",
|
|
@@ -126,38 +103,42 @@
|
|
|
126
103
|
},
|
|
127
104
|
"hasDynamicHelp": false,
|
|
128
105
|
"hiddenAliases": [],
|
|
129
|
-
"id": "hardis:
|
|
106
|
+
"id": "hardis:cache:clear",
|
|
130
107
|
"pluginAlias": "sfdx-hardis",
|
|
131
108
|
"pluginName": "sfdx-hardis",
|
|
132
109
|
"pluginType": "core",
|
|
133
110
|
"strict": true,
|
|
134
111
|
"enableJsonFlag": true,
|
|
135
|
-
"title": "
|
|
112
|
+
"title": "Clear sfdx-hardis cache",
|
|
113
|
+
"uiConfig": {
|
|
114
|
+
"hide": true
|
|
115
|
+
},
|
|
136
116
|
"requiresProject": false,
|
|
137
117
|
"isESM": true,
|
|
138
118
|
"relativePath": [
|
|
139
119
|
"lib",
|
|
140
120
|
"commands",
|
|
141
121
|
"hardis",
|
|
142
|
-
"
|
|
143
|
-
"
|
|
122
|
+
"cache",
|
|
123
|
+
"clear.js"
|
|
144
124
|
],
|
|
145
125
|
"aliasPermutations": [],
|
|
146
126
|
"permutations": [
|
|
147
|
-
"hardis:
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"hardis:
|
|
151
|
-
"
|
|
152
|
-
"
|
|
127
|
+
"hardis:cache:clear",
|
|
128
|
+
"cache:hardis:clear",
|
|
129
|
+
"cache:clear:hardis",
|
|
130
|
+
"hardis:clear:cache",
|
|
131
|
+
"clear:hardis:cache",
|
|
132
|
+
"clear:cache:hardis"
|
|
153
133
|
]
|
|
154
134
|
},
|
|
155
|
-
"hardis:
|
|
135
|
+
"hardis:auth:login": {
|
|
156
136
|
"aliases": [],
|
|
157
137
|
"args": {},
|
|
158
|
-
"description": "\n## Command Behavior\n\n**
|
|
138
|
+
"description": "\n## Command Behavior\n\n**Authenticates to a Salesforce org, primarily designed for CI/CD workflows.**\n\nThis command facilitates secure and automated logins to Salesforce organizations within continuous integration and continuous delivery pipelines. It leverages pre-configured authentication details, ensuring that CI/CD processes can interact with Salesforce without manual intervention.\n\nKey aspects:\n\n- **Configuration-Driven:** It relies on authentication variables and files set up by dedicated configuration commands:\n - For CI/CD repositories: [Configure Org CI Authentication](https://sfdx-hardis.cloudity.com/hardis/project/configure/auth/)\n - For Monitoring repositories: [Configure Org Monitoring](https://sfdx-hardis.cloudity.com/hardis/org/configure/monitoring/)\n- **Technical Org Support:** Supports authentication to a 'technical org' (e.g., for calling Agentforce from another org) by utilizing the `SFDX_AUTH_URL_TECHNICAL_ORG` environment variable. If this variable is set, the command authenticates to this org with the alias `TECHNICAL_ORG`.\n\nTo obtain the `SFDX_AUTH_URL_TECHNICAL_ORG` value, you can run `sf org display --verbose --json` and copy the `sfdxAuthUrl` field from the output.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical flow involves:\n\n- **Flag Parsing:** It parses command-line flags such as `instanceurl`, `devhub`, `scratchorg`, and `debug` to determine the authentication context.\n- **Authentication Hook:** It triggers an internal authentication hook (`this.config.runHook('auth', ...`)) which is responsible for executing the actual authentication logic based on the provided flags (e.g., whether it's a Dev Hub or a scratch org).\n- **Environment Variable Check:** It checks for the presence of `SFDX_AUTH_URL_TECHNICAL_ORG` or `TECHNICAL_ORG_ALIAS` environment variables.\n- **`authOrg` Utility:** If a technical org is configured, it calls the `authOrg` utility function to perform the authentication for that specific org, ensuring it's connected and available for subsequent operations.\n- **Salesforce CLI Integration:** It integrates with the Salesforce CLI's authentication mechanisms to establish and manage org connections.\n</details>\n",
|
|
159
139
|
"examples": [
|
|
160
|
-
"$ sf hardis:
|
|
140
|
+
"$ sf hardis:auth:login",
|
|
141
|
+
"CI=true CI_COMMIT_REF_NAME=monitoring_myclient sf hardis:auth:login"
|
|
161
142
|
],
|
|
162
143
|
"flags": {
|
|
163
144
|
"json": {
|
|
@@ -175,6 +156,28 @@
|
|
|
175
156
|
"multiple": false,
|
|
176
157
|
"type": "option"
|
|
177
158
|
},
|
|
159
|
+
"instanceurl": {
|
|
160
|
+
"char": "r",
|
|
161
|
+
"description": "URL of org instance",
|
|
162
|
+
"name": "instanceurl",
|
|
163
|
+
"hasDynamicHelp": false,
|
|
164
|
+
"multiple": false,
|
|
165
|
+
"type": "option"
|
|
166
|
+
},
|
|
167
|
+
"devhub": {
|
|
168
|
+
"char": "h",
|
|
169
|
+
"description": "Also connect associated DevHub",
|
|
170
|
+
"name": "devhub",
|
|
171
|
+
"allowNo": false,
|
|
172
|
+
"type": "boolean"
|
|
173
|
+
},
|
|
174
|
+
"scratchorg": {
|
|
175
|
+
"char": "s",
|
|
176
|
+
"description": "Scratch org",
|
|
177
|
+
"name": "scratchorg",
|
|
178
|
+
"allowNo": false,
|
|
179
|
+
"type": "boolean"
|
|
180
|
+
},
|
|
178
181
|
"debug": {
|
|
179
182
|
"char": "d",
|
|
180
183
|
"description": "Activate debug mode (more logs)",
|
|
@@ -198,33 +201,30 @@
|
|
|
198
201
|
},
|
|
199
202
|
"hasDynamicHelp": false,
|
|
200
203
|
"hiddenAliases": [],
|
|
201
|
-
"id": "hardis:
|
|
204
|
+
"id": "hardis:auth:login",
|
|
202
205
|
"pluginAlias": "sfdx-hardis",
|
|
203
206
|
"pluginName": "sfdx-hardis",
|
|
204
207
|
"pluginType": "core",
|
|
205
208
|
"strict": true,
|
|
206
209
|
"enableJsonFlag": true,
|
|
207
|
-
"title": "
|
|
208
|
-
"uiConfig": {
|
|
209
|
-
"hide": true
|
|
210
|
-
},
|
|
210
|
+
"title": "Login",
|
|
211
211
|
"requiresProject": false,
|
|
212
212
|
"isESM": true,
|
|
213
213
|
"relativePath": [
|
|
214
214
|
"lib",
|
|
215
215
|
"commands",
|
|
216
216
|
"hardis",
|
|
217
|
-
"
|
|
218
|
-
"
|
|
217
|
+
"auth",
|
|
218
|
+
"login.js"
|
|
219
219
|
],
|
|
220
220
|
"aliasPermutations": [],
|
|
221
221
|
"permutations": [
|
|
222
|
-
"hardis:
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"hardis:
|
|
226
|
-
"
|
|
227
|
-
"
|
|
222
|
+
"hardis:auth:login",
|
|
223
|
+
"auth:hardis:login",
|
|
224
|
+
"auth:login:hardis",
|
|
225
|
+
"hardis:login:auth",
|
|
226
|
+
"login:hardis:auth",
|
|
227
|
+
"login:auth:hardis"
|
|
228
228
|
]
|
|
229
229
|
},
|
|
230
230
|
"hardis:config:get": {
|
|
@@ -5808,121 +5808,6 @@
|
|
|
5808
5808
|
"import:files:org:hardis"
|
|
5809
5809
|
]
|
|
5810
5810
|
},
|
|
5811
|
-
"hardis:org:fix:listviewmine": {
|
|
5812
|
-
"aliases": [],
|
|
5813
|
-
"args": {},
|
|
5814
|
-
"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",
|
|
5815
|
-
"examples": [
|
|
5816
|
-
"$ sf hardis:org:fix:listviewmine",
|
|
5817
|
-
"$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
|
|
5818
|
-
],
|
|
5819
|
-
"flags": {
|
|
5820
|
-
"json": {
|
|
5821
|
-
"description": "Format output as json.",
|
|
5822
|
-
"helpGroup": "GLOBAL",
|
|
5823
|
-
"name": "json",
|
|
5824
|
-
"allowNo": false,
|
|
5825
|
-
"type": "boolean"
|
|
5826
|
-
},
|
|
5827
|
-
"flags-dir": {
|
|
5828
|
-
"helpGroup": "GLOBAL",
|
|
5829
|
-
"name": "flags-dir",
|
|
5830
|
-
"summary": "Import flag values from a directory.",
|
|
5831
|
-
"hasDynamicHelp": false,
|
|
5832
|
-
"multiple": false,
|
|
5833
|
-
"type": "option"
|
|
5834
|
-
},
|
|
5835
|
-
"listviews": {
|
|
5836
|
-
"char": "l",
|
|
5837
|
-
"description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
|
|
5838
|
-
"name": "listviews",
|
|
5839
|
-
"hasDynamicHelp": false,
|
|
5840
|
-
"multiple": false,
|
|
5841
|
-
"type": "option"
|
|
5842
|
-
},
|
|
5843
|
-
"debug": {
|
|
5844
|
-
"char": "d",
|
|
5845
|
-
"description": "Activate debug mode (more logs)",
|
|
5846
|
-
"name": "debug",
|
|
5847
|
-
"allowNo": false,
|
|
5848
|
-
"type": "boolean"
|
|
5849
|
-
},
|
|
5850
|
-
"websocket": {
|
|
5851
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5852
|
-
"name": "websocket",
|
|
5853
|
-
"hasDynamicHelp": false,
|
|
5854
|
-
"multiple": false,
|
|
5855
|
-
"type": "option"
|
|
5856
|
-
},
|
|
5857
|
-
"skipauth": {
|
|
5858
|
-
"description": "Skip authentication check when a default username is required",
|
|
5859
|
-
"name": "skipauth",
|
|
5860
|
-
"allowNo": false,
|
|
5861
|
-
"type": "boolean"
|
|
5862
|
-
},
|
|
5863
|
-
"target-org": {
|
|
5864
|
-
"aliases": [
|
|
5865
|
-
"targetusername",
|
|
5866
|
-
"u"
|
|
5867
|
-
],
|
|
5868
|
-
"char": "o",
|
|
5869
|
-
"deprecateAliases": true,
|
|
5870
|
-
"name": "target-org",
|
|
5871
|
-
"noCacheDefault": true,
|
|
5872
|
-
"required": true,
|
|
5873
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5874
|
-
"hasDynamicHelp": true,
|
|
5875
|
-
"multiple": false,
|
|
5876
|
-
"type": "option"
|
|
5877
|
-
}
|
|
5878
|
-
},
|
|
5879
|
-
"hasDynamicHelp": true,
|
|
5880
|
-
"hiddenAliases": [],
|
|
5881
|
-
"id": "hardis:org:fix:listviewmine",
|
|
5882
|
-
"pluginAlias": "sfdx-hardis",
|
|
5883
|
-
"pluginName": "sfdx-hardis",
|
|
5884
|
-
"pluginType": "core",
|
|
5885
|
-
"strict": true,
|
|
5886
|
-
"enableJsonFlag": true,
|
|
5887
|
-
"title": "Fix listviews with ",
|
|
5888
|
-
"requiresProject": true,
|
|
5889
|
-
"isESM": true,
|
|
5890
|
-
"relativePath": [
|
|
5891
|
-
"lib",
|
|
5892
|
-
"commands",
|
|
5893
|
-
"hardis",
|
|
5894
|
-
"org",
|
|
5895
|
-
"fix",
|
|
5896
|
-
"listviewmine.js"
|
|
5897
|
-
],
|
|
5898
|
-
"aliasPermutations": [],
|
|
5899
|
-
"permutations": [
|
|
5900
|
-
"hardis:org:fix:listviewmine",
|
|
5901
|
-
"org:hardis:fix:listviewmine",
|
|
5902
|
-
"org:fix:hardis:listviewmine",
|
|
5903
|
-
"org:fix:listviewmine:hardis",
|
|
5904
|
-
"hardis:fix:org:listviewmine",
|
|
5905
|
-
"fix:hardis:org:listviewmine",
|
|
5906
|
-
"fix:org:hardis:listviewmine",
|
|
5907
|
-
"fix:org:listviewmine:hardis",
|
|
5908
|
-
"hardis:fix:listviewmine:org",
|
|
5909
|
-
"fix:hardis:listviewmine:org",
|
|
5910
|
-
"fix:listviewmine:hardis:org",
|
|
5911
|
-
"fix:listviewmine:org:hardis",
|
|
5912
|
-
"hardis:org:listviewmine:fix",
|
|
5913
|
-
"org:hardis:listviewmine:fix",
|
|
5914
|
-
"org:listviewmine:hardis:fix",
|
|
5915
|
-
"org:listviewmine:fix:hardis",
|
|
5916
|
-
"hardis:listviewmine:org:fix",
|
|
5917
|
-
"listviewmine:hardis:org:fix",
|
|
5918
|
-
"listviewmine:org:hardis:fix",
|
|
5919
|
-
"listviewmine:org:fix:hardis",
|
|
5920
|
-
"hardis:listviewmine:fix:org",
|
|
5921
|
-
"listviewmine:hardis:fix:org",
|
|
5922
|
-
"listviewmine:fix:hardis:org",
|
|
5923
|
-
"listviewmine:fix:org:hardis"
|
|
5924
|
-
]
|
|
5925
|
-
},
|
|
5926
5811
|
"hardis:org:diagnose:audittrail": {
|
|
5927
5812
|
"aliases": [],
|
|
5928
5813
|
"args": {},
|
|
@@ -7308,12 +7193,13 @@
|
|
|
7308
7193
|
"packagexmlfull:generate:org:hardis"
|
|
7309
7194
|
]
|
|
7310
7195
|
},
|
|
7311
|
-
"hardis:org:
|
|
7196
|
+
"hardis:org:fix:listviewmine": {
|
|
7312
7197
|
"aliases": [],
|
|
7313
7198
|
"args": {},
|
|
7314
|
-
"description": "
|
|
7199
|
+
"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",
|
|
7315
7200
|
"examples": [
|
|
7316
|
-
"$ sf hardis:org:
|
|
7201
|
+
"$ sf hardis:org:fix:listviewmine",
|
|
7202
|
+
"$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
|
|
7317
7203
|
],
|
|
7318
7204
|
"flags": {
|
|
7319
7205
|
"json": {
|
|
@@ -7331,6 +7217,14 @@
|
|
|
7331
7217
|
"multiple": false,
|
|
7332
7218
|
"type": "option"
|
|
7333
7219
|
},
|
|
7220
|
+
"listviews": {
|
|
7221
|
+
"char": "l",
|
|
7222
|
+
"description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
|
|
7223
|
+
"name": "listviews",
|
|
7224
|
+
"hasDynamicHelp": false,
|
|
7225
|
+
"multiple": false,
|
|
7226
|
+
"type": "option"
|
|
7227
|
+
},
|
|
7334
7228
|
"debug": {
|
|
7335
7229
|
"char": "d",
|
|
7336
7230
|
"description": "Activate debug mode (more logs)",
|
|
@@ -7369,32 +7263,138 @@
|
|
|
7369
7263
|
},
|
|
7370
7264
|
"hasDynamicHelp": true,
|
|
7371
7265
|
"hiddenAliases": [],
|
|
7372
|
-
"id": "hardis:org:
|
|
7266
|
+
"id": "hardis:org:fix:listviewmine",
|
|
7373
7267
|
"pluginAlias": "sfdx-hardis",
|
|
7374
7268
|
"pluginName": "sfdx-hardis",
|
|
7375
7269
|
"pluginType": "core",
|
|
7376
7270
|
"strict": true,
|
|
7377
7271
|
"enableJsonFlag": true,
|
|
7378
|
-
"title": "
|
|
7379
|
-
"
|
|
7380
|
-
|
|
7381
|
-
|
|
7382
|
-
|
|
7383
|
-
|
|
7384
|
-
|
|
7385
|
-
|
|
7386
|
-
|
|
7387
|
-
|
|
7388
|
-
|
|
7389
|
-
|
|
7390
|
-
|
|
7391
|
-
|
|
7392
|
-
|
|
7393
|
-
|
|
7394
|
-
|
|
7395
|
-
|
|
7396
|
-
|
|
7397
|
-
|
|
7272
|
+
"title": "Fix listviews with ",
|
|
7273
|
+
"requiresProject": true,
|
|
7274
|
+
"isESM": true,
|
|
7275
|
+
"relativePath": [
|
|
7276
|
+
"lib",
|
|
7277
|
+
"commands",
|
|
7278
|
+
"hardis",
|
|
7279
|
+
"org",
|
|
7280
|
+
"fix",
|
|
7281
|
+
"listviewmine.js"
|
|
7282
|
+
],
|
|
7283
|
+
"aliasPermutations": [],
|
|
7284
|
+
"permutations": [
|
|
7285
|
+
"hardis:org:fix:listviewmine",
|
|
7286
|
+
"org:hardis:fix:listviewmine",
|
|
7287
|
+
"org:fix:hardis:listviewmine",
|
|
7288
|
+
"org:fix:listviewmine:hardis",
|
|
7289
|
+
"hardis:fix:org:listviewmine",
|
|
7290
|
+
"fix:hardis:org:listviewmine",
|
|
7291
|
+
"fix:org:hardis:listviewmine",
|
|
7292
|
+
"fix:org:listviewmine:hardis",
|
|
7293
|
+
"hardis:fix:listviewmine:org",
|
|
7294
|
+
"fix:hardis:listviewmine:org",
|
|
7295
|
+
"fix:listviewmine:hardis:org",
|
|
7296
|
+
"fix:listviewmine:org:hardis",
|
|
7297
|
+
"hardis:org:listviewmine:fix",
|
|
7298
|
+
"org:hardis:listviewmine:fix",
|
|
7299
|
+
"org:listviewmine:hardis:fix",
|
|
7300
|
+
"org:listviewmine:fix:hardis",
|
|
7301
|
+
"hardis:listviewmine:org:fix",
|
|
7302
|
+
"listviewmine:hardis:org:fix",
|
|
7303
|
+
"listviewmine:org:hardis:fix",
|
|
7304
|
+
"listviewmine:org:fix:hardis",
|
|
7305
|
+
"hardis:listviewmine:fix:org",
|
|
7306
|
+
"listviewmine:hardis:fix:org",
|
|
7307
|
+
"listviewmine:fix:hardis:org",
|
|
7308
|
+
"listviewmine:fix:org:hardis"
|
|
7309
|
+
]
|
|
7310
|
+
},
|
|
7311
|
+
"hardis:org:monitor:all": {
|
|
7312
|
+
"aliases": [],
|
|
7313
|
+
"args": {},
|
|
7314
|
+
"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| [UNSECURED_CONNECTED_APPS](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unsecure-connected-apps) | Detect unsecured Connected Apps in an org | [sf hardis:org:diagnose:unsecure-connected-apps](https://sfdx-hardis.cloudity.com/hardis/org/diagnose/unsecure-connected-apps) | 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",
|
|
7315
|
+
"examples": [
|
|
7316
|
+
"$ sf hardis:org:monitor:all"
|
|
7317
|
+
],
|
|
7318
|
+
"flags": {
|
|
7319
|
+
"json": {
|
|
7320
|
+
"description": "Format output as json.",
|
|
7321
|
+
"helpGroup": "GLOBAL",
|
|
7322
|
+
"name": "json",
|
|
7323
|
+
"allowNo": false,
|
|
7324
|
+
"type": "boolean"
|
|
7325
|
+
},
|
|
7326
|
+
"flags-dir": {
|
|
7327
|
+
"helpGroup": "GLOBAL",
|
|
7328
|
+
"name": "flags-dir",
|
|
7329
|
+
"summary": "Import flag values from a directory.",
|
|
7330
|
+
"hasDynamicHelp": false,
|
|
7331
|
+
"multiple": false,
|
|
7332
|
+
"type": "option"
|
|
7333
|
+
},
|
|
7334
|
+
"debug": {
|
|
7335
|
+
"char": "d",
|
|
7336
|
+
"description": "Activate debug mode (more logs)",
|
|
7337
|
+
"name": "debug",
|
|
7338
|
+
"allowNo": false,
|
|
7339
|
+
"type": "boolean"
|
|
7340
|
+
},
|
|
7341
|
+
"websocket": {
|
|
7342
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
7343
|
+
"name": "websocket",
|
|
7344
|
+
"hasDynamicHelp": false,
|
|
7345
|
+
"multiple": false,
|
|
7346
|
+
"type": "option"
|
|
7347
|
+
},
|
|
7348
|
+
"skipauth": {
|
|
7349
|
+
"description": "Skip authentication check when a default username is required",
|
|
7350
|
+
"name": "skipauth",
|
|
7351
|
+
"allowNo": false,
|
|
7352
|
+
"type": "boolean"
|
|
7353
|
+
},
|
|
7354
|
+
"target-org": {
|
|
7355
|
+
"aliases": [
|
|
7356
|
+
"targetusername",
|
|
7357
|
+
"u"
|
|
7358
|
+
],
|
|
7359
|
+
"char": "o",
|
|
7360
|
+
"deprecateAliases": true,
|
|
7361
|
+
"name": "target-org",
|
|
7362
|
+
"noCacheDefault": true,
|
|
7363
|
+
"required": true,
|
|
7364
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
7365
|
+
"hasDynamicHelp": true,
|
|
7366
|
+
"multiple": false,
|
|
7367
|
+
"type": "option"
|
|
7368
|
+
}
|
|
7369
|
+
},
|
|
7370
|
+
"hasDynamicHelp": true,
|
|
7371
|
+
"hiddenAliases": [],
|
|
7372
|
+
"id": "hardis:org:monitor:all",
|
|
7373
|
+
"pluginAlias": "sfdx-hardis",
|
|
7374
|
+
"pluginName": "sfdx-hardis",
|
|
7375
|
+
"pluginType": "core",
|
|
7376
|
+
"strict": true,
|
|
7377
|
+
"enableJsonFlag": true,
|
|
7378
|
+
"title": "Monitor org",
|
|
7379
|
+
"monitoringCommandsDefault": [
|
|
7380
|
+
{
|
|
7381
|
+
"key": "AUDIT_TRAIL",
|
|
7382
|
+
"title": "Detect suspect setup actions in major org",
|
|
7383
|
+
"command": "sf hardis:org:diagnose:audittrail",
|
|
7384
|
+
"frequency": "daily"
|
|
7385
|
+
},
|
|
7386
|
+
{
|
|
7387
|
+
"key": "LEGACY_API",
|
|
7388
|
+
"title": "Detect calls to deprecated API versions",
|
|
7389
|
+
"command": "sf hardis:org:diagnose:legacyapi",
|
|
7390
|
+
"frequency": "daily"
|
|
7391
|
+
},
|
|
7392
|
+
{
|
|
7393
|
+
"key": "ORG_LIMITS",
|
|
7394
|
+
"title": "Detect if org limits are close to be reached",
|
|
7395
|
+
"command": "sf hardis:org:monitor:limits",
|
|
7396
|
+
"frequency": "daily"
|
|
7397
|
+
},
|
|
7398
7398
|
{
|
|
7399
7399
|
"key": "UNSECURED_CONNECTED_APPS",
|
|
7400
7400
|
"title": "Detect unsecured Connected Apps in an org",
|
|
@@ -8057,6 +8057,113 @@
|
|
|
8057
8057
|
"flow:purge:org:hardis"
|
|
8058
8058
|
]
|
|
8059
8059
|
},
|
|
8060
|
+
"hardis:org:retrieve:packageconfig": {
|
|
8061
|
+
"aliases": [],
|
|
8062
|
+
"args": {},
|
|
8063
|
+
"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<details markdown=\"1\">\n<summary>Technical explanations</summary>\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</details>\n",
|
|
8064
|
+
"examples": [
|
|
8065
|
+
"$ sf hardis:org:retrieve:packageconfig",
|
|
8066
|
+
"sf hardis:org:retrieve:packageconfig -u myOrg"
|
|
8067
|
+
],
|
|
8068
|
+
"flags": {
|
|
8069
|
+
"json": {
|
|
8070
|
+
"description": "Format output as json.",
|
|
8071
|
+
"helpGroup": "GLOBAL",
|
|
8072
|
+
"name": "json",
|
|
8073
|
+
"allowNo": false,
|
|
8074
|
+
"type": "boolean"
|
|
8075
|
+
},
|
|
8076
|
+
"flags-dir": {
|
|
8077
|
+
"helpGroup": "GLOBAL",
|
|
8078
|
+
"name": "flags-dir",
|
|
8079
|
+
"summary": "Import flag values from a directory.",
|
|
8080
|
+
"hasDynamicHelp": false,
|
|
8081
|
+
"multiple": false,
|
|
8082
|
+
"type": "option"
|
|
8083
|
+
},
|
|
8084
|
+
"debug": {
|
|
8085
|
+
"char": "d",
|
|
8086
|
+
"description": "Activate debug mode (more logs)",
|
|
8087
|
+
"name": "debug",
|
|
8088
|
+
"allowNo": false,
|
|
8089
|
+
"type": "boolean"
|
|
8090
|
+
},
|
|
8091
|
+
"websocket": {
|
|
8092
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
8093
|
+
"name": "websocket",
|
|
8094
|
+
"hasDynamicHelp": false,
|
|
8095
|
+
"multiple": false,
|
|
8096
|
+
"type": "option"
|
|
8097
|
+
},
|
|
8098
|
+
"skipauth": {
|
|
8099
|
+
"description": "Skip authentication check when a default username is required",
|
|
8100
|
+
"name": "skipauth",
|
|
8101
|
+
"allowNo": false,
|
|
8102
|
+
"type": "boolean"
|
|
8103
|
+
},
|
|
8104
|
+
"target-org": {
|
|
8105
|
+
"aliases": [
|
|
8106
|
+
"targetusername",
|
|
8107
|
+
"u"
|
|
8108
|
+
],
|
|
8109
|
+
"char": "o",
|
|
8110
|
+
"deprecateAliases": true,
|
|
8111
|
+
"name": "target-org",
|
|
8112
|
+
"noCacheDefault": true,
|
|
8113
|
+
"required": true,
|
|
8114
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
8115
|
+
"hasDynamicHelp": true,
|
|
8116
|
+
"multiple": false,
|
|
8117
|
+
"type": "option"
|
|
8118
|
+
}
|
|
8119
|
+
},
|
|
8120
|
+
"hasDynamicHelp": true,
|
|
8121
|
+
"hiddenAliases": [],
|
|
8122
|
+
"id": "hardis:org:retrieve:packageconfig",
|
|
8123
|
+
"pluginAlias": "sfdx-hardis",
|
|
8124
|
+
"pluginName": "sfdx-hardis",
|
|
8125
|
+
"pluginType": "core",
|
|
8126
|
+
"strict": true,
|
|
8127
|
+
"enableJsonFlag": true,
|
|
8128
|
+
"title": "Retrieve package configuration from an org",
|
|
8129
|
+
"requiresProject": false,
|
|
8130
|
+
"isESM": true,
|
|
8131
|
+
"relativePath": [
|
|
8132
|
+
"lib",
|
|
8133
|
+
"commands",
|
|
8134
|
+
"hardis",
|
|
8135
|
+
"org",
|
|
8136
|
+
"retrieve",
|
|
8137
|
+
"packageconfig.js"
|
|
8138
|
+
],
|
|
8139
|
+
"aliasPermutations": [],
|
|
8140
|
+
"permutations": [
|
|
8141
|
+
"hardis:org:retrieve:packageconfig",
|
|
8142
|
+
"org:hardis:retrieve:packageconfig",
|
|
8143
|
+
"org:retrieve:hardis:packageconfig",
|
|
8144
|
+
"org:retrieve:packageconfig:hardis",
|
|
8145
|
+
"hardis:retrieve:org:packageconfig",
|
|
8146
|
+
"retrieve:hardis:org:packageconfig",
|
|
8147
|
+
"retrieve:org:hardis:packageconfig",
|
|
8148
|
+
"retrieve:org:packageconfig:hardis",
|
|
8149
|
+
"hardis:retrieve:packageconfig:org",
|
|
8150
|
+
"retrieve:hardis:packageconfig:org",
|
|
8151
|
+
"retrieve:packageconfig:hardis:org",
|
|
8152
|
+
"retrieve:packageconfig:org:hardis",
|
|
8153
|
+
"hardis:org:packageconfig:retrieve",
|
|
8154
|
+
"org:hardis:packageconfig:retrieve",
|
|
8155
|
+
"org:packageconfig:hardis:retrieve",
|
|
8156
|
+
"org:packageconfig:retrieve:hardis",
|
|
8157
|
+
"hardis:packageconfig:org:retrieve",
|
|
8158
|
+
"packageconfig:hardis:org:retrieve",
|
|
8159
|
+
"packageconfig:org:hardis:retrieve",
|
|
8160
|
+
"packageconfig:org:retrieve:hardis",
|
|
8161
|
+
"hardis:packageconfig:retrieve:org",
|
|
8162
|
+
"packageconfig:hardis:retrieve:org",
|
|
8163
|
+
"packageconfig:retrieve:hardis:org",
|
|
8164
|
+
"packageconfig:retrieve:org:hardis"
|
|
8165
|
+
]
|
|
8166
|
+
},
|
|
8060
8167
|
"hardis:org:refresh:after-refresh": {
|
|
8061
8168
|
"aliases": [],
|
|
8062
8169
|
"args": {},
|
|
@@ -8265,148 +8372,41 @@
|
|
|
8265
8372
|
"commands",
|
|
8266
8373
|
"hardis",
|
|
8267
8374
|
"org",
|
|
8268
|
-
"refresh",
|
|
8269
|
-
"before-refresh.js"
|
|
8270
|
-
],
|
|
8271
|
-
"aliasPermutations": [],
|
|
8272
|
-
"permutations": [
|
|
8273
|
-
"hardis:org:refresh:before-refresh",
|
|
8274
|
-
"org:hardis:refresh:before-refresh",
|
|
8275
|
-
"org:refresh:hardis:before-refresh",
|
|
8276
|
-
"org:refresh:before-refresh:hardis",
|
|
8277
|
-
"hardis:refresh:org:before-refresh",
|
|
8278
|
-
"refresh:hardis:org:before-refresh",
|
|
8279
|
-
"refresh:org:hardis:before-refresh",
|
|
8280
|
-
"refresh:org:before-refresh:hardis",
|
|
8281
|
-
"hardis:refresh:before-refresh:org",
|
|
8282
|
-
"refresh:hardis:before-refresh:org",
|
|
8283
|
-
"refresh:before-refresh:hardis:org",
|
|
8284
|
-
"refresh:before-refresh:org:hardis",
|
|
8285
|
-
"hardis:org:before-refresh:refresh",
|
|
8286
|
-
"org:hardis:before-refresh:refresh",
|
|
8287
|
-
"org:before-refresh:hardis:refresh",
|
|
8288
|
-
"org:before-refresh:refresh:hardis",
|
|
8289
|
-
"hardis:before-refresh:org:refresh",
|
|
8290
|
-
"before-refresh:hardis:org:refresh",
|
|
8291
|
-
"before-refresh:org:hardis:refresh",
|
|
8292
|
-
"before-refresh:org:refresh:hardis",
|
|
8293
|
-
"hardis:before-refresh:refresh:org",
|
|
8294
|
-
"before-refresh:hardis:refresh:org",
|
|
8295
|
-
"before-refresh:refresh:hardis:org",
|
|
8296
|
-
"before-refresh:refresh:org:hardis"
|
|
8297
|
-
]
|
|
8298
|
-
},
|
|
8299
|
-
"hardis:org:retrieve:packageconfig": {
|
|
8300
|
-
"aliases": [],
|
|
8301
|
-
"args": {},
|
|
8302
|
-
"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<details markdown=\"1\">\n<summary>Technical explanations</summary>\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</details>\n",
|
|
8303
|
-
"examples": [
|
|
8304
|
-
"$ sf hardis:org:retrieve:packageconfig",
|
|
8305
|
-
"sf hardis:org:retrieve:packageconfig -u myOrg"
|
|
8306
|
-
],
|
|
8307
|
-
"flags": {
|
|
8308
|
-
"json": {
|
|
8309
|
-
"description": "Format output as json.",
|
|
8310
|
-
"helpGroup": "GLOBAL",
|
|
8311
|
-
"name": "json",
|
|
8312
|
-
"allowNo": false,
|
|
8313
|
-
"type": "boolean"
|
|
8314
|
-
},
|
|
8315
|
-
"flags-dir": {
|
|
8316
|
-
"helpGroup": "GLOBAL",
|
|
8317
|
-
"name": "flags-dir",
|
|
8318
|
-
"summary": "Import flag values from a directory.",
|
|
8319
|
-
"hasDynamicHelp": false,
|
|
8320
|
-
"multiple": false,
|
|
8321
|
-
"type": "option"
|
|
8322
|
-
},
|
|
8323
|
-
"debug": {
|
|
8324
|
-
"char": "d",
|
|
8325
|
-
"description": "Activate debug mode (more logs)",
|
|
8326
|
-
"name": "debug",
|
|
8327
|
-
"allowNo": false,
|
|
8328
|
-
"type": "boolean"
|
|
8329
|
-
},
|
|
8330
|
-
"websocket": {
|
|
8331
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
8332
|
-
"name": "websocket",
|
|
8333
|
-
"hasDynamicHelp": false,
|
|
8334
|
-
"multiple": false,
|
|
8335
|
-
"type": "option"
|
|
8336
|
-
},
|
|
8337
|
-
"skipauth": {
|
|
8338
|
-
"description": "Skip authentication check when a default username is required",
|
|
8339
|
-
"name": "skipauth",
|
|
8340
|
-
"allowNo": false,
|
|
8341
|
-
"type": "boolean"
|
|
8342
|
-
},
|
|
8343
|
-
"target-org": {
|
|
8344
|
-
"aliases": [
|
|
8345
|
-
"targetusername",
|
|
8346
|
-
"u"
|
|
8347
|
-
],
|
|
8348
|
-
"char": "o",
|
|
8349
|
-
"deprecateAliases": true,
|
|
8350
|
-
"name": "target-org",
|
|
8351
|
-
"noCacheDefault": true,
|
|
8352
|
-
"required": true,
|
|
8353
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
8354
|
-
"hasDynamicHelp": true,
|
|
8355
|
-
"multiple": false,
|
|
8356
|
-
"type": "option"
|
|
8357
|
-
}
|
|
8358
|
-
},
|
|
8359
|
-
"hasDynamicHelp": true,
|
|
8360
|
-
"hiddenAliases": [],
|
|
8361
|
-
"id": "hardis:org:retrieve:packageconfig",
|
|
8362
|
-
"pluginAlias": "sfdx-hardis",
|
|
8363
|
-
"pluginName": "sfdx-hardis",
|
|
8364
|
-
"pluginType": "core",
|
|
8365
|
-
"strict": true,
|
|
8366
|
-
"enableJsonFlag": true,
|
|
8367
|
-
"title": "Retrieve package configuration from an org",
|
|
8368
|
-
"requiresProject": false,
|
|
8369
|
-
"isESM": true,
|
|
8370
|
-
"relativePath": [
|
|
8371
|
-
"lib",
|
|
8372
|
-
"commands",
|
|
8373
|
-
"hardis",
|
|
8374
|
-
"org",
|
|
8375
|
-
"retrieve",
|
|
8376
|
-
"packageconfig.js"
|
|
8375
|
+
"refresh",
|
|
8376
|
+
"before-refresh.js"
|
|
8377
8377
|
],
|
|
8378
8378
|
"aliasPermutations": [],
|
|
8379
8379
|
"permutations": [
|
|
8380
|
-
"hardis:org:
|
|
8381
|
-
"org:hardis:
|
|
8382
|
-
"org:
|
|
8383
|
-
"org:
|
|
8384
|
-
"hardis:
|
|
8385
|
-
"
|
|
8386
|
-
"
|
|
8387
|
-
"
|
|
8388
|
-
"hardis:
|
|
8389
|
-
"
|
|
8390
|
-
"
|
|
8391
|
-
"
|
|
8392
|
-
"hardis:org:
|
|
8393
|
-
"org:hardis:
|
|
8394
|
-
"org:
|
|
8395
|
-
"org:
|
|
8396
|
-
"hardis:
|
|
8397
|
-
"
|
|
8398
|
-
"
|
|
8399
|
-
"
|
|
8400
|
-
"hardis:
|
|
8401
|
-
"
|
|
8402
|
-
"
|
|
8403
|
-
"
|
|
8380
|
+
"hardis:org:refresh:before-refresh",
|
|
8381
|
+
"org:hardis:refresh:before-refresh",
|
|
8382
|
+
"org:refresh:hardis:before-refresh",
|
|
8383
|
+
"org:refresh:before-refresh:hardis",
|
|
8384
|
+
"hardis:refresh:org:before-refresh",
|
|
8385
|
+
"refresh:hardis:org:before-refresh",
|
|
8386
|
+
"refresh:org:hardis:before-refresh",
|
|
8387
|
+
"refresh:org:before-refresh:hardis",
|
|
8388
|
+
"hardis:refresh:before-refresh:org",
|
|
8389
|
+
"refresh:hardis:before-refresh:org",
|
|
8390
|
+
"refresh:before-refresh:hardis:org",
|
|
8391
|
+
"refresh:before-refresh:org:hardis",
|
|
8392
|
+
"hardis:org:before-refresh:refresh",
|
|
8393
|
+
"org:hardis:before-refresh:refresh",
|
|
8394
|
+
"org:before-refresh:hardis:refresh",
|
|
8395
|
+
"org:before-refresh:refresh:hardis",
|
|
8396
|
+
"hardis:before-refresh:org:refresh",
|
|
8397
|
+
"before-refresh:hardis:org:refresh",
|
|
8398
|
+
"before-refresh:org:hardis:refresh",
|
|
8399
|
+
"before-refresh:org:refresh:hardis",
|
|
8400
|
+
"hardis:before-refresh:refresh:org",
|
|
8401
|
+
"before-refresh:hardis:refresh:org",
|
|
8402
|
+
"before-refresh:refresh:hardis:org",
|
|
8403
|
+
"before-refresh:refresh:org:hardis"
|
|
8404
8404
|
]
|
|
8405
8405
|
},
|
|
8406
8406
|
"hardis:org:test:apex": {
|
|
8407
8407
|
"aliases": [],
|
|
8408
8408
|
"args": {},
|
|
8409
|
-
"description": "Run apex tests in Salesforce org\n\nIf following configuration is defined, it will fail if apex coverage target is not reached:\n\n- Env `APEX_TESTS_MIN_COVERAGE_ORG_WIDE` or `.sfdx-hardis` property `apexTestsMinCoverageOrgWide`\n- Env `APEX_TESTS_MIN_COVERAGE_ORG_WIDE` or `.sfdx-hardis` property `apexTestsMinCoverageOrgWide`\n\nYou can override env var SFDX_TEST_WAIT_MINUTES to wait more than
|
|
8409
|
+
"description": "Run apex tests in Salesforce org\n\nIf following configuration is defined, it will fail if apex coverage target is not reached:\n\n- Env `APEX_TESTS_MIN_COVERAGE_ORG_WIDE` or `.sfdx-hardis` property `apexTestsMinCoverageOrgWide`\n- Env `APEX_TESTS_MIN_COVERAGE_ORG_WIDE` or `.sfdx-hardis` property `apexTestsMinCoverageOrgWide`\n\nYou can override env var SFDX_TEST_WAIT_MINUTES to wait more than 120 minutes.\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-apex-tests/) and can output Grafana, Slack and MsTeams Notifications.\n",
|
|
8410
8410
|
"examples": [
|
|
8411
8411
|
"$ sf hardis:org:test:apex"
|
|
8412
8412
|
],
|
|
@@ -9819,6 +9819,109 @@
|
|
|
9819
9819
|
"auth:configure:project:hardis"
|
|
9820
9820
|
]
|
|
9821
9821
|
},
|
|
9822
|
+
"hardis:project:convert:profilestopermsets": {
|
|
9823
|
+
"aliases": [],
|
|
9824
|
+
"args": {},
|
|
9825
|
+
"description": "\n## Command Behavior\n\n**Converts existing Salesforce Profiles into Permission Sets, facilitating a more granular and recommended security model.**\n\nThis command helps in migrating permissions from Profiles to Permission Sets, which is a best practice for managing user access in Salesforce. It creates a new Permission Set for each specified Profile, adopting a naming convention of `PS_PROFILENAME`.\n\nKey functionalities:\n\n- **Profile to Permission Set Conversion:** Automatically extracts permissions from a Profile and creates a corresponding Permission Set.\n- **Naming Convention:** New Permission Sets are named with a `PS_` prefix followed by the Profile name (e.g., `PS_Standard_User`).\n- **Exclusion Filter:** Allows you to exclude specific Profiles from the conversion process using the `--except` flag.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **External Plugin Integration:** It relies on the `shane-sfdx-plugins` (specifically the `sf shane:profile:convert` command) to perform the actual conversion.\n- **File System Scan:** It reads the contents of the `force-app/main/default/profiles` directory to identify all available Profile metadata files.\n- **Command Execution:** For each identified Profile (that is not excluded), it constructs and executes the `sf shane:profile:convert` command with the appropriate Profile name and desired Permission Set name.\n- **Error Handling:** Includes basic error handling for the external command execution.\n</details>\n",
|
|
9826
|
+
"examples": [
|
|
9827
|
+
"$ sf hardis:project:convert:profilestopermsets"
|
|
9828
|
+
],
|
|
9829
|
+
"flags": {
|
|
9830
|
+
"json": {
|
|
9831
|
+
"description": "Format output as json.",
|
|
9832
|
+
"helpGroup": "GLOBAL",
|
|
9833
|
+
"name": "json",
|
|
9834
|
+
"allowNo": false,
|
|
9835
|
+
"type": "boolean"
|
|
9836
|
+
},
|
|
9837
|
+
"flags-dir": {
|
|
9838
|
+
"helpGroup": "GLOBAL",
|
|
9839
|
+
"name": "flags-dir",
|
|
9840
|
+
"summary": "Import flag values from a directory.",
|
|
9841
|
+
"hasDynamicHelp": false,
|
|
9842
|
+
"multiple": false,
|
|
9843
|
+
"type": "option"
|
|
9844
|
+
},
|
|
9845
|
+
"except": {
|
|
9846
|
+
"char": "e",
|
|
9847
|
+
"description": "List of filters",
|
|
9848
|
+
"name": "except",
|
|
9849
|
+
"default": [],
|
|
9850
|
+
"hasDynamicHelp": false,
|
|
9851
|
+
"multiple": true,
|
|
9852
|
+
"type": "option"
|
|
9853
|
+
},
|
|
9854
|
+
"debug": {
|
|
9855
|
+
"char": "d",
|
|
9856
|
+
"description": "Activate debug mode (more logs)",
|
|
9857
|
+
"name": "debug",
|
|
9858
|
+
"allowNo": false,
|
|
9859
|
+
"type": "boolean"
|
|
9860
|
+
},
|
|
9861
|
+
"websocket": {
|
|
9862
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
9863
|
+
"name": "websocket",
|
|
9864
|
+
"hasDynamicHelp": false,
|
|
9865
|
+
"multiple": false,
|
|
9866
|
+
"type": "option"
|
|
9867
|
+
},
|
|
9868
|
+
"skipauth": {
|
|
9869
|
+
"description": "Skip authentication check when a default username is required",
|
|
9870
|
+
"name": "skipauth",
|
|
9871
|
+
"allowNo": false,
|
|
9872
|
+
"type": "boolean"
|
|
9873
|
+
}
|
|
9874
|
+
},
|
|
9875
|
+
"hasDynamicHelp": false,
|
|
9876
|
+
"hiddenAliases": [],
|
|
9877
|
+
"id": "hardis:project:convert:profilestopermsets",
|
|
9878
|
+
"pluginAlias": "sfdx-hardis",
|
|
9879
|
+
"pluginName": "sfdx-hardis",
|
|
9880
|
+
"pluginType": "core",
|
|
9881
|
+
"strict": true,
|
|
9882
|
+
"enableJsonFlag": true,
|
|
9883
|
+
"title": "Convert Profiles into Permission Sets",
|
|
9884
|
+
"requiresProject": true,
|
|
9885
|
+
"requiresSfdxPlugins": [
|
|
9886
|
+
"shane-sfdx-plugins"
|
|
9887
|
+
],
|
|
9888
|
+
"isESM": true,
|
|
9889
|
+
"relativePath": [
|
|
9890
|
+
"lib",
|
|
9891
|
+
"commands",
|
|
9892
|
+
"hardis",
|
|
9893
|
+
"project",
|
|
9894
|
+
"convert",
|
|
9895
|
+
"profilestopermsets.js"
|
|
9896
|
+
],
|
|
9897
|
+
"aliasPermutations": [],
|
|
9898
|
+
"permutations": [
|
|
9899
|
+
"hardis:project:convert:profilestopermsets",
|
|
9900
|
+
"project:hardis:convert:profilestopermsets",
|
|
9901
|
+
"project:convert:hardis:profilestopermsets",
|
|
9902
|
+
"project:convert:profilestopermsets:hardis",
|
|
9903
|
+
"hardis:convert:project:profilestopermsets",
|
|
9904
|
+
"convert:hardis:project:profilestopermsets",
|
|
9905
|
+
"convert:project:hardis:profilestopermsets",
|
|
9906
|
+
"convert:project:profilestopermsets:hardis",
|
|
9907
|
+
"hardis:convert:profilestopermsets:project",
|
|
9908
|
+
"convert:hardis:profilestopermsets:project",
|
|
9909
|
+
"convert:profilestopermsets:hardis:project",
|
|
9910
|
+
"convert:profilestopermsets:project:hardis",
|
|
9911
|
+
"hardis:project:profilestopermsets:convert",
|
|
9912
|
+
"project:hardis:profilestopermsets:convert",
|
|
9913
|
+
"project:profilestopermsets:hardis:convert",
|
|
9914
|
+
"project:profilestopermsets:convert:hardis",
|
|
9915
|
+
"hardis:profilestopermsets:project:convert",
|
|
9916
|
+
"profilestopermsets:hardis:project:convert",
|
|
9917
|
+
"profilestopermsets:project:hardis:convert",
|
|
9918
|
+
"profilestopermsets:project:convert:hardis",
|
|
9919
|
+
"hardis:profilestopermsets:convert:project",
|
|
9920
|
+
"profilestopermsets:hardis:convert:project",
|
|
9921
|
+
"profilestopermsets:convert:hardis:project",
|
|
9922
|
+
"profilestopermsets:convert:project:hardis"
|
|
9923
|
+
]
|
|
9924
|
+
},
|
|
9822
9925
|
"hardis:project:clean:emptyitems": {
|
|
9823
9926
|
"aliases": [],
|
|
9824
9927
|
"args": {},
|
|
@@ -11304,109 +11407,6 @@
|
|
|
11304
11407
|
"xml:clean:project:hardis"
|
|
11305
11408
|
]
|
|
11306
11409
|
},
|
|
11307
|
-
"hardis:project:convert:profilestopermsets": {
|
|
11308
|
-
"aliases": [],
|
|
11309
|
-
"args": {},
|
|
11310
|
-
"description": "\n## Command Behavior\n\n**Converts existing Salesforce Profiles into Permission Sets, facilitating a more granular and recommended security model.**\n\nThis command helps in migrating permissions from Profiles to Permission Sets, which is a best practice for managing user access in Salesforce. It creates a new Permission Set for each specified Profile, adopting a naming convention of `PS_PROFILENAME`.\n\nKey functionalities:\n\n- **Profile to Permission Set Conversion:** Automatically extracts permissions from a Profile and creates a corresponding Permission Set.\n- **Naming Convention:** New Permission Sets are named with a `PS_` prefix followed by the Profile name (e.g., `PS_Standard_User`).\n- **Exclusion Filter:** Allows you to exclude specific Profiles from the conversion process using the `--except` flag.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **External Plugin Integration:** It relies on the `shane-sfdx-plugins` (specifically the `sf shane:profile:convert` command) to perform the actual conversion.\n- **File System Scan:** It reads the contents of the `force-app/main/default/profiles` directory to identify all available Profile metadata files.\n- **Command Execution:** For each identified Profile (that is not excluded), it constructs and executes the `sf shane:profile:convert` command with the appropriate Profile name and desired Permission Set name.\n- **Error Handling:** Includes basic error handling for the external command execution.\n</details>\n",
|
|
11311
|
-
"examples": [
|
|
11312
|
-
"$ sf hardis:project:convert:profilestopermsets"
|
|
11313
|
-
],
|
|
11314
|
-
"flags": {
|
|
11315
|
-
"json": {
|
|
11316
|
-
"description": "Format output as json.",
|
|
11317
|
-
"helpGroup": "GLOBAL",
|
|
11318
|
-
"name": "json",
|
|
11319
|
-
"allowNo": false,
|
|
11320
|
-
"type": "boolean"
|
|
11321
|
-
},
|
|
11322
|
-
"flags-dir": {
|
|
11323
|
-
"helpGroup": "GLOBAL",
|
|
11324
|
-
"name": "flags-dir",
|
|
11325
|
-
"summary": "Import flag values from a directory.",
|
|
11326
|
-
"hasDynamicHelp": false,
|
|
11327
|
-
"multiple": false,
|
|
11328
|
-
"type": "option"
|
|
11329
|
-
},
|
|
11330
|
-
"except": {
|
|
11331
|
-
"char": "e",
|
|
11332
|
-
"description": "List of filters",
|
|
11333
|
-
"name": "except",
|
|
11334
|
-
"default": [],
|
|
11335
|
-
"hasDynamicHelp": false,
|
|
11336
|
-
"multiple": true,
|
|
11337
|
-
"type": "option"
|
|
11338
|
-
},
|
|
11339
|
-
"debug": {
|
|
11340
|
-
"char": "d",
|
|
11341
|
-
"description": "Activate debug mode (more logs)",
|
|
11342
|
-
"name": "debug",
|
|
11343
|
-
"allowNo": false,
|
|
11344
|
-
"type": "boolean"
|
|
11345
|
-
},
|
|
11346
|
-
"websocket": {
|
|
11347
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
11348
|
-
"name": "websocket",
|
|
11349
|
-
"hasDynamicHelp": false,
|
|
11350
|
-
"multiple": false,
|
|
11351
|
-
"type": "option"
|
|
11352
|
-
},
|
|
11353
|
-
"skipauth": {
|
|
11354
|
-
"description": "Skip authentication check when a default username is required",
|
|
11355
|
-
"name": "skipauth",
|
|
11356
|
-
"allowNo": false,
|
|
11357
|
-
"type": "boolean"
|
|
11358
|
-
}
|
|
11359
|
-
},
|
|
11360
|
-
"hasDynamicHelp": false,
|
|
11361
|
-
"hiddenAliases": [],
|
|
11362
|
-
"id": "hardis:project:convert:profilestopermsets",
|
|
11363
|
-
"pluginAlias": "sfdx-hardis",
|
|
11364
|
-
"pluginName": "sfdx-hardis",
|
|
11365
|
-
"pluginType": "core",
|
|
11366
|
-
"strict": true,
|
|
11367
|
-
"enableJsonFlag": true,
|
|
11368
|
-
"title": "Convert Profiles into Permission Sets",
|
|
11369
|
-
"requiresProject": true,
|
|
11370
|
-
"requiresSfdxPlugins": [
|
|
11371
|
-
"shane-sfdx-plugins"
|
|
11372
|
-
],
|
|
11373
|
-
"isESM": true,
|
|
11374
|
-
"relativePath": [
|
|
11375
|
-
"lib",
|
|
11376
|
-
"commands",
|
|
11377
|
-
"hardis",
|
|
11378
|
-
"project",
|
|
11379
|
-
"convert",
|
|
11380
|
-
"profilestopermsets.js"
|
|
11381
|
-
],
|
|
11382
|
-
"aliasPermutations": [],
|
|
11383
|
-
"permutations": [
|
|
11384
|
-
"hardis:project:convert:profilestopermsets",
|
|
11385
|
-
"project:hardis:convert:profilestopermsets",
|
|
11386
|
-
"project:convert:hardis:profilestopermsets",
|
|
11387
|
-
"project:convert:profilestopermsets:hardis",
|
|
11388
|
-
"hardis:convert:project:profilestopermsets",
|
|
11389
|
-
"convert:hardis:project:profilestopermsets",
|
|
11390
|
-
"convert:project:hardis:profilestopermsets",
|
|
11391
|
-
"convert:project:profilestopermsets:hardis",
|
|
11392
|
-
"hardis:convert:profilestopermsets:project",
|
|
11393
|
-
"convert:hardis:profilestopermsets:project",
|
|
11394
|
-
"convert:profilestopermsets:hardis:project",
|
|
11395
|
-
"convert:profilestopermsets:project:hardis",
|
|
11396
|
-
"hardis:project:profilestopermsets:convert",
|
|
11397
|
-
"project:hardis:profilestopermsets:convert",
|
|
11398
|
-
"project:profilestopermsets:hardis:convert",
|
|
11399
|
-
"project:profilestopermsets:convert:hardis",
|
|
11400
|
-
"hardis:profilestopermsets:project:convert",
|
|
11401
|
-
"profilestopermsets:hardis:project:convert",
|
|
11402
|
-
"profilestopermsets:project:hardis:convert",
|
|
11403
|
-
"profilestopermsets:project:convert:hardis",
|
|
11404
|
-
"hardis:profilestopermsets:convert:project",
|
|
11405
|
-
"profilestopermsets:hardis:convert:project",
|
|
11406
|
-
"profilestopermsets:convert:hardis:project",
|
|
11407
|
-
"profilestopermsets:convert:project:hardis"
|
|
11408
|
-
]
|
|
11409
|
-
},
|
|
11410
11410
|
"hardis:project:deploy:notify": {
|
|
11411
11411
|
"aliases": [],
|
|
11412
11412
|
"args": {},
|
|
@@ -15370,5 +15370,5 @@
|
|
|
15370
15370
|
]
|
|
15371
15371
|
}
|
|
15372
15372
|
},
|
|
15373
|
-
"version": "6.9.0"
|
|
15373
|
+
"version": "6.9.1-alpha202510260151.0"
|
|
15374
15374
|
}
|