sfdx-hardis 6.0.7-beta202508191748.0 → 6.0.7-beta202508231311.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 +9 -0
- package/README.md +2 -8
- package/lib/commands/hardis/org/diagnose/unused-connected-apps.js +2 -2
- package/lib/commands/hardis/org/diagnose/unused-connected-apps.js.map +1 -1
- package/lib/commands/hardis/org/refresh/after-refresh.d.ts +13 -0
- package/lib/commands/hardis/org/refresh/after-refresh.js +435 -32
- package/lib/commands/hardis/org/refresh/after-refresh.js.map +1 -1
- package/lib/commands/hardis/org/refresh/before-refresh.d.ts +4 -0
- package/lib/commands/hardis/org/refresh/before-refresh.js +66 -35
- package/lib/commands/hardis/org/refresh/before-refresh.js.map +1 -1
- package/lib/commands/hardis/work/save.js +12 -1
- package/lib/commands/hardis/work/save.js.map +1 -1
- package/lib/common/utils/index.js +3 -0
- package/lib/common/utils/index.js.map +1 -1
- package/lib/common/utils/orgUtils.js +1 -1
- package/lib/common/utils/orgUtils.js.map +1 -1
- package/lib/common/websocketClient.js +5 -0
- package/lib/common/websocketClient.js.map +1 -1
- package/lib/hooks/init/check-upgrade.js +2 -3
- package/lib/hooks/init/check-upgrade.js.map +1 -1
- package/lib/hooks/init/log.js +1 -1
- package/lib/hooks/init/log.js.map +1 -1
- package/oclif.lock +17 -17
- package/oclif.manifest.json +762 -762
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -132,12 +132,13 @@
|
|
|
132
132
|
"clear:cache:hardis"
|
|
133
133
|
]
|
|
134
134
|
},
|
|
135
|
-
"hardis:
|
|
135
|
+
"hardis:auth:login": {
|
|
136
136
|
"aliases": [],
|
|
137
137
|
"args": {},
|
|
138
|
-
"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",
|
|
139
139
|
"examples": [
|
|
140
|
-
"$ sf hardis:
|
|
140
|
+
"$ sf hardis:auth:login",
|
|
141
|
+
"CI=true sf hardis:auth:login"
|
|
141
142
|
],
|
|
142
143
|
"flags": {
|
|
143
144
|
"json": {
|
|
@@ -155,20 +156,28 @@
|
|
|
155
156
|
"multiple": false,
|
|
156
157
|
"type": "option"
|
|
157
158
|
},
|
|
158
|
-
"
|
|
159
|
-
"char": "
|
|
160
|
-
"description": "
|
|
161
|
-
"name": "
|
|
162
|
-
"default": "project",
|
|
159
|
+
"instanceurl": {
|
|
160
|
+
"char": "r",
|
|
161
|
+
"description": "URL of org instance",
|
|
162
|
+
"name": "instanceurl",
|
|
163
163
|
"hasDynamicHelp": false,
|
|
164
164
|
"multiple": false,
|
|
165
|
-
"options": [
|
|
166
|
-
"project",
|
|
167
|
-
"branch",
|
|
168
|
-
"user"
|
|
169
|
-
],
|
|
170
165
|
"type": "option"
|
|
171
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
|
+
},
|
|
172
181
|
"debug": {
|
|
173
182
|
"char": "d",
|
|
174
183
|
"description": "Activate debug mode (more logs)",
|
|
@@ -192,39 +201,38 @@
|
|
|
192
201
|
},
|
|
193
202
|
"hasDynamicHelp": false,
|
|
194
203
|
"hiddenAliases": [],
|
|
195
|
-
"id": "hardis:
|
|
204
|
+
"id": "hardis:auth:login",
|
|
196
205
|
"pluginAlias": "sfdx-hardis",
|
|
197
206
|
"pluginName": "sfdx-hardis",
|
|
198
207
|
"pluginType": "core",
|
|
199
208
|
"strict": true,
|
|
200
209
|
"enableJsonFlag": true,
|
|
201
|
-
"title": "
|
|
210
|
+
"title": "Login",
|
|
202
211
|
"requiresProject": false,
|
|
203
212
|
"isESM": true,
|
|
204
213
|
"relativePath": [
|
|
205
214
|
"lib",
|
|
206
215
|
"commands",
|
|
207
216
|
"hardis",
|
|
208
|
-
"
|
|
209
|
-
"
|
|
217
|
+
"auth",
|
|
218
|
+
"login.js"
|
|
210
219
|
],
|
|
211
220
|
"aliasPermutations": [],
|
|
212
221
|
"permutations": [
|
|
213
|
-
"hardis:
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"hardis:
|
|
217
|
-
"
|
|
218
|
-
"
|
|
222
|
+
"hardis:auth:login",
|
|
223
|
+
"auth:hardis:login",
|
|
224
|
+
"auth:login:hardis",
|
|
225
|
+
"hardis:login:auth",
|
|
226
|
+
"login:hardis:auth",
|
|
227
|
+
"login:auth:hardis"
|
|
219
228
|
]
|
|
220
229
|
},
|
|
221
|
-
"hardis:
|
|
230
|
+
"hardis:config:get": {
|
|
222
231
|
"aliases": [],
|
|
223
232
|
"args": {},
|
|
224
|
-
"description": "\n## Command Behavior\n\n**
|
|
233
|
+
"description": "\n## Command Behavior\n\n**Retrieves and displays the sfdx-hardis configuration for a specified level.**\n\nThis command allows you to inspect the configuration that is currently in effect for your project, which is useful for debugging and understanding how sfdx-hardis will behave.\n\n- **Configuration levels:** It can retrieve configuration from three different levels:\n - **Project:** The configuration defined in the project's `.sfdx-hardis.yml` file.\n - **Branch:** The configuration defined in a branch-specific configuration file (e.g., `.sfdx-hardis.production.yml`).\n - **User:** The global user-level configuration.\n\n## Technical explanations\n\nThe command's logic is straightforward:\n\n- **`getConfig` function:** It calls the `getConfig` utility function, passing the desired configuration level as an argument.\n- **Configuration loading:** The `getConfig` function is responsible for finding the appropriate configuration file, reading its contents, and parsing it as YAML or JSON.\n- **Output:** The retrieved configuration is then displayed to the user as a JSON string.\n",
|
|
225
234
|
"examples": [
|
|
226
|
-
"$ sf hardis:
|
|
227
|
-
"CI=true sf hardis:auth:login"
|
|
235
|
+
"$ sf hardis:project:deploy:sources:metadata"
|
|
228
236
|
],
|
|
229
237
|
"flags": {
|
|
230
238
|
"json": {
|
|
@@ -242,28 +250,20 @@
|
|
|
242
250
|
"multiple": false,
|
|
243
251
|
"type": "option"
|
|
244
252
|
},
|
|
245
|
-
"
|
|
246
|
-
"char": "
|
|
247
|
-
"description": "
|
|
248
|
-
"name": "
|
|
253
|
+
"level": {
|
|
254
|
+
"char": "l",
|
|
255
|
+
"description": "project,branch or user",
|
|
256
|
+
"name": "level",
|
|
257
|
+
"default": "project",
|
|
249
258
|
"hasDynamicHelp": false,
|
|
250
259
|
"multiple": false,
|
|
260
|
+
"options": [
|
|
261
|
+
"project",
|
|
262
|
+
"branch",
|
|
263
|
+
"user"
|
|
264
|
+
],
|
|
251
265
|
"type": "option"
|
|
252
266
|
},
|
|
253
|
-
"devhub": {
|
|
254
|
-
"char": "h",
|
|
255
|
-
"description": "Also connect associated DevHub",
|
|
256
|
-
"name": "devhub",
|
|
257
|
-
"allowNo": false,
|
|
258
|
-
"type": "boolean"
|
|
259
|
-
},
|
|
260
|
-
"scratchorg": {
|
|
261
|
-
"char": "s",
|
|
262
|
-
"description": "Scratch org",
|
|
263
|
-
"name": "scratchorg",
|
|
264
|
-
"allowNo": false,
|
|
265
|
-
"type": "boolean"
|
|
266
|
-
},
|
|
267
267
|
"debug": {
|
|
268
268
|
"char": "d",
|
|
269
269
|
"description": "Activate debug mode (more logs)",
|
|
@@ -287,30 +287,30 @@
|
|
|
287
287
|
},
|
|
288
288
|
"hasDynamicHelp": false,
|
|
289
289
|
"hiddenAliases": [],
|
|
290
|
-
"id": "hardis:
|
|
290
|
+
"id": "hardis:config:get",
|
|
291
291
|
"pluginAlias": "sfdx-hardis",
|
|
292
292
|
"pluginName": "sfdx-hardis",
|
|
293
293
|
"pluginType": "core",
|
|
294
294
|
"strict": true,
|
|
295
295
|
"enableJsonFlag": true,
|
|
296
|
-
"title": "
|
|
296
|
+
"title": "Deploy metadata sources to org",
|
|
297
297
|
"requiresProject": false,
|
|
298
298
|
"isESM": true,
|
|
299
299
|
"relativePath": [
|
|
300
300
|
"lib",
|
|
301
301
|
"commands",
|
|
302
302
|
"hardis",
|
|
303
|
-
"
|
|
304
|
-
"
|
|
303
|
+
"config",
|
|
304
|
+
"get.js"
|
|
305
305
|
],
|
|
306
306
|
"aliasPermutations": [],
|
|
307
307
|
"permutations": [
|
|
308
|
-
"hardis:
|
|
309
|
-
"
|
|
310
|
-
"
|
|
311
|
-
"hardis:
|
|
312
|
-
"
|
|
313
|
-
"
|
|
308
|
+
"hardis:config:get",
|
|
309
|
+
"config:hardis:get",
|
|
310
|
+
"config:get:hardis",
|
|
311
|
+
"hardis:get:config",
|
|
312
|
+
"get:hardis:config",
|
|
313
|
+
"get:config:hardis"
|
|
314
314
|
]
|
|
315
315
|
},
|
|
316
316
|
"hardis:doc:fieldusage": {
|
|
@@ -4407,6 +4407,135 @@
|
|
|
4407
4407
|
"ws:work:hardis"
|
|
4408
4408
|
]
|
|
4409
4409
|
},
|
|
4410
|
+
"hardis:git:pull-requests:extract": {
|
|
4411
|
+
"aliases": [],
|
|
4412
|
+
"args": {},
|
|
4413
|
+
"description": "\n## Command Behavior\n\n**Extracts pull request information from your Git server based on specified filtering criteria.**\n\nThis command provides a powerful way to query and retrieve details about pull requests (or merge requests, depending on your Git provider) in your repository. It's highly useful for reporting, auditing, and analyzing development workflows.\n\nKey functionalities include:\n\n- **Target Branch Filtering:** You can filter pull requests by their target branch using the `--target-branch` flag. If not specified, the command will prompt you to select one.\n- **Status Filtering:** Filter pull requests by their status: `open`, `merged`, or `abandoned` using the `--status` flag. An interactive prompt is provided if no status is specified.\n- **Minimum Date Filtering:** Use the `--min-date` flag to retrieve pull requests created or updated after a specific date.\n- **CSV Output:** The extracted pull request data is generated into a CSV file, which can be used for further analysis in spreadsheet software.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves interacting with a Git provider's API:\n\n- **Git Provider Abstraction:** It uses the `GitProvider.getInstance(true)` to abstract away the specifics of different Git platforms (e.g., GitHub, GitLab, Azure DevOps). This ensures the command can work across various environments.\n- **API Calls:** The `gitProvider.listPullRequests()` method is called with a `prConstraint` object that encapsulates the filtering criteria (target branch, minimum date, status).\n- **Interactive Prompts:** The `prompts` library is used to interactively gather input from the user for the target branch and pull request status if they are not provided as command-line flags.\n- **Date Handling:** The `moment` library is used to parse and handle date inputs for the `--min-date` flag.\n- **CSV Generation:** The `generateCsvFile` utility is responsible for converting the retrieved pull request data into a CSV format, and `generateReportPath` determines the output file location.\n- **Error Handling:** It includes error handling for cases where a Git provider cannot be identified.\n</details>\n",
|
|
4414
|
+
"examples": [
|
|
4415
|
+
"$ sf hardis:git:pull-requests:extract",
|
|
4416
|
+
"$ sf hardis:git:pull-requests:extract --target-branch main --status merged"
|
|
4417
|
+
],
|
|
4418
|
+
"flags": {
|
|
4419
|
+
"json": {
|
|
4420
|
+
"description": "Format output as json.",
|
|
4421
|
+
"helpGroup": "GLOBAL",
|
|
4422
|
+
"name": "json",
|
|
4423
|
+
"allowNo": false,
|
|
4424
|
+
"type": "boolean"
|
|
4425
|
+
},
|
|
4426
|
+
"flags-dir": {
|
|
4427
|
+
"helpGroup": "GLOBAL",
|
|
4428
|
+
"name": "flags-dir",
|
|
4429
|
+
"summary": "Import flag values from a directory.",
|
|
4430
|
+
"hasDynamicHelp": false,
|
|
4431
|
+
"multiple": false,
|
|
4432
|
+
"type": "option"
|
|
4433
|
+
},
|
|
4434
|
+
"target-branch": {
|
|
4435
|
+
"char": "t",
|
|
4436
|
+
"description": "Target branch of PRs",
|
|
4437
|
+
"name": "target-branch",
|
|
4438
|
+
"hasDynamicHelp": false,
|
|
4439
|
+
"multiple": false,
|
|
4440
|
+
"type": "option"
|
|
4441
|
+
},
|
|
4442
|
+
"status": {
|
|
4443
|
+
"char": "x",
|
|
4444
|
+
"description": "Status of the PR",
|
|
4445
|
+
"name": "status",
|
|
4446
|
+
"hasDynamicHelp": false,
|
|
4447
|
+
"multiple": false,
|
|
4448
|
+
"options": [
|
|
4449
|
+
"open",
|
|
4450
|
+
"merged",
|
|
4451
|
+
"abandoned"
|
|
4452
|
+
],
|
|
4453
|
+
"type": "option"
|
|
4454
|
+
},
|
|
4455
|
+
"min-date": {
|
|
4456
|
+
"char": "m",
|
|
4457
|
+
"description": "Minimum date for PR",
|
|
4458
|
+
"name": "min-date",
|
|
4459
|
+
"hasDynamicHelp": false,
|
|
4460
|
+
"multiple": false,
|
|
4461
|
+
"type": "option"
|
|
4462
|
+
},
|
|
4463
|
+
"outputfile": {
|
|
4464
|
+
"char": "f",
|
|
4465
|
+
"description": "Force the path and name of output report file. Must end with .csv",
|
|
4466
|
+
"name": "outputfile",
|
|
4467
|
+
"hasDynamicHelp": false,
|
|
4468
|
+
"multiple": false,
|
|
4469
|
+
"type": "option"
|
|
4470
|
+
},
|
|
4471
|
+
"debug": {
|
|
4472
|
+
"char": "d",
|
|
4473
|
+
"description": "Activate debug mode (more logs)",
|
|
4474
|
+
"name": "debug",
|
|
4475
|
+
"allowNo": false,
|
|
4476
|
+
"type": "boolean"
|
|
4477
|
+
},
|
|
4478
|
+
"websocket": {
|
|
4479
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
4480
|
+
"name": "websocket",
|
|
4481
|
+
"hasDynamicHelp": false,
|
|
4482
|
+
"multiple": false,
|
|
4483
|
+
"type": "option"
|
|
4484
|
+
},
|
|
4485
|
+
"skipauth": {
|
|
4486
|
+
"description": "Skip authentication check when a default username is required",
|
|
4487
|
+
"name": "skipauth",
|
|
4488
|
+
"allowNo": false,
|
|
4489
|
+
"type": "boolean"
|
|
4490
|
+
}
|
|
4491
|
+
},
|
|
4492
|
+
"hasDynamicHelp": false,
|
|
4493
|
+
"hiddenAliases": [],
|
|
4494
|
+
"id": "hardis:git:pull-requests:extract",
|
|
4495
|
+
"pluginAlias": "sfdx-hardis",
|
|
4496
|
+
"pluginName": "sfdx-hardis",
|
|
4497
|
+
"pluginType": "core",
|
|
4498
|
+
"strict": true,
|
|
4499
|
+
"enableJsonFlag": true,
|
|
4500
|
+
"title": "Extract pull requests",
|
|
4501
|
+
"requiresProject": true,
|
|
4502
|
+
"isESM": true,
|
|
4503
|
+
"relativePath": [
|
|
4504
|
+
"lib",
|
|
4505
|
+
"commands",
|
|
4506
|
+
"hardis",
|
|
4507
|
+
"git",
|
|
4508
|
+
"pull-requests",
|
|
4509
|
+
"extract.js"
|
|
4510
|
+
],
|
|
4511
|
+
"aliasPermutations": [],
|
|
4512
|
+
"permutations": [
|
|
4513
|
+
"hardis:git:pull-requests:extract",
|
|
4514
|
+
"git:hardis:pull-requests:extract",
|
|
4515
|
+
"git:pull-requests:hardis:extract",
|
|
4516
|
+
"git:pull-requests:extract:hardis",
|
|
4517
|
+
"hardis:pull-requests:git:extract",
|
|
4518
|
+
"pull-requests:hardis:git:extract",
|
|
4519
|
+
"pull-requests:git:hardis:extract",
|
|
4520
|
+
"pull-requests:git:extract:hardis",
|
|
4521
|
+
"hardis:pull-requests:extract:git",
|
|
4522
|
+
"pull-requests:hardis:extract:git",
|
|
4523
|
+
"pull-requests:extract:hardis:git",
|
|
4524
|
+
"pull-requests:extract:git:hardis",
|
|
4525
|
+
"hardis:git:extract:pull-requests",
|
|
4526
|
+
"git:hardis:extract:pull-requests",
|
|
4527
|
+
"git:extract:hardis:pull-requests",
|
|
4528
|
+
"git:extract:pull-requests:hardis",
|
|
4529
|
+
"hardis:extract:git:pull-requests",
|
|
4530
|
+
"extract:hardis:git:pull-requests",
|
|
4531
|
+
"extract:git:hardis:pull-requests",
|
|
4532
|
+
"extract:git:pull-requests:hardis",
|
|
4533
|
+
"hardis:extract:pull-requests:git",
|
|
4534
|
+
"extract:hardis:pull-requests:git",
|
|
4535
|
+
"extract:pull-requests:hardis:git",
|
|
4536
|
+
"extract:pull-requests:git:hardis"
|
|
4537
|
+
]
|
|
4538
|
+
},
|
|
4410
4539
|
"hardis:doc:extract:permsetgroups": {
|
|
4411
4540
|
"aliases": [],
|
|
4412
4541
|
"args": {},
|
|
@@ -4597,13 +4726,13 @@
|
|
|
4597
4726
|
"generate:plugin:doc:hardis"
|
|
4598
4727
|
]
|
|
4599
4728
|
},
|
|
4600
|
-
"hardis:
|
|
4729
|
+
"hardis:org:community:update": {
|
|
4601
4730
|
"aliases": [],
|
|
4602
4731
|
"args": {},
|
|
4603
|
-
"description": "\n## Command Behavior\n\n**
|
|
4732
|
+
"description": "\n## Command Behavior\n\n**Updates the status of one or more Salesforce Experience Cloud (Community) networks.**\n\nThis command provides a way to programmatically change the status of your Salesforce Communities, allowing you to manage their availability. This is particularly useful for:\n\n- **Maintenance:** Taking communities offline for planned maintenance (`DownForMaintenance`).\n- **Activation/Deactivation:** Bringing communities online or offline (`Live`, `DownForMaintenance`).\n- **Automation:** Integrating community status changes into CI/CD pipelines or scheduled jobs.\n\nKey functionalities:\n\n- **Network Selection:** You can specify one or more community network names (separated by commas) using the `--name` flag.\n- **Status Update:** You can set the new status for the selected communities using the `--status` flag. Supported values are `Live` and `DownForMaintenance`.\n- **Confirmation Prompt:** In non-CI environments, it provides a confirmation prompt before executing the update, ensuring intentional changes.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **Salesforce SOQL Query:** It first queries the Salesforce `Network` object using SOQL to retrieve the `Id`, `Name`, and `Status` of the specified communities. This ensures that only existing communities are targeted.\n- **SObject Update:** It then constructs an array of `Network` sObjects with their `Id` and the new `Status` and performs a DML update operation using `conn.sobject(\"Network\").update()`. The `allOrNone: false` option is used to allow partial success in case some updates fail.\n- **Error Handling and Reporting:** It iterates through the update results, logging success or failure for each community. It also provides a summary of successful and erroneous updates.\n- **User Interaction:** Uses `prompts` to confirm the update action with the user when not running in a CI environment.\n- **Salesforce Connection:** Establishes a connection to the target Salesforce org using the `target-org` flag.\n</details>\n",
|
|
4604
4733
|
"examples": [
|
|
4605
|
-
"$ sf hardis:
|
|
4606
|
-
"$ sf hardis:
|
|
4734
|
+
"$ sf hardis:org:community:update --name 'MyNetworkName' --status DownForMaintenance",
|
|
4735
|
+
"$ sf hardis:org:community:update --name 'MyNetworkName,MySecondNetworkName' --status Live"
|
|
4607
4736
|
],
|
|
4608
4737
|
"flags": {
|
|
4609
4738
|
"json": {
|
|
@@ -4621,140 +4750,11 @@
|
|
|
4621
4750
|
"multiple": false,
|
|
4622
4751
|
"type": "option"
|
|
4623
4752
|
},
|
|
4624
|
-
"
|
|
4625
|
-
"char": "
|
|
4626
|
-
"description": "
|
|
4627
|
-
"name": "
|
|
4628
|
-
"
|
|
4629
|
-
"multiple": false,
|
|
4630
|
-
"type": "option"
|
|
4631
|
-
},
|
|
4632
|
-
"status": {
|
|
4633
|
-
"char": "x",
|
|
4634
|
-
"description": "Status of the PR",
|
|
4635
|
-
"name": "status",
|
|
4636
|
-
"hasDynamicHelp": false,
|
|
4637
|
-
"multiple": false,
|
|
4638
|
-
"options": [
|
|
4639
|
-
"open",
|
|
4640
|
-
"merged",
|
|
4641
|
-
"abandoned"
|
|
4642
|
-
],
|
|
4643
|
-
"type": "option"
|
|
4644
|
-
},
|
|
4645
|
-
"min-date": {
|
|
4646
|
-
"char": "m",
|
|
4647
|
-
"description": "Minimum date for PR",
|
|
4648
|
-
"name": "min-date",
|
|
4649
|
-
"hasDynamicHelp": false,
|
|
4650
|
-
"multiple": false,
|
|
4651
|
-
"type": "option"
|
|
4652
|
-
},
|
|
4653
|
-
"outputfile": {
|
|
4654
|
-
"char": "f",
|
|
4655
|
-
"description": "Force the path and name of output report file. Must end with .csv",
|
|
4656
|
-
"name": "outputfile",
|
|
4657
|
-
"hasDynamicHelp": false,
|
|
4658
|
-
"multiple": false,
|
|
4659
|
-
"type": "option"
|
|
4660
|
-
},
|
|
4661
|
-
"debug": {
|
|
4662
|
-
"char": "d",
|
|
4663
|
-
"description": "Activate debug mode (more logs)",
|
|
4664
|
-
"name": "debug",
|
|
4665
|
-
"allowNo": false,
|
|
4666
|
-
"type": "boolean"
|
|
4667
|
-
},
|
|
4668
|
-
"websocket": {
|
|
4669
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
4670
|
-
"name": "websocket",
|
|
4671
|
-
"hasDynamicHelp": false,
|
|
4672
|
-
"multiple": false,
|
|
4673
|
-
"type": "option"
|
|
4674
|
-
},
|
|
4675
|
-
"skipauth": {
|
|
4676
|
-
"description": "Skip authentication check when a default username is required",
|
|
4677
|
-
"name": "skipauth",
|
|
4678
|
-
"allowNo": false,
|
|
4679
|
-
"type": "boolean"
|
|
4680
|
-
}
|
|
4681
|
-
},
|
|
4682
|
-
"hasDynamicHelp": false,
|
|
4683
|
-
"hiddenAliases": [],
|
|
4684
|
-
"id": "hardis:git:pull-requests:extract",
|
|
4685
|
-
"pluginAlias": "sfdx-hardis",
|
|
4686
|
-
"pluginName": "sfdx-hardis",
|
|
4687
|
-
"pluginType": "core",
|
|
4688
|
-
"strict": true,
|
|
4689
|
-
"enableJsonFlag": true,
|
|
4690
|
-
"title": "Extract pull requests",
|
|
4691
|
-
"requiresProject": true,
|
|
4692
|
-
"isESM": true,
|
|
4693
|
-
"relativePath": [
|
|
4694
|
-
"lib",
|
|
4695
|
-
"commands",
|
|
4696
|
-
"hardis",
|
|
4697
|
-
"git",
|
|
4698
|
-
"pull-requests",
|
|
4699
|
-
"extract.js"
|
|
4700
|
-
],
|
|
4701
|
-
"aliasPermutations": [],
|
|
4702
|
-
"permutations": [
|
|
4703
|
-
"hardis:git:pull-requests:extract",
|
|
4704
|
-
"git:hardis:pull-requests:extract",
|
|
4705
|
-
"git:pull-requests:hardis:extract",
|
|
4706
|
-
"git:pull-requests:extract:hardis",
|
|
4707
|
-
"hardis:pull-requests:git:extract",
|
|
4708
|
-
"pull-requests:hardis:git:extract",
|
|
4709
|
-
"pull-requests:git:hardis:extract",
|
|
4710
|
-
"pull-requests:git:extract:hardis",
|
|
4711
|
-
"hardis:pull-requests:extract:git",
|
|
4712
|
-
"pull-requests:hardis:extract:git",
|
|
4713
|
-
"pull-requests:extract:hardis:git",
|
|
4714
|
-
"pull-requests:extract:git:hardis",
|
|
4715
|
-
"hardis:git:extract:pull-requests",
|
|
4716
|
-
"git:hardis:extract:pull-requests",
|
|
4717
|
-
"git:extract:hardis:pull-requests",
|
|
4718
|
-
"git:extract:pull-requests:hardis",
|
|
4719
|
-
"hardis:extract:git:pull-requests",
|
|
4720
|
-
"extract:hardis:git:pull-requests",
|
|
4721
|
-
"extract:git:hardis:pull-requests",
|
|
4722
|
-
"extract:git:pull-requests:hardis",
|
|
4723
|
-
"hardis:extract:pull-requests:git",
|
|
4724
|
-
"extract:hardis:pull-requests:git",
|
|
4725
|
-
"extract:pull-requests:hardis:git",
|
|
4726
|
-
"extract:pull-requests:git:hardis"
|
|
4727
|
-
]
|
|
4728
|
-
},
|
|
4729
|
-
"hardis:org:community:update": {
|
|
4730
|
-
"aliases": [],
|
|
4731
|
-
"args": {},
|
|
4732
|
-
"description": "\n## Command Behavior\n\n**Updates the status of one or more Salesforce Experience Cloud (Community) networks.**\n\nThis command provides a way to programmatically change the status of your Salesforce Communities, allowing you to manage their availability. This is particularly useful for:\n\n- **Maintenance:** Taking communities offline for planned maintenance (`DownForMaintenance`).\n- **Activation/Deactivation:** Bringing communities online or offline (`Live`, `DownForMaintenance`).\n- **Automation:** Integrating community status changes into CI/CD pipelines or scheduled jobs.\n\nKey functionalities:\n\n- **Network Selection:** You can specify one or more community network names (separated by commas) using the `--name` flag.\n- **Status Update:** You can set the new status for the selected communities using the `--status` flag. Supported values are `Live` and `DownForMaintenance`.\n- **Confirmation Prompt:** In non-CI environments, it provides a confirmation prompt before executing the update, ensuring intentional changes.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **Salesforce SOQL Query:** It first queries the Salesforce `Network` object using SOQL to retrieve the `Id`, `Name`, and `Status` of the specified communities. This ensures that only existing communities are targeted.\n- **SObject Update:** It then constructs an array of `Network` sObjects with their `Id` and the new `Status` and performs a DML update operation using `conn.sobject(\"Network\").update()`. The `allOrNone: false` option is used to allow partial success in case some updates fail.\n- **Error Handling and Reporting:** It iterates through the update results, logging success or failure for each community. It also provides a summary of successful and erroneous updates.\n- **User Interaction:** Uses `prompts` to confirm the update action with the user when not running in a CI environment.\n- **Salesforce Connection:** Establishes a connection to the target Salesforce org using the `target-org` flag.\n</details>\n",
|
|
4733
|
-
"examples": [
|
|
4734
|
-
"$ sf hardis:org:community:update --name 'MyNetworkName' --status DownForMaintenance",
|
|
4735
|
-
"$ sf hardis:org:community:update --name 'MyNetworkName,MySecondNetworkName' --status Live"
|
|
4736
|
-
],
|
|
4737
|
-
"flags": {
|
|
4738
|
-
"json": {
|
|
4739
|
-
"description": "Format output as json.",
|
|
4740
|
-
"helpGroup": "GLOBAL",
|
|
4741
|
-
"name": "json",
|
|
4742
|
-
"allowNo": false,
|
|
4743
|
-
"type": "boolean"
|
|
4744
|
-
},
|
|
4745
|
-
"flags-dir": {
|
|
4746
|
-
"helpGroup": "GLOBAL",
|
|
4747
|
-
"name": "flags-dir",
|
|
4748
|
-
"summary": "Import flag values from a directory.",
|
|
4749
|
-
"hasDynamicHelp": false,
|
|
4750
|
-
"multiple": false,
|
|
4751
|
-
"type": "option"
|
|
4752
|
-
},
|
|
4753
|
-
"name": {
|
|
4754
|
-
"char": "n",
|
|
4755
|
-
"description": "List of Networks Names that you want to update, separated by comma",
|
|
4756
|
-
"name": "name",
|
|
4757
|
-
"required": true,
|
|
4753
|
+
"name": {
|
|
4754
|
+
"char": "n",
|
|
4755
|
+
"description": "List of Networks Names that you want to update, separated by comma",
|
|
4756
|
+
"name": "name",
|
|
4757
|
+
"required": true,
|
|
4758
4758
|
"hasDynamicHelp": false,
|
|
4759
4759
|
"multiple": false,
|
|
4760
4760
|
"type": "option"
|
|
@@ -5489,12 +5489,15 @@
|
|
|
5489
5489
|
"import:data:org:hardis"
|
|
5490
5490
|
]
|
|
5491
5491
|
},
|
|
5492
|
-
"hardis:org:
|
|
5492
|
+
"hardis:org:diagnose:audittrail": {
|
|
5493
5493
|
"aliases": [],
|
|
5494
5494
|
"args": {},
|
|
5495
|
-
"description": "
|
|
5495
|
+
"description": "Export Audit trail into a CSV file with selected criteria, and highlight suspect actions\n\nAlso detects updates of Custom Settings values (disable by defining `SKIP_AUDIT_TRAIL_CUSTOM_SETTINGS=true`)\n\nRegular setup actions performed in major orgs are filtered.\n\n- \"\"\n - createScratchOrg\n - changedsenderemail\n - deleteScratchOrg\n - loginasgrantedtopartnerbt\n- Certificate and Key Management\n - insertCertificate\n- Custom App Licenses\n - addeduserpackagelicense\n - granteduserpackagelicense\n - revokeduserpackagelicense\n- Customer Portal\n - createdcustomersuccessuser\n - CSPUserDisabled\n- Currency\n - updateddatedexchrate\n- Data Management\n - queueMembership\n- Email Administration\n - dkimRotationPreparationSuccessful\n - dkimRotationSuccessful\n- External Objects\n - xdsEncryptedFieldChange\n- Groups\n - groupMembership\n- Holidays\n - holiday_insert\n- Inbox mobile and legacy desktop apps\n - enableSIQUserNonEAC\n - siqUserAcceptedTOS\n- Manage Users\n - activateduser\n - createduser\n - changedcommunitynickname\n - changedemail\n - changedfederationid\n - changedpassword\n - changedinteractionuseroffon\n - changedinteractionuseronoff\n - changedmarketinguseroffon\n - changedmarketinguseronoff\n - changedofflineuseroffon\n - changedprofileforuserstdtostd\n - changedprofileforuser\n - changedprofileforusercusttostd\n - changedprofileforuserstdtocust\n - changedroleforusertonone\n - changedroleforuser\n - changedroleforuserfromnone\n - changedUserAdminVerifiedStatusVerified\n - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedknowledgeuseroffon\n - changedsfcontentuseroffon\n - changedsupportuseroffon\n - changedusername\n - changedUserPhoneNumber\n - changedUserPhoneVerifiedStatusUnverified\n - changedUserPhoneVerifiedStatusVerified\n - deactivateduser\n - deleteAuthenticatorPairing\n - deleteTwoFactorInfo2\n - deleteTwoFactorTempCode\n - frozeuser\n - insertAuthenticatorPairing\n - insertTwoFactorInfo2\n - insertTwoFactorTempCode\n - lightningloginenroll\n - PermSetAssign\n - PermSetGroupAssign\n - PermSetGroupUnassign\n - PermSetLicenseAssign\n - PermSetUnassign\n - PermSetLicenseUnassign\n - registeredUserPhoneNumber\n - resetpassword\n - suNetworkAdminLogin\n - suNetworkAdminLogout\n - suOrgAdminLogin\n - suOrgAdminLogout\n - unfrozeuser\n - useremailchangesent\n- Mobile Administration\n - assigneduserstomobileconfig\n- Reporting Snapshots\n - createdReportJob\n - deletedReportJob\n- Sandboxes\n - DeleteSandbox\n\nBy default, deployment user defined in .sfdx-hardis.yml targetUsername property will be excluded.\n\nYou can define additional users to exclude in .sfdx-hardis.yml **monitoringExcludeUsernames** property.\n\nYou can also add more sections / actions considered as not suspect using property **monitoringAllowedSectionsActions**\n\nExample:\n\n```yaml\nmonitoringExcludeUsernames:\n - deploymentuser@cloudity.com\n - marketingcloud@cloudity.com\n - integration-user@cloudity.com\n\nmonitoringAllowedSectionsActions:\n \"Some section\": [] // Will ignore all actions from such section\n \"Some other section\": [\"actionType1\",\"actionType2\",\"actionType3\"] // Will ignore only those 3 actions from section \"Some other section\". Other actions in the same section will be considered as suspect.\n```\n\n## Excel output example\n\n\n\n## Local output example\n\n\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-suspect-audit-trail/) and can output Grafana, Slack and MsTeams Notifications.\n",
|
|
5496
5496
|
"examples": [
|
|
5497
|
-
"$ sf hardis:org:
|
|
5497
|
+
"$ sf hardis:org:diagnose:audittrail",
|
|
5498
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
|
|
5499
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
|
|
5500
|
+
"$ sf hardis:org:diagnose:audittrail --lastndays 5"
|
|
5498
5501
|
],
|
|
5499
5502
|
"flags": {
|
|
5500
5503
|
"json": {
|
|
@@ -5512,37 +5515,26 @@
|
|
|
5512
5515
|
"multiple": false,
|
|
5513
5516
|
"type": "option"
|
|
5514
5517
|
},
|
|
5515
|
-
"
|
|
5516
|
-
"char": "
|
|
5517
|
-
"description": "
|
|
5518
|
-
"name": "
|
|
5519
|
-
"hasDynamicHelp": false,
|
|
5520
|
-
"multiple": false,
|
|
5521
|
-
"type": "option"
|
|
5522
|
-
},
|
|
5523
|
-
"chunksize": {
|
|
5524
|
-
"char": "c",
|
|
5525
|
-
"description": "Number of records to add in a chunk before it is processed",
|
|
5526
|
-
"name": "chunksize",
|
|
5527
|
-
"default": 1000,
|
|
5518
|
+
"excludeusers": {
|
|
5519
|
+
"char": "e",
|
|
5520
|
+
"description": "Comma-separated list of usernames to exclude",
|
|
5521
|
+
"name": "excludeusers",
|
|
5528
5522
|
"hasDynamicHelp": false,
|
|
5529
5523
|
"multiple": false,
|
|
5530
5524
|
"type": "option"
|
|
5531
5525
|
},
|
|
5532
|
-
"
|
|
5526
|
+
"lastndays": {
|
|
5533
5527
|
"char": "t",
|
|
5534
|
-
"description": "
|
|
5535
|
-
"name": "
|
|
5536
|
-
"default": 300000,
|
|
5528
|
+
"description": "Number of days to extract from today (included)",
|
|
5529
|
+
"name": "lastndays",
|
|
5537
5530
|
"hasDynamicHelp": false,
|
|
5538
5531
|
"multiple": false,
|
|
5539
5532
|
"type": "option"
|
|
5540
5533
|
},
|
|
5541
|
-
"
|
|
5542
|
-
"char": "
|
|
5543
|
-
"description": "
|
|
5544
|
-
"name": "
|
|
5545
|
-
"default": 0,
|
|
5534
|
+
"outputfile": {
|
|
5535
|
+
"char": "f",
|
|
5536
|
+
"description": "Force the path and name of output report file. Must end with .csv",
|
|
5537
|
+
"name": "outputfile",
|
|
5546
5538
|
"hasDynamicHelp": false,
|
|
5547
5539
|
"multiple": false,
|
|
5548
5540
|
"type": "option"
|
|
@@ -5585,13 +5577,13 @@
|
|
|
5585
5577
|
},
|
|
5586
5578
|
"hasDynamicHelp": true,
|
|
5587
5579
|
"hiddenAliases": [],
|
|
5588
|
-
"id": "hardis:org:
|
|
5580
|
+
"id": "hardis:org:diagnose:audittrail",
|
|
5589
5581
|
"pluginAlias": "sfdx-hardis",
|
|
5590
5582
|
"pluginName": "sfdx-hardis",
|
|
5591
5583
|
"pluginType": "core",
|
|
5592
5584
|
"strict": true,
|
|
5593
5585
|
"enableJsonFlag": true,
|
|
5594
|
-
"title": "
|
|
5586
|
+
"title": "Diagnose content of Setup Audit Trail",
|
|
5595
5587
|
"requiresProject": false,
|
|
5596
5588
|
"isESM": true,
|
|
5597
5589
|
"relativePath": [
|
|
@@ -5599,43 +5591,43 @@
|
|
|
5599
5591
|
"commands",
|
|
5600
5592
|
"hardis",
|
|
5601
5593
|
"org",
|
|
5602
|
-
"
|
|
5603
|
-
"
|
|
5594
|
+
"diagnose",
|
|
5595
|
+
"audittrail.js"
|
|
5604
5596
|
],
|
|
5605
5597
|
"aliasPermutations": [],
|
|
5606
5598
|
"permutations": [
|
|
5607
|
-
"hardis:org:
|
|
5608
|
-
"org:hardis:
|
|
5609
|
-
"org:
|
|
5610
|
-
"org:
|
|
5611
|
-
"hardis:
|
|
5612
|
-
"
|
|
5613
|
-
"
|
|
5614
|
-
"
|
|
5615
|
-
"hardis:
|
|
5616
|
-
"
|
|
5617
|
-
"
|
|
5618
|
-
"
|
|
5619
|
-
"hardis:org:
|
|
5620
|
-
"org:hardis:
|
|
5621
|
-
"org:
|
|
5622
|
-
"org:
|
|
5623
|
-
"hardis:
|
|
5624
|
-
"
|
|
5625
|
-
"
|
|
5626
|
-
"
|
|
5627
|
-
"hardis:
|
|
5628
|
-
"
|
|
5629
|
-
"
|
|
5630
|
-
"
|
|
5599
|
+
"hardis:org:diagnose:audittrail",
|
|
5600
|
+
"org:hardis:diagnose:audittrail",
|
|
5601
|
+
"org:diagnose:hardis:audittrail",
|
|
5602
|
+
"org:diagnose:audittrail:hardis",
|
|
5603
|
+
"hardis:diagnose:org:audittrail",
|
|
5604
|
+
"diagnose:hardis:org:audittrail",
|
|
5605
|
+
"diagnose:org:hardis:audittrail",
|
|
5606
|
+
"diagnose:org:audittrail:hardis",
|
|
5607
|
+
"hardis:diagnose:audittrail:org",
|
|
5608
|
+
"diagnose:hardis:audittrail:org",
|
|
5609
|
+
"diagnose:audittrail:hardis:org",
|
|
5610
|
+
"diagnose:audittrail:org:hardis",
|
|
5611
|
+
"hardis:org:audittrail:diagnose",
|
|
5612
|
+
"org:hardis:audittrail:diagnose",
|
|
5613
|
+
"org:audittrail:hardis:diagnose",
|
|
5614
|
+
"org:audittrail:diagnose:hardis",
|
|
5615
|
+
"hardis:audittrail:org:diagnose",
|
|
5616
|
+
"audittrail:hardis:org:diagnose",
|
|
5617
|
+
"audittrail:org:hardis:diagnose",
|
|
5618
|
+
"audittrail:org:diagnose:hardis",
|
|
5619
|
+
"hardis:audittrail:diagnose:org",
|
|
5620
|
+
"audittrail:hardis:diagnose:org",
|
|
5621
|
+
"audittrail:diagnose:hardis:org",
|
|
5622
|
+
"audittrail:diagnose:org:hardis"
|
|
5631
5623
|
]
|
|
5632
5624
|
},
|
|
5633
|
-
"hardis:org:
|
|
5625
|
+
"hardis:org:diagnose:instanceupgrade": {
|
|
5634
5626
|
"aliases": [],
|
|
5635
5627
|
"args": {},
|
|
5636
|
-
"description": "\
|
|
5628
|
+
"description": "\n## Command Behavior\n\n**Retrieves and displays the scheduled upgrade date for a Salesforce org's instance.**\n\nThis command provides crucial information about when your Salesforce instance will be upgraded to the next major release (Spring, Summer, or Winter). This is vital for release planning, testing, and ensuring compatibility with upcoming Salesforce features.\n\nKey functionalities:\n\n- **Instance Identification:** Determines the Salesforce instance name of your target org.\n- **Upgrade Date Retrieval:** Fetches the planned start time of the next major core service upgrade for that instance from the Salesforce Status API.\n- **Days Until Upgrade:** Calculates and displays the number of days remaining until the next major upgrade.\n- **Severity-Based Logging:** Adjusts the log severity (info, warning) based on the proximity of the upgrade date, providing a visual cue for urgency.\n- **Notifications:** Sends notifications to configured channels (e.g., Slack, MS Teams, Grafana) with the upgrade information, making it suitable for automated monitoring.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **Salesforce SOQL Query:** It first queries the `Organization` object in Salesforce to get the `InstanceName` of the target org.\n- **Salesforce Status API Integration:** It makes an HTTP GET request to the Salesforce Status API (`https://api.status.salesforce.com/v1/instances/{instanceName}/status`) to retrieve detailed information about the instance, including scheduled maintenances.\n- **Data Parsing:** It parses the JSON response from the Status API to extract the relevant major release upgrade information.\n- **Date Calculation:** Uses the `moment` library to calculate the difference in days between the current date and the planned upgrade date.\n- **Notification Integration:** It integrates with the `NotifProvider` to send notifications, including the instance name, upgrade date, and days remaining, along with relevant metrics for monitoring dashboards.\n- **User Feedback:** Provides clear messages to the user about the upgrade status and proximity.\n</details>\n",
|
|
5637
5629
|
"examples": [
|
|
5638
|
-
"$ sf hardis:org:
|
|
5630
|
+
"$ sf hardis:org:diagnose:instanceupgrade"
|
|
5639
5631
|
],
|
|
5640
5632
|
"flags": {
|
|
5641
5633
|
"json": {
|
|
@@ -5653,21 +5645,6 @@
|
|
|
5653
5645
|
"multiple": false,
|
|
5654
5646
|
"type": "option"
|
|
5655
5647
|
},
|
|
5656
|
-
"path": {
|
|
5657
|
-
"char": "p",
|
|
5658
|
-
"description": "Path to the file export project",
|
|
5659
|
-
"name": "path",
|
|
5660
|
-
"hasDynamicHelp": false,
|
|
5661
|
-
"multiple": false,
|
|
5662
|
-
"type": "option"
|
|
5663
|
-
},
|
|
5664
|
-
"overwrite": {
|
|
5665
|
-
"char": "f",
|
|
5666
|
-
"description": "Override existing files (doubles the number of API calls)",
|
|
5667
|
-
"name": "overwrite",
|
|
5668
|
-
"allowNo": false,
|
|
5669
|
-
"type": "boolean"
|
|
5670
|
-
},
|
|
5671
5648
|
"debug": {
|
|
5672
5649
|
"char": "d",
|
|
5673
5650
|
"description": "Activate debug mode (more logs)",
|
|
@@ -5706,252 +5683,13 @@
|
|
|
5706
5683
|
},
|
|
5707
5684
|
"hasDynamicHelp": true,
|
|
5708
5685
|
"hiddenAliases": [],
|
|
5709
|
-
"id": "hardis:org:
|
|
5686
|
+
"id": "hardis:org:diagnose:instanceupgrade",
|
|
5710
5687
|
"pluginAlias": "sfdx-hardis",
|
|
5711
5688
|
"pluginName": "sfdx-hardis",
|
|
5712
5689
|
"pluginType": "core",
|
|
5713
5690
|
"strict": true,
|
|
5714
5691
|
"enableJsonFlag": true,
|
|
5715
|
-
"title": "
|
|
5716
|
-
"requiresProject": false,
|
|
5717
|
-
"isESM": true,
|
|
5718
|
-
"relativePath": [
|
|
5719
|
-
"lib",
|
|
5720
|
-
"commands",
|
|
5721
|
-
"hardis",
|
|
5722
|
-
"org",
|
|
5723
|
-
"files",
|
|
5724
|
-
"import.js"
|
|
5725
|
-
],
|
|
5726
|
-
"aliasPermutations": [],
|
|
5727
|
-
"permutations": [
|
|
5728
|
-
"hardis:org:files:import",
|
|
5729
|
-
"org:hardis:files:import",
|
|
5730
|
-
"org:files:hardis:import",
|
|
5731
|
-
"org:files:import:hardis",
|
|
5732
|
-
"hardis:files:org:import",
|
|
5733
|
-
"files:hardis:org:import",
|
|
5734
|
-
"files:org:hardis:import",
|
|
5735
|
-
"files:org:import:hardis",
|
|
5736
|
-
"hardis:files:import:org",
|
|
5737
|
-
"files:hardis:import:org",
|
|
5738
|
-
"files:import:hardis:org",
|
|
5739
|
-
"files:import:org:hardis",
|
|
5740
|
-
"hardis:org:import:files",
|
|
5741
|
-
"org:hardis:import:files",
|
|
5742
|
-
"org:import:hardis:files",
|
|
5743
|
-
"org:import:files:hardis",
|
|
5744
|
-
"hardis:import:org:files",
|
|
5745
|
-
"import:hardis:org:files",
|
|
5746
|
-
"import:org:hardis:files",
|
|
5747
|
-
"import:org:files:hardis",
|
|
5748
|
-
"hardis:import:files:org",
|
|
5749
|
-
"import:hardis:files:org",
|
|
5750
|
-
"import:files:hardis:org",
|
|
5751
|
-
"import:files:org:hardis"
|
|
5752
|
-
]
|
|
5753
|
-
},
|
|
5754
|
-
"hardis:org:diagnose:audittrail": {
|
|
5755
|
-
"aliases": [],
|
|
5756
|
-
"args": {},
|
|
5757
|
-
"description": "Export Audit trail into a CSV file with selected criteria, and highlight suspect actions\n\nAlso detects updates of Custom Settings values (disable by defining `SKIP_AUDIT_TRAIL_CUSTOM_SETTINGS=true`)\n\nRegular setup actions performed in major orgs are filtered.\n\n- \"\"\n - createScratchOrg\n - changedsenderemail\n - deleteScratchOrg\n - loginasgrantedtopartnerbt\n- Certificate and Key Management\n - insertCertificate\n- Custom App Licenses\n - addeduserpackagelicense\n - granteduserpackagelicense\n - revokeduserpackagelicense\n- Customer Portal\n - createdcustomersuccessuser\n - CSPUserDisabled\n- Currency\n - updateddatedexchrate\n- Data Management\n - queueMembership\n- Email Administration\n - dkimRotationPreparationSuccessful\n - dkimRotationSuccessful\n- External Objects\n - xdsEncryptedFieldChange\n- Groups\n - groupMembership\n- Holidays\n - holiday_insert\n- Inbox mobile and legacy desktop apps\n - enableSIQUserNonEAC\n - siqUserAcceptedTOS\n- Manage Users\n - activateduser\n - createduser\n - changedcommunitynickname\n - changedemail\n - changedfederationid\n - changedpassword\n - changedinteractionuseroffon\n - changedinteractionuseronoff\n - changedmarketinguseroffon\n - changedmarketinguseronoff\n - changedofflineuseroffon\n - changedprofileforuserstdtostd\n - changedprofileforuser\n - changedprofileforusercusttostd\n - changedprofileforuserstdtocust\n - changedroleforusertonone\n - changedroleforuser\n - changedroleforuserfromnone\n - changedUserAdminVerifiedStatusVerified\n - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedknowledgeuseroffon\n - changedsfcontentuseroffon\n - changedsupportuseroffon\n - changedusername\n - changedUserPhoneNumber\n - changedUserPhoneVerifiedStatusUnverified\n - changedUserPhoneVerifiedStatusVerified\n - deactivateduser\n - deleteAuthenticatorPairing\n - deleteTwoFactorInfo2\n - deleteTwoFactorTempCode\n - frozeuser\n - insertAuthenticatorPairing\n - insertTwoFactorInfo2\n - insertTwoFactorTempCode\n - lightningloginenroll\n - PermSetAssign\n - PermSetGroupAssign\n - PermSetGroupUnassign\n - PermSetLicenseAssign\n - PermSetUnassign\n - PermSetLicenseUnassign\n - registeredUserPhoneNumber\n - resetpassword\n - suNetworkAdminLogin\n - suNetworkAdminLogout\n - suOrgAdminLogin\n - suOrgAdminLogout\n - unfrozeuser\n - useremailchangesent\n- Mobile Administration\n - assigneduserstomobileconfig\n- Reporting Snapshots\n - createdReportJob\n - deletedReportJob\n- Sandboxes\n - DeleteSandbox\n\nBy default, deployment user defined in .sfdx-hardis.yml targetUsername property will be excluded.\n\nYou can define additional users to exclude in .sfdx-hardis.yml **monitoringExcludeUsernames** property.\n\nYou can also add more sections / actions considered as not suspect using property **monitoringAllowedSectionsActions**\n\nExample:\n\n```yaml\nmonitoringExcludeUsernames:\n - deploymentuser@cloudity.com\n - marketingcloud@cloudity.com\n - integration-user@cloudity.com\n\nmonitoringAllowedSectionsActions:\n \"Some section\": [] // Will ignore all actions from such section\n \"Some other section\": [\"actionType1\",\"actionType2\",\"actionType3\"] // Will ignore only those 3 actions from section \"Some other section\". Other actions in the same section will be considered as suspect.\n```\n\n## Excel output example\n\n\n\n## Local output example\n\n\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-suspect-audit-trail/) and can output Grafana, Slack and MsTeams Notifications.\n",
|
|
5758
|
-
"examples": [
|
|
5759
|
-
"$ sf hardis:org:diagnose:audittrail",
|
|
5760
|
-
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
|
|
5761
|
-
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
|
|
5762
|
-
"$ sf hardis:org:diagnose:audittrail --lastndays 5"
|
|
5763
|
-
],
|
|
5764
|
-
"flags": {
|
|
5765
|
-
"json": {
|
|
5766
|
-
"description": "Format output as json.",
|
|
5767
|
-
"helpGroup": "GLOBAL",
|
|
5768
|
-
"name": "json",
|
|
5769
|
-
"allowNo": false,
|
|
5770
|
-
"type": "boolean"
|
|
5771
|
-
},
|
|
5772
|
-
"flags-dir": {
|
|
5773
|
-
"helpGroup": "GLOBAL",
|
|
5774
|
-
"name": "flags-dir",
|
|
5775
|
-
"summary": "Import flag values from a directory.",
|
|
5776
|
-
"hasDynamicHelp": false,
|
|
5777
|
-
"multiple": false,
|
|
5778
|
-
"type": "option"
|
|
5779
|
-
},
|
|
5780
|
-
"excludeusers": {
|
|
5781
|
-
"char": "e",
|
|
5782
|
-
"description": "Comma-separated list of usernames to exclude",
|
|
5783
|
-
"name": "excludeusers",
|
|
5784
|
-
"hasDynamicHelp": false,
|
|
5785
|
-
"multiple": false,
|
|
5786
|
-
"type": "option"
|
|
5787
|
-
},
|
|
5788
|
-
"lastndays": {
|
|
5789
|
-
"char": "t",
|
|
5790
|
-
"description": "Number of days to extract from today (included)",
|
|
5791
|
-
"name": "lastndays",
|
|
5792
|
-
"hasDynamicHelp": false,
|
|
5793
|
-
"multiple": false,
|
|
5794
|
-
"type": "option"
|
|
5795
|
-
},
|
|
5796
|
-
"outputfile": {
|
|
5797
|
-
"char": "f",
|
|
5798
|
-
"description": "Force the path and name of output report file. Must end with .csv",
|
|
5799
|
-
"name": "outputfile",
|
|
5800
|
-
"hasDynamicHelp": false,
|
|
5801
|
-
"multiple": false,
|
|
5802
|
-
"type": "option"
|
|
5803
|
-
},
|
|
5804
|
-
"debug": {
|
|
5805
|
-
"char": "d",
|
|
5806
|
-
"description": "Activate debug mode (more logs)",
|
|
5807
|
-
"name": "debug",
|
|
5808
|
-
"allowNo": false,
|
|
5809
|
-
"type": "boolean"
|
|
5810
|
-
},
|
|
5811
|
-
"websocket": {
|
|
5812
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5813
|
-
"name": "websocket",
|
|
5814
|
-
"hasDynamicHelp": false,
|
|
5815
|
-
"multiple": false,
|
|
5816
|
-
"type": "option"
|
|
5817
|
-
},
|
|
5818
|
-
"skipauth": {
|
|
5819
|
-
"description": "Skip authentication check when a default username is required",
|
|
5820
|
-
"name": "skipauth",
|
|
5821
|
-
"allowNo": false,
|
|
5822
|
-
"type": "boolean"
|
|
5823
|
-
},
|
|
5824
|
-
"target-org": {
|
|
5825
|
-
"aliases": [
|
|
5826
|
-
"targetusername",
|
|
5827
|
-
"u"
|
|
5828
|
-
],
|
|
5829
|
-
"char": "o",
|
|
5830
|
-
"deprecateAliases": true,
|
|
5831
|
-
"name": "target-org",
|
|
5832
|
-
"noCacheDefault": true,
|
|
5833
|
-
"required": true,
|
|
5834
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5835
|
-
"hasDynamicHelp": true,
|
|
5836
|
-
"multiple": false,
|
|
5837
|
-
"type": "option"
|
|
5838
|
-
}
|
|
5839
|
-
},
|
|
5840
|
-
"hasDynamicHelp": true,
|
|
5841
|
-
"hiddenAliases": [],
|
|
5842
|
-
"id": "hardis:org:diagnose:audittrail",
|
|
5843
|
-
"pluginAlias": "sfdx-hardis",
|
|
5844
|
-
"pluginName": "sfdx-hardis",
|
|
5845
|
-
"pluginType": "core",
|
|
5846
|
-
"strict": true,
|
|
5847
|
-
"enableJsonFlag": true,
|
|
5848
|
-
"title": "Diagnose content of Setup Audit Trail",
|
|
5849
|
-
"requiresProject": false,
|
|
5850
|
-
"isESM": true,
|
|
5851
|
-
"relativePath": [
|
|
5852
|
-
"lib",
|
|
5853
|
-
"commands",
|
|
5854
|
-
"hardis",
|
|
5855
|
-
"org",
|
|
5856
|
-
"diagnose",
|
|
5857
|
-
"audittrail.js"
|
|
5858
|
-
],
|
|
5859
|
-
"aliasPermutations": [],
|
|
5860
|
-
"permutations": [
|
|
5861
|
-
"hardis:org:diagnose:audittrail",
|
|
5862
|
-
"org:hardis:diagnose:audittrail",
|
|
5863
|
-
"org:diagnose:hardis:audittrail",
|
|
5864
|
-
"org:diagnose:audittrail:hardis",
|
|
5865
|
-
"hardis:diagnose:org:audittrail",
|
|
5866
|
-
"diagnose:hardis:org:audittrail",
|
|
5867
|
-
"diagnose:org:hardis:audittrail",
|
|
5868
|
-
"diagnose:org:audittrail:hardis",
|
|
5869
|
-
"hardis:diagnose:audittrail:org",
|
|
5870
|
-
"diagnose:hardis:audittrail:org",
|
|
5871
|
-
"diagnose:audittrail:hardis:org",
|
|
5872
|
-
"diagnose:audittrail:org:hardis",
|
|
5873
|
-
"hardis:org:audittrail:diagnose",
|
|
5874
|
-
"org:hardis:audittrail:diagnose",
|
|
5875
|
-
"org:audittrail:hardis:diagnose",
|
|
5876
|
-
"org:audittrail:diagnose:hardis",
|
|
5877
|
-
"hardis:audittrail:org:diagnose",
|
|
5878
|
-
"audittrail:hardis:org:diagnose",
|
|
5879
|
-
"audittrail:org:hardis:diagnose",
|
|
5880
|
-
"audittrail:org:diagnose:hardis",
|
|
5881
|
-
"hardis:audittrail:diagnose:org",
|
|
5882
|
-
"audittrail:hardis:diagnose:org",
|
|
5883
|
-
"audittrail:diagnose:hardis:org",
|
|
5884
|
-
"audittrail:diagnose:org:hardis"
|
|
5885
|
-
]
|
|
5886
|
-
},
|
|
5887
|
-
"hardis:org:diagnose:instanceupgrade": {
|
|
5888
|
-
"aliases": [],
|
|
5889
|
-
"args": {},
|
|
5890
|
-
"description": "\n## Command Behavior\n\n**Retrieves and displays the scheduled upgrade date for a Salesforce org's instance.**\n\nThis command provides crucial information about when your Salesforce instance will be upgraded to the next major release (Spring, Summer, or Winter). This is vital for release planning, testing, and ensuring compatibility with upcoming Salesforce features.\n\nKey functionalities:\n\n- **Instance Identification:** Determines the Salesforce instance name of your target org.\n- **Upgrade Date Retrieval:** Fetches the planned start time of the next major core service upgrade for that instance from the Salesforce Status API.\n- **Days Until Upgrade:** Calculates and displays the number of days remaining until the next major upgrade.\n- **Severity-Based Logging:** Adjusts the log severity (info, warning) based on the proximity of the upgrade date, providing a visual cue for urgency.\n- **Notifications:** Sends notifications to configured channels (e.g., Slack, MS Teams, Grafana) with the upgrade information, making it suitable for automated monitoring.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **Salesforce SOQL Query:** It first queries the `Organization` object in Salesforce to get the `InstanceName` of the target org.\n- **Salesforce Status API Integration:** It makes an HTTP GET request to the Salesforce Status API (`https://api.status.salesforce.com/v1/instances/{instanceName}/status`) to retrieve detailed information about the instance, including scheduled maintenances.\n- **Data Parsing:** It parses the JSON response from the Status API to extract the relevant major release upgrade information.\n- **Date Calculation:** Uses the `moment` library to calculate the difference in days between the current date and the planned upgrade date.\n- **Notification Integration:** It integrates with the `NotifProvider` to send notifications, including the instance name, upgrade date, and days remaining, along with relevant metrics for monitoring dashboards.\n- **User Feedback:** Provides clear messages to the user about the upgrade status and proximity.\n</details>\n",
|
|
5891
|
-
"examples": [
|
|
5892
|
-
"$ sf hardis:org:diagnose:instanceupgrade"
|
|
5893
|
-
],
|
|
5894
|
-
"flags": {
|
|
5895
|
-
"json": {
|
|
5896
|
-
"description": "Format output as json.",
|
|
5897
|
-
"helpGroup": "GLOBAL",
|
|
5898
|
-
"name": "json",
|
|
5899
|
-
"allowNo": false,
|
|
5900
|
-
"type": "boolean"
|
|
5901
|
-
},
|
|
5902
|
-
"flags-dir": {
|
|
5903
|
-
"helpGroup": "GLOBAL",
|
|
5904
|
-
"name": "flags-dir",
|
|
5905
|
-
"summary": "Import flag values from a directory.",
|
|
5906
|
-
"hasDynamicHelp": false,
|
|
5907
|
-
"multiple": false,
|
|
5908
|
-
"type": "option"
|
|
5909
|
-
},
|
|
5910
|
-
"debug": {
|
|
5911
|
-
"char": "d",
|
|
5912
|
-
"description": "Activate debug mode (more logs)",
|
|
5913
|
-
"name": "debug",
|
|
5914
|
-
"allowNo": false,
|
|
5915
|
-
"type": "boolean"
|
|
5916
|
-
},
|
|
5917
|
-
"websocket": {
|
|
5918
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5919
|
-
"name": "websocket",
|
|
5920
|
-
"hasDynamicHelp": false,
|
|
5921
|
-
"multiple": false,
|
|
5922
|
-
"type": "option"
|
|
5923
|
-
},
|
|
5924
|
-
"skipauth": {
|
|
5925
|
-
"description": "Skip authentication check when a default username is required",
|
|
5926
|
-
"name": "skipauth",
|
|
5927
|
-
"allowNo": false,
|
|
5928
|
-
"type": "boolean"
|
|
5929
|
-
},
|
|
5930
|
-
"target-org": {
|
|
5931
|
-
"aliases": [
|
|
5932
|
-
"targetusername",
|
|
5933
|
-
"u"
|
|
5934
|
-
],
|
|
5935
|
-
"char": "o",
|
|
5936
|
-
"deprecateAliases": true,
|
|
5937
|
-
"name": "target-org",
|
|
5938
|
-
"noCacheDefault": true,
|
|
5939
|
-
"required": true,
|
|
5940
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5941
|
-
"hasDynamicHelp": true,
|
|
5942
|
-
"multiple": false,
|
|
5943
|
-
"type": "option"
|
|
5944
|
-
}
|
|
5945
|
-
},
|
|
5946
|
-
"hasDynamicHelp": true,
|
|
5947
|
-
"hiddenAliases": [],
|
|
5948
|
-
"id": "hardis:org:diagnose:instanceupgrade",
|
|
5949
|
-
"pluginAlias": "sfdx-hardis",
|
|
5950
|
-
"pluginName": "sfdx-hardis",
|
|
5951
|
-
"pluginType": "core",
|
|
5952
|
-
"strict": true,
|
|
5953
|
-
"enableJsonFlag": true,
|
|
5954
|
-
"title": "Get Instance Upgrade date",
|
|
5692
|
+
"title": "Get Instance Upgrade date",
|
|
5955
5693
|
"requiresProject": false,
|
|
5956
5694
|
"isESM": true,
|
|
5957
5695
|
"relativePath": [
|
|
@@ -6900,6 +6638,268 @@
|
|
|
6900
6638
|
"unusedusers:diagnose:org:hardis"
|
|
6901
6639
|
]
|
|
6902
6640
|
},
|
|
6641
|
+
"hardis:org:files:export": {
|
|
6642
|
+
"aliases": [],
|
|
6643
|
+
"args": {},
|
|
6644
|
+
"description": "\n## Command Behavior\n\n**Exports file attachments (ContentVersion, Attachment) from a Salesforce org based on a predefined configuration.**\n\nThis command enables the mass download of files associated with Salesforce records, providing a robust solution for backing up files, migrating them to other systems, or integrating them with external document management solutions.\n\nKey functionalities:\n\n- **Configuration-Driven Export:** Relies on an `export.json` file within a designated file export project to define the export criteria, including the SOQL query for parent records, file types to export, and output naming conventions.\n- **Interactive Project Selection:** If the file export project path is not provided via the `--path` flag, it interactively prompts the user to select one.\n- **Configurable Export Options:** Allows overriding default export settings such as `chunksize` (number of records processed in a batch), `polltimeout` (timeout for Bulk API calls), and `startchunknumber` (to resume a failed export).\n- **Support for ContentVersion and Attachment:** Handles both modern Salesforce Files (ContentVersion) and older Attachments.\n\nSee this article for a practical example:\n\n[](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **FilesExporter Class:** The core logic is encapsulated within the `FilesExporter` class, which orchestrates the entire export process.\n- **SOQL Queries (Bulk API):** It uses Salesforce Bulk API queries to efficiently retrieve large volumes of parent record IDs and file metadata.\n- **File Download:** Downloads the actual file content from Salesforce.\n- **File System Operations:** Writes the downloaded files to the local file system, organizing them into folders based on the configured naming conventions.\n- **Configuration Loading:** Reads the `export.json` file to get the export configuration. It also allows for interactive overriding of these settings.\n- **Interactive Prompts:** Uses `selectFilesWorkspace` to allow the user to choose a file export project and `promptFilesExportConfiguration` for customizing export options.\n- **Error Handling:** Includes mechanisms to handle potential errors during the export process, such as network issues or API limits.\n</details>\n",
|
|
6645
|
+
"examples": [
|
|
6646
|
+
"$ sf hardis:org:files:export"
|
|
6647
|
+
],
|
|
6648
|
+
"flags": {
|
|
6649
|
+
"json": {
|
|
6650
|
+
"description": "Format output as json.",
|
|
6651
|
+
"helpGroup": "GLOBAL",
|
|
6652
|
+
"name": "json",
|
|
6653
|
+
"allowNo": false,
|
|
6654
|
+
"type": "boolean"
|
|
6655
|
+
},
|
|
6656
|
+
"flags-dir": {
|
|
6657
|
+
"helpGroup": "GLOBAL",
|
|
6658
|
+
"name": "flags-dir",
|
|
6659
|
+
"summary": "Import flag values from a directory.",
|
|
6660
|
+
"hasDynamicHelp": false,
|
|
6661
|
+
"multiple": false,
|
|
6662
|
+
"type": "option"
|
|
6663
|
+
},
|
|
6664
|
+
"path": {
|
|
6665
|
+
"char": "p",
|
|
6666
|
+
"description": "Path to the file export project",
|
|
6667
|
+
"name": "path",
|
|
6668
|
+
"hasDynamicHelp": false,
|
|
6669
|
+
"multiple": false,
|
|
6670
|
+
"type": "option"
|
|
6671
|
+
},
|
|
6672
|
+
"chunksize": {
|
|
6673
|
+
"char": "c",
|
|
6674
|
+
"description": "Number of records to add in a chunk before it is processed",
|
|
6675
|
+
"name": "chunksize",
|
|
6676
|
+
"default": 1000,
|
|
6677
|
+
"hasDynamicHelp": false,
|
|
6678
|
+
"multiple": false,
|
|
6679
|
+
"type": "option"
|
|
6680
|
+
},
|
|
6681
|
+
"polltimeout": {
|
|
6682
|
+
"char": "t",
|
|
6683
|
+
"description": "Timeout in MS for Bulk API calls",
|
|
6684
|
+
"name": "polltimeout",
|
|
6685
|
+
"default": 300000,
|
|
6686
|
+
"hasDynamicHelp": false,
|
|
6687
|
+
"multiple": false,
|
|
6688
|
+
"type": "option"
|
|
6689
|
+
},
|
|
6690
|
+
"startchunknumber": {
|
|
6691
|
+
"char": "s",
|
|
6692
|
+
"description": "Chunk number to start from",
|
|
6693
|
+
"name": "startchunknumber",
|
|
6694
|
+
"default": 0,
|
|
6695
|
+
"hasDynamicHelp": false,
|
|
6696
|
+
"multiple": false,
|
|
6697
|
+
"type": "option"
|
|
6698
|
+
},
|
|
6699
|
+
"debug": {
|
|
6700
|
+
"char": "d",
|
|
6701
|
+
"description": "Activate debug mode (more logs)",
|
|
6702
|
+
"name": "debug",
|
|
6703
|
+
"allowNo": false,
|
|
6704
|
+
"type": "boolean"
|
|
6705
|
+
},
|
|
6706
|
+
"websocket": {
|
|
6707
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6708
|
+
"name": "websocket",
|
|
6709
|
+
"hasDynamicHelp": false,
|
|
6710
|
+
"multiple": false,
|
|
6711
|
+
"type": "option"
|
|
6712
|
+
},
|
|
6713
|
+
"skipauth": {
|
|
6714
|
+
"description": "Skip authentication check when a default username is required",
|
|
6715
|
+
"name": "skipauth",
|
|
6716
|
+
"allowNo": false,
|
|
6717
|
+
"type": "boolean"
|
|
6718
|
+
},
|
|
6719
|
+
"target-org": {
|
|
6720
|
+
"aliases": [
|
|
6721
|
+
"targetusername",
|
|
6722
|
+
"u"
|
|
6723
|
+
],
|
|
6724
|
+
"char": "o",
|
|
6725
|
+
"deprecateAliases": true,
|
|
6726
|
+
"name": "target-org",
|
|
6727
|
+
"noCacheDefault": true,
|
|
6728
|
+
"required": true,
|
|
6729
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
6730
|
+
"hasDynamicHelp": true,
|
|
6731
|
+
"multiple": false,
|
|
6732
|
+
"type": "option"
|
|
6733
|
+
}
|
|
6734
|
+
},
|
|
6735
|
+
"hasDynamicHelp": true,
|
|
6736
|
+
"hiddenAliases": [],
|
|
6737
|
+
"id": "hardis:org:files:export",
|
|
6738
|
+
"pluginAlias": "sfdx-hardis",
|
|
6739
|
+
"pluginName": "sfdx-hardis",
|
|
6740
|
+
"pluginType": "core",
|
|
6741
|
+
"strict": true,
|
|
6742
|
+
"enableJsonFlag": true,
|
|
6743
|
+
"title": "Export files",
|
|
6744
|
+
"requiresProject": false,
|
|
6745
|
+
"isESM": true,
|
|
6746
|
+
"relativePath": [
|
|
6747
|
+
"lib",
|
|
6748
|
+
"commands",
|
|
6749
|
+
"hardis",
|
|
6750
|
+
"org",
|
|
6751
|
+
"files",
|
|
6752
|
+
"export.js"
|
|
6753
|
+
],
|
|
6754
|
+
"aliasPermutations": [],
|
|
6755
|
+
"permutations": [
|
|
6756
|
+
"hardis:org:files:export",
|
|
6757
|
+
"org:hardis:files:export",
|
|
6758
|
+
"org:files:hardis:export",
|
|
6759
|
+
"org:files:export:hardis",
|
|
6760
|
+
"hardis:files:org:export",
|
|
6761
|
+
"files:hardis:org:export",
|
|
6762
|
+
"files:org:hardis:export",
|
|
6763
|
+
"files:org:export:hardis",
|
|
6764
|
+
"hardis:files:export:org",
|
|
6765
|
+
"files:hardis:export:org",
|
|
6766
|
+
"files:export:hardis:org",
|
|
6767
|
+
"files:export:org:hardis",
|
|
6768
|
+
"hardis:org:export:files",
|
|
6769
|
+
"org:hardis:export:files",
|
|
6770
|
+
"org:export:hardis:files",
|
|
6771
|
+
"org:export:files:hardis",
|
|
6772
|
+
"hardis:export:org:files",
|
|
6773
|
+
"export:hardis:org:files",
|
|
6774
|
+
"export:org:hardis:files",
|
|
6775
|
+
"export:org:files:hardis",
|
|
6776
|
+
"hardis:export:files:org",
|
|
6777
|
+
"export:hardis:files:org",
|
|
6778
|
+
"export:files:hardis:org",
|
|
6779
|
+
"export:files:org:hardis"
|
|
6780
|
+
]
|
|
6781
|
+
},
|
|
6782
|
+
"hardis:org:files:import": {
|
|
6783
|
+
"aliases": [],
|
|
6784
|
+
"args": {},
|
|
6785
|
+
"description": "\nThis command facilitates the mass upload of files into Salesforce, allowing you to populate records with associated documents, images, or other file types. It's a crucial tool for data migration, content seeding, or synchronizing external file repositories with Salesforce.\n\nKey functionalities:\n\n- **Configuration-Driven Import:** Relies on an `export.json` file within a designated file export project (created using `sf hardis:org:configure:files`) to determine which files to import and how they should be associated with Salesforce records.\n- **Interactive Project Selection:** If the file import project path is not provided via the `--path` flag, it interactively prompts the user to select one.\n- **Overwrite Option:** The `--overwrite` flag allows you to replace existing files in Salesforce with local versions that have the same name. Be aware that this option doubles the number of API calls used.\n- **Support for ContentVersion and Attachment:** Handles both modern Salesforce Files (ContentVersion) and older Attachments.\n\nSee this article for how to export files, which is often a prerequisite for importing:\n\n[](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **FilesImporter Class:** The core logic is encapsulated within the `FilesImporter` class, which orchestrates the entire import process.\n- **File System Scan:** Scans the local file system within the configured project directory to identify files for import.\n- **Salesforce API Interaction:** Uses Salesforce APIs (e.g., ContentVersion, Attachment) to upload files and associate them with records.\n- **Configuration Loading:** Reads the `export.json` file to get the import configuration, including SOQL queries to identify parent records for file association.\n- **Interactive Prompts:** Uses `selectFilesWorkspace` to allow the user to choose a file import project and `prompts` for confirming the overwrite behavior.\n- **Error Handling:** Includes mechanisms to handle potential errors during the import process, such as API limits or file upload failures.\n</details>\n",
|
|
6786
|
+
"examples": [
|
|
6787
|
+
"$ sf hardis:org:files:import"
|
|
6788
|
+
],
|
|
6789
|
+
"flags": {
|
|
6790
|
+
"json": {
|
|
6791
|
+
"description": "Format output as json.",
|
|
6792
|
+
"helpGroup": "GLOBAL",
|
|
6793
|
+
"name": "json",
|
|
6794
|
+
"allowNo": false,
|
|
6795
|
+
"type": "boolean"
|
|
6796
|
+
},
|
|
6797
|
+
"flags-dir": {
|
|
6798
|
+
"helpGroup": "GLOBAL",
|
|
6799
|
+
"name": "flags-dir",
|
|
6800
|
+
"summary": "Import flag values from a directory.",
|
|
6801
|
+
"hasDynamicHelp": false,
|
|
6802
|
+
"multiple": false,
|
|
6803
|
+
"type": "option"
|
|
6804
|
+
},
|
|
6805
|
+
"path": {
|
|
6806
|
+
"char": "p",
|
|
6807
|
+
"description": "Path to the file export project",
|
|
6808
|
+
"name": "path",
|
|
6809
|
+
"hasDynamicHelp": false,
|
|
6810
|
+
"multiple": false,
|
|
6811
|
+
"type": "option"
|
|
6812
|
+
},
|
|
6813
|
+
"overwrite": {
|
|
6814
|
+
"char": "f",
|
|
6815
|
+
"description": "Override existing files (doubles the number of API calls)",
|
|
6816
|
+
"name": "overwrite",
|
|
6817
|
+
"allowNo": false,
|
|
6818
|
+
"type": "boolean"
|
|
6819
|
+
},
|
|
6820
|
+
"debug": {
|
|
6821
|
+
"char": "d",
|
|
6822
|
+
"description": "Activate debug mode (more logs)",
|
|
6823
|
+
"name": "debug",
|
|
6824
|
+
"allowNo": false,
|
|
6825
|
+
"type": "boolean"
|
|
6826
|
+
},
|
|
6827
|
+
"websocket": {
|
|
6828
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6829
|
+
"name": "websocket",
|
|
6830
|
+
"hasDynamicHelp": false,
|
|
6831
|
+
"multiple": false,
|
|
6832
|
+
"type": "option"
|
|
6833
|
+
},
|
|
6834
|
+
"skipauth": {
|
|
6835
|
+
"description": "Skip authentication check when a default username is required",
|
|
6836
|
+
"name": "skipauth",
|
|
6837
|
+
"allowNo": false,
|
|
6838
|
+
"type": "boolean"
|
|
6839
|
+
},
|
|
6840
|
+
"target-org": {
|
|
6841
|
+
"aliases": [
|
|
6842
|
+
"targetusername",
|
|
6843
|
+
"u"
|
|
6844
|
+
],
|
|
6845
|
+
"char": "o",
|
|
6846
|
+
"deprecateAliases": true,
|
|
6847
|
+
"name": "target-org",
|
|
6848
|
+
"noCacheDefault": true,
|
|
6849
|
+
"required": true,
|
|
6850
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
6851
|
+
"hasDynamicHelp": true,
|
|
6852
|
+
"multiple": false,
|
|
6853
|
+
"type": "option"
|
|
6854
|
+
}
|
|
6855
|
+
},
|
|
6856
|
+
"hasDynamicHelp": true,
|
|
6857
|
+
"hiddenAliases": [],
|
|
6858
|
+
"id": "hardis:org:files:import",
|
|
6859
|
+
"pluginAlias": "sfdx-hardis",
|
|
6860
|
+
"pluginName": "sfdx-hardis",
|
|
6861
|
+
"pluginType": "core",
|
|
6862
|
+
"strict": true,
|
|
6863
|
+
"enableJsonFlag": true,
|
|
6864
|
+
"title": "Import files",
|
|
6865
|
+
"requiresProject": false,
|
|
6866
|
+
"isESM": true,
|
|
6867
|
+
"relativePath": [
|
|
6868
|
+
"lib",
|
|
6869
|
+
"commands",
|
|
6870
|
+
"hardis",
|
|
6871
|
+
"org",
|
|
6872
|
+
"files",
|
|
6873
|
+
"import.js"
|
|
6874
|
+
],
|
|
6875
|
+
"aliasPermutations": [],
|
|
6876
|
+
"permutations": [
|
|
6877
|
+
"hardis:org:files:import",
|
|
6878
|
+
"org:hardis:files:import",
|
|
6879
|
+
"org:files:hardis:import",
|
|
6880
|
+
"org:files:import:hardis",
|
|
6881
|
+
"hardis:files:org:import",
|
|
6882
|
+
"files:hardis:org:import",
|
|
6883
|
+
"files:org:hardis:import",
|
|
6884
|
+
"files:org:import:hardis",
|
|
6885
|
+
"hardis:files:import:org",
|
|
6886
|
+
"files:hardis:import:org",
|
|
6887
|
+
"files:import:hardis:org",
|
|
6888
|
+
"files:import:org:hardis",
|
|
6889
|
+
"hardis:org:import:files",
|
|
6890
|
+
"org:hardis:import:files",
|
|
6891
|
+
"org:import:hardis:files",
|
|
6892
|
+
"org:import:files:hardis",
|
|
6893
|
+
"hardis:import:org:files",
|
|
6894
|
+
"import:hardis:org:files",
|
|
6895
|
+
"import:org:hardis:files",
|
|
6896
|
+
"import:org:files:hardis",
|
|
6897
|
+
"hardis:import:files:org",
|
|
6898
|
+
"import:hardis:files:org",
|
|
6899
|
+
"import:files:hardis:org",
|
|
6900
|
+
"import:files:org:hardis"
|
|
6901
|
+
]
|
|
6902
|
+
},
|
|
6903
6903
|
"hardis:org:fix:listviewmine": {
|
|
6904
6904
|
"aliases": [],
|
|
6905
6905
|
"args": {},
|
|
@@ -9642,6 +9642,109 @@
|
|
|
9642
9642
|
"auth:configure:project:hardis"
|
|
9643
9643
|
]
|
|
9644
9644
|
},
|
|
9645
|
+
"hardis:project:convert:profilestopermsets": {
|
|
9646
|
+
"aliases": [],
|
|
9647
|
+
"args": {},
|
|
9648
|
+
"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",
|
|
9649
|
+
"examples": [
|
|
9650
|
+
"$ sf hardis:project:convert:profilestopermsets"
|
|
9651
|
+
],
|
|
9652
|
+
"flags": {
|
|
9653
|
+
"json": {
|
|
9654
|
+
"description": "Format output as json.",
|
|
9655
|
+
"helpGroup": "GLOBAL",
|
|
9656
|
+
"name": "json",
|
|
9657
|
+
"allowNo": false,
|
|
9658
|
+
"type": "boolean"
|
|
9659
|
+
},
|
|
9660
|
+
"flags-dir": {
|
|
9661
|
+
"helpGroup": "GLOBAL",
|
|
9662
|
+
"name": "flags-dir",
|
|
9663
|
+
"summary": "Import flag values from a directory.",
|
|
9664
|
+
"hasDynamicHelp": false,
|
|
9665
|
+
"multiple": false,
|
|
9666
|
+
"type": "option"
|
|
9667
|
+
},
|
|
9668
|
+
"except": {
|
|
9669
|
+
"char": "e",
|
|
9670
|
+
"description": "List of filters",
|
|
9671
|
+
"name": "except",
|
|
9672
|
+
"default": [],
|
|
9673
|
+
"hasDynamicHelp": false,
|
|
9674
|
+
"multiple": true,
|
|
9675
|
+
"type": "option"
|
|
9676
|
+
},
|
|
9677
|
+
"debug": {
|
|
9678
|
+
"char": "d",
|
|
9679
|
+
"description": "Activate debug mode (more logs)",
|
|
9680
|
+
"name": "debug",
|
|
9681
|
+
"allowNo": false,
|
|
9682
|
+
"type": "boolean"
|
|
9683
|
+
},
|
|
9684
|
+
"websocket": {
|
|
9685
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
9686
|
+
"name": "websocket",
|
|
9687
|
+
"hasDynamicHelp": false,
|
|
9688
|
+
"multiple": false,
|
|
9689
|
+
"type": "option"
|
|
9690
|
+
},
|
|
9691
|
+
"skipauth": {
|
|
9692
|
+
"description": "Skip authentication check when a default username is required",
|
|
9693
|
+
"name": "skipauth",
|
|
9694
|
+
"allowNo": false,
|
|
9695
|
+
"type": "boolean"
|
|
9696
|
+
}
|
|
9697
|
+
},
|
|
9698
|
+
"hasDynamicHelp": false,
|
|
9699
|
+
"hiddenAliases": [],
|
|
9700
|
+
"id": "hardis:project:convert:profilestopermsets",
|
|
9701
|
+
"pluginAlias": "sfdx-hardis",
|
|
9702
|
+
"pluginName": "sfdx-hardis",
|
|
9703
|
+
"pluginType": "core",
|
|
9704
|
+
"strict": true,
|
|
9705
|
+
"enableJsonFlag": true,
|
|
9706
|
+
"title": "Convert Profiles into Permission Sets",
|
|
9707
|
+
"requiresProject": true,
|
|
9708
|
+
"requiresSfdxPlugins": [
|
|
9709
|
+
"shane-sfdx-plugins"
|
|
9710
|
+
],
|
|
9711
|
+
"isESM": true,
|
|
9712
|
+
"relativePath": [
|
|
9713
|
+
"lib",
|
|
9714
|
+
"commands",
|
|
9715
|
+
"hardis",
|
|
9716
|
+
"project",
|
|
9717
|
+
"convert",
|
|
9718
|
+
"profilestopermsets.js"
|
|
9719
|
+
],
|
|
9720
|
+
"aliasPermutations": [],
|
|
9721
|
+
"permutations": [
|
|
9722
|
+
"hardis:project:convert:profilestopermsets",
|
|
9723
|
+
"project:hardis:convert:profilestopermsets",
|
|
9724
|
+
"project:convert:hardis:profilestopermsets",
|
|
9725
|
+
"project:convert:profilestopermsets:hardis",
|
|
9726
|
+
"hardis:convert:project:profilestopermsets",
|
|
9727
|
+
"convert:hardis:project:profilestopermsets",
|
|
9728
|
+
"convert:project:hardis:profilestopermsets",
|
|
9729
|
+
"convert:project:profilestopermsets:hardis",
|
|
9730
|
+
"hardis:convert:profilestopermsets:project",
|
|
9731
|
+
"convert:hardis:profilestopermsets:project",
|
|
9732
|
+
"convert:profilestopermsets:hardis:project",
|
|
9733
|
+
"convert:profilestopermsets:project:hardis",
|
|
9734
|
+
"hardis:project:profilestopermsets:convert",
|
|
9735
|
+
"project:hardis:profilestopermsets:convert",
|
|
9736
|
+
"project:profilestopermsets:hardis:convert",
|
|
9737
|
+
"project:profilestopermsets:convert:hardis",
|
|
9738
|
+
"hardis:profilestopermsets:project:convert",
|
|
9739
|
+
"profilestopermsets:hardis:project:convert",
|
|
9740
|
+
"profilestopermsets:project:hardis:convert",
|
|
9741
|
+
"profilestopermsets:project:convert:hardis",
|
|
9742
|
+
"hardis:profilestopermsets:convert:project",
|
|
9743
|
+
"profilestopermsets:hardis:convert:project",
|
|
9744
|
+
"profilestopermsets:convert:hardis:project",
|
|
9745
|
+
"profilestopermsets:convert:project:hardis"
|
|
9746
|
+
]
|
|
9747
|
+
},
|
|
9645
9748
|
"hardis:project:clean:emptyitems": {
|
|
9646
9749
|
"aliases": [],
|
|
9647
9750
|
"args": {},
|
|
@@ -11127,12 +11230,12 @@
|
|
|
11127
11230
|
"xml:clean:project:hardis"
|
|
11128
11231
|
]
|
|
11129
11232
|
},
|
|
11130
|
-
"hardis:project:
|
|
11233
|
+
"hardis:project:fix:profiletabs": {
|
|
11131
11234
|
"aliases": [],
|
|
11132
11235
|
"args": {},
|
|
11133
|
-
"description": "\n## Command Behavior\n\n**
|
|
11236
|
+
"description": "\n## Command Behavior\n\n**Interactively updates tab visibility settings in Salesforce profiles, addressing a common issue where tab visibilities are not correctly retrieved by `sf project retrieve start`.**\n\nThis command provides a user-friendly interface to manage tab settings within your profile XML files, ensuring that your local project accurately reflects the intended tab configurations in your Salesforce org.\n\nKey functionalities:\n\n- **Interactive Tab Selection:** Displays a multi-select menu of all available tabs in your org, allowing you to choose which tabs to update.\n- **Visibility Control:** Lets you set the visibility for the selected tabs to either `DefaultOn` (Visible) or `Hidden`.\n- **Profile Selection:** Presents a multi-select menu of all .profile-meta.xml files in your project, allowing you to apply the tab visibility changes to specific profiles.\n- **XML Updates:** Modifies the <tabVisibilities> section of the selected profile XML files to reflect the chosen tab settings. If a tab visibility setting already exists for a selected tab, it will be updated; otherwise, a new one will be added.\n- **Sorted Output:** The <tabVisibilities> in the updated profile XML files are sorted alphabetically for consistency and readability.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **SOQL Queries (Tooling API):** It queries the `TabDefinition` object using `soqlQueryTooling` to retrieve a list of all available tabs in the target org.\n- **File Discovery:** Uses `glob` to find all .profile-meta.xml files within the specified project path.\n- **Interactive Prompts:** Leverages the `prompts` library to create interactive menus for selecting tabs, visibility settings, and profiles.\n- **XML Parsing and Manipulation:** Uses `parseXmlFile` to read the content of profile XML files and `writeXmlFile` to write the modified content back. It manipulates the `tabVisibilities` array within the parsed XML to add or update tab settings.\n- **Array Sorting:** Employs the `sort-array` library to sort the `tabVisibilities` alphabetically by tab name.\n- **Logging:** Provides feedback to the user about which profiles have been updated and a summary of the changes.\n</details>\n",
|
|
11134
11237
|
"examples": [
|
|
11135
|
-
"$ sf hardis:project:
|
|
11238
|
+
"$ sf hardis:project:fix:profiletabs"
|
|
11136
11239
|
],
|
|
11137
11240
|
"flags": {
|
|
11138
11241
|
"json": {
|
|
@@ -11150,13 +11253,13 @@
|
|
|
11150
11253
|
"multiple": false,
|
|
11151
11254
|
"type": "option"
|
|
11152
11255
|
},
|
|
11153
|
-
"
|
|
11154
|
-
"char": "
|
|
11155
|
-
"description": "
|
|
11156
|
-
"name": "
|
|
11157
|
-
"default":
|
|
11256
|
+
"path": {
|
|
11257
|
+
"char": "p",
|
|
11258
|
+
"description": "Root folder",
|
|
11259
|
+
"name": "path",
|
|
11260
|
+
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
11158
11261
|
"hasDynamicHelp": false,
|
|
11159
|
-
"multiple":
|
|
11262
|
+
"multiple": false,
|
|
11160
11263
|
"type": "option"
|
|
11161
11264
|
},
|
|
11162
11265
|
"debug": {
|
|
@@ -11178,56 +11281,168 @@
|
|
|
11178
11281
|
"name": "skipauth",
|
|
11179
11282
|
"allowNo": false,
|
|
11180
11283
|
"type": "boolean"
|
|
11284
|
+
},
|
|
11285
|
+
"target-org": {
|
|
11286
|
+
"aliases": [
|
|
11287
|
+
"targetusername",
|
|
11288
|
+
"u"
|
|
11289
|
+
],
|
|
11290
|
+
"char": "o",
|
|
11291
|
+
"deprecateAliases": true,
|
|
11292
|
+
"name": "target-org",
|
|
11293
|
+
"noCacheDefault": true,
|
|
11294
|
+
"required": true,
|
|
11295
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
11296
|
+
"hasDynamicHelp": true,
|
|
11297
|
+
"multiple": false,
|
|
11298
|
+
"type": "option"
|
|
11181
11299
|
}
|
|
11182
11300
|
},
|
|
11183
|
-
"hasDynamicHelp":
|
|
11301
|
+
"hasDynamicHelp": true,
|
|
11184
11302
|
"hiddenAliases": [],
|
|
11185
|
-
"id": "hardis:project:
|
|
11303
|
+
"id": "hardis:project:fix:profiletabs",
|
|
11186
11304
|
"pluginAlias": "sfdx-hardis",
|
|
11187
11305
|
"pluginName": "sfdx-hardis",
|
|
11188
11306
|
"pluginType": "core",
|
|
11189
11307
|
"strict": true,
|
|
11190
11308
|
"enableJsonFlag": true,
|
|
11191
|
-
"title": "
|
|
11309
|
+
"title": "Fix profiles to add tabs that are not retrieved by SF CLI",
|
|
11192
11310
|
"requiresProject": true,
|
|
11193
|
-
"requiresSfdxPlugins": [
|
|
11194
|
-
"shane-sfdx-plugins"
|
|
11195
|
-
],
|
|
11196
11311
|
"isESM": true,
|
|
11197
11312
|
"relativePath": [
|
|
11198
11313
|
"lib",
|
|
11199
11314
|
"commands",
|
|
11200
11315
|
"hardis",
|
|
11201
11316
|
"project",
|
|
11202
|
-
"
|
|
11203
|
-
"
|
|
11317
|
+
"fix",
|
|
11318
|
+
"profiletabs.js"
|
|
11204
11319
|
],
|
|
11205
11320
|
"aliasPermutations": [],
|
|
11206
11321
|
"permutations": [
|
|
11207
|
-
"hardis:project:
|
|
11208
|
-
"project:hardis:
|
|
11209
|
-
"project:
|
|
11210
|
-
"project:
|
|
11211
|
-
"hardis:
|
|
11212
|
-
"
|
|
11213
|
-
"
|
|
11214
|
-
"
|
|
11215
|
-
"hardis:
|
|
11216
|
-
"
|
|
11217
|
-
"
|
|
11218
|
-
"
|
|
11219
|
-
"hardis:project:
|
|
11220
|
-
"project:hardis:
|
|
11221
|
-
"project:
|
|
11222
|
-
"project:
|
|
11223
|
-
"hardis:
|
|
11224
|
-
"
|
|
11225
|
-
"
|
|
11226
|
-
"
|
|
11227
|
-
"hardis:
|
|
11228
|
-
"
|
|
11229
|
-
"
|
|
11230
|
-
"
|
|
11322
|
+
"hardis:project:fix:profiletabs",
|
|
11323
|
+
"project:hardis:fix:profiletabs",
|
|
11324
|
+
"project:fix:hardis:profiletabs",
|
|
11325
|
+
"project:fix:profiletabs:hardis",
|
|
11326
|
+
"hardis:fix:project:profiletabs",
|
|
11327
|
+
"fix:hardis:project:profiletabs",
|
|
11328
|
+
"fix:project:hardis:profiletabs",
|
|
11329
|
+
"fix:project:profiletabs:hardis",
|
|
11330
|
+
"hardis:fix:profiletabs:project",
|
|
11331
|
+
"fix:hardis:profiletabs:project",
|
|
11332
|
+
"fix:profiletabs:hardis:project",
|
|
11333
|
+
"fix:profiletabs:project:hardis",
|
|
11334
|
+
"hardis:project:profiletabs:fix",
|
|
11335
|
+
"project:hardis:profiletabs:fix",
|
|
11336
|
+
"project:profiletabs:hardis:fix",
|
|
11337
|
+
"project:profiletabs:fix:hardis",
|
|
11338
|
+
"hardis:profiletabs:project:fix",
|
|
11339
|
+
"profiletabs:hardis:project:fix",
|
|
11340
|
+
"profiletabs:project:hardis:fix",
|
|
11341
|
+
"profiletabs:project:fix:hardis",
|
|
11342
|
+
"hardis:profiletabs:fix:project",
|
|
11343
|
+
"profiletabs:hardis:fix:project",
|
|
11344
|
+
"profiletabs:fix:hardis:project",
|
|
11345
|
+
"profiletabs:fix:project:hardis"
|
|
11346
|
+
]
|
|
11347
|
+
},
|
|
11348
|
+
"hardis:project:fix:v53flexipages": {
|
|
11349
|
+
"aliases": [],
|
|
11350
|
+
"args": {},
|
|
11351
|
+
"description": "\n## Command Behavior\n\n**Fixes Salesforce FlexiPages for compatibility with API Version 53.0 (Winter '22 release) by adding missing identifiers to component instances.**\n\nSalesforce introduced a change in API Version 53.0 that requires `identifier` tags within `componentInstance` and `fieldInstance` elements in FlexiPage metadata. If these identifiers are missing, deployments to orgs with API version 53.0 or higher will fail. This command automates the process of adding these missing identifiers, ensuring your FlexiPages remain deployable.\n\nKey functionalities:\n\n- **Targeted FlexiPage Processing:** Scans all .flexipage-meta.xml files within the specified root folder (defaults to current working directory).\n- **Identifier Injection:** Inserts a unique `identifier` tag (e.g., `SFDX_HARDIS_REPLACEMENT_ID`) into `componentInstance` and `fieldInstance` elements that lack one.\n\n**Important Note:** After running this command, ensure you update your `apiVersion` to `53.0` (or higher) in your `package.xml` and `sfdx-project.json` files.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **File Discovery:** Uses `glob` to find all .flexipage-meta.xml files.\n- **Content Reading:** Reads the XML content of each FlexiPage file.\n- **Regular Expression Replacement:** Employs a set of regular expressions to identify specific XML patterns (componentName.../componentName.../componentInstance, componentName.../componentName.../visibilityRule, fieldItem.../fieldItem.../fieldInstance) that are missing the `identifier` tag.\n- **Dynamic ID Generation:** For each match, it generates a unique identifier (e.g., `sfdxHardisIdX`) and injects it into the XML structure.\n- **File Writing:** If changes are made, the modified XML content is written back to the FlexiPage file using `fs.writeFile`.\n- **Logging:** Provides messages about which FlexiPages are being processed and a summary of the total number of identifiers added.\n</details>\n",
|
|
11352
|
+
"examples": [
|
|
11353
|
+
"$ sf hardis:project:fix:v53flexipages"
|
|
11354
|
+
],
|
|
11355
|
+
"flags": {
|
|
11356
|
+
"json": {
|
|
11357
|
+
"description": "Format output as json.",
|
|
11358
|
+
"helpGroup": "GLOBAL",
|
|
11359
|
+
"name": "json",
|
|
11360
|
+
"allowNo": false,
|
|
11361
|
+
"type": "boolean"
|
|
11362
|
+
},
|
|
11363
|
+
"flags-dir": {
|
|
11364
|
+
"helpGroup": "GLOBAL",
|
|
11365
|
+
"name": "flags-dir",
|
|
11366
|
+
"summary": "Import flag values from a directory.",
|
|
11367
|
+
"hasDynamicHelp": false,
|
|
11368
|
+
"multiple": false,
|
|
11369
|
+
"type": "option"
|
|
11370
|
+
},
|
|
11371
|
+
"path": {
|
|
11372
|
+
"char": "p",
|
|
11373
|
+
"description": "Root folder",
|
|
11374
|
+
"name": "path",
|
|
11375
|
+
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
11376
|
+
"hasDynamicHelp": false,
|
|
11377
|
+
"multiple": false,
|
|
11378
|
+
"type": "option"
|
|
11379
|
+
},
|
|
11380
|
+
"debug": {
|
|
11381
|
+
"char": "d",
|
|
11382
|
+
"description": "Activate debug mode (more logs)",
|
|
11383
|
+
"name": "debug",
|
|
11384
|
+
"allowNo": false,
|
|
11385
|
+
"type": "boolean"
|
|
11386
|
+
},
|
|
11387
|
+
"websocket": {
|
|
11388
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
11389
|
+
"name": "websocket",
|
|
11390
|
+
"hasDynamicHelp": false,
|
|
11391
|
+
"multiple": false,
|
|
11392
|
+
"type": "option"
|
|
11393
|
+
},
|
|
11394
|
+
"skipauth": {
|
|
11395
|
+
"description": "Skip authentication check when a default username is required",
|
|
11396
|
+
"name": "skipauth",
|
|
11397
|
+
"allowNo": false,
|
|
11398
|
+
"type": "boolean"
|
|
11399
|
+
}
|
|
11400
|
+
},
|
|
11401
|
+
"hasDynamicHelp": false,
|
|
11402
|
+
"hiddenAliases": [],
|
|
11403
|
+
"id": "hardis:project:fix:v53flexipages",
|
|
11404
|
+
"pluginAlias": "sfdx-hardis",
|
|
11405
|
+
"pluginName": "sfdx-hardis",
|
|
11406
|
+
"pluginType": "core",
|
|
11407
|
+
"strict": true,
|
|
11408
|
+
"enableJsonFlag": true,
|
|
11409
|
+
"title": "Fix flexipages for v53",
|
|
11410
|
+
"requiresProject": true,
|
|
11411
|
+
"isESM": true,
|
|
11412
|
+
"relativePath": [
|
|
11413
|
+
"lib",
|
|
11414
|
+
"commands",
|
|
11415
|
+
"hardis",
|
|
11416
|
+
"project",
|
|
11417
|
+
"fix",
|
|
11418
|
+
"v53flexipages.js"
|
|
11419
|
+
],
|
|
11420
|
+
"aliasPermutations": [],
|
|
11421
|
+
"permutations": [
|
|
11422
|
+
"hardis:project:fix:v53flexipages",
|
|
11423
|
+
"project:hardis:fix:v53flexipages",
|
|
11424
|
+
"project:fix:hardis:v53flexipages",
|
|
11425
|
+
"project:fix:v53flexipages:hardis",
|
|
11426
|
+
"hardis:fix:project:v53flexipages",
|
|
11427
|
+
"fix:hardis:project:v53flexipages",
|
|
11428
|
+
"fix:project:hardis:v53flexipages",
|
|
11429
|
+
"fix:project:v53flexipages:hardis",
|
|
11430
|
+
"hardis:fix:v53flexipages:project",
|
|
11431
|
+
"fix:hardis:v53flexipages:project",
|
|
11432
|
+
"fix:v53flexipages:hardis:project",
|
|
11433
|
+
"fix:v53flexipages:project:hardis",
|
|
11434
|
+
"hardis:project:v53flexipages:fix",
|
|
11435
|
+
"project:hardis:v53flexipages:fix",
|
|
11436
|
+
"project:v53flexipages:hardis:fix",
|
|
11437
|
+
"project:v53flexipages:fix:hardis",
|
|
11438
|
+
"hardis:v53flexipages:project:fix",
|
|
11439
|
+
"v53flexipages:hardis:project:fix",
|
|
11440
|
+
"v53flexipages:project:hardis:fix",
|
|
11441
|
+
"v53flexipages:project:fix:hardis",
|
|
11442
|
+
"hardis:v53flexipages:fix:project",
|
|
11443
|
+
"v53flexipages:hardis:fix:project",
|
|
11444
|
+
"v53flexipages:fix:hardis:project",
|
|
11445
|
+
"v53flexipages:fix:project:hardis"
|
|
11231
11446
|
]
|
|
11232
11447
|
},
|
|
11233
11448
|
"hardis:project:deploy:notify": {
|
|
@@ -12405,221 +12620,6 @@
|
|
|
12405
12620
|
"validate:deploy:project:hardis"
|
|
12406
12621
|
]
|
|
12407
12622
|
},
|
|
12408
|
-
"hardis:project:fix:profiletabs": {
|
|
12409
|
-
"aliases": [],
|
|
12410
|
-
"args": {},
|
|
12411
|
-
"description": "\n## Command Behavior\n\n**Interactively updates tab visibility settings in Salesforce profiles, addressing a common issue where tab visibilities are not correctly retrieved by `sf project retrieve start`.**\n\nThis command provides a user-friendly interface to manage tab settings within your profile XML files, ensuring that your local project accurately reflects the intended tab configurations in your Salesforce org.\n\nKey functionalities:\n\n- **Interactive Tab Selection:** Displays a multi-select menu of all available tabs in your org, allowing you to choose which tabs to update.\n- **Visibility Control:** Lets you set the visibility for the selected tabs to either `DefaultOn` (Visible) or `Hidden`.\n- **Profile Selection:** Presents a multi-select menu of all .profile-meta.xml files in your project, allowing you to apply the tab visibility changes to specific profiles.\n- **XML Updates:** Modifies the <tabVisibilities> section of the selected profile XML files to reflect the chosen tab settings. If a tab visibility setting already exists for a selected tab, it will be updated; otherwise, a new one will be added.\n- **Sorted Output:** The <tabVisibilities> in the updated profile XML files are sorted alphabetically for consistency and readability.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **SOQL Queries (Tooling API):** It queries the `TabDefinition` object using `soqlQueryTooling` to retrieve a list of all available tabs in the target org.\n- **File Discovery:** Uses `glob` to find all .profile-meta.xml files within the specified project path.\n- **Interactive Prompts:** Leverages the `prompts` library to create interactive menus for selecting tabs, visibility settings, and profiles.\n- **XML Parsing and Manipulation:** Uses `parseXmlFile` to read the content of profile XML files and `writeXmlFile` to write the modified content back. It manipulates the `tabVisibilities` array within the parsed XML to add or update tab settings.\n- **Array Sorting:** Employs the `sort-array` library to sort the `tabVisibilities` alphabetically by tab name.\n- **Logging:** Provides feedback to the user about which profiles have been updated and a summary of the changes.\n</details>\n",
|
|
12412
|
-
"examples": [
|
|
12413
|
-
"$ sf hardis:project:fix:profiletabs"
|
|
12414
|
-
],
|
|
12415
|
-
"flags": {
|
|
12416
|
-
"json": {
|
|
12417
|
-
"description": "Format output as json.",
|
|
12418
|
-
"helpGroup": "GLOBAL",
|
|
12419
|
-
"name": "json",
|
|
12420
|
-
"allowNo": false,
|
|
12421
|
-
"type": "boolean"
|
|
12422
|
-
},
|
|
12423
|
-
"flags-dir": {
|
|
12424
|
-
"helpGroup": "GLOBAL",
|
|
12425
|
-
"name": "flags-dir",
|
|
12426
|
-
"summary": "Import flag values from a directory.",
|
|
12427
|
-
"hasDynamicHelp": false,
|
|
12428
|
-
"multiple": false,
|
|
12429
|
-
"type": "option"
|
|
12430
|
-
},
|
|
12431
|
-
"path": {
|
|
12432
|
-
"char": "p",
|
|
12433
|
-
"description": "Root folder",
|
|
12434
|
-
"name": "path",
|
|
12435
|
-
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
12436
|
-
"hasDynamicHelp": false,
|
|
12437
|
-
"multiple": false,
|
|
12438
|
-
"type": "option"
|
|
12439
|
-
},
|
|
12440
|
-
"debug": {
|
|
12441
|
-
"char": "d",
|
|
12442
|
-
"description": "Activate debug mode (more logs)",
|
|
12443
|
-
"name": "debug",
|
|
12444
|
-
"allowNo": false,
|
|
12445
|
-
"type": "boolean"
|
|
12446
|
-
},
|
|
12447
|
-
"websocket": {
|
|
12448
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
12449
|
-
"name": "websocket",
|
|
12450
|
-
"hasDynamicHelp": false,
|
|
12451
|
-
"multiple": false,
|
|
12452
|
-
"type": "option"
|
|
12453
|
-
},
|
|
12454
|
-
"skipauth": {
|
|
12455
|
-
"description": "Skip authentication check when a default username is required",
|
|
12456
|
-
"name": "skipauth",
|
|
12457
|
-
"allowNo": false,
|
|
12458
|
-
"type": "boolean"
|
|
12459
|
-
},
|
|
12460
|
-
"target-org": {
|
|
12461
|
-
"aliases": [
|
|
12462
|
-
"targetusername",
|
|
12463
|
-
"u"
|
|
12464
|
-
],
|
|
12465
|
-
"char": "o",
|
|
12466
|
-
"deprecateAliases": true,
|
|
12467
|
-
"name": "target-org",
|
|
12468
|
-
"noCacheDefault": true,
|
|
12469
|
-
"required": true,
|
|
12470
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
12471
|
-
"hasDynamicHelp": true,
|
|
12472
|
-
"multiple": false,
|
|
12473
|
-
"type": "option"
|
|
12474
|
-
}
|
|
12475
|
-
},
|
|
12476
|
-
"hasDynamicHelp": true,
|
|
12477
|
-
"hiddenAliases": [],
|
|
12478
|
-
"id": "hardis:project:fix:profiletabs",
|
|
12479
|
-
"pluginAlias": "sfdx-hardis",
|
|
12480
|
-
"pluginName": "sfdx-hardis",
|
|
12481
|
-
"pluginType": "core",
|
|
12482
|
-
"strict": true,
|
|
12483
|
-
"enableJsonFlag": true,
|
|
12484
|
-
"title": "Fix profiles to add tabs that are not retrieved by SF CLI",
|
|
12485
|
-
"requiresProject": true,
|
|
12486
|
-
"isESM": true,
|
|
12487
|
-
"relativePath": [
|
|
12488
|
-
"lib",
|
|
12489
|
-
"commands",
|
|
12490
|
-
"hardis",
|
|
12491
|
-
"project",
|
|
12492
|
-
"fix",
|
|
12493
|
-
"profiletabs.js"
|
|
12494
|
-
],
|
|
12495
|
-
"aliasPermutations": [],
|
|
12496
|
-
"permutations": [
|
|
12497
|
-
"hardis:project:fix:profiletabs",
|
|
12498
|
-
"project:hardis:fix:profiletabs",
|
|
12499
|
-
"project:fix:hardis:profiletabs",
|
|
12500
|
-
"project:fix:profiletabs:hardis",
|
|
12501
|
-
"hardis:fix:project:profiletabs",
|
|
12502
|
-
"fix:hardis:project:profiletabs",
|
|
12503
|
-
"fix:project:hardis:profiletabs",
|
|
12504
|
-
"fix:project:profiletabs:hardis",
|
|
12505
|
-
"hardis:fix:profiletabs:project",
|
|
12506
|
-
"fix:hardis:profiletabs:project",
|
|
12507
|
-
"fix:profiletabs:hardis:project",
|
|
12508
|
-
"fix:profiletabs:project:hardis",
|
|
12509
|
-
"hardis:project:profiletabs:fix",
|
|
12510
|
-
"project:hardis:profiletabs:fix",
|
|
12511
|
-
"project:profiletabs:hardis:fix",
|
|
12512
|
-
"project:profiletabs:fix:hardis",
|
|
12513
|
-
"hardis:profiletabs:project:fix",
|
|
12514
|
-
"profiletabs:hardis:project:fix",
|
|
12515
|
-
"profiletabs:project:hardis:fix",
|
|
12516
|
-
"profiletabs:project:fix:hardis",
|
|
12517
|
-
"hardis:profiletabs:fix:project",
|
|
12518
|
-
"profiletabs:hardis:fix:project",
|
|
12519
|
-
"profiletabs:fix:hardis:project",
|
|
12520
|
-
"profiletabs:fix:project:hardis"
|
|
12521
|
-
]
|
|
12522
|
-
},
|
|
12523
|
-
"hardis:project:fix:v53flexipages": {
|
|
12524
|
-
"aliases": [],
|
|
12525
|
-
"args": {},
|
|
12526
|
-
"description": "\n## Command Behavior\n\n**Fixes Salesforce FlexiPages for compatibility with API Version 53.0 (Winter '22 release) by adding missing identifiers to component instances.**\n\nSalesforce introduced a change in API Version 53.0 that requires `identifier` tags within `componentInstance` and `fieldInstance` elements in FlexiPage metadata. If these identifiers are missing, deployments to orgs with API version 53.0 or higher will fail. This command automates the process of adding these missing identifiers, ensuring your FlexiPages remain deployable.\n\nKey functionalities:\n\n- **Targeted FlexiPage Processing:** Scans all .flexipage-meta.xml files within the specified root folder (defaults to current working directory).\n- **Identifier Injection:** Inserts a unique `identifier` tag (e.g., `SFDX_HARDIS_REPLACEMENT_ID`) into `componentInstance` and `fieldInstance` elements that lack one.\n\n**Important Note:** After running this command, ensure you update your `apiVersion` to `53.0` (or higher) in your `package.xml` and `sfdx-project.json` files.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **File Discovery:** Uses `glob` to find all .flexipage-meta.xml files.\n- **Content Reading:** Reads the XML content of each FlexiPage file.\n- **Regular Expression Replacement:** Employs a set of regular expressions to identify specific XML patterns (componentName.../componentName.../componentInstance, componentName.../componentName.../visibilityRule, fieldItem.../fieldItem.../fieldInstance) that are missing the `identifier` tag.\n- **Dynamic ID Generation:** For each match, it generates a unique identifier (e.g., `sfdxHardisIdX`) and injects it into the XML structure.\n- **File Writing:** If changes are made, the modified XML content is written back to the FlexiPage file using `fs.writeFile`.\n- **Logging:** Provides messages about which FlexiPages are being processed and a summary of the total number of identifiers added.\n</details>\n",
|
|
12527
|
-
"examples": [
|
|
12528
|
-
"$ sf hardis:project:fix:v53flexipages"
|
|
12529
|
-
],
|
|
12530
|
-
"flags": {
|
|
12531
|
-
"json": {
|
|
12532
|
-
"description": "Format output as json.",
|
|
12533
|
-
"helpGroup": "GLOBAL",
|
|
12534
|
-
"name": "json",
|
|
12535
|
-
"allowNo": false,
|
|
12536
|
-
"type": "boolean"
|
|
12537
|
-
},
|
|
12538
|
-
"flags-dir": {
|
|
12539
|
-
"helpGroup": "GLOBAL",
|
|
12540
|
-
"name": "flags-dir",
|
|
12541
|
-
"summary": "Import flag values from a directory.",
|
|
12542
|
-
"hasDynamicHelp": false,
|
|
12543
|
-
"multiple": false,
|
|
12544
|
-
"type": "option"
|
|
12545
|
-
},
|
|
12546
|
-
"path": {
|
|
12547
|
-
"char": "p",
|
|
12548
|
-
"description": "Root folder",
|
|
12549
|
-
"name": "path",
|
|
12550
|
-
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
12551
|
-
"hasDynamicHelp": false,
|
|
12552
|
-
"multiple": false,
|
|
12553
|
-
"type": "option"
|
|
12554
|
-
},
|
|
12555
|
-
"debug": {
|
|
12556
|
-
"char": "d",
|
|
12557
|
-
"description": "Activate debug mode (more logs)",
|
|
12558
|
-
"name": "debug",
|
|
12559
|
-
"allowNo": false,
|
|
12560
|
-
"type": "boolean"
|
|
12561
|
-
},
|
|
12562
|
-
"websocket": {
|
|
12563
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
12564
|
-
"name": "websocket",
|
|
12565
|
-
"hasDynamicHelp": false,
|
|
12566
|
-
"multiple": false,
|
|
12567
|
-
"type": "option"
|
|
12568
|
-
},
|
|
12569
|
-
"skipauth": {
|
|
12570
|
-
"description": "Skip authentication check when a default username is required",
|
|
12571
|
-
"name": "skipauth",
|
|
12572
|
-
"allowNo": false,
|
|
12573
|
-
"type": "boolean"
|
|
12574
|
-
}
|
|
12575
|
-
},
|
|
12576
|
-
"hasDynamicHelp": false,
|
|
12577
|
-
"hiddenAliases": [],
|
|
12578
|
-
"id": "hardis:project:fix:v53flexipages",
|
|
12579
|
-
"pluginAlias": "sfdx-hardis",
|
|
12580
|
-
"pluginName": "sfdx-hardis",
|
|
12581
|
-
"pluginType": "core",
|
|
12582
|
-
"strict": true,
|
|
12583
|
-
"enableJsonFlag": true,
|
|
12584
|
-
"title": "Fix flexipages for v53",
|
|
12585
|
-
"requiresProject": true,
|
|
12586
|
-
"isESM": true,
|
|
12587
|
-
"relativePath": [
|
|
12588
|
-
"lib",
|
|
12589
|
-
"commands",
|
|
12590
|
-
"hardis",
|
|
12591
|
-
"project",
|
|
12592
|
-
"fix",
|
|
12593
|
-
"v53flexipages.js"
|
|
12594
|
-
],
|
|
12595
|
-
"aliasPermutations": [],
|
|
12596
|
-
"permutations": [
|
|
12597
|
-
"hardis:project:fix:v53flexipages",
|
|
12598
|
-
"project:hardis:fix:v53flexipages",
|
|
12599
|
-
"project:fix:hardis:v53flexipages",
|
|
12600
|
-
"project:fix:v53flexipages:hardis",
|
|
12601
|
-
"hardis:fix:project:v53flexipages",
|
|
12602
|
-
"fix:hardis:project:v53flexipages",
|
|
12603
|
-
"fix:project:hardis:v53flexipages",
|
|
12604
|
-
"fix:project:v53flexipages:hardis",
|
|
12605
|
-
"hardis:fix:v53flexipages:project",
|
|
12606
|
-
"fix:hardis:v53flexipages:project",
|
|
12607
|
-
"fix:v53flexipages:hardis:project",
|
|
12608
|
-
"fix:v53flexipages:project:hardis",
|
|
12609
|
-
"hardis:project:v53flexipages:fix",
|
|
12610
|
-
"project:hardis:v53flexipages:fix",
|
|
12611
|
-
"project:v53flexipages:hardis:fix",
|
|
12612
|
-
"project:v53flexipages:fix:hardis",
|
|
12613
|
-
"hardis:v53flexipages:project:fix",
|
|
12614
|
-
"v53flexipages:hardis:project:fix",
|
|
12615
|
-
"v53flexipages:project:hardis:fix",
|
|
12616
|
-
"v53flexipages:project:fix:hardis",
|
|
12617
|
-
"hardis:v53flexipages:fix:project",
|
|
12618
|
-
"v53flexipages:hardis:fix:project",
|
|
12619
|
-
"v53flexipages:fix:hardis:project",
|
|
12620
|
-
"v53flexipages:fix:project:hardis"
|
|
12621
|
-
]
|
|
12622
|
-
},
|
|
12623
12623
|
"hardis:project:generate:bypass": {
|
|
12624
12624
|
"aliases": [],
|
|
12625
12625
|
"args": {},
|
|
@@ -15102,5 +15102,5 @@
|
|
|
15102
15102
|
]
|
|
15103
15103
|
}
|
|
15104
15104
|
},
|
|
15105
|
-
"version": "6.0.7-
|
|
15105
|
+
"version": "6.0.7-beta202508231311.0"
|
|
15106
15106
|
}
|