sfdx-hardis 5.44.2-alpha202507221406.0 → 5.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/oclif.manifest.json +788 -788
- package/package.json +1 -1
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,38 @@
|
|
|
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:config:get": {
|
|
156
133
|
"aliases": [],
|
|
157
134
|
"args": {},
|
|
158
|
-
"description": "
|
|
135
|
+
"description": "Returns sfdx-hardis project config for a given level",
|
|
159
136
|
"examples": [
|
|
160
|
-
"$ sf hardis:
|
|
137
|
+
"$ sf hardis:project:deploy:sources:metadata"
|
|
161
138
|
],
|
|
162
139
|
"flags": {
|
|
163
140
|
"json": {
|
|
@@ -175,6 +152,20 @@
|
|
|
175
152
|
"multiple": false,
|
|
176
153
|
"type": "option"
|
|
177
154
|
},
|
|
155
|
+
"level": {
|
|
156
|
+
"char": "l",
|
|
157
|
+
"description": "project,branch or user",
|
|
158
|
+
"name": "level",
|
|
159
|
+
"default": "project",
|
|
160
|
+
"hasDynamicHelp": false,
|
|
161
|
+
"multiple": false,
|
|
162
|
+
"options": [
|
|
163
|
+
"project",
|
|
164
|
+
"branch",
|
|
165
|
+
"user"
|
|
166
|
+
],
|
|
167
|
+
"type": "option"
|
|
168
|
+
},
|
|
178
169
|
"debug": {
|
|
179
170
|
"char": "d",
|
|
180
171
|
"description": "Activate debug mode (more logs)",
|
|
@@ -198,38 +189,39 @@
|
|
|
198
189
|
},
|
|
199
190
|
"hasDynamicHelp": false,
|
|
200
191
|
"hiddenAliases": [],
|
|
201
|
-
"id": "hardis:
|
|
192
|
+
"id": "hardis:config:get",
|
|
202
193
|
"pluginAlias": "sfdx-hardis",
|
|
203
194
|
"pluginName": "sfdx-hardis",
|
|
204
195
|
"pluginType": "core",
|
|
205
196
|
"strict": true,
|
|
206
197
|
"enableJsonFlag": true,
|
|
207
|
-
"title": "
|
|
198
|
+
"title": "Deploy metadata sources to org",
|
|
208
199
|
"requiresProject": false,
|
|
209
200
|
"isESM": true,
|
|
210
201
|
"relativePath": [
|
|
211
202
|
"lib",
|
|
212
203
|
"commands",
|
|
213
204
|
"hardis",
|
|
214
|
-
"
|
|
215
|
-
"
|
|
205
|
+
"config",
|
|
206
|
+
"get.js"
|
|
216
207
|
],
|
|
217
208
|
"aliasPermutations": [],
|
|
218
209
|
"permutations": [
|
|
219
|
-
"hardis:
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"hardis:
|
|
223
|
-
"
|
|
224
|
-
"
|
|
210
|
+
"hardis:config:get",
|
|
211
|
+
"config:hardis:get",
|
|
212
|
+
"config:get:hardis",
|
|
213
|
+
"hardis:get:config",
|
|
214
|
+
"get:hardis:config",
|
|
215
|
+
"get:config:hardis"
|
|
225
216
|
]
|
|
226
217
|
},
|
|
227
|
-
"hardis:
|
|
218
|
+
"hardis:auth:login": {
|
|
228
219
|
"aliases": [],
|
|
229
220
|
"args": {},
|
|
230
|
-
"description": "
|
|
221
|
+
"description": "\nLogins to a Salesforce org from CI/CD workflows.\n\nWill use the variables and files defined by configuration commands:\n\n- CI/CD repos: [Configure Org CI Authentication](https://sfdx-hardis.cloudity.com/hardis/project/configure/auth/)\n- Monitoring repos: [Configure Org Monitoring](https://sfdx-hardis.cloudity.com/hardis/org/configure/monitoring/)\n\nIf you have a technical org (for example to call Agentforce from another org, you can define variable SFDX_AUTH_URL_TECHNICAL_ORG and it will authenticate it with alias TECHNICAL_ORG)\n\nYou can get SFDX_AUTH_URL_TECHNICAL_ORG value by running the command: `sf org display --verbose --json` and copy the value of the field `sfdxAuthUrl` in the output.\n",
|
|
231
222
|
"examples": [
|
|
232
|
-
"$ sf hardis:
|
|
223
|
+
"$ sf hardis:auth:login",
|
|
224
|
+
"CI=true sf hardis:auth:login"
|
|
233
225
|
],
|
|
234
226
|
"flags": {
|
|
235
227
|
"json": {
|
|
@@ -247,20 +239,28 @@
|
|
|
247
239
|
"multiple": false,
|
|
248
240
|
"type": "option"
|
|
249
241
|
},
|
|
250
|
-
"
|
|
251
|
-
"char": "
|
|
252
|
-
"description": "
|
|
253
|
-
"name": "
|
|
254
|
-
"default": "project",
|
|
242
|
+
"instanceurl": {
|
|
243
|
+
"char": "r",
|
|
244
|
+
"description": "URL of org instance",
|
|
245
|
+
"name": "instanceurl",
|
|
255
246
|
"hasDynamicHelp": false,
|
|
256
247
|
"multiple": false,
|
|
257
|
-
"options": [
|
|
258
|
-
"project",
|
|
259
|
-
"branch",
|
|
260
|
-
"user"
|
|
261
|
-
],
|
|
262
248
|
"type": "option"
|
|
263
249
|
},
|
|
250
|
+
"devhub": {
|
|
251
|
+
"char": "h",
|
|
252
|
+
"description": "Also connect associated DevHub",
|
|
253
|
+
"name": "devhub",
|
|
254
|
+
"allowNo": false,
|
|
255
|
+
"type": "boolean"
|
|
256
|
+
},
|
|
257
|
+
"scratchorg": {
|
|
258
|
+
"char": "s",
|
|
259
|
+
"description": "Scratch org",
|
|
260
|
+
"name": "scratchorg",
|
|
261
|
+
"allowNo": false,
|
|
262
|
+
"type": "boolean"
|
|
263
|
+
},
|
|
264
264
|
"debug": {
|
|
265
265
|
"char": "d",
|
|
266
266
|
"description": "Activate debug mode (more logs)",
|
|
@@ -284,30 +284,30 @@
|
|
|
284
284
|
},
|
|
285
285
|
"hasDynamicHelp": false,
|
|
286
286
|
"hiddenAliases": [],
|
|
287
|
-
"id": "hardis:
|
|
287
|
+
"id": "hardis:auth:login",
|
|
288
288
|
"pluginAlias": "sfdx-hardis",
|
|
289
289
|
"pluginName": "sfdx-hardis",
|
|
290
290
|
"pluginType": "core",
|
|
291
291
|
"strict": true,
|
|
292
292
|
"enableJsonFlag": true,
|
|
293
|
-
"title": "
|
|
293
|
+
"title": "Login",
|
|
294
294
|
"requiresProject": false,
|
|
295
295
|
"isESM": true,
|
|
296
296
|
"relativePath": [
|
|
297
297
|
"lib",
|
|
298
298
|
"commands",
|
|
299
299
|
"hardis",
|
|
300
|
-
"
|
|
301
|
-
"
|
|
300
|
+
"auth",
|
|
301
|
+
"login.js"
|
|
302
302
|
],
|
|
303
303
|
"aliasPermutations": [],
|
|
304
304
|
"permutations": [
|
|
305
|
-
"hardis:
|
|
306
|
-
"
|
|
307
|
-
"
|
|
308
|
-
"hardis:
|
|
309
|
-
"
|
|
310
|
-
"
|
|
305
|
+
"hardis:auth:login",
|
|
306
|
+
"auth:hardis:login",
|
|
307
|
+
"auth:login:hardis",
|
|
308
|
+
"hardis:login:auth",
|
|
309
|
+
"login:hardis:auth",
|
|
310
|
+
"login:auth:hardis"
|
|
311
311
|
]
|
|
312
312
|
},
|
|
313
313
|
"hardis:doc:fieldusage": {
|
|
@@ -5738,13 +5738,15 @@
|
|
|
5738
5738
|
"import:files:org:hardis"
|
|
5739
5739
|
]
|
|
5740
5740
|
},
|
|
5741
|
-
"hardis:org:
|
|
5741
|
+
"hardis:org:diagnose:audittrail": {
|
|
5742
5742
|
"aliases": [],
|
|
5743
5743
|
"args": {},
|
|
5744
|
-
"description": "
|
|
5744
|
+
"description": "Export Audit trail into a CSV file with selected criteria, and highlight suspect actions\n\nAlso detects updates of Custom Settings values (disable by defining `SKIP_AUDIT_TRAIL_CUSTOM_SETTINGS=true`)\n\nRegular setup actions performed in major orgs are filtered.\n\n- \"\"\n - createScratchOrg\n - changedsenderemail\n - deleteScratchOrg\n - loginasgrantedtopartnerbt\n- Certificate and Key Management\n - insertCertificate\n- Custom App Licenses\n - addeduserpackagelicense\n - granteduserpackagelicense\n - revokeduserpackagelicense\n- Customer Portal\n - createdcustomersuccessuser\n - CSPUserDisabled\n- Currency\n - updateddatedexchrate\n- Data Management\n - queueMembership\n- Email Administration\n - dkimRotationPreparationSuccessful\n - dkimRotationSuccessful\n- External Objects\n - xdsEncryptedFieldChange\n- Groups\n - groupMembership\n- Holidays\n - holiday_insert\n- Inbox mobile and legacy desktop apps\n - enableSIQUserNonEAC\n - siqUserAcceptedTOS\n- Manage Users\n - activateduser\n - createduser\n - changedcommunitynickname\n - changedemail\n - changedfederationid\n - changedpassword\n - changedinteractionuseroffon\n - changedinteractionuseronoff\n - changedmarketinguseroffon\n - changedmarketinguseronoff\n - changedofflineuseroffon\n - changedprofileforuserstdtostd\n - changedprofileforuser\n - changedprofileforusercusttostd\n - changedprofileforuserstdtocust\n - changedroleforusertonone\n - changedroleforuser\n - changedroleforuserfromnone\n - changedUserAdminVerifiedStatusVerified\n - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedknowledgeuseroffon\n - changedsfcontentuseroffon\n - changedsupportuseroffon\n - changedusername\n - changedUserPhoneNumber\n - changedUserPhoneVerifiedStatusUnverified\n - changedUserPhoneVerifiedStatusVerified\n - deactivateduser\n - deleteAuthenticatorPairing\n - deleteTwoFactorInfo2\n - deleteTwoFactorTempCode\n - frozeuser\n - insertAuthenticatorPairing\n - insertTwoFactorInfo2\n - insertTwoFactorTempCode\n - lightningloginenroll\n - PermSetAssign\n - PermSetGroupAssign\n - PermSetGroupUnassign\n - PermSetLicenseAssign\n - PermSetUnassign\n - PermSetLicenseUnassign\n - registeredUserPhoneNumber\n - resetpassword\n - suNetworkAdminLogin\n - suNetworkAdminLogout\n - suOrgAdminLogin\n - suOrgAdminLogout\n - unfrozeuser\n - useremailchangesent\n- Mobile Administration\n - assigneduserstomobileconfig\n- Reporting Snapshots\n - createdReportJob\n - deletedReportJob\n- Sandboxes\n - DeleteSandbox\n\nBy default, deployment user defined in .sfdx-hardis.yml targetUsername property will be excluded.\n\nYou can define additional users to exclude in .sfdx-hardis.yml **monitoringExcludeUsernames** property.\n\nYou can also add more sections / actions considered as not suspect using property **monitoringAllowedSectionsActions**\n\nExample:\n\n```yaml\nmonitoringExcludeUsernames:\n - deploymentuser@cloudity.com\n - marketingcloud@cloudity.com\n - integration-user@cloudity.com\n\nmonitoringAllowedSectionsActions:\n \"Some section\": [] // Will ignore all actions from such section\n \"Some other section\": [\"actionType1\",\"actionType2\",\"actionType3\"] // Will ignore only those 3 actions from section \"Some other section\". Other actions in the same section will be considered as suspect.\n```\n\n## Excel output example\n\n\n\n## Local output example\n\n\n\nThis command is part of [sfdx-hardis Monitoring](https://sfdx-hardis.cloudity.com/salesforce-monitoring-suspect-audit-trail/) and can output Grafana, Slack and MsTeams Notifications.\n",
|
|
5745
5745
|
"examples": [
|
|
5746
|
-
"$ sf hardis:org:
|
|
5747
|
-
"$ sf hardis:org:
|
|
5746
|
+
"$ sf hardis:org:diagnose:audittrail",
|
|
5747
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
|
|
5748
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
|
|
5749
|
+
"$ sf hardis:org:diagnose:audittrail --lastndays 5"
|
|
5748
5750
|
],
|
|
5749
5751
|
"flags": {
|
|
5750
5752
|
"json": {
|
|
@@ -5762,10 +5764,26 @@
|
|
|
5762
5764
|
"multiple": false,
|
|
5763
5765
|
"type": "option"
|
|
5764
5766
|
},
|
|
5765
|
-
"
|
|
5766
|
-
"char": "
|
|
5767
|
-
"description": "Comma-separated list of
|
|
5768
|
-
"name": "
|
|
5767
|
+
"excludeusers": {
|
|
5768
|
+
"char": "e",
|
|
5769
|
+
"description": "Comma-separated list of usernames to exclude",
|
|
5770
|
+
"name": "excludeusers",
|
|
5771
|
+
"hasDynamicHelp": false,
|
|
5772
|
+
"multiple": false,
|
|
5773
|
+
"type": "option"
|
|
5774
|
+
},
|
|
5775
|
+
"lastndays": {
|
|
5776
|
+
"char": "t",
|
|
5777
|
+
"description": "Number of days to extract from today (included)",
|
|
5778
|
+
"name": "lastndays",
|
|
5779
|
+
"hasDynamicHelp": false,
|
|
5780
|
+
"multiple": false,
|
|
5781
|
+
"type": "option"
|
|
5782
|
+
},
|
|
5783
|
+
"outputfile": {
|
|
5784
|
+
"char": "f",
|
|
5785
|
+
"description": "Force the path and name of output report file. Must end with .csv",
|
|
5786
|
+
"name": "outputfile",
|
|
5769
5787
|
"hasDynamicHelp": false,
|
|
5770
5788
|
"multiple": false,
|
|
5771
5789
|
"type": "option"
|
|
@@ -5808,190 +5826,57 @@
|
|
|
5808
5826
|
},
|
|
5809
5827
|
"hasDynamicHelp": true,
|
|
5810
5828
|
"hiddenAliases": [],
|
|
5811
|
-
"id": "hardis:org:
|
|
5829
|
+
"id": "hardis:org:diagnose:audittrail",
|
|
5812
5830
|
"pluginAlias": "sfdx-hardis",
|
|
5813
5831
|
"pluginName": "sfdx-hardis",
|
|
5814
5832
|
"pluginType": "core",
|
|
5815
5833
|
"strict": true,
|
|
5816
5834
|
"enableJsonFlag": true,
|
|
5817
|
-
"title": "
|
|
5818
|
-
"requiresProject":
|
|
5835
|
+
"title": "Diagnose content of Setup Audit Trail",
|
|
5836
|
+
"requiresProject": false,
|
|
5819
5837
|
"isESM": true,
|
|
5820
5838
|
"relativePath": [
|
|
5821
5839
|
"lib",
|
|
5822
5840
|
"commands",
|
|
5823
5841
|
"hardis",
|
|
5824
5842
|
"org",
|
|
5825
|
-
"
|
|
5826
|
-
"
|
|
5843
|
+
"diagnose",
|
|
5844
|
+
"audittrail.js"
|
|
5827
5845
|
],
|
|
5828
5846
|
"aliasPermutations": [],
|
|
5829
5847
|
"permutations": [
|
|
5830
|
-
"hardis:org:
|
|
5831
|
-
"org:hardis:
|
|
5832
|
-
"org:
|
|
5833
|
-
"org:
|
|
5834
|
-
"hardis:
|
|
5835
|
-
"
|
|
5836
|
-
"
|
|
5837
|
-
"
|
|
5838
|
-
"hardis:
|
|
5839
|
-
"
|
|
5840
|
-
"
|
|
5841
|
-
"
|
|
5842
|
-
"hardis:org:
|
|
5843
|
-
"org:hardis:
|
|
5844
|
-
"org:
|
|
5845
|
-
"org:
|
|
5846
|
-
"hardis:
|
|
5847
|
-
"
|
|
5848
|
-
"
|
|
5849
|
-
"
|
|
5850
|
-
"hardis:
|
|
5851
|
-
"
|
|
5852
|
-
"
|
|
5853
|
-
"
|
|
5848
|
+
"hardis:org:diagnose:audittrail",
|
|
5849
|
+
"org:hardis:diagnose:audittrail",
|
|
5850
|
+
"org:diagnose:hardis:audittrail",
|
|
5851
|
+
"org:diagnose:audittrail:hardis",
|
|
5852
|
+
"hardis:diagnose:org:audittrail",
|
|
5853
|
+
"diagnose:hardis:org:audittrail",
|
|
5854
|
+
"diagnose:org:hardis:audittrail",
|
|
5855
|
+
"diagnose:org:audittrail:hardis",
|
|
5856
|
+
"hardis:diagnose:audittrail:org",
|
|
5857
|
+
"diagnose:hardis:audittrail:org",
|
|
5858
|
+
"diagnose:audittrail:hardis:org",
|
|
5859
|
+
"diagnose:audittrail:org:hardis",
|
|
5860
|
+
"hardis:org:audittrail:diagnose",
|
|
5861
|
+
"org:hardis:audittrail:diagnose",
|
|
5862
|
+
"org:audittrail:hardis:diagnose",
|
|
5863
|
+
"org:audittrail:diagnose:hardis",
|
|
5864
|
+
"hardis:audittrail:org:diagnose",
|
|
5865
|
+
"audittrail:hardis:org:diagnose",
|
|
5866
|
+
"audittrail:org:hardis:diagnose",
|
|
5867
|
+
"audittrail:org:diagnose:hardis",
|
|
5868
|
+
"hardis:audittrail:diagnose:org",
|
|
5869
|
+
"audittrail:hardis:diagnose:org",
|
|
5870
|
+
"audittrail:diagnose:hardis:org",
|
|
5871
|
+
"audittrail:diagnose:org:hardis"
|
|
5854
5872
|
]
|
|
5855
5873
|
},
|
|
5856
|
-
"hardis:org:diagnose:
|
|
5874
|
+
"hardis:org:diagnose:instanceupgrade": {
|
|
5857
5875
|
"aliases": [],
|
|
5858
5876
|
"args": {},
|
|
5859
|
-
"description": "
|
|
5877
|
+
"description": "Get the date when the org instance will be upgraded (to Spring, Summer or Winter)\n ",
|
|
5860
5878
|
"examples": [
|
|
5861
|
-
"$ sf hardis:org:diagnose:
|
|
5862
|
-
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
|
|
5863
|
-
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
|
|
5864
|
-
"$ sf hardis:org:diagnose:audittrail --lastndays 5"
|
|
5865
|
-
],
|
|
5866
|
-
"flags": {
|
|
5867
|
-
"json": {
|
|
5868
|
-
"description": "Format output as json.",
|
|
5869
|
-
"helpGroup": "GLOBAL",
|
|
5870
|
-
"name": "json",
|
|
5871
|
-
"allowNo": false,
|
|
5872
|
-
"type": "boolean"
|
|
5873
|
-
},
|
|
5874
|
-
"flags-dir": {
|
|
5875
|
-
"helpGroup": "GLOBAL",
|
|
5876
|
-
"name": "flags-dir",
|
|
5877
|
-
"summary": "Import flag values from a directory.",
|
|
5878
|
-
"hasDynamicHelp": false,
|
|
5879
|
-
"multiple": false,
|
|
5880
|
-
"type": "option"
|
|
5881
|
-
},
|
|
5882
|
-
"excludeusers": {
|
|
5883
|
-
"char": "e",
|
|
5884
|
-
"description": "Comma-separated list of usernames to exclude",
|
|
5885
|
-
"name": "excludeusers",
|
|
5886
|
-
"hasDynamicHelp": false,
|
|
5887
|
-
"multiple": false,
|
|
5888
|
-
"type": "option"
|
|
5889
|
-
},
|
|
5890
|
-
"lastndays": {
|
|
5891
|
-
"char": "t",
|
|
5892
|
-
"description": "Number of days to extract from today (included)",
|
|
5893
|
-
"name": "lastndays",
|
|
5894
|
-
"hasDynamicHelp": false,
|
|
5895
|
-
"multiple": false,
|
|
5896
|
-
"type": "option"
|
|
5897
|
-
},
|
|
5898
|
-
"outputfile": {
|
|
5899
|
-
"char": "f",
|
|
5900
|
-
"description": "Force the path and name of output report file. Must end with .csv",
|
|
5901
|
-
"name": "outputfile",
|
|
5902
|
-
"hasDynamicHelp": false,
|
|
5903
|
-
"multiple": false,
|
|
5904
|
-
"type": "option"
|
|
5905
|
-
},
|
|
5906
|
-
"debug": {
|
|
5907
|
-
"char": "d",
|
|
5908
|
-
"description": "Activate debug mode (more logs)",
|
|
5909
|
-
"name": "debug",
|
|
5910
|
-
"allowNo": false,
|
|
5911
|
-
"type": "boolean"
|
|
5912
|
-
},
|
|
5913
|
-
"websocket": {
|
|
5914
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5915
|
-
"name": "websocket",
|
|
5916
|
-
"hasDynamicHelp": false,
|
|
5917
|
-
"multiple": false,
|
|
5918
|
-
"type": "option"
|
|
5919
|
-
},
|
|
5920
|
-
"skipauth": {
|
|
5921
|
-
"description": "Skip authentication check when a default username is required",
|
|
5922
|
-
"name": "skipauth",
|
|
5923
|
-
"allowNo": false,
|
|
5924
|
-
"type": "boolean"
|
|
5925
|
-
},
|
|
5926
|
-
"target-org": {
|
|
5927
|
-
"aliases": [
|
|
5928
|
-
"targetusername",
|
|
5929
|
-
"u"
|
|
5930
|
-
],
|
|
5931
|
-
"char": "o",
|
|
5932
|
-
"deprecateAliases": true,
|
|
5933
|
-
"name": "target-org",
|
|
5934
|
-
"noCacheDefault": true,
|
|
5935
|
-
"required": true,
|
|
5936
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5937
|
-
"hasDynamicHelp": true,
|
|
5938
|
-
"multiple": false,
|
|
5939
|
-
"type": "option"
|
|
5940
|
-
}
|
|
5941
|
-
},
|
|
5942
|
-
"hasDynamicHelp": true,
|
|
5943
|
-
"hiddenAliases": [],
|
|
5944
|
-
"id": "hardis:org:diagnose:audittrail",
|
|
5945
|
-
"pluginAlias": "sfdx-hardis",
|
|
5946
|
-
"pluginName": "sfdx-hardis",
|
|
5947
|
-
"pluginType": "core",
|
|
5948
|
-
"strict": true,
|
|
5949
|
-
"enableJsonFlag": true,
|
|
5950
|
-
"title": "Diagnose content of Setup Audit Trail",
|
|
5951
|
-
"requiresProject": false,
|
|
5952
|
-
"isESM": true,
|
|
5953
|
-
"relativePath": [
|
|
5954
|
-
"lib",
|
|
5955
|
-
"commands",
|
|
5956
|
-
"hardis",
|
|
5957
|
-
"org",
|
|
5958
|
-
"diagnose",
|
|
5959
|
-
"audittrail.js"
|
|
5960
|
-
],
|
|
5961
|
-
"aliasPermutations": [],
|
|
5962
|
-
"permutations": [
|
|
5963
|
-
"hardis:org:diagnose:audittrail",
|
|
5964
|
-
"org:hardis:diagnose:audittrail",
|
|
5965
|
-
"org:diagnose:hardis:audittrail",
|
|
5966
|
-
"org:diagnose:audittrail:hardis",
|
|
5967
|
-
"hardis:diagnose:org:audittrail",
|
|
5968
|
-
"diagnose:hardis:org:audittrail",
|
|
5969
|
-
"diagnose:org:hardis:audittrail",
|
|
5970
|
-
"diagnose:org:audittrail:hardis",
|
|
5971
|
-
"hardis:diagnose:audittrail:org",
|
|
5972
|
-
"diagnose:hardis:audittrail:org",
|
|
5973
|
-
"diagnose:audittrail:hardis:org",
|
|
5974
|
-
"diagnose:audittrail:org:hardis",
|
|
5975
|
-
"hardis:org:audittrail:diagnose",
|
|
5976
|
-
"org:hardis:audittrail:diagnose",
|
|
5977
|
-
"org:audittrail:hardis:diagnose",
|
|
5978
|
-
"org:audittrail:diagnose:hardis",
|
|
5979
|
-
"hardis:audittrail:org:diagnose",
|
|
5980
|
-
"audittrail:hardis:org:diagnose",
|
|
5981
|
-
"audittrail:org:hardis:diagnose",
|
|
5982
|
-
"audittrail:org:diagnose:hardis",
|
|
5983
|
-
"hardis:audittrail:diagnose:org",
|
|
5984
|
-
"audittrail:hardis:diagnose:org",
|
|
5985
|
-
"audittrail:diagnose:hardis:org",
|
|
5986
|
-
"audittrail:diagnose:org:hardis"
|
|
5987
|
-
]
|
|
5988
|
-
},
|
|
5989
|
-
"hardis:org:diagnose:instanceupgrade": {
|
|
5990
|
-
"aliases": [],
|
|
5991
|
-
"args": {},
|
|
5992
|
-
"description": "Get the date when the org instance will be upgraded (to Spring, Summer or Winter)\n ",
|
|
5993
|
-
"examples": [
|
|
5994
|
-
"$ sf hardis:org:diagnose:instanceupgrade"
|
|
5879
|
+
"$ sf hardis:org:diagnose:instanceupgrade"
|
|
5995
5880
|
],
|
|
5996
5881
|
"flags": {
|
|
5997
5882
|
"json": {
|
|
@@ -7002,6 +6887,121 @@
|
|
|
7002
6887
|
"unusedusers:diagnose:org:hardis"
|
|
7003
6888
|
]
|
|
7004
6889
|
},
|
|
6890
|
+
"hardis:org:fix:listviewmine": {
|
|
6891
|
+
"aliases": [],
|
|
6892
|
+
"args": {},
|
|
6893
|
+
"description": "Fix listviews whose scope Mine has been replaced by Everything\n\n[](https://nicolas.vuillamy.fr/invalid-scope-mine-not-allowed-deploy-your-listviews-anyway-443aceca8ac7)\n\nList of ListViews can be:\n\n- read from .sfdx-hardis.yml file in property **listViewsToSetToMine**\n- sent in argument listviews\n\nNote: property **listViewsToSetToMine** can be auto-generated by command hardis:work:save if .sfdx-hardis.yml contains the following configuration\n\n```yaml\nautoCleanTypes:\n - listViewsMine\n```\n\n- Example of sfdx-hardis.yml property `listViewsToSetToMine`:\n\n```yaml\nlistViewsToSetToMine:\n - \"force-app/main/default/objects/Operation__c/listViews/MyCurrentOperations.listView-meta.xml\"\n - \"force-app/main/default/objects/Operation__c/listViews/MyFinalizedOperations.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/Default_Opportunity_Pipeline.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/MyCurrentSubscriptions.listView-meta.xml\"\n - \"force-app/main/default/objects/Opportunity/listViews/MySubscriptions.listView-meta.xml\"\n - \"force-app/main/default/objects/Account/listViews/MyActivePartners.listView-meta.xml\"\n```\n\n- If manually written, this could also be:\n\n```yaml\nlistViewsToSetToMine:\n - \"Operation__c:MyCurrentOperations\"\n - \"Operation__c:MyFinalizedOperations\"\n - \"Opportunity:Default_Opportunity_Pipeline\"\n - \"Opportunity:MyCurrentSubscriptions\"\n - \"Opportunity:MySubscriptions\"\n - \"Account:MyActivePartners\"\n```\n\nTroubleshooting: if you need to run this command from an alpine-linux based docker image, use this workaround in your dockerfile:\n\n```dockerfile\n# Do not use puppeteer embedded chromium\nRUN apk add --update --no-cache chromium\nENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=\"true\"\nENV CHROMIUM_PATH=\"/usr/bin/chromium-browser\"\nENV PUPPETEER_EXECUTABLE_PATH=\"$\\{CHROMIUM_PATH}\" // remove \\ before {\n```\n",
|
|
6894
|
+
"examples": [
|
|
6895
|
+
"$ sf hardis:org:fix:listviewmine",
|
|
6896
|
+
"$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
|
|
6897
|
+
],
|
|
6898
|
+
"flags": {
|
|
6899
|
+
"json": {
|
|
6900
|
+
"description": "Format output as json.",
|
|
6901
|
+
"helpGroup": "GLOBAL",
|
|
6902
|
+
"name": "json",
|
|
6903
|
+
"allowNo": false,
|
|
6904
|
+
"type": "boolean"
|
|
6905
|
+
},
|
|
6906
|
+
"flags-dir": {
|
|
6907
|
+
"helpGroup": "GLOBAL",
|
|
6908
|
+
"name": "flags-dir",
|
|
6909
|
+
"summary": "Import flag values from a directory.",
|
|
6910
|
+
"hasDynamicHelp": false,
|
|
6911
|
+
"multiple": false,
|
|
6912
|
+
"type": "option"
|
|
6913
|
+
},
|
|
6914
|
+
"listviews": {
|
|
6915
|
+
"char": "l",
|
|
6916
|
+
"description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
|
|
6917
|
+
"name": "listviews",
|
|
6918
|
+
"hasDynamicHelp": false,
|
|
6919
|
+
"multiple": false,
|
|
6920
|
+
"type": "option"
|
|
6921
|
+
},
|
|
6922
|
+
"debug": {
|
|
6923
|
+
"char": "d",
|
|
6924
|
+
"description": "Activate debug mode (more logs)",
|
|
6925
|
+
"name": "debug",
|
|
6926
|
+
"allowNo": false,
|
|
6927
|
+
"type": "boolean"
|
|
6928
|
+
},
|
|
6929
|
+
"websocket": {
|
|
6930
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6931
|
+
"name": "websocket",
|
|
6932
|
+
"hasDynamicHelp": false,
|
|
6933
|
+
"multiple": false,
|
|
6934
|
+
"type": "option"
|
|
6935
|
+
},
|
|
6936
|
+
"skipauth": {
|
|
6937
|
+
"description": "Skip authentication check when a default username is required",
|
|
6938
|
+
"name": "skipauth",
|
|
6939
|
+
"allowNo": false,
|
|
6940
|
+
"type": "boolean"
|
|
6941
|
+
},
|
|
6942
|
+
"target-org": {
|
|
6943
|
+
"aliases": [
|
|
6944
|
+
"targetusername",
|
|
6945
|
+
"u"
|
|
6946
|
+
],
|
|
6947
|
+
"char": "o",
|
|
6948
|
+
"deprecateAliases": true,
|
|
6949
|
+
"name": "target-org",
|
|
6950
|
+
"noCacheDefault": true,
|
|
6951
|
+
"required": true,
|
|
6952
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
6953
|
+
"hasDynamicHelp": true,
|
|
6954
|
+
"multiple": false,
|
|
6955
|
+
"type": "option"
|
|
6956
|
+
}
|
|
6957
|
+
},
|
|
6958
|
+
"hasDynamicHelp": true,
|
|
6959
|
+
"hiddenAliases": [],
|
|
6960
|
+
"id": "hardis:org:fix:listviewmine",
|
|
6961
|
+
"pluginAlias": "sfdx-hardis",
|
|
6962
|
+
"pluginName": "sfdx-hardis",
|
|
6963
|
+
"pluginType": "core",
|
|
6964
|
+
"strict": true,
|
|
6965
|
+
"enableJsonFlag": true,
|
|
6966
|
+
"title": "Fix listviews with ",
|
|
6967
|
+
"requiresProject": true,
|
|
6968
|
+
"isESM": true,
|
|
6969
|
+
"relativePath": [
|
|
6970
|
+
"lib",
|
|
6971
|
+
"commands",
|
|
6972
|
+
"hardis",
|
|
6973
|
+
"org",
|
|
6974
|
+
"fix",
|
|
6975
|
+
"listviewmine.js"
|
|
6976
|
+
],
|
|
6977
|
+
"aliasPermutations": [],
|
|
6978
|
+
"permutations": [
|
|
6979
|
+
"hardis:org:fix:listviewmine",
|
|
6980
|
+
"org:hardis:fix:listviewmine",
|
|
6981
|
+
"org:fix:hardis:listviewmine",
|
|
6982
|
+
"org:fix:listviewmine:hardis",
|
|
6983
|
+
"hardis:fix:org:listviewmine",
|
|
6984
|
+
"fix:hardis:org:listviewmine",
|
|
6985
|
+
"fix:org:hardis:listviewmine",
|
|
6986
|
+
"fix:org:listviewmine:hardis",
|
|
6987
|
+
"hardis:fix:listviewmine:org",
|
|
6988
|
+
"fix:hardis:listviewmine:org",
|
|
6989
|
+
"fix:listviewmine:hardis:org",
|
|
6990
|
+
"fix:listviewmine:org:hardis",
|
|
6991
|
+
"hardis:org:listviewmine:fix",
|
|
6992
|
+
"org:hardis:listviewmine:fix",
|
|
6993
|
+
"org:listviewmine:hardis:fix",
|
|
6994
|
+
"org:listviewmine:fix:hardis",
|
|
6995
|
+
"hardis:listviewmine:org:fix",
|
|
6996
|
+
"listviewmine:hardis:org:fix",
|
|
6997
|
+
"listviewmine:org:hardis:fix",
|
|
6998
|
+
"listviewmine:org:fix:hardis",
|
|
6999
|
+
"hardis:listviewmine:fix:org",
|
|
7000
|
+
"listviewmine:hardis:fix:org",
|
|
7001
|
+
"listviewmine:fix:hardis:org",
|
|
7002
|
+
"listviewmine:fix:org:hardis"
|
|
7003
|
+
]
|
|
7004
|
+
},
|
|
7005
7005
|
"hardis:org:generate:packagexmlfull": {
|
|
7006
7006
|
"aliases": [],
|
|
7007
7007
|
"args": {},
|
|
@@ -7592,13 +7592,13 @@
|
|
|
7592
7592
|
"limits:monitor:org:hardis"
|
|
7593
7593
|
]
|
|
7594
7594
|
},
|
|
7595
|
-
"hardis:org:
|
|
7595
|
+
"hardis:org:purge:apexlog": {
|
|
7596
7596
|
"aliases": [],
|
|
7597
7597
|
"args": {},
|
|
7598
|
-
"description": "
|
|
7598
|
+
"description": "Purge apex logs in selected org",
|
|
7599
7599
|
"examples": [
|
|
7600
|
-
"$ sf hardis:org:
|
|
7601
|
-
"sf hardis:org:
|
|
7600
|
+
"$ sf hardis:org:purge:apexlog",
|
|
7601
|
+
"$ sf hardis:org:purge:apexlog --target-org nicolas.vuillamy@gmail.com"
|
|
7602
7602
|
],
|
|
7603
7603
|
"flags": {
|
|
7604
7604
|
"json": {
|
|
@@ -7616,6 +7616,13 @@
|
|
|
7616
7616
|
"multiple": false,
|
|
7617
7617
|
"type": "option"
|
|
7618
7618
|
},
|
|
7619
|
+
"prompt": {
|
|
7620
|
+
"char": "z",
|
|
7621
|
+
"description": "Prompt for confirmation (true by default, use --no-prompt to skip)",
|
|
7622
|
+
"name": "prompt",
|
|
7623
|
+
"allowNo": true,
|
|
7624
|
+
"type": "boolean"
|
|
7625
|
+
},
|
|
7619
7626
|
"debug": {
|
|
7620
7627
|
"char": "d",
|
|
7621
7628
|
"description": "Activate debug mode (more logs)",
|
|
@@ -7654,127 +7661,13 @@
|
|
|
7654
7661
|
},
|
|
7655
7662
|
"hasDynamicHelp": true,
|
|
7656
7663
|
"hiddenAliases": [],
|
|
7657
|
-
"id": "hardis:org:
|
|
7664
|
+
"id": "hardis:org:purge:apexlog",
|
|
7658
7665
|
"pluginAlias": "sfdx-hardis",
|
|
7659
7666
|
"pluginName": "sfdx-hardis",
|
|
7660
7667
|
"pluginType": "core",
|
|
7661
7668
|
"strict": true,
|
|
7662
7669
|
"enableJsonFlag": true,
|
|
7663
|
-
"title": "
|
|
7664
|
-
"requiresProject": false,
|
|
7665
|
-
"isESM": true,
|
|
7666
|
-
"relativePath": [
|
|
7667
|
-
"lib",
|
|
7668
|
-
"commands",
|
|
7669
|
-
"hardis",
|
|
7670
|
-
"org",
|
|
7671
|
-
"retrieve",
|
|
7672
|
-
"packageconfig.js"
|
|
7673
|
-
],
|
|
7674
|
-
"aliasPermutations": [],
|
|
7675
|
-
"permutations": [
|
|
7676
|
-
"hardis:org:retrieve:packageconfig",
|
|
7677
|
-
"org:hardis:retrieve:packageconfig",
|
|
7678
|
-
"org:retrieve:hardis:packageconfig",
|
|
7679
|
-
"org:retrieve:packageconfig:hardis",
|
|
7680
|
-
"hardis:retrieve:org:packageconfig",
|
|
7681
|
-
"retrieve:hardis:org:packageconfig",
|
|
7682
|
-
"retrieve:org:hardis:packageconfig",
|
|
7683
|
-
"retrieve:org:packageconfig:hardis",
|
|
7684
|
-
"hardis:retrieve:packageconfig:org",
|
|
7685
|
-
"retrieve:hardis:packageconfig:org",
|
|
7686
|
-
"retrieve:packageconfig:hardis:org",
|
|
7687
|
-
"retrieve:packageconfig:org:hardis",
|
|
7688
|
-
"hardis:org:packageconfig:retrieve",
|
|
7689
|
-
"org:hardis:packageconfig:retrieve",
|
|
7690
|
-
"org:packageconfig:hardis:retrieve",
|
|
7691
|
-
"org:packageconfig:retrieve:hardis",
|
|
7692
|
-
"hardis:packageconfig:org:retrieve",
|
|
7693
|
-
"packageconfig:hardis:org:retrieve",
|
|
7694
|
-
"packageconfig:org:hardis:retrieve",
|
|
7695
|
-
"packageconfig:org:retrieve:hardis",
|
|
7696
|
-
"hardis:packageconfig:retrieve:org",
|
|
7697
|
-
"packageconfig:hardis:retrieve:org",
|
|
7698
|
-
"packageconfig:retrieve:hardis:org",
|
|
7699
|
-
"packageconfig:retrieve:org:hardis"
|
|
7700
|
-
]
|
|
7701
|
-
},
|
|
7702
|
-
"hardis:org:purge:apexlog": {
|
|
7703
|
-
"aliases": [],
|
|
7704
|
-
"args": {},
|
|
7705
|
-
"description": "Purge apex logs in selected org",
|
|
7706
|
-
"examples": [
|
|
7707
|
-
"$ sf hardis:org:purge:apexlog",
|
|
7708
|
-
"$ sf hardis:org:purge:apexlog --target-org nicolas.vuillamy@gmail.com"
|
|
7709
|
-
],
|
|
7710
|
-
"flags": {
|
|
7711
|
-
"json": {
|
|
7712
|
-
"description": "Format output as json.",
|
|
7713
|
-
"helpGroup": "GLOBAL",
|
|
7714
|
-
"name": "json",
|
|
7715
|
-
"allowNo": false,
|
|
7716
|
-
"type": "boolean"
|
|
7717
|
-
},
|
|
7718
|
-
"flags-dir": {
|
|
7719
|
-
"helpGroup": "GLOBAL",
|
|
7720
|
-
"name": "flags-dir",
|
|
7721
|
-
"summary": "Import flag values from a directory.",
|
|
7722
|
-
"hasDynamicHelp": false,
|
|
7723
|
-
"multiple": false,
|
|
7724
|
-
"type": "option"
|
|
7725
|
-
},
|
|
7726
|
-
"prompt": {
|
|
7727
|
-
"char": "z",
|
|
7728
|
-
"description": "Prompt for confirmation (true by default, use --no-prompt to skip)",
|
|
7729
|
-
"name": "prompt",
|
|
7730
|
-
"allowNo": true,
|
|
7731
|
-
"type": "boolean"
|
|
7732
|
-
},
|
|
7733
|
-
"debug": {
|
|
7734
|
-
"char": "d",
|
|
7735
|
-
"description": "Activate debug mode (more logs)",
|
|
7736
|
-
"name": "debug",
|
|
7737
|
-
"allowNo": false,
|
|
7738
|
-
"type": "boolean"
|
|
7739
|
-
},
|
|
7740
|
-
"websocket": {
|
|
7741
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
7742
|
-
"name": "websocket",
|
|
7743
|
-
"hasDynamicHelp": false,
|
|
7744
|
-
"multiple": false,
|
|
7745
|
-
"type": "option"
|
|
7746
|
-
},
|
|
7747
|
-
"skipauth": {
|
|
7748
|
-
"description": "Skip authentication check when a default username is required",
|
|
7749
|
-
"name": "skipauth",
|
|
7750
|
-
"allowNo": false,
|
|
7751
|
-
"type": "boolean"
|
|
7752
|
-
},
|
|
7753
|
-
"target-org": {
|
|
7754
|
-
"aliases": [
|
|
7755
|
-
"targetusername",
|
|
7756
|
-
"u"
|
|
7757
|
-
],
|
|
7758
|
-
"char": "o",
|
|
7759
|
-
"deprecateAliases": true,
|
|
7760
|
-
"name": "target-org",
|
|
7761
|
-
"noCacheDefault": true,
|
|
7762
|
-
"required": true,
|
|
7763
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
7764
|
-
"hasDynamicHelp": true,
|
|
7765
|
-
"multiple": false,
|
|
7766
|
-
"type": "option"
|
|
7767
|
-
}
|
|
7768
|
-
},
|
|
7769
|
-
"hasDynamicHelp": true,
|
|
7770
|
-
"hiddenAliases": [],
|
|
7771
|
-
"id": "hardis:org:purge:apexlog",
|
|
7772
|
-
"pluginAlias": "sfdx-hardis",
|
|
7773
|
-
"pluginName": "sfdx-hardis",
|
|
7774
|
-
"pluginType": "core",
|
|
7775
|
-
"strict": true,
|
|
7776
|
-
"enableJsonFlag": true,
|
|
7777
|
-
"title": "Purge Apex Logs",
|
|
7670
|
+
"title": "Purge Apex Logs",
|
|
7778
7671
|
"requiresProject": false,
|
|
7779
7672
|
"isESM": true,
|
|
7780
7673
|
"relativePath": [
|
|
@@ -7967,6 +7860,113 @@
|
|
|
7967
7860
|
"flow:purge:org:hardis"
|
|
7968
7861
|
]
|
|
7969
7862
|
},
|
|
7863
|
+
"hardis:org:retrieve:packageconfig": {
|
|
7864
|
+
"aliases": [],
|
|
7865
|
+
"args": {},
|
|
7866
|
+
"description": "Retrieve package configuration from an org",
|
|
7867
|
+
"examples": [
|
|
7868
|
+
"$ sf hardis:org:retrieve:packageconfig",
|
|
7869
|
+
"sf hardis:org:retrieve:packageconfig -u myOrg"
|
|
7870
|
+
],
|
|
7871
|
+
"flags": {
|
|
7872
|
+
"json": {
|
|
7873
|
+
"description": "Format output as json.",
|
|
7874
|
+
"helpGroup": "GLOBAL",
|
|
7875
|
+
"name": "json",
|
|
7876
|
+
"allowNo": false,
|
|
7877
|
+
"type": "boolean"
|
|
7878
|
+
},
|
|
7879
|
+
"flags-dir": {
|
|
7880
|
+
"helpGroup": "GLOBAL",
|
|
7881
|
+
"name": "flags-dir",
|
|
7882
|
+
"summary": "Import flag values from a directory.",
|
|
7883
|
+
"hasDynamicHelp": false,
|
|
7884
|
+
"multiple": false,
|
|
7885
|
+
"type": "option"
|
|
7886
|
+
},
|
|
7887
|
+
"debug": {
|
|
7888
|
+
"char": "d",
|
|
7889
|
+
"description": "Activate debug mode (more logs)",
|
|
7890
|
+
"name": "debug",
|
|
7891
|
+
"allowNo": false,
|
|
7892
|
+
"type": "boolean"
|
|
7893
|
+
},
|
|
7894
|
+
"websocket": {
|
|
7895
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
7896
|
+
"name": "websocket",
|
|
7897
|
+
"hasDynamicHelp": false,
|
|
7898
|
+
"multiple": false,
|
|
7899
|
+
"type": "option"
|
|
7900
|
+
},
|
|
7901
|
+
"skipauth": {
|
|
7902
|
+
"description": "Skip authentication check when a default username is required",
|
|
7903
|
+
"name": "skipauth",
|
|
7904
|
+
"allowNo": false,
|
|
7905
|
+
"type": "boolean"
|
|
7906
|
+
},
|
|
7907
|
+
"target-org": {
|
|
7908
|
+
"aliases": [
|
|
7909
|
+
"targetusername",
|
|
7910
|
+
"u"
|
|
7911
|
+
],
|
|
7912
|
+
"char": "o",
|
|
7913
|
+
"deprecateAliases": true,
|
|
7914
|
+
"name": "target-org",
|
|
7915
|
+
"noCacheDefault": true,
|
|
7916
|
+
"required": true,
|
|
7917
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
7918
|
+
"hasDynamicHelp": true,
|
|
7919
|
+
"multiple": false,
|
|
7920
|
+
"type": "option"
|
|
7921
|
+
}
|
|
7922
|
+
},
|
|
7923
|
+
"hasDynamicHelp": true,
|
|
7924
|
+
"hiddenAliases": [],
|
|
7925
|
+
"id": "hardis:org:retrieve:packageconfig",
|
|
7926
|
+
"pluginAlias": "sfdx-hardis",
|
|
7927
|
+
"pluginName": "sfdx-hardis",
|
|
7928
|
+
"pluginType": "core",
|
|
7929
|
+
"strict": true,
|
|
7930
|
+
"enableJsonFlag": true,
|
|
7931
|
+
"title": "Retrieve package configuration from an org",
|
|
7932
|
+
"requiresProject": false,
|
|
7933
|
+
"isESM": true,
|
|
7934
|
+
"relativePath": [
|
|
7935
|
+
"lib",
|
|
7936
|
+
"commands",
|
|
7937
|
+
"hardis",
|
|
7938
|
+
"org",
|
|
7939
|
+
"retrieve",
|
|
7940
|
+
"packageconfig.js"
|
|
7941
|
+
],
|
|
7942
|
+
"aliasPermutations": [],
|
|
7943
|
+
"permutations": [
|
|
7944
|
+
"hardis:org:retrieve:packageconfig",
|
|
7945
|
+
"org:hardis:retrieve:packageconfig",
|
|
7946
|
+
"org:retrieve:hardis:packageconfig",
|
|
7947
|
+
"org:retrieve:packageconfig:hardis",
|
|
7948
|
+
"hardis:retrieve:org:packageconfig",
|
|
7949
|
+
"retrieve:hardis:org:packageconfig",
|
|
7950
|
+
"retrieve:org:hardis:packageconfig",
|
|
7951
|
+
"retrieve:org:packageconfig:hardis",
|
|
7952
|
+
"hardis:retrieve:packageconfig:org",
|
|
7953
|
+
"retrieve:hardis:packageconfig:org",
|
|
7954
|
+
"retrieve:packageconfig:hardis:org",
|
|
7955
|
+
"retrieve:packageconfig:org:hardis",
|
|
7956
|
+
"hardis:org:packageconfig:retrieve",
|
|
7957
|
+
"org:hardis:packageconfig:retrieve",
|
|
7958
|
+
"org:packageconfig:hardis:retrieve",
|
|
7959
|
+
"org:packageconfig:retrieve:hardis",
|
|
7960
|
+
"hardis:packageconfig:org:retrieve",
|
|
7961
|
+
"packageconfig:hardis:org:retrieve",
|
|
7962
|
+
"packageconfig:org:hardis:retrieve",
|
|
7963
|
+
"packageconfig:org:retrieve:hardis",
|
|
7964
|
+
"hardis:packageconfig:retrieve:org",
|
|
7965
|
+
"packageconfig:hardis:retrieve:org",
|
|
7966
|
+
"packageconfig:retrieve:hardis:org",
|
|
7967
|
+
"packageconfig:retrieve:org:hardis"
|
|
7968
|
+
]
|
|
7969
|
+
},
|
|
7970
7970
|
"hardis:org:test:apex": {
|
|
7971
7971
|
"aliases": [],
|
|
7972
7972
|
"args": {},
|
|
@@ -9383,12 +9383,12 @@
|
|
|
9383
9383
|
"auth:configure:project:hardis"
|
|
9384
9384
|
]
|
|
9385
9385
|
},
|
|
9386
|
-
"hardis:project:
|
|
9386
|
+
"hardis:project:clean:emptyitems": {
|
|
9387
9387
|
"aliases": [],
|
|
9388
9388
|
"args": {},
|
|
9389
|
-
"description": "
|
|
9389
|
+
"description": "Remove unwanted empty items within sfdx project sources",
|
|
9390
9390
|
"examples": [
|
|
9391
|
-
"$ sf hardis:project:
|
|
9391
|
+
"$ sf hardis:project:clean:emptyitems"
|
|
9392
9392
|
],
|
|
9393
9393
|
"flags": {
|
|
9394
9394
|
"json": {
|
|
@@ -9406,13 +9406,13 @@
|
|
|
9406
9406
|
"multiple": false,
|
|
9407
9407
|
"type": "option"
|
|
9408
9408
|
},
|
|
9409
|
-
"
|
|
9410
|
-
"char": "
|
|
9411
|
-
"description": "
|
|
9412
|
-
"name": "
|
|
9413
|
-
"default":
|
|
9409
|
+
"folder": {
|
|
9410
|
+
"char": "f",
|
|
9411
|
+
"description": "Root folder",
|
|
9412
|
+
"name": "folder",
|
|
9413
|
+
"default": "force-app",
|
|
9414
9414
|
"hasDynamicHelp": false,
|
|
9415
|
-
"multiple":
|
|
9415
|
+
"multiple": false,
|
|
9416
9416
|
"type": "option"
|
|
9417
9417
|
},
|
|
9418
9418
|
"debug": {
|
|
@@ -9438,125 +9438,22 @@
|
|
|
9438
9438
|
},
|
|
9439
9439
|
"hasDynamicHelp": false,
|
|
9440
9440
|
"hiddenAliases": [],
|
|
9441
|
-
"id": "hardis:project:
|
|
9441
|
+
"id": "hardis:project:clean:emptyitems",
|
|
9442
9442
|
"pluginAlias": "sfdx-hardis",
|
|
9443
9443
|
"pluginName": "sfdx-hardis",
|
|
9444
9444
|
"pluginType": "core",
|
|
9445
9445
|
"strict": true,
|
|
9446
9446
|
"enableJsonFlag": true,
|
|
9447
|
-
"title": "
|
|
9447
|
+
"title": "Clean retrieved empty items in dx sources",
|
|
9448
9448
|
"requiresProject": true,
|
|
9449
|
-
"requiresSfdxPlugins": [
|
|
9450
|
-
"shane-sfdx-plugins"
|
|
9451
|
-
],
|
|
9452
9449
|
"isESM": true,
|
|
9453
9450
|
"relativePath": [
|
|
9454
9451
|
"lib",
|
|
9455
9452
|
"commands",
|
|
9456
9453
|
"hardis",
|
|
9457
9454
|
"project",
|
|
9458
|
-
"
|
|
9459
|
-
"
|
|
9460
|
-
],
|
|
9461
|
-
"aliasPermutations": [],
|
|
9462
|
-
"permutations": [
|
|
9463
|
-
"hardis:project:convert:profilestopermsets",
|
|
9464
|
-
"project:hardis:convert:profilestopermsets",
|
|
9465
|
-
"project:convert:hardis:profilestopermsets",
|
|
9466
|
-
"project:convert:profilestopermsets:hardis",
|
|
9467
|
-
"hardis:convert:project:profilestopermsets",
|
|
9468
|
-
"convert:hardis:project:profilestopermsets",
|
|
9469
|
-
"convert:project:hardis:profilestopermsets",
|
|
9470
|
-
"convert:project:profilestopermsets:hardis",
|
|
9471
|
-
"hardis:convert:profilestopermsets:project",
|
|
9472
|
-
"convert:hardis:profilestopermsets:project",
|
|
9473
|
-
"convert:profilestopermsets:hardis:project",
|
|
9474
|
-
"convert:profilestopermsets:project:hardis",
|
|
9475
|
-
"hardis:project:profilestopermsets:convert",
|
|
9476
|
-
"project:hardis:profilestopermsets:convert",
|
|
9477
|
-
"project:profilestopermsets:hardis:convert",
|
|
9478
|
-
"project:profilestopermsets:convert:hardis",
|
|
9479
|
-
"hardis:profilestopermsets:project:convert",
|
|
9480
|
-
"profilestopermsets:hardis:project:convert",
|
|
9481
|
-
"profilestopermsets:project:hardis:convert",
|
|
9482
|
-
"profilestopermsets:project:convert:hardis",
|
|
9483
|
-
"hardis:profilestopermsets:convert:project",
|
|
9484
|
-
"profilestopermsets:hardis:convert:project",
|
|
9485
|
-
"profilestopermsets:convert:hardis:project",
|
|
9486
|
-
"profilestopermsets:convert:project:hardis"
|
|
9487
|
-
]
|
|
9488
|
-
},
|
|
9489
|
-
"hardis:project:clean:emptyitems": {
|
|
9490
|
-
"aliases": [],
|
|
9491
|
-
"args": {},
|
|
9492
|
-
"description": "Remove unwanted empty items within sfdx project sources",
|
|
9493
|
-
"examples": [
|
|
9494
|
-
"$ sf hardis:project:clean:emptyitems"
|
|
9495
|
-
],
|
|
9496
|
-
"flags": {
|
|
9497
|
-
"json": {
|
|
9498
|
-
"description": "Format output as json.",
|
|
9499
|
-
"helpGroup": "GLOBAL",
|
|
9500
|
-
"name": "json",
|
|
9501
|
-
"allowNo": false,
|
|
9502
|
-
"type": "boolean"
|
|
9503
|
-
},
|
|
9504
|
-
"flags-dir": {
|
|
9505
|
-
"helpGroup": "GLOBAL",
|
|
9506
|
-
"name": "flags-dir",
|
|
9507
|
-
"summary": "Import flag values from a directory.",
|
|
9508
|
-
"hasDynamicHelp": false,
|
|
9509
|
-
"multiple": false,
|
|
9510
|
-
"type": "option"
|
|
9511
|
-
},
|
|
9512
|
-
"folder": {
|
|
9513
|
-
"char": "f",
|
|
9514
|
-
"description": "Root folder",
|
|
9515
|
-
"name": "folder",
|
|
9516
|
-
"default": "force-app",
|
|
9517
|
-
"hasDynamicHelp": false,
|
|
9518
|
-
"multiple": false,
|
|
9519
|
-
"type": "option"
|
|
9520
|
-
},
|
|
9521
|
-
"debug": {
|
|
9522
|
-
"char": "d",
|
|
9523
|
-
"description": "Activate debug mode (more logs)",
|
|
9524
|
-
"name": "debug",
|
|
9525
|
-
"allowNo": false,
|
|
9526
|
-
"type": "boolean"
|
|
9527
|
-
},
|
|
9528
|
-
"websocket": {
|
|
9529
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
9530
|
-
"name": "websocket",
|
|
9531
|
-
"hasDynamicHelp": false,
|
|
9532
|
-
"multiple": false,
|
|
9533
|
-
"type": "option"
|
|
9534
|
-
},
|
|
9535
|
-
"skipauth": {
|
|
9536
|
-
"description": "Skip authentication check when a default username is required",
|
|
9537
|
-
"name": "skipauth",
|
|
9538
|
-
"allowNo": false,
|
|
9539
|
-
"type": "boolean"
|
|
9540
|
-
}
|
|
9541
|
-
},
|
|
9542
|
-
"hasDynamicHelp": false,
|
|
9543
|
-
"hiddenAliases": [],
|
|
9544
|
-
"id": "hardis:project:clean:emptyitems",
|
|
9545
|
-
"pluginAlias": "sfdx-hardis",
|
|
9546
|
-
"pluginName": "sfdx-hardis",
|
|
9547
|
-
"pluginType": "core",
|
|
9548
|
-
"strict": true,
|
|
9549
|
-
"enableJsonFlag": true,
|
|
9550
|
-
"title": "Clean retrieved empty items in dx sources",
|
|
9551
|
-
"requiresProject": true,
|
|
9552
|
-
"isESM": true,
|
|
9553
|
-
"relativePath": [
|
|
9554
|
-
"lib",
|
|
9555
|
-
"commands",
|
|
9556
|
-
"hardis",
|
|
9557
|
-
"project",
|
|
9558
|
-
"clean",
|
|
9559
|
-
"emptyitems.js"
|
|
9455
|
+
"clean",
|
|
9456
|
+
"emptyitems.js"
|
|
9560
9457
|
],
|
|
9561
9458
|
"aliasPermutations": [],
|
|
9562
9459
|
"permutations": [
|
|
@@ -10971,14 +10868,12 @@
|
|
|
10971
10868
|
"xml:clean:project:hardis"
|
|
10972
10869
|
]
|
|
10973
10870
|
},
|
|
10974
|
-
"hardis:project:
|
|
10871
|
+
"hardis:project:convert:profilestopermsets": {
|
|
10975
10872
|
"aliases": [],
|
|
10976
10873
|
"args": {},
|
|
10977
|
-
"description": "
|
|
10874
|
+
"description": "Creates permission sets from existing profiles, with id PS_PROFILENAME",
|
|
10978
10875
|
"examples": [
|
|
10979
|
-
"$ sf hardis:project:
|
|
10980
|
-
"$ sf hardis:project:deploy:notify --check-only --deploy-status invalid --message \"This deployment check has failed !\\n\\Oh no !!\"",
|
|
10981
|
-
"$ sf hardis:project:deploy:notify --deploy-status valid --message \"This deployment has been processed !\\n\\nYahooo !!\""
|
|
10876
|
+
"$ sf hardis:project:convert:profilestopermsets"
|
|
10982
10877
|
],
|
|
10983
10878
|
"flags": {
|
|
10984
10879
|
"json": {
|
|
@@ -10996,34 +10891,13 @@
|
|
|
10996
10891
|
"multiple": false,
|
|
10997
10892
|
"type": "option"
|
|
10998
10893
|
},
|
|
10999
|
-
"
|
|
11000
|
-
"char": "
|
|
11001
|
-
"description": "
|
|
11002
|
-
"name": "
|
|
11003
|
-
"
|
|
11004
|
-
"type": "boolean"
|
|
11005
|
-
},
|
|
11006
|
-
"deploy-status": {
|
|
11007
|
-
"char": "s",
|
|
11008
|
-
"description": "Send success, failure or unknown (default) to indicate if the deployment or deployment simulation is in success or not",
|
|
11009
|
-
"name": "deploy-status",
|
|
11010
|
-
"default": "unknown",
|
|
11011
|
-
"hasDynamicHelp": false,
|
|
11012
|
-
"multiple": false,
|
|
11013
|
-
"options": [
|
|
11014
|
-
"valid",
|
|
11015
|
-
"invalid",
|
|
11016
|
-
"unknown"
|
|
11017
|
-
],
|
|
11018
|
-
"type": "option"
|
|
11019
|
-
},
|
|
11020
|
-
"message": {
|
|
11021
|
-
"char": "m",
|
|
11022
|
-
"description": "Custom message that you want to be added in notifications (string or markdown format)",
|
|
11023
|
-
"name": "message",
|
|
11024
|
-
"default": "",
|
|
10894
|
+
"except": {
|
|
10895
|
+
"char": "e",
|
|
10896
|
+
"description": "List of filters",
|
|
10897
|
+
"name": "except",
|
|
10898
|
+
"default": [],
|
|
11025
10899
|
"hasDynamicHelp": false,
|
|
11026
|
-
"multiple":
|
|
10900
|
+
"multiple": true,
|
|
11027
10901
|
"type": "option"
|
|
11028
10902
|
},
|
|
11029
10903
|
"debug": {
|
|
@@ -11045,76 +10919,65 @@
|
|
|
11045
10919
|
"name": "skipauth",
|
|
11046
10920
|
"allowNo": false,
|
|
11047
10921
|
"type": "boolean"
|
|
11048
|
-
},
|
|
11049
|
-
"target-org": {
|
|
11050
|
-
"aliases": [
|
|
11051
|
-
"targetusername",
|
|
11052
|
-
"u"
|
|
11053
|
-
],
|
|
11054
|
-
"char": "o",
|
|
11055
|
-
"deprecateAliases": true,
|
|
11056
|
-
"name": "target-org",
|
|
11057
|
-
"noCacheDefault": true,
|
|
11058
|
-
"required": true,
|
|
11059
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
11060
|
-
"hasDynamicHelp": true,
|
|
11061
|
-
"multiple": false,
|
|
11062
|
-
"type": "option"
|
|
11063
10922
|
}
|
|
11064
10923
|
},
|
|
11065
|
-
"hasDynamicHelp":
|
|
10924
|
+
"hasDynamicHelp": false,
|
|
11066
10925
|
"hiddenAliases": [],
|
|
11067
|
-
"id": "hardis:project:
|
|
10926
|
+
"id": "hardis:project:convert:profilestopermsets",
|
|
11068
10927
|
"pluginAlias": "sfdx-hardis",
|
|
11069
10928
|
"pluginName": "sfdx-hardis",
|
|
11070
10929
|
"pluginType": "core",
|
|
11071
10930
|
"strict": true,
|
|
11072
10931
|
"enableJsonFlag": true,
|
|
11073
|
-
"title": "
|
|
10932
|
+
"title": "Convert Profiles into Permission Sets",
|
|
11074
10933
|
"requiresProject": true,
|
|
10934
|
+
"requiresSfdxPlugins": [
|
|
10935
|
+
"shane-sfdx-plugins"
|
|
10936
|
+
],
|
|
11075
10937
|
"isESM": true,
|
|
11076
10938
|
"relativePath": [
|
|
11077
10939
|
"lib",
|
|
11078
10940
|
"commands",
|
|
11079
10941
|
"hardis",
|
|
11080
10942
|
"project",
|
|
11081
|
-
"
|
|
11082
|
-
"
|
|
10943
|
+
"convert",
|
|
10944
|
+
"profilestopermsets.js"
|
|
11083
10945
|
],
|
|
11084
10946
|
"aliasPermutations": [],
|
|
11085
10947
|
"permutations": [
|
|
11086
|
-
"hardis:project:
|
|
11087
|
-
"project:hardis:
|
|
11088
|
-
"project:
|
|
11089
|
-
"project:
|
|
11090
|
-
"hardis:
|
|
11091
|
-
"
|
|
11092
|
-
"
|
|
11093
|
-
"
|
|
11094
|
-
"hardis:
|
|
11095
|
-
"
|
|
11096
|
-
"
|
|
11097
|
-
"
|
|
11098
|
-
"hardis:project:
|
|
11099
|
-
"project:hardis:
|
|
11100
|
-
"project:
|
|
11101
|
-
"project:
|
|
11102
|
-
"hardis:
|
|
11103
|
-
"
|
|
11104
|
-
"
|
|
11105
|
-
"
|
|
11106
|
-
"hardis:
|
|
11107
|
-
"
|
|
11108
|
-
"
|
|
11109
|
-
"
|
|
10948
|
+
"hardis:project:convert:profilestopermsets",
|
|
10949
|
+
"project:hardis:convert:profilestopermsets",
|
|
10950
|
+
"project:convert:hardis:profilestopermsets",
|
|
10951
|
+
"project:convert:profilestopermsets:hardis",
|
|
10952
|
+
"hardis:convert:project:profilestopermsets",
|
|
10953
|
+
"convert:hardis:project:profilestopermsets",
|
|
10954
|
+
"convert:project:hardis:profilestopermsets",
|
|
10955
|
+
"convert:project:profilestopermsets:hardis",
|
|
10956
|
+
"hardis:convert:profilestopermsets:project",
|
|
10957
|
+
"convert:hardis:profilestopermsets:project",
|
|
10958
|
+
"convert:profilestopermsets:hardis:project",
|
|
10959
|
+
"convert:profilestopermsets:project:hardis",
|
|
10960
|
+
"hardis:project:profilestopermsets:convert",
|
|
10961
|
+
"project:hardis:profilestopermsets:convert",
|
|
10962
|
+
"project:profilestopermsets:hardis:convert",
|
|
10963
|
+
"project:profilestopermsets:convert:hardis",
|
|
10964
|
+
"hardis:profilestopermsets:project:convert",
|
|
10965
|
+
"profilestopermsets:hardis:project:convert",
|
|
10966
|
+
"profilestopermsets:project:hardis:convert",
|
|
10967
|
+
"profilestopermsets:project:convert:hardis",
|
|
10968
|
+
"hardis:profilestopermsets:convert:project",
|
|
10969
|
+
"profilestopermsets:hardis:convert:project",
|
|
10970
|
+
"profilestopermsets:convert:hardis:project",
|
|
10971
|
+
"profilestopermsets:convert:project:hardis"
|
|
11110
10972
|
]
|
|
11111
10973
|
},
|
|
11112
|
-
"hardis:project:
|
|
11113
|
-
"aliases": [
|
|
11114
|
-
"hardis:deploy:quick"
|
|
11115
|
-
],
|
|
10974
|
+
"hardis:project:fix:profiletabs": {
|
|
10975
|
+
"aliases": [],
|
|
11116
10976
|
"args": {},
|
|
11117
|
-
"description": "
|
|
10977
|
+
"description": "Interactive prompts to add tab visibilities that are not retrieved by project retrieve start",
|
|
10978
|
+
"examples": [
|
|
10979
|
+
"$ sf hardis:project:fix:profiletabs"
|
|
10980
|
+
],
|
|
11118
10981
|
"flags": {
|
|
11119
10982
|
"json": {
|
|
11120
10983
|
"description": "Format output as json.",
|
|
@@ -11131,20 +10994,372 @@
|
|
|
11131
10994
|
"multiple": false,
|
|
11132
10995
|
"type": "option"
|
|
11133
10996
|
},
|
|
11134
|
-
"
|
|
11135
|
-
"char": "
|
|
11136
|
-
"description": "
|
|
11137
|
-
"name": "
|
|
10997
|
+
"path": {
|
|
10998
|
+
"char": "p",
|
|
10999
|
+
"description": "Root folder",
|
|
11000
|
+
"name": "path",
|
|
11001
|
+
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
11138
11002
|
"hasDynamicHelp": false,
|
|
11139
11003
|
"multiple": false,
|
|
11140
11004
|
"type": "option"
|
|
11141
11005
|
},
|
|
11142
|
-
"
|
|
11143
|
-
"
|
|
11144
|
-
"
|
|
11145
|
-
|
|
11146
|
-
|
|
11147
|
-
"
|
|
11006
|
+
"debug": {
|
|
11007
|
+
"char": "d",
|
|
11008
|
+
"description": "Activate debug mode (more logs)",
|
|
11009
|
+
"name": "debug",
|
|
11010
|
+
"allowNo": false,
|
|
11011
|
+
"type": "boolean"
|
|
11012
|
+
},
|
|
11013
|
+
"websocket": {
|
|
11014
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
11015
|
+
"name": "websocket",
|
|
11016
|
+
"hasDynamicHelp": false,
|
|
11017
|
+
"multiple": false,
|
|
11018
|
+
"type": "option"
|
|
11019
|
+
},
|
|
11020
|
+
"skipauth": {
|
|
11021
|
+
"description": "Skip authentication check when a default username is required",
|
|
11022
|
+
"name": "skipauth",
|
|
11023
|
+
"allowNo": false,
|
|
11024
|
+
"type": "boolean"
|
|
11025
|
+
},
|
|
11026
|
+
"target-org": {
|
|
11027
|
+
"aliases": [
|
|
11028
|
+
"targetusername",
|
|
11029
|
+
"u"
|
|
11030
|
+
],
|
|
11031
|
+
"char": "o",
|
|
11032
|
+
"deprecateAliases": true,
|
|
11033
|
+
"name": "target-org",
|
|
11034
|
+
"noCacheDefault": true,
|
|
11035
|
+
"required": true,
|
|
11036
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
11037
|
+
"hasDynamicHelp": true,
|
|
11038
|
+
"multiple": false,
|
|
11039
|
+
"type": "option"
|
|
11040
|
+
}
|
|
11041
|
+
},
|
|
11042
|
+
"hasDynamicHelp": true,
|
|
11043
|
+
"hiddenAliases": [],
|
|
11044
|
+
"id": "hardis:project:fix:profiletabs",
|
|
11045
|
+
"pluginAlias": "sfdx-hardis",
|
|
11046
|
+
"pluginName": "sfdx-hardis",
|
|
11047
|
+
"pluginType": "core",
|
|
11048
|
+
"strict": true,
|
|
11049
|
+
"enableJsonFlag": true,
|
|
11050
|
+
"title": "Fix profiles to add tabs that are not retrieved by SF CLI",
|
|
11051
|
+
"requiresProject": true,
|
|
11052
|
+
"isESM": true,
|
|
11053
|
+
"relativePath": [
|
|
11054
|
+
"lib",
|
|
11055
|
+
"commands",
|
|
11056
|
+
"hardis",
|
|
11057
|
+
"project",
|
|
11058
|
+
"fix",
|
|
11059
|
+
"profiletabs.js"
|
|
11060
|
+
],
|
|
11061
|
+
"aliasPermutations": [],
|
|
11062
|
+
"permutations": [
|
|
11063
|
+
"hardis:project:fix:profiletabs",
|
|
11064
|
+
"project:hardis:fix:profiletabs",
|
|
11065
|
+
"project:fix:hardis:profiletabs",
|
|
11066
|
+
"project:fix:profiletabs:hardis",
|
|
11067
|
+
"hardis:fix:project:profiletabs",
|
|
11068
|
+
"fix:hardis:project:profiletabs",
|
|
11069
|
+
"fix:project:hardis:profiletabs",
|
|
11070
|
+
"fix:project:profiletabs:hardis",
|
|
11071
|
+
"hardis:fix:profiletabs:project",
|
|
11072
|
+
"fix:hardis:profiletabs:project",
|
|
11073
|
+
"fix:profiletabs:hardis:project",
|
|
11074
|
+
"fix:profiletabs:project:hardis",
|
|
11075
|
+
"hardis:project:profiletabs:fix",
|
|
11076
|
+
"project:hardis:profiletabs:fix",
|
|
11077
|
+
"project:profiletabs:hardis:fix",
|
|
11078
|
+
"project:profiletabs:fix:hardis",
|
|
11079
|
+
"hardis:profiletabs:project:fix",
|
|
11080
|
+
"profiletabs:hardis:project:fix",
|
|
11081
|
+
"profiletabs:project:hardis:fix",
|
|
11082
|
+
"profiletabs:project:fix:hardis",
|
|
11083
|
+
"hardis:profiletabs:fix:project",
|
|
11084
|
+
"profiletabs:hardis:fix:project",
|
|
11085
|
+
"profiletabs:fix:hardis:project",
|
|
11086
|
+
"profiletabs:fix:project:hardis"
|
|
11087
|
+
]
|
|
11088
|
+
},
|
|
11089
|
+
"hardis:project:fix:v53flexipages": {
|
|
11090
|
+
"aliases": [],
|
|
11091
|
+
"args": {},
|
|
11092
|
+
"description": "Fix flexipages for apiVersion v53 (Winter22).\n\nNote: Update api version to 53.0 in package.xml and sfdx-project.json",
|
|
11093
|
+
"examples": [
|
|
11094
|
+
"$ sf hardis:project:fix:v53flexipages"
|
|
11095
|
+
],
|
|
11096
|
+
"flags": {
|
|
11097
|
+
"json": {
|
|
11098
|
+
"description": "Format output as json.",
|
|
11099
|
+
"helpGroup": "GLOBAL",
|
|
11100
|
+
"name": "json",
|
|
11101
|
+
"allowNo": false,
|
|
11102
|
+
"type": "boolean"
|
|
11103
|
+
},
|
|
11104
|
+
"flags-dir": {
|
|
11105
|
+
"helpGroup": "GLOBAL",
|
|
11106
|
+
"name": "flags-dir",
|
|
11107
|
+
"summary": "Import flag values from a directory.",
|
|
11108
|
+
"hasDynamicHelp": false,
|
|
11109
|
+
"multiple": false,
|
|
11110
|
+
"type": "option"
|
|
11111
|
+
},
|
|
11112
|
+
"path": {
|
|
11113
|
+
"char": "p",
|
|
11114
|
+
"description": "Root folder",
|
|
11115
|
+
"name": "path",
|
|
11116
|
+
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
11117
|
+
"hasDynamicHelp": false,
|
|
11118
|
+
"multiple": false,
|
|
11119
|
+
"type": "option"
|
|
11120
|
+
},
|
|
11121
|
+
"debug": {
|
|
11122
|
+
"char": "d",
|
|
11123
|
+
"description": "Activate debug mode (more logs)",
|
|
11124
|
+
"name": "debug",
|
|
11125
|
+
"allowNo": false,
|
|
11126
|
+
"type": "boolean"
|
|
11127
|
+
},
|
|
11128
|
+
"websocket": {
|
|
11129
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
11130
|
+
"name": "websocket",
|
|
11131
|
+
"hasDynamicHelp": false,
|
|
11132
|
+
"multiple": false,
|
|
11133
|
+
"type": "option"
|
|
11134
|
+
},
|
|
11135
|
+
"skipauth": {
|
|
11136
|
+
"description": "Skip authentication check when a default username is required",
|
|
11137
|
+
"name": "skipauth",
|
|
11138
|
+
"allowNo": false,
|
|
11139
|
+
"type": "boolean"
|
|
11140
|
+
}
|
|
11141
|
+
},
|
|
11142
|
+
"hasDynamicHelp": false,
|
|
11143
|
+
"hiddenAliases": [],
|
|
11144
|
+
"id": "hardis:project:fix:v53flexipages",
|
|
11145
|
+
"pluginAlias": "sfdx-hardis",
|
|
11146
|
+
"pluginName": "sfdx-hardis",
|
|
11147
|
+
"pluginType": "core",
|
|
11148
|
+
"strict": true,
|
|
11149
|
+
"enableJsonFlag": true,
|
|
11150
|
+
"title": "Fix flexipages for v53",
|
|
11151
|
+
"requiresProject": true,
|
|
11152
|
+
"isESM": true,
|
|
11153
|
+
"relativePath": [
|
|
11154
|
+
"lib",
|
|
11155
|
+
"commands",
|
|
11156
|
+
"hardis",
|
|
11157
|
+
"project",
|
|
11158
|
+
"fix",
|
|
11159
|
+
"v53flexipages.js"
|
|
11160
|
+
],
|
|
11161
|
+
"aliasPermutations": [],
|
|
11162
|
+
"permutations": [
|
|
11163
|
+
"hardis:project:fix:v53flexipages",
|
|
11164
|
+
"project:hardis:fix:v53flexipages",
|
|
11165
|
+
"project:fix:hardis:v53flexipages",
|
|
11166
|
+
"project:fix:v53flexipages:hardis",
|
|
11167
|
+
"hardis:fix:project:v53flexipages",
|
|
11168
|
+
"fix:hardis:project:v53flexipages",
|
|
11169
|
+
"fix:project:hardis:v53flexipages",
|
|
11170
|
+
"fix:project:v53flexipages:hardis",
|
|
11171
|
+
"hardis:fix:v53flexipages:project",
|
|
11172
|
+
"fix:hardis:v53flexipages:project",
|
|
11173
|
+
"fix:v53flexipages:hardis:project",
|
|
11174
|
+
"fix:v53flexipages:project:hardis",
|
|
11175
|
+
"hardis:project:v53flexipages:fix",
|
|
11176
|
+
"project:hardis:v53flexipages:fix",
|
|
11177
|
+
"project:v53flexipages:hardis:fix",
|
|
11178
|
+
"project:v53flexipages:fix:hardis",
|
|
11179
|
+
"hardis:v53flexipages:project:fix",
|
|
11180
|
+
"v53flexipages:hardis:project:fix",
|
|
11181
|
+
"v53flexipages:project:hardis:fix",
|
|
11182
|
+
"v53flexipages:project:fix:hardis",
|
|
11183
|
+
"hardis:v53flexipages:fix:project",
|
|
11184
|
+
"v53flexipages:hardis:fix:project",
|
|
11185
|
+
"v53flexipages:fix:hardis:project",
|
|
11186
|
+
"v53flexipages:fix:project:hardis"
|
|
11187
|
+
]
|
|
11188
|
+
},
|
|
11189
|
+
"hardis:project:deploy:notify": {
|
|
11190
|
+
"aliases": [],
|
|
11191
|
+
"args": {},
|
|
11192
|
+
"description": "Post notifications related to:\n\n- **Deployment simulation** _(use with --check-only)_\n\n- **Deployment process** _(to call only if your deployment is successful)_\n\n### Integrations\n\nAccording to the [integrations you configured](https://sfdx-hardis.cloudity.com/salesforce-ci-cd-setup-integrations-home/), notifications can contain deployment information and [Flow Visual Git Diff](https://sfdx-hardis.cloudity.com/salesforce-deployment-assistant-home/#flow-visual-git-diff)\n\n - GitHub, Gitlab, Azure DevOps, Bitbucket comments on Pull Requests (including Flows Visual Git Diff)\n\n - Slack, Microsoft Teams, Email deployment summary after a successful deployment\n\n - JIRA tags and comments on tickets that just has been deployed\n\n\n\n\n\n### Flows Visual Git Diff\n\n- Visually show you the differences on a diagram\n\n- Display the update details without having to open any XML !\n\n🟩 = added\n\n🟥 = removed\n\n🟧 = updated\n\n\n\n\n\n### In custom CI/CD workflow\n\nExample of usage in a custom CI/CD pipeline:\n\n```bash\n# Disable exit-on-error temporarily\nset +e\n\n# Run the deploy command\nsf project deploy start [....]\nRET_CODE=$?\n\n# Re-enable exit-on-error\nset -e\n\n# Determine MYSTATUS based on return code\nif [ $RET_CODE -eq 0 ]; then\n MYSTATUS=\"valid\"\nelse\n MYSTATUS=\"invalid\"\nfi\n\n# Run the notify command with MYSTATUS\nsf hardis:project:deploy:notify --check-only --deploy-status \"$MYSTATUS\"\n```\n\n### Other usages\n\nThis command is for custom SF Cli pipelines, if you are a sfdx-hardis user, it is already embedded in sf hardis:deploy:smart.\n\nYou can also use [sfdx-hardis wrapper commands of SF deployment commands](https://sfdx-hardis.cloudity.com/salesforce-deployment-assistant-setup/#using-custom-cicd-pipeline)\n",
|
|
11193
|
+
"examples": [
|
|
11194
|
+
"$ sf hardis:project:deploy:notify --check-only --deploy-status valid --message \"This deployment check is valid\\n\\nYahooo !!\"",
|
|
11195
|
+
"$ sf hardis:project:deploy:notify --check-only --deploy-status invalid --message \"This deployment check has failed !\\n\\Oh no !!\"",
|
|
11196
|
+
"$ sf hardis:project:deploy:notify --deploy-status valid --message \"This deployment has been processed !\\n\\nYahooo !!\""
|
|
11197
|
+
],
|
|
11198
|
+
"flags": {
|
|
11199
|
+
"json": {
|
|
11200
|
+
"description": "Format output as json.",
|
|
11201
|
+
"helpGroup": "GLOBAL",
|
|
11202
|
+
"name": "json",
|
|
11203
|
+
"allowNo": false,
|
|
11204
|
+
"type": "boolean"
|
|
11205
|
+
},
|
|
11206
|
+
"flags-dir": {
|
|
11207
|
+
"helpGroup": "GLOBAL",
|
|
11208
|
+
"name": "flags-dir",
|
|
11209
|
+
"summary": "Import flag values from a directory.",
|
|
11210
|
+
"hasDynamicHelp": false,
|
|
11211
|
+
"multiple": false,
|
|
11212
|
+
"type": "option"
|
|
11213
|
+
},
|
|
11214
|
+
"check-only": {
|
|
11215
|
+
"char": "c",
|
|
11216
|
+
"description": "Use this option to send notifications from a Deployment simulation job",
|
|
11217
|
+
"name": "check-only",
|
|
11218
|
+
"allowNo": false,
|
|
11219
|
+
"type": "boolean"
|
|
11220
|
+
},
|
|
11221
|
+
"deploy-status": {
|
|
11222
|
+
"char": "s",
|
|
11223
|
+
"description": "Send success, failure or unknown (default) to indicate if the deployment or deployment simulation is in success or not",
|
|
11224
|
+
"name": "deploy-status",
|
|
11225
|
+
"default": "unknown",
|
|
11226
|
+
"hasDynamicHelp": false,
|
|
11227
|
+
"multiple": false,
|
|
11228
|
+
"options": [
|
|
11229
|
+
"valid",
|
|
11230
|
+
"invalid",
|
|
11231
|
+
"unknown"
|
|
11232
|
+
],
|
|
11233
|
+
"type": "option"
|
|
11234
|
+
},
|
|
11235
|
+
"message": {
|
|
11236
|
+
"char": "m",
|
|
11237
|
+
"description": "Custom message that you want to be added in notifications (string or markdown format)",
|
|
11238
|
+
"name": "message",
|
|
11239
|
+
"default": "",
|
|
11240
|
+
"hasDynamicHelp": false,
|
|
11241
|
+
"multiple": false,
|
|
11242
|
+
"type": "option"
|
|
11243
|
+
},
|
|
11244
|
+
"debug": {
|
|
11245
|
+
"char": "d",
|
|
11246
|
+
"description": "Activate debug mode (more logs)",
|
|
11247
|
+
"name": "debug",
|
|
11248
|
+
"allowNo": false,
|
|
11249
|
+
"type": "boolean"
|
|
11250
|
+
},
|
|
11251
|
+
"websocket": {
|
|
11252
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
11253
|
+
"name": "websocket",
|
|
11254
|
+
"hasDynamicHelp": false,
|
|
11255
|
+
"multiple": false,
|
|
11256
|
+
"type": "option"
|
|
11257
|
+
},
|
|
11258
|
+
"skipauth": {
|
|
11259
|
+
"description": "Skip authentication check when a default username is required",
|
|
11260
|
+
"name": "skipauth",
|
|
11261
|
+
"allowNo": false,
|
|
11262
|
+
"type": "boolean"
|
|
11263
|
+
},
|
|
11264
|
+
"target-org": {
|
|
11265
|
+
"aliases": [
|
|
11266
|
+
"targetusername",
|
|
11267
|
+
"u"
|
|
11268
|
+
],
|
|
11269
|
+
"char": "o",
|
|
11270
|
+
"deprecateAliases": true,
|
|
11271
|
+
"name": "target-org",
|
|
11272
|
+
"noCacheDefault": true,
|
|
11273
|
+
"required": true,
|
|
11274
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
11275
|
+
"hasDynamicHelp": true,
|
|
11276
|
+
"multiple": false,
|
|
11277
|
+
"type": "option"
|
|
11278
|
+
}
|
|
11279
|
+
},
|
|
11280
|
+
"hasDynamicHelp": true,
|
|
11281
|
+
"hiddenAliases": [],
|
|
11282
|
+
"id": "hardis:project:deploy:notify",
|
|
11283
|
+
"pluginAlias": "sfdx-hardis",
|
|
11284
|
+
"pluginName": "sfdx-hardis",
|
|
11285
|
+
"pluginType": "core",
|
|
11286
|
+
"strict": true,
|
|
11287
|
+
"enableJsonFlag": true,
|
|
11288
|
+
"title": "Deployment Notifications",
|
|
11289
|
+
"requiresProject": true,
|
|
11290
|
+
"isESM": true,
|
|
11291
|
+
"relativePath": [
|
|
11292
|
+
"lib",
|
|
11293
|
+
"commands",
|
|
11294
|
+
"hardis",
|
|
11295
|
+
"project",
|
|
11296
|
+
"deploy",
|
|
11297
|
+
"notify.js"
|
|
11298
|
+
],
|
|
11299
|
+
"aliasPermutations": [],
|
|
11300
|
+
"permutations": [
|
|
11301
|
+
"hardis:project:deploy:notify",
|
|
11302
|
+
"project:hardis:deploy:notify",
|
|
11303
|
+
"project:deploy:hardis:notify",
|
|
11304
|
+
"project:deploy:notify:hardis",
|
|
11305
|
+
"hardis:deploy:project:notify",
|
|
11306
|
+
"deploy:hardis:project:notify",
|
|
11307
|
+
"deploy:project:hardis:notify",
|
|
11308
|
+
"deploy:project:notify:hardis",
|
|
11309
|
+
"hardis:deploy:notify:project",
|
|
11310
|
+
"deploy:hardis:notify:project",
|
|
11311
|
+
"deploy:notify:hardis:project",
|
|
11312
|
+
"deploy:notify:project:hardis",
|
|
11313
|
+
"hardis:project:notify:deploy",
|
|
11314
|
+
"project:hardis:notify:deploy",
|
|
11315
|
+
"project:notify:hardis:deploy",
|
|
11316
|
+
"project:notify:deploy:hardis",
|
|
11317
|
+
"hardis:notify:project:deploy",
|
|
11318
|
+
"notify:hardis:project:deploy",
|
|
11319
|
+
"notify:project:hardis:deploy",
|
|
11320
|
+
"notify:project:deploy:hardis",
|
|
11321
|
+
"hardis:notify:deploy:project",
|
|
11322
|
+
"notify:hardis:deploy:project",
|
|
11323
|
+
"notify:deploy:hardis:project",
|
|
11324
|
+
"notify:deploy:project:hardis"
|
|
11325
|
+
]
|
|
11326
|
+
},
|
|
11327
|
+
"hardis:project:deploy:quick": {
|
|
11328
|
+
"aliases": [
|
|
11329
|
+
"hardis:deploy:quick"
|
|
11330
|
+
],
|
|
11331
|
+
"args": {},
|
|
11332
|
+
"description": "sfdx-hardis wrapper for **sf project deploy quick** that displays tips to solve deployment errors.\n\nNote: Use **--json** argument to have better results\n\n[](https://nicolas.vuillamy.fr/assisted-solving-of-salesforce-deployments-errors-47f3666a9ed0)\n\n[See documentation of Salesforce command](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference_project_commands_unified.htm#cli_reference_project_deploy_quick_unified)\n\n### Deployment pre or post commands\n\nYou can define command lines to run before or after a deployment, with parameters:\n\n- **id**: Unique Id for the command\n- **label**: Human readable label for the command\n- **skipIfError**: If defined to \"true\", the post-command won't be run if there is a deployment failure\n- **context**: Defines the context where the command will be run. Can be **all** (default), **check-deployment-only** or **process-deployment-only**\n- **runOnlyOnceByOrg**: If set to true, the command will be run only one time per org. A record of SfdxHardisTrace__c is stored to make that possible (it needs to be existing in target org)\n\nIf the commands are not the same depending on the target org, you can define them into **config/branches/.sfdx-hardis-BRANCHNAME.yml** instead of root **config/.sfdx-hardis.yml**\n\nExample:\n\n```yaml\ncommandsPreDeploy:\n - id: knowledgeUnassign\n label: Remove KnowledgeUser right to the user who has it\n command: sf data update record --sobject User --where \"UserPermissionsKnowledgeUser='true'\" --values \"UserPermissionsKnowledgeUser='false'\" --json\n - id: knowledgeAssign\n label: Assign Knowledge user to the deployment user\n command: sf data update record --sobject User --where \"Username='deploy.github@myclient.com'\" --values \"UserPermissionsKnowledgeUser='true'\" --json\n\ncommandsPostDeploy:\n - id: knowledgeUnassign\n label: Remove KnowledgeUser right to the user who has it\n command: sf data update record --sobject User --where \"UserPermissionsKnowledgeUser='true'\" --values \"UserPermissionsKnowledgeUser='false'\" --json\n - id: knowledgeAssign\n label: Assign Knowledge user to desired username\n command: sf data update record --sobject User --where \"Username='admin-yser@myclient.com'\" --values \"UserPermissionsKnowledgeUser='true'\" --json\n - id: someActionToRunJustOneTime\n label: And to run only if deployment is success\n command: sf sfdmu:run ...\n skipIfError: true\n context: process-deployment-only\n runOnlyOnceByOrg: true\n```\n",
|
|
11333
|
+
"flags": {
|
|
11334
|
+
"json": {
|
|
11335
|
+
"description": "Format output as json.",
|
|
11336
|
+
"helpGroup": "GLOBAL",
|
|
11337
|
+
"name": "json",
|
|
11338
|
+
"allowNo": false,
|
|
11339
|
+
"type": "boolean"
|
|
11340
|
+
},
|
|
11341
|
+
"flags-dir": {
|
|
11342
|
+
"helpGroup": "GLOBAL",
|
|
11343
|
+
"name": "flags-dir",
|
|
11344
|
+
"summary": "Import flag values from a directory.",
|
|
11345
|
+
"hasDynamicHelp": false,
|
|
11346
|
+
"multiple": false,
|
|
11347
|
+
"type": "option"
|
|
11348
|
+
},
|
|
11349
|
+
"api-version": {
|
|
11350
|
+
"char": "a",
|
|
11351
|
+
"description": "api-version",
|
|
11352
|
+
"name": "api-version",
|
|
11353
|
+
"hasDynamicHelp": false,
|
|
11354
|
+
"multiple": false,
|
|
11355
|
+
"type": "option"
|
|
11356
|
+
},
|
|
11357
|
+
"async": {
|
|
11358
|
+
"description": "async",
|
|
11359
|
+
"exclusive": [
|
|
11360
|
+
"wait"
|
|
11361
|
+
],
|
|
11362
|
+
"name": "async",
|
|
11148
11363
|
"allowNo": false,
|
|
11149
11364
|
"type": "boolean"
|
|
11150
11365
|
},
|
|
@@ -12146,221 +12361,6 @@
|
|
|
12146
12361
|
"validate:deploy:project:hardis"
|
|
12147
12362
|
]
|
|
12148
12363
|
},
|
|
12149
|
-
"hardis:project:fix:profiletabs": {
|
|
12150
|
-
"aliases": [],
|
|
12151
|
-
"args": {},
|
|
12152
|
-
"description": "Interactive prompts to add tab visibilities that are not retrieved by project retrieve start",
|
|
12153
|
-
"examples": [
|
|
12154
|
-
"$ sf hardis:project:fix:profiletabs"
|
|
12155
|
-
],
|
|
12156
|
-
"flags": {
|
|
12157
|
-
"json": {
|
|
12158
|
-
"description": "Format output as json.",
|
|
12159
|
-
"helpGroup": "GLOBAL",
|
|
12160
|
-
"name": "json",
|
|
12161
|
-
"allowNo": false,
|
|
12162
|
-
"type": "boolean"
|
|
12163
|
-
},
|
|
12164
|
-
"flags-dir": {
|
|
12165
|
-
"helpGroup": "GLOBAL",
|
|
12166
|
-
"name": "flags-dir",
|
|
12167
|
-
"summary": "Import flag values from a directory.",
|
|
12168
|
-
"hasDynamicHelp": false,
|
|
12169
|
-
"multiple": false,
|
|
12170
|
-
"type": "option"
|
|
12171
|
-
},
|
|
12172
|
-
"path": {
|
|
12173
|
-
"char": "p",
|
|
12174
|
-
"description": "Root folder",
|
|
12175
|
-
"name": "path",
|
|
12176
|
-
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
12177
|
-
"hasDynamicHelp": false,
|
|
12178
|
-
"multiple": false,
|
|
12179
|
-
"type": "option"
|
|
12180
|
-
},
|
|
12181
|
-
"debug": {
|
|
12182
|
-
"char": "d",
|
|
12183
|
-
"description": "Activate debug mode (more logs)",
|
|
12184
|
-
"name": "debug",
|
|
12185
|
-
"allowNo": false,
|
|
12186
|
-
"type": "boolean"
|
|
12187
|
-
},
|
|
12188
|
-
"websocket": {
|
|
12189
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
12190
|
-
"name": "websocket",
|
|
12191
|
-
"hasDynamicHelp": false,
|
|
12192
|
-
"multiple": false,
|
|
12193
|
-
"type": "option"
|
|
12194
|
-
},
|
|
12195
|
-
"skipauth": {
|
|
12196
|
-
"description": "Skip authentication check when a default username is required",
|
|
12197
|
-
"name": "skipauth",
|
|
12198
|
-
"allowNo": false,
|
|
12199
|
-
"type": "boolean"
|
|
12200
|
-
},
|
|
12201
|
-
"target-org": {
|
|
12202
|
-
"aliases": [
|
|
12203
|
-
"targetusername",
|
|
12204
|
-
"u"
|
|
12205
|
-
],
|
|
12206
|
-
"char": "o",
|
|
12207
|
-
"deprecateAliases": true,
|
|
12208
|
-
"name": "target-org",
|
|
12209
|
-
"noCacheDefault": true,
|
|
12210
|
-
"required": true,
|
|
12211
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
12212
|
-
"hasDynamicHelp": true,
|
|
12213
|
-
"multiple": false,
|
|
12214
|
-
"type": "option"
|
|
12215
|
-
}
|
|
12216
|
-
},
|
|
12217
|
-
"hasDynamicHelp": true,
|
|
12218
|
-
"hiddenAliases": [],
|
|
12219
|
-
"id": "hardis:project:fix:profiletabs",
|
|
12220
|
-
"pluginAlias": "sfdx-hardis",
|
|
12221
|
-
"pluginName": "sfdx-hardis",
|
|
12222
|
-
"pluginType": "core",
|
|
12223
|
-
"strict": true,
|
|
12224
|
-
"enableJsonFlag": true,
|
|
12225
|
-
"title": "Fix profiles to add tabs that are not retrieved by SF CLI",
|
|
12226
|
-
"requiresProject": true,
|
|
12227
|
-
"isESM": true,
|
|
12228
|
-
"relativePath": [
|
|
12229
|
-
"lib",
|
|
12230
|
-
"commands",
|
|
12231
|
-
"hardis",
|
|
12232
|
-
"project",
|
|
12233
|
-
"fix",
|
|
12234
|
-
"profiletabs.js"
|
|
12235
|
-
],
|
|
12236
|
-
"aliasPermutations": [],
|
|
12237
|
-
"permutations": [
|
|
12238
|
-
"hardis:project:fix:profiletabs",
|
|
12239
|
-
"project:hardis:fix:profiletabs",
|
|
12240
|
-
"project:fix:hardis:profiletabs",
|
|
12241
|
-
"project:fix:profiletabs:hardis",
|
|
12242
|
-
"hardis:fix:project:profiletabs",
|
|
12243
|
-
"fix:hardis:project:profiletabs",
|
|
12244
|
-
"fix:project:hardis:profiletabs",
|
|
12245
|
-
"fix:project:profiletabs:hardis",
|
|
12246
|
-
"hardis:fix:profiletabs:project",
|
|
12247
|
-
"fix:hardis:profiletabs:project",
|
|
12248
|
-
"fix:profiletabs:hardis:project",
|
|
12249
|
-
"fix:profiletabs:project:hardis",
|
|
12250
|
-
"hardis:project:profiletabs:fix",
|
|
12251
|
-
"project:hardis:profiletabs:fix",
|
|
12252
|
-
"project:profiletabs:hardis:fix",
|
|
12253
|
-
"project:profiletabs:fix:hardis",
|
|
12254
|
-
"hardis:profiletabs:project:fix",
|
|
12255
|
-
"profiletabs:hardis:project:fix",
|
|
12256
|
-
"profiletabs:project:hardis:fix",
|
|
12257
|
-
"profiletabs:project:fix:hardis",
|
|
12258
|
-
"hardis:profiletabs:fix:project",
|
|
12259
|
-
"profiletabs:hardis:fix:project",
|
|
12260
|
-
"profiletabs:fix:hardis:project",
|
|
12261
|
-
"profiletabs:fix:project:hardis"
|
|
12262
|
-
]
|
|
12263
|
-
},
|
|
12264
|
-
"hardis:project:fix:v53flexipages": {
|
|
12265
|
-
"aliases": [],
|
|
12266
|
-
"args": {},
|
|
12267
|
-
"description": "Fix flexipages for apiVersion v53 (Winter22).\n\nNote: Update api version to 53.0 in package.xml and sfdx-project.json",
|
|
12268
|
-
"examples": [
|
|
12269
|
-
"$ sf hardis:project:fix:v53flexipages"
|
|
12270
|
-
],
|
|
12271
|
-
"flags": {
|
|
12272
|
-
"json": {
|
|
12273
|
-
"description": "Format output as json.",
|
|
12274
|
-
"helpGroup": "GLOBAL",
|
|
12275
|
-
"name": "json",
|
|
12276
|
-
"allowNo": false,
|
|
12277
|
-
"type": "boolean"
|
|
12278
|
-
},
|
|
12279
|
-
"flags-dir": {
|
|
12280
|
-
"helpGroup": "GLOBAL",
|
|
12281
|
-
"name": "flags-dir",
|
|
12282
|
-
"summary": "Import flag values from a directory.",
|
|
12283
|
-
"hasDynamicHelp": false,
|
|
12284
|
-
"multiple": false,
|
|
12285
|
-
"type": "option"
|
|
12286
|
-
},
|
|
12287
|
-
"path": {
|
|
12288
|
-
"char": "p",
|
|
12289
|
-
"description": "Root folder",
|
|
12290
|
-
"name": "path",
|
|
12291
|
-
"default": "/home/runner/work/sfdx-hardis/sfdx-hardis",
|
|
12292
|
-
"hasDynamicHelp": false,
|
|
12293
|
-
"multiple": false,
|
|
12294
|
-
"type": "option"
|
|
12295
|
-
},
|
|
12296
|
-
"debug": {
|
|
12297
|
-
"char": "d",
|
|
12298
|
-
"description": "Activate debug mode (more logs)",
|
|
12299
|
-
"name": "debug",
|
|
12300
|
-
"allowNo": false,
|
|
12301
|
-
"type": "boolean"
|
|
12302
|
-
},
|
|
12303
|
-
"websocket": {
|
|
12304
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
12305
|
-
"name": "websocket",
|
|
12306
|
-
"hasDynamicHelp": false,
|
|
12307
|
-
"multiple": false,
|
|
12308
|
-
"type": "option"
|
|
12309
|
-
},
|
|
12310
|
-
"skipauth": {
|
|
12311
|
-
"description": "Skip authentication check when a default username is required",
|
|
12312
|
-
"name": "skipauth",
|
|
12313
|
-
"allowNo": false,
|
|
12314
|
-
"type": "boolean"
|
|
12315
|
-
}
|
|
12316
|
-
},
|
|
12317
|
-
"hasDynamicHelp": false,
|
|
12318
|
-
"hiddenAliases": [],
|
|
12319
|
-
"id": "hardis:project:fix:v53flexipages",
|
|
12320
|
-
"pluginAlias": "sfdx-hardis",
|
|
12321
|
-
"pluginName": "sfdx-hardis",
|
|
12322
|
-
"pluginType": "core",
|
|
12323
|
-
"strict": true,
|
|
12324
|
-
"enableJsonFlag": true,
|
|
12325
|
-
"title": "Fix flexipages for v53",
|
|
12326
|
-
"requiresProject": true,
|
|
12327
|
-
"isESM": true,
|
|
12328
|
-
"relativePath": [
|
|
12329
|
-
"lib",
|
|
12330
|
-
"commands",
|
|
12331
|
-
"hardis",
|
|
12332
|
-
"project",
|
|
12333
|
-
"fix",
|
|
12334
|
-
"v53flexipages.js"
|
|
12335
|
-
],
|
|
12336
|
-
"aliasPermutations": [],
|
|
12337
|
-
"permutations": [
|
|
12338
|
-
"hardis:project:fix:v53flexipages",
|
|
12339
|
-
"project:hardis:fix:v53flexipages",
|
|
12340
|
-
"project:fix:hardis:v53flexipages",
|
|
12341
|
-
"project:fix:v53flexipages:hardis",
|
|
12342
|
-
"hardis:fix:project:v53flexipages",
|
|
12343
|
-
"fix:hardis:project:v53flexipages",
|
|
12344
|
-
"fix:project:hardis:v53flexipages",
|
|
12345
|
-
"fix:project:v53flexipages:hardis",
|
|
12346
|
-
"hardis:fix:v53flexipages:project",
|
|
12347
|
-
"fix:hardis:v53flexipages:project",
|
|
12348
|
-
"fix:v53flexipages:hardis:project",
|
|
12349
|
-
"fix:v53flexipages:project:hardis",
|
|
12350
|
-
"hardis:project:v53flexipages:fix",
|
|
12351
|
-
"project:hardis:v53flexipages:fix",
|
|
12352
|
-
"project:v53flexipages:hardis:fix",
|
|
12353
|
-
"project:v53flexipages:fix:hardis",
|
|
12354
|
-
"hardis:v53flexipages:project:fix",
|
|
12355
|
-
"v53flexipages:hardis:project:fix",
|
|
12356
|
-
"v53flexipages:project:hardis:fix",
|
|
12357
|
-
"v53flexipages:project:fix:hardis",
|
|
12358
|
-
"hardis:v53flexipages:fix:project",
|
|
12359
|
-
"v53flexipages:hardis:fix:project",
|
|
12360
|
-
"v53flexipages:fix:hardis:project",
|
|
12361
|
-
"v53flexipages:fix:project:hardis"
|
|
12362
|
-
]
|
|
12363
|
-
},
|
|
12364
12364
|
"hardis:project:generate:bypass": {
|
|
12365
12365
|
"aliases": [],
|
|
12366
12366
|
"args": {},
|
|
@@ -14843,5 +14843,5 @@
|
|
|
14843
14843
|
]
|
|
14844
14844
|
}
|
|
14845
14845
|
},
|
|
14846
|
-
"version": "5.
|
|
14846
|
+
"version": "5.45.0"
|
|
14847
14847
|
}
|