sfdx-hardis 5.24.3 → 5.25.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 +10 -0
- package/lib/commands/hardis/doc/packagexml2markdown.js +2 -2
- package/lib/commands/hardis/doc/packagexml2markdown.js.map +1 -1
- package/lib/commands/hardis/doc/project2markdown.d.ts +2 -8
- package/lib/commands/hardis/doc/project2markdown.js +69 -206
- package/lib/commands/hardis/doc/project2markdown.js.map +1 -1
- package/lib/common/aiProvider/promptTemplates.d.ts +7 -1
- package/lib/common/aiProvider/promptTemplates.js +30 -0
- package/lib/common/aiProvider/promptTemplates.js.map +1 -1
- package/lib/common/aiProvider/utils.d.ts +0 -1
- package/lib/common/aiProvider/utils.js +1 -41
- package/lib/common/aiProvider/utils.js.map +1 -1
- package/lib/common/docBuilder/docBuilderApex.d.ts +8 -0
- package/lib/common/docBuilder/docBuilderApex.js +28 -0
- package/lib/common/docBuilder/docBuilderApex.js.map +1 -0
- package/lib/common/docBuilder/docBuilderFlow.d.ts +10 -0
- package/lib/common/docBuilder/docBuilderFlow.js +43 -0
- package/lib/common/docBuilder/docBuilderFlow.js.map +1 -0
- package/lib/common/docBuilder/docBuilderObject.d.ts +13 -0
- package/lib/common/docBuilder/docBuilderObject.js +116 -0
- package/lib/common/docBuilder/docBuilderObject.js.map +1 -0
- package/lib/common/docBuilder/docBuilderPackageXml.d.ts +8 -0
- package/lib/common/docBuilder/docBuilderPackageXml.js +136 -0
- package/lib/common/docBuilder/docBuilderPackageXml.js.map +1 -0
- package/lib/common/docBuilder/docBuilderPage.d.ts +10 -0
- package/lib/common/docBuilder/docBuilderPage.js +40 -0
- package/lib/common/docBuilder/docBuilderPage.js.map +1 -0
- package/lib/common/docBuilder/docBuilderProfile.d.ts +11 -0
- package/lib/common/docBuilder/docBuilderProfile.js +86 -0
- package/lib/common/docBuilder/docBuilderProfile.js.map +1 -0
- package/lib/common/docBuilder/docBuilderRoot.d.ts +18 -0
- package/lib/common/docBuilder/docBuilderRoot.js +79 -0
- package/lib/common/docBuilder/docBuilderRoot.js.map +1 -0
- package/lib/common/docBuilder/docUtils.d.ts +0 -4
- package/lib/common/docBuilder/docUtils.js +0 -206
- package/lib/common/docBuilder/docUtils.js.map +1 -1
- package/lib/common/gitProvider/azureDevops.js +3 -0
- package/lib/common/gitProvider/azureDevops.js.map +1 -1
- package/lib/common/gitProvider/bitbucket.js +3 -0
- package/lib/common/gitProvider/bitbucket.js.map +1 -1
- package/lib/common/gitProvider/github.d.ts +4 -0
- package/lib/common/gitProvider/github.js +31 -31
- package/lib/common/gitProvider/github.js.map +1 -1
- package/lib/common/gitProvider/gitlab.js +3 -0
- package/lib/common/gitProvider/gitlab.js.map +1 -1
- package/lib/common/utils/mermaidUtils.js +6 -29
- package/lib/common/utils/mermaidUtils.js.map +1 -1
- package/oclif.lock +33 -33
- package/oclif.manifest.json +513 -513
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -57,13 +57,12 @@
|
|
|
57
57
|
"world:hello"
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
|
-
"hardis:
|
|
60
|
+
"hardis:cache:clear": {
|
|
61
61
|
"aliases": [],
|
|
62
62
|
"args": {},
|
|
63
|
-
"description": "
|
|
63
|
+
"description": "Clear cache generated by sfdx-hardis",
|
|
64
64
|
"examples": [
|
|
65
|
-
"$ sf hardis:
|
|
66
|
-
"CI=true sf hardis:auth:login"
|
|
65
|
+
"$ sf hardis:cache:clear"
|
|
67
66
|
],
|
|
68
67
|
"flags": {
|
|
69
68
|
"json": {
|
|
@@ -81,28 +80,6 @@
|
|
|
81
80
|
"multiple": false,
|
|
82
81
|
"type": "option"
|
|
83
82
|
},
|
|
84
|
-
"instanceurl": {
|
|
85
|
-
"char": "r",
|
|
86
|
-
"description": "URL of org instance",
|
|
87
|
-
"name": "instanceurl",
|
|
88
|
-
"hasDynamicHelp": false,
|
|
89
|
-
"multiple": false,
|
|
90
|
-
"type": "option"
|
|
91
|
-
},
|
|
92
|
-
"devhub": {
|
|
93
|
-
"char": "h",
|
|
94
|
-
"description": "Also connect associated DevHub",
|
|
95
|
-
"name": "devhub",
|
|
96
|
-
"allowNo": false,
|
|
97
|
-
"type": "boolean"
|
|
98
|
-
},
|
|
99
|
-
"scratchorg": {
|
|
100
|
-
"char": "s",
|
|
101
|
-
"description": "Scratch org",
|
|
102
|
-
"name": "scratchorg",
|
|
103
|
-
"allowNo": false,
|
|
104
|
-
"type": "boolean"
|
|
105
|
-
},
|
|
106
83
|
"debug": {
|
|
107
84
|
"char": "d",
|
|
108
85
|
"description": "Activate debug mode (more logs)",
|
|
@@ -126,38 +103,39 @@
|
|
|
126
103
|
},
|
|
127
104
|
"hasDynamicHelp": false,
|
|
128
105
|
"hiddenAliases": [],
|
|
129
|
-
"id": "hardis:
|
|
106
|
+
"id": "hardis:cache:clear",
|
|
130
107
|
"pluginAlias": "sfdx-hardis",
|
|
131
108
|
"pluginName": "sfdx-hardis",
|
|
132
109
|
"pluginType": "core",
|
|
133
110
|
"strict": true,
|
|
134
111
|
"enableJsonFlag": true,
|
|
135
|
-
"title": "
|
|
112
|
+
"title": "Clear sfdx-hardis cache",
|
|
136
113
|
"requiresProject": false,
|
|
137
114
|
"isESM": true,
|
|
138
115
|
"relativePath": [
|
|
139
116
|
"lib",
|
|
140
117
|
"commands",
|
|
141
118
|
"hardis",
|
|
142
|
-
"
|
|
143
|
-
"
|
|
119
|
+
"cache",
|
|
120
|
+
"clear.js"
|
|
144
121
|
],
|
|
145
122
|
"aliasPermutations": [],
|
|
146
123
|
"permutations": [
|
|
147
|
-
"hardis:
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"hardis:
|
|
151
|
-
"
|
|
152
|
-
"
|
|
124
|
+
"hardis:cache:clear",
|
|
125
|
+
"cache:hardis:clear",
|
|
126
|
+
"cache:clear:hardis",
|
|
127
|
+
"hardis:clear:cache",
|
|
128
|
+
"clear:hardis:cache",
|
|
129
|
+
"clear:cache:hardis"
|
|
153
130
|
]
|
|
154
131
|
},
|
|
155
|
-
"hardis:
|
|
132
|
+
"hardis:auth:login": {
|
|
156
133
|
"aliases": [],
|
|
157
134
|
"args": {},
|
|
158
|
-
"description": "
|
|
135
|
+
"description": "Login to salesforce org",
|
|
159
136
|
"examples": [
|
|
160
|
-
"$ sf hardis:
|
|
137
|
+
"$ sf hardis:auth:login",
|
|
138
|
+
"CI=true sf hardis:auth:login"
|
|
161
139
|
],
|
|
162
140
|
"flags": {
|
|
163
141
|
"json": {
|
|
@@ -175,6 +153,28 @@
|
|
|
175
153
|
"multiple": false,
|
|
176
154
|
"type": "option"
|
|
177
155
|
},
|
|
156
|
+
"instanceurl": {
|
|
157
|
+
"char": "r",
|
|
158
|
+
"description": "URL of org instance",
|
|
159
|
+
"name": "instanceurl",
|
|
160
|
+
"hasDynamicHelp": false,
|
|
161
|
+
"multiple": false,
|
|
162
|
+
"type": "option"
|
|
163
|
+
},
|
|
164
|
+
"devhub": {
|
|
165
|
+
"char": "h",
|
|
166
|
+
"description": "Also connect associated DevHub",
|
|
167
|
+
"name": "devhub",
|
|
168
|
+
"allowNo": false,
|
|
169
|
+
"type": "boolean"
|
|
170
|
+
},
|
|
171
|
+
"scratchorg": {
|
|
172
|
+
"char": "s",
|
|
173
|
+
"description": "Scratch org",
|
|
174
|
+
"name": "scratchorg",
|
|
175
|
+
"allowNo": false,
|
|
176
|
+
"type": "boolean"
|
|
177
|
+
},
|
|
178
178
|
"debug": {
|
|
179
179
|
"char": "d",
|
|
180
180
|
"description": "Activate debug mode (more logs)",
|
|
@@ -198,30 +198,30 @@
|
|
|
198
198
|
},
|
|
199
199
|
"hasDynamicHelp": false,
|
|
200
200
|
"hiddenAliases": [],
|
|
201
|
-
"id": "hardis:
|
|
201
|
+
"id": "hardis:auth:login",
|
|
202
202
|
"pluginAlias": "sfdx-hardis",
|
|
203
203
|
"pluginName": "sfdx-hardis",
|
|
204
204
|
"pluginType": "core",
|
|
205
205
|
"strict": true,
|
|
206
206
|
"enableJsonFlag": true,
|
|
207
|
-
"title": "
|
|
207
|
+
"title": "Login",
|
|
208
208
|
"requiresProject": false,
|
|
209
209
|
"isESM": true,
|
|
210
210
|
"relativePath": [
|
|
211
211
|
"lib",
|
|
212
212
|
"commands",
|
|
213
213
|
"hardis",
|
|
214
|
-
"
|
|
215
|
-
"
|
|
214
|
+
"auth",
|
|
215
|
+
"login.js"
|
|
216
216
|
],
|
|
217
217
|
"aliasPermutations": [],
|
|
218
218
|
"permutations": [
|
|
219
|
-
"hardis:
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"hardis:
|
|
223
|
-
"
|
|
224
|
-
"
|
|
219
|
+
"hardis:auth:login",
|
|
220
|
+
"auth:hardis:login",
|
|
221
|
+
"auth:login:hardis",
|
|
222
|
+
"hardis:login:auth",
|
|
223
|
+
"login:hardis:auth",
|
|
224
|
+
"login:auth:hardis"
|
|
225
225
|
]
|
|
226
226
|
},
|
|
227
227
|
"hardis:config:get": {
|
|
@@ -2386,12 +2386,12 @@
|
|
|
2386
2386
|
"mergexml:package:hardis"
|
|
2387
2387
|
]
|
|
2388
2388
|
},
|
|
2389
|
-
"hardis:
|
|
2389
|
+
"hardis:packagexml:append": {
|
|
2390
2390
|
"aliases": [],
|
|
2391
2391
|
"args": {},
|
|
2392
|
-
"description": "
|
|
2392
|
+
"description": "Append one or multiple package.xml files into a single one",
|
|
2393
2393
|
"examples": [
|
|
2394
|
-
"$ sf hardis
|
|
2394
|
+
"$ sf hardis packagexml append -p package1.xml,package2.xml -o package3.xml"
|
|
2395
2395
|
],
|
|
2396
2396
|
"flags": {
|
|
2397
2397
|
"json": {
|
|
@@ -2409,62 +2409,70 @@
|
|
|
2409
2409
|
"multiple": false,
|
|
2410
2410
|
"type": "option"
|
|
2411
2411
|
},
|
|
2412
|
+
"packagexmls": {
|
|
2413
|
+
"char": "p",
|
|
2414
|
+
"description": "package.xml files path (separated by commas)",
|
|
2415
|
+
"name": "packagexmls",
|
|
2416
|
+
"required": true,
|
|
2417
|
+
"hasDynamicHelp": false,
|
|
2418
|
+
"multiple": false,
|
|
2419
|
+
"type": "option"
|
|
2420
|
+
},
|
|
2421
|
+
"outputfile": {
|
|
2422
|
+
"char": "f",
|
|
2423
|
+
"description": "package.xml output file",
|
|
2424
|
+
"name": "outputfile",
|
|
2425
|
+
"required": true,
|
|
2426
|
+
"hasDynamicHelp": false,
|
|
2427
|
+
"multiple": false,
|
|
2428
|
+
"type": "option"
|
|
2429
|
+
},
|
|
2412
2430
|
"debug": {
|
|
2413
|
-
"
|
|
2414
|
-
"description": "Activate debug mode (more logs)",
|
|
2431
|
+
"description": "debug",
|
|
2415
2432
|
"name": "debug",
|
|
2416
2433
|
"allowNo": false,
|
|
2417
2434
|
"type": "boolean"
|
|
2418
2435
|
},
|
|
2419
2436
|
"websocket": {
|
|
2420
|
-
"description": "
|
|
2437
|
+
"description": "websocket",
|
|
2421
2438
|
"name": "websocket",
|
|
2422
2439
|
"hasDynamicHelp": false,
|
|
2423
2440
|
"multiple": false,
|
|
2424
2441
|
"type": "option"
|
|
2425
|
-
},
|
|
2426
|
-
"skipauth": {
|
|
2427
|
-
"description": "Skip authentication check when a default username is required",
|
|
2428
|
-
"name": "skipauth",
|
|
2429
|
-
"allowNo": false,
|
|
2430
|
-
"type": "boolean"
|
|
2431
2442
|
}
|
|
2432
2443
|
},
|
|
2433
2444
|
"hasDynamicHelp": false,
|
|
2434
2445
|
"hiddenAliases": [],
|
|
2435
|
-
"id": "hardis:
|
|
2446
|
+
"id": "hardis:packagexml:append",
|
|
2436
2447
|
"pluginAlias": "sfdx-hardis",
|
|
2437
2448
|
"pluginName": "sfdx-hardis",
|
|
2438
2449
|
"pluginType": "core",
|
|
2439
2450
|
"strict": true,
|
|
2440
2451
|
"enableJsonFlag": true,
|
|
2441
|
-
"title": "Login",
|
|
2442
|
-
"requiresProject": false,
|
|
2443
2452
|
"isESM": true,
|
|
2444
2453
|
"relativePath": [
|
|
2445
2454
|
"lib",
|
|
2446
2455
|
"commands",
|
|
2447
2456
|
"hardis",
|
|
2448
|
-
"
|
|
2449
|
-
"
|
|
2457
|
+
"packagexml",
|
|
2458
|
+
"append.js"
|
|
2450
2459
|
],
|
|
2451
2460
|
"aliasPermutations": [],
|
|
2452
2461
|
"permutations": [
|
|
2453
|
-
"hardis:
|
|
2454
|
-
"
|
|
2455
|
-
"
|
|
2456
|
-
"hardis:
|
|
2457
|
-
"
|
|
2458
|
-
"
|
|
2462
|
+
"hardis:packagexml:append",
|
|
2463
|
+
"packagexml:hardis:append",
|
|
2464
|
+
"packagexml:append:hardis",
|
|
2465
|
+
"hardis:append:packagexml",
|
|
2466
|
+
"append:hardis:packagexml",
|
|
2467
|
+
"append:packagexml:hardis"
|
|
2459
2468
|
]
|
|
2460
2469
|
},
|
|
2461
|
-
"hardis:
|
|
2470
|
+
"hardis:packagexml:remove": {
|
|
2462
2471
|
"aliases": [],
|
|
2463
2472
|
"args": {},
|
|
2464
|
-
"description": "
|
|
2473
|
+
"description": "Removes the content of a package.xml file matching another package.xml file",
|
|
2465
2474
|
"examples": [
|
|
2466
|
-
"$ sf hardis:
|
|
2467
|
-
"$ sf hardis:project:lint --fix"
|
|
2475
|
+
"$ sf hardis packagexml:remove -p package.xml -r destructiveChanges.xml -o my-reduced-package.xml"
|
|
2468
2476
|
],
|
|
2469
2477
|
"flags": {
|
|
2470
2478
|
"json": {
|
|
@@ -2482,82 +2490,85 @@
|
|
|
2482
2490
|
"multiple": false,
|
|
2483
2491
|
"type": "option"
|
|
2484
2492
|
},
|
|
2485
|
-
"
|
|
2486
|
-
"char": "
|
|
2487
|
-
"description": "
|
|
2488
|
-
"name": "
|
|
2489
|
-
"
|
|
2490
|
-
"
|
|
2493
|
+
"packagexml": {
|
|
2494
|
+
"char": "p",
|
|
2495
|
+
"description": "package.xml file to reduce",
|
|
2496
|
+
"name": "packagexml",
|
|
2497
|
+
"hasDynamicHelp": false,
|
|
2498
|
+
"multiple": false,
|
|
2499
|
+
"type": "option"
|
|
2491
2500
|
},
|
|
2492
|
-
"
|
|
2493
|
-
"char": "
|
|
2494
|
-
"description": "
|
|
2495
|
-
"name": "
|
|
2501
|
+
"removepackagexml": {
|
|
2502
|
+
"char": "r",
|
|
2503
|
+
"description": "package.xml file to use to filter input package.xml",
|
|
2504
|
+
"name": "removepackagexml",
|
|
2505
|
+
"hasDynamicHelp": false,
|
|
2506
|
+
"multiple": false,
|
|
2507
|
+
"type": "option"
|
|
2508
|
+
},
|
|
2509
|
+
"removedonly": {
|
|
2510
|
+
"char": "z",
|
|
2511
|
+
"description": "Use this flag to generate a package.xml with only removed items",
|
|
2512
|
+
"name": "removedonly",
|
|
2496
2513
|
"allowNo": false,
|
|
2497
2514
|
"type": "boolean"
|
|
2498
2515
|
},
|
|
2499
|
-
"
|
|
2500
|
-
"
|
|
2501
|
-
"
|
|
2516
|
+
"outputfile": {
|
|
2517
|
+
"char": "f",
|
|
2518
|
+
"description": "package.xml output file",
|
|
2519
|
+
"name": "outputfile",
|
|
2520
|
+
"required": true,
|
|
2502
2521
|
"hasDynamicHelp": false,
|
|
2503
2522
|
"multiple": false,
|
|
2504
2523
|
"type": "option"
|
|
2505
2524
|
},
|
|
2506
|
-
"
|
|
2507
|
-
"description": "
|
|
2508
|
-
"name": "
|
|
2525
|
+
"debug": {
|
|
2526
|
+
"description": "debug",
|
|
2527
|
+
"name": "debug",
|
|
2509
2528
|
"allowNo": false,
|
|
2510
2529
|
"type": "boolean"
|
|
2511
2530
|
},
|
|
2512
|
-
"
|
|
2513
|
-
"
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
],
|
|
2517
|
-
"char": "o",
|
|
2518
|
-
"deprecateAliases": true,
|
|
2519
|
-
"name": "target-org",
|
|
2520
|
-
"noCacheDefault": true,
|
|
2521
|
-
"summary": "Username or alias of the target org.",
|
|
2522
|
-
"hasDynamicHelp": true,
|
|
2531
|
+
"websocket": {
|
|
2532
|
+
"description": "websocket",
|
|
2533
|
+
"name": "websocket",
|
|
2534
|
+
"hasDynamicHelp": false,
|
|
2523
2535
|
"multiple": false,
|
|
2524
2536
|
"type": "option"
|
|
2525
2537
|
}
|
|
2526
2538
|
},
|
|
2527
|
-
"hasDynamicHelp":
|
|
2539
|
+
"hasDynamicHelp": false,
|
|
2528
2540
|
"hiddenAliases": [],
|
|
2529
|
-
"id": "hardis:
|
|
2541
|
+
"id": "hardis:packagexml:remove",
|
|
2530
2542
|
"pluginAlias": "sfdx-hardis",
|
|
2531
2543
|
"pluginName": "sfdx-hardis",
|
|
2532
2544
|
"pluginType": "core",
|
|
2533
2545
|
"strict": true,
|
|
2534
2546
|
"enableJsonFlag": true,
|
|
2535
|
-
"title": "Lint",
|
|
2536
2547
|
"requiresProject": false,
|
|
2537
2548
|
"isESM": true,
|
|
2538
2549
|
"relativePath": [
|
|
2539
2550
|
"lib",
|
|
2540
2551
|
"commands",
|
|
2541
2552
|
"hardis",
|
|
2542
|
-
"
|
|
2543
|
-
"
|
|
2553
|
+
"packagexml",
|
|
2554
|
+
"remove.js"
|
|
2544
2555
|
],
|
|
2545
2556
|
"aliasPermutations": [],
|
|
2546
2557
|
"permutations": [
|
|
2547
|
-
"hardis:
|
|
2548
|
-
"
|
|
2549
|
-
"
|
|
2550
|
-
"hardis:
|
|
2551
|
-
"
|
|
2552
|
-
"
|
|
2558
|
+
"hardis:packagexml:remove",
|
|
2559
|
+
"packagexml:hardis:remove",
|
|
2560
|
+
"packagexml:remove:hardis",
|
|
2561
|
+
"hardis:remove:packagexml",
|
|
2562
|
+
"remove:hardis:packagexml",
|
|
2563
|
+
"remove:packagexml:hardis"
|
|
2553
2564
|
]
|
|
2554
2565
|
},
|
|
2555
|
-
"hardis:
|
|
2566
|
+
"hardis:project:create": {
|
|
2556
2567
|
"aliases": [],
|
|
2557
2568
|
"args": {},
|
|
2558
|
-
"description": "Create
|
|
2569
|
+
"description": "Create a new SFDX Project",
|
|
2559
2570
|
"examples": [
|
|
2560
|
-
"$ sf hardis:
|
|
2571
|
+
"$ sf hardis:project:create"
|
|
2561
2572
|
],
|
|
2562
2573
|
"flags": {
|
|
2563
2574
|
"json": {
|
|
@@ -2575,23 +2586,10 @@
|
|
|
2575
2586
|
"multiple": false,
|
|
2576
2587
|
"type": "option"
|
|
2577
2588
|
},
|
|
2578
|
-
"
|
|
2579
|
-
"char": "
|
|
2580
|
-
"description": "
|
|
2581
|
-
"name": "
|
|
2582
|
-
"allowNo": false,
|
|
2583
|
-
"type": "boolean"
|
|
2584
|
-
},
|
|
2585
|
-
"pool": {
|
|
2586
|
-
"description": "Creates the scratch org for a scratch org pool",
|
|
2587
|
-
"name": "pool",
|
|
2588
|
-
"allowNo": false,
|
|
2589
|
-
"type": "boolean"
|
|
2590
|
-
},
|
|
2591
|
-
"debug": {
|
|
2592
|
-
"char": "d",
|
|
2593
|
-
"description": "Activate debug mode (more logs)",
|
|
2594
|
-
"name": "debug",
|
|
2589
|
+
"debug": {
|
|
2590
|
+
"char": "d",
|
|
2591
|
+
"description": "Activate debug mode (more logs)",
|
|
2592
|
+
"name": "debug",
|
|
2595
2593
|
"allowNo": false,
|
|
2596
2594
|
"type": "boolean"
|
|
2597
2595
|
},
|
|
@@ -2607,60 +2605,43 @@
|
|
|
2607
2605
|
"name": "skipauth",
|
|
2608
2606
|
"allowNo": false,
|
|
2609
2607
|
"type": "boolean"
|
|
2610
|
-
},
|
|
2611
|
-
"target-dev-hub": {
|
|
2612
|
-
"aliases": [
|
|
2613
|
-
"targetdevhubusername"
|
|
2614
|
-
],
|
|
2615
|
-
"char": "v",
|
|
2616
|
-
"deprecateAliases": true,
|
|
2617
|
-
"name": "target-dev-hub",
|
|
2618
|
-
"noCacheDefault": true,
|
|
2619
|
-
"required": true,
|
|
2620
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2621
|
-
"hasDynamicHelp": true,
|
|
2622
|
-
"multiple": false,
|
|
2623
|
-
"type": "option"
|
|
2624
2608
|
}
|
|
2625
2609
|
},
|
|
2626
|
-
"hasDynamicHelp":
|
|
2610
|
+
"hasDynamicHelp": false,
|
|
2627
2611
|
"hiddenAliases": [],
|
|
2628
|
-
"id": "hardis:
|
|
2612
|
+
"id": "hardis:project:create",
|
|
2629
2613
|
"pluginAlias": "sfdx-hardis",
|
|
2630
2614
|
"pluginName": "sfdx-hardis",
|
|
2631
2615
|
"pluginType": "core",
|
|
2632
2616
|
"strict": true,
|
|
2633
2617
|
"enableJsonFlag": true,
|
|
2634
|
-
"title": "
|
|
2635
|
-
"requiresProject":
|
|
2636
|
-
"requiresSfdxPlugins": [
|
|
2637
|
-
"sfdmu",
|
|
2638
|
-
"texei-sfdx-plugin"
|
|
2639
|
-
],
|
|
2618
|
+
"title": "Login",
|
|
2619
|
+
"requiresProject": false,
|
|
2640
2620
|
"isESM": true,
|
|
2641
2621
|
"relativePath": [
|
|
2642
2622
|
"lib",
|
|
2643
2623
|
"commands",
|
|
2644
2624
|
"hardis",
|
|
2645
|
-
"
|
|
2625
|
+
"project",
|
|
2646
2626
|
"create.js"
|
|
2647
2627
|
],
|
|
2648
2628
|
"aliasPermutations": [],
|
|
2649
2629
|
"permutations": [
|
|
2650
|
-
"hardis:
|
|
2651
|
-
"
|
|
2652
|
-
"
|
|
2653
|
-
"hardis:create:
|
|
2654
|
-
"create:hardis:
|
|
2655
|
-
"create:
|
|
2630
|
+
"hardis:project:create",
|
|
2631
|
+
"project:hardis:create",
|
|
2632
|
+
"project:create:hardis",
|
|
2633
|
+
"hardis:create:project",
|
|
2634
|
+
"create:hardis:project",
|
|
2635
|
+
"create:project:hardis"
|
|
2656
2636
|
]
|
|
2657
2637
|
},
|
|
2658
|
-
"hardis:
|
|
2638
|
+
"hardis:project:lint": {
|
|
2659
2639
|
"aliases": [],
|
|
2660
2640
|
"args": {},
|
|
2661
|
-
"description": "
|
|
2641
|
+
"description": "Apply syntactic analysis (linters) on the repository sources, using Mega-Linter",
|
|
2662
2642
|
"examples": [
|
|
2663
|
-
"$ sf hardis:
|
|
2643
|
+
"$ sf hardis:project:lint",
|
|
2644
|
+
"$ sf hardis:project:lint --fix"
|
|
2664
2645
|
],
|
|
2665
2646
|
"flags": {
|
|
2666
2647
|
"json": {
|
|
@@ -2678,6 +2659,13 @@
|
|
|
2678
2659
|
"multiple": false,
|
|
2679
2660
|
"type": "option"
|
|
2680
2661
|
},
|
|
2662
|
+
"fix": {
|
|
2663
|
+
"char": "f",
|
|
2664
|
+
"description": "Apply linters fixes",
|
|
2665
|
+
"name": "fix",
|
|
2666
|
+
"allowNo": false,
|
|
2667
|
+
"type": "boolean"
|
|
2668
|
+
},
|
|
2681
2669
|
"debug": {
|
|
2682
2670
|
"char": "d",
|
|
2683
2671
|
"description": "Activate debug mode (more logs)",
|
|
@@ -2698,16 +2686,16 @@
|
|
|
2698
2686
|
"allowNo": false,
|
|
2699
2687
|
"type": "boolean"
|
|
2700
2688
|
},
|
|
2701
|
-
"target-
|
|
2689
|
+
"target-org": {
|
|
2702
2690
|
"aliases": [
|
|
2703
|
-
"
|
|
2691
|
+
"targetusername",
|
|
2692
|
+
"u"
|
|
2704
2693
|
],
|
|
2705
|
-
"char": "
|
|
2694
|
+
"char": "o",
|
|
2706
2695
|
"deprecateAliases": true,
|
|
2707
|
-
"name": "target-
|
|
2696
|
+
"name": "target-org",
|
|
2708
2697
|
"noCacheDefault": true,
|
|
2709
|
-
"
|
|
2710
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2698
|
+
"summary": "Username or alias of the target org.",
|
|
2711
2699
|
"hasDynamicHelp": true,
|
|
2712
2700
|
"multiple": false,
|
|
2713
2701
|
"type": "option"
|
|
@@ -2715,37 +2703,38 @@
|
|
|
2715
2703
|
},
|
|
2716
2704
|
"hasDynamicHelp": true,
|
|
2717
2705
|
"hiddenAliases": [],
|
|
2718
|
-
"id": "hardis:
|
|
2706
|
+
"id": "hardis:project:lint",
|
|
2719
2707
|
"pluginAlias": "sfdx-hardis",
|
|
2720
2708
|
"pluginName": "sfdx-hardis",
|
|
2721
2709
|
"pluginType": "core",
|
|
2722
2710
|
"strict": true,
|
|
2723
2711
|
"enableJsonFlag": true,
|
|
2724
|
-
"title": "
|
|
2712
|
+
"title": "Lint",
|
|
2713
|
+
"requiresProject": false,
|
|
2725
2714
|
"isESM": true,
|
|
2726
2715
|
"relativePath": [
|
|
2727
2716
|
"lib",
|
|
2728
2717
|
"commands",
|
|
2729
2718
|
"hardis",
|
|
2730
|
-
"
|
|
2731
|
-
"
|
|
2719
|
+
"project",
|
|
2720
|
+
"lint.js"
|
|
2732
2721
|
],
|
|
2733
2722
|
"aliasPermutations": [],
|
|
2734
2723
|
"permutations": [
|
|
2735
|
-
"hardis:
|
|
2736
|
-
"
|
|
2737
|
-
"
|
|
2738
|
-
"hardis:
|
|
2739
|
-
"
|
|
2740
|
-
"
|
|
2724
|
+
"hardis:project:lint",
|
|
2725
|
+
"project:hardis:lint",
|
|
2726
|
+
"project:lint:hardis",
|
|
2727
|
+
"hardis:lint:project",
|
|
2728
|
+
"lint:hardis:project",
|
|
2729
|
+
"lint:project:hardis"
|
|
2741
2730
|
]
|
|
2742
2731
|
},
|
|
2743
|
-
"hardis:scratch:
|
|
2732
|
+
"hardis:scratch:create": {
|
|
2744
2733
|
"aliases": [],
|
|
2745
2734
|
"args": {},
|
|
2746
|
-
"description": "
|
|
2735
|
+
"description": "Create and initialize a scratch org or a source-tracked sandbox (config can be defined using `config/.sfdx-hardis.yml`):\n\n- **Install packages**\n - Use property `installedPackages`\n- **Push sources**\n- **Assign permission sets**\n - Use property `initPermissionSets`\n- **Run apex initialization scripts**\n - Use property `scratchOrgInitApexScripts`\n- **Load data**\n - Use property `dataPackages`\n ",
|
|
2747
2736
|
"examples": [
|
|
2748
|
-
"$ sf hardis:scratch:
|
|
2737
|
+
"$ sf hardis:scratch:create"
|
|
2749
2738
|
],
|
|
2750
2739
|
"flags": {
|
|
2751
2740
|
"json": {
|
|
@@ -2763,6 +2752,19 @@
|
|
|
2763
2752
|
"multiple": false,
|
|
2764
2753
|
"type": "option"
|
|
2765
2754
|
},
|
|
2755
|
+
"forcenew": {
|
|
2756
|
+
"char": "n",
|
|
2757
|
+
"description": "If an existing scratch org exists, do not reuse it but create a new one",
|
|
2758
|
+
"name": "forcenew",
|
|
2759
|
+
"allowNo": false,
|
|
2760
|
+
"type": "boolean"
|
|
2761
|
+
},
|
|
2762
|
+
"pool": {
|
|
2763
|
+
"description": "Creates the scratch org for a scratch org pool",
|
|
2764
|
+
"name": "pool",
|
|
2765
|
+
"allowNo": false,
|
|
2766
|
+
"type": "boolean"
|
|
2767
|
+
},
|
|
2766
2768
|
"debug": {
|
|
2767
2769
|
"char": "d",
|
|
2768
2770
|
"description": "Activate debug mode (more logs)",
|
|
@@ -2783,17 +2785,16 @@
|
|
|
2783
2785
|
"allowNo": false,
|
|
2784
2786
|
"type": "boolean"
|
|
2785
2787
|
},
|
|
2786
|
-
"target-
|
|
2788
|
+
"target-dev-hub": {
|
|
2787
2789
|
"aliases": [
|
|
2788
|
-
"
|
|
2789
|
-
"u"
|
|
2790
|
+
"targetdevhubusername"
|
|
2790
2791
|
],
|
|
2791
|
-
"char": "
|
|
2792
|
+
"char": "v",
|
|
2792
2793
|
"deprecateAliases": true,
|
|
2793
|
-
"name": "target-
|
|
2794
|
+
"name": "target-dev-hub",
|
|
2794
2795
|
"noCacheDefault": true,
|
|
2795
2796
|
"required": true,
|
|
2796
|
-
"summary": "Username or alias of the
|
|
2797
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2797
2798
|
"hasDynamicHelp": true,
|
|
2798
2799
|
"multiple": false,
|
|
2799
2800
|
"type": "option"
|
|
@@ -2801,38 +2802,42 @@
|
|
|
2801
2802
|
},
|
|
2802
2803
|
"hasDynamicHelp": true,
|
|
2803
2804
|
"hiddenAliases": [],
|
|
2804
|
-
"id": "hardis:scratch:
|
|
2805
|
+
"id": "hardis:scratch:create",
|
|
2805
2806
|
"pluginAlias": "sfdx-hardis",
|
|
2806
2807
|
"pluginName": "sfdx-hardis",
|
|
2807
2808
|
"pluginType": "core",
|
|
2808
2809
|
"strict": true,
|
|
2809
2810
|
"enableJsonFlag": true,
|
|
2810
|
-
"title": "
|
|
2811
|
+
"title": "Create and initialize scratch org",
|
|
2811
2812
|
"requiresProject": true,
|
|
2813
|
+
"requiresSfdxPlugins": [
|
|
2814
|
+
"sfdmu",
|
|
2815
|
+
"texei-sfdx-plugin"
|
|
2816
|
+
],
|
|
2812
2817
|
"isESM": true,
|
|
2813
2818
|
"relativePath": [
|
|
2814
2819
|
"lib",
|
|
2815
2820
|
"commands",
|
|
2816
2821
|
"hardis",
|
|
2817
2822
|
"scratch",
|
|
2818
|
-
"
|
|
2823
|
+
"create.js"
|
|
2819
2824
|
],
|
|
2820
2825
|
"aliasPermutations": [],
|
|
2821
2826
|
"permutations": [
|
|
2822
|
-
"hardis:scratch:
|
|
2823
|
-
"scratch:hardis:
|
|
2824
|
-
"scratch:
|
|
2825
|
-
"hardis:
|
|
2826
|
-
"
|
|
2827
|
-
"
|
|
2827
|
+
"hardis:scratch:create",
|
|
2828
|
+
"scratch:hardis:create",
|
|
2829
|
+
"scratch:create:hardis",
|
|
2830
|
+
"hardis:create:scratch",
|
|
2831
|
+
"create:hardis:scratch",
|
|
2832
|
+
"create:scratch:hardis"
|
|
2828
2833
|
]
|
|
2829
2834
|
},
|
|
2830
|
-
"hardis:scratch:
|
|
2835
|
+
"hardis:scratch:delete": {
|
|
2831
2836
|
"aliases": [],
|
|
2832
2837
|
"args": {},
|
|
2833
|
-
"description": "
|
|
2838
|
+
"description": "Assisted menu to delete scratch orgs associated to a DevHub",
|
|
2834
2839
|
"examples": [
|
|
2835
|
-
"$ sf hardis:scratch:
|
|
2840
|
+
"$ sf hardis:scratch:delete"
|
|
2836
2841
|
],
|
|
2837
2842
|
"flags": {
|
|
2838
2843
|
"json": {
|
|
@@ -2870,17 +2875,16 @@
|
|
|
2870
2875
|
"allowNo": false,
|
|
2871
2876
|
"type": "boolean"
|
|
2872
2877
|
},
|
|
2873
|
-
"target-
|
|
2878
|
+
"target-dev-hub": {
|
|
2874
2879
|
"aliases": [
|
|
2875
|
-
"
|
|
2876
|
-
"u"
|
|
2880
|
+
"targetdevhubusername"
|
|
2877
2881
|
],
|
|
2878
|
-
"char": "
|
|
2882
|
+
"char": "v",
|
|
2879
2883
|
"deprecateAliases": true,
|
|
2880
|
-
"name": "target-
|
|
2884
|
+
"name": "target-dev-hub",
|
|
2881
2885
|
"noCacheDefault": true,
|
|
2882
2886
|
"required": true,
|
|
2883
|
-
"summary": "Username or alias of the
|
|
2887
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
|
2884
2888
|
"hasDynamicHelp": true,
|
|
2885
2889
|
"multiple": false,
|
|
2886
2890
|
"type": "option"
|
|
@@ -2888,38 +2892,37 @@
|
|
|
2888
2892
|
},
|
|
2889
2893
|
"hasDynamicHelp": true,
|
|
2890
2894
|
"hiddenAliases": [],
|
|
2891
|
-
"id": "hardis:scratch:
|
|
2895
|
+
"id": "hardis:scratch:delete",
|
|
2892
2896
|
"pluginAlias": "sfdx-hardis",
|
|
2893
2897
|
"pluginName": "sfdx-hardis",
|
|
2894
2898
|
"pluginType": "core",
|
|
2895
2899
|
"strict": true,
|
|
2896
2900
|
"enableJsonFlag": true,
|
|
2897
|
-
"title": "
|
|
2898
|
-
"requiresProject": true,
|
|
2901
|
+
"title": "Delete scratch orgs(s)",
|
|
2899
2902
|
"isESM": true,
|
|
2900
2903
|
"relativePath": [
|
|
2901
2904
|
"lib",
|
|
2902
2905
|
"commands",
|
|
2903
2906
|
"hardis",
|
|
2904
2907
|
"scratch",
|
|
2905
|
-
"
|
|
2908
|
+
"delete.js"
|
|
2906
2909
|
],
|
|
2907
2910
|
"aliasPermutations": [],
|
|
2908
2911
|
"permutations": [
|
|
2909
|
-
"hardis:scratch:
|
|
2910
|
-
"scratch:hardis:
|
|
2911
|
-
"scratch:
|
|
2912
|
-
"hardis:
|
|
2913
|
-
"
|
|
2914
|
-
"
|
|
2912
|
+
"hardis:scratch:delete",
|
|
2913
|
+
"scratch:hardis:delete",
|
|
2914
|
+
"scratch:delete:hardis",
|
|
2915
|
+
"hardis:delete:scratch",
|
|
2916
|
+
"delete:hardis:scratch",
|
|
2917
|
+
"delete:scratch:hardis"
|
|
2915
2918
|
]
|
|
2916
2919
|
},
|
|
2917
|
-
"hardis:
|
|
2920
|
+
"hardis:scratch:pull": {
|
|
2918
2921
|
"aliases": [],
|
|
2919
2922
|
"args": {},
|
|
2920
|
-
"description": "
|
|
2923
|
+
"description": "This commands pulls the updates you performed in your scratch or sandbox org, into your local files\n\nThen, you probably want to stage and commit the files containing the updates you want to keep, as explained in this video.\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/Ik6whtflmfY\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\n\n- Calls `sf project retrieve start` under the hood\n- If there are errors, proposes to automatically add erroneous item in `.forceignore`, then pull again\n- If you don't see your updated items in the results, you can manually retrieve [using SF Extension **Org Browser** or **Salesforce CLI**](https://sfdx-hardis.cloudity.com/salesforce-ci-cd-publish-task/#retrieve-metadatas)\n- If you want to always retrieve sources like CustomApplication that are not always detected as updates by project:retrieve:start , you can define property **autoRetrieveWhenPull** in .sfdx-hardis.yml\n\nExample:\n```yaml\nautoRetrieveWhenPull:\n - CustomApplication:MyCustomApplication\n - CustomApplication:MyOtherCustomApplication\n - CustomApplication:MyThirdCustomApp\n```\n",
|
|
2921
2924
|
"examples": [
|
|
2922
|
-
"$ sf hardis
|
|
2925
|
+
"$ sf hardis:scratch:pull"
|
|
2923
2926
|
],
|
|
2924
2927
|
"flags": {
|
|
2925
2928
|
"json": {
|
|
@@ -2937,70 +2940,76 @@
|
|
|
2937
2940
|
"multiple": false,
|
|
2938
2941
|
"type": "option"
|
|
2939
2942
|
},
|
|
2940
|
-
"packagexmls": {
|
|
2941
|
-
"char": "p",
|
|
2942
|
-
"description": "package.xml files path (separated by commas)",
|
|
2943
|
-
"name": "packagexmls",
|
|
2944
|
-
"required": true,
|
|
2945
|
-
"hasDynamicHelp": false,
|
|
2946
|
-
"multiple": false,
|
|
2947
|
-
"type": "option"
|
|
2948
|
-
},
|
|
2949
|
-
"outputfile": {
|
|
2950
|
-
"char": "f",
|
|
2951
|
-
"description": "package.xml output file",
|
|
2952
|
-
"name": "outputfile",
|
|
2953
|
-
"required": true,
|
|
2954
|
-
"hasDynamicHelp": false,
|
|
2955
|
-
"multiple": false,
|
|
2956
|
-
"type": "option"
|
|
2957
|
-
},
|
|
2958
2943
|
"debug": {
|
|
2959
|
-
"
|
|
2944
|
+
"char": "d",
|
|
2945
|
+
"description": "Activate debug mode (more logs)",
|
|
2960
2946
|
"name": "debug",
|
|
2961
2947
|
"allowNo": false,
|
|
2962
2948
|
"type": "boolean"
|
|
2963
2949
|
},
|
|
2964
2950
|
"websocket": {
|
|
2965
|
-
"description": "
|
|
2951
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
2966
2952
|
"name": "websocket",
|
|
2967
2953
|
"hasDynamicHelp": false,
|
|
2968
2954
|
"multiple": false,
|
|
2969
2955
|
"type": "option"
|
|
2956
|
+
},
|
|
2957
|
+
"skipauth": {
|
|
2958
|
+
"description": "Skip authentication check when a default username is required",
|
|
2959
|
+
"name": "skipauth",
|
|
2960
|
+
"allowNo": false,
|
|
2961
|
+
"type": "boolean"
|
|
2962
|
+
},
|
|
2963
|
+
"target-org": {
|
|
2964
|
+
"aliases": [
|
|
2965
|
+
"targetusername",
|
|
2966
|
+
"u"
|
|
2967
|
+
],
|
|
2968
|
+
"char": "o",
|
|
2969
|
+
"deprecateAliases": true,
|
|
2970
|
+
"name": "target-org",
|
|
2971
|
+
"noCacheDefault": true,
|
|
2972
|
+
"required": true,
|
|
2973
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
2974
|
+
"hasDynamicHelp": true,
|
|
2975
|
+
"multiple": false,
|
|
2976
|
+
"type": "option"
|
|
2970
2977
|
}
|
|
2971
2978
|
},
|
|
2972
|
-
"hasDynamicHelp":
|
|
2979
|
+
"hasDynamicHelp": true,
|
|
2973
2980
|
"hiddenAliases": [],
|
|
2974
|
-
"id": "hardis:
|
|
2981
|
+
"id": "hardis:scratch:pull",
|
|
2975
2982
|
"pluginAlias": "sfdx-hardis",
|
|
2976
2983
|
"pluginName": "sfdx-hardis",
|
|
2977
2984
|
"pluginType": "core",
|
|
2978
2985
|
"strict": true,
|
|
2979
2986
|
"enableJsonFlag": true,
|
|
2987
|
+
"title": "Scratch PULL",
|
|
2988
|
+
"requiresProject": true,
|
|
2980
2989
|
"isESM": true,
|
|
2981
2990
|
"relativePath": [
|
|
2982
2991
|
"lib",
|
|
2983
2992
|
"commands",
|
|
2984
2993
|
"hardis",
|
|
2985
|
-
"
|
|
2986
|
-
"
|
|
2994
|
+
"scratch",
|
|
2995
|
+
"pull.js"
|
|
2987
2996
|
],
|
|
2988
2997
|
"aliasPermutations": [],
|
|
2989
2998
|
"permutations": [
|
|
2990
|
-
"hardis:
|
|
2991
|
-
"
|
|
2992
|
-
"
|
|
2993
|
-
"hardis:
|
|
2994
|
-
"
|
|
2995
|
-
"
|
|
2999
|
+
"hardis:scratch:pull",
|
|
3000
|
+
"scratch:hardis:pull",
|
|
3001
|
+
"scratch:pull:hardis",
|
|
3002
|
+
"hardis:pull:scratch",
|
|
3003
|
+
"pull:hardis:scratch",
|
|
3004
|
+
"pull:scratch:hardis"
|
|
2996
3005
|
]
|
|
2997
3006
|
},
|
|
2998
|
-
"hardis:
|
|
3007
|
+
"hardis:scratch:push": {
|
|
2999
3008
|
"aliases": [],
|
|
3000
3009
|
"args": {},
|
|
3001
|
-
"description": "
|
|
3010
|
+
"description": "Push local files to scratch org\n\nCalls `sf project deploy start` under the hood\n",
|
|
3002
3011
|
"examples": [
|
|
3003
|
-
"$ sf hardis
|
|
3012
|
+
"$ sf hardis:scratch:push"
|
|
3004
3013
|
],
|
|
3005
3014
|
"flags": {
|
|
3006
3015
|
"json": {
|
|
@@ -3018,77 +3027,68 @@
|
|
|
3018
3027
|
"multiple": false,
|
|
3019
3028
|
"type": "option"
|
|
3020
3029
|
},
|
|
3021
|
-
"
|
|
3022
|
-
"char": "
|
|
3023
|
-
"description": "
|
|
3024
|
-
"name": "
|
|
3025
|
-
"hasDynamicHelp": false,
|
|
3026
|
-
"multiple": false,
|
|
3027
|
-
"type": "option"
|
|
3028
|
-
},
|
|
3029
|
-
"removepackagexml": {
|
|
3030
|
-
"char": "r",
|
|
3031
|
-
"description": "package.xml file to use to filter input package.xml",
|
|
3032
|
-
"name": "removepackagexml",
|
|
3033
|
-
"hasDynamicHelp": false,
|
|
3034
|
-
"multiple": false,
|
|
3035
|
-
"type": "option"
|
|
3036
|
-
},
|
|
3037
|
-
"removedonly": {
|
|
3038
|
-
"char": "z",
|
|
3039
|
-
"description": "Use this flag to generate a package.xml with only removed items",
|
|
3040
|
-
"name": "removedonly",
|
|
3030
|
+
"debug": {
|
|
3031
|
+
"char": "d",
|
|
3032
|
+
"description": "Activate debug mode (more logs)",
|
|
3033
|
+
"name": "debug",
|
|
3041
3034
|
"allowNo": false,
|
|
3042
3035
|
"type": "boolean"
|
|
3043
3036
|
},
|
|
3044
|
-
"
|
|
3045
|
-
"
|
|
3046
|
-
"
|
|
3047
|
-
"name": "outputfile",
|
|
3048
|
-
"required": true,
|
|
3037
|
+
"websocket": {
|
|
3038
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
3039
|
+
"name": "websocket",
|
|
3049
3040
|
"hasDynamicHelp": false,
|
|
3050
3041
|
"multiple": false,
|
|
3051
3042
|
"type": "option"
|
|
3052
3043
|
},
|
|
3053
|
-
"
|
|
3054
|
-
"description": "
|
|
3055
|
-
"name": "
|
|
3044
|
+
"skipauth": {
|
|
3045
|
+
"description": "Skip authentication check when a default username is required",
|
|
3046
|
+
"name": "skipauth",
|
|
3056
3047
|
"allowNo": false,
|
|
3057
3048
|
"type": "boolean"
|
|
3058
3049
|
},
|
|
3059
|
-
"
|
|
3060
|
-
"
|
|
3061
|
-
|
|
3062
|
-
|
|
3050
|
+
"target-org": {
|
|
3051
|
+
"aliases": [
|
|
3052
|
+
"targetusername",
|
|
3053
|
+
"u"
|
|
3054
|
+
],
|
|
3055
|
+
"char": "o",
|
|
3056
|
+
"deprecateAliases": true,
|
|
3057
|
+
"name": "target-org",
|
|
3058
|
+
"noCacheDefault": true,
|
|
3059
|
+
"required": true,
|
|
3060
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
3061
|
+
"hasDynamicHelp": true,
|
|
3063
3062
|
"multiple": false,
|
|
3064
3063
|
"type": "option"
|
|
3065
3064
|
}
|
|
3066
3065
|
},
|
|
3067
|
-
"hasDynamicHelp":
|
|
3066
|
+
"hasDynamicHelp": true,
|
|
3068
3067
|
"hiddenAliases": [],
|
|
3069
|
-
"id": "hardis:
|
|
3068
|
+
"id": "hardis:scratch:push",
|
|
3070
3069
|
"pluginAlias": "sfdx-hardis",
|
|
3071
3070
|
"pluginName": "sfdx-hardis",
|
|
3072
3071
|
"pluginType": "core",
|
|
3073
3072
|
"strict": true,
|
|
3074
3073
|
"enableJsonFlag": true,
|
|
3075
|
-
"
|
|
3074
|
+
"title": "Scratch PUSH",
|
|
3075
|
+
"requiresProject": true,
|
|
3076
3076
|
"isESM": true,
|
|
3077
3077
|
"relativePath": [
|
|
3078
3078
|
"lib",
|
|
3079
3079
|
"commands",
|
|
3080
3080
|
"hardis",
|
|
3081
|
-
"
|
|
3082
|
-
"
|
|
3081
|
+
"scratch",
|
|
3082
|
+
"push.js"
|
|
3083
3083
|
],
|
|
3084
3084
|
"aliasPermutations": [],
|
|
3085
3085
|
"permutations": [
|
|
3086
|
-
"hardis:
|
|
3087
|
-
"
|
|
3088
|
-
"
|
|
3089
|
-
"hardis:
|
|
3090
|
-
"
|
|
3091
|
-
"
|
|
3086
|
+
"hardis:scratch:push",
|
|
3087
|
+
"scratch:hardis:push",
|
|
3088
|
+
"scratch:push:hardis",
|
|
3089
|
+
"hardis:push:scratch",
|
|
3090
|
+
"push:hardis:scratch",
|
|
3091
|
+
"push:scratch:hardis"
|
|
3092
3092
|
]
|
|
3093
3093
|
},
|
|
3094
3094
|
"hardis:source:deploy": {
|
|
@@ -4114,12 +4114,12 @@
|
|
|
4114
4114
|
"ws:work:hardis"
|
|
4115
4115
|
]
|
|
4116
4116
|
},
|
|
4117
|
-
"hardis:doc:
|
|
4117
|
+
"hardis:doc:extract:permsetgroups": {
|
|
4118
4118
|
"aliases": [],
|
|
4119
4119
|
"args": {},
|
|
4120
|
-
"description": "Generate
|
|
4120
|
+
"description": "Generate markdown files with project documentation",
|
|
4121
4121
|
"examples": [
|
|
4122
|
-
"$ sf hardis:doc:
|
|
4122
|
+
"$ sf hardis:doc:extract:permsetgroups"
|
|
4123
4123
|
],
|
|
4124
4124
|
"flags": {
|
|
4125
4125
|
"json": {
|
|
@@ -4137,6 +4137,14 @@
|
|
|
4137
4137
|
"multiple": false,
|
|
4138
4138
|
"type": "option"
|
|
4139
4139
|
},
|
|
4140
|
+
"outputfile": {
|
|
4141
|
+
"char": "f",
|
|
4142
|
+
"description": "Force the path and name of output report file. Must end with .csv",
|
|
4143
|
+
"name": "outputfile",
|
|
4144
|
+
"hasDynamicHelp": false,
|
|
4145
|
+
"multiple": false,
|
|
4146
|
+
"type": "option"
|
|
4147
|
+
},
|
|
4140
4148
|
"debug": {
|
|
4141
4149
|
"char": "d",
|
|
4142
4150
|
"description": "Activate debug mode (more logs)",
|
|
@@ -4160,58 +4168,57 @@
|
|
|
4160
4168
|
},
|
|
4161
4169
|
"hasDynamicHelp": false,
|
|
4162
4170
|
"hiddenAliases": [],
|
|
4163
|
-
"id": "hardis:doc:
|
|
4171
|
+
"id": "hardis:doc:extract:permsetgroups",
|
|
4164
4172
|
"pluginAlias": "sfdx-hardis",
|
|
4165
4173
|
"pluginName": "sfdx-hardis",
|
|
4166
4174
|
"pluginType": "core",
|
|
4167
4175
|
"strict": true,
|
|
4168
4176
|
"enableJsonFlag": true,
|
|
4169
|
-
"title": "Generate
|
|
4170
|
-
"requiresProject":
|
|
4177
|
+
"title": "Generate project documentation",
|
|
4178
|
+
"requiresProject": true,
|
|
4171
4179
|
"isESM": true,
|
|
4172
4180
|
"relativePath": [
|
|
4173
4181
|
"lib",
|
|
4174
4182
|
"commands",
|
|
4175
4183
|
"hardis",
|
|
4176
4184
|
"doc",
|
|
4177
|
-
"
|
|
4178
|
-
"
|
|
4185
|
+
"extract",
|
|
4186
|
+
"permsetgroups.js"
|
|
4179
4187
|
],
|
|
4180
4188
|
"aliasPermutations": [],
|
|
4181
4189
|
"permutations": [
|
|
4182
|
-
"hardis:doc:
|
|
4183
|
-
"doc:hardis:
|
|
4184
|
-
"doc:
|
|
4185
|
-
"doc:
|
|
4186
|
-
"hardis:
|
|
4187
|
-
"
|
|
4188
|
-
"
|
|
4189
|
-
"
|
|
4190
|
-
"hardis:
|
|
4191
|
-
"
|
|
4192
|
-
"
|
|
4193
|
-
"
|
|
4194
|
-
"hardis:doc:
|
|
4195
|
-
"doc:hardis:
|
|
4196
|
-
"doc:
|
|
4197
|
-
"doc:
|
|
4198
|
-
"hardis:
|
|
4199
|
-
"
|
|
4200
|
-
"
|
|
4201
|
-
"
|
|
4202
|
-
"hardis:
|
|
4203
|
-
"
|
|
4204
|
-
"
|
|
4205
|
-
"
|
|
4190
|
+
"hardis:doc:extract:permsetgroups",
|
|
4191
|
+
"doc:hardis:extract:permsetgroups",
|
|
4192
|
+
"doc:extract:hardis:permsetgroups",
|
|
4193
|
+
"doc:extract:permsetgroups:hardis",
|
|
4194
|
+
"hardis:extract:doc:permsetgroups",
|
|
4195
|
+
"extract:hardis:doc:permsetgroups",
|
|
4196
|
+
"extract:doc:hardis:permsetgroups",
|
|
4197
|
+
"extract:doc:permsetgroups:hardis",
|
|
4198
|
+
"hardis:extract:permsetgroups:doc",
|
|
4199
|
+
"extract:hardis:permsetgroups:doc",
|
|
4200
|
+
"extract:permsetgroups:hardis:doc",
|
|
4201
|
+
"extract:permsetgroups:doc:hardis",
|
|
4202
|
+
"hardis:doc:permsetgroups:extract",
|
|
4203
|
+
"doc:hardis:permsetgroups:extract",
|
|
4204
|
+
"doc:permsetgroups:hardis:extract",
|
|
4205
|
+
"doc:permsetgroups:extract:hardis",
|
|
4206
|
+
"hardis:permsetgroups:doc:extract",
|
|
4207
|
+
"permsetgroups:hardis:doc:extract",
|
|
4208
|
+
"permsetgroups:doc:hardis:extract",
|
|
4209
|
+
"permsetgroups:doc:extract:hardis",
|
|
4210
|
+
"hardis:permsetgroups:extract:doc",
|
|
4211
|
+
"permsetgroups:hardis:extract:doc",
|
|
4212
|
+
"permsetgroups:extract:hardis:doc",
|
|
4213
|
+
"permsetgroups:extract:doc:hardis"
|
|
4206
4214
|
]
|
|
4207
4215
|
},
|
|
4208
|
-
"hardis:
|
|
4216
|
+
"hardis:doc:plugin:generate": {
|
|
4209
4217
|
"aliases": [],
|
|
4210
4218
|
"args": {},
|
|
4211
|
-
"description": "
|
|
4219
|
+
"description": "Generate Markdown documentation ready for HTML conversion with mkdocs\n\nAfter the first run, you need to update manually:\n\n- mkdocs.yml\n- .github/workflows/build-deploy-docs.yml\n- docs/javascripts/gtag.js , if you want Google Analytics tracking\n\nThen, activate Github pages, with \"gh_pages\" as target branch\n\nAt each merge into master/main branch, the GitHub Action build-deploy-docs will rebuild documentation and publish it in GitHub pages\n",
|
|
4212
4220
|
"examples": [
|
|
4213
|
-
"$ sf hardis:
|
|
4214
|
-
"$ sf hardis:git:pull-requests:extract --target-branch main --status merged"
|
|
4221
|
+
"$ sf hardis:doc:plugin:generate"
|
|
4215
4222
|
],
|
|
4216
4223
|
"flags": {
|
|
4217
4224
|
"json": {
|
|
@@ -4229,43 +4236,6 @@
|
|
|
4229
4236
|
"multiple": false,
|
|
4230
4237
|
"type": "option"
|
|
4231
4238
|
},
|
|
4232
|
-
"target-branch": {
|
|
4233
|
-
"char": "t",
|
|
4234
|
-
"description": "Target branch of PRs",
|
|
4235
|
-
"name": "target-branch",
|
|
4236
|
-
"hasDynamicHelp": false,
|
|
4237
|
-
"multiple": false,
|
|
4238
|
-
"type": "option"
|
|
4239
|
-
},
|
|
4240
|
-
"status": {
|
|
4241
|
-
"char": "x",
|
|
4242
|
-
"description": "Status of the PR",
|
|
4243
|
-
"name": "status",
|
|
4244
|
-
"hasDynamicHelp": false,
|
|
4245
|
-
"multiple": false,
|
|
4246
|
-
"options": [
|
|
4247
|
-
"open",
|
|
4248
|
-
"merged",
|
|
4249
|
-
"abandoned"
|
|
4250
|
-
],
|
|
4251
|
-
"type": "option"
|
|
4252
|
-
},
|
|
4253
|
-
"min-date": {
|
|
4254
|
-
"char": "m",
|
|
4255
|
-
"description": "Minimum date for PR",
|
|
4256
|
-
"name": "min-date",
|
|
4257
|
-
"hasDynamicHelp": false,
|
|
4258
|
-
"multiple": false,
|
|
4259
|
-
"type": "option"
|
|
4260
|
-
},
|
|
4261
|
-
"outputfile": {
|
|
4262
|
-
"char": "f",
|
|
4263
|
-
"description": "Force the path and name of output report file. Must end with .csv",
|
|
4264
|
-
"name": "outputfile",
|
|
4265
|
-
"hasDynamicHelp": false,
|
|
4266
|
-
"multiple": false,
|
|
4267
|
-
"type": "option"
|
|
4268
|
-
},
|
|
4269
4239
|
"debug": {
|
|
4270
4240
|
"char": "d",
|
|
4271
4241
|
"description": "Activate debug mode (more logs)",
|
|
@@ -4289,57 +4259,58 @@
|
|
|
4289
4259
|
},
|
|
4290
4260
|
"hasDynamicHelp": false,
|
|
4291
4261
|
"hiddenAliases": [],
|
|
4292
|
-
"id": "hardis:
|
|
4262
|
+
"id": "hardis:doc:plugin:generate",
|
|
4293
4263
|
"pluginAlias": "sfdx-hardis",
|
|
4294
4264
|
"pluginName": "sfdx-hardis",
|
|
4295
4265
|
"pluginType": "core",
|
|
4296
4266
|
"strict": true,
|
|
4297
4267
|
"enableJsonFlag": true,
|
|
4298
|
-
"title": "
|
|
4299
|
-
"requiresProject":
|
|
4268
|
+
"title": "Generate SF Cli Plugin Documentation",
|
|
4269
|
+
"requiresProject": false,
|
|
4300
4270
|
"isESM": true,
|
|
4301
4271
|
"relativePath": [
|
|
4302
4272
|
"lib",
|
|
4303
4273
|
"commands",
|
|
4304
4274
|
"hardis",
|
|
4305
|
-
"
|
|
4306
|
-
"
|
|
4307
|
-
"
|
|
4275
|
+
"doc",
|
|
4276
|
+
"plugin",
|
|
4277
|
+
"generate.js"
|
|
4308
4278
|
],
|
|
4309
4279
|
"aliasPermutations": [],
|
|
4310
4280
|
"permutations": [
|
|
4311
|
-
"hardis:
|
|
4312
|
-
"
|
|
4313
|
-
"
|
|
4314
|
-
"
|
|
4315
|
-
"hardis:
|
|
4316
|
-
"
|
|
4317
|
-
"
|
|
4318
|
-
"
|
|
4319
|
-
"hardis:
|
|
4320
|
-
"
|
|
4321
|
-
"
|
|
4322
|
-
"
|
|
4323
|
-
"hardis:
|
|
4324
|
-
"
|
|
4325
|
-
"
|
|
4326
|
-
"
|
|
4327
|
-
"hardis:
|
|
4328
|
-
"
|
|
4329
|
-
"
|
|
4330
|
-
"
|
|
4331
|
-
"hardis:
|
|
4332
|
-
"
|
|
4333
|
-
"
|
|
4334
|
-
"
|
|
4281
|
+
"hardis:doc:plugin:generate",
|
|
4282
|
+
"doc:hardis:plugin:generate",
|
|
4283
|
+
"doc:plugin:hardis:generate",
|
|
4284
|
+
"doc:plugin:generate:hardis",
|
|
4285
|
+
"hardis:plugin:doc:generate",
|
|
4286
|
+
"plugin:hardis:doc:generate",
|
|
4287
|
+
"plugin:doc:hardis:generate",
|
|
4288
|
+
"plugin:doc:generate:hardis",
|
|
4289
|
+
"hardis:plugin:generate:doc",
|
|
4290
|
+
"plugin:hardis:generate:doc",
|
|
4291
|
+
"plugin:generate:hardis:doc",
|
|
4292
|
+
"plugin:generate:doc:hardis",
|
|
4293
|
+
"hardis:doc:generate:plugin",
|
|
4294
|
+
"doc:hardis:generate:plugin",
|
|
4295
|
+
"doc:generate:hardis:plugin",
|
|
4296
|
+
"doc:generate:plugin:hardis",
|
|
4297
|
+
"hardis:generate:doc:plugin",
|
|
4298
|
+
"generate:hardis:doc:plugin",
|
|
4299
|
+
"generate:doc:hardis:plugin",
|
|
4300
|
+
"generate:doc:plugin:hardis",
|
|
4301
|
+
"hardis:generate:plugin:doc",
|
|
4302
|
+
"generate:hardis:plugin:doc",
|
|
4303
|
+
"generate:plugin:hardis:doc",
|
|
4304
|
+
"generate:plugin:doc:hardis"
|
|
4335
4305
|
]
|
|
4336
4306
|
},
|
|
4337
|
-
"hardis:
|
|
4307
|
+
"hardis:git:pull-requests:extract": {
|
|
4338
4308
|
"aliases": [],
|
|
4339
4309
|
"args": {},
|
|
4340
|
-
"description": "
|
|
4310
|
+
"description": "Extract pull requests with filtering criteria",
|
|
4341
4311
|
"examples": [
|
|
4342
|
-
"$ sf hardis:
|
|
4312
|
+
"$ sf hardis:git:pull-requests:extract",
|
|
4313
|
+
"$ sf hardis:git:pull-requests:extract --target-branch main --status merged"
|
|
4343
4314
|
],
|
|
4344
4315
|
"flags": {
|
|
4345
4316
|
"json": {
|
|
@@ -4357,6 +4328,35 @@
|
|
|
4357
4328
|
"multiple": false,
|
|
4358
4329
|
"type": "option"
|
|
4359
4330
|
},
|
|
4331
|
+
"target-branch": {
|
|
4332
|
+
"char": "t",
|
|
4333
|
+
"description": "Target branch of PRs",
|
|
4334
|
+
"name": "target-branch",
|
|
4335
|
+
"hasDynamicHelp": false,
|
|
4336
|
+
"multiple": false,
|
|
4337
|
+
"type": "option"
|
|
4338
|
+
},
|
|
4339
|
+
"status": {
|
|
4340
|
+
"char": "x",
|
|
4341
|
+
"description": "Status of the PR",
|
|
4342
|
+
"name": "status",
|
|
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
4360
|
"outputfile": {
|
|
4361
4361
|
"char": "f",
|
|
4362
4362
|
"description": "Force the path and name of output report file. Must end with .csv",
|
|
@@ -4388,49 +4388,49 @@
|
|
|
4388
4388
|
},
|
|
4389
4389
|
"hasDynamicHelp": false,
|
|
4390
4390
|
"hiddenAliases": [],
|
|
4391
|
-
"id": "hardis:
|
|
4391
|
+
"id": "hardis:git:pull-requests:extract",
|
|
4392
4392
|
"pluginAlias": "sfdx-hardis",
|
|
4393
4393
|
"pluginName": "sfdx-hardis",
|
|
4394
4394
|
"pluginType": "core",
|
|
4395
4395
|
"strict": true,
|
|
4396
4396
|
"enableJsonFlag": true,
|
|
4397
|
-
"title": "
|
|
4397
|
+
"title": "Extract pull requests",
|
|
4398
4398
|
"requiresProject": true,
|
|
4399
4399
|
"isESM": true,
|
|
4400
4400
|
"relativePath": [
|
|
4401
4401
|
"lib",
|
|
4402
4402
|
"commands",
|
|
4403
4403
|
"hardis",
|
|
4404
|
-
"
|
|
4405
|
-
"
|
|
4406
|
-
"
|
|
4404
|
+
"git",
|
|
4405
|
+
"pull-requests",
|
|
4406
|
+
"extract.js"
|
|
4407
4407
|
],
|
|
4408
4408
|
"aliasPermutations": [],
|
|
4409
4409
|
"permutations": [
|
|
4410
|
-
"hardis:
|
|
4411
|
-
"
|
|
4412
|
-
"
|
|
4413
|
-
"
|
|
4414
|
-
"hardis:
|
|
4415
|
-
"
|
|
4416
|
-
"
|
|
4417
|
-
"
|
|
4418
|
-
"hardis:extract:
|
|
4419
|
-
"
|
|
4420
|
-
"extract:
|
|
4421
|
-
"extract:
|
|
4422
|
-
"hardis:
|
|
4423
|
-
"
|
|
4424
|
-
"
|
|
4425
|
-
"
|
|
4426
|
-
"hardis:
|
|
4427
|
-
"
|
|
4428
|
-
"
|
|
4429
|
-
"
|
|
4430
|
-
"hardis:
|
|
4431
|
-
"
|
|
4432
|
-
"
|
|
4433
|
-
"
|
|
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"
|
|
4434
4434
|
]
|
|
4435
4435
|
},
|
|
4436
4436
|
"hardis:org:community:update": {
|
|
@@ -7572,13 +7572,12 @@
|
|
|
7572
7572
|
"flow:purge:org:hardis"
|
|
7573
7573
|
]
|
|
7574
7574
|
},
|
|
7575
|
-
"hardis:org:
|
|
7575
|
+
"hardis:org:test:apex": {
|
|
7576
7576
|
"aliases": [],
|
|
7577
7577
|
"args": {},
|
|
7578
|
-
"description": "
|
|
7578
|
+
"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",
|
|
7579
7579
|
"examples": [
|
|
7580
|
-
"$ sf hardis:org:
|
|
7581
|
-
"sf hardis:org:retrieve:packageconfig -u myOrg"
|
|
7580
|
+
"$ sf hardis:org:test:apex"
|
|
7582
7581
|
],
|
|
7583
7582
|
"flags": {
|
|
7584
7583
|
"json": {
|
|
@@ -7596,6 +7595,21 @@
|
|
|
7596
7595
|
"multiple": false,
|
|
7597
7596
|
"type": "option"
|
|
7598
7597
|
},
|
|
7598
|
+
"testlevel": {
|
|
7599
|
+
"char": "l",
|
|
7600
|
+
"description": "Level of tests to apply to validate deployment",
|
|
7601
|
+
"name": "testlevel",
|
|
7602
|
+
"default": "RunLocalTests",
|
|
7603
|
+
"hasDynamicHelp": false,
|
|
7604
|
+
"multiple": false,
|
|
7605
|
+
"options": [
|
|
7606
|
+
"NoTestRun",
|
|
7607
|
+
"RunSpecifiedTests",
|
|
7608
|
+
"RunLocalTests",
|
|
7609
|
+
"RunAllTestsInOrg"
|
|
7610
|
+
],
|
|
7611
|
+
"type": "option"
|
|
7612
|
+
},
|
|
7599
7613
|
"debug": {
|
|
7600
7614
|
"char": "d",
|
|
7601
7615
|
"description": "Activate debug mode (more logs)",
|
|
@@ -7634,57 +7648,57 @@
|
|
|
7634
7648
|
},
|
|
7635
7649
|
"hasDynamicHelp": true,
|
|
7636
7650
|
"hiddenAliases": [],
|
|
7637
|
-
"id": "hardis:org:
|
|
7651
|
+
"id": "hardis:org:test:apex",
|
|
7638
7652
|
"pluginAlias": "sfdx-hardis",
|
|
7639
7653
|
"pluginName": "sfdx-hardis",
|
|
7640
7654
|
"pluginType": "core",
|
|
7641
7655
|
"strict": true,
|
|
7642
7656
|
"enableJsonFlag": true,
|
|
7643
|
-
"title": "
|
|
7644
|
-
"requiresProject": false,
|
|
7657
|
+
"title": "Run apex tests",
|
|
7645
7658
|
"isESM": true,
|
|
7646
7659
|
"relativePath": [
|
|
7647
7660
|
"lib",
|
|
7648
7661
|
"commands",
|
|
7649
7662
|
"hardis",
|
|
7650
7663
|
"org",
|
|
7651
|
-
"
|
|
7652
|
-
"
|
|
7664
|
+
"test",
|
|
7665
|
+
"apex.js"
|
|
7653
7666
|
],
|
|
7654
7667
|
"aliasPermutations": [],
|
|
7655
7668
|
"permutations": [
|
|
7656
|
-
"hardis:org:
|
|
7657
|
-
"org:hardis:
|
|
7658
|
-
"org:
|
|
7659
|
-
"org:
|
|
7660
|
-
"hardis:
|
|
7661
|
-
"
|
|
7662
|
-
"
|
|
7663
|
-
"
|
|
7664
|
-
"hardis:
|
|
7665
|
-
"
|
|
7666
|
-
"
|
|
7667
|
-
"
|
|
7668
|
-
"hardis:org:
|
|
7669
|
-
"org:hardis:
|
|
7670
|
-
"org:
|
|
7671
|
-
"org:
|
|
7672
|
-
"hardis:
|
|
7673
|
-
"
|
|
7674
|
-
"
|
|
7675
|
-
"
|
|
7676
|
-
"hardis:
|
|
7677
|
-
"
|
|
7678
|
-
"
|
|
7679
|
-
"
|
|
7669
|
+
"hardis:org:test:apex",
|
|
7670
|
+
"org:hardis:test:apex",
|
|
7671
|
+
"org:test:hardis:apex",
|
|
7672
|
+
"org:test:apex:hardis",
|
|
7673
|
+
"hardis:test:org:apex",
|
|
7674
|
+
"test:hardis:org:apex",
|
|
7675
|
+
"test:org:hardis:apex",
|
|
7676
|
+
"test:org:apex:hardis",
|
|
7677
|
+
"hardis:test:apex:org",
|
|
7678
|
+
"test:hardis:apex:org",
|
|
7679
|
+
"test:apex:hardis:org",
|
|
7680
|
+
"test:apex:org:hardis",
|
|
7681
|
+
"hardis:org:apex:test",
|
|
7682
|
+
"org:hardis:apex:test",
|
|
7683
|
+
"org:apex:hardis:test",
|
|
7684
|
+
"org:apex:test:hardis",
|
|
7685
|
+
"hardis:apex:org:test",
|
|
7686
|
+
"apex:hardis:org:test",
|
|
7687
|
+
"apex:org:hardis:test",
|
|
7688
|
+
"apex:org:test:hardis",
|
|
7689
|
+
"hardis:apex:test:org",
|
|
7690
|
+
"apex:hardis:test:org",
|
|
7691
|
+
"apex:test:hardis:org",
|
|
7692
|
+
"apex:test:org:hardis"
|
|
7680
7693
|
]
|
|
7681
7694
|
},
|
|
7682
|
-
"hardis:org:
|
|
7695
|
+
"hardis:org:retrieve:packageconfig": {
|
|
7683
7696
|
"aliases": [],
|
|
7684
7697
|
"args": {},
|
|
7685
|
-
"description": "
|
|
7698
|
+
"description": "Retrieve package configuration from an org",
|
|
7686
7699
|
"examples": [
|
|
7687
|
-
"$ sf hardis:org:
|
|
7700
|
+
"$ sf hardis:org:retrieve:packageconfig",
|
|
7701
|
+
"sf hardis:org:retrieve:packageconfig -u myOrg"
|
|
7688
7702
|
],
|
|
7689
7703
|
"flags": {
|
|
7690
7704
|
"json": {
|
|
@@ -7702,21 +7716,6 @@
|
|
|
7702
7716
|
"multiple": false,
|
|
7703
7717
|
"type": "option"
|
|
7704
7718
|
},
|
|
7705
|
-
"testlevel": {
|
|
7706
|
-
"char": "l",
|
|
7707
|
-
"description": "Level of tests to apply to validate deployment",
|
|
7708
|
-
"name": "testlevel",
|
|
7709
|
-
"default": "RunLocalTests",
|
|
7710
|
-
"hasDynamicHelp": false,
|
|
7711
|
-
"multiple": false,
|
|
7712
|
-
"options": [
|
|
7713
|
-
"NoTestRun",
|
|
7714
|
-
"RunSpecifiedTests",
|
|
7715
|
-
"RunLocalTests",
|
|
7716
|
-
"RunAllTestsInOrg"
|
|
7717
|
-
],
|
|
7718
|
-
"type": "option"
|
|
7719
|
-
},
|
|
7720
7719
|
"debug": {
|
|
7721
7720
|
"char": "d",
|
|
7722
7721
|
"description": "Activate debug mode (more logs)",
|
|
@@ -7755,48 +7754,49 @@
|
|
|
7755
7754
|
},
|
|
7756
7755
|
"hasDynamicHelp": true,
|
|
7757
7756
|
"hiddenAliases": [],
|
|
7758
|
-
"id": "hardis:org:
|
|
7757
|
+
"id": "hardis:org:retrieve:packageconfig",
|
|
7759
7758
|
"pluginAlias": "sfdx-hardis",
|
|
7760
7759
|
"pluginName": "sfdx-hardis",
|
|
7761
7760
|
"pluginType": "core",
|
|
7762
7761
|
"strict": true,
|
|
7763
7762
|
"enableJsonFlag": true,
|
|
7764
|
-
"title": "
|
|
7763
|
+
"title": "Retrieve package configuration from an org",
|
|
7764
|
+
"requiresProject": false,
|
|
7765
7765
|
"isESM": true,
|
|
7766
7766
|
"relativePath": [
|
|
7767
7767
|
"lib",
|
|
7768
7768
|
"commands",
|
|
7769
7769
|
"hardis",
|
|
7770
7770
|
"org",
|
|
7771
|
-
"
|
|
7772
|
-
"
|
|
7771
|
+
"retrieve",
|
|
7772
|
+
"packageconfig.js"
|
|
7773
7773
|
],
|
|
7774
7774
|
"aliasPermutations": [],
|
|
7775
7775
|
"permutations": [
|
|
7776
|
-
"hardis:org:
|
|
7777
|
-
"org:hardis:
|
|
7778
|
-
"org:
|
|
7779
|
-
"org:
|
|
7780
|
-
"hardis:
|
|
7781
|
-
"
|
|
7782
|
-
"
|
|
7783
|
-
"
|
|
7784
|
-
"hardis:
|
|
7785
|
-
"
|
|
7786
|
-
"
|
|
7787
|
-
"
|
|
7788
|
-
"hardis:org:
|
|
7789
|
-
"org:hardis:
|
|
7790
|
-
"org:
|
|
7791
|
-
"org:
|
|
7792
|
-
"hardis:
|
|
7793
|
-
"
|
|
7794
|
-
"
|
|
7795
|
-
"
|
|
7796
|
-
"hardis:
|
|
7797
|
-
"
|
|
7798
|
-
"
|
|
7799
|
-
"
|
|
7776
|
+
"hardis:org:retrieve:packageconfig",
|
|
7777
|
+
"org:hardis:retrieve:packageconfig",
|
|
7778
|
+
"org:retrieve:hardis:packageconfig",
|
|
7779
|
+
"org:retrieve:packageconfig:hardis",
|
|
7780
|
+
"hardis:retrieve:org:packageconfig",
|
|
7781
|
+
"retrieve:hardis:org:packageconfig",
|
|
7782
|
+
"retrieve:org:hardis:packageconfig",
|
|
7783
|
+
"retrieve:org:packageconfig:hardis",
|
|
7784
|
+
"hardis:retrieve:packageconfig:org",
|
|
7785
|
+
"retrieve:hardis:packageconfig:org",
|
|
7786
|
+
"retrieve:packageconfig:hardis:org",
|
|
7787
|
+
"retrieve:packageconfig:org:hardis",
|
|
7788
|
+
"hardis:org:packageconfig:retrieve",
|
|
7789
|
+
"org:hardis:packageconfig:retrieve",
|
|
7790
|
+
"org:packageconfig:hardis:retrieve",
|
|
7791
|
+
"org:packageconfig:retrieve:hardis",
|
|
7792
|
+
"hardis:packageconfig:org:retrieve",
|
|
7793
|
+
"packageconfig:hardis:org:retrieve",
|
|
7794
|
+
"packageconfig:org:hardis:retrieve",
|
|
7795
|
+
"packageconfig:org:retrieve:hardis",
|
|
7796
|
+
"hardis:packageconfig:retrieve:org",
|
|
7797
|
+
"packageconfig:hardis:retrieve:org",
|
|
7798
|
+
"packageconfig:retrieve:hardis:org",
|
|
7799
|
+
"packageconfig:retrieve:org:hardis"
|
|
7800
7800
|
]
|
|
7801
7801
|
},
|
|
7802
7802
|
"hardis:org:user:activateinvalid": {
|
|
@@ -14517,5 +14517,5 @@
|
|
|
14517
14517
|
]
|
|
14518
14518
|
}
|
|
14519
14519
|
},
|
|
14520
|
-
"version": "5.
|
|
14520
|
+
"version": "5.25.1"
|
|
14521
14521
|
}
|