sfdx-hardis 5.31.0 → 5.32.1
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 +12 -2
- package/defaults/ci/manifest/package-no-overwrite.xml +5 -0
- package/lib/commands/hardis/doc/project2markdown.d.ts +2 -0
- package/lib/commands/hardis/doc/project2markdown.js +64 -6
- package/lib/commands/hardis/doc/project2markdown.js.map +1 -1
- package/lib/commands/hardis/org/diagnose/audittrail.js +4 -0
- package/lib/commands/hardis/org/diagnose/audittrail.js.map +1 -1
- package/lib/common/aiProvider/promptTemplates.d.ts +7 -1
- package/lib/common/aiProvider/promptTemplates.js +27 -0
- package/lib/common/aiProvider/promptTemplates.js.map +1 -1
- package/lib/common/docBuilder/docBuilderEscalationRules.d.ts +10 -0
- package/lib/common/docBuilder/docBuilderEscalationRules.js +41 -0
- package/lib/common/docBuilder/docBuilderEscalationRules.js.map +1 -0
- package/lib/common/utils/rulesBuilderUtil.d.ts +3 -0
- package/lib/common/utils/rulesBuilderUtil.js +40 -1
- package/lib/common/utils/rulesBuilderUtil.js.map +1 -1
- package/oclif.manifest.json +1881 -1881
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -781,7 +781,7 @@
|
|
|
781
781
|
"hardis:doc:project2markdown": {
|
|
782
782
|
"aliases": [],
|
|
783
783
|
"args": {},
|
|
784
|
-
"description": "Generates a markdown documentation from a SFDX project\n\n- Objects\n- Flows\n- Apex\n- Lightning Pages\n- SFDX-Hardis Config\n- Branches & Orgs\n- Installed Packages\n- Manifests\n\nCan work on any sfdx project, no need for it to be a sfdx-hardis flavored one.\n\nGenerates markdown files will be written in **docs** folder (except README.md where a link to doc index is added)\n\n- You can customize the pages following [mkdocs-material setup documentation](https://squidfunk.github.io/mkdocs-material/setup/)\n- You can manually add new markdown files in the \"docs\" folder to extend this documentation and add references to them in \"mkdocs.yml\"\n- You can also add images in folder \"docs/assets\" and embed them in markdown files.\n\nTo read Flow documentations if your markdown reader doesn't handle MermaidJS syntax, this command could require @mermaid-js/mermaid-cli\n\n- Run `npm install @mermaid-js/mermaid-cli --global` if puppeteer works in your environment\n- It can also be run as a docker image\n\nBoth modes will be tried by default, but you can also force one of them by defining environment variable `MERMAID_MODES=docker` or `MERMAID_MODES=cli`\n\n_sfdx-hardis docker image is alpine-based and does not succeed to run mermaid/puppeteer: if you can help, please submit a PR !_\n\nIf Flow history doc always display a single state, you probably need to update your workflow configuration:\n\n- on Gitlab: Env variable [`GIT_FETCH_EXTRA_FLAGS: --depth 10000`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.gitlab-ci.yml#L11)\n- on GitHub: [`fetch-depth: 0`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.github/workflows/org-monitoring.yml#L58)\n- on Azure: [`fetchDepth: \"0\"`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/azure-pipelines.yml#L39)\n- on Bitbucket: [`step: clone: depth: full`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/bitbucket-pipelines.yml#L18)\n\n\n\n\n\n\n\n\n\n\n\nIf it is a sfdx-hardis CI/CD project, a diagram of the branches and orgs strategy will be generated.\n\n\n\nIf [AI integration](https://sfdx-hardis.cloudity.com/salesforce-ai-setup/) is configured, documentation will contain a summary of the Flow.\n\nIf you have a complex strategy, you might need to input property **mergeTargets** in branch-scoped sfdx-hardis.yml file to have a correct diagram.\n\n## Doc HTML Pages\n\nTo read the documentation as HTML pages, run the following code (you need [**Python**](https://www.python.org/downloads/) on your computer)\n\n```python\npip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || python -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || py -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists\nmkdocs serve -v || python -m mkdocs serve -v || py -m mkdocs serve -v\n```\n\nTo just generate HTML pages that you can host anywhere, run `mkdocs build -v || python -m mkdocs build -v || py -m mkdocs build -v`\n\n",
|
|
784
|
+
"description": "Generates a markdown documentation from a SFDX project\n\n- Objects (with fields, validation rules, relationships and dependencies)\n- Automations\n - Approval Processes\n - Assignment Rules\n - AutoResponse Rules\n - Escalation Rules\n - Flows\n- Authorizations\n - Profiles\n - Permission Set Groups\n - Permission Sets\n- Code\n - Apex\n - Lightning Web Components\n- Lightning Pages\n- SFDX-Hardis Config\n- Branches & Orgs\n- Installed Packages\n- Manifests\n\nCan work on any sfdx project, no need for it to be a sfdx-hardis flavored one.\n\nGenerates markdown files will be written in **docs** folder (except README.md where a link to doc index is added)\n\n- You can customize the pages following [mkdocs-material setup documentation](https://squidfunk.github.io/mkdocs-material/setup/)\n- You can manually add new markdown files in the \"docs\" folder to extend this documentation and add references to them in \"mkdocs.yml\"\n- You can also add images in folder \"docs/assets\" and embed them in markdown files.\n\nTo read Flow documentations if your markdown reader doesn't handle MermaidJS syntax, this command could require @mermaid-js/mermaid-cli\n\n- Run `npm install @mermaid-js/mermaid-cli --global` if puppeteer works in your environment\n- It can also be run as a docker image\n\nBoth modes will be tried by default, but you can also force one of them by defining environment variable `MERMAID_MODES=docker` or `MERMAID_MODES=cli`\n\n_sfdx-hardis docker image is alpine-based and does not succeed to run mermaid/puppeteer: if you can help, please submit a PR !_\n\nIf Flow history doc always display a single state, you probably need to update your workflow configuration:\n\n- on Gitlab: Env variable [`GIT_FETCH_EXTRA_FLAGS: --depth 10000`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.gitlab-ci.yml#L11)\n- on GitHub: [`fetch-depth: 0`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/.github/workflows/org-monitoring.yml#L58)\n- on Azure: [`fetchDepth: \"0\"`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/azure-pipelines.yml#L39)\n- on Bitbucket: [`step: clone: depth: full`](https://github.com/hardisgroupcom/sfdx-hardis/blob/main/defaults/monitoring/bitbucket-pipelines.yml#L18)\n\n\n\n\n\n\n\n\n\n\n\nIf it is a sfdx-hardis CI/CD project, a diagram of the branches and orgs strategy will be generated.\n\n\n\nIf [AI integration](https://sfdx-hardis.cloudity.com/salesforce-ai-setup/) is configured, documentation will contain a summary of the Flow.\n\nIf you have a complex strategy, you might need to input property **mergeTargets** in branch-scoped sfdx-hardis.yml file to have a correct diagram.\n\n## Doc HTML Pages\n\nTo read the documentation as HTML pages, run the following code (you need [**Python**](https://www.python.org/downloads/) on your computer)\n\n```python\npip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || python -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists || py -m pip install mkdocs-material mkdocs-exclude-search mdx_truly_sane_lists\nmkdocs serve -v || python -m mkdocs serve -v || py -m mkdocs serve -v\n```\n\nTo just generate HTML pages that you can host anywhere, run `mkdocs build -v || python -m mkdocs build -v || py -m mkdocs build -v`\n\n",
|
|
785
785
|
"examples": [
|
|
786
786
|
"$ sf hardis:doc:project2markdown",
|
|
787
787
|
"$ sf hardis:doc:project2markdown --with-history",
|
|
@@ -4114,135 +4114,6 @@
|
|
|
4114
4114
|
"ws:work:hardis"
|
|
4115
4115
|
]
|
|
4116
4116
|
},
|
|
4117
|
-
"hardis:git:pull-requests:extract": {
|
|
4118
|
-
"aliases": [],
|
|
4119
|
-
"args": {},
|
|
4120
|
-
"description": "Extract pull requests with filtering criteria",
|
|
4121
|
-
"examples": [
|
|
4122
|
-
"$ sf hardis:git:pull-requests:extract",
|
|
4123
|
-
"$ sf hardis:git:pull-requests:extract --target-branch main --status merged"
|
|
4124
|
-
],
|
|
4125
|
-
"flags": {
|
|
4126
|
-
"json": {
|
|
4127
|
-
"description": "Format output as json.",
|
|
4128
|
-
"helpGroup": "GLOBAL",
|
|
4129
|
-
"name": "json",
|
|
4130
|
-
"allowNo": false,
|
|
4131
|
-
"type": "boolean"
|
|
4132
|
-
},
|
|
4133
|
-
"flags-dir": {
|
|
4134
|
-
"helpGroup": "GLOBAL",
|
|
4135
|
-
"name": "flags-dir",
|
|
4136
|
-
"summary": "Import flag values from a directory.",
|
|
4137
|
-
"hasDynamicHelp": false,
|
|
4138
|
-
"multiple": false,
|
|
4139
|
-
"type": "option"
|
|
4140
|
-
},
|
|
4141
|
-
"target-branch": {
|
|
4142
|
-
"char": "t",
|
|
4143
|
-
"description": "Target branch of PRs",
|
|
4144
|
-
"name": "target-branch",
|
|
4145
|
-
"hasDynamicHelp": false,
|
|
4146
|
-
"multiple": false,
|
|
4147
|
-
"type": "option"
|
|
4148
|
-
},
|
|
4149
|
-
"status": {
|
|
4150
|
-
"char": "x",
|
|
4151
|
-
"description": "Status of the PR",
|
|
4152
|
-
"name": "status",
|
|
4153
|
-
"hasDynamicHelp": false,
|
|
4154
|
-
"multiple": false,
|
|
4155
|
-
"options": [
|
|
4156
|
-
"open",
|
|
4157
|
-
"merged",
|
|
4158
|
-
"abandoned"
|
|
4159
|
-
],
|
|
4160
|
-
"type": "option"
|
|
4161
|
-
},
|
|
4162
|
-
"min-date": {
|
|
4163
|
-
"char": "m",
|
|
4164
|
-
"description": "Minimum date for PR",
|
|
4165
|
-
"name": "min-date",
|
|
4166
|
-
"hasDynamicHelp": false,
|
|
4167
|
-
"multiple": false,
|
|
4168
|
-
"type": "option"
|
|
4169
|
-
},
|
|
4170
|
-
"outputfile": {
|
|
4171
|
-
"char": "f",
|
|
4172
|
-
"description": "Force the path and name of output report file. Must end with .csv",
|
|
4173
|
-
"name": "outputfile",
|
|
4174
|
-
"hasDynamicHelp": false,
|
|
4175
|
-
"multiple": false,
|
|
4176
|
-
"type": "option"
|
|
4177
|
-
},
|
|
4178
|
-
"debug": {
|
|
4179
|
-
"char": "d",
|
|
4180
|
-
"description": "Activate debug mode (more logs)",
|
|
4181
|
-
"name": "debug",
|
|
4182
|
-
"allowNo": false,
|
|
4183
|
-
"type": "boolean"
|
|
4184
|
-
},
|
|
4185
|
-
"websocket": {
|
|
4186
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
4187
|
-
"name": "websocket",
|
|
4188
|
-
"hasDynamicHelp": false,
|
|
4189
|
-
"multiple": false,
|
|
4190
|
-
"type": "option"
|
|
4191
|
-
},
|
|
4192
|
-
"skipauth": {
|
|
4193
|
-
"description": "Skip authentication check when a default username is required",
|
|
4194
|
-
"name": "skipauth",
|
|
4195
|
-
"allowNo": false,
|
|
4196
|
-
"type": "boolean"
|
|
4197
|
-
}
|
|
4198
|
-
},
|
|
4199
|
-
"hasDynamicHelp": false,
|
|
4200
|
-
"hiddenAliases": [],
|
|
4201
|
-
"id": "hardis:git:pull-requests:extract",
|
|
4202
|
-
"pluginAlias": "sfdx-hardis",
|
|
4203
|
-
"pluginName": "sfdx-hardis",
|
|
4204
|
-
"pluginType": "core",
|
|
4205
|
-
"strict": true,
|
|
4206
|
-
"enableJsonFlag": true,
|
|
4207
|
-
"title": "Extract pull requests",
|
|
4208
|
-
"requiresProject": true,
|
|
4209
|
-
"isESM": true,
|
|
4210
|
-
"relativePath": [
|
|
4211
|
-
"lib",
|
|
4212
|
-
"commands",
|
|
4213
|
-
"hardis",
|
|
4214
|
-
"git",
|
|
4215
|
-
"pull-requests",
|
|
4216
|
-
"extract.js"
|
|
4217
|
-
],
|
|
4218
|
-
"aliasPermutations": [],
|
|
4219
|
-
"permutations": [
|
|
4220
|
-
"hardis:git:pull-requests:extract",
|
|
4221
|
-
"git:hardis:pull-requests:extract",
|
|
4222
|
-
"git:pull-requests:hardis:extract",
|
|
4223
|
-
"git:pull-requests:extract:hardis",
|
|
4224
|
-
"hardis:pull-requests:git:extract",
|
|
4225
|
-
"pull-requests:hardis:git:extract",
|
|
4226
|
-
"pull-requests:git:hardis:extract",
|
|
4227
|
-
"pull-requests:git:extract:hardis",
|
|
4228
|
-
"hardis:pull-requests:extract:git",
|
|
4229
|
-
"pull-requests:hardis:extract:git",
|
|
4230
|
-
"pull-requests:extract:hardis:git",
|
|
4231
|
-
"pull-requests:extract:git:hardis",
|
|
4232
|
-
"hardis:git:extract:pull-requests",
|
|
4233
|
-
"git:hardis:extract:pull-requests",
|
|
4234
|
-
"git:extract:hardis:pull-requests",
|
|
4235
|
-
"git:extract:pull-requests:hardis",
|
|
4236
|
-
"hardis:extract:git:pull-requests",
|
|
4237
|
-
"extract:hardis:git:pull-requests",
|
|
4238
|
-
"extract:git:hardis:pull-requests",
|
|
4239
|
-
"extract:git:pull-requests:hardis",
|
|
4240
|
-
"hardis:extract:pull-requests:git",
|
|
4241
|
-
"extract:hardis:pull-requests:git",
|
|
4242
|
-
"extract:pull-requests:hardis:git",
|
|
4243
|
-
"extract:pull-requests:git:hardis"
|
|
4244
|
-
]
|
|
4245
|
-
},
|
|
4246
4117
|
"hardis:doc:extract:permsetgroups": {
|
|
4247
4118
|
"aliases": [],
|
|
4248
4119
|
"args": {},
|
|
@@ -4433,13 +4304,13 @@
|
|
|
4433
4304
|
"generate:plugin:doc:hardis"
|
|
4434
4305
|
]
|
|
4435
4306
|
},
|
|
4436
|
-
"hardis:
|
|
4307
|
+
"hardis:git:pull-requests:extract": {
|
|
4437
4308
|
"aliases": [],
|
|
4438
4309
|
"args": {},
|
|
4439
|
-
"description": "
|
|
4310
|
+
"description": "Extract pull requests with filtering criteria",
|
|
4440
4311
|
"examples": [
|
|
4441
|
-
"$ sf hardis:
|
|
4442
|
-
"$ sf hardis:
|
|
4312
|
+
"$ sf hardis:git:pull-requests:extract",
|
|
4313
|
+
"$ sf hardis:git:pull-requests:extract --target-branch main --status merged"
|
|
4443
4314
|
],
|
|
4444
4315
|
"flags": {
|
|
4445
4316
|
"json": {
|
|
@@ -4457,20 +4328,39 @@
|
|
|
4457
4328
|
"multiple": false,
|
|
4458
4329
|
"type": "option"
|
|
4459
4330
|
},
|
|
4460
|
-
"
|
|
4461
|
-
"char": "
|
|
4462
|
-
"description": "
|
|
4463
|
-
"name": "
|
|
4464
|
-
"required": true,
|
|
4331
|
+
"target-branch": {
|
|
4332
|
+
"char": "t",
|
|
4333
|
+
"description": "Target branch of PRs",
|
|
4334
|
+
"name": "target-branch",
|
|
4465
4335
|
"hasDynamicHelp": false,
|
|
4466
4336
|
"multiple": false,
|
|
4467
4337
|
"type": "option"
|
|
4468
4338
|
},
|
|
4469
4339
|
"status": {
|
|
4470
|
-
"char": "
|
|
4471
|
-
"description": "
|
|
4340
|
+
"char": "x",
|
|
4341
|
+
"description": "Status of the PR",
|
|
4472
4342
|
"name": "status",
|
|
4473
|
-
"
|
|
4343
|
+
"hasDynamicHelp": false,
|
|
4344
|
+
"multiple": false,
|
|
4345
|
+
"options": [
|
|
4346
|
+
"open",
|
|
4347
|
+
"merged",
|
|
4348
|
+
"abandoned"
|
|
4349
|
+
],
|
|
4350
|
+
"type": "option"
|
|
4351
|
+
},
|
|
4352
|
+
"min-date": {
|
|
4353
|
+
"char": "m",
|
|
4354
|
+
"description": "Minimum date for PR",
|
|
4355
|
+
"name": "min-date",
|
|
4356
|
+
"hasDynamicHelp": false,
|
|
4357
|
+
"multiple": false,
|
|
4358
|
+
"type": "option"
|
|
4359
|
+
},
|
|
4360
|
+
"outputfile": {
|
|
4361
|
+
"char": "f",
|
|
4362
|
+
"description": "Force the path and name of output report file. Must end with .csv",
|
|
4363
|
+
"name": "outputfile",
|
|
4474
4364
|
"hasDynamicHelp": false,
|
|
4475
4365
|
"multiple": false,
|
|
4476
4366
|
"type": "option"
|
|
@@ -4482,66 +4372,65 @@
|
|
|
4482
4372
|
"allowNo": false,
|
|
4483
4373
|
"type": "boolean"
|
|
4484
4374
|
},
|
|
4485
|
-
"
|
|
4486
|
-
"
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
],
|
|
4490
|
-
"char": "o",
|
|
4491
|
-
"deprecateAliases": true,
|
|
4492
|
-
"name": "target-org",
|
|
4493
|
-
"noCacheDefault": true,
|
|
4494
|
-
"required": true,
|
|
4495
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
4496
|
-
"hasDynamicHelp": true,
|
|
4375
|
+
"websocket": {
|
|
4376
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
4377
|
+
"name": "websocket",
|
|
4378
|
+
"hasDynamicHelp": false,
|
|
4497
4379
|
"multiple": false,
|
|
4498
4380
|
"type": "option"
|
|
4381
|
+
},
|
|
4382
|
+
"skipauth": {
|
|
4383
|
+
"description": "Skip authentication check when a default username is required",
|
|
4384
|
+
"name": "skipauth",
|
|
4385
|
+
"allowNo": false,
|
|
4386
|
+
"type": "boolean"
|
|
4499
4387
|
}
|
|
4500
4388
|
},
|
|
4501
|
-
"hasDynamicHelp":
|
|
4389
|
+
"hasDynamicHelp": false,
|
|
4502
4390
|
"hiddenAliases": [],
|
|
4503
|
-
"id": "hardis:
|
|
4391
|
+
"id": "hardis:git:pull-requests:extract",
|
|
4504
4392
|
"pluginAlias": "sfdx-hardis",
|
|
4505
4393
|
"pluginName": "sfdx-hardis",
|
|
4506
4394
|
"pluginType": "core",
|
|
4507
4395
|
"strict": true,
|
|
4508
|
-
"summary": "Update a community status.",
|
|
4509
4396
|
"enableJsonFlag": true,
|
|
4397
|
+
"title": "Extract pull requests",
|
|
4398
|
+
"requiresProject": true,
|
|
4510
4399
|
"isESM": true,
|
|
4511
4400
|
"relativePath": [
|
|
4512
4401
|
"lib",
|
|
4513
4402
|
"commands",
|
|
4514
4403
|
"hardis",
|
|
4515
|
-
"
|
|
4516
|
-
"
|
|
4517
|
-
"
|
|
4404
|
+
"git",
|
|
4405
|
+
"pull-requests",
|
|
4406
|
+
"extract.js"
|
|
4518
4407
|
],
|
|
4519
4408
|
"aliasPermutations": [],
|
|
4520
4409
|
"permutations": [
|
|
4521
|
-
"hardis:
|
|
4522
|
-
"
|
|
4523
|
-
"
|
|
4524
|
-
"
|
|
4525
|
-
"hardis:
|
|
4526
|
-
"
|
|
4527
|
-
"
|
|
4528
|
-
"
|
|
4529
|
-
"hardis:
|
|
4530
|
-
"
|
|
4531
|
-
"
|
|
4532
|
-
"
|
|
4533
|
-
"hardis:
|
|
4534
|
-
"
|
|
4535
|
-
"
|
|
4536
|
-
"
|
|
4537
|
-
"hardis:
|
|
4538
|
-
"
|
|
4539
|
-
"
|
|
4540
|
-
"
|
|
4541
|
-
"hardis:
|
|
4542
|
-
"
|
|
4543
|
-
"
|
|
4544
|
-
"
|
|
4410
|
+
"hardis:git:pull-requests:extract",
|
|
4411
|
+
"git:hardis:pull-requests:extract",
|
|
4412
|
+
"git:pull-requests:hardis:extract",
|
|
4413
|
+
"git:pull-requests:extract:hardis",
|
|
4414
|
+
"hardis:pull-requests:git:extract",
|
|
4415
|
+
"pull-requests:hardis:git:extract",
|
|
4416
|
+
"pull-requests:git:hardis:extract",
|
|
4417
|
+
"pull-requests:git:extract:hardis",
|
|
4418
|
+
"hardis:pull-requests:extract:git",
|
|
4419
|
+
"pull-requests:hardis:extract:git",
|
|
4420
|
+
"pull-requests:extract:hardis:git",
|
|
4421
|
+
"pull-requests:extract:git:hardis",
|
|
4422
|
+
"hardis:git:extract:pull-requests",
|
|
4423
|
+
"git:hardis:extract:pull-requests",
|
|
4424
|
+
"git:extract:hardis:pull-requests",
|
|
4425
|
+
"git:extract:pull-requests:hardis",
|
|
4426
|
+
"hardis:extract:git:pull-requests",
|
|
4427
|
+
"extract:hardis:git:pull-requests",
|
|
4428
|
+
"extract:git:hardis:pull-requests",
|
|
4429
|
+
"extract:git:pull-requests:hardis",
|
|
4430
|
+
"hardis:extract:pull-requests:git",
|
|
4431
|
+
"extract:hardis:pull-requests:git",
|
|
4432
|
+
"extract:pull-requests:hardis:git",
|
|
4433
|
+
"extract:pull-requests:git:hardis"
|
|
4545
4434
|
]
|
|
4546
4435
|
},
|
|
4547
4436
|
"hardis:org:configure:data": {
|
|
@@ -5199,7 +5088,7 @@
|
|
|
5199
5088
|
"hardis:org:diagnose:audittrail": {
|
|
5200
5089
|
"aliases": [],
|
|
5201
5090
|
"args": {},
|
|
5202
|
-
"description": "Export Audit trail into a CSV file with selected criteria, and highlight suspect actions\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- Groups\n - groupMembership\n- Holidays\n - holiday_insert\n- Inbox mobile and legacy desktop apps\n - enableSIQUserNonEAC\n- Manage Users\n - activateduser\n - createduser\n - changedcommunitynickname\n - changedemail\n - changedfederationid\n - changedpassword\n - changedinteractionuseroffon\n - changedinteractionuseronoff\n - changedmarketinguseroffon\n - changedmarketinguseronoff\n - changedprofileforuser\n - changedprofileforusercusttostd\n - changedprofileforuserstdtocust\n - changedroleforusertonone\n - changedroleforuser\n - changedroleforuserfromnone\n - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedknowledgeuseroffon\n - changedsfcontentuseroffon\n - changedsupportuseroffon\n - changedUserPhoneNumber\n - changedUserPhoneVerifiedStatusUnverified\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",
|
|
5091
|
+
"description": "Export Audit trail into a CSV file with selected criteria, and highlight suspect actions\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- Groups\n - groupMembership\n- Holidays\n - holiday_insert\n- Inbox mobile and legacy desktop apps\n - enableSIQUserNonEAC\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 - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedknowledgeuseroffon\n - changedsfcontentuseroffon\n - changedsupportuseroffon\n - changedUserPhoneNumber\n - changedUserPhoneVerifiedStatusUnverified\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",
|
|
5203
5092
|
"examples": [
|
|
5204
5093
|
"$ sf hardis:org:diagnose:audittrail",
|
|
5205
5094
|
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
|
|
@@ -6345,12 +6234,13 @@
|
|
|
6345
6234
|
"unusedusers:diagnose:org:hardis"
|
|
6346
6235
|
]
|
|
6347
6236
|
},
|
|
6348
|
-
"hardis:org:
|
|
6237
|
+
"hardis:org:community:update": {
|
|
6349
6238
|
"aliases": [],
|
|
6350
6239
|
"args": {},
|
|
6351
|
-
"description": "
|
|
6240
|
+
"description": "Activate or deactivate a community by changing it's status:\n\n- Live\n- DownForMaintenance",
|
|
6352
6241
|
"examples": [
|
|
6353
|
-
"$ sf hardis:org:
|
|
6242
|
+
"$ sf hardis:org:community:update --name 'MyNetworkName' --status DownForMaintenance",
|
|
6243
|
+
"$ sf hardis:org:community:update --name 'MyNetworkName,MySecondNetworkName' --status Live"
|
|
6354
6244
|
],
|
|
6355
6245
|
"flags": {
|
|
6356
6246
|
"json": {
|
|
@@ -6368,162 +6258,24 @@
|
|
|
6368
6258
|
"multiple": false,
|
|
6369
6259
|
"type": "option"
|
|
6370
6260
|
},
|
|
6371
|
-
"
|
|
6372
|
-
"char": "
|
|
6373
|
-
"description": "
|
|
6374
|
-
"name": "
|
|
6375
|
-
"
|
|
6376
|
-
"multiple": false,
|
|
6377
|
-
"type": "option"
|
|
6378
|
-
},
|
|
6379
|
-
"chunksize": {
|
|
6380
|
-
"char": "c",
|
|
6381
|
-
"description": "Number of records to add in a chunk before it is processed",
|
|
6382
|
-
"name": "chunksize",
|
|
6383
|
-
"default": 1000,
|
|
6384
|
-
"hasDynamicHelp": false,
|
|
6385
|
-
"multiple": false,
|
|
6386
|
-
"type": "option"
|
|
6387
|
-
},
|
|
6388
|
-
"polltimeout": {
|
|
6389
|
-
"char": "t",
|
|
6390
|
-
"description": "Timeout in MS for Bulk API calls",
|
|
6391
|
-
"name": "polltimeout",
|
|
6392
|
-
"default": 300000,
|
|
6261
|
+
"name": {
|
|
6262
|
+
"char": "n",
|
|
6263
|
+
"description": "List of Networks Names that you want to update, separated by comma",
|
|
6264
|
+
"name": "name",
|
|
6265
|
+
"required": true,
|
|
6393
6266
|
"hasDynamicHelp": false,
|
|
6394
6267
|
"multiple": false,
|
|
6395
6268
|
"type": "option"
|
|
6396
6269
|
},
|
|
6397
|
-
"
|
|
6270
|
+
"status": {
|
|
6398
6271
|
"char": "s",
|
|
6399
|
-
"description": "
|
|
6400
|
-
"name": "
|
|
6401
|
-
"default": 0,
|
|
6402
|
-
"hasDynamicHelp": false,
|
|
6403
|
-
"multiple": false,
|
|
6404
|
-
"type": "option"
|
|
6405
|
-
},
|
|
6406
|
-
"debug": {
|
|
6407
|
-
"char": "d",
|
|
6408
|
-
"description": "Activate debug mode (more logs)",
|
|
6409
|
-
"name": "debug",
|
|
6410
|
-
"allowNo": false,
|
|
6411
|
-
"type": "boolean"
|
|
6412
|
-
},
|
|
6413
|
-
"websocket": {
|
|
6414
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6415
|
-
"name": "websocket",
|
|
6416
|
-
"hasDynamicHelp": false,
|
|
6417
|
-
"multiple": false,
|
|
6418
|
-
"type": "option"
|
|
6419
|
-
},
|
|
6420
|
-
"skipauth": {
|
|
6421
|
-
"description": "Skip authentication check when a default username is required",
|
|
6422
|
-
"name": "skipauth",
|
|
6423
|
-
"allowNo": false,
|
|
6424
|
-
"type": "boolean"
|
|
6425
|
-
},
|
|
6426
|
-
"target-org": {
|
|
6427
|
-
"aliases": [
|
|
6428
|
-
"targetusername",
|
|
6429
|
-
"u"
|
|
6430
|
-
],
|
|
6431
|
-
"char": "o",
|
|
6432
|
-
"deprecateAliases": true,
|
|
6433
|
-
"name": "target-org",
|
|
6434
|
-
"noCacheDefault": true,
|
|
6272
|
+
"description": "New status for the community, available values are: Live, DownForMaintenance",
|
|
6273
|
+
"name": "status",
|
|
6435
6274
|
"required": true,
|
|
6436
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
6437
|
-
"hasDynamicHelp": true,
|
|
6438
|
-
"multiple": false,
|
|
6439
|
-
"type": "option"
|
|
6440
|
-
}
|
|
6441
|
-
},
|
|
6442
|
-
"hasDynamicHelp": true,
|
|
6443
|
-
"hiddenAliases": [],
|
|
6444
|
-
"id": "hardis:org:files:export",
|
|
6445
|
-
"pluginAlias": "sfdx-hardis",
|
|
6446
|
-
"pluginName": "sfdx-hardis",
|
|
6447
|
-
"pluginType": "core",
|
|
6448
|
-
"strict": true,
|
|
6449
|
-
"enableJsonFlag": true,
|
|
6450
|
-
"title": "Export files",
|
|
6451
|
-
"requiresProject": false,
|
|
6452
|
-
"isESM": true,
|
|
6453
|
-
"relativePath": [
|
|
6454
|
-
"lib",
|
|
6455
|
-
"commands",
|
|
6456
|
-
"hardis",
|
|
6457
|
-
"org",
|
|
6458
|
-
"files",
|
|
6459
|
-
"export.js"
|
|
6460
|
-
],
|
|
6461
|
-
"aliasPermutations": [],
|
|
6462
|
-
"permutations": [
|
|
6463
|
-
"hardis:org:files:export",
|
|
6464
|
-
"org:hardis:files:export",
|
|
6465
|
-
"org:files:hardis:export",
|
|
6466
|
-
"org:files:export:hardis",
|
|
6467
|
-
"hardis:files:org:export",
|
|
6468
|
-
"files:hardis:org:export",
|
|
6469
|
-
"files:org:hardis:export",
|
|
6470
|
-
"files:org:export:hardis",
|
|
6471
|
-
"hardis:files:export:org",
|
|
6472
|
-
"files:hardis:export:org",
|
|
6473
|
-
"files:export:hardis:org",
|
|
6474
|
-
"files:export:org:hardis",
|
|
6475
|
-
"hardis:org:export:files",
|
|
6476
|
-
"org:hardis:export:files",
|
|
6477
|
-
"org:export:hardis:files",
|
|
6478
|
-
"org:export:files:hardis",
|
|
6479
|
-
"hardis:export:org:files",
|
|
6480
|
-
"export:hardis:org:files",
|
|
6481
|
-
"export:org:hardis:files",
|
|
6482
|
-
"export:org:files:hardis",
|
|
6483
|
-
"hardis:export:files:org",
|
|
6484
|
-
"export:hardis:files:org",
|
|
6485
|
-
"export:files:hardis:org",
|
|
6486
|
-
"export:files:org:hardis"
|
|
6487
|
-
]
|
|
6488
|
-
},
|
|
6489
|
-
"hardis:org:files:import": {
|
|
6490
|
-
"aliases": [],
|
|
6491
|
-
"args": {},
|
|
6492
|
-
"description": "Import file attachments into a Salesforce org\n\nSee article below to see how to Export them.\n\n[](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
|
|
6493
|
-
"examples": [
|
|
6494
|
-
"$ sf hardis:org:files:import"
|
|
6495
|
-
],
|
|
6496
|
-
"flags": {
|
|
6497
|
-
"json": {
|
|
6498
|
-
"description": "Format output as json.",
|
|
6499
|
-
"helpGroup": "GLOBAL",
|
|
6500
|
-
"name": "json",
|
|
6501
|
-
"allowNo": false,
|
|
6502
|
-
"type": "boolean"
|
|
6503
|
-
},
|
|
6504
|
-
"flags-dir": {
|
|
6505
|
-
"helpGroup": "GLOBAL",
|
|
6506
|
-
"name": "flags-dir",
|
|
6507
|
-
"summary": "Import flag values from a directory.",
|
|
6508
|
-
"hasDynamicHelp": false,
|
|
6509
|
-
"multiple": false,
|
|
6510
|
-
"type": "option"
|
|
6511
|
-
},
|
|
6512
|
-
"path": {
|
|
6513
|
-
"char": "p",
|
|
6514
|
-
"description": "Path to the file export project",
|
|
6515
|
-
"name": "path",
|
|
6516
6275
|
"hasDynamicHelp": false,
|
|
6517
6276
|
"multiple": false,
|
|
6518
6277
|
"type": "option"
|
|
6519
6278
|
},
|
|
6520
|
-
"overwrite": {
|
|
6521
|
-
"char": "f",
|
|
6522
|
-
"description": "Override existing files (doubles the number of API calls)",
|
|
6523
|
-
"name": "overwrite",
|
|
6524
|
-
"allowNo": false,
|
|
6525
|
-
"type": "boolean"
|
|
6526
|
-
},
|
|
6527
6279
|
"debug": {
|
|
6528
6280
|
"char": "d",
|
|
6529
6281
|
"description": "Activate debug mode (more logs)",
|
|
@@ -6531,19 +6283,6 @@
|
|
|
6531
6283
|
"allowNo": false,
|
|
6532
6284
|
"type": "boolean"
|
|
6533
6285
|
},
|
|
6534
|
-
"websocket": {
|
|
6535
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6536
|
-
"name": "websocket",
|
|
6537
|
-
"hasDynamicHelp": false,
|
|
6538
|
-
"multiple": false,
|
|
6539
|
-
"type": "option"
|
|
6540
|
-
},
|
|
6541
|
-
"skipauth": {
|
|
6542
|
-
"description": "Skip authentication check when a default username is required",
|
|
6543
|
-
"name": "skipauth",
|
|
6544
|
-
"allowNo": false,
|
|
6545
|
-
"type": "boolean"
|
|
6546
|
-
},
|
|
6547
6286
|
"target-org": {
|
|
6548
6287
|
"aliases": [
|
|
6549
6288
|
"targetusername",
|
|
@@ -6562,49 +6301,48 @@
|
|
|
6562
6301
|
},
|
|
6563
6302
|
"hasDynamicHelp": true,
|
|
6564
6303
|
"hiddenAliases": [],
|
|
6565
|
-
"id": "hardis:org:
|
|
6304
|
+
"id": "hardis:org:community:update",
|
|
6566
6305
|
"pluginAlias": "sfdx-hardis",
|
|
6567
6306
|
"pluginName": "sfdx-hardis",
|
|
6568
6307
|
"pluginType": "core",
|
|
6569
6308
|
"strict": true,
|
|
6309
|
+
"summary": "Update a community status.",
|
|
6570
6310
|
"enableJsonFlag": true,
|
|
6571
|
-
"title": "Import files",
|
|
6572
|
-
"requiresProject": false,
|
|
6573
6311
|
"isESM": true,
|
|
6574
6312
|
"relativePath": [
|
|
6575
6313
|
"lib",
|
|
6576
6314
|
"commands",
|
|
6577
6315
|
"hardis",
|
|
6578
6316
|
"org",
|
|
6579
|
-
"
|
|
6580
|
-
"
|
|
6317
|
+
"community",
|
|
6318
|
+
"update.js"
|
|
6581
6319
|
],
|
|
6582
6320
|
"aliasPermutations": [],
|
|
6583
6321
|
"permutations": [
|
|
6584
|
-
"hardis:org:
|
|
6585
|
-
"org:hardis:
|
|
6586
|
-
"org:
|
|
6587
|
-
"org:
|
|
6588
|
-
"hardis:
|
|
6589
|
-
"
|
|
6590
|
-
"
|
|
6591
|
-
"
|
|
6592
|
-
"hardis:
|
|
6593
|
-
"
|
|
6594
|
-
"
|
|
6595
|
-
"
|
|
6596
|
-
"hardis:org:
|
|
6597
|
-
"org:hardis:
|
|
6598
|
-
"org:
|
|
6599
|
-
"org:
|
|
6600
|
-
"hardis:
|
|
6601
|
-
"
|
|
6602
|
-
"
|
|
6603
|
-
"
|
|
6604
|
-
"hardis:
|
|
6605
|
-
"
|
|
6606
|
-
"
|
|
6607
|
-
"
|
|
6322
|
+
"hardis:org:community:update",
|
|
6323
|
+
"org:hardis:community:update",
|
|
6324
|
+
"org:community:hardis:update",
|
|
6325
|
+
"org:community:update:hardis",
|
|
6326
|
+
"hardis:community:org:update",
|
|
6327
|
+
"community:hardis:org:update",
|
|
6328
|
+
"community:org:hardis:update",
|
|
6329
|
+
"community:org:update:hardis",
|
|
6330
|
+
"hardis:community:update:org",
|
|
6331
|
+
"community:hardis:update:org",
|
|
6332
|
+
"community:update:hardis:org",
|
|
6333
|
+
"community:update:org:hardis",
|
|
6334
|
+
"hardis:org:update:community",
|
|
6335
|
+
"org:hardis:update:community",
|
|
6336
|
+
"org:update:hardis:community",
|
|
6337
|
+
"org:update:community:hardis",
|
|
6338
|
+
"hardis:update:org:community",
|
|
6339
|
+
"update:hardis:org:community",
|
|
6340
|
+
"update:org:hardis:community",
|
|
6341
|
+
"update:org:community:hardis",
|
|
6342
|
+
"hardis:update:community:org",
|
|
6343
|
+
"update:hardis:community:org",
|
|
6344
|
+
"update:community:hardis:org",
|
|
6345
|
+
"update:community:org:hardis"
|
|
6608
6346
|
]
|
|
6609
6347
|
},
|
|
6610
6348
|
"hardis:org:fix:listviewmine": {
|
|
@@ -7687,12 +7425,12 @@
|
|
|
7687
7425
|
"packageconfig:retrieve:org:hardis"
|
|
7688
7426
|
]
|
|
7689
7427
|
},
|
|
7690
|
-
"hardis:org:
|
|
7428
|
+
"hardis:org:files:export": {
|
|
7691
7429
|
"aliases": [],
|
|
7692
7430
|
"args": {},
|
|
7693
|
-
"description": "
|
|
7431
|
+
"description": "Export file attachments from a Salesforce org\n\nHandles:\n\n- ContentVersion\n- Attachment\n\nSee article below:\n\n[](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
|
|
7694
7432
|
"examples": [
|
|
7695
|
-
"$ sf hardis:org:
|
|
7433
|
+
"$ sf hardis:org:files:export"
|
|
7696
7434
|
],
|
|
7697
7435
|
"flags": {
|
|
7698
7436
|
"json": {
|
|
@@ -7710,26 +7448,46 @@
|
|
|
7710
7448
|
"multiple": false,
|
|
7711
7449
|
"type": "option"
|
|
7712
7450
|
},
|
|
7713
|
-
"
|
|
7714
|
-
"char": "
|
|
7715
|
-
"description": "
|
|
7716
|
-
"name": "
|
|
7717
|
-
"default": "RunLocalTests",
|
|
7451
|
+
"path": {
|
|
7452
|
+
"char": "p",
|
|
7453
|
+
"description": "Path to the file export project",
|
|
7454
|
+
"name": "path",
|
|
7718
7455
|
"hasDynamicHelp": false,
|
|
7719
7456
|
"multiple": false,
|
|
7720
|
-
"options": [
|
|
7721
|
-
"NoTestRun",
|
|
7722
|
-
"RunSpecifiedTests",
|
|
7723
|
-
"RunLocalTests",
|
|
7724
|
-
"RunAllTestsInOrg"
|
|
7725
|
-
],
|
|
7726
7457
|
"type": "option"
|
|
7727
7458
|
},
|
|
7728
|
-
"
|
|
7729
|
-
"char": "
|
|
7730
|
-
"description": "
|
|
7731
|
-
"name": "
|
|
7732
|
-
"
|
|
7459
|
+
"chunksize": {
|
|
7460
|
+
"char": "c",
|
|
7461
|
+
"description": "Number of records to add in a chunk before it is processed",
|
|
7462
|
+
"name": "chunksize",
|
|
7463
|
+
"default": 1000,
|
|
7464
|
+
"hasDynamicHelp": false,
|
|
7465
|
+
"multiple": false,
|
|
7466
|
+
"type": "option"
|
|
7467
|
+
},
|
|
7468
|
+
"polltimeout": {
|
|
7469
|
+
"char": "t",
|
|
7470
|
+
"description": "Timeout in MS for Bulk API calls",
|
|
7471
|
+
"name": "polltimeout",
|
|
7472
|
+
"default": 300000,
|
|
7473
|
+
"hasDynamicHelp": false,
|
|
7474
|
+
"multiple": false,
|
|
7475
|
+
"type": "option"
|
|
7476
|
+
},
|
|
7477
|
+
"startchunknumber": {
|
|
7478
|
+
"char": "s",
|
|
7479
|
+
"description": "Chunk number to start from",
|
|
7480
|
+
"name": "startchunknumber",
|
|
7481
|
+
"default": 0,
|
|
7482
|
+
"hasDynamicHelp": false,
|
|
7483
|
+
"multiple": false,
|
|
7484
|
+
"type": "option"
|
|
7485
|
+
},
|
|
7486
|
+
"debug": {
|
|
7487
|
+
"char": "d",
|
|
7488
|
+
"description": "Activate debug mode (more logs)",
|
|
7489
|
+
"name": "debug",
|
|
7490
|
+
"allowNo": false,
|
|
7733
7491
|
"type": "boolean"
|
|
7734
7492
|
},
|
|
7735
7493
|
"websocket": {
|
|
@@ -7763,58 +7521,57 @@
|
|
|
7763
7521
|
},
|
|
7764
7522
|
"hasDynamicHelp": true,
|
|
7765
7523
|
"hiddenAliases": [],
|
|
7766
|
-
"id": "hardis:org:
|
|
7524
|
+
"id": "hardis:org:files:export",
|
|
7767
7525
|
"pluginAlias": "sfdx-hardis",
|
|
7768
7526
|
"pluginName": "sfdx-hardis",
|
|
7769
7527
|
"pluginType": "core",
|
|
7770
7528
|
"strict": true,
|
|
7771
7529
|
"enableJsonFlag": true,
|
|
7772
|
-
"title": "
|
|
7530
|
+
"title": "Export files",
|
|
7531
|
+
"requiresProject": false,
|
|
7773
7532
|
"isESM": true,
|
|
7774
7533
|
"relativePath": [
|
|
7775
7534
|
"lib",
|
|
7776
7535
|
"commands",
|
|
7777
7536
|
"hardis",
|
|
7778
7537
|
"org",
|
|
7779
|
-
"
|
|
7780
|
-
"
|
|
7538
|
+
"files",
|
|
7539
|
+
"export.js"
|
|
7781
7540
|
],
|
|
7782
7541
|
"aliasPermutations": [],
|
|
7783
7542
|
"permutations": [
|
|
7784
|
-
"hardis:org:
|
|
7785
|
-
"org:hardis:
|
|
7786
|
-
"org:
|
|
7787
|
-
"org:
|
|
7788
|
-
"hardis:
|
|
7789
|
-
"
|
|
7790
|
-
"
|
|
7791
|
-
"
|
|
7792
|
-
"hardis:
|
|
7793
|
-
"
|
|
7794
|
-
"
|
|
7795
|
-
"
|
|
7796
|
-
"hardis:org:
|
|
7797
|
-
"org:hardis:
|
|
7798
|
-
"org:
|
|
7799
|
-
"org:
|
|
7800
|
-
"hardis:
|
|
7801
|
-
"
|
|
7802
|
-
"
|
|
7803
|
-
"
|
|
7804
|
-
"hardis:
|
|
7805
|
-
"
|
|
7806
|
-
"
|
|
7807
|
-
"
|
|
7543
|
+
"hardis:org:files:export",
|
|
7544
|
+
"org:hardis:files:export",
|
|
7545
|
+
"org:files:hardis:export",
|
|
7546
|
+
"org:files:export:hardis",
|
|
7547
|
+
"hardis:files:org:export",
|
|
7548
|
+
"files:hardis:org:export",
|
|
7549
|
+
"files:org:hardis:export",
|
|
7550
|
+
"files:org:export:hardis",
|
|
7551
|
+
"hardis:files:export:org",
|
|
7552
|
+
"files:hardis:export:org",
|
|
7553
|
+
"files:export:hardis:org",
|
|
7554
|
+
"files:export:org:hardis",
|
|
7555
|
+
"hardis:org:export:files",
|
|
7556
|
+
"org:hardis:export:files",
|
|
7557
|
+
"org:export:hardis:files",
|
|
7558
|
+
"org:export:files:hardis",
|
|
7559
|
+
"hardis:export:org:files",
|
|
7560
|
+
"export:hardis:org:files",
|
|
7561
|
+
"export:org:hardis:files",
|
|
7562
|
+
"export:org:files:hardis",
|
|
7563
|
+
"hardis:export:files:org",
|
|
7564
|
+
"export:hardis:files:org",
|
|
7565
|
+
"export:files:hardis:org",
|
|
7566
|
+
"export:files:org:hardis"
|
|
7808
7567
|
]
|
|
7809
7568
|
},
|
|
7810
|
-
"hardis:org:
|
|
7569
|
+
"hardis:org:files:import": {
|
|
7811
7570
|
"aliases": [],
|
|
7812
7571
|
"args": {},
|
|
7813
|
-
"description": "
|
|
7572
|
+
"description": "Import file attachments into a Salesforce org\n\nSee article below to see how to Export them.\n\n[](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
|
|
7814
7573
|
"examples": [
|
|
7815
|
-
"$ sf hardis:org:
|
|
7816
|
-
"$ sf hardis:org:user:activateinvalid --target-org my-user@myorg.com",
|
|
7817
|
-
"$ sf hardis:org:user:activateinvalid --profiles 'System Administrator,MyCustomProfile' --target-org my-user@myorg.com"
|
|
7574
|
+
"$ sf hardis:org:files:import"
|
|
7818
7575
|
],
|
|
7819
7576
|
"flags": {
|
|
7820
7577
|
"json": {
|
|
@@ -7832,14 +7589,21 @@
|
|
|
7832
7589
|
"multiple": false,
|
|
7833
7590
|
"type": "option"
|
|
7834
7591
|
},
|
|
7835
|
-
"
|
|
7592
|
+
"path": {
|
|
7836
7593
|
"char": "p",
|
|
7837
|
-
"description": "
|
|
7838
|
-
"name": "
|
|
7594
|
+
"description": "Path to the file export project",
|
|
7595
|
+
"name": "path",
|
|
7839
7596
|
"hasDynamicHelp": false,
|
|
7840
7597
|
"multiple": false,
|
|
7841
7598
|
"type": "option"
|
|
7842
7599
|
},
|
|
7600
|
+
"overwrite": {
|
|
7601
|
+
"char": "f",
|
|
7602
|
+
"description": "Override existing files (doubles the number of API calls)",
|
|
7603
|
+
"name": "overwrite",
|
|
7604
|
+
"allowNo": false,
|
|
7605
|
+
"type": "boolean"
|
|
7606
|
+
},
|
|
7843
7607
|
"debug": {
|
|
7844
7608
|
"char": "d",
|
|
7845
7609
|
"description": "Activate debug mode (more logs)",
|
|
@@ -7878,13 +7642,13 @@
|
|
|
7878
7642
|
},
|
|
7879
7643
|
"hasDynamicHelp": true,
|
|
7880
7644
|
"hiddenAliases": [],
|
|
7881
|
-
"id": "hardis:org:
|
|
7645
|
+
"id": "hardis:org:files:import",
|
|
7882
7646
|
"pluginAlias": "sfdx-hardis",
|
|
7883
7647
|
"pluginName": "sfdx-hardis",
|
|
7884
7648
|
"pluginType": "core",
|
|
7885
7649
|
"strict": true,
|
|
7886
7650
|
"enableJsonFlag": true,
|
|
7887
|
-
"title": "
|
|
7651
|
+
"title": "Import files",
|
|
7888
7652
|
"requiresProject": false,
|
|
7889
7653
|
"isESM": true,
|
|
7890
7654
|
"relativePath": [
|
|
@@ -7892,46 +7656,43 @@
|
|
|
7892
7656
|
"commands",
|
|
7893
7657
|
"hardis",
|
|
7894
7658
|
"org",
|
|
7895
|
-
"
|
|
7896
|
-
"
|
|
7659
|
+
"files",
|
|
7660
|
+
"import.js"
|
|
7897
7661
|
],
|
|
7898
7662
|
"aliasPermutations": [],
|
|
7899
7663
|
"permutations": [
|
|
7900
|
-
"hardis:org:
|
|
7901
|
-
"org:hardis:
|
|
7902
|
-
"org:
|
|
7903
|
-
"org:
|
|
7904
|
-
"hardis:
|
|
7905
|
-
"
|
|
7906
|
-
"
|
|
7907
|
-
"
|
|
7908
|
-
"hardis:
|
|
7909
|
-
"
|
|
7910
|
-
"
|
|
7911
|
-
"
|
|
7912
|
-
"hardis:org:
|
|
7913
|
-
"org:hardis:
|
|
7914
|
-
"org:
|
|
7915
|
-
"org:
|
|
7916
|
-
"hardis:
|
|
7917
|
-
"
|
|
7918
|
-
"
|
|
7919
|
-
"
|
|
7920
|
-
"hardis:
|
|
7921
|
-
"
|
|
7922
|
-
"
|
|
7923
|
-
"
|
|
7664
|
+
"hardis:org:files:import",
|
|
7665
|
+
"org:hardis:files:import",
|
|
7666
|
+
"org:files:hardis:import",
|
|
7667
|
+
"org:files:import:hardis",
|
|
7668
|
+
"hardis:files:org:import",
|
|
7669
|
+
"files:hardis:org:import",
|
|
7670
|
+
"files:org:hardis:import",
|
|
7671
|
+
"files:org:import:hardis",
|
|
7672
|
+
"hardis:files:import:org",
|
|
7673
|
+
"files:hardis:import:org",
|
|
7674
|
+
"files:import:hardis:org",
|
|
7675
|
+
"files:import:org:hardis",
|
|
7676
|
+
"hardis:org:import:files",
|
|
7677
|
+
"org:hardis:import:files",
|
|
7678
|
+
"org:import:hardis:files",
|
|
7679
|
+
"org:import:files:hardis",
|
|
7680
|
+
"hardis:import:org:files",
|
|
7681
|
+
"import:hardis:org:files",
|
|
7682
|
+
"import:org:hardis:files",
|
|
7683
|
+
"import:org:files:hardis",
|
|
7684
|
+
"hardis:import:files:org",
|
|
7685
|
+
"import:hardis:files:org",
|
|
7686
|
+
"import:files:hardis:org",
|
|
7687
|
+
"import:files:org:hardis"
|
|
7924
7688
|
]
|
|
7925
7689
|
},
|
|
7926
|
-
"hardis:org:
|
|
7690
|
+
"hardis:org:test:apex": {
|
|
7927
7691
|
"aliases": [],
|
|
7928
7692
|
"args": {},
|
|
7929
|
-
"description": "
|
|
7693
|
+
"description": "Run apex tests in Salesforce org\n\nIf following configuration is defined, it will fail if apex coverage target is not reached:\n\n- Env `APEX_TESTS_MIN_COVERAGE_ORG_WIDE` or `.sfdx-hardis` property `apexTestsMinCoverageOrgWide`\n- Env `APEX_TESTS_MIN_COVERAGE_ORG_WIDE` or `.sfdx-hardis` property `apexTestsMinCoverageOrgWide`\n\nYou can override env var SFDX_TEST_WAIT_MINUTES to wait more than 60 minutes.\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-apex-tests/) and can output Grafana, Slack and MsTeams Notifications.\n",
|
|
7930
7694
|
"examples": [
|
|
7931
|
-
"$ sf hardis:org:
|
|
7932
|
-
"$ sf hardis:org:user:freeze --target-org my-user@myorg.com",
|
|
7933
|
-
"$ sf hardis:org:user:freeze --includeprofiles 'Standard'",
|
|
7934
|
-
"$ sf hardis:org:user:freeze --excludeprofiles 'System Administrator,Some Other Profile'"
|
|
7695
|
+
"$ sf hardis:org:test:apex"
|
|
7935
7696
|
],
|
|
7936
7697
|
"flags": {
|
|
7937
7698
|
"json": {
|
|
@@ -7949,37 +7710,19 @@
|
|
|
7949
7710
|
"multiple": false,
|
|
7950
7711
|
"type": "option"
|
|
7951
7712
|
},
|
|
7952
|
-
"
|
|
7953
|
-
"char": "
|
|
7954
|
-
"description": "
|
|
7955
|
-
"name": "
|
|
7956
|
-
"
|
|
7957
|
-
"multiple": false,
|
|
7958
|
-
"type": "option"
|
|
7959
|
-
},
|
|
7960
|
-
"includeprofiles": {
|
|
7961
|
-
"char": "p",
|
|
7962
|
-
"description": "List of profiles that you want to freeze, separated by commas",
|
|
7963
|
-
"name": "includeprofiles",
|
|
7964
|
-
"hasDynamicHelp": false,
|
|
7965
|
-
"multiple": false,
|
|
7966
|
-
"type": "option"
|
|
7967
|
-
},
|
|
7968
|
-
"excludeprofiles": {
|
|
7969
|
-
"char": "e",
|
|
7970
|
-
"description": "List of profiles that you want to NOT freeze, separated by commas",
|
|
7971
|
-
"name": "excludeprofiles",
|
|
7972
|
-
"hasDynamicHelp": false,
|
|
7973
|
-
"multiple": false,
|
|
7974
|
-
"type": "option"
|
|
7975
|
-
},
|
|
7976
|
-
"maxuserdisplay": {
|
|
7977
|
-
"char": "m",
|
|
7978
|
-
"description": "Maximum users to display in logs",
|
|
7979
|
-
"name": "maxuserdisplay",
|
|
7980
|
-
"default": 100,
|
|
7713
|
+
"testlevel": {
|
|
7714
|
+
"char": "l",
|
|
7715
|
+
"description": "Level of tests to apply to validate deployment",
|
|
7716
|
+
"name": "testlevel",
|
|
7717
|
+
"default": "RunLocalTests",
|
|
7981
7718
|
"hasDynamicHelp": false,
|
|
7982
7719
|
"multiple": false,
|
|
7720
|
+
"options": [
|
|
7721
|
+
"NoTestRun",
|
|
7722
|
+
"RunSpecifiedTests",
|
|
7723
|
+
"RunLocalTests",
|
|
7724
|
+
"RunAllTestsInOrg"
|
|
7725
|
+
],
|
|
7983
7726
|
"type": "option"
|
|
7984
7727
|
},
|
|
7985
7728
|
"debug": {
|
|
@@ -8020,60 +7763,58 @@
|
|
|
8020
7763
|
},
|
|
8021
7764
|
"hasDynamicHelp": true,
|
|
8022
7765
|
"hiddenAliases": [],
|
|
8023
|
-
"id": "hardis:org:
|
|
7766
|
+
"id": "hardis:org:test:apex",
|
|
8024
7767
|
"pluginAlias": "sfdx-hardis",
|
|
8025
7768
|
"pluginName": "sfdx-hardis",
|
|
8026
7769
|
"pluginType": "core",
|
|
8027
7770
|
"strict": true,
|
|
8028
7771
|
"enableJsonFlag": true,
|
|
8029
|
-
"title": "
|
|
8030
|
-
"requiresProject": false,
|
|
7772
|
+
"title": "Run apex tests",
|
|
8031
7773
|
"isESM": true,
|
|
8032
7774
|
"relativePath": [
|
|
8033
7775
|
"lib",
|
|
8034
7776
|
"commands",
|
|
8035
7777
|
"hardis",
|
|
8036
7778
|
"org",
|
|
8037
|
-
"
|
|
8038
|
-
"
|
|
7779
|
+
"test",
|
|
7780
|
+
"apex.js"
|
|
8039
7781
|
],
|
|
8040
7782
|
"aliasPermutations": [],
|
|
8041
7783
|
"permutations": [
|
|
8042
|
-
"hardis:org:
|
|
8043
|
-
"org:hardis:
|
|
8044
|
-
"org:
|
|
8045
|
-
"org:
|
|
8046
|
-
"hardis:
|
|
8047
|
-
"
|
|
8048
|
-
"
|
|
8049
|
-
"
|
|
8050
|
-
"hardis:
|
|
8051
|
-
"
|
|
8052
|
-
"
|
|
8053
|
-
"
|
|
8054
|
-
"hardis:org:
|
|
8055
|
-
"org:hardis:
|
|
8056
|
-
"org:
|
|
8057
|
-
"org:
|
|
8058
|
-
"hardis:
|
|
8059
|
-
"
|
|
8060
|
-
"
|
|
8061
|
-
"
|
|
8062
|
-
"hardis:
|
|
8063
|
-
"
|
|
8064
|
-
"
|
|
8065
|
-
"
|
|
8066
|
-
]
|
|
8067
|
-
},
|
|
8068
|
-
"hardis:org:user:
|
|
8069
|
-
"aliases": [],
|
|
8070
|
-
"args": {},
|
|
8071
|
-
"description": "
|
|
8072
|
-
"examples": [
|
|
8073
|
-
"$ sf hardis:org:user:
|
|
8074
|
-
"$ sf hardis:org:user:
|
|
8075
|
-
"$ sf hardis:org:user:
|
|
8076
|
-
"$ sf hardis:org:user:unfreeze --excludeprofiles 'System Administrator,Some Other Profile'"
|
|
7784
|
+
"hardis:org:test:apex",
|
|
7785
|
+
"org:hardis:test:apex",
|
|
7786
|
+
"org:test:hardis:apex",
|
|
7787
|
+
"org:test:apex:hardis",
|
|
7788
|
+
"hardis:test:org:apex",
|
|
7789
|
+
"test:hardis:org:apex",
|
|
7790
|
+
"test:org:hardis:apex",
|
|
7791
|
+
"test:org:apex:hardis",
|
|
7792
|
+
"hardis:test:apex:org",
|
|
7793
|
+
"test:hardis:apex:org",
|
|
7794
|
+
"test:apex:hardis:org",
|
|
7795
|
+
"test:apex:org:hardis",
|
|
7796
|
+
"hardis:org:apex:test",
|
|
7797
|
+
"org:hardis:apex:test",
|
|
7798
|
+
"org:apex:hardis:test",
|
|
7799
|
+
"org:apex:test:hardis",
|
|
7800
|
+
"hardis:apex:org:test",
|
|
7801
|
+
"apex:hardis:org:test",
|
|
7802
|
+
"apex:org:hardis:test",
|
|
7803
|
+
"apex:org:test:hardis",
|
|
7804
|
+
"hardis:apex:test:org",
|
|
7805
|
+
"apex:hardis:test:org",
|
|
7806
|
+
"apex:test:hardis:org",
|
|
7807
|
+
"apex:test:org:hardis"
|
|
7808
|
+
]
|
|
7809
|
+
},
|
|
7810
|
+
"hardis:org:user:activateinvalid": {
|
|
7811
|
+
"aliases": [],
|
|
7812
|
+
"args": {},
|
|
7813
|
+
"description": "Update sandbox users so their email is valid\n\n Example: replaces `toto@company.com.dev.invalid` with `toto@company.com.dev.invalid`\n\nSee article below\n\n[](https://nicolas.vuillamy.fr/reactivate-all-the-sandbox-users-with-invalid-emails-in-3-clicks-2265af4e3a3d)\n",
|
|
7814
|
+
"examples": [
|
|
7815
|
+
"$ sf hardis:org:user:activateinvalid",
|
|
7816
|
+
"$ sf hardis:org:user:activateinvalid --target-org my-user@myorg.com",
|
|
7817
|
+
"$ sf hardis:org:user:activateinvalid --profiles 'System Administrator,MyCustomProfile' --target-org my-user@myorg.com"
|
|
8077
7818
|
],
|
|
8078
7819
|
"flags": {
|
|
8079
7820
|
"json": {
|
|
@@ -8091,35 +7832,10 @@
|
|
|
8091
7832
|
"multiple": false,
|
|
8092
7833
|
"type": "option"
|
|
8093
7834
|
},
|
|
8094
|
-
"
|
|
8095
|
-
"char": "n",
|
|
8096
|
-
"description": "Filter according to Name criteria",
|
|
8097
|
-
"name": "name",
|
|
8098
|
-
"hasDynamicHelp": false,
|
|
8099
|
-
"multiple": false,
|
|
8100
|
-
"type": "option"
|
|
8101
|
-
},
|
|
8102
|
-
"includeprofiles": {
|
|
7835
|
+
"profiles": {
|
|
8103
7836
|
"char": "p",
|
|
8104
|
-
"description": "
|
|
8105
|
-
"name": "
|
|
8106
|
-
"hasDynamicHelp": false,
|
|
8107
|
-
"multiple": false,
|
|
8108
|
-
"type": "option"
|
|
8109
|
-
},
|
|
8110
|
-
"excludeprofiles": {
|
|
8111
|
-
"char": "e",
|
|
8112
|
-
"description": "List of profiles that you want to NOT unfreeze, separated by commas",
|
|
8113
|
-
"name": "excludeprofiles",
|
|
8114
|
-
"hasDynamicHelp": false,
|
|
8115
|
-
"multiple": false,
|
|
8116
|
-
"type": "option"
|
|
8117
|
-
},
|
|
8118
|
-
"maxuserdisplay": {
|
|
8119
|
-
"char": "m",
|
|
8120
|
-
"description": "Maximum users to display in logs",
|
|
8121
|
-
"name": "maxuserdisplay",
|
|
8122
|
-
"default": 100,
|
|
7837
|
+
"description": "Comma-separated list of profiles names that you want to reactive users assigned to and with a .invalid email",
|
|
7838
|
+
"name": "profiles",
|
|
8123
7839
|
"hasDynamicHelp": false,
|
|
8124
7840
|
"multiple": false,
|
|
8125
7841
|
"type": "option"
|
|
@@ -8162,13 +7878,13 @@
|
|
|
8162
7878
|
},
|
|
8163
7879
|
"hasDynamicHelp": true,
|
|
8164
7880
|
"hiddenAliases": [],
|
|
8165
|
-
"id": "hardis:org:user:
|
|
7881
|
+
"id": "hardis:org:user:activateinvalid",
|
|
8166
7882
|
"pluginAlias": "sfdx-hardis",
|
|
8167
7883
|
"pluginName": "sfdx-hardis",
|
|
8168
7884
|
"pluginType": "core",
|
|
8169
7885
|
"strict": true,
|
|
8170
7886
|
"enableJsonFlag": true,
|
|
8171
|
-
"title": "
|
|
7887
|
+
"title": "Reactivate sandbox invalid users",
|
|
8172
7888
|
"requiresProject": false,
|
|
8173
7889
|
"isESM": true,
|
|
8174
7890
|
"relativePath": [
|
|
@@ -8177,42 +7893,45 @@
|
|
|
8177
7893
|
"hardis",
|
|
8178
7894
|
"org",
|
|
8179
7895
|
"user",
|
|
8180
|
-
"
|
|
7896
|
+
"activateinvalid.js"
|
|
8181
7897
|
],
|
|
8182
7898
|
"aliasPermutations": [],
|
|
8183
7899
|
"permutations": [
|
|
8184
|
-
"hardis:org:user:
|
|
8185
|
-
"org:hardis:user:
|
|
8186
|
-
"org:user:hardis:
|
|
8187
|
-
"org:user:
|
|
8188
|
-
"hardis:user:org:
|
|
8189
|
-
"user:hardis:org:
|
|
8190
|
-
"user:org:hardis:
|
|
8191
|
-
"user:org:
|
|
8192
|
-
"hardis:user:
|
|
8193
|
-
"user:hardis:
|
|
8194
|
-
"user:
|
|
8195
|
-
"user:
|
|
8196
|
-
"hardis:org:
|
|
8197
|
-
"org:hardis:
|
|
8198
|
-
"org:
|
|
8199
|
-
"org:
|
|
8200
|
-
"hardis:
|
|
8201
|
-
"
|
|
8202
|
-
"
|
|
8203
|
-
"
|
|
8204
|
-
"hardis:
|
|
8205
|
-
"
|
|
8206
|
-
"
|
|
8207
|
-
"
|
|
7900
|
+
"hardis:org:user:activateinvalid",
|
|
7901
|
+
"org:hardis:user:activateinvalid",
|
|
7902
|
+
"org:user:hardis:activateinvalid",
|
|
7903
|
+
"org:user:activateinvalid:hardis",
|
|
7904
|
+
"hardis:user:org:activateinvalid",
|
|
7905
|
+
"user:hardis:org:activateinvalid",
|
|
7906
|
+
"user:org:hardis:activateinvalid",
|
|
7907
|
+
"user:org:activateinvalid:hardis",
|
|
7908
|
+
"hardis:user:activateinvalid:org",
|
|
7909
|
+
"user:hardis:activateinvalid:org",
|
|
7910
|
+
"user:activateinvalid:hardis:org",
|
|
7911
|
+
"user:activateinvalid:org:hardis",
|
|
7912
|
+
"hardis:org:activateinvalid:user",
|
|
7913
|
+
"org:hardis:activateinvalid:user",
|
|
7914
|
+
"org:activateinvalid:hardis:user",
|
|
7915
|
+
"org:activateinvalid:user:hardis",
|
|
7916
|
+
"hardis:activateinvalid:org:user",
|
|
7917
|
+
"activateinvalid:hardis:org:user",
|
|
7918
|
+
"activateinvalid:org:hardis:user",
|
|
7919
|
+
"activateinvalid:org:user:hardis",
|
|
7920
|
+
"hardis:activateinvalid:user:org",
|
|
7921
|
+
"activateinvalid:hardis:user:org",
|
|
7922
|
+
"activateinvalid:user:hardis:org",
|
|
7923
|
+
"activateinvalid:user:org:hardis"
|
|
8208
7924
|
]
|
|
8209
7925
|
},
|
|
8210
|
-
"hardis:
|
|
7926
|
+
"hardis:org:user:freeze": {
|
|
8211
7927
|
"aliases": [],
|
|
8212
7928
|
"args": {},
|
|
8213
|
-
"description": "
|
|
7929
|
+
"description": "Mass freeze users in org before a maintenance or go live\n\nSee user guide in the following article\n\n<https://medium.com/@dimitrimonge/freeze-unfreeze-users-during-salesforce-deployment-8a1488bf8dd3>\n\n[](https://medium.com/@dimitrimonge/freeze-unfreeze-users-during-salesforce-deployment-8a1488bf8dd3)",
|
|
8214
7930
|
"examples": [
|
|
8215
|
-
"$ sf hardis:
|
|
7931
|
+
"$ sf hardis:org:user:freeze",
|
|
7932
|
+
"$ sf hardis:org:user:freeze --target-org my-user@myorg.com",
|
|
7933
|
+
"$ sf hardis:org:user:freeze --includeprofiles 'Standard'",
|
|
7934
|
+
"$ sf hardis:org:user:freeze --excludeprofiles 'System Administrator,Some Other Profile'"
|
|
8216
7935
|
],
|
|
8217
7936
|
"flags": {
|
|
8218
7937
|
"json": {
|
|
@@ -8230,41 +7949,43 @@
|
|
|
8230
7949
|
"multiple": false,
|
|
8231
7950
|
"type": "option"
|
|
8232
7951
|
},
|
|
8233
|
-
"
|
|
8234
|
-
"char": "
|
|
8235
|
-
"description": "
|
|
8236
|
-
"name": "
|
|
8237
|
-
"
|
|
8238
|
-
"
|
|
7952
|
+
"name": {
|
|
7953
|
+
"char": "n",
|
|
7954
|
+
"description": "Filter according to Name criteria",
|
|
7955
|
+
"name": "name",
|
|
7956
|
+
"hasDynamicHelp": false,
|
|
7957
|
+
"multiple": false,
|
|
7958
|
+
"type": "option"
|
|
8239
7959
|
},
|
|
8240
|
-
"
|
|
7960
|
+
"includeprofiles": {
|
|
8241
7961
|
"char": "p",
|
|
8242
|
-
"description": "
|
|
8243
|
-
"name": "
|
|
8244
|
-
"default": "",
|
|
7962
|
+
"description": "List of profiles that you want to freeze, separated by commas",
|
|
7963
|
+
"name": "includeprofiles",
|
|
8245
7964
|
"hasDynamicHelp": false,
|
|
8246
7965
|
"multiple": false,
|
|
8247
7966
|
"type": "option"
|
|
8248
7967
|
},
|
|
8249
|
-
"
|
|
8250
|
-
"char": "
|
|
8251
|
-
"description": "
|
|
8252
|
-
"name": "
|
|
8253
|
-
"default": "",
|
|
7968
|
+
"excludeprofiles": {
|
|
7969
|
+
"char": "e",
|
|
7970
|
+
"description": "List of profiles that you want to NOT freeze, separated by commas",
|
|
7971
|
+
"name": "excludeprofiles",
|
|
8254
7972
|
"hasDynamicHelp": false,
|
|
8255
7973
|
"multiple": false,
|
|
8256
7974
|
"type": "option"
|
|
8257
7975
|
},
|
|
8258
|
-
"
|
|
8259
|
-
"
|
|
8260
|
-
"
|
|
8261
|
-
"
|
|
8262
|
-
"
|
|
7976
|
+
"maxuserdisplay": {
|
|
7977
|
+
"char": "m",
|
|
7978
|
+
"description": "Maximum users to display in logs",
|
|
7979
|
+
"name": "maxuserdisplay",
|
|
7980
|
+
"default": 100,
|
|
7981
|
+
"hasDynamicHelp": false,
|
|
7982
|
+
"multiple": false,
|
|
7983
|
+
"type": "option"
|
|
8263
7984
|
},
|
|
8264
|
-
"
|
|
8265
|
-
"char": "
|
|
8266
|
-
"description": "
|
|
8267
|
-
"name": "
|
|
7985
|
+
"debug": {
|
|
7986
|
+
"char": "d",
|
|
7987
|
+
"description": "Activate debug mode (more logs)",
|
|
7988
|
+
"name": "debug",
|
|
8268
7989
|
"allowNo": false,
|
|
8269
7990
|
"type": "boolean"
|
|
8270
7991
|
},
|
|
@@ -8281,16 +8002,17 @@
|
|
|
8281
8002
|
"allowNo": false,
|
|
8282
8003
|
"type": "boolean"
|
|
8283
8004
|
},
|
|
8284
|
-
"target-
|
|
8005
|
+
"target-org": {
|
|
8285
8006
|
"aliases": [
|
|
8286
|
-
"
|
|
8007
|
+
"targetusername",
|
|
8008
|
+
"u"
|
|
8287
8009
|
],
|
|
8288
|
-
"char": "
|
|
8010
|
+
"char": "o",
|
|
8289
8011
|
"deprecateAliases": true,
|
|
8290
|
-
"name": "target-
|
|
8012
|
+
"name": "target-org",
|
|
8291
8013
|
"noCacheDefault": true,
|
|
8292
8014
|
"required": true,
|
|
8293
|
-
"summary": "Username or alias of the
|
|
8015
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
8294
8016
|
"hasDynamicHelp": true,
|
|
8295
8017
|
"multiple": false,
|
|
8296
8018
|
"type": "option"
|
|
@@ -8298,57 +8020,60 @@
|
|
|
8298
8020
|
},
|
|
8299
8021
|
"hasDynamicHelp": true,
|
|
8300
8022
|
"hiddenAliases": [],
|
|
8301
|
-
"id": "hardis:
|
|
8023
|
+
"id": "hardis:org:user:freeze",
|
|
8302
8024
|
"pluginAlias": "sfdx-hardis",
|
|
8303
8025
|
"pluginName": "sfdx-hardis",
|
|
8304
8026
|
"pluginType": "core",
|
|
8305
8027
|
"strict": true,
|
|
8306
8028
|
"enableJsonFlag": true,
|
|
8307
|
-
"title": "
|
|
8308
|
-
"requiresProject":
|
|
8029
|
+
"title": "Freeze user logins",
|
|
8030
|
+
"requiresProject": false,
|
|
8309
8031
|
"isESM": true,
|
|
8310
8032
|
"relativePath": [
|
|
8311
8033
|
"lib",
|
|
8312
8034
|
"commands",
|
|
8313
8035
|
"hardis",
|
|
8314
|
-
"
|
|
8315
|
-
"
|
|
8316
|
-
"
|
|
8036
|
+
"org",
|
|
8037
|
+
"user",
|
|
8038
|
+
"freeze.js"
|
|
8317
8039
|
],
|
|
8318
8040
|
"aliasPermutations": [],
|
|
8319
8041
|
"permutations": [
|
|
8320
|
-
"hardis:
|
|
8321
|
-
"
|
|
8322
|
-
"
|
|
8323
|
-
"
|
|
8324
|
-
"hardis:
|
|
8325
|
-
"
|
|
8326
|
-
"
|
|
8327
|
-
"
|
|
8328
|
-
"hardis:
|
|
8329
|
-
"
|
|
8330
|
-
"
|
|
8331
|
-
"
|
|
8332
|
-
"hardis:
|
|
8333
|
-
"
|
|
8334
|
-
"
|
|
8335
|
-
"
|
|
8336
|
-
"hardis:
|
|
8337
|
-
"
|
|
8338
|
-
"
|
|
8339
|
-
"
|
|
8340
|
-
"hardis:
|
|
8341
|
-
"
|
|
8342
|
-
"
|
|
8343
|
-
"
|
|
8042
|
+
"hardis:org:user:freeze",
|
|
8043
|
+
"org:hardis:user:freeze",
|
|
8044
|
+
"org:user:hardis:freeze",
|
|
8045
|
+
"org:user:freeze:hardis",
|
|
8046
|
+
"hardis:user:org:freeze",
|
|
8047
|
+
"user:hardis:org:freeze",
|
|
8048
|
+
"user:org:hardis:freeze",
|
|
8049
|
+
"user:org:freeze:hardis",
|
|
8050
|
+
"hardis:user:freeze:org",
|
|
8051
|
+
"user:hardis:freeze:org",
|
|
8052
|
+
"user:freeze:hardis:org",
|
|
8053
|
+
"user:freeze:org:hardis",
|
|
8054
|
+
"hardis:org:freeze:user",
|
|
8055
|
+
"org:hardis:freeze:user",
|
|
8056
|
+
"org:freeze:hardis:user",
|
|
8057
|
+
"org:freeze:user:hardis",
|
|
8058
|
+
"hardis:freeze:org:user",
|
|
8059
|
+
"freeze:hardis:org:user",
|
|
8060
|
+
"freeze:org:hardis:user",
|
|
8061
|
+
"freeze:org:user:hardis",
|
|
8062
|
+
"hardis:freeze:user:org",
|
|
8063
|
+
"freeze:hardis:user:org",
|
|
8064
|
+
"freeze:user:hardis:org",
|
|
8065
|
+
"freeze:user:org:hardis"
|
|
8344
8066
|
]
|
|
8345
8067
|
},
|
|
8346
|
-
"hardis:
|
|
8068
|
+
"hardis:org:user:unfreeze": {
|
|
8347
8069
|
"aliases": [],
|
|
8348
8070
|
"args": {},
|
|
8349
|
-
"description": "
|
|
8071
|
+
"description": "Mass unfreeze users in org after a maintenance or go live\n\nSee user guide in the following article\n\n<https://medium.com/@dimitrimonge/freeze-unfreeze-users-during-salesforce-deployment-8a1488bf8dd3>\n\n[](https://medium.com/@dimitrimonge/freeze-unfreeze-users-during-salesforce-deployment-8a1488bf8dd3)",
|
|
8350
8072
|
"examples": [
|
|
8351
|
-
"$ sf hardis:
|
|
8073
|
+
"$ sf hardis:org:user:unfreeze",
|
|
8074
|
+
"$ sf hardis:org:user:unfreeze --target-org my-user@myorg.com",
|
|
8075
|
+
"$ sf hardis:org:user:unfreeze --includeprofiles 'Standard'",
|
|
8076
|
+
"$ sf hardis:org:user:unfreeze --excludeprofiles 'System Administrator,Some Other Profile'"
|
|
8352
8077
|
],
|
|
8353
8078
|
"flags": {
|
|
8354
8079
|
"json": {
|
|
@@ -8366,6 +8091,39 @@
|
|
|
8366
8091
|
"multiple": false,
|
|
8367
8092
|
"type": "option"
|
|
8368
8093
|
},
|
|
8094
|
+
"name": {
|
|
8095
|
+
"char": "n",
|
|
8096
|
+
"description": "Filter according to Name criteria",
|
|
8097
|
+
"name": "name",
|
|
8098
|
+
"hasDynamicHelp": false,
|
|
8099
|
+
"multiple": false,
|
|
8100
|
+
"type": "option"
|
|
8101
|
+
},
|
|
8102
|
+
"includeprofiles": {
|
|
8103
|
+
"char": "p",
|
|
8104
|
+
"description": "List of profiles that you want to unfreeze, separated by commas",
|
|
8105
|
+
"name": "includeprofiles",
|
|
8106
|
+
"hasDynamicHelp": false,
|
|
8107
|
+
"multiple": false,
|
|
8108
|
+
"type": "option"
|
|
8109
|
+
},
|
|
8110
|
+
"excludeprofiles": {
|
|
8111
|
+
"char": "e",
|
|
8112
|
+
"description": "List of profiles that you want to NOT unfreeze, separated by commas",
|
|
8113
|
+
"name": "excludeprofiles",
|
|
8114
|
+
"hasDynamicHelp": false,
|
|
8115
|
+
"multiple": false,
|
|
8116
|
+
"type": "option"
|
|
8117
|
+
},
|
|
8118
|
+
"maxuserdisplay": {
|
|
8119
|
+
"char": "m",
|
|
8120
|
+
"description": "Maximum users to display in logs",
|
|
8121
|
+
"name": "maxuserdisplay",
|
|
8122
|
+
"default": 100,
|
|
8123
|
+
"hasDynamicHelp": false,
|
|
8124
|
+
"multiple": false,
|
|
8125
|
+
"type": "option"
|
|
8126
|
+
},
|
|
8369
8127
|
"debug": {
|
|
8370
8128
|
"char": "d",
|
|
8371
8129
|
"description": "Activate debug mode (more logs)",
|
|
@@ -8386,16 +8144,17 @@
|
|
|
8386
8144
|
"allowNo": false,
|
|
8387
8145
|
"type": "boolean"
|
|
8388
8146
|
},
|
|
8389
|
-
"target-
|
|
8147
|
+
"target-org": {
|
|
8390
8148
|
"aliases": [
|
|
8391
|
-
"
|
|
8149
|
+
"targetusername",
|
|
8150
|
+
"u"
|
|
8392
8151
|
],
|
|
8393
|
-
"char": "
|
|
8152
|
+
"char": "o",
|
|
8394
8153
|
"deprecateAliases": true,
|
|
8395
|
-
"name": "target-
|
|
8154
|
+
"name": "target-org",
|
|
8396
8155
|
"noCacheDefault": true,
|
|
8397
8156
|
"required": true,
|
|
8398
|
-
"summary": "Username or alias of the
|
|
8157
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
8399
8158
|
"hasDynamicHelp": true,
|
|
8400
8159
|
"multiple": false,
|
|
8401
8160
|
"type": "option"
|
|
@@ -8403,58 +8162,57 @@
|
|
|
8403
8162
|
},
|
|
8404
8163
|
"hasDynamicHelp": true,
|
|
8405
8164
|
"hiddenAliases": [],
|
|
8406
|
-
"id": "hardis:
|
|
8165
|
+
"id": "hardis:org:user:unfreeze",
|
|
8407
8166
|
"pluginAlias": "sfdx-hardis",
|
|
8408
8167
|
"pluginName": "sfdx-hardis",
|
|
8409
8168
|
"pluginType": "core",
|
|
8410
8169
|
"strict": true,
|
|
8411
8170
|
"enableJsonFlag": true,
|
|
8412
|
-
"title": "
|
|
8413
|
-
"requiresProject":
|
|
8171
|
+
"title": "Unfreeze user logins",
|
|
8172
|
+
"requiresProject": false,
|
|
8414
8173
|
"isESM": true,
|
|
8415
8174
|
"relativePath": [
|
|
8416
8175
|
"lib",
|
|
8417
8176
|
"commands",
|
|
8418
8177
|
"hardis",
|
|
8419
|
-
"
|
|
8420
|
-
"
|
|
8421
|
-
"
|
|
8178
|
+
"org",
|
|
8179
|
+
"user",
|
|
8180
|
+
"unfreeze.js"
|
|
8422
8181
|
],
|
|
8423
8182
|
"aliasPermutations": [],
|
|
8424
8183
|
"permutations": [
|
|
8425
|
-
"hardis:
|
|
8426
|
-
"
|
|
8427
|
-
"
|
|
8428
|
-
"
|
|
8429
|
-
"hardis:
|
|
8430
|
-
"
|
|
8431
|
-
"
|
|
8432
|
-
"
|
|
8433
|
-
"hardis:
|
|
8434
|
-
"
|
|
8435
|
-
"
|
|
8436
|
-
"
|
|
8437
|
-
"hardis:
|
|
8438
|
-
"
|
|
8439
|
-
"
|
|
8440
|
-
"
|
|
8441
|
-
"hardis:
|
|
8442
|
-
"
|
|
8443
|
-
"
|
|
8444
|
-
"
|
|
8445
|
-
"hardis:
|
|
8446
|
-
"
|
|
8447
|
-
"
|
|
8448
|
-
"
|
|
8184
|
+
"hardis:org:user:unfreeze",
|
|
8185
|
+
"org:hardis:user:unfreeze",
|
|
8186
|
+
"org:user:hardis:unfreeze",
|
|
8187
|
+
"org:user:unfreeze:hardis",
|
|
8188
|
+
"hardis:user:org:unfreeze",
|
|
8189
|
+
"user:hardis:org:unfreeze",
|
|
8190
|
+
"user:org:hardis:unfreeze",
|
|
8191
|
+
"user:org:unfreeze:hardis",
|
|
8192
|
+
"hardis:user:unfreeze:org",
|
|
8193
|
+
"user:hardis:unfreeze:org",
|
|
8194
|
+
"user:unfreeze:hardis:org",
|
|
8195
|
+
"user:unfreeze:org:hardis",
|
|
8196
|
+
"hardis:org:unfreeze:user",
|
|
8197
|
+
"org:hardis:unfreeze:user",
|
|
8198
|
+
"org:unfreeze:hardis:user",
|
|
8199
|
+
"org:unfreeze:user:hardis",
|
|
8200
|
+
"hardis:unfreeze:org:user",
|
|
8201
|
+
"unfreeze:hardis:org:user",
|
|
8202
|
+
"unfreeze:org:hardis:user",
|
|
8203
|
+
"unfreeze:org:user:hardis",
|
|
8204
|
+
"hardis:unfreeze:user:org",
|
|
8205
|
+
"unfreeze:hardis:user:org",
|
|
8206
|
+
"unfreeze:user:hardis:org",
|
|
8207
|
+
"unfreeze:user:org:hardis"
|
|
8449
8208
|
]
|
|
8450
8209
|
},
|
|
8451
|
-
"hardis:package:version:
|
|
8210
|
+
"hardis:package:version:create": {
|
|
8452
8211
|
"aliases": [],
|
|
8453
8212
|
"args": {},
|
|
8454
|
-
"description": "
|
|
8213
|
+
"description": "Create a new version of an unlocked package",
|
|
8455
8214
|
"examples": [
|
|
8456
|
-
"$ sf hardis:package:version:
|
|
8457
|
-
"$ sf hardis:package:version:promote --auto"
|
|
8215
|
+
"$ sf hardis:package:version:create"
|
|
8458
8216
|
],
|
|
8459
8217
|
"flags": {
|
|
8460
8218
|
"json": {
|
|
@@ -8472,13 +8230,6 @@
|
|
|
8472
8230
|
"multiple": false,
|
|
8473
8231
|
"type": "option"
|
|
8474
8232
|
},
|
|
8475
|
-
"auto": {
|
|
8476
|
-
"char": "f",
|
|
8477
|
-
"description": "Auto-detect which versions of which packages need to be promoted",
|
|
8478
|
-
"name": "auto",
|
|
8479
|
-
"allowNo": false,
|
|
8480
|
-
"type": "boolean"
|
|
8481
|
-
},
|
|
8482
8233
|
"debug": {
|
|
8483
8234
|
"char": "d",
|
|
8484
8235
|
"description": "Activate debug mode (more logs)",
|
|
@@ -8486,6 +8237,37 @@
|
|
|
8486
8237
|
"allowNo": false,
|
|
8487
8238
|
"type": "boolean"
|
|
8488
8239
|
},
|
|
8240
|
+
"package": {
|
|
8241
|
+
"char": "p",
|
|
8242
|
+
"description": "Package identifier that you want to use to generate a new package version",
|
|
8243
|
+
"name": "package",
|
|
8244
|
+
"default": "",
|
|
8245
|
+
"hasDynamicHelp": false,
|
|
8246
|
+
"multiple": false,
|
|
8247
|
+
"type": "option"
|
|
8248
|
+
},
|
|
8249
|
+
"installkey": {
|
|
8250
|
+
"char": "k",
|
|
8251
|
+
"description": "Package installation key",
|
|
8252
|
+
"name": "installkey",
|
|
8253
|
+
"default": "",
|
|
8254
|
+
"hasDynamicHelp": false,
|
|
8255
|
+
"multiple": false,
|
|
8256
|
+
"type": "option"
|
|
8257
|
+
},
|
|
8258
|
+
"deleteafter": {
|
|
8259
|
+
"description": "Delete package version after creating it",
|
|
8260
|
+
"name": "deleteafter",
|
|
8261
|
+
"allowNo": false,
|
|
8262
|
+
"type": "boolean"
|
|
8263
|
+
},
|
|
8264
|
+
"install": {
|
|
8265
|
+
"char": "i",
|
|
8266
|
+
"description": "Install package version on default org after generation",
|
|
8267
|
+
"name": "install",
|
|
8268
|
+
"allowNo": false,
|
|
8269
|
+
"type": "boolean"
|
|
8270
|
+
},
|
|
8489
8271
|
"websocket": {
|
|
8490
8272
|
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
8491
8273
|
"name": "websocket",
|
|
@@ -8516,13 +8298,13 @@
|
|
|
8516
8298
|
},
|
|
8517
8299
|
"hasDynamicHelp": true,
|
|
8518
8300
|
"hiddenAliases": [],
|
|
8519
|
-
"id": "hardis:package:version:
|
|
8301
|
+
"id": "hardis:package:version:create",
|
|
8520
8302
|
"pluginAlias": "sfdx-hardis",
|
|
8521
8303
|
"pluginName": "sfdx-hardis",
|
|
8522
8304
|
"pluginType": "core",
|
|
8523
8305
|
"strict": true,
|
|
8524
8306
|
"enableJsonFlag": true,
|
|
8525
|
-
"title": "
|
|
8307
|
+
"title": "Create a new version of a package",
|
|
8526
8308
|
"requiresProject": true,
|
|
8527
8309
|
"isESM": true,
|
|
8528
8310
|
"relativePath": [
|
|
@@ -8531,44 +8313,42 @@
|
|
|
8531
8313
|
"hardis",
|
|
8532
8314
|
"package",
|
|
8533
8315
|
"version",
|
|
8534
|
-
"
|
|
8316
|
+
"create.js"
|
|
8535
8317
|
],
|
|
8536
8318
|
"aliasPermutations": [],
|
|
8537
8319
|
"permutations": [
|
|
8538
|
-
"hardis:package:version:
|
|
8539
|
-
"package:hardis:version:
|
|
8540
|
-
"package:version:hardis:
|
|
8541
|
-
"package:version:
|
|
8542
|
-
"hardis:version:package:
|
|
8543
|
-
"version:hardis:package:
|
|
8544
|
-
"version:package:hardis:
|
|
8545
|
-
"version:package:
|
|
8546
|
-
"hardis:version:
|
|
8547
|
-
"version:hardis:
|
|
8548
|
-
"version:
|
|
8549
|
-
"version:
|
|
8550
|
-
"hardis:package:
|
|
8551
|
-
"package:hardis:
|
|
8552
|
-
"package:
|
|
8553
|
-
"package:
|
|
8554
|
-
"hardis:
|
|
8555
|
-
"
|
|
8556
|
-
"
|
|
8557
|
-
"
|
|
8558
|
-
"hardis:
|
|
8559
|
-
"
|
|
8560
|
-
"
|
|
8561
|
-
"
|
|
8320
|
+
"hardis:package:version:create",
|
|
8321
|
+
"package:hardis:version:create",
|
|
8322
|
+
"package:version:hardis:create",
|
|
8323
|
+
"package:version:create:hardis",
|
|
8324
|
+
"hardis:version:package:create",
|
|
8325
|
+
"version:hardis:package:create",
|
|
8326
|
+
"version:package:hardis:create",
|
|
8327
|
+
"version:package:create:hardis",
|
|
8328
|
+
"hardis:version:create:package",
|
|
8329
|
+
"version:hardis:create:package",
|
|
8330
|
+
"version:create:hardis:package",
|
|
8331
|
+
"version:create:package:hardis",
|
|
8332
|
+
"hardis:package:create:version",
|
|
8333
|
+
"package:hardis:create:version",
|
|
8334
|
+
"package:create:hardis:version",
|
|
8335
|
+
"package:create:version:hardis",
|
|
8336
|
+
"hardis:create:package:version",
|
|
8337
|
+
"create:hardis:package:version",
|
|
8338
|
+
"create:package:hardis:version",
|
|
8339
|
+
"create:package:version:hardis",
|
|
8340
|
+
"hardis:create:version:package",
|
|
8341
|
+
"create:hardis:version:package",
|
|
8342
|
+
"create:version:hardis:package",
|
|
8343
|
+
"create:version:package:hardis"
|
|
8562
8344
|
]
|
|
8563
8345
|
},
|
|
8564
|
-
"hardis:
|
|
8346
|
+
"hardis:package:version:list": {
|
|
8565
8347
|
"aliases": [],
|
|
8566
8348
|
"args": {},
|
|
8567
|
-
"description": "
|
|
8349
|
+
"description": "List versions of unlocked package",
|
|
8568
8350
|
"examples": [
|
|
8569
|
-
"$ sf hardis:
|
|
8570
|
-
"$ sf hardis:project:audit:apiversion --metadatatype ApexClass,ApexTrigger,ApexPage --minimumapiversion 45",
|
|
8571
|
-
"$ sf hardis:project:audit:apiversion --metadatatype ApexClass,ApexTrigger,ApexPage --minimumapiversion 45 --fix"
|
|
8351
|
+
"$ sf hardis:package:version:list"
|
|
8572
8352
|
],
|
|
8573
8353
|
"flags": {
|
|
8574
8354
|
"json": {
|
|
@@ -8586,22 +8366,6 @@
|
|
|
8586
8366
|
"multiple": false,
|
|
8587
8367
|
"type": "option"
|
|
8588
8368
|
},
|
|
8589
|
-
"minimumapiversion": {
|
|
8590
|
-
"char": "m",
|
|
8591
|
-
"description": "Minimum allowed API version",
|
|
8592
|
-
"name": "minimumapiversion",
|
|
8593
|
-
"default": 20,
|
|
8594
|
-
"hasDynamicHelp": false,
|
|
8595
|
-
"multiple": false,
|
|
8596
|
-
"type": "option"
|
|
8597
|
-
},
|
|
8598
|
-
"failiferror": {
|
|
8599
|
-
"char": "f",
|
|
8600
|
-
"description": "Fails (exit code 1) if an error is found",
|
|
8601
|
-
"name": "failiferror",
|
|
8602
|
-
"allowNo": false,
|
|
8603
|
-
"type": "boolean"
|
|
8604
|
-
},
|
|
8605
8369
|
"debug": {
|
|
8606
8370
|
"char": "d",
|
|
8607
8371
|
"description": "Activate debug mode (more logs)",
|
|
@@ -8622,23 +8386,259 @@
|
|
|
8622
8386
|
"allowNo": false,
|
|
8623
8387
|
"type": "boolean"
|
|
8624
8388
|
},
|
|
8625
|
-
"
|
|
8626
|
-
"
|
|
8627
|
-
|
|
8628
|
-
|
|
8389
|
+
"target-dev-hub": {
|
|
8390
|
+
"aliases": [
|
|
8391
|
+
"targetdevhubusername"
|
|
8392
|
+
],
|
|
8393
|
+
"char": "v",
|
|
8394
|
+
"deprecateAliases": true,
|
|
8395
|
+
"name": "target-dev-hub",
|
|
8396
|
+
"noCacheDefault": true,
|
|
8397
|
+
"required": true,
|
|
8398
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
8399
|
+
"hasDynamicHelp": true,
|
|
8629
8400
|
"multiple": false,
|
|
8630
8401
|
"type": "option"
|
|
8631
|
-
},
|
|
8632
|
-
"fix": {
|
|
8633
|
-
"description": "Fix ApiVersion on specified Metadata Types.",
|
|
8634
|
-
"name": "fix",
|
|
8635
|
-
"allowNo": false,
|
|
8636
|
-
"type": "boolean"
|
|
8637
8402
|
}
|
|
8638
8403
|
},
|
|
8639
|
-
"hasDynamicHelp":
|
|
8404
|
+
"hasDynamicHelp": true,
|
|
8640
8405
|
"hiddenAliases": [],
|
|
8641
|
-
"id": "hardis:
|
|
8406
|
+
"id": "hardis:package:version:list",
|
|
8407
|
+
"pluginAlias": "sfdx-hardis",
|
|
8408
|
+
"pluginName": "sfdx-hardis",
|
|
8409
|
+
"pluginType": "core",
|
|
8410
|
+
"strict": true,
|
|
8411
|
+
"enableJsonFlag": true,
|
|
8412
|
+
"title": "Create a new version of a package",
|
|
8413
|
+
"requiresProject": true,
|
|
8414
|
+
"isESM": true,
|
|
8415
|
+
"relativePath": [
|
|
8416
|
+
"lib",
|
|
8417
|
+
"commands",
|
|
8418
|
+
"hardis",
|
|
8419
|
+
"package",
|
|
8420
|
+
"version",
|
|
8421
|
+
"list.js"
|
|
8422
|
+
],
|
|
8423
|
+
"aliasPermutations": [],
|
|
8424
|
+
"permutations": [
|
|
8425
|
+
"hardis:package:version:list",
|
|
8426
|
+
"package:hardis:version:list",
|
|
8427
|
+
"package:version:hardis:list",
|
|
8428
|
+
"package:version:list:hardis",
|
|
8429
|
+
"hardis:version:package:list",
|
|
8430
|
+
"version:hardis:package:list",
|
|
8431
|
+
"version:package:hardis:list",
|
|
8432
|
+
"version:package:list:hardis",
|
|
8433
|
+
"hardis:version:list:package",
|
|
8434
|
+
"version:hardis:list:package",
|
|
8435
|
+
"version:list:hardis:package",
|
|
8436
|
+
"version:list:package:hardis",
|
|
8437
|
+
"hardis:package:list:version",
|
|
8438
|
+
"package:hardis:list:version",
|
|
8439
|
+
"package:list:hardis:version",
|
|
8440
|
+
"package:list:version:hardis",
|
|
8441
|
+
"hardis:list:package:version",
|
|
8442
|
+
"list:hardis:package:version",
|
|
8443
|
+
"list:package:hardis:version",
|
|
8444
|
+
"list:package:version:hardis",
|
|
8445
|
+
"hardis:list:version:package",
|
|
8446
|
+
"list:hardis:version:package",
|
|
8447
|
+
"list:version:hardis:package",
|
|
8448
|
+
"list:version:package:hardis"
|
|
8449
|
+
]
|
|
8450
|
+
},
|
|
8451
|
+
"hardis:package:version:promote": {
|
|
8452
|
+
"aliases": [],
|
|
8453
|
+
"args": {},
|
|
8454
|
+
"description": "Promote package(s) version(s): convert it from beta to released",
|
|
8455
|
+
"examples": [
|
|
8456
|
+
"$ sf hardis:package:version:promote",
|
|
8457
|
+
"$ sf hardis:package:version:promote --auto"
|
|
8458
|
+
],
|
|
8459
|
+
"flags": {
|
|
8460
|
+
"json": {
|
|
8461
|
+
"description": "Format output as json.",
|
|
8462
|
+
"helpGroup": "GLOBAL",
|
|
8463
|
+
"name": "json",
|
|
8464
|
+
"allowNo": false,
|
|
8465
|
+
"type": "boolean"
|
|
8466
|
+
},
|
|
8467
|
+
"flags-dir": {
|
|
8468
|
+
"helpGroup": "GLOBAL",
|
|
8469
|
+
"name": "flags-dir",
|
|
8470
|
+
"summary": "Import flag values from a directory.",
|
|
8471
|
+
"hasDynamicHelp": false,
|
|
8472
|
+
"multiple": false,
|
|
8473
|
+
"type": "option"
|
|
8474
|
+
},
|
|
8475
|
+
"auto": {
|
|
8476
|
+
"char": "f",
|
|
8477
|
+
"description": "Auto-detect which versions of which packages need to be promoted",
|
|
8478
|
+
"name": "auto",
|
|
8479
|
+
"allowNo": false,
|
|
8480
|
+
"type": "boolean"
|
|
8481
|
+
},
|
|
8482
|
+
"debug": {
|
|
8483
|
+
"char": "d",
|
|
8484
|
+
"description": "Activate debug mode (more logs)",
|
|
8485
|
+
"name": "debug",
|
|
8486
|
+
"allowNo": false,
|
|
8487
|
+
"type": "boolean"
|
|
8488
|
+
},
|
|
8489
|
+
"websocket": {
|
|
8490
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
8491
|
+
"name": "websocket",
|
|
8492
|
+
"hasDynamicHelp": false,
|
|
8493
|
+
"multiple": false,
|
|
8494
|
+
"type": "option"
|
|
8495
|
+
},
|
|
8496
|
+
"skipauth": {
|
|
8497
|
+
"description": "Skip authentication check when a default username is required",
|
|
8498
|
+
"name": "skipauth",
|
|
8499
|
+
"allowNo": false,
|
|
8500
|
+
"type": "boolean"
|
|
8501
|
+
},
|
|
8502
|
+
"target-dev-hub": {
|
|
8503
|
+
"aliases": [
|
|
8504
|
+
"targetdevhubusername"
|
|
8505
|
+
],
|
|
8506
|
+
"char": "v",
|
|
8507
|
+
"deprecateAliases": true,
|
|
8508
|
+
"name": "target-dev-hub",
|
|
8509
|
+
"noCacheDefault": true,
|
|
8510
|
+
"required": true,
|
|
8511
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
8512
|
+
"hasDynamicHelp": true,
|
|
8513
|
+
"multiple": false,
|
|
8514
|
+
"type": "option"
|
|
8515
|
+
}
|
|
8516
|
+
},
|
|
8517
|
+
"hasDynamicHelp": true,
|
|
8518
|
+
"hiddenAliases": [],
|
|
8519
|
+
"id": "hardis:package:version:promote",
|
|
8520
|
+
"pluginAlias": "sfdx-hardis",
|
|
8521
|
+
"pluginName": "sfdx-hardis",
|
|
8522
|
+
"pluginType": "core",
|
|
8523
|
+
"strict": true,
|
|
8524
|
+
"enableJsonFlag": true,
|
|
8525
|
+
"title": "Promote new versions of package(s)",
|
|
8526
|
+
"requiresProject": true,
|
|
8527
|
+
"isESM": true,
|
|
8528
|
+
"relativePath": [
|
|
8529
|
+
"lib",
|
|
8530
|
+
"commands",
|
|
8531
|
+
"hardis",
|
|
8532
|
+
"package",
|
|
8533
|
+
"version",
|
|
8534
|
+
"promote.js"
|
|
8535
|
+
],
|
|
8536
|
+
"aliasPermutations": [],
|
|
8537
|
+
"permutations": [
|
|
8538
|
+
"hardis:package:version:promote",
|
|
8539
|
+
"package:hardis:version:promote",
|
|
8540
|
+
"package:version:hardis:promote",
|
|
8541
|
+
"package:version:promote:hardis",
|
|
8542
|
+
"hardis:version:package:promote",
|
|
8543
|
+
"version:hardis:package:promote",
|
|
8544
|
+
"version:package:hardis:promote",
|
|
8545
|
+
"version:package:promote:hardis",
|
|
8546
|
+
"hardis:version:promote:package",
|
|
8547
|
+
"version:hardis:promote:package",
|
|
8548
|
+
"version:promote:hardis:package",
|
|
8549
|
+
"version:promote:package:hardis",
|
|
8550
|
+
"hardis:package:promote:version",
|
|
8551
|
+
"package:hardis:promote:version",
|
|
8552
|
+
"package:promote:hardis:version",
|
|
8553
|
+
"package:promote:version:hardis",
|
|
8554
|
+
"hardis:promote:package:version",
|
|
8555
|
+
"promote:hardis:package:version",
|
|
8556
|
+
"promote:package:hardis:version",
|
|
8557
|
+
"promote:package:version:hardis",
|
|
8558
|
+
"hardis:promote:version:package",
|
|
8559
|
+
"promote:hardis:version:package",
|
|
8560
|
+
"promote:version:hardis:package",
|
|
8561
|
+
"promote:version:package:hardis"
|
|
8562
|
+
]
|
|
8563
|
+
},
|
|
8564
|
+
"hardis:project:audit:apiversion": {
|
|
8565
|
+
"aliases": [],
|
|
8566
|
+
"args": {},
|
|
8567
|
+
"description": "This command detects metadatas whose apiVersion is lower than parameter --minimumapiversion\n\n It can also fix the apiVersions with the latest one, if parameter --fix is sent\n\n Example to handle [ApexClass / Trigger & ApexPage mandatory version upgrade](https://help.salesforce.com/s/articleView?id=sf.admin_locales_update_api.htm&type=5) :\n \n `sf hardis:project:audit:apiversion --metadatatype ApexClass,ApexTrigger,ApexPage --minimumapiversion 45.0 --fix`\n ",
|
|
8568
|
+
"examples": [
|
|
8569
|
+
"$ sf hardis:project:audit:apiversion",
|
|
8570
|
+
"$ sf hardis:project:audit:apiversion --metadatatype ApexClass,ApexTrigger,ApexPage --minimumapiversion 45",
|
|
8571
|
+
"$ sf hardis:project:audit:apiversion --metadatatype ApexClass,ApexTrigger,ApexPage --minimumapiversion 45 --fix"
|
|
8572
|
+
],
|
|
8573
|
+
"flags": {
|
|
8574
|
+
"json": {
|
|
8575
|
+
"description": "Format output as json.",
|
|
8576
|
+
"helpGroup": "GLOBAL",
|
|
8577
|
+
"name": "json",
|
|
8578
|
+
"allowNo": false,
|
|
8579
|
+
"type": "boolean"
|
|
8580
|
+
},
|
|
8581
|
+
"flags-dir": {
|
|
8582
|
+
"helpGroup": "GLOBAL",
|
|
8583
|
+
"name": "flags-dir",
|
|
8584
|
+
"summary": "Import flag values from a directory.",
|
|
8585
|
+
"hasDynamicHelp": false,
|
|
8586
|
+
"multiple": false,
|
|
8587
|
+
"type": "option"
|
|
8588
|
+
},
|
|
8589
|
+
"minimumapiversion": {
|
|
8590
|
+
"char": "m",
|
|
8591
|
+
"description": "Minimum allowed API version",
|
|
8592
|
+
"name": "minimumapiversion",
|
|
8593
|
+
"default": 20,
|
|
8594
|
+
"hasDynamicHelp": false,
|
|
8595
|
+
"multiple": false,
|
|
8596
|
+
"type": "option"
|
|
8597
|
+
},
|
|
8598
|
+
"failiferror": {
|
|
8599
|
+
"char": "f",
|
|
8600
|
+
"description": "Fails (exit code 1) if an error is found",
|
|
8601
|
+
"name": "failiferror",
|
|
8602
|
+
"allowNo": false,
|
|
8603
|
+
"type": "boolean"
|
|
8604
|
+
},
|
|
8605
|
+
"debug": {
|
|
8606
|
+
"char": "d",
|
|
8607
|
+
"description": "Activate debug mode (more logs)",
|
|
8608
|
+
"name": "debug",
|
|
8609
|
+
"allowNo": false,
|
|
8610
|
+
"type": "boolean"
|
|
8611
|
+
},
|
|
8612
|
+
"websocket": {
|
|
8613
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
8614
|
+
"name": "websocket",
|
|
8615
|
+
"hasDynamicHelp": false,
|
|
8616
|
+
"multiple": false,
|
|
8617
|
+
"type": "option"
|
|
8618
|
+
},
|
|
8619
|
+
"skipauth": {
|
|
8620
|
+
"description": "Skip authentication check when a default username is required",
|
|
8621
|
+
"name": "skipauth",
|
|
8622
|
+
"allowNo": false,
|
|
8623
|
+
"type": "boolean"
|
|
8624
|
+
},
|
|
8625
|
+
"metadatatype": {
|
|
8626
|
+
"description": "Metadata Types to fix. Comma separated. Supported Metadata types: ApexClass, ApexTrigger, ApexPage",
|
|
8627
|
+
"name": "metadatatype",
|
|
8628
|
+
"hasDynamicHelp": false,
|
|
8629
|
+
"multiple": false,
|
|
8630
|
+
"type": "option"
|
|
8631
|
+
},
|
|
8632
|
+
"fix": {
|
|
8633
|
+
"description": "Fix ApiVersion on specified Metadata Types.",
|
|
8634
|
+
"name": "fix",
|
|
8635
|
+
"allowNo": false,
|
|
8636
|
+
"type": "boolean"
|
|
8637
|
+
}
|
|
8638
|
+
},
|
|
8639
|
+
"hasDynamicHelp": false,
|
|
8640
|
+
"hiddenAliases": [],
|
|
8641
|
+
"id": "hardis:project:audit:apiversion",
|
|
8642
8642
|
"pluginAlias": "sfdx-hardis",
|
|
8643
8643
|
"pluginName": "sfdx-hardis",
|
|
8644
8644
|
"pluginType": "core",
|
|
@@ -13076,12 +13076,12 @@
|
|
|
13076
13076
|
"view:pool:scratch:hardis"
|
|
13077
13077
|
]
|
|
13078
13078
|
},
|
|
13079
|
-
"hardis:
|
|
13079
|
+
"hardis:project:deploy:sources:metadata": {
|
|
13080
13080
|
"aliases": [],
|
|
13081
13081
|
"args": {},
|
|
13082
|
-
"description": "
|
|
13082
|
+
"description": "Deploy metadatas to source org",
|
|
13083
13083
|
"examples": [
|
|
13084
|
-
"$ sf hardis:
|
|
13084
|
+
"$ sf hardis:project:deploy:sources:metadata"
|
|
13085
13085
|
],
|
|
13086
13086
|
"flags": {
|
|
13087
13087
|
"json": {
|
|
@@ -13099,256 +13099,58 @@
|
|
|
13099
13099
|
"multiple": false,
|
|
13100
13100
|
"type": "option"
|
|
13101
13101
|
},
|
|
13102
|
-
"
|
|
13103
|
-
"char": "
|
|
13104
|
-
"description": "
|
|
13105
|
-
"name": "
|
|
13102
|
+
"check": {
|
|
13103
|
+
"char": "c",
|
|
13104
|
+
"description": "Only checks the deployment, there is no impact on target org",
|
|
13105
|
+
"name": "check",
|
|
13106
13106
|
"allowNo": false,
|
|
13107
13107
|
"type": "boolean"
|
|
13108
13108
|
},
|
|
13109
|
-
"
|
|
13110
|
-
"
|
|
13111
|
-
"
|
|
13112
|
-
"
|
|
13113
|
-
"multiple": false,
|
|
13114
|
-
"type": "option"
|
|
13115
|
-
},
|
|
13116
|
-
"skipauth": {
|
|
13117
|
-
"description": "Skip authentication check when a default username is required",
|
|
13118
|
-
"name": "skipauth",
|
|
13119
|
-
"allowNo": false,
|
|
13120
|
-
"type": "boolean"
|
|
13121
|
-
},
|
|
13122
|
-
"target-org": {
|
|
13123
|
-
"aliases": [
|
|
13124
|
-
"targetusername",
|
|
13125
|
-
"u"
|
|
13126
|
-
],
|
|
13127
|
-
"char": "o",
|
|
13128
|
-
"deprecateAliases": true,
|
|
13129
|
-
"name": "target-org",
|
|
13130
|
-
"noCacheDefault": true,
|
|
13131
|
-
"required": true,
|
|
13132
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
13133
|
-
"hasDynamicHelp": true,
|
|
13134
|
-
"multiple": false,
|
|
13135
|
-
"type": "option"
|
|
13136
|
-
}
|
|
13137
|
-
},
|
|
13138
|
-
"hasDynamicHelp": true,
|
|
13139
|
-
"hiddenAliases": [],
|
|
13140
|
-
"id": "hardis:org:retrieve:sources:analytics",
|
|
13141
|
-
"pluginAlias": "sfdx-hardis",
|
|
13142
|
-
"pluginName": "sfdx-hardis",
|
|
13143
|
-
"pluginType": "core",
|
|
13144
|
-
"strict": true,
|
|
13145
|
-
"enableJsonFlag": true,
|
|
13146
|
-
"title": "Retrieve CRM Analytics configuration from an org",
|
|
13147
|
-
"requiresProject": true,
|
|
13148
|
-
"isESM": true,
|
|
13149
|
-
"relativePath": [
|
|
13150
|
-
"lib",
|
|
13151
|
-
"commands",
|
|
13152
|
-
"hardis",
|
|
13153
|
-
"org",
|
|
13154
|
-
"retrieve",
|
|
13155
|
-
"sources",
|
|
13156
|
-
"analytics.js"
|
|
13157
|
-
],
|
|
13158
|
-
"aliasPermutations": [],
|
|
13159
|
-
"permutations": [
|
|
13160
|
-
"hardis:org:retrieve:sources:analytics",
|
|
13161
|
-
"org:hardis:retrieve:sources:analytics",
|
|
13162
|
-
"org:retrieve:hardis:sources:analytics",
|
|
13163
|
-
"org:retrieve:sources:hardis:analytics",
|
|
13164
|
-
"org:retrieve:sources:analytics:hardis",
|
|
13165
|
-
"hardis:retrieve:org:sources:analytics",
|
|
13166
|
-
"retrieve:hardis:org:sources:analytics",
|
|
13167
|
-
"retrieve:org:hardis:sources:analytics",
|
|
13168
|
-
"retrieve:org:sources:hardis:analytics",
|
|
13169
|
-
"retrieve:org:sources:analytics:hardis",
|
|
13170
|
-
"hardis:retrieve:sources:org:analytics",
|
|
13171
|
-
"retrieve:hardis:sources:org:analytics",
|
|
13172
|
-
"retrieve:sources:hardis:org:analytics",
|
|
13173
|
-
"retrieve:sources:org:hardis:analytics",
|
|
13174
|
-
"retrieve:sources:org:analytics:hardis",
|
|
13175
|
-
"hardis:retrieve:sources:analytics:org",
|
|
13176
|
-
"retrieve:hardis:sources:analytics:org",
|
|
13177
|
-
"retrieve:sources:hardis:analytics:org",
|
|
13178
|
-
"retrieve:sources:analytics:hardis:org",
|
|
13179
|
-
"retrieve:sources:analytics:org:hardis",
|
|
13180
|
-
"hardis:org:sources:retrieve:analytics",
|
|
13181
|
-
"org:hardis:sources:retrieve:analytics",
|
|
13182
|
-
"org:sources:hardis:retrieve:analytics",
|
|
13183
|
-
"org:sources:retrieve:hardis:analytics",
|
|
13184
|
-
"org:sources:retrieve:analytics:hardis",
|
|
13185
|
-
"hardis:sources:org:retrieve:analytics",
|
|
13186
|
-
"sources:hardis:org:retrieve:analytics",
|
|
13187
|
-
"sources:org:hardis:retrieve:analytics",
|
|
13188
|
-
"sources:org:retrieve:hardis:analytics",
|
|
13189
|
-
"sources:org:retrieve:analytics:hardis",
|
|
13190
|
-
"hardis:sources:retrieve:org:analytics",
|
|
13191
|
-
"sources:hardis:retrieve:org:analytics",
|
|
13192
|
-
"sources:retrieve:hardis:org:analytics",
|
|
13193
|
-
"sources:retrieve:org:hardis:analytics",
|
|
13194
|
-
"sources:retrieve:org:analytics:hardis",
|
|
13195
|
-
"hardis:sources:retrieve:analytics:org",
|
|
13196
|
-
"sources:hardis:retrieve:analytics:org",
|
|
13197
|
-
"sources:retrieve:hardis:analytics:org",
|
|
13198
|
-
"sources:retrieve:analytics:hardis:org",
|
|
13199
|
-
"sources:retrieve:analytics:org:hardis",
|
|
13200
|
-
"hardis:org:sources:analytics:retrieve",
|
|
13201
|
-
"org:hardis:sources:analytics:retrieve",
|
|
13202
|
-
"org:sources:hardis:analytics:retrieve",
|
|
13203
|
-
"org:sources:analytics:hardis:retrieve",
|
|
13204
|
-
"org:sources:analytics:retrieve:hardis",
|
|
13205
|
-
"hardis:sources:org:analytics:retrieve",
|
|
13206
|
-
"sources:hardis:org:analytics:retrieve",
|
|
13207
|
-
"sources:org:hardis:analytics:retrieve",
|
|
13208
|
-
"sources:org:analytics:hardis:retrieve",
|
|
13209
|
-
"sources:org:analytics:retrieve:hardis",
|
|
13210
|
-
"hardis:sources:analytics:org:retrieve",
|
|
13211
|
-
"sources:hardis:analytics:org:retrieve",
|
|
13212
|
-
"sources:analytics:hardis:org:retrieve",
|
|
13213
|
-
"sources:analytics:org:hardis:retrieve",
|
|
13214
|
-
"sources:analytics:org:retrieve:hardis",
|
|
13215
|
-
"hardis:sources:analytics:retrieve:org",
|
|
13216
|
-
"sources:hardis:analytics:retrieve:org",
|
|
13217
|
-
"sources:analytics:hardis:retrieve:org",
|
|
13218
|
-
"sources:analytics:retrieve:hardis:org",
|
|
13219
|
-
"sources:analytics:retrieve:org:hardis",
|
|
13220
|
-
"hardis:org:retrieve:analytics:sources",
|
|
13221
|
-
"org:hardis:retrieve:analytics:sources",
|
|
13222
|
-
"org:retrieve:hardis:analytics:sources",
|
|
13223
|
-
"org:retrieve:analytics:hardis:sources",
|
|
13224
|
-
"org:retrieve:analytics:sources:hardis",
|
|
13225
|
-
"hardis:retrieve:org:analytics:sources",
|
|
13226
|
-
"retrieve:hardis:org:analytics:sources",
|
|
13227
|
-
"retrieve:org:hardis:analytics:sources",
|
|
13228
|
-
"retrieve:org:analytics:hardis:sources",
|
|
13229
|
-
"retrieve:org:analytics:sources:hardis",
|
|
13230
|
-
"hardis:retrieve:analytics:org:sources",
|
|
13231
|
-
"retrieve:hardis:analytics:org:sources",
|
|
13232
|
-
"retrieve:analytics:hardis:org:sources",
|
|
13233
|
-
"retrieve:analytics:org:hardis:sources",
|
|
13234
|
-
"retrieve:analytics:org:sources:hardis",
|
|
13235
|
-
"hardis:retrieve:analytics:sources:org",
|
|
13236
|
-
"retrieve:hardis:analytics:sources:org",
|
|
13237
|
-
"retrieve:analytics:hardis:sources:org",
|
|
13238
|
-
"retrieve:analytics:sources:hardis:org",
|
|
13239
|
-
"retrieve:analytics:sources:org:hardis",
|
|
13240
|
-
"hardis:org:analytics:retrieve:sources",
|
|
13241
|
-
"org:hardis:analytics:retrieve:sources",
|
|
13242
|
-
"org:analytics:hardis:retrieve:sources",
|
|
13243
|
-
"org:analytics:retrieve:hardis:sources",
|
|
13244
|
-
"org:analytics:retrieve:sources:hardis",
|
|
13245
|
-
"hardis:analytics:org:retrieve:sources",
|
|
13246
|
-
"analytics:hardis:org:retrieve:sources",
|
|
13247
|
-
"analytics:org:hardis:retrieve:sources",
|
|
13248
|
-
"analytics:org:retrieve:hardis:sources",
|
|
13249
|
-
"analytics:org:retrieve:sources:hardis",
|
|
13250
|
-
"hardis:analytics:retrieve:org:sources",
|
|
13251
|
-
"analytics:hardis:retrieve:org:sources",
|
|
13252
|
-
"analytics:retrieve:hardis:org:sources",
|
|
13253
|
-
"analytics:retrieve:org:hardis:sources",
|
|
13254
|
-
"analytics:retrieve:org:sources:hardis",
|
|
13255
|
-
"hardis:analytics:retrieve:sources:org",
|
|
13256
|
-
"analytics:hardis:retrieve:sources:org",
|
|
13257
|
-
"analytics:retrieve:hardis:sources:org",
|
|
13258
|
-
"analytics:retrieve:sources:hardis:org",
|
|
13259
|
-
"analytics:retrieve:sources:org:hardis",
|
|
13260
|
-
"hardis:org:analytics:sources:retrieve",
|
|
13261
|
-
"org:hardis:analytics:sources:retrieve",
|
|
13262
|
-
"org:analytics:hardis:sources:retrieve",
|
|
13263
|
-
"org:analytics:sources:hardis:retrieve",
|
|
13264
|
-
"org:analytics:sources:retrieve:hardis",
|
|
13265
|
-
"hardis:analytics:org:sources:retrieve",
|
|
13266
|
-
"analytics:hardis:org:sources:retrieve",
|
|
13267
|
-
"analytics:org:hardis:sources:retrieve",
|
|
13268
|
-
"analytics:org:sources:hardis:retrieve",
|
|
13269
|
-
"analytics:org:sources:retrieve:hardis",
|
|
13270
|
-
"hardis:analytics:sources:org:retrieve",
|
|
13271
|
-
"analytics:hardis:sources:org:retrieve",
|
|
13272
|
-
"analytics:sources:hardis:org:retrieve",
|
|
13273
|
-
"analytics:sources:org:hardis:retrieve",
|
|
13274
|
-
"analytics:sources:org:retrieve:hardis",
|
|
13275
|
-
"hardis:analytics:sources:retrieve:org",
|
|
13276
|
-
"analytics:hardis:sources:retrieve:org",
|
|
13277
|
-
"analytics:sources:hardis:retrieve:org",
|
|
13278
|
-
"analytics:sources:retrieve:hardis:org",
|
|
13279
|
-
"analytics:sources:retrieve:org:hardis"
|
|
13280
|
-
]
|
|
13281
|
-
},
|
|
13282
|
-
"hardis:org:retrieve:sources:dx": {
|
|
13283
|
-
"aliases": [],
|
|
13284
|
-
"args": {},
|
|
13285
|
-
"description": "Retrieve Salesforce DX project from org",
|
|
13286
|
-
"examples": [
|
|
13287
|
-
"$ sf hardis:org:retrieve:sources:dx"
|
|
13288
|
-
],
|
|
13289
|
-
"flags": {
|
|
13290
|
-
"json": {
|
|
13291
|
-
"description": "Format output as json.",
|
|
13292
|
-
"helpGroup": "GLOBAL",
|
|
13293
|
-
"name": "json",
|
|
13294
|
-
"allowNo": false,
|
|
13295
|
-
"type": "boolean"
|
|
13296
|
-
},
|
|
13297
|
-
"flags-dir": {
|
|
13298
|
-
"helpGroup": "GLOBAL",
|
|
13299
|
-
"name": "flags-dir",
|
|
13300
|
-
"summary": "Import flag values from a directory.",
|
|
13301
|
-
"hasDynamicHelp": false,
|
|
13302
|
-
"multiple": false,
|
|
13303
|
-
"type": "option"
|
|
13304
|
-
},
|
|
13305
|
-
"folder": {
|
|
13306
|
-
"char": "f",
|
|
13307
|
-
"description": "Folder",
|
|
13308
|
-
"name": "folder",
|
|
13109
|
+
"deploydir": {
|
|
13110
|
+
"char": "x",
|
|
13111
|
+
"description": "Deploy directory",
|
|
13112
|
+
"name": "deploydir",
|
|
13309
13113
|
"default": ".",
|
|
13310
13114
|
"hasDynamicHelp": false,
|
|
13311
13115
|
"multiple": false,
|
|
13312
13116
|
"type": "option"
|
|
13313
13117
|
},
|
|
13314
|
-
"
|
|
13315
|
-
"char": "
|
|
13316
|
-
"description": "
|
|
13317
|
-
"name": "
|
|
13318
|
-
"default": "./tmp",
|
|
13118
|
+
"packagexml": {
|
|
13119
|
+
"char": "p",
|
|
13120
|
+
"description": "Path to package.xml file to deploy",
|
|
13121
|
+
"name": "packagexml",
|
|
13319
13122
|
"hasDynamicHelp": false,
|
|
13320
13123
|
"multiple": false,
|
|
13321
13124
|
"type": "option"
|
|
13322
13125
|
},
|
|
13323
|
-
"
|
|
13324
|
-
"char": "
|
|
13325
|
-
"description": "
|
|
13326
|
-
"name": "
|
|
13327
|
-
"
|
|
13328
|
-
"
|
|
13329
|
-
"type": "option"
|
|
13126
|
+
"filter": {
|
|
13127
|
+
"char": "f",
|
|
13128
|
+
"description": "Filter metadatas before deploying",
|
|
13129
|
+
"name": "filter",
|
|
13130
|
+
"allowNo": false,
|
|
13131
|
+
"type": "boolean"
|
|
13330
13132
|
},
|
|
13331
|
-
"
|
|
13332
|
-
"char": "
|
|
13333
|
-
"description": "
|
|
13334
|
-
"name": "
|
|
13133
|
+
"destructivepackagexml": {
|
|
13134
|
+
"char": "k",
|
|
13135
|
+
"description": "Path to destructiveChanges.xml file to deploy",
|
|
13136
|
+
"name": "destructivepackagexml",
|
|
13335
13137
|
"hasDynamicHelp": false,
|
|
13336
13138
|
"multiple": false,
|
|
13337
13139
|
"type": "option"
|
|
13338
13140
|
},
|
|
13339
|
-
"
|
|
13340
|
-
"char": "
|
|
13341
|
-
"description": "
|
|
13342
|
-
"name": "
|
|
13343
|
-
"
|
|
13344
|
-
"type": "boolean"
|
|
13345
|
-
},
|
|
13346
|
-
"instanceurl": {
|
|
13347
|
-
"char": "r",
|
|
13348
|
-
"description": "URL of org instance",
|
|
13349
|
-
"name": "instanceurl",
|
|
13141
|
+
"testlevel": {
|
|
13142
|
+
"char": "l",
|
|
13143
|
+
"description": "Level of tests to apply to validate deployment",
|
|
13144
|
+
"name": "testlevel",
|
|
13145
|
+
"default": "RunLocalTests",
|
|
13350
13146
|
"hasDynamicHelp": false,
|
|
13351
13147
|
"multiple": false,
|
|
13148
|
+
"options": [
|
|
13149
|
+
"NoTestRun",
|
|
13150
|
+
"RunSpecifiedTests",
|
|
13151
|
+
"RunLocalTests",
|
|
13152
|
+
"RunAllTestsInOrg"
|
|
13153
|
+
],
|
|
13352
13154
|
"type": "option"
|
|
13353
13155
|
},
|
|
13354
13156
|
"debug": {
|
|
@@ -13389,154 +13191,157 @@
|
|
|
13389
13191
|
},
|
|
13390
13192
|
"hasDynamicHelp": true,
|
|
13391
13193
|
"hiddenAliases": [],
|
|
13392
|
-
"id": "hardis:
|
|
13194
|
+
"id": "hardis:project:deploy:sources:metadata",
|
|
13393
13195
|
"pluginAlias": "sfdx-hardis",
|
|
13394
13196
|
"pluginName": "sfdx-hardis",
|
|
13395
13197
|
"pluginType": "core",
|
|
13396
13198
|
"strict": true,
|
|
13397
13199
|
"enableJsonFlag": true,
|
|
13398
|
-
"title": "
|
|
13200
|
+
"title": "Deploy metadata sources to org",
|
|
13399
13201
|
"requiresProject": false,
|
|
13400
|
-
"
|
|
13401
|
-
|
|
13202
|
+
"requiresSfdxPlugins": [
|
|
13203
|
+
"sfdx-essentials"
|
|
13204
|
+
],
|
|
13205
|
+
"isESM": true,
|
|
13206
|
+
"relativePath": [
|
|
13402
13207
|
"lib",
|
|
13403
13208
|
"commands",
|
|
13404
13209
|
"hardis",
|
|
13405
|
-
"
|
|
13406
|
-
"
|
|
13210
|
+
"project",
|
|
13211
|
+
"deploy",
|
|
13407
13212
|
"sources",
|
|
13408
|
-
"
|
|
13213
|
+
"metadata.js"
|
|
13409
13214
|
],
|
|
13410
13215
|
"aliasPermutations": [],
|
|
13411
13216
|
"permutations": [
|
|
13412
|
-
"hardis:
|
|
13413
|
-
"
|
|
13414
|
-
"
|
|
13415
|
-
"
|
|
13416
|
-
"
|
|
13417
|
-
"hardis:
|
|
13418
|
-
"
|
|
13419
|
-
"
|
|
13420
|
-
"
|
|
13421
|
-
"
|
|
13422
|
-
"hardis:
|
|
13423
|
-
"
|
|
13424
|
-
"
|
|
13425
|
-
"
|
|
13426
|
-
"
|
|
13427
|
-
"hardis:
|
|
13428
|
-
"
|
|
13429
|
-
"
|
|
13430
|
-
"
|
|
13431
|
-
"
|
|
13432
|
-
"hardis:
|
|
13433
|
-
"
|
|
13434
|
-
"
|
|
13435
|
-
"
|
|
13436
|
-
"
|
|
13437
|
-
"hardis:sources:
|
|
13438
|
-
"sources:hardis:
|
|
13439
|
-
"sources:
|
|
13440
|
-
"sources:
|
|
13441
|
-
"sources:
|
|
13442
|
-
"hardis:sources:
|
|
13443
|
-
"sources:hardis:
|
|
13444
|
-
"sources:
|
|
13445
|
-
"sources:
|
|
13446
|
-
"sources:
|
|
13447
|
-
"hardis:sources:
|
|
13448
|
-
"sources:hardis:
|
|
13449
|
-
"sources:
|
|
13450
|
-
"sources:
|
|
13451
|
-
"sources:
|
|
13452
|
-
"hardis:
|
|
13453
|
-
"
|
|
13454
|
-
"
|
|
13455
|
-
"
|
|
13456
|
-
"
|
|
13457
|
-
"hardis:sources:
|
|
13458
|
-
"sources:hardis:
|
|
13459
|
-
"sources:
|
|
13460
|
-
"sources:
|
|
13461
|
-
"sources:
|
|
13462
|
-
"hardis:sources:
|
|
13463
|
-
"sources:hardis:
|
|
13464
|
-
"sources:
|
|
13465
|
-
"sources:
|
|
13466
|
-
"sources:
|
|
13467
|
-
"hardis:sources:
|
|
13468
|
-
"sources:hardis:
|
|
13469
|
-
"sources:
|
|
13470
|
-
"sources:
|
|
13471
|
-
"sources:
|
|
13472
|
-
"hardis:
|
|
13473
|
-
"
|
|
13474
|
-
"
|
|
13475
|
-
"
|
|
13476
|
-
"
|
|
13477
|
-
"hardis:
|
|
13478
|
-
"
|
|
13479
|
-
"
|
|
13480
|
-
"
|
|
13481
|
-
"
|
|
13482
|
-
"hardis:
|
|
13483
|
-
"
|
|
13484
|
-
"
|
|
13485
|
-
"
|
|
13486
|
-
"
|
|
13487
|
-
"hardis:
|
|
13488
|
-
"
|
|
13489
|
-
"
|
|
13490
|
-
"
|
|
13491
|
-
"
|
|
13492
|
-
"hardis:
|
|
13493
|
-
"
|
|
13494
|
-
"
|
|
13495
|
-
"
|
|
13496
|
-
"
|
|
13497
|
-
"hardis:
|
|
13498
|
-
"
|
|
13499
|
-
"
|
|
13500
|
-
"
|
|
13501
|
-
"
|
|
13502
|
-
"hardis:
|
|
13503
|
-
"
|
|
13504
|
-
"
|
|
13505
|
-
"
|
|
13506
|
-
"
|
|
13507
|
-
"hardis:
|
|
13508
|
-
"
|
|
13509
|
-
"
|
|
13510
|
-
"
|
|
13511
|
-
"
|
|
13512
|
-
"hardis:
|
|
13513
|
-
"
|
|
13514
|
-
"
|
|
13515
|
-
"
|
|
13516
|
-
"
|
|
13517
|
-
"hardis:
|
|
13518
|
-
"
|
|
13519
|
-
"
|
|
13520
|
-
"
|
|
13521
|
-
"
|
|
13522
|
-
"hardis:
|
|
13523
|
-
"
|
|
13524
|
-
"
|
|
13525
|
-
"
|
|
13526
|
-
"
|
|
13527
|
-
"hardis:
|
|
13528
|
-
"
|
|
13529
|
-
"
|
|
13530
|
-
"
|
|
13531
|
-
"
|
|
13217
|
+
"hardis:project:deploy:sources:metadata",
|
|
13218
|
+
"project:hardis:deploy:sources:metadata",
|
|
13219
|
+
"project:deploy:hardis:sources:metadata",
|
|
13220
|
+
"project:deploy:sources:hardis:metadata",
|
|
13221
|
+
"project:deploy:sources:metadata:hardis",
|
|
13222
|
+
"hardis:deploy:project:sources:metadata",
|
|
13223
|
+
"deploy:hardis:project:sources:metadata",
|
|
13224
|
+
"deploy:project:hardis:sources:metadata",
|
|
13225
|
+
"deploy:project:sources:hardis:metadata",
|
|
13226
|
+
"deploy:project:sources:metadata:hardis",
|
|
13227
|
+
"hardis:deploy:sources:project:metadata",
|
|
13228
|
+
"deploy:hardis:sources:project:metadata",
|
|
13229
|
+
"deploy:sources:hardis:project:metadata",
|
|
13230
|
+
"deploy:sources:project:hardis:metadata",
|
|
13231
|
+
"deploy:sources:project:metadata:hardis",
|
|
13232
|
+
"hardis:deploy:sources:metadata:project",
|
|
13233
|
+
"deploy:hardis:sources:metadata:project",
|
|
13234
|
+
"deploy:sources:hardis:metadata:project",
|
|
13235
|
+
"deploy:sources:metadata:hardis:project",
|
|
13236
|
+
"deploy:sources:metadata:project:hardis",
|
|
13237
|
+
"hardis:project:sources:deploy:metadata",
|
|
13238
|
+
"project:hardis:sources:deploy:metadata",
|
|
13239
|
+
"project:sources:hardis:deploy:metadata",
|
|
13240
|
+
"project:sources:deploy:hardis:metadata",
|
|
13241
|
+
"project:sources:deploy:metadata:hardis",
|
|
13242
|
+
"hardis:sources:project:deploy:metadata",
|
|
13243
|
+
"sources:hardis:project:deploy:metadata",
|
|
13244
|
+
"sources:project:hardis:deploy:metadata",
|
|
13245
|
+
"sources:project:deploy:hardis:metadata",
|
|
13246
|
+
"sources:project:deploy:metadata:hardis",
|
|
13247
|
+
"hardis:sources:deploy:project:metadata",
|
|
13248
|
+
"sources:hardis:deploy:project:metadata",
|
|
13249
|
+
"sources:deploy:hardis:project:metadata",
|
|
13250
|
+
"sources:deploy:project:hardis:metadata",
|
|
13251
|
+
"sources:deploy:project:metadata:hardis",
|
|
13252
|
+
"hardis:sources:deploy:metadata:project",
|
|
13253
|
+
"sources:hardis:deploy:metadata:project",
|
|
13254
|
+
"sources:deploy:hardis:metadata:project",
|
|
13255
|
+
"sources:deploy:metadata:hardis:project",
|
|
13256
|
+
"sources:deploy:metadata:project:hardis",
|
|
13257
|
+
"hardis:project:sources:metadata:deploy",
|
|
13258
|
+
"project:hardis:sources:metadata:deploy",
|
|
13259
|
+
"project:sources:hardis:metadata:deploy",
|
|
13260
|
+
"project:sources:metadata:hardis:deploy",
|
|
13261
|
+
"project:sources:metadata:deploy:hardis",
|
|
13262
|
+
"hardis:sources:project:metadata:deploy",
|
|
13263
|
+
"sources:hardis:project:metadata:deploy",
|
|
13264
|
+
"sources:project:hardis:metadata:deploy",
|
|
13265
|
+
"sources:project:metadata:hardis:deploy",
|
|
13266
|
+
"sources:project:metadata:deploy:hardis",
|
|
13267
|
+
"hardis:sources:metadata:project:deploy",
|
|
13268
|
+
"sources:hardis:metadata:project:deploy",
|
|
13269
|
+
"sources:metadata:hardis:project:deploy",
|
|
13270
|
+
"sources:metadata:project:hardis:deploy",
|
|
13271
|
+
"sources:metadata:project:deploy:hardis",
|
|
13272
|
+
"hardis:sources:metadata:deploy:project",
|
|
13273
|
+
"sources:hardis:metadata:deploy:project",
|
|
13274
|
+
"sources:metadata:hardis:deploy:project",
|
|
13275
|
+
"sources:metadata:deploy:hardis:project",
|
|
13276
|
+
"sources:metadata:deploy:project:hardis",
|
|
13277
|
+
"hardis:project:deploy:metadata:sources",
|
|
13278
|
+
"project:hardis:deploy:metadata:sources",
|
|
13279
|
+
"project:deploy:hardis:metadata:sources",
|
|
13280
|
+
"project:deploy:metadata:hardis:sources",
|
|
13281
|
+
"project:deploy:metadata:sources:hardis",
|
|
13282
|
+
"hardis:deploy:project:metadata:sources",
|
|
13283
|
+
"deploy:hardis:project:metadata:sources",
|
|
13284
|
+
"deploy:project:hardis:metadata:sources",
|
|
13285
|
+
"deploy:project:metadata:hardis:sources",
|
|
13286
|
+
"deploy:project:metadata:sources:hardis",
|
|
13287
|
+
"hardis:deploy:metadata:project:sources",
|
|
13288
|
+
"deploy:hardis:metadata:project:sources",
|
|
13289
|
+
"deploy:metadata:hardis:project:sources",
|
|
13290
|
+
"deploy:metadata:project:hardis:sources",
|
|
13291
|
+
"deploy:metadata:project:sources:hardis",
|
|
13292
|
+
"hardis:deploy:metadata:sources:project",
|
|
13293
|
+
"deploy:hardis:metadata:sources:project",
|
|
13294
|
+
"deploy:metadata:hardis:sources:project",
|
|
13295
|
+
"deploy:metadata:sources:hardis:project",
|
|
13296
|
+
"deploy:metadata:sources:project:hardis",
|
|
13297
|
+
"hardis:project:metadata:deploy:sources",
|
|
13298
|
+
"project:hardis:metadata:deploy:sources",
|
|
13299
|
+
"project:metadata:hardis:deploy:sources",
|
|
13300
|
+
"project:metadata:deploy:hardis:sources",
|
|
13301
|
+
"project:metadata:deploy:sources:hardis",
|
|
13302
|
+
"hardis:metadata:project:deploy:sources",
|
|
13303
|
+
"metadata:hardis:project:deploy:sources",
|
|
13304
|
+
"metadata:project:hardis:deploy:sources",
|
|
13305
|
+
"metadata:project:deploy:hardis:sources",
|
|
13306
|
+
"metadata:project:deploy:sources:hardis",
|
|
13307
|
+
"hardis:metadata:deploy:project:sources",
|
|
13308
|
+
"metadata:hardis:deploy:project:sources",
|
|
13309
|
+
"metadata:deploy:hardis:project:sources",
|
|
13310
|
+
"metadata:deploy:project:hardis:sources",
|
|
13311
|
+
"metadata:deploy:project:sources:hardis",
|
|
13312
|
+
"hardis:metadata:deploy:sources:project",
|
|
13313
|
+
"metadata:hardis:deploy:sources:project",
|
|
13314
|
+
"metadata:deploy:hardis:sources:project",
|
|
13315
|
+
"metadata:deploy:sources:hardis:project",
|
|
13316
|
+
"metadata:deploy:sources:project:hardis",
|
|
13317
|
+
"hardis:project:metadata:sources:deploy",
|
|
13318
|
+
"project:hardis:metadata:sources:deploy",
|
|
13319
|
+
"project:metadata:hardis:sources:deploy",
|
|
13320
|
+
"project:metadata:sources:hardis:deploy",
|
|
13321
|
+
"project:metadata:sources:deploy:hardis",
|
|
13322
|
+
"hardis:metadata:project:sources:deploy",
|
|
13323
|
+
"metadata:hardis:project:sources:deploy",
|
|
13324
|
+
"metadata:project:hardis:sources:deploy",
|
|
13325
|
+
"metadata:project:sources:hardis:deploy",
|
|
13326
|
+
"metadata:project:sources:deploy:hardis",
|
|
13327
|
+
"hardis:metadata:sources:project:deploy",
|
|
13328
|
+
"metadata:hardis:sources:project:deploy",
|
|
13329
|
+
"metadata:sources:hardis:project:deploy",
|
|
13330
|
+
"metadata:sources:project:hardis:deploy",
|
|
13331
|
+
"metadata:sources:project:deploy:hardis",
|
|
13332
|
+
"hardis:metadata:sources:deploy:project",
|
|
13333
|
+
"metadata:hardis:sources:deploy:project",
|
|
13334
|
+
"metadata:sources:hardis:deploy:project",
|
|
13335
|
+
"metadata:sources:deploy:hardis:project",
|
|
13336
|
+
"metadata:sources:deploy:project:hardis"
|
|
13532
13337
|
]
|
|
13533
13338
|
},
|
|
13534
|
-
"hardis:org:retrieve:sources:
|
|
13339
|
+
"hardis:org:retrieve:sources:analytics": {
|
|
13535
13340
|
"aliases": [],
|
|
13536
13341
|
"args": {},
|
|
13537
|
-
"description": "Retrieve
|
|
13342
|
+
"description": "Retrieve all CRM Analytics sources from an org, with workarounds for SFDX bugs",
|
|
13538
13343
|
"examples": [
|
|
13539
|
-
"$ sf hardis:org:retrieve:sources:
|
|
13344
|
+
"$ sf hardis:org:retrieve:sources:analytics"
|
|
13540
13345
|
],
|
|
13541
13346
|
"flags": {
|
|
13542
13347
|
"json": {
|
|
@@ -13554,22 +13359,6 @@
|
|
|
13554
13359
|
"multiple": false,
|
|
13555
13360
|
"type": "option"
|
|
13556
13361
|
},
|
|
13557
|
-
"packagexml": {
|
|
13558
|
-
"char": "x",
|
|
13559
|
-
"description": "Path to package.xml file",
|
|
13560
|
-
"name": "packagexml",
|
|
13561
|
-
"hasDynamicHelp": false,
|
|
13562
|
-
"multiple": false,
|
|
13563
|
-
"type": "option"
|
|
13564
|
-
},
|
|
13565
|
-
"template": {
|
|
13566
|
-
"char": "t",
|
|
13567
|
-
"description": "sfdx-hardis package.xml Template name. ex: wave",
|
|
13568
|
-
"name": "template",
|
|
13569
|
-
"hasDynamicHelp": false,
|
|
13570
|
-
"multiple": false,
|
|
13571
|
-
"type": "option"
|
|
13572
|
-
},
|
|
13573
13362
|
"debug": {
|
|
13574
13363
|
"char": "d",
|
|
13575
13364
|
"description": "Activate debug mode (more logs)",
|
|
@@ -13608,13 +13397,13 @@
|
|
|
13608
13397
|
},
|
|
13609
13398
|
"hasDynamicHelp": true,
|
|
13610
13399
|
"hiddenAliases": [],
|
|
13611
|
-
"id": "hardis:org:retrieve:sources:
|
|
13400
|
+
"id": "hardis:org:retrieve:sources:analytics",
|
|
13612
13401
|
"pluginAlias": "sfdx-hardis",
|
|
13613
13402
|
"pluginName": "sfdx-hardis",
|
|
13614
13403
|
"pluginType": "core",
|
|
13615
13404
|
"strict": true,
|
|
13616
13405
|
"enableJsonFlag": true,
|
|
13617
|
-
"title": "Retrieve
|
|
13406
|
+
"title": "Retrieve CRM Analytics configuration from an org",
|
|
13618
13407
|
"requiresProject": true,
|
|
13619
13408
|
"isESM": true,
|
|
13620
13409
|
"relativePath": [
|
|
@@ -13624,376 +13413,138 @@
|
|
|
13624
13413
|
"org",
|
|
13625
13414
|
"retrieve",
|
|
13626
13415
|
"sources",
|
|
13627
|
-
"
|
|
13416
|
+
"analytics.js"
|
|
13628
13417
|
],
|
|
13629
13418
|
"aliasPermutations": [],
|
|
13630
13419
|
"permutations": [
|
|
13631
|
-
"hardis:org:retrieve:sources:
|
|
13632
|
-
"org:hardis:retrieve:sources:
|
|
13633
|
-
"org:retrieve:hardis:sources:
|
|
13634
|
-
"org:retrieve:sources:hardis:
|
|
13635
|
-
"org:retrieve:sources:
|
|
13636
|
-
"hardis:retrieve:org:sources:
|
|
13637
|
-
"retrieve:hardis:org:sources:
|
|
13638
|
-
"retrieve:org:hardis:sources:
|
|
13639
|
-
"retrieve:org:sources:hardis:
|
|
13640
|
-
"retrieve:org:sources:
|
|
13641
|
-
"hardis:retrieve:sources:org:
|
|
13642
|
-
"retrieve:hardis:sources:org:
|
|
13643
|
-
"retrieve:sources:hardis:org:
|
|
13644
|
-
"retrieve:sources:org:hardis:
|
|
13645
|
-
"retrieve:sources:org:
|
|
13646
|
-
"hardis:retrieve:sources:
|
|
13647
|
-
"retrieve:hardis:sources:
|
|
13648
|
-
"retrieve:sources:hardis:
|
|
13649
|
-
"retrieve:sources:
|
|
13650
|
-
"retrieve:sources:
|
|
13651
|
-
"hardis:org:sources:retrieve:
|
|
13652
|
-
"org:hardis:sources:retrieve:
|
|
13653
|
-
"org:sources:hardis:retrieve:
|
|
13654
|
-
"org:sources:retrieve:hardis:
|
|
13655
|
-
"org:sources:retrieve:
|
|
13656
|
-
"hardis:sources:org:retrieve:
|
|
13657
|
-
"sources:hardis:org:retrieve:
|
|
13658
|
-
"sources:org:hardis:retrieve:
|
|
13659
|
-
"sources:org:retrieve:hardis:
|
|
13660
|
-
"sources:org:retrieve:
|
|
13661
|
-
"hardis:sources:retrieve:org:
|
|
13662
|
-
"sources:hardis:retrieve:org:
|
|
13663
|
-
"sources:retrieve:hardis:org:
|
|
13664
|
-
"sources:retrieve:org:hardis:
|
|
13665
|
-
"sources:retrieve:org:
|
|
13666
|
-
"hardis:sources:retrieve:
|
|
13667
|
-
"sources:hardis:retrieve:
|
|
13668
|
-
"sources:retrieve:hardis:
|
|
13669
|
-
"sources:retrieve:
|
|
13670
|
-
"sources:retrieve:
|
|
13671
|
-
"hardis:org:sources:
|
|
13672
|
-
"org:hardis:sources:
|
|
13673
|
-
"org:sources:hardis:
|
|
13674
|
-
"org:sources:
|
|
13675
|
-
"org:sources:
|
|
13676
|
-
"hardis:sources:org:
|
|
13677
|
-
"sources:hardis:org:
|
|
13678
|
-
"sources:org:hardis:
|
|
13679
|
-
"sources:org:
|
|
13680
|
-
"sources:org:
|
|
13681
|
-
"hardis:sources:
|
|
13682
|
-
"sources:hardis:
|
|
13683
|
-
"sources:
|
|
13684
|
-
"sources:
|
|
13685
|
-
"sources:
|
|
13686
|
-
"hardis:sources:
|
|
13687
|
-
"sources:hardis:
|
|
13688
|
-
"sources:
|
|
13689
|
-
"sources:
|
|
13690
|
-
"sources:
|
|
13691
|
-
"hardis:org:retrieve:
|
|
13692
|
-
"org:hardis:retrieve:
|
|
13693
|
-
"org:retrieve:hardis:
|
|
13694
|
-
"org:retrieve:
|
|
13695
|
-
"org:retrieve:
|
|
13696
|
-
"hardis:retrieve:org:
|
|
13697
|
-
"retrieve:hardis:org:
|
|
13698
|
-
"retrieve:org:hardis:
|
|
13699
|
-
"retrieve:org:
|
|
13700
|
-
"retrieve:org:
|
|
13701
|
-
"hardis:retrieve:
|
|
13702
|
-
"retrieve:hardis:
|
|
13703
|
-
"retrieve:
|
|
13704
|
-
"retrieve:
|
|
13705
|
-
"retrieve:
|
|
13706
|
-
"hardis:retrieve:
|
|
13707
|
-
"retrieve:hardis:
|
|
13708
|
-
"retrieve:
|
|
13709
|
-
"retrieve:
|
|
13710
|
-
"retrieve:
|
|
13711
|
-
"hardis:org:
|
|
13712
|
-
"org:hardis:
|
|
13713
|
-
"org:
|
|
13714
|
-
"org:
|
|
13715
|
-
"org:
|
|
13716
|
-
"hardis:
|
|
13717
|
-
"
|
|
13718
|
-
"
|
|
13719
|
-
"
|
|
13720
|
-
"
|
|
13721
|
-
"hardis:
|
|
13722
|
-
"
|
|
13723
|
-
"
|
|
13724
|
-
"
|
|
13725
|
-
"
|
|
13726
|
-
"hardis:
|
|
13727
|
-
"
|
|
13728
|
-
"
|
|
13729
|
-
"
|
|
13730
|
-
"
|
|
13731
|
-
"hardis:org:
|
|
13732
|
-
"org:hardis:
|
|
13733
|
-
"org:
|
|
13734
|
-
"org:
|
|
13735
|
-
"org:
|
|
13736
|
-
"hardis:
|
|
13737
|
-
"
|
|
13738
|
-
"
|
|
13739
|
-
"
|
|
13740
|
-
"
|
|
13741
|
-
"hardis:
|
|
13742
|
-
"
|
|
13743
|
-
"
|
|
13744
|
-
"
|
|
13745
|
-
"
|
|
13746
|
-
"hardis:
|
|
13747
|
-
"
|
|
13748
|
-
"
|
|
13749
|
-
"
|
|
13750
|
-
"
|
|
13751
|
-
]
|
|
13752
|
-
},
|
|
13753
|
-
"hardis:org:retrieve:sources:metadata": {
|
|
13754
|
-
"aliases": [],
|
|
13755
|
-
"args": {},
|
|
13756
|
-
"description": "Retrieve Salesforce DX project from org",
|
|
13757
|
-
"examples": [
|
|
13758
|
-
"$ sf hardis:org:retrieve:sources:metadata",
|
|
13759
|
-
"$ SFDX_RETRIEVE_WAIT_MINUTES=200 sf hardis:org:retrieve:sources:metadata"
|
|
13760
|
-
],
|
|
13761
|
-
"flags": {
|
|
13762
|
-
"json": {
|
|
13763
|
-
"description": "Format output as json.",
|
|
13764
|
-
"helpGroup": "GLOBAL",
|
|
13765
|
-
"name": "json",
|
|
13766
|
-
"allowNo": false,
|
|
13767
|
-
"type": "boolean"
|
|
13768
|
-
},
|
|
13769
|
-
"flags-dir": {
|
|
13770
|
-
"helpGroup": "GLOBAL",
|
|
13771
|
-
"name": "flags-dir",
|
|
13772
|
-
"summary": "Import flag values from a directory.",
|
|
13773
|
-
"hasDynamicHelp": false,
|
|
13774
|
-
"multiple": false,
|
|
13775
|
-
"type": "option"
|
|
13776
|
-
},
|
|
13777
|
-
"folder": {
|
|
13778
|
-
"char": "f",
|
|
13779
|
-
"description": "Folder",
|
|
13780
|
-
"name": "folder",
|
|
13781
|
-
"default": ".",
|
|
13782
|
-
"hasDynamicHelp": false,
|
|
13783
|
-
"multiple": false,
|
|
13784
|
-
"type": "option"
|
|
13785
|
-
},
|
|
13786
|
-
"packagexml": {
|
|
13787
|
-
"char": "p",
|
|
13788
|
-
"description": "Path to package.xml manifest file",
|
|
13789
|
-
"name": "packagexml",
|
|
13790
|
-
"hasDynamicHelp": false,
|
|
13791
|
-
"multiple": false,
|
|
13792
|
-
"type": "option"
|
|
13793
|
-
},
|
|
13794
|
-
"includemanaged": {
|
|
13795
|
-
"description": "Include items from managed packages",
|
|
13796
|
-
"name": "includemanaged",
|
|
13797
|
-
"allowNo": false,
|
|
13798
|
-
"type": "boolean"
|
|
13799
|
-
},
|
|
13800
|
-
"instanceurl": {
|
|
13801
|
-
"char": "r",
|
|
13802
|
-
"description": "URL of org instance",
|
|
13803
|
-
"name": "instanceurl",
|
|
13804
|
-
"hasDynamicHelp": false,
|
|
13805
|
-
"multiple": false,
|
|
13806
|
-
"type": "option"
|
|
13807
|
-
},
|
|
13808
|
-
"debug": {
|
|
13809
|
-
"char": "d",
|
|
13810
|
-
"description": "Activate debug mode (more logs)",
|
|
13811
|
-
"name": "debug",
|
|
13812
|
-
"allowNo": false,
|
|
13813
|
-
"type": "boolean"
|
|
13814
|
-
},
|
|
13815
|
-
"websocket": {
|
|
13816
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
13817
|
-
"name": "websocket",
|
|
13818
|
-
"hasDynamicHelp": false,
|
|
13819
|
-
"multiple": false,
|
|
13820
|
-
"type": "option"
|
|
13821
|
-
},
|
|
13822
|
-
"skipauth": {
|
|
13823
|
-
"description": "Skip authentication check when a default username is required",
|
|
13824
|
-
"name": "skipauth",
|
|
13825
|
-
"allowNo": false,
|
|
13826
|
-
"type": "boolean"
|
|
13827
|
-
},
|
|
13828
|
-
"target-org": {
|
|
13829
|
-
"aliases": [
|
|
13830
|
-
"targetusername",
|
|
13831
|
-
"u"
|
|
13832
|
-
],
|
|
13833
|
-
"char": "o",
|
|
13834
|
-
"deprecateAliases": true,
|
|
13835
|
-
"name": "target-org",
|
|
13836
|
-
"noCacheDefault": true,
|
|
13837
|
-
"required": true,
|
|
13838
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
13839
|
-
"hasDynamicHelp": true,
|
|
13840
|
-
"multiple": false,
|
|
13841
|
-
"type": "option"
|
|
13842
|
-
}
|
|
13843
|
-
},
|
|
13844
|
-
"hasDynamicHelp": true,
|
|
13845
|
-
"hiddenAliases": [],
|
|
13846
|
-
"id": "hardis:org:retrieve:sources:metadata",
|
|
13847
|
-
"pluginAlias": "sfdx-hardis",
|
|
13848
|
-
"pluginName": "sfdx-hardis",
|
|
13849
|
-
"pluginType": "core",
|
|
13850
|
-
"strict": true,
|
|
13851
|
-
"enableJsonFlag": true,
|
|
13852
|
-
"title": "Retrieve sfdx sources from org",
|
|
13853
|
-
"requiresProject": false,
|
|
13854
|
-
"triggerNotification": true,
|
|
13855
|
-
"isESM": true,
|
|
13856
|
-
"relativePath": [
|
|
13857
|
-
"lib",
|
|
13858
|
-
"commands",
|
|
13859
|
-
"hardis",
|
|
13860
|
-
"org",
|
|
13861
|
-
"retrieve",
|
|
13862
|
-
"sources",
|
|
13863
|
-
"metadata.js"
|
|
13864
|
-
],
|
|
13865
|
-
"aliasPermutations": [],
|
|
13866
|
-
"permutations": [
|
|
13867
|
-
"hardis:org:retrieve:sources:metadata",
|
|
13868
|
-
"org:hardis:retrieve:sources:metadata",
|
|
13869
|
-
"org:retrieve:hardis:sources:metadata",
|
|
13870
|
-
"org:retrieve:sources:hardis:metadata",
|
|
13871
|
-
"org:retrieve:sources:metadata:hardis",
|
|
13872
|
-
"hardis:retrieve:org:sources:metadata",
|
|
13873
|
-
"retrieve:hardis:org:sources:metadata",
|
|
13874
|
-
"retrieve:org:hardis:sources:metadata",
|
|
13875
|
-
"retrieve:org:sources:hardis:metadata",
|
|
13876
|
-
"retrieve:org:sources:metadata:hardis",
|
|
13877
|
-
"hardis:retrieve:sources:org:metadata",
|
|
13878
|
-
"retrieve:hardis:sources:org:metadata",
|
|
13879
|
-
"retrieve:sources:hardis:org:metadata",
|
|
13880
|
-
"retrieve:sources:org:hardis:metadata",
|
|
13881
|
-
"retrieve:sources:org:metadata:hardis",
|
|
13882
|
-
"hardis:retrieve:sources:metadata:org",
|
|
13883
|
-
"retrieve:hardis:sources:metadata:org",
|
|
13884
|
-
"retrieve:sources:hardis:metadata:org",
|
|
13885
|
-
"retrieve:sources:metadata:hardis:org",
|
|
13886
|
-
"retrieve:sources:metadata:org:hardis",
|
|
13887
|
-
"hardis:org:sources:retrieve:metadata",
|
|
13888
|
-
"org:hardis:sources:retrieve:metadata",
|
|
13889
|
-
"org:sources:hardis:retrieve:metadata",
|
|
13890
|
-
"org:sources:retrieve:hardis:metadata",
|
|
13891
|
-
"org:sources:retrieve:metadata:hardis",
|
|
13892
|
-
"hardis:sources:org:retrieve:metadata",
|
|
13893
|
-
"sources:hardis:org:retrieve:metadata",
|
|
13894
|
-
"sources:org:hardis:retrieve:metadata",
|
|
13895
|
-
"sources:org:retrieve:hardis:metadata",
|
|
13896
|
-
"sources:org:retrieve:metadata:hardis",
|
|
13897
|
-
"hardis:sources:retrieve:org:metadata",
|
|
13898
|
-
"sources:hardis:retrieve:org:metadata",
|
|
13899
|
-
"sources:retrieve:hardis:org:metadata",
|
|
13900
|
-
"sources:retrieve:org:hardis:metadata",
|
|
13901
|
-
"sources:retrieve:org:metadata:hardis",
|
|
13902
|
-
"hardis:sources:retrieve:metadata:org",
|
|
13903
|
-
"sources:hardis:retrieve:metadata:org",
|
|
13904
|
-
"sources:retrieve:hardis:metadata:org",
|
|
13905
|
-
"sources:retrieve:metadata:hardis:org",
|
|
13906
|
-
"sources:retrieve:metadata:org:hardis",
|
|
13907
|
-
"hardis:org:sources:metadata:retrieve",
|
|
13908
|
-
"org:hardis:sources:metadata:retrieve",
|
|
13909
|
-
"org:sources:hardis:metadata:retrieve",
|
|
13910
|
-
"org:sources:metadata:hardis:retrieve",
|
|
13911
|
-
"org:sources:metadata:retrieve:hardis",
|
|
13912
|
-
"hardis:sources:org:metadata:retrieve",
|
|
13913
|
-
"sources:hardis:org:metadata:retrieve",
|
|
13914
|
-
"sources:org:hardis:metadata:retrieve",
|
|
13915
|
-
"sources:org:metadata:hardis:retrieve",
|
|
13916
|
-
"sources:org:metadata:retrieve:hardis",
|
|
13917
|
-
"hardis:sources:metadata:org:retrieve",
|
|
13918
|
-
"sources:hardis:metadata:org:retrieve",
|
|
13919
|
-
"sources:metadata:hardis:org:retrieve",
|
|
13920
|
-
"sources:metadata:org:hardis:retrieve",
|
|
13921
|
-
"sources:metadata:org:retrieve:hardis",
|
|
13922
|
-
"hardis:sources:metadata:retrieve:org",
|
|
13923
|
-
"sources:hardis:metadata:retrieve:org",
|
|
13924
|
-
"sources:metadata:hardis:retrieve:org",
|
|
13925
|
-
"sources:metadata:retrieve:hardis:org",
|
|
13926
|
-
"sources:metadata:retrieve:org:hardis",
|
|
13927
|
-
"hardis:org:retrieve:metadata:sources",
|
|
13928
|
-
"org:hardis:retrieve:metadata:sources",
|
|
13929
|
-
"org:retrieve:hardis:metadata:sources",
|
|
13930
|
-
"org:retrieve:metadata:hardis:sources",
|
|
13931
|
-
"org:retrieve:metadata:sources:hardis",
|
|
13932
|
-
"hardis:retrieve:org:metadata:sources",
|
|
13933
|
-
"retrieve:hardis:org:metadata:sources",
|
|
13934
|
-
"retrieve:org:hardis:metadata:sources",
|
|
13935
|
-
"retrieve:org:metadata:hardis:sources",
|
|
13936
|
-
"retrieve:org:metadata:sources:hardis",
|
|
13937
|
-
"hardis:retrieve:metadata:org:sources",
|
|
13938
|
-
"retrieve:hardis:metadata:org:sources",
|
|
13939
|
-
"retrieve:metadata:hardis:org:sources",
|
|
13940
|
-
"retrieve:metadata:org:hardis:sources",
|
|
13941
|
-
"retrieve:metadata:org:sources:hardis",
|
|
13942
|
-
"hardis:retrieve:metadata:sources:org",
|
|
13943
|
-
"retrieve:hardis:metadata:sources:org",
|
|
13944
|
-
"retrieve:metadata:hardis:sources:org",
|
|
13945
|
-
"retrieve:metadata:sources:hardis:org",
|
|
13946
|
-
"retrieve:metadata:sources:org:hardis",
|
|
13947
|
-
"hardis:org:metadata:retrieve:sources",
|
|
13948
|
-
"org:hardis:metadata:retrieve:sources",
|
|
13949
|
-
"org:metadata:hardis:retrieve:sources",
|
|
13950
|
-
"org:metadata:retrieve:hardis:sources",
|
|
13951
|
-
"org:metadata:retrieve:sources:hardis",
|
|
13952
|
-
"hardis:metadata:org:retrieve:sources",
|
|
13953
|
-
"metadata:hardis:org:retrieve:sources",
|
|
13954
|
-
"metadata:org:hardis:retrieve:sources",
|
|
13955
|
-
"metadata:org:retrieve:hardis:sources",
|
|
13956
|
-
"metadata:org:retrieve:sources:hardis",
|
|
13957
|
-
"hardis:metadata:retrieve:org:sources",
|
|
13958
|
-
"metadata:hardis:retrieve:org:sources",
|
|
13959
|
-
"metadata:retrieve:hardis:org:sources",
|
|
13960
|
-
"metadata:retrieve:org:hardis:sources",
|
|
13961
|
-
"metadata:retrieve:org:sources:hardis",
|
|
13962
|
-
"hardis:metadata:retrieve:sources:org",
|
|
13963
|
-
"metadata:hardis:retrieve:sources:org",
|
|
13964
|
-
"metadata:retrieve:hardis:sources:org",
|
|
13965
|
-
"metadata:retrieve:sources:hardis:org",
|
|
13966
|
-
"metadata:retrieve:sources:org:hardis",
|
|
13967
|
-
"hardis:org:metadata:sources:retrieve",
|
|
13968
|
-
"org:hardis:metadata:sources:retrieve",
|
|
13969
|
-
"org:metadata:hardis:sources:retrieve",
|
|
13970
|
-
"org:metadata:sources:hardis:retrieve",
|
|
13971
|
-
"org:metadata:sources:retrieve:hardis",
|
|
13972
|
-
"hardis:metadata:org:sources:retrieve",
|
|
13973
|
-
"metadata:hardis:org:sources:retrieve",
|
|
13974
|
-
"metadata:org:hardis:sources:retrieve",
|
|
13975
|
-
"metadata:org:sources:hardis:retrieve",
|
|
13976
|
-
"metadata:org:sources:retrieve:hardis",
|
|
13977
|
-
"hardis:metadata:sources:org:retrieve",
|
|
13978
|
-
"metadata:hardis:sources:org:retrieve",
|
|
13979
|
-
"metadata:sources:hardis:org:retrieve",
|
|
13980
|
-
"metadata:sources:org:hardis:retrieve",
|
|
13981
|
-
"metadata:sources:org:retrieve:hardis",
|
|
13982
|
-
"hardis:metadata:sources:retrieve:org",
|
|
13983
|
-
"metadata:hardis:sources:retrieve:org",
|
|
13984
|
-
"metadata:sources:hardis:retrieve:org",
|
|
13985
|
-
"metadata:sources:retrieve:hardis:org",
|
|
13986
|
-
"metadata:sources:retrieve:org:hardis"
|
|
13420
|
+
"hardis:org:retrieve:sources:analytics",
|
|
13421
|
+
"org:hardis:retrieve:sources:analytics",
|
|
13422
|
+
"org:retrieve:hardis:sources:analytics",
|
|
13423
|
+
"org:retrieve:sources:hardis:analytics",
|
|
13424
|
+
"org:retrieve:sources:analytics:hardis",
|
|
13425
|
+
"hardis:retrieve:org:sources:analytics",
|
|
13426
|
+
"retrieve:hardis:org:sources:analytics",
|
|
13427
|
+
"retrieve:org:hardis:sources:analytics",
|
|
13428
|
+
"retrieve:org:sources:hardis:analytics",
|
|
13429
|
+
"retrieve:org:sources:analytics:hardis",
|
|
13430
|
+
"hardis:retrieve:sources:org:analytics",
|
|
13431
|
+
"retrieve:hardis:sources:org:analytics",
|
|
13432
|
+
"retrieve:sources:hardis:org:analytics",
|
|
13433
|
+
"retrieve:sources:org:hardis:analytics",
|
|
13434
|
+
"retrieve:sources:org:analytics:hardis",
|
|
13435
|
+
"hardis:retrieve:sources:analytics:org",
|
|
13436
|
+
"retrieve:hardis:sources:analytics:org",
|
|
13437
|
+
"retrieve:sources:hardis:analytics:org",
|
|
13438
|
+
"retrieve:sources:analytics:hardis:org",
|
|
13439
|
+
"retrieve:sources:analytics:org:hardis",
|
|
13440
|
+
"hardis:org:sources:retrieve:analytics",
|
|
13441
|
+
"org:hardis:sources:retrieve:analytics",
|
|
13442
|
+
"org:sources:hardis:retrieve:analytics",
|
|
13443
|
+
"org:sources:retrieve:hardis:analytics",
|
|
13444
|
+
"org:sources:retrieve:analytics:hardis",
|
|
13445
|
+
"hardis:sources:org:retrieve:analytics",
|
|
13446
|
+
"sources:hardis:org:retrieve:analytics",
|
|
13447
|
+
"sources:org:hardis:retrieve:analytics",
|
|
13448
|
+
"sources:org:retrieve:hardis:analytics",
|
|
13449
|
+
"sources:org:retrieve:analytics:hardis",
|
|
13450
|
+
"hardis:sources:retrieve:org:analytics",
|
|
13451
|
+
"sources:hardis:retrieve:org:analytics",
|
|
13452
|
+
"sources:retrieve:hardis:org:analytics",
|
|
13453
|
+
"sources:retrieve:org:hardis:analytics",
|
|
13454
|
+
"sources:retrieve:org:analytics:hardis",
|
|
13455
|
+
"hardis:sources:retrieve:analytics:org",
|
|
13456
|
+
"sources:hardis:retrieve:analytics:org",
|
|
13457
|
+
"sources:retrieve:hardis:analytics:org",
|
|
13458
|
+
"sources:retrieve:analytics:hardis:org",
|
|
13459
|
+
"sources:retrieve:analytics:org:hardis",
|
|
13460
|
+
"hardis:org:sources:analytics:retrieve",
|
|
13461
|
+
"org:hardis:sources:analytics:retrieve",
|
|
13462
|
+
"org:sources:hardis:analytics:retrieve",
|
|
13463
|
+
"org:sources:analytics:hardis:retrieve",
|
|
13464
|
+
"org:sources:analytics:retrieve:hardis",
|
|
13465
|
+
"hardis:sources:org:analytics:retrieve",
|
|
13466
|
+
"sources:hardis:org:analytics:retrieve",
|
|
13467
|
+
"sources:org:hardis:analytics:retrieve",
|
|
13468
|
+
"sources:org:analytics:hardis:retrieve",
|
|
13469
|
+
"sources:org:analytics:retrieve:hardis",
|
|
13470
|
+
"hardis:sources:analytics:org:retrieve",
|
|
13471
|
+
"sources:hardis:analytics:org:retrieve",
|
|
13472
|
+
"sources:analytics:hardis:org:retrieve",
|
|
13473
|
+
"sources:analytics:org:hardis:retrieve",
|
|
13474
|
+
"sources:analytics:org:retrieve:hardis",
|
|
13475
|
+
"hardis:sources:analytics:retrieve:org",
|
|
13476
|
+
"sources:hardis:analytics:retrieve:org",
|
|
13477
|
+
"sources:analytics:hardis:retrieve:org",
|
|
13478
|
+
"sources:analytics:retrieve:hardis:org",
|
|
13479
|
+
"sources:analytics:retrieve:org:hardis",
|
|
13480
|
+
"hardis:org:retrieve:analytics:sources",
|
|
13481
|
+
"org:hardis:retrieve:analytics:sources",
|
|
13482
|
+
"org:retrieve:hardis:analytics:sources",
|
|
13483
|
+
"org:retrieve:analytics:hardis:sources",
|
|
13484
|
+
"org:retrieve:analytics:sources:hardis",
|
|
13485
|
+
"hardis:retrieve:org:analytics:sources",
|
|
13486
|
+
"retrieve:hardis:org:analytics:sources",
|
|
13487
|
+
"retrieve:org:hardis:analytics:sources",
|
|
13488
|
+
"retrieve:org:analytics:hardis:sources",
|
|
13489
|
+
"retrieve:org:analytics:sources:hardis",
|
|
13490
|
+
"hardis:retrieve:analytics:org:sources",
|
|
13491
|
+
"retrieve:hardis:analytics:org:sources",
|
|
13492
|
+
"retrieve:analytics:hardis:org:sources",
|
|
13493
|
+
"retrieve:analytics:org:hardis:sources",
|
|
13494
|
+
"retrieve:analytics:org:sources:hardis",
|
|
13495
|
+
"hardis:retrieve:analytics:sources:org",
|
|
13496
|
+
"retrieve:hardis:analytics:sources:org",
|
|
13497
|
+
"retrieve:analytics:hardis:sources:org",
|
|
13498
|
+
"retrieve:analytics:sources:hardis:org",
|
|
13499
|
+
"retrieve:analytics:sources:org:hardis",
|
|
13500
|
+
"hardis:org:analytics:retrieve:sources",
|
|
13501
|
+
"org:hardis:analytics:retrieve:sources",
|
|
13502
|
+
"org:analytics:hardis:retrieve:sources",
|
|
13503
|
+
"org:analytics:retrieve:hardis:sources",
|
|
13504
|
+
"org:analytics:retrieve:sources:hardis",
|
|
13505
|
+
"hardis:analytics:org:retrieve:sources",
|
|
13506
|
+
"analytics:hardis:org:retrieve:sources",
|
|
13507
|
+
"analytics:org:hardis:retrieve:sources",
|
|
13508
|
+
"analytics:org:retrieve:hardis:sources",
|
|
13509
|
+
"analytics:org:retrieve:sources:hardis",
|
|
13510
|
+
"hardis:analytics:retrieve:org:sources",
|
|
13511
|
+
"analytics:hardis:retrieve:org:sources",
|
|
13512
|
+
"analytics:retrieve:hardis:org:sources",
|
|
13513
|
+
"analytics:retrieve:org:hardis:sources",
|
|
13514
|
+
"analytics:retrieve:org:sources:hardis",
|
|
13515
|
+
"hardis:analytics:retrieve:sources:org",
|
|
13516
|
+
"analytics:hardis:retrieve:sources:org",
|
|
13517
|
+
"analytics:retrieve:hardis:sources:org",
|
|
13518
|
+
"analytics:retrieve:sources:hardis:org",
|
|
13519
|
+
"analytics:retrieve:sources:org:hardis",
|
|
13520
|
+
"hardis:org:analytics:sources:retrieve",
|
|
13521
|
+
"org:hardis:analytics:sources:retrieve",
|
|
13522
|
+
"org:analytics:hardis:sources:retrieve",
|
|
13523
|
+
"org:analytics:sources:hardis:retrieve",
|
|
13524
|
+
"org:analytics:sources:retrieve:hardis",
|
|
13525
|
+
"hardis:analytics:org:sources:retrieve",
|
|
13526
|
+
"analytics:hardis:org:sources:retrieve",
|
|
13527
|
+
"analytics:org:hardis:sources:retrieve",
|
|
13528
|
+
"analytics:org:sources:hardis:retrieve",
|
|
13529
|
+
"analytics:org:sources:retrieve:hardis",
|
|
13530
|
+
"hardis:analytics:sources:org:retrieve",
|
|
13531
|
+
"analytics:hardis:sources:org:retrieve",
|
|
13532
|
+
"analytics:sources:hardis:org:retrieve",
|
|
13533
|
+
"analytics:sources:org:hardis:retrieve",
|
|
13534
|
+
"analytics:sources:org:retrieve:hardis",
|
|
13535
|
+
"hardis:analytics:sources:retrieve:org",
|
|
13536
|
+
"analytics:hardis:sources:retrieve:org",
|
|
13537
|
+
"analytics:sources:hardis:retrieve:org",
|
|
13538
|
+
"analytics:sources:retrieve:hardis:org",
|
|
13539
|
+
"analytics:sources:retrieve:org:hardis"
|
|
13987
13540
|
]
|
|
13988
13541
|
},
|
|
13989
|
-
"hardis:org:retrieve:sources:
|
|
13542
|
+
"hardis:org:retrieve:sources:dx": {
|
|
13990
13543
|
"aliases": [],
|
|
13991
13544
|
"args": {},
|
|
13992
|
-
"description": "Retrieve
|
|
13545
|
+
"description": "Retrieve Salesforce DX project from org",
|
|
13993
13546
|
"examples": [
|
|
13994
|
-
"$ sf hardis:org:retrieve:sources:
|
|
13995
|
-
"sf hardis:org:retrieve:sources:retrofit --productionbranch master --commit --commitmode updated",
|
|
13996
|
-
"sf hardis:org:retrieve:sources:retrofit --productionbranch master --retrofitbranch preprod --commit --commitmode updated --push --pushmode mergerequest"
|
|
13547
|
+
"$ sf hardis:org:retrieve:sources:dx"
|
|
13997
13548
|
],
|
|
13998
13549
|
"flags": {
|
|
13999
13550
|
"json": {
|
|
@@ -14011,52 +13562,51 @@
|
|
|
14011
13562
|
"multiple": false,
|
|
14012
13563
|
"type": "option"
|
|
14013
13564
|
},
|
|
14014
|
-
"
|
|
14015
|
-
"
|
|
14016
|
-
"
|
|
14017
|
-
"
|
|
14018
|
-
"
|
|
14019
|
-
},
|
|
14020
|
-
"commitmode": {
|
|
14021
|
-
"description": "Defines if we commit all retrieved updates, or all updates including creations",
|
|
14022
|
-
"name": "commitmode",
|
|
14023
|
-
"default": "updated",
|
|
13565
|
+
"folder": {
|
|
13566
|
+
"char": "f",
|
|
13567
|
+
"description": "Folder",
|
|
13568
|
+
"name": "folder",
|
|
13569
|
+
"default": ".",
|
|
14024
13570
|
"hasDynamicHelp": false,
|
|
14025
13571
|
"multiple": false,
|
|
14026
|
-
"options": [
|
|
14027
|
-
"updated",
|
|
14028
|
-
"all"
|
|
14029
|
-
],
|
|
14030
13572
|
"type": "option"
|
|
14031
13573
|
},
|
|
14032
|
-
"
|
|
14033
|
-
"
|
|
14034
|
-
"
|
|
14035
|
-
"
|
|
14036
|
-
"
|
|
13574
|
+
"tempfolder": {
|
|
13575
|
+
"char": "t",
|
|
13576
|
+
"description": "Temporary folder",
|
|
13577
|
+
"name": "tempfolder",
|
|
13578
|
+
"default": "./tmp",
|
|
13579
|
+
"hasDynamicHelp": false,
|
|
13580
|
+
"multiple": false,
|
|
13581
|
+
"type": "option"
|
|
14037
13582
|
},
|
|
14038
|
-
"
|
|
14039
|
-
"
|
|
14040
|
-
"
|
|
14041
|
-
"
|
|
13583
|
+
"keepmetadatatypes": {
|
|
13584
|
+
"char": "k",
|
|
13585
|
+
"description": "Comma separated list of metadatas types that will be the only ones to be retrieved",
|
|
13586
|
+
"name": "keepmetadatatypes",
|
|
14042
13587
|
"hasDynamicHelp": false,
|
|
14043
13588
|
"multiple": false,
|
|
14044
|
-
"options": [
|
|
14045
|
-
"default",
|
|
14046
|
-
"mergerequest"
|
|
14047
|
-
],
|
|
14048
13589
|
"type": "option"
|
|
14049
13590
|
},
|
|
14050
|
-
"
|
|
14051
|
-
"
|
|
14052
|
-
"
|
|
13591
|
+
"filteredmetadatas": {
|
|
13592
|
+
"char": "m",
|
|
13593
|
+
"description": "Comma separated list of Metadatas keys to remove from PackageXml file",
|
|
13594
|
+
"name": "filteredmetadatas",
|
|
14053
13595
|
"hasDynamicHelp": false,
|
|
14054
13596
|
"multiple": false,
|
|
14055
13597
|
"type": "option"
|
|
14056
13598
|
},
|
|
14057
|
-
"
|
|
14058
|
-
"
|
|
14059
|
-
"
|
|
13599
|
+
"shape": {
|
|
13600
|
+
"char": "s",
|
|
13601
|
+
"description": "Updates project-scratch-def.json from org shape",
|
|
13602
|
+
"name": "shape",
|
|
13603
|
+
"allowNo": false,
|
|
13604
|
+
"type": "boolean"
|
|
13605
|
+
},
|
|
13606
|
+
"instanceurl": {
|
|
13607
|
+
"char": "r",
|
|
13608
|
+
"description": "URL of org instance",
|
|
13609
|
+
"name": "instanceurl",
|
|
14060
13610
|
"hasDynamicHelp": false,
|
|
14061
13611
|
"multiple": false,
|
|
14062
13612
|
"type": "option"
|
|
@@ -14099,37 +13649,14 @@
|
|
|
14099
13649
|
},
|
|
14100
13650
|
"hasDynamicHelp": true,
|
|
14101
13651
|
"hiddenAliases": [],
|
|
14102
|
-
"id": "hardis:org:retrieve:sources:
|
|
13652
|
+
"id": "hardis:org:retrieve:sources:dx",
|
|
14103
13653
|
"pluginAlias": "sfdx-hardis",
|
|
14104
13654
|
"pluginName": "sfdx-hardis",
|
|
14105
13655
|
"pluginType": "core",
|
|
14106
13656
|
"strict": true,
|
|
14107
13657
|
"enableJsonFlag": true,
|
|
14108
|
-
"
|
|
14109
|
-
|
|
14110
|
-
"CustomApplication",
|
|
14111
|
-
"CustomField",
|
|
14112
|
-
"CustomLabel",
|
|
14113
|
-
"CustomLabels",
|
|
14114
|
-
"CustomMetadata",
|
|
14115
|
-
"CustomObject",
|
|
14116
|
-
"CustomObjectTranslation",
|
|
14117
|
-
"CustomTab",
|
|
14118
|
-
"DuplicateRule",
|
|
14119
|
-
"EmailTemplate",
|
|
14120
|
-
"FlexiPage",
|
|
14121
|
-
"GlobalValueSet",
|
|
14122
|
-
"Layout",
|
|
14123
|
-
"ListView",
|
|
14124
|
-
"MatchingRules",
|
|
14125
|
-
"PermissionSet",
|
|
14126
|
-
"RecordType",
|
|
14127
|
-
"StandardValueSet",
|
|
14128
|
-
"Translations",
|
|
14129
|
-
"ValidationRule"
|
|
14130
|
-
],
|
|
14131
|
-
"title": "Retrofit changes from an org",
|
|
14132
|
-
"requiresProject": true,
|
|
13658
|
+
"title": "Retrieve sfdx sources from org",
|
|
13659
|
+
"requiresProject": false,
|
|
14133
13660
|
"isESM": true,
|
|
14134
13661
|
"relativePath": [
|
|
14135
13662
|
"lib",
|
|
@@ -14138,207 +13665,169 @@
|
|
|
14138
13665
|
"org",
|
|
14139
13666
|
"retrieve",
|
|
14140
13667
|
"sources",
|
|
14141
|
-
"
|
|
13668
|
+
"dx.js"
|
|
14142
13669
|
],
|
|
14143
13670
|
"aliasPermutations": [],
|
|
14144
13671
|
"permutations": [
|
|
14145
|
-
"hardis:org:retrieve:sources:
|
|
14146
|
-
"org:hardis:retrieve:sources:
|
|
14147
|
-
"org:retrieve:hardis:sources:
|
|
14148
|
-
"org:retrieve:sources:hardis:
|
|
14149
|
-
"org:retrieve:sources:
|
|
14150
|
-
"hardis:retrieve:org:sources:
|
|
14151
|
-
"retrieve:hardis:org:sources:
|
|
14152
|
-
"retrieve:org:hardis:sources:
|
|
14153
|
-
"retrieve:org:sources:hardis:
|
|
14154
|
-
"retrieve:org:sources:
|
|
14155
|
-
"hardis:retrieve:sources:org:
|
|
14156
|
-
"retrieve:hardis:sources:org:
|
|
14157
|
-
"retrieve:sources:hardis:org:
|
|
14158
|
-
"retrieve:sources:org:hardis:
|
|
14159
|
-
"retrieve:sources:org:
|
|
14160
|
-
"hardis:retrieve:sources:
|
|
14161
|
-
"retrieve:hardis:sources:
|
|
14162
|
-
"retrieve:sources:hardis:
|
|
14163
|
-
"retrieve:sources:
|
|
14164
|
-
"retrieve:sources:
|
|
14165
|
-
"hardis:org:sources:retrieve:
|
|
14166
|
-
"org:hardis:sources:retrieve:
|
|
14167
|
-
"org:sources:hardis:retrieve:
|
|
14168
|
-
"org:sources:retrieve:hardis:
|
|
14169
|
-
"org:sources:retrieve:
|
|
14170
|
-
"hardis:sources:org:retrieve:
|
|
14171
|
-
"sources:hardis:org:retrieve:
|
|
14172
|
-
"sources:org:hardis:retrieve:
|
|
14173
|
-
"sources:org:retrieve:hardis:
|
|
14174
|
-
"sources:org:retrieve:
|
|
14175
|
-
"hardis:sources:retrieve:org:
|
|
14176
|
-
"sources:hardis:retrieve:org:
|
|
14177
|
-
"sources:retrieve:hardis:org:
|
|
14178
|
-
"sources:retrieve:org:hardis:
|
|
14179
|
-
"sources:retrieve:org:
|
|
14180
|
-
"hardis:sources:retrieve:
|
|
14181
|
-
"sources:hardis:retrieve:
|
|
14182
|
-
"sources:retrieve:hardis:
|
|
14183
|
-
"sources:retrieve:
|
|
14184
|
-
"sources:retrieve:
|
|
14185
|
-
"hardis:org:sources:
|
|
14186
|
-
"org:hardis:sources:
|
|
14187
|
-
"org:sources:hardis:
|
|
14188
|
-
"org:sources:
|
|
14189
|
-
"org:sources:
|
|
14190
|
-
"hardis:sources:org:
|
|
14191
|
-
"sources:hardis:org:
|
|
14192
|
-
"sources:org:hardis:
|
|
14193
|
-
"sources:org:
|
|
14194
|
-
"sources:org:
|
|
14195
|
-
"hardis:sources:
|
|
14196
|
-
"sources:hardis:
|
|
14197
|
-
"sources:
|
|
14198
|
-
"sources:
|
|
14199
|
-
"sources:
|
|
14200
|
-
"hardis:sources:
|
|
14201
|
-
"sources:hardis:
|
|
14202
|
-
"sources:
|
|
14203
|
-
"sources:
|
|
14204
|
-
"sources:
|
|
14205
|
-
"hardis:org:retrieve:
|
|
14206
|
-
"org:hardis:retrieve:
|
|
14207
|
-
"org:retrieve:hardis:
|
|
14208
|
-
"org:retrieve:
|
|
14209
|
-
"org:retrieve:
|
|
14210
|
-
"hardis:retrieve:org:
|
|
14211
|
-
"retrieve:hardis:org:
|
|
14212
|
-
"retrieve:org:hardis:
|
|
14213
|
-
"retrieve:org:
|
|
14214
|
-
"retrieve:org:
|
|
14215
|
-
"hardis:retrieve:
|
|
14216
|
-
"retrieve:hardis:
|
|
14217
|
-
"retrieve:
|
|
14218
|
-
"retrieve:
|
|
14219
|
-
"retrieve:
|
|
14220
|
-
"hardis:retrieve:
|
|
14221
|
-
"retrieve:hardis:
|
|
14222
|
-
"retrieve:
|
|
14223
|
-
"retrieve:
|
|
14224
|
-
"retrieve:
|
|
14225
|
-
"hardis:org:
|
|
14226
|
-
"org:hardis:
|
|
14227
|
-
"org:
|
|
14228
|
-
"org:
|
|
14229
|
-
"org:
|
|
14230
|
-
"hardis:
|
|
14231
|
-
"
|
|
14232
|
-
"
|
|
14233
|
-
"
|
|
14234
|
-
"
|
|
14235
|
-
"hardis:
|
|
14236
|
-
"
|
|
14237
|
-
"
|
|
14238
|
-
"
|
|
14239
|
-
"
|
|
14240
|
-
"hardis:
|
|
14241
|
-
"
|
|
14242
|
-
"
|
|
14243
|
-
"
|
|
14244
|
-
"
|
|
14245
|
-
"hardis:org:
|
|
14246
|
-
"org:hardis:
|
|
14247
|
-
"org:
|
|
14248
|
-
"org:
|
|
14249
|
-
"org:
|
|
14250
|
-
"hardis:
|
|
14251
|
-
"
|
|
14252
|
-
"
|
|
14253
|
-
"
|
|
14254
|
-
"
|
|
14255
|
-
"hardis:
|
|
14256
|
-
"
|
|
14257
|
-
"
|
|
14258
|
-
"
|
|
14259
|
-
"
|
|
14260
|
-
"hardis:
|
|
14261
|
-
"
|
|
14262
|
-
"
|
|
14263
|
-
"
|
|
14264
|
-
"
|
|
14265
|
-
]
|
|
14266
|
-
},
|
|
14267
|
-
"hardis:
|
|
14268
|
-
"aliases": [],
|
|
14269
|
-
"args": {},
|
|
14270
|
-
"description": "
|
|
14271
|
-
"examples": [
|
|
14272
|
-
"$ sf hardis:
|
|
14273
|
-
],
|
|
14274
|
-
"flags": {
|
|
14275
|
-
"json": {
|
|
14276
|
-
"description": "Format output as json.",
|
|
14277
|
-
"helpGroup": "GLOBAL",
|
|
14278
|
-
"name": "json",
|
|
14279
|
-
"allowNo": false,
|
|
14280
|
-
"type": "boolean"
|
|
14281
|
-
},
|
|
14282
|
-
"flags-dir": {
|
|
14283
|
-
"helpGroup": "GLOBAL",
|
|
14284
|
-
"name": "flags-dir",
|
|
14285
|
-
"summary": "Import flag values from a directory.",
|
|
14286
|
-
"hasDynamicHelp": false,
|
|
14287
|
-
"multiple": false,
|
|
14288
|
-
"type": "option"
|
|
14289
|
-
},
|
|
14290
|
-
"check": {
|
|
14291
|
-
"char": "c",
|
|
14292
|
-
"description": "Only checks the deployment, there is no impact on target org",
|
|
14293
|
-
"name": "check",
|
|
14294
|
-
"allowNo": false,
|
|
14295
|
-
"type": "boolean"
|
|
14296
|
-
},
|
|
14297
|
-
"deploydir": {
|
|
14298
|
-
"char": "x",
|
|
14299
|
-
"description": "Deploy directory",
|
|
14300
|
-
"name": "deploydir",
|
|
14301
|
-
"default": ".",
|
|
14302
|
-
"hasDynamicHelp": false,
|
|
14303
|
-
"multiple": false,
|
|
14304
|
-
"type": "option"
|
|
14305
|
-
},
|
|
14306
|
-
"packagexml": {
|
|
14307
|
-
"char": "p",
|
|
14308
|
-
"description": "Path to package.xml file to deploy",
|
|
14309
|
-
"name": "packagexml",
|
|
13672
|
+
"hardis:org:retrieve:sources:dx",
|
|
13673
|
+
"org:hardis:retrieve:sources:dx",
|
|
13674
|
+
"org:retrieve:hardis:sources:dx",
|
|
13675
|
+
"org:retrieve:sources:hardis:dx",
|
|
13676
|
+
"org:retrieve:sources:dx:hardis",
|
|
13677
|
+
"hardis:retrieve:org:sources:dx",
|
|
13678
|
+
"retrieve:hardis:org:sources:dx",
|
|
13679
|
+
"retrieve:org:hardis:sources:dx",
|
|
13680
|
+
"retrieve:org:sources:hardis:dx",
|
|
13681
|
+
"retrieve:org:sources:dx:hardis",
|
|
13682
|
+
"hardis:retrieve:sources:org:dx",
|
|
13683
|
+
"retrieve:hardis:sources:org:dx",
|
|
13684
|
+
"retrieve:sources:hardis:org:dx",
|
|
13685
|
+
"retrieve:sources:org:hardis:dx",
|
|
13686
|
+
"retrieve:sources:org:dx:hardis",
|
|
13687
|
+
"hardis:retrieve:sources:dx:org",
|
|
13688
|
+
"retrieve:hardis:sources:dx:org",
|
|
13689
|
+
"retrieve:sources:hardis:dx:org",
|
|
13690
|
+
"retrieve:sources:dx:hardis:org",
|
|
13691
|
+
"retrieve:sources:dx:org:hardis",
|
|
13692
|
+
"hardis:org:sources:retrieve:dx",
|
|
13693
|
+
"org:hardis:sources:retrieve:dx",
|
|
13694
|
+
"org:sources:hardis:retrieve:dx",
|
|
13695
|
+
"org:sources:retrieve:hardis:dx",
|
|
13696
|
+
"org:sources:retrieve:dx:hardis",
|
|
13697
|
+
"hardis:sources:org:retrieve:dx",
|
|
13698
|
+
"sources:hardis:org:retrieve:dx",
|
|
13699
|
+
"sources:org:hardis:retrieve:dx",
|
|
13700
|
+
"sources:org:retrieve:hardis:dx",
|
|
13701
|
+
"sources:org:retrieve:dx:hardis",
|
|
13702
|
+
"hardis:sources:retrieve:org:dx",
|
|
13703
|
+
"sources:hardis:retrieve:org:dx",
|
|
13704
|
+
"sources:retrieve:hardis:org:dx",
|
|
13705
|
+
"sources:retrieve:org:hardis:dx",
|
|
13706
|
+
"sources:retrieve:org:dx:hardis",
|
|
13707
|
+
"hardis:sources:retrieve:dx:org",
|
|
13708
|
+
"sources:hardis:retrieve:dx:org",
|
|
13709
|
+
"sources:retrieve:hardis:dx:org",
|
|
13710
|
+
"sources:retrieve:dx:hardis:org",
|
|
13711
|
+
"sources:retrieve:dx:org:hardis",
|
|
13712
|
+
"hardis:org:sources:dx:retrieve",
|
|
13713
|
+
"org:hardis:sources:dx:retrieve",
|
|
13714
|
+
"org:sources:hardis:dx:retrieve",
|
|
13715
|
+
"org:sources:dx:hardis:retrieve",
|
|
13716
|
+
"org:sources:dx:retrieve:hardis",
|
|
13717
|
+
"hardis:sources:org:dx:retrieve",
|
|
13718
|
+
"sources:hardis:org:dx:retrieve",
|
|
13719
|
+
"sources:org:hardis:dx:retrieve",
|
|
13720
|
+
"sources:org:dx:hardis:retrieve",
|
|
13721
|
+
"sources:org:dx:retrieve:hardis",
|
|
13722
|
+
"hardis:sources:dx:org:retrieve",
|
|
13723
|
+
"sources:hardis:dx:org:retrieve",
|
|
13724
|
+
"sources:dx:hardis:org:retrieve",
|
|
13725
|
+
"sources:dx:org:hardis:retrieve",
|
|
13726
|
+
"sources:dx:org:retrieve:hardis",
|
|
13727
|
+
"hardis:sources:dx:retrieve:org",
|
|
13728
|
+
"sources:hardis:dx:retrieve:org",
|
|
13729
|
+
"sources:dx:hardis:retrieve:org",
|
|
13730
|
+
"sources:dx:retrieve:hardis:org",
|
|
13731
|
+
"sources:dx:retrieve:org:hardis",
|
|
13732
|
+
"hardis:org:retrieve:dx:sources",
|
|
13733
|
+
"org:hardis:retrieve:dx:sources",
|
|
13734
|
+
"org:retrieve:hardis:dx:sources",
|
|
13735
|
+
"org:retrieve:dx:hardis:sources",
|
|
13736
|
+
"org:retrieve:dx:sources:hardis",
|
|
13737
|
+
"hardis:retrieve:org:dx:sources",
|
|
13738
|
+
"retrieve:hardis:org:dx:sources",
|
|
13739
|
+
"retrieve:org:hardis:dx:sources",
|
|
13740
|
+
"retrieve:org:dx:hardis:sources",
|
|
13741
|
+
"retrieve:org:dx:sources:hardis",
|
|
13742
|
+
"hardis:retrieve:dx:org:sources",
|
|
13743
|
+
"retrieve:hardis:dx:org:sources",
|
|
13744
|
+
"retrieve:dx:hardis:org:sources",
|
|
13745
|
+
"retrieve:dx:org:hardis:sources",
|
|
13746
|
+
"retrieve:dx:org:sources:hardis",
|
|
13747
|
+
"hardis:retrieve:dx:sources:org",
|
|
13748
|
+
"retrieve:hardis:dx:sources:org",
|
|
13749
|
+
"retrieve:dx:hardis:sources:org",
|
|
13750
|
+
"retrieve:dx:sources:hardis:org",
|
|
13751
|
+
"retrieve:dx:sources:org:hardis",
|
|
13752
|
+
"hardis:org:dx:retrieve:sources",
|
|
13753
|
+
"org:hardis:dx:retrieve:sources",
|
|
13754
|
+
"org:dx:hardis:retrieve:sources",
|
|
13755
|
+
"org:dx:retrieve:hardis:sources",
|
|
13756
|
+
"org:dx:retrieve:sources:hardis",
|
|
13757
|
+
"hardis:dx:org:retrieve:sources",
|
|
13758
|
+
"dx:hardis:org:retrieve:sources",
|
|
13759
|
+
"dx:org:hardis:retrieve:sources",
|
|
13760
|
+
"dx:org:retrieve:hardis:sources",
|
|
13761
|
+
"dx:org:retrieve:sources:hardis",
|
|
13762
|
+
"hardis:dx:retrieve:org:sources",
|
|
13763
|
+
"dx:hardis:retrieve:org:sources",
|
|
13764
|
+
"dx:retrieve:hardis:org:sources",
|
|
13765
|
+
"dx:retrieve:org:hardis:sources",
|
|
13766
|
+
"dx:retrieve:org:sources:hardis",
|
|
13767
|
+
"hardis:dx:retrieve:sources:org",
|
|
13768
|
+
"dx:hardis:retrieve:sources:org",
|
|
13769
|
+
"dx:retrieve:hardis:sources:org",
|
|
13770
|
+
"dx:retrieve:sources:hardis:org",
|
|
13771
|
+
"dx:retrieve:sources:org:hardis",
|
|
13772
|
+
"hardis:org:dx:sources:retrieve",
|
|
13773
|
+
"org:hardis:dx:sources:retrieve",
|
|
13774
|
+
"org:dx:hardis:sources:retrieve",
|
|
13775
|
+
"org:dx:sources:hardis:retrieve",
|
|
13776
|
+
"org:dx:sources:retrieve:hardis",
|
|
13777
|
+
"hardis:dx:org:sources:retrieve",
|
|
13778
|
+
"dx:hardis:org:sources:retrieve",
|
|
13779
|
+
"dx:org:hardis:sources:retrieve",
|
|
13780
|
+
"dx:org:sources:hardis:retrieve",
|
|
13781
|
+
"dx:org:sources:retrieve:hardis",
|
|
13782
|
+
"hardis:dx:sources:org:retrieve",
|
|
13783
|
+
"dx:hardis:sources:org:retrieve",
|
|
13784
|
+
"dx:sources:hardis:org:retrieve",
|
|
13785
|
+
"dx:sources:org:hardis:retrieve",
|
|
13786
|
+
"dx:sources:org:retrieve:hardis",
|
|
13787
|
+
"hardis:dx:sources:retrieve:org",
|
|
13788
|
+
"dx:hardis:sources:retrieve:org",
|
|
13789
|
+
"dx:sources:hardis:retrieve:org",
|
|
13790
|
+
"dx:sources:retrieve:hardis:org",
|
|
13791
|
+
"dx:sources:retrieve:org:hardis"
|
|
13792
|
+
]
|
|
13793
|
+
},
|
|
13794
|
+
"hardis:org:retrieve:sources:dx2": {
|
|
13795
|
+
"aliases": [],
|
|
13796
|
+
"args": {},
|
|
13797
|
+
"description": "Retrieve Salesforce DX project from org",
|
|
13798
|
+
"examples": [
|
|
13799
|
+
"$ sf hardis:org:retrieve:sources:dx2"
|
|
13800
|
+
],
|
|
13801
|
+
"flags": {
|
|
13802
|
+
"json": {
|
|
13803
|
+
"description": "Format output as json.",
|
|
13804
|
+
"helpGroup": "GLOBAL",
|
|
13805
|
+
"name": "json",
|
|
13806
|
+
"allowNo": false,
|
|
13807
|
+
"type": "boolean"
|
|
13808
|
+
},
|
|
13809
|
+
"flags-dir": {
|
|
13810
|
+
"helpGroup": "GLOBAL",
|
|
13811
|
+
"name": "flags-dir",
|
|
13812
|
+
"summary": "Import flag values from a directory.",
|
|
14310
13813
|
"hasDynamicHelp": false,
|
|
14311
13814
|
"multiple": false,
|
|
14312
13815
|
"type": "option"
|
|
14313
13816
|
},
|
|
14314
|
-
"
|
|
14315
|
-
"char": "
|
|
14316
|
-
"description": "
|
|
14317
|
-
"name": "
|
|
14318
|
-
"allowNo": false,
|
|
14319
|
-
"type": "boolean"
|
|
14320
|
-
},
|
|
14321
|
-
"destructivepackagexml": {
|
|
14322
|
-
"char": "k",
|
|
14323
|
-
"description": "Path to destructiveChanges.xml file to deploy",
|
|
14324
|
-
"name": "destructivepackagexml",
|
|
13817
|
+
"packagexml": {
|
|
13818
|
+
"char": "x",
|
|
13819
|
+
"description": "Path to package.xml file",
|
|
13820
|
+
"name": "packagexml",
|
|
14325
13821
|
"hasDynamicHelp": false,
|
|
14326
13822
|
"multiple": false,
|
|
14327
13823
|
"type": "option"
|
|
14328
13824
|
},
|
|
14329
|
-
"
|
|
14330
|
-
"char": "
|
|
14331
|
-
"description": "
|
|
14332
|
-
"name": "
|
|
14333
|
-
"default": "RunLocalTests",
|
|
13825
|
+
"template": {
|
|
13826
|
+
"char": "t",
|
|
13827
|
+
"description": "sfdx-hardis package.xml Template name. ex: wave",
|
|
13828
|
+
"name": "template",
|
|
14334
13829
|
"hasDynamicHelp": false,
|
|
14335
13830
|
"multiple": false,
|
|
14336
|
-
"options": [
|
|
14337
|
-
"NoTestRun",
|
|
14338
|
-
"RunSpecifiedTests",
|
|
14339
|
-
"RunLocalTests",
|
|
14340
|
-
"RunAllTestsInOrg"
|
|
14341
|
-
],
|
|
14342
13831
|
"type": "option"
|
|
14343
13832
|
},
|
|
14344
13833
|
"debug": {
|
|
@@ -14379,151 +13868,662 @@
|
|
|
14379
13868
|
},
|
|
14380
13869
|
"hasDynamicHelp": true,
|
|
14381
13870
|
"hiddenAliases": [],
|
|
14382
|
-
"id": "hardis:
|
|
13871
|
+
"id": "hardis:org:retrieve:sources:dx2",
|
|
14383
13872
|
"pluginAlias": "sfdx-hardis",
|
|
14384
13873
|
"pluginName": "sfdx-hardis",
|
|
14385
13874
|
"pluginType": "core",
|
|
14386
13875
|
"strict": true,
|
|
14387
13876
|
"enableJsonFlag": true,
|
|
14388
|
-
"title": "
|
|
14389
|
-
"requiresProject":
|
|
14390
|
-
"requiresSfdxPlugins": [
|
|
14391
|
-
"sfdx-essentials"
|
|
14392
|
-
],
|
|
13877
|
+
"title": "Retrieve sfdx sources from org (2)",
|
|
13878
|
+
"requiresProject": true,
|
|
14393
13879
|
"isESM": true,
|
|
14394
13880
|
"relativePath": [
|
|
14395
13881
|
"lib",
|
|
14396
13882
|
"commands",
|
|
14397
13883
|
"hardis",
|
|
14398
|
-
"
|
|
14399
|
-
"
|
|
13884
|
+
"org",
|
|
13885
|
+
"retrieve",
|
|
14400
13886
|
"sources",
|
|
14401
|
-
"
|
|
13887
|
+
"dx2.js"
|
|
14402
13888
|
],
|
|
14403
13889
|
"aliasPermutations": [],
|
|
14404
13890
|
"permutations": [
|
|
14405
|
-
"hardis:
|
|
14406
|
-
"
|
|
14407
|
-
"
|
|
14408
|
-
"
|
|
14409
|
-
"
|
|
14410
|
-
"hardis:
|
|
14411
|
-
"
|
|
14412
|
-
"
|
|
14413
|
-
"
|
|
14414
|
-
"
|
|
14415
|
-
"hardis:
|
|
14416
|
-
"
|
|
14417
|
-
"
|
|
14418
|
-
"
|
|
14419
|
-
"
|
|
14420
|
-
"hardis:
|
|
14421
|
-
"
|
|
14422
|
-
"
|
|
14423
|
-
"
|
|
14424
|
-
"
|
|
14425
|
-
"hardis:
|
|
14426
|
-
"
|
|
14427
|
-
"
|
|
14428
|
-
"
|
|
14429
|
-
"
|
|
14430
|
-
"hardis:sources:
|
|
14431
|
-
"sources:hardis:
|
|
14432
|
-
"sources:
|
|
14433
|
-
"sources:
|
|
14434
|
-
"sources:
|
|
14435
|
-
"hardis:sources:
|
|
14436
|
-
"sources:hardis:
|
|
14437
|
-
"sources:
|
|
14438
|
-
"sources:
|
|
14439
|
-
"sources:
|
|
14440
|
-
"hardis:sources:
|
|
14441
|
-
"sources:hardis:
|
|
14442
|
-
"sources:
|
|
14443
|
-
"sources:
|
|
14444
|
-
"sources:
|
|
14445
|
-
"hardis:
|
|
14446
|
-
"
|
|
14447
|
-
"
|
|
14448
|
-
"
|
|
14449
|
-
"
|
|
14450
|
-
"hardis:sources:
|
|
14451
|
-
"sources:hardis:
|
|
14452
|
-
"sources:
|
|
14453
|
-
"sources:
|
|
14454
|
-
"sources:
|
|
14455
|
-
"hardis:sources:
|
|
14456
|
-
"sources:hardis:
|
|
14457
|
-
"sources:
|
|
14458
|
-
"sources:
|
|
14459
|
-
"sources:
|
|
14460
|
-
"hardis:sources:
|
|
14461
|
-
"sources:hardis:
|
|
14462
|
-
"sources:
|
|
14463
|
-
"sources:
|
|
14464
|
-
"sources:
|
|
14465
|
-
"hardis:
|
|
14466
|
-
"
|
|
14467
|
-
"
|
|
14468
|
-
"
|
|
14469
|
-
"
|
|
14470
|
-
"hardis:
|
|
14471
|
-
"
|
|
14472
|
-
"
|
|
14473
|
-
"
|
|
14474
|
-
"
|
|
14475
|
-
"hardis:
|
|
14476
|
-
"
|
|
14477
|
-
"
|
|
14478
|
-
"
|
|
14479
|
-
"
|
|
14480
|
-
"hardis:
|
|
14481
|
-
"
|
|
14482
|
-
"
|
|
14483
|
-
"
|
|
14484
|
-
"
|
|
14485
|
-
"hardis:
|
|
14486
|
-
"
|
|
14487
|
-
"
|
|
14488
|
-
"
|
|
14489
|
-
"
|
|
14490
|
-
"hardis:
|
|
14491
|
-
"
|
|
14492
|
-
"
|
|
14493
|
-
"
|
|
14494
|
-
"
|
|
14495
|
-
"hardis:
|
|
14496
|
-
"
|
|
14497
|
-
"
|
|
14498
|
-
"
|
|
14499
|
-
"
|
|
14500
|
-
"hardis:
|
|
14501
|
-
"
|
|
14502
|
-
"
|
|
14503
|
-
"
|
|
14504
|
-
"
|
|
14505
|
-
"hardis:
|
|
14506
|
-
"
|
|
14507
|
-
"
|
|
14508
|
-
"
|
|
14509
|
-
"
|
|
14510
|
-
"hardis:
|
|
14511
|
-
"
|
|
14512
|
-
"
|
|
14513
|
-
"
|
|
14514
|
-
"
|
|
14515
|
-
"hardis:
|
|
14516
|
-
"
|
|
14517
|
-
"
|
|
14518
|
-
"
|
|
14519
|
-
"
|
|
14520
|
-
"hardis:
|
|
14521
|
-
"
|
|
14522
|
-
"
|
|
14523
|
-
"
|
|
14524
|
-
"
|
|
13891
|
+
"hardis:org:retrieve:sources:dx2",
|
|
13892
|
+
"org:hardis:retrieve:sources:dx2",
|
|
13893
|
+
"org:retrieve:hardis:sources:dx2",
|
|
13894
|
+
"org:retrieve:sources:hardis:dx2",
|
|
13895
|
+
"org:retrieve:sources:dx2:hardis",
|
|
13896
|
+
"hardis:retrieve:org:sources:dx2",
|
|
13897
|
+
"retrieve:hardis:org:sources:dx2",
|
|
13898
|
+
"retrieve:org:hardis:sources:dx2",
|
|
13899
|
+
"retrieve:org:sources:hardis:dx2",
|
|
13900
|
+
"retrieve:org:sources:dx2:hardis",
|
|
13901
|
+
"hardis:retrieve:sources:org:dx2",
|
|
13902
|
+
"retrieve:hardis:sources:org:dx2",
|
|
13903
|
+
"retrieve:sources:hardis:org:dx2",
|
|
13904
|
+
"retrieve:sources:org:hardis:dx2",
|
|
13905
|
+
"retrieve:sources:org:dx2:hardis",
|
|
13906
|
+
"hardis:retrieve:sources:dx2:org",
|
|
13907
|
+
"retrieve:hardis:sources:dx2:org",
|
|
13908
|
+
"retrieve:sources:hardis:dx2:org",
|
|
13909
|
+
"retrieve:sources:dx2:hardis:org",
|
|
13910
|
+
"retrieve:sources:dx2:org:hardis",
|
|
13911
|
+
"hardis:org:sources:retrieve:dx2",
|
|
13912
|
+
"org:hardis:sources:retrieve:dx2",
|
|
13913
|
+
"org:sources:hardis:retrieve:dx2",
|
|
13914
|
+
"org:sources:retrieve:hardis:dx2",
|
|
13915
|
+
"org:sources:retrieve:dx2:hardis",
|
|
13916
|
+
"hardis:sources:org:retrieve:dx2",
|
|
13917
|
+
"sources:hardis:org:retrieve:dx2",
|
|
13918
|
+
"sources:org:hardis:retrieve:dx2",
|
|
13919
|
+
"sources:org:retrieve:hardis:dx2",
|
|
13920
|
+
"sources:org:retrieve:dx2:hardis",
|
|
13921
|
+
"hardis:sources:retrieve:org:dx2",
|
|
13922
|
+
"sources:hardis:retrieve:org:dx2",
|
|
13923
|
+
"sources:retrieve:hardis:org:dx2",
|
|
13924
|
+
"sources:retrieve:org:hardis:dx2",
|
|
13925
|
+
"sources:retrieve:org:dx2:hardis",
|
|
13926
|
+
"hardis:sources:retrieve:dx2:org",
|
|
13927
|
+
"sources:hardis:retrieve:dx2:org",
|
|
13928
|
+
"sources:retrieve:hardis:dx2:org",
|
|
13929
|
+
"sources:retrieve:dx2:hardis:org",
|
|
13930
|
+
"sources:retrieve:dx2:org:hardis",
|
|
13931
|
+
"hardis:org:sources:dx2:retrieve",
|
|
13932
|
+
"org:hardis:sources:dx2:retrieve",
|
|
13933
|
+
"org:sources:hardis:dx2:retrieve",
|
|
13934
|
+
"org:sources:dx2:hardis:retrieve",
|
|
13935
|
+
"org:sources:dx2:retrieve:hardis",
|
|
13936
|
+
"hardis:sources:org:dx2:retrieve",
|
|
13937
|
+
"sources:hardis:org:dx2:retrieve",
|
|
13938
|
+
"sources:org:hardis:dx2:retrieve",
|
|
13939
|
+
"sources:org:dx2:hardis:retrieve",
|
|
13940
|
+
"sources:org:dx2:retrieve:hardis",
|
|
13941
|
+
"hardis:sources:dx2:org:retrieve",
|
|
13942
|
+
"sources:hardis:dx2:org:retrieve",
|
|
13943
|
+
"sources:dx2:hardis:org:retrieve",
|
|
13944
|
+
"sources:dx2:org:hardis:retrieve",
|
|
13945
|
+
"sources:dx2:org:retrieve:hardis",
|
|
13946
|
+
"hardis:sources:dx2:retrieve:org",
|
|
13947
|
+
"sources:hardis:dx2:retrieve:org",
|
|
13948
|
+
"sources:dx2:hardis:retrieve:org",
|
|
13949
|
+
"sources:dx2:retrieve:hardis:org",
|
|
13950
|
+
"sources:dx2:retrieve:org:hardis",
|
|
13951
|
+
"hardis:org:retrieve:dx2:sources",
|
|
13952
|
+
"org:hardis:retrieve:dx2:sources",
|
|
13953
|
+
"org:retrieve:hardis:dx2:sources",
|
|
13954
|
+
"org:retrieve:dx2:hardis:sources",
|
|
13955
|
+
"org:retrieve:dx2:sources:hardis",
|
|
13956
|
+
"hardis:retrieve:org:dx2:sources",
|
|
13957
|
+
"retrieve:hardis:org:dx2:sources",
|
|
13958
|
+
"retrieve:org:hardis:dx2:sources",
|
|
13959
|
+
"retrieve:org:dx2:hardis:sources",
|
|
13960
|
+
"retrieve:org:dx2:sources:hardis",
|
|
13961
|
+
"hardis:retrieve:dx2:org:sources",
|
|
13962
|
+
"retrieve:hardis:dx2:org:sources",
|
|
13963
|
+
"retrieve:dx2:hardis:org:sources",
|
|
13964
|
+
"retrieve:dx2:org:hardis:sources",
|
|
13965
|
+
"retrieve:dx2:org:sources:hardis",
|
|
13966
|
+
"hardis:retrieve:dx2:sources:org",
|
|
13967
|
+
"retrieve:hardis:dx2:sources:org",
|
|
13968
|
+
"retrieve:dx2:hardis:sources:org",
|
|
13969
|
+
"retrieve:dx2:sources:hardis:org",
|
|
13970
|
+
"retrieve:dx2:sources:org:hardis",
|
|
13971
|
+
"hardis:org:dx2:retrieve:sources",
|
|
13972
|
+
"org:hardis:dx2:retrieve:sources",
|
|
13973
|
+
"org:dx2:hardis:retrieve:sources",
|
|
13974
|
+
"org:dx2:retrieve:hardis:sources",
|
|
13975
|
+
"org:dx2:retrieve:sources:hardis",
|
|
13976
|
+
"hardis:dx2:org:retrieve:sources",
|
|
13977
|
+
"dx2:hardis:org:retrieve:sources",
|
|
13978
|
+
"dx2:org:hardis:retrieve:sources",
|
|
13979
|
+
"dx2:org:retrieve:hardis:sources",
|
|
13980
|
+
"dx2:org:retrieve:sources:hardis",
|
|
13981
|
+
"hardis:dx2:retrieve:org:sources",
|
|
13982
|
+
"dx2:hardis:retrieve:org:sources",
|
|
13983
|
+
"dx2:retrieve:hardis:org:sources",
|
|
13984
|
+
"dx2:retrieve:org:hardis:sources",
|
|
13985
|
+
"dx2:retrieve:org:sources:hardis",
|
|
13986
|
+
"hardis:dx2:retrieve:sources:org",
|
|
13987
|
+
"dx2:hardis:retrieve:sources:org",
|
|
13988
|
+
"dx2:retrieve:hardis:sources:org",
|
|
13989
|
+
"dx2:retrieve:sources:hardis:org",
|
|
13990
|
+
"dx2:retrieve:sources:org:hardis",
|
|
13991
|
+
"hardis:org:dx2:sources:retrieve",
|
|
13992
|
+
"org:hardis:dx2:sources:retrieve",
|
|
13993
|
+
"org:dx2:hardis:sources:retrieve",
|
|
13994
|
+
"org:dx2:sources:hardis:retrieve",
|
|
13995
|
+
"org:dx2:sources:retrieve:hardis",
|
|
13996
|
+
"hardis:dx2:org:sources:retrieve",
|
|
13997
|
+
"dx2:hardis:org:sources:retrieve",
|
|
13998
|
+
"dx2:org:hardis:sources:retrieve",
|
|
13999
|
+
"dx2:org:sources:hardis:retrieve",
|
|
14000
|
+
"dx2:org:sources:retrieve:hardis",
|
|
14001
|
+
"hardis:dx2:sources:org:retrieve",
|
|
14002
|
+
"dx2:hardis:sources:org:retrieve",
|
|
14003
|
+
"dx2:sources:hardis:org:retrieve",
|
|
14004
|
+
"dx2:sources:org:hardis:retrieve",
|
|
14005
|
+
"dx2:sources:org:retrieve:hardis",
|
|
14006
|
+
"hardis:dx2:sources:retrieve:org",
|
|
14007
|
+
"dx2:hardis:sources:retrieve:org",
|
|
14008
|
+
"dx2:sources:hardis:retrieve:org",
|
|
14009
|
+
"dx2:sources:retrieve:hardis:org",
|
|
14010
|
+
"dx2:sources:retrieve:org:hardis"
|
|
14011
|
+
]
|
|
14012
|
+
},
|
|
14013
|
+
"hardis:org:retrieve:sources:metadata": {
|
|
14014
|
+
"aliases": [],
|
|
14015
|
+
"args": {},
|
|
14016
|
+
"description": "Retrieve Salesforce DX project from org",
|
|
14017
|
+
"examples": [
|
|
14018
|
+
"$ sf hardis:org:retrieve:sources:metadata",
|
|
14019
|
+
"$ SFDX_RETRIEVE_WAIT_MINUTES=200 sf hardis:org:retrieve:sources:metadata"
|
|
14020
|
+
],
|
|
14021
|
+
"flags": {
|
|
14022
|
+
"json": {
|
|
14023
|
+
"description": "Format output as json.",
|
|
14024
|
+
"helpGroup": "GLOBAL",
|
|
14025
|
+
"name": "json",
|
|
14026
|
+
"allowNo": false,
|
|
14027
|
+
"type": "boolean"
|
|
14028
|
+
},
|
|
14029
|
+
"flags-dir": {
|
|
14030
|
+
"helpGroup": "GLOBAL",
|
|
14031
|
+
"name": "flags-dir",
|
|
14032
|
+
"summary": "Import flag values from a directory.",
|
|
14033
|
+
"hasDynamicHelp": false,
|
|
14034
|
+
"multiple": false,
|
|
14035
|
+
"type": "option"
|
|
14036
|
+
},
|
|
14037
|
+
"folder": {
|
|
14038
|
+
"char": "f",
|
|
14039
|
+
"description": "Folder",
|
|
14040
|
+
"name": "folder",
|
|
14041
|
+
"default": ".",
|
|
14042
|
+
"hasDynamicHelp": false,
|
|
14043
|
+
"multiple": false,
|
|
14044
|
+
"type": "option"
|
|
14045
|
+
},
|
|
14046
|
+
"packagexml": {
|
|
14047
|
+
"char": "p",
|
|
14048
|
+
"description": "Path to package.xml manifest file",
|
|
14049
|
+
"name": "packagexml",
|
|
14050
|
+
"hasDynamicHelp": false,
|
|
14051
|
+
"multiple": false,
|
|
14052
|
+
"type": "option"
|
|
14053
|
+
},
|
|
14054
|
+
"includemanaged": {
|
|
14055
|
+
"description": "Include items from managed packages",
|
|
14056
|
+
"name": "includemanaged",
|
|
14057
|
+
"allowNo": false,
|
|
14058
|
+
"type": "boolean"
|
|
14059
|
+
},
|
|
14060
|
+
"instanceurl": {
|
|
14061
|
+
"char": "r",
|
|
14062
|
+
"description": "URL of org instance",
|
|
14063
|
+
"name": "instanceurl",
|
|
14064
|
+
"hasDynamicHelp": false,
|
|
14065
|
+
"multiple": false,
|
|
14066
|
+
"type": "option"
|
|
14067
|
+
},
|
|
14068
|
+
"debug": {
|
|
14069
|
+
"char": "d",
|
|
14070
|
+
"description": "Activate debug mode (more logs)",
|
|
14071
|
+
"name": "debug",
|
|
14072
|
+
"allowNo": false,
|
|
14073
|
+
"type": "boolean"
|
|
14074
|
+
},
|
|
14075
|
+
"websocket": {
|
|
14076
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
14077
|
+
"name": "websocket",
|
|
14078
|
+
"hasDynamicHelp": false,
|
|
14079
|
+
"multiple": false,
|
|
14080
|
+
"type": "option"
|
|
14081
|
+
},
|
|
14082
|
+
"skipauth": {
|
|
14083
|
+
"description": "Skip authentication check when a default username is required",
|
|
14084
|
+
"name": "skipauth",
|
|
14085
|
+
"allowNo": false,
|
|
14086
|
+
"type": "boolean"
|
|
14087
|
+
},
|
|
14088
|
+
"target-org": {
|
|
14089
|
+
"aliases": [
|
|
14090
|
+
"targetusername",
|
|
14091
|
+
"u"
|
|
14092
|
+
],
|
|
14093
|
+
"char": "o",
|
|
14094
|
+
"deprecateAliases": true,
|
|
14095
|
+
"name": "target-org",
|
|
14096
|
+
"noCacheDefault": true,
|
|
14097
|
+
"required": true,
|
|
14098
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
14099
|
+
"hasDynamicHelp": true,
|
|
14100
|
+
"multiple": false,
|
|
14101
|
+
"type": "option"
|
|
14102
|
+
}
|
|
14103
|
+
},
|
|
14104
|
+
"hasDynamicHelp": true,
|
|
14105
|
+
"hiddenAliases": [],
|
|
14106
|
+
"id": "hardis:org:retrieve:sources:metadata",
|
|
14107
|
+
"pluginAlias": "sfdx-hardis",
|
|
14108
|
+
"pluginName": "sfdx-hardis",
|
|
14109
|
+
"pluginType": "core",
|
|
14110
|
+
"strict": true,
|
|
14111
|
+
"enableJsonFlag": true,
|
|
14112
|
+
"title": "Retrieve sfdx sources from org",
|
|
14113
|
+
"requiresProject": false,
|
|
14114
|
+
"triggerNotification": true,
|
|
14115
|
+
"isESM": true,
|
|
14116
|
+
"relativePath": [
|
|
14117
|
+
"lib",
|
|
14118
|
+
"commands",
|
|
14119
|
+
"hardis",
|
|
14120
|
+
"org",
|
|
14121
|
+
"retrieve",
|
|
14122
|
+
"sources",
|
|
14123
|
+
"metadata.js"
|
|
14124
|
+
],
|
|
14125
|
+
"aliasPermutations": [],
|
|
14126
|
+
"permutations": [
|
|
14127
|
+
"hardis:org:retrieve:sources:metadata",
|
|
14128
|
+
"org:hardis:retrieve:sources:metadata",
|
|
14129
|
+
"org:retrieve:hardis:sources:metadata",
|
|
14130
|
+
"org:retrieve:sources:hardis:metadata",
|
|
14131
|
+
"org:retrieve:sources:metadata:hardis",
|
|
14132
|
+
"hardis:retrieve:org:sources:metadata",
|
|
14133
|
+
"retrieve:hardis:org:sources:metadata",
|
|
14134
|
+
"retrieve:org:hardis:sources:metadata",
|
|
14135
|
+
"retrieve:org:sources:hardis:metadata",
|
|
14136
|
+
"retrieve:org:sources:metadata:hardis",
|
|
14137
|
+
"hardis:retrieve:sources:org:metadata",
|
|
14138
|
+
"retrieve:hardis:sources:org:metadata",
|
|
14139
|
+
"retrieve:sources:hardis:org:metadata",
|
|
14140
|
+
"retrieve:sources:org:hardis:metadata",
|
|
14141
|
+
"retrieve:sources:org:metadata:hardis",
|
|
14142
|
+
"hardis:retrieve:sources:metadata:org",
|
|
14143
|
+
"retrieve:hardis:sources:metadata:org",
|
|
14144
|
+
"retrieve:sources:hardis:metadata:org",
|
|
14145
|
+
"retrieve:sources:metadata:hardis:org",
|
|
14146
|
+
"retrieve:sources:metadata:org:hardis",
|
|
14147
|
+
"hardis:org:sources:retrieve:metadata",
|
|
14148
|
+
"org:hardis:sources:retrieve:metadata",
|
|
14149
|
+
"org:sources:hardis:retrieve:metadata",
|
|
14150
|
+
"org:sources:retrieve:hardis:metadata",
|
|
14151
|
+
"org:sources:retrieve:metadata:hardis",
|
|
14152
|
+
"hardis:sources:org:retrieve:metadata",
|
|
14153
|
+
"sources:hardis:org:retrieve:metadata",
|
|
14154
|
+
"sources:org:hardis:retrieve:metadata",
|
|
14155
|
+
"sources:org:retrieve:hardis:metadata",
|
|
14156
|
+
"sources:org:retrieve:metadata:hardis",
|
|
14157
|
+
"hardis:sources:retrieve:org:metadata",
|
|
14158
|
+
"sources:hardis:retrieve:org:metadata",
|
|
14159
|
+
"sources:retrieve:hardis:org:metadata",
|
|
14160
|
+
"sources:retrieve:org:hardis:metadata",
|
|
14161
|
+
"sources:retrieve:org:metadata:hardis",
|
|
14162
|
+
"hardis:sources:retrieve:metadata:org",
|
|
14163
|
+
"sources:hardis:retrieve:metadata:org",
|
|
14164
|
+
"sources:retrieve:hardis:metadata:org",
|
|
14165
|
+
"sources:retrieve:metadata:hardis:org",
|
|
14166
|
+
"sources:retrieve:metadata:org:hardis",
|
|
14167
|
+
"hardis:org:sources:metadata:retrieve",
|
|
14168
|
+
"org:hardis:sources:metadata:retrieve",
|
|
14169
|
+
"org:sources:hardis:metadata:retrieve",
|
|
14170
|
+
"org:sources:metadata:hardis:retrieve",
|
|
14171
|
+
"org:sources:metadata:retrieve:hardis",
|
|
14172
|
+
"hardis:sources:org:metadata:retrieve",
|
|
14173
|
+
"sources:hardis:org:metadata:retrieve",
|
|
14174
|
+
"sources:org:hardis:metadata:retrieve",
|
|
14175
|
+
"sources:org:metadata:hardis:retrieve",
|
|
14176
|
+
"sources:org:metadata:retrieve:hardis",
|
|
14177
|
+
"hardis:sources:metadata:org:retrieve",
|
|
14178
|
+
"sources:hardis:metadata:org:retrieve",
|
|
14179
|
+
"sources:metadata:hardis:org:retrieve",
|
|
14180
|
+
"sources:metadata:org:hardis:retrieve",
|
|
14181
|
+
"sources:metadata:org:retrieve:hardis",
|
|
14182
|
+
"hardis:sources:metadata:retrieve:org",
|
|
14183
|
+
"sources:hardis:metadata:retrieve:org",
|
|
14184
|
+
"sources:metadata:hardis:retrieve:org",
|
|
14185
|
+
"sources:metadata:retrieve:hardis:org",
|
|
14186
|
+
"sources:metadata:retrieve:org:hardis",
|
|
14187
|
+
"hardis:org:retrieve:metadata:sources",
|
|
14188
|
+
"org:hardis:retrieve:metadata:sources",
|
|
14189
|
+
"org:retrieve:hardis:metadata:sources",
|
|
14190
|
+
"org:retrieve:metadata:hardis:sources",
|
|
14191
|
+
"org:retrieve:metadata:sources:hardis",
|
|
14192
|
+
"hardis:retrieve:org:metadata:sources",
|
|
14193
|
+
"retrieve:hardis:org:metadata:sources",
|
|
14194
|
+
"retrieve:org:hardis:metadata:sources",
|
|
14195
|
+
"retrieve:org:metadata:hardis:sources",
|
|
14196
|
+
"retrieve:org:metadata:sources:hardis",
|
|
14197
|
+
"hardis:retrieve:metadata:org:sources",
|
|
14198
|
+
"retrieve:hardis:metadata:org:sources",
|
|
14199
|
+
"retrieve:metadata:hardis:org:sources",
|
|
14200
|
+
"retrieve:metadata:org:hardis:sources",
|
|
14201
|
+
"retrieve:metadata:org:sources:hardis",
|
|
14202
|
+
"hardis:retrieve:metadata:sources:org",
|
|
14203
|
+
"retrieve:hardis:metadata:sources:org",
|
|
14204
|
+
"retrieve:metadata:hardis:sources:org",
|
|
14205
|
+
"retrieve:metadata:sources:hardis:org",
|
|
14206
|
+
"retrieve:metadata:sources:org:hardis",
|
|
14207
|
+
"hardis:org:metadata:retrieve:sources",
|
|
14208
|
+
"org:hardis:metadata:retrieve:sources",
|
|
14209
|
+
"org:metadata:hardis:retrieve:sources",
|
|
14210
|
+
"org:metadata:retrieve:hardis:sources",
|
|
14211
|
+
"org:metadata:retrieve:sources:hardis",
|
|
14212
|
+
"hardis:metadata:org:retrieve:sources",
|
|
14213
|
+
"metadata:hardis:org:retrieve:sources",
|
|
14214
|
+
"metadata:org:hardis:retrieve:sources",
|
|
14215
|
+
"metadata:org:retrieve:hardis:sources",
|
|
14216
|
+
"metadata:org:retrieve:sources:hardis",
|
|
14217
|
+
"hardis:metadata:retrieve:org:sources",
|
|
14218
|
+
"metadata:hardis:retrieve:org:sources",
|
|
14219
|
+
"metadata:retrieve:hardis:org:sources",
|
|
14220
|
+
"metadata:retrieve:org:hardis:sources",
|
|
14221
|
+
"metadata:retrieve:org:sources:hardis",
|
|
14222
|
+
"hardis:metadata:retrieve:sources:org",
|
|
14223
|
+
"metadata:hardis:retrieve:sources:org",
|
|
14224
|
+
"metadata:retrieve:hardis:sources:org",
|
|
14225
|
+
"metadata:retrieve:sources:hardis:org",
|
|
14226
|
+
"metadata:retrieve:sources:org:hardis",
|
|
14227
|
+
"hardis:org:metadata:sources:retrieve",
|
|
14228
|
+
"org:hardis:metadata:sources:retrieve",
|
|
14229
|
+
"org:metadata:hardis:sources:retrieve",
|
|
14230
|
+
"org:metadata:sources:hardis:retrieve",
|
|
14231
|
+
"org:metadata:sources:retrieve:hardis",
|
|
14232
|
+
"hardis:metadata:org:sources:retrieve",
|
|
14233
|
+
"metadata:hardis:org:sources:retrieve",
|
|
14234
|
+
"metadata:org:hardis:sources:retrieve",
|
|
14235
|
+
"metadata:org:sources:hardis:retrieve",
|
|
14236
|
+
"metadata:org:sources:retrieve:hardis",
|
|
14237
|
+
"hardis:metadata:sources:org:retrieve",
|
|
14238
|
+
"metadata:hardis:sources:org:retrieve",
|
|
14239
|
+
"metadata:sources:hardis:org:retrieve",
|
|
14240
|
+
"metadata:sources:org:hardis:retrieve",
|
|
14241
|
+
"metadata:sources:org:retrieve:hardis",
|
|
14242
|
+
"hardis:metadata:sources:retrieve:org",
|
|
14243
|
+
"metadata:hardis:sources:retrieve:org",
|
|
14244
|
+
"metadata:sources:hardis:retrieve:org",
|
|
14245
|
+
"metadata:sources:retrieve:hardis:org",
|
|
14246
|
+
"metadata:sources:retrieve:org:hardis"
|
|
14247
|
+
]
|
|
14248
|
+
},
|
|
14249
|
+
"hardis:org:retrieve:sources:retrofit": {
|
|
14250
|
+
"aliases": [],
|
|
14251
|
+
"args": {},
|
|
14252
|
+
"description": "Retrieve changes from org link to a ref branch not present in sources\n\n This command need to be triggered from a branch that is connected to a SF org. It will then retrieve all changes not present in that branch sources, commit them and create a merge request against the default branch. If a merge request already exists, it will simply add a new commit.\n\n Define the following properties in **.sfdx-hardis.yml**\n\n - **productionBranch** : Name of the git branch that is corresponding to production org\n - **retrofitBranch** : Name of the git branch that will be used as merge request target\n\n List of metadata to retrieve can be set in three way, in order of priority :\n\n - `CI_SOURCES_TO_RETROFIT`: env variable (can be defined in CI context)\n - `sourcesToRetrofit` property in `.sfdx-hardis.yml`\n - Default list:\n\n - CompactLayout\n - CustomApplication\n - CustomField\n - CustomLabel\n - CustomLabels\n - CustomMetadata\n - CustomObject\n - CustomObjectTranslation\n - CustomTab\n - DuplicateRule\n - EmailTemplate\n - FlexiPage\n - GlobalValueSet\n - Layout\n - ListView\n - MatchingRules\n - PermissionSet\n - RecordType\n - StandardValueSet\n - Translations\n - ValidationRule\n\n You can also ignore some files even if they have been updated in production. To do that, define property **retrofitIgnoredFiles** in .sfdx-hardis.yml\n\n Example of full retrofit configuration:\n\n ```yaml\n productionBranch: master\n retrofitBranch: preprod\n retrofitIgnoredFiles:\n - force-app/main/default/applications/MyApp.app-meta.xml\n - force-app/main/default/applications/MyOtherApp.app-meta.xml\n - force-app/main/default/flexipages/MyFlexipageContainingDashboards.flexipage-meta.xml\n ```\n ",
|
|
14253
|
+
"examples": [
|
|
14254
|
+
"$ sf hardis:org:retrieve:sources:retrofit",
|
|
14255
|
+
"sf hardis:org:retrieve:sources:retrofit --productionbranch master --commit --commitmode updated",
|
|
14256
|
+
"sf hardis:org:retrieve:sources:retrofit --productionbranch master --retrofitbranch preprod --commit --commitmode updated --push --pushmode mergerequest"
|
|
14257
|
+
],
|
|
14258
|
+
"flags": {
|
|
14259
|
+
"json": {
|
|
14260
|
+
"description": "Format output as json.",
|
|
14261
|
+
"helpGroup": "GLOBAL",
|
|
14262
|
+
"name": "json",
|
|
14263
|
+
"allowNo": false,
|
|
14264
|
+
"type": "boolean"
|
|
14265
|
+
},
|
|
14266
|
+
"flags-dir": {
|
|
14267
|
+
"helpGroup": "GLOBAL",
|
|
14268
|
+
"name": "flags-dir",
|
|
14269
|
+
"summary": "Import flag values from a directory.",
|
|
14270
|
+
"hasDynamicHelp": false,
|
|
14271
|
+
"multiple": false,
|
|
14272
|
+
"type": "option"
|
|
14273
|
+
},
|
|
14274
|
+
"commit": {
|
|
14275
|
+
"description": "If true, a commit will be performed after the retrofit",
|
|
14276
|
+
"name": "commit",
|
|
14277
|
+
"allowNo": false,
|
|
14278
|
+
"type": "boolean"
|
|
14279
|
+
},
|
|
14280
|
+
"commitmode": {
|
|
14281
|
+
"description": "Defines if we commit all retrieved updates, or all updates including creations",
|
|
14282
|
+
"name": "commitmode",
|
|
14283
|
+
"default": "updated",
|
|
14284
|
+
"hasDynamicHelp": false,
|
|
14285
|
+
"multiple": false,
|
|
14286
|
+
"options": [
|
|
14287
|
+
"updated",
|
|
14288
|
+
"all"
|
|
14289
|
+
],
|
|
14290
|
+
"type": "option"
|
|
14291
|
+
},
|
|
14292
|
+
"push": {
|
|
14293
|
+
"description": "If true, a push will be performed after the retrofit",
|
|
14294
|
+
"name": "push",
|
|
14295
|
+
"allowNo": false,
|
|
14296
|
+
"type": "boolean"
|
|
14297
|
+
},
|
|
14298
|
+
"pushmode": {
|
|
14299
|
+
"description": "Defines if we send merge request options to git push arguments",
|
|
14300
|
+
"name": "pushmode",
|
|
14301
|
+
"default": "default",
|
|
14302
|
+
"hasDynamicHelp": false,
|
|
14303
|
+
"multiple": false,
|
|
14304
|
+
"options": [
|
|
14305
|
+
"default",
|
|
14306
|
+
"mergerequest"
|
|
14307
|
+
],
|
|
14308
|
+
"type": "option"
|
|
14309
|
+
},
|
|
14310
|
+
"productionbranch": {
|
|
14311
|
+
"description": "Name of the git branch corresponding to the org we want to perform the retrofit on.\nCan be defined in productionBranch property in .sfdx-hardis.yml",
|
|
14312
|
+
"name": "productionbranch",
|
|
14313
|
+
"hasDynamicHelp": false,
|
|
14314
|
+
"multiple": false,
|
|
14315
|
+
"type": "option"
|
|
14316
|
+
},
|
|
14317
|
+
"retrofittargetbranch": {
|
|
14318
|
+
"description": "Name of branch the merge request will have as target\nCan be defined in retrofitBranch property in .sfdx-hardis.yml",
|
|
14319
|
+
"name": "retrofittargetbranch",
|
|
14320
|
+
"hasDynamicHelp": false,
|
|
14321
|
+
"multiple": false,
|
|
14322
|
+
"type": "option"
|
|
14323
|
+
},
|
|
14324
|
+
"debug": {
|
|
14325
|
+
"char": "d",
|
|
14326
|
+
"description": "Activate debug mode (more logs)",
|
|
14327
|
+
"name": "debug",
|
|
14328
|
+
"allowNo": false,
|
|
14329
|
+
"type": "boolean"
|
|
14330
|
+
},
|
|
14331
|
+
"websocket": {
|
|
14332
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
14333
|
+
"name": "websocket",
|
|
14334
|
+
"hasDynamicHelp": false,
|
|
14335
|
+
"multiple": false,
|
|
14336
|
+
"type": "option"
|
|
14337
|
+
},
|
|
14338
|
+
"skipauth": {
|
|
14339
|
+
"description": "Skip authentication check when a default username is required",
|
|
14340
|
+
"name": "skipauth",
|
|
14341
|
+
"allowNo": false,
|
|
14342
|
+
"type": "boolean"
|
|
14343
|
+
},
|
|
14344
|
+
"target-org": {
|
|
14345
|
+
"aliases": [
|
|
14346
|
+
"targetusername",
|
|
14347
|
+
"u"
|
|
14348
|
+
],
|
|
14349
|
+
"char": "o",
|
|
14350
|
+
"deprecateAliases": true,
|
|
14351
|
+
"name": "target-org",
|
|
14352
|
+
"noCacheDefault": true,
|
|
14353
|
+
"required": true,
|
|
14354
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
14355
|
+
"hasDynamicHelp": true,
|
|
14356
|
+
"multiple": false,
|
|
14357
|
+
"type": "option"
|
|
14358
|
+
}
|
|
14359
|
+
},
|
|
14360
|
+
"hasDynamicHelp": true,
|
|
14361
|
+
"hiddenAliases": [],
|
|
14362
|
+
"id": "hardis:org:retrieve:sources:retrofit",
|
|
14363
|
+
"pluginAlias": "sfdx-hardis",
|
|
14364
|
+
"pluginName": "sfdx-hardis",
|
|
14365
|
+
"pluginType": "core",
|
|
14366
|
+
"strict": true,
|
|
14367
|
+
"enableJsonFlag": true,
|
|
14368
|
+
"DEFAULT_SOURCES_TO_RETROFIT": [
|
|
14369
|
+
"CompactLayout",
|
|
14370
|
+
"CustomApplication",
|
|
14371
|
+
"CustomField",
|
|
14372
|
+
"CustomLabel",
|
|
14373
|
+
"CustomLabels",
|
|
14374
|
+
"CustomMetadata",
|
|
14375
|
+
"CustomObject",
|
|
14376
|
+
"CustomObjectTranslation",
|
|
14377
|
+
"CustomTab",
|
|
14378
|
+
"DuplicateRule",
|
|
14379
|
+
"EmailTemplate",
|
|
14380
|
+
"FlexiPage",
|
|
14381
|
+
"GlobalValueSet",
|
|
14382
|
+
"Layout",
|
|
14383
|
+
"ListView",
|
|
14384
|
+
"MatchingRules",
|
|
14385
|
+
"PermissionSet",
|
|
14386
|
+
"RecordType",
|
|
14387
|
+
"StandardValueSet",
|
|
14388
|
+
"Translations",
|
|
14389
|
+
"ValidationRule"
|
|
14390
|
+
],
|
|
14391
|
+
"title": "Retrofit changes from an org",
|
|
14392
|
+
"requiresProject": true,
|
|
14393
|
+
"isESM": true,
|
|
14394
|
+
"relativePath": [
|
|
14395
|
+
"lib",
|
|
14396
|
+
"commands",
|
|
14397
|
+
"hardis",
|
|
14398
|
+
"org",
|
|
14399
|
+
"retrieve",
|
|
14400
|
+
"sources",
|
|
14401
|
+
"retrofit.js"
|
|
14402
|
+
],
|
|
14403
|
+
"aliasPermutations": [],
|
|
14404
|
+
"permutations": [
|
|
14405
|
+
"hardis:org:retrieve:sources:retrofit",
|
|
14406
|
+
"org:hardis:retrieve:sources:retrofit",
|
|
14407
|
+
"org:retrieve:hardis:sources:retrofit",
|
|
14408
|
+
"org:retrieve:sources:hardis:retrofit",
|
|
14409
|
+
"org:retrieve:sources:retrofit:hardis",
|
|
14410
|
+
"hardis:retrieve:org:sources:retrofit",
|
|
14411
|
+
"retrieve:hardis:org:sources:retrofit",
|
|
14412
|
+
"retrieve:org:hardis:sources:retrofit",
|
|
14413
|
+
"retrieve:org:sources:hardis:retrofit",
|
|
14414
|
+
"retrieve:org:sources:retrofit:hardis",
|
|
14415
|
+
"hardis:retrieve:sources:org:retrofit",
|
|
14416
|
+
"retrieve:hardis:sources:org:retrofit",
|
|
14417
|
+
"retrieve:sources:hardis:org:retrofit",
|
|
14418
|
+
"retrieve:sources:org:hardis:retrofit",
|
|
14419
|
+
"retrieve:sources:org:retrofit:hardis",
|
|
14420
|
+
"hardis:retrieve:sources:retrofit:org",
|
|
14421
|
+
"retrieve:hardis:sources:retrofit:org",
|
|
14422
|
+
"retrieve:sources:hardis:retrofit:org",
|
|
14423
|
+
"retrieve:sources:retrofit:hardis:org",
|
|
14424
|
+
"retrieve:sources:retrofit:org:hardis",
|
|
14425
|
+
"hardis:org:sources:retrieve:retrofit",
|
|
14426
|
+
"org:hardis:sources:retrieve:retrofit",
|
|
14427
|
+
"org:sources:hardis:retrieve:retrofit",
|
|
14428
|
+
"org:sources:retrieve:hardis:retrofit",
|
|
14429
|
+
"org:sources:retrieve:retrofit:hardis",
|
|
14430
|
+
"hardis:sources:org:retrieve:retrofit",
|
|
14431
|
+
"sources:hardis:org:retrieve:retrofit",
|
|
14432
|
+
"sources:org:hardis:retrieve:retrofit",
|
|
14433
|
+
"sources:org:retrieve:hardis:retrofit",
|
|
14434
|
+
"sources:org:retrieve:retrofit:hardis",
|
|
14435
|
+
"hardis:sources:retrieve:org:retrofit",
|
|
14436
|
+
"sources:hardis:retrieve:org:retrofit",
|
|
14437
|
+
"sources:retrieve:hardis:org:retrofit",
|
|
14438
|
+
"sources:retrieve:org:hardis:retrofit",
|
|
14439
|
+
"sources:retrieve:org:retrofit:hardis",
|
|
14440
|
+
"hardis:sources:retrieve:retrofit:org",
|
|
14441
|
+
"sources:hardis:retrieve:retrofit:org",
|
|
14442
|
+
"sources:retrieve:hardis:retrofit:org",
|
|
14443
|
+
"sources:retrieve:retrofit:hardis:org",
|
|
14444
|
+
"sources:retrieve:retrofit:org:hardis",
|
|
14445
|
+
"hardis:org:sources:retrofit:retrieve",
|
|
14446
|
+
"org:hardis:sources:retrofit:retrieve",
|
|
14447
|
+
"org:sources:hardis:retrofit:retrieve",
|
|
14448
|
+
"org:sources:retrofit:hardis:retrieve",
|
|
14449
|
+
"org:sources:retrofit:retrieve:hardis",
|
|
14450
|
+
"hardis:sources:org:retrofit:retrieve",
|
|
14451
|
+
"sources:hardis:org:retrofit:retrieve",
|
|
14452
|
+
"sources:org:hardis:retrofit:retrieve",
|
|
14453
|
+
"sources:org:retrofit:hardis:retrieve",
|
|
14454
|
+
"sources:org:retrofit:retrieve:hardis",
|
|
14455
|
+
"hardis:sources:retrofit:org:retrieve",
|
|
14456
|
+
"sources:hardis:retrofit:org:retrieve",
|
|
14457
|
+
"sources:retrofit:hardis:org:retrieve",
|
|
14458
|
+
"sources:retrofit:org:hardis:retrieve",
|
|
14459
|
+
"sources:retrofit:org:retrieve:hardis",
|
|
14460
|
+
"hardis:sources:retrofit:retrieve:org",
|
|
14461
|
+
"sources:hardis:retrofit:retrieve:org",
|
|
14462
|
+
"sources:retrofit:hardis:retrieve:org",
|
|
14463
|
+
"sources:retrofit:retrieve:hardis:org",
|
|
14464
|
+
"sources:retrofit:retrieve:org:hardis",
|
|
14465
|
+
"hardis:org:retrieve:retrofit:sources",
|
|
14466
|
+
"org:hardis:retrieve:retrofit:sources",
|
|
14467
|
+
"org:retrieve:hardis:retrofit:sources",
|
|
14468
|
+
"org:retrieve:retrofit:hardis:sources",
|
|
14469
|
+
"org:retrieve:retrofit:sources:hardis",
|
|
14470
|
+
"hardis:retrieve:org:retrofit:sources",
|
|
14471
|
+
"retrieve:hardis:org:retrofit:sources",
|
|
14472
|
+
"retrieve:org:hardis:retrofit:sources",
|
|
14473
|
+
"retrieve:org:retrofit:hardis:sources",
|
|
14474
|
+
"retrieve:org:retrofit:sources:hardis",
|
|
14475
|
+
"hardis:retrieve:retrofit:org:sources",
|
|
14476
|
+
"retrieve:hardis:retrofit:org:sources",
|
|
14477
|
+
"retrieve:retrofit:hardis:org:sources",
|
|
14478
|
+
"retrieve:retrofit:org:hardis:sources",
|
|
14479
|
+
"retrieve:retrofit:org:sources:hardis",
|
|
14480
|
+
"hardis:retrieve:retrofit:sources:org",
|
|
14481
|
+
"retrieve:hardis:retrofit:sources:org",
|
|
14482
|
+
"retrieve:retrofit:hardis:sources:org",
|
|
14483
|
+
"retrieve:retrofit:sources:hardis:org",
|
|
14484
|
+
"retrieve:retrofit:sources:org:hardis",
|
|
14485
|
+
"hardis:org:retrofit:retrieve:sources",
|
|
14486
|
+
"org:hardis:retrofit:retrieve:sources",
|
|
14487
|
+
"org:retrofit:hardis:retrieve:sources",
|
|
14488
|
+
"org:retrofit:retrieve:hardis:sources",
|
|
14489
|
+
"org:retrofit:retrieve:sources:hardis",
|
|
14490
|
+
"hardis:retrofit:org:retrieve:sources",
|
|
14491
|
+
"retrofit:hardis:org:retrieve:sources",
|
|
14492
|
+
"retrofit:org:hardis:retrieve:sources",
|
|
14493
|
+
"retrofit:org:retrieve:hardis:sources",
|
|
14494
|
+
"retrofit:org:retrieve:sources:hardis",
|
|
14495
|
+
"hardis:retrofit:retrieve:org:sources",
|
|
14496
|
+
"retrofit:hardis:retrieve:org:sources",
|
|
14497
|
+
"retrofit:retrieve:hardis:org:sources",
|
|
14498
|
+
"retrofit:retrieve:org:hardis:sources",
|
|
14499
|
+
"retrofit:retrieve:org:sources:hardis",
|
|
14500
|
+
"hardis:retrofit:retrieve:sources:org",
|
|
14501
|
+
"retrofit:hardis:retrieve:sources:org",
|
|
14502
|
+
"retrofit:retrieve:hardis:sources:org",
|
|
14503
|
+
"retrofit:retrieve:sources:hardis:org",
|
|
14504
|
+
"retrofit:retrieve:sources:org:hardis",
|
|
14505
|
+
"hardis:org:retrofit:sources:retrieve",
|
|
14506
|
+
"org:hardis:retrofit:sources:retrieve",
|
|
14507
|
+
"org:retrofit:hardis:sources:retrieve",
|
|
14508
|
+
"org:retrofit:sources:hardis:retrieve",
|
|
14509
|
+
"org:retrofit:sources:retrieve:hardis",
|
|
14510
|
+
"hardis:retrofit:org:sources:retrieve",
|
|
14511
|
+
"retrofit:hardis:org:sources:retrieve",
|
|
14512
|
+
"retrofit:org:hardis:sources:retrieve",
|
|
14513
|
+
"retrofit:org:sources:hardis:retrieve",
|
|
14514
|
+
"retrofit:org:sources:retrieve:hardis",
|
|
14515
|
+
"hardis:retrofit:sources:org:retrieve",
|
|
14516
|
+
"retrofit:hardis:sources:org:retrieve",
|
|
14517
|
+
"retrofit:sources:hardis:org:retrieve",
|
|
14518
|
+
"retrofit:sources:org:hardis:retrieve",
|
|
14519
|
+
"retrofit:sources:org:retrieve:hardis",
|
|
14520
|
+
"hardis:retrofit:sources:retrieve:org",
|
|
14521
|
+
"retrofit:hardis:sources:retrieve:org",
|
|
14522
|
+
"retrofit:sources:hardis:retrieve:org",
|
|
14523
|
+
"retrofit:sources:retrieve:hardis:org",
|
|
14524
|
+
"retrofit:sources:retrieve:org:hardis"
|
|
14525
14525
|
]
|
|
14526
14526
|
}
|
|
14527
14527
|
},
|
|
14528
|
-
"version": "5.
|
|
14528
|
+
"version": "5.32.1"
|
|
14529
14529
|
}
|