sfdx-hardis 5.10.2-beta202412301125.0 → 5.10.2-beta202412302032.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/defaults/mkdocs/mkdocs.yml +5 -1
- package/defaults/mkdocs-project-doc/mkdocs.yml +5 -1
- package/lib/commands/hardis/doc/plugin/generate.js +3 -10
- package/lib/commands/hardis/doc/plugin/generate.js.map +1 -1
- package/lib/commands/hardis/doc/project2markdown.js +22 -31
- package/lib/commands/hardis/doc/project2markdown.js.map +1 -1
- package/lib/common/gitProvider/azureDevops.d.ts +2 -0
- package/lib/common/gitProvider/azureDevops.js +39 -0
- package/lib/common/gitProvider/azureDevops.js.map +1 -1
- package/lib/common/gitProvider/bitbucket.d.ts +2 -0
- package/lib/common/gitProvider/bitbucket.js +39 -0
- package/lib/common/gitProvider/bitbucket.js.map +1 -1
- package/lib/common/gitProvider/utilsMarkdown.d.ts +2 -0
- package/lib/common/gitProvider/utilsMarkdown.js +15 -4
- package/lib/common/gitProvider/utilsMarkdown.js.map +1 -1
- package/lib/common/utils/docUtils.d.ts +2 -0
- package/lib/common/utils/docUtils.js +25 -0
- package/lib/common/utils/docUtils.js.map +1 -1
- package/lib/common/utils/flowVisualiser/flowParser.js +9 -1
- package/lib/common/utils/flowVisualiser/flowParser.js.map +1 -1
- package/lib/common/utils/mermaidUtils.d.ts +1 -1
- package/lib/common/utils/mermaidUtils.js +12 -6
- package/lib/common/utils/mermaidUtils.js.map +1 -1
- package/oclif.manifest.json +363 -363
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -57,12 +57,12 @@
|
|
|
57
57
|
"world:hello"
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
|
-
"hardis:
|
|
60
|
+
"hardis:auth:login": {
|
|
61
61
|
"aliases": [],
|
|
62
62
|
"args": {},
|
|
63
|
-
"description": "
|
|
63
|
+
"description": "Login to salesforce org",
|
|
64
64
|
"examples": [
|
|
65
|
-
"$ sf hardis:
|
|
65
|
+
"$ sf hardis:auth:login"
|
|
66
66
|
],
|
|
67
67
|
"flags": {
|
|
68
68
|
"json": {
|
|
@@ -80,6 +80,28 @@
|
|
|
80
80
|
"multiple": false,
|
|
81
81
|
"type": "option"
|
|
82
82
|
},
|
|
83
|
+
"instanceurl": {
|
|
84
|
+
"char": "r",
|
|
85
|
+
"description": "URL of org instance",
|
|
86
|
+
"name": "instanceurl",
|
|
87
|
+
"hasDynamicHelp": false,
|
|
88
|
+
"multiple": false,
|
|
89
|
+
"type": "option"
|
|
90
|
+
},
|
|
91
|
+
"devhub": {
|
|
92
|
+
"char": "h",
|
|
93
|
+
"description": "Also connect associated DevHub",
|
|
94
|
+
"name": "devhub",
|
|
95
|
+
"allowNo": false,
|
|
96
|
+
"type": "boolean"
|
|
97
|
+
},
|
|
98
|
+
"scratchorg": {
|
|
99
|
+
"char": "s",
|
|
100
|
+
"description": "Scratch org",
|
|
101
|
+
"name": "scratchorg",
|
|
102
|
+
"allowNo": false,
|
|
103
|
+
"type": "boolean"
|
|
104
|
+
},
|
|
83
105
|
"debug": {
|
|
84
106
|
"char": "d",
|
|
85
107
|
"description": "Activate debug mode (more logs)",
|
|
@@ -103,38 +125,38 @@
|
|
|
103
125
|
},
|
|
104
126
|
"hasDynamicHelp": false,
|
|
105
127
|
"hiddenAliases": [],
|
|
106
|
-
"id": "hardis:
|
|
128
|
+
"id": "hardis:auth:login",
|
|
107
129
|
"pluginAlias": "sfdx-hardis",
|
|
108
130
|
"pluginName": "sfdx-hardis",
|
|
109
131
|
"pluginType": "core",
|
|
110
132
|
"strict": true,
|
|
111
133
|
"enableJsonFlag": true,
|
|
112
|
-
"title": "
|
|
134
|
+
"title": "Login",
|
|
113
135
|
"requiresProject": false,
|
|
114
136
|
"isESM": true,
|
|
115
137
|
"relativePath": [
|
|
116
138
|
"lib",
|
|
117
139
|
"commands",
|
|
118
140
|
"hardis",
|
|
119
|
-
"
|
|
120
|
-
"
|
|
141
|
+
"auth",
|
|
142
|
+
"login.js"
|
|
121
143
|
],
|
|
122
144
|
"aliasPermutations": [],
|
|
123
145
|
"permutations": [
|
|
124
|
-
"hardis:
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"hardis:
|
|
128
|
-
"
|
|
129
|
-
"
|
|
146
|
+
"hardis:auth:login",
|
|
147
|
+
"auth:hardis:login",
|
|
148
|
+
"auth:login:hardis",
|
|
149
|
+
"hardis:login:auth",
|
|
150
|
+
"login:hardis:auth",
|
|
151
|
+
"login:auth:hardis"
|
|
130
152
|
]
|
|
131
153
|
},
|
|
132
|
-
"hardis:
|
|
154
|
+
"hardis:cache:clear": {
|
|
133
155
|
"aliases": [],
|
|
134
156
|
"args": {},
|
|
135
|
-
"description": "
|
|
157
|
+
"description": "Clear cache generated by sfdx-hardis",
|
|
136
158
|
"examples": [
|
|
137
|
-
"$ sf hardis:
|
|
159
|
+
"$ sf hardis:cache:clear"
|
|
138
160
|
],
|
|
139
161
|
"flags": {
|
|
140
162
|
"json": {
|
|
@@ -152,28 +174,6 @@
|
|
|
152
174
|
"multiple": false,
|
|
153
175
|
"type": "option"
|
|
154
176
|
},
|
|
155
|
-
"instanceurl": {
|
|
156
|
-
"char": "r",
|
|
157
|
-
"description": "URL of org instance",
|
|
158
|
-
"name": "instanceurl",
|
|
159
|
-
"hasDynamicHelp": false,
|
|
160
|
-
"multiple": false,
|
|
161
|
-
"type": "option"
|
|
162
|
-
},
|
|
163
|
-
"devhub": {
|
|
164
|
-
"char": "h",
|
|
165
|
-
"description": "Also connect associated DevHub",
|
|
166
|
-
"name": "devhub",
|
|
167
|
-
"allowNo": false,
|
|
168
|
-
"type": "boolean"
|
|
169
|
-
},
|
|
170
|
-
"scratchorg": {
|
|
171
|
-
"char": "s",
|
|
172
|
-
"description": "Scratch org",
|
|
173
|
-
"name": "scratchorg",
|
|
174
|
-
"allowNo": false,
|
|
175
|
-
"type": "boolean"
|
|
176
|
-
},
|
|
177
177
|
"debug": {
|
|
178
178
|
"char": "d",
|
|
179
179
|
"description": "Activate debug mode (more logs)",
|
|
@@ -197,30 +197,30 @@
|
|
|
197
197
|
},
|
|
198
198
|
"hasDynamicHelp": false,
|
|
199
199
|
"hiddenAliases": [],
|
|
200
|
-
"id": "hardis:
|
|
200
|
+
"id": "hardis:cache:clear",
|
|
201
201
|
"pluginAlias": "sfdx-hardis",
|
|
202
202
|
"pluginName": "sfdx-hardis",
|
|
203
203
|
"pluginType": "core",
|
|
204
204
|
"strict": true,
|
|
205
205
|
"enableJsonFlag": true,
|
|
206
|
-
"title": "
|
|
206
|
+
"title": "Clear sfdx-hardis cache",
|
|
207
207
|
"requiresProject": false,
|
|
208
208
|
"isESM": true,
|
|
209
209
|
"relativePath": [
|
|
210
210
|
"lib",
|
|
211
211
|
"commands",
|
|
212
212
|
"hardis",
|
|
213
|
-
"
|
|
214
|
-
"
|
|
213
|
+
"cache",
|
|
214
|
+
"clear.js"
|
|
215
215
|
],
|
|
216
216
|
"aliasPermutations": [],
|
|
217
217
|
"permutations": [
|
|
218
|
-
"hardis:
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"hardis:
|
|
222
|
-
"
|
|
223
|
-
"
|
|
218
|
+
"hardis:cache:clear",
|
|
219
|
+
"cache:hardis:clear",
|
|
220
|
+
"cache:clear:hardis",
|
|
221
|
+
"hardis:clear:cache",
|
|
222
|
+
"clear:hardis:cache",
|
|
223
|
+
"clear:cache:hardis"
|
|
224
224
|
]
|
|
225
225
|
},
|
|
226
226
|
"hardis:config:get": {
|
|
@@ -4889,12 +4889,15 @@
|
|
|
4889
4889
|
"import:data:org:hardis"
|
|
4890
4890
|
]
|
|
4891
4891
|
},
|
|
4892
|
-
"hardis:org:
|
|
4892
|
+
"hardis:org:diagnose:audittrail": {
|
|
4893
4893
|
"aliases": [],
|
|
4894
4894
|
"args": {},
|
|
4895
|
-
"description": "Export
|
|
4895
|
+
"description": "Export Audit trail into a CSV file with selected criteria, and highlight suspect actions\n\nRegular setup actions performed in major orgs are filtered.\n\n- \"\"\n - createScratchOrg\n - changedsenderemail\n - deleteScratchOrg\n - loginasgrantedtopartnerbt\n- Certificate and Key Management\n - insertCertificate\n- Custom App Licenses\n - addeduserpackagelicense\n - granteduserpackagelicense\n- Customer Portal\n - createdcustomersuccessuser\n- Currency\n - updateddatedexchrate\n- Data Management\n - queueMembership\n- Email Administration\n - dkimRotationPreparationSuccessful\n - dkimRotationSuccessful\n- Groups\n - groupMembership\n- Holidays\n - holiday_insert\n- Inbox mobile and legacy desktop apps\n - enableSIQUserNonEAC\n- Manage Users\n - activateduser\n - createduser\n - changedcommunitynickname\n - changedemail\n - changedfederationid\n - changedpassword\n - changedinteractionuseroffon\n - changedinteractionuseronoff\n - changedmarketinguseroffon\n - changedmarketinguseronoff\n - changedprofileforuser\n - changedprofileforusercusttostd\n - changedprofileforuserstdtocust\n - changedroleforusertonone\n - changedroleforuser\n - changedroleforuserfromnone\n - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedUserPhoneNumber\n - changedUserPhoneVerifiedStatusUnverified\n - deactivateduser\n - deleteAuthenticatorPairing\n - deleteTwoFactorInfo2\n - deleteTwoFactorTempCode\n - frozeuser\n - insertAuthenticatorPairing\n - insertTwoFactorInfo2\n - insertTwoFactorTempCode\n - lightningloginenroll\n - PermSetAssign\n - PermSetGroupAssign\n - PermSetGroupUnassign\n - PermSetLicenseAssign\n - PermSetUnassign\n - PermSetLicenseUnassign\n - registeredUserPhoneNumber\n - resetpassword\n - 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\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",
|
|
4896
4896
|
"examples": [
|
|
4897
|
-
"$ sf hardis:org:
|
|
4897
|
+
"$ sf hardis:org:diagnose:audittrail",
|
|
4898
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
|
|
4899
|
+
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
|
|
4900
|
+
"$ sf hardis:org:diagnose:audittrail --lastndays 5"
|
|
4898
4901
|
],
|
|
4899
4902
|
"flags": {
|
|
4900
4903
|
"json": {
|
|
@@ -4912,37 +4915,26 @@
|
|
|
4912
4915
|
"multiple": false,
|
|
4913
4916
|
"type": "option"
|
|
4914
4917
|
},
|
|
4915
|
-
"
|
|
4916
|
-
"char": "
|
|
4917
|
-
"description": "
|
|
4918
|
-
"name": "
|
|
4919
|
-
"hasDynamicHelp": false,
|
|
4920
|
-
"multiple": false,
|
|
4921
|
-
"type": "option"
|
|
4922
|
-
},
|
|
4923
|
-
"chunksize": {
|
|
4924
|
-
"char": "c",
|
|
4925
|
-
"description": "Number of records to add in a chunk before it is processed",
|
|
4926
|
-
"name": "chunksize",
|
|
4927
|
-
"default": 1000,
|
|
4918
|
+
"excludeusers": {
|
|
4919
|
+
"char": "e",
|
|
4920
|
+
"description": "Comma-separated list of usernames to exclude",
|
|
4921
|
+
"name": "excludeusers",
|
|
4928
4922
|
"hasDynamicHelp": false,
|
|
4929
4923
|
"multiple": false,
|
|
4930
4924
|
"type": "option"
|
|
4931
4925
|
},
|
|
4932
|
-
"
|
|
4926
|
+
"lastndays": {
|
|
4933
4927
|
"char": "t",
|
|
4934
|
-
"description": "
|
|
4935
|
-
"name": "
|
|
4936
|
-
"default": 300000,
|
|
4928
|
+
"description": "Number of days to extract from today (included)",
|
|
4929
|
+
"name": "lastndays",
|
|
4937
4930
|
"hasDynamicHelp": false,
|
|
4938
4931
|
"multiple": false,
|
|
4939
4932
|
"type": "option"
|
|
4940
4933
|
},
|
|
4941
|
-
"
|
|
4942
|
-
"char": "
|
|
4943
|
-
"description": "
|
|
4944
|
-
"name": "
|
|
4945
|
-
"default": 0,
|
|
4934
|
+
"outputfile": {
|
|
4935
|
+
"char": "f",
|
|
4936
|
+
"description": "Force the path and name of output report file. Must end with .csv",
|
|
4937
|
+
"name": "outputfile",
|
|
4946
4938
|
"hasDynamicHelp": false,
|
|
4947
4939
|
"multiple": false,
|
|
4948
4940
|
"type": "option"
|
|
@@ -4985,13 +4977,13 @@
|
|
|
4985
4977
|
},
|
|
4986
4978
|
"hasDynamicHelp": true,
|
|
4987
4979
|
"hiddenAliases": [],
|
|
4988
|
-
"id": "hardis:org:
|
|
4980
|
+
"id": "hardis:org:diagnose:audittrail",
|
|
4989
4981
|
"pluginAlias": "sfdx-hardis",
|
|
4990
4982
|
"pluginName": "sfdx-hardis",
|
|
4991
4983
|
"pluginType": "core",
|
|
4992
4984
|
"strict": true,
|
|
4993
4985
|
"enableJsonFlag": true,
|
|
4994
|
-
"title": "
|
|
4986
|
+
"title": "Diagnose content of Setup Audit Trail",
|
|
4995
4987
|
"requiresProject": false,
|
|
4996
4988
|
"isESM": true,
|
|
4997
4989
|
"relativePath": [
|
|
@@ -4999,43 +4991,43 @@
|
|
|
4999
4991
|
"commands",
|
|
5000
4992
|
"hardis",
|
|
5001
4993
|
"org",
|
|
5002
|
-
"
|
|
5003
|
-
"
|
|
4994
|
+
"diagnose",
|
|
4995
|
+
"audittrail.js"
|
|
5004
4996
|
],
|
|
5005
4997
|
"aliasPermutations": [],
|
|
5006
4998
|
"permutations": [
|
|
5007
|
-
"hardis:org:
|
|
5008
|
-
"org:hardis:
|
|
5009
|
-
"org:
|
|
5010
|
-
"org:
|
|
5011
|
-
"hardis:
|
|
5012
|
-
"
|
|
5013
|
-
"
|
|
5014
|
-
"
|
|
5015
|
-
"hardis:
|
|
5016
|
-
"
|
|
5017
|
-
"
|
|
5018
|
-
"
|
|
5019
|
-
"hardis:org:
|
|
5020
|
-
"org:hardis:
|
|
5021
|
-
"org:
|
|
5022
|
-
"org:
|
|
5023
|
-
"hardis:
|
|
5024
|
-
"
|
|
5025
|
-
"
|
|
5026
|
-
"
|
|
5027
|
-
"hardis:
|
|
5028
|
-
"
|
|
5029
|
-
"
|
|
5030
|
-
"
|
|
4999
|
+
"hardis:org:diagnose:audittrail",
|
|
5000
|
+
"org:hardis:diagnose:audittrail",
|
|
5001
|
+
"org:diagnose:hardis:audittrail",
|
|
5002
|
+
"org:diagnose:audittrail:hardis",
|
|
5003
|
+
"hardis:diagnose:org:audittrail",
|
|
5004
|
+
"diagnose:hardis:org:audittrail",
|
|
5005
|
+
"diagnose:org:hardis:audittrail",
|
|
5006
|
+
"diagnose:org:audittrail:hardis",
|
|
5007
|
+
"hardis:diagnose:audittrail:org",
|
|
5008
|
+
"diagnose:hardis:audittrail:org",
|
|
5009
|
+
"diagnose:audittrail:hardis:org",
|
|
5010
|
+
"diagnose:audittrail:org:hardis",
|
|
5011
|
+
"hardis:org:audittrail:diagnose",
|
|
5012
|
+
"org:hardis:audittrail:diagnose",
|
|
5013
|
+
"org:audittrail:hardis:diagnose",
|
|
5014
|
+
"org:audittrail:diagnose:hardis",
|
|
5015
|
+
"hardis:audittrail:org:diagnose",
|
|
5016
|
+
"audittrail:hardis:org:diagnose",
|
|
5017
|
+
"audittrail:org:hardis:diagnose",
|
|
5018
|
+
"audittrail:org:diagnose:hardis",
|
|
5019
|
+
"hardis:audittrail:diagnose:org",
|
|
5020
|
+
"audittrail:hardis:diagnose:org",
|
|
5021
|
+
"audittrail:diagnose:hardis:org",
|
|
5022
|
+
"audittrail:diagnose:org:hardis"
|
|
5031
5023
|
]
|
|
5032
5024
|
},
|
|
5033
|
-
"hardis:org:
|
|
5025
|
+
"hardis:org:diagnose:instanceupgrade": {
|
|
5034
5026
|
"aliases": [],
|
|
5035
5027
|
"args": {},
|
|
5036
|
-
"description": "
|
|
5028
|
+
"description": "Get the date when the org instance will be upgraded (to Spring, Summer or Winter)\n ",
|
|
5037
5029
|
"examples": [
|
|
5038
|
-
"$ sf hardis:org:
|
|
5030
|
+
"$ sf hardis:org:diagnose:instanceupgrade"
|
|
5039
5031
|
],
|
|
5040
5032
|
"flags": {
|
|
5041
5033
|
"json": {
|
|
@@ -5053,21 +5045,6 @@
|
|
|
5053
5045
|
"multiple": false,
|
|
5054
5046
|
"type": "option"
|
|
5055
5047
|
},
|
|
5056
|
-
"path": {
|
|
5057
|
-
"char": "p",
|
|
5058
|
-
"description": "Path to the file export project",
|
|
5059
|
-
"name": "path",
|
|
5060
|
-
"hasDynamicHelp": false,
|
|
5061
|
-
"multiple": false,
|
|
5062
|
-
"type": "option"
|
|
5063
|
-
},
|
|
5064
|
-
"overwrite": {
|
|
5065
|
-
"char": "f",
|
|
5066
|
-
"description": "Override existing files (doubles the number of API calls)",
|
|
5067
|
-
"name": "overwrite",
|
|
5068
|
-
"allowNo": false,
|
|
5069
|
-
"type": "boolean"
|
|
5070
|
-
},
|
|
5071
5048
|
"debug": {
|
|
5072
5049
|
"char": "d",
|
|
5073
5050
|
"description": "Activate debug mode (more logs)",
|
|
@@ -5106,13 +5083,13 @@
|
|
|
5106
5083
|
},
|
|
5107
5084
|
"hasDynamicHelp": true,
|
|
5108
5085
|
"hiddenAliases": [],
|
|
5109
|
-
"id": "hardis:org:
|
|
5086
|
+
"id": "hardis:org:diagnose:instanceupgrade",
|
|
5110
5087
|
"pluginAlias": "sfdx-hardis",
|
|
5111
5088
|
"pluginName": "sfdx-hardis",
|
|
5112
5089
|
"pluginType": "core",
|
|
5113
5090
|
"strict": true,
|
|
5114
5091
|
"enableJsonFlag": true,
|
|
5115
|
-
"title": "
|
|
5092
|
+
"title": "Get Instance Upgrade date",
|
|
5116
5093
|
"requiresProject": false,
|
|
5117
5094
|
"isESM": true,
|
|
5118
5095
|
"relativePath": [
|
|
@@ -5120,247 +5097,8 @@
|
|
|
5120
5097
|
"commands",
|
|
5121
5098
|
"hardis",
|
|
5122
5099
|
"org",
|
|
5123
|
-
"
|
|
5124
|
-
"
|
|
5125
|
-
],
|
|
5126
|
-
"aliasPermutations": [],
|
|
5127
|
-
"permutations": [
|
|
5128
|
-
"hardis:org:files:import",
|
|
5129
|
-
"org:hardis:files:import",
|
|
5130
|
-
"org:files:hardis:import",
|
|
5131
|
-
"org:files:import:hardis",
|
|
5132
|
-
"hardis:files:org:import",
|
|
5133
|
-
"files:hardis:org:import",
|
|
5134
|
-
"files:org:hardis:import",
|
|
5135
|
-
"files:org:import:hardis",
|
|
5136
|
-
"hardis:files:import:org",
|
|
5137
|
-
"files:hardis:import:org",
|
|
5138
|
-
"files:import:hardis:org",
|
|
5139
|
-
"files:import:org:hardis",
|
|
5140
|
-
"hardis:org:import:files",
|
|
5141
|
-
"org:hardis:import:files",
|
|
5142
|
-
"org:import:hardis:files",
|
|
5143
|
-
"org:import:files:hardis",
|
|
5144
|
-
"hardis:import:org:files",
|
|
5145
|
-
"import:hardis:org:files",
|
|
5146
|
-
"import:org:hardis:files",
|
|
5147
|
-
"import:org:files:hardis",
|
|
5148
|
-
"hardis:import:files:org",
|
|
5149
|
-
"import:hardis:files:org",
|
|
5150
|
-
"import:files:hardis:org",
|
|
5151
|
-
"import:files:org:hardis"
|
|
5152
|
-
]
|
|
5153
|
-
},
|
|
5154
|
-
"hardis:org:diagnose:audittrail": {
|
|
5155
|
-
"aliases": [],
|
|
5156
|
-
"args": {},
|
|
5157
|
-
"description": "Export Audit trail into a CSV file with selected criteria, and highlight suspect actions\n\nRegular setup actions performed in major orgs are filtered.\n\n- \"\"\n - createScratchOrg\n - changedsenderemail\n - deleteScratchOrg\n - loginasgrantedtopartnerbt\n- Certificate and Key Management\n - insertCertificate\n- Custom App Licenses\n - addeduserpackagelicense\n - granteduserpackagelicense\n- Customer Portal\n - createdcustomersuccessuser\n- Currency\n - updateddatedexchrate\n- Data Management\n - queueMembership\n- Email Administration\n - dkimRotationPreparationSuccessful\n - dkimRotationSuccessful\n- Groups\n - groupMembership\n- Holidays\n - holiday_insert\n- Inbox mobile and legacy desktop apps\n - enableSIQUserNonEAC\n- Manage Users\n - activateduser\n - createduser\n - changedcommunitynickname\n - changedemail\n - changedfederationid\n - changedpassword\n - changedinteractionuseroffon\n - changedinteractionuseronoff\n - changedmarketinguseroffon\n - changedmarketinguseronoff\n - changedprofileforuser\n - changedprofileforusercusttostd\n - changedprofileforuserstdtocust\n - changedroleforusertonone\n - changedroleforuser\n - changedroleforuserfromnone\n - changedUserEmailVerifiedStatusUnverified\n - changedUserEmailVerifiedStatusVerified\n - changedUserPhoneNumber\n - changedUserPhoneVerifiedStatusUnverified\n - deactivateduser\n - deleteAuthenticatorPairing\n - deleteTwoFactorInfo2\n - deleteTwoFactorTempCode\n - frozeuser\n - insertAuthenticatorPairing\n - insertTwoFactorInfo2\n - insertTwoFactorTempCode\n - lightningloginenroll\n - PermSetAssign\n - PermSetGroupAssign\n - PermSetGroupUnassign\n - PermSetLicenseAssign\n - PermSetUnassign\n - PermSetLicenseUnassign\n - registeredUserPhoneNumber\n - resetpassword\n - 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\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",
|
|
5158
|
-
"examples": [
|
|
5159
|
-
"$ sf hardis:org:diagnose:audittrail",
|
|
5160
|
-
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com",
|
|
5161
|
-
"$ sf hardis:org:diagnose:audittrail --excludeusers baptiste@titi.com,bertrand@titi.com",
|
|
5162
|
-
"$ sf hardis:org:diagnose:audittrail --lastndays 5"
|
|
5163
|
-
],
|
|
5164
|
-
"flags": {
|
|
5165
|
-
"json": {
|
|
5166
|
-
"description": "Format output as json.",
|
|
5167
|
-
"helpGroup": "GLOBAL",
|
|
5168
|
-
"name": "json",
|
|
5169
|
-
"allowNo": false,
|
|
5170
|
-
"type": "boolean"
|
|
5171
|
-
},
|
|
5172
|
-
"flags-dir": {
|
|
5173
|
-
"helpGroup": "GLOBAL",
|
|
5174
|
-
"name": "flags-dir",
|
|
5175
|
-
"summary": "Import flag values from a directory.",
|
|
5176
|
-
"hasDynamicHelp": false,
|
|
5177
|
-
"multiple": false,
|
|
5178
|
-
"type": "option"
|
|
5179
|
-
},
|
|
5180
|
-
"excludeusers": {
|
|
5181
|
-
"char": "e",
|
|
5182
|
-
"description": "Comma-separated list of usernames to exclude",
|
|
5183
|
-
"name": "excludeusers",
|
|
5184
|
-
"hasDynamicHelp": false,
|
|
5185
|
-
"multiple": false,
|
|
5186
|
-
"type": "option"
|
|
5187
|
-
},
|
|
5188
|
-
"lastndays": {
|
|
5189
|
-
"char": "t",
|
|
5190
|
-
"description": "Number of days to extract from today (included)",
|
|
5191
|
-
"name": "lastndays",
|
|
5192
|
-
"hasDynamicHelp": false,
|
|
5193
|
-
"multiple": false,
|
|
5194
|
-
"type": "option"
|
|
5195
|
-
},
|
|
5196
|
-
"outputfile": {
|
|
5197
|
-
"char": "f",
|
|
5198
|
-
"description": "Force the path and name of output report file. Must end with .csv",
|
|
5199
|
-
"name": "outputfile",
|
|
5200
|
-
"hasDynamicHelp": false,
|
|
5201
|
-
"multiple": false,
|
|
5202
|
-
"type": "option"
|
|
5203
|
-
},
|
|
5204
|
-
"debug": {
|
|
5205
|
-
"char": "d",
|
|
5206
|
-
"description": "Activate debug mode (more logs)",
|
|
5207
|
-
"name": "debug",
|
|
5208
|
-
"allowNo": false,
|
|
5209
|
-
"type": "boolean"
|
|
5210
|
-
},
|
|
5211
|
-
"websocket": {
|
|
5212
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5213
|
-
"name": "websocket",
|
|
5214
|
-
"hasDynamicHelp": false,
|
|
5215
|
-
"multiple": false,
|
|
5216
|
-
"type": "option"
|
|
5217
|
-
},
|
|
5218
|
-
"skipauth": {
|
|
5219
|
-
"description": "Skip authentication check when a default username is required",
|
|
5220
|
-
"name": "skipauth",
|
|
5221
|
-
"allowNo": false,
|
|
5222
|
-
"type": "boolean"
|
|
5223
|
-
},
|
|
5224
|
-
"target-org": {
|
|
5225
|
-
"aliases": [
|
|
5226
|
-
"targetusername",
|
|
5227
|
-
"u"
|
|
5228
|
-
],
|
|
5229
|
-
"char": "o",
|
|
5230
|
-
"deprecateAliases": true,
|
|
5231
|
-
"name": "target-org",
|
|
5232
|
-
"noCacheDefault": true,
|
|
5233
|
-
"required": true,
|
|
5234
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5235
|
-
"hasDynamicHelp": true,
|
|
5236
|
-
"multiple": false,
|
|
5237
|
-
"type": "option"
|
|
5238
|
-
}
|
|
5239
|
-
},
|
|
5240
|
-
"hasDynamicHelp": true,
|
|
5241
|
-
"hiddenAliases": [],
|
|
5242
|
-
"id": "hardis:org:diagnose:audittrail",
|
|
5243
|
-
"pluginAlias": "sfdx-hardis",
|
|
5244
|
-
"pluginName": "sfdx-hardis",
|
|
5245
|
-
"pluginType": "core",
|
|
5246
|
-
"strict": true,
|
|
5247
|
-
"enableJsonFlag": true,
|
|
5248
|
-
"title": "Diagnose content of Setup Audit Trail",
|
|
5249
|
-
"requiresProject": false,
|
|
5250
|
-
"isESM": true,
|
|
5251
|
-
"relativePath": [
|
|
5252
|
-
"lib",
|
|
5253
|
-
"commands",
|
|
5254
|
-
"hardis",
|
|
5255
|
-
"org",
|
|
5256
|
-
"diagnose",
|
|
5257
|
-
"audittrail.js"
|
|
5258
|
-
],
|
|
5259
|
-
"aliasPermutations": [],
|
|
5260
|
-
"permutations": [
|
|
5261
|
-
"hardis:org:diagnose:audittrail",
|
|
5262
|
-
"org:hardis:diagnose:audittrail",
|
|
5263
|
-
"org:diagnose:hardis:audittrail",
|
|
5264
|
-
"org:diagnose:audittrail:hardis",
|
|
5265
|
-
"hardis:diagnose:org:audittrail",
|
|
5266
|
-
"diagnose:hardis:org:audittrail",
|
|
5267
|
-
"diagnose:org:hardis:audittrail",
|
|
5268
|
-
"diagnose:org:audittrail:hardis",
|
|
5269
|
-
"hardis:diagnose:audittrail:org",
|
|
5270
|
-
"diagnose:hardis:audittrail:org",
|
|
5271
|
-
"diagnose:audittrail:hardis:org",
|
|
5272
|
-
"diagnose:audittrail:org:hardis",
|
|
5273
|
-
"hardis:org:audittrail:diagnose",
|
|
5274
|
-
"org:hardis:audittrail:diagnose",
|
|
5275
|
-
"org:audittrail:hardis:diagnose",
|
|
5276
|
-
"org:audittrail:diagnose:hardis",
|
|
5277
|
-
"hardis:audittrail:org:diagnose",
|
|
5278
|
-
"audittrail:hardis:org:diagnose",
|
|
5279
|
-
"audittrail:org:hardis:diagnose",
|
|
5280
|
-
"audittrail:org:diagnose:hardis",
|
|
5281
|
-
"hardis:audittrail:diagnose:org",
|
|
5282
|
-
"audittrail:hardis:diagnose:org",
|
|
5283
|
-
"audittrail:diagnose:hardis:org",
|
|
5284
|
-
"audittrail:diagnose:org:hardis"
|
|
5285
|
-
]
|
|
5286
|
-
},
|
|
5287
|
-
"hardis:org:diagnose:instanceupgrade": {
|
|
5288
|
-
"aliases": [],
|
|
5289
|
-
"args": {},
|
|
5290
|
-
"description": "Get the date when the org instance will be upgraded (to Spring, Summer or Winter)\n ",
|
|
5291
|
-
"examples": [
|
|
5292
|
-
"$ sf hardis:org:diagnose:instanceupgrade"
|
|
5293
|
-
],
|
|
5294
|
-
"flags": {
|
|
5295
|
-
"json": {
|
|
5296
|
-
"description": "Format output as json.",
|
|
5297
|
-
"helpGroup": "GLOBAL",
|
|
5298
|
-
"name": "json",
|
|
5299
|
-
"allowNo": false,
|
|
5300
|
-
"type": "boolean"
|
|
5301
|
-
},
|
|
5302
|
-
"flags-dir": {
|
|
5303
|
-
"helpGroup": "GLOBAL",
|
|
5304
|
-
"name": "flags-dir",
|
|
5305
|
-
"summary": "Import flag values from a directory.",
|
|
5306
|
-
"hasDynamicHelp": false,
|
|
5307
|
-
"multiple": false,
|
|
5308
|
-
"type": "option"
|
|
5309
|
-
},
|
|
5310
|
-
"debug": {
|
|
5311
|
-
"char": "d",
|
|
5312
|
-
"description": "Activate debug mode (more logs)",
|
|
5313
|
-
"name": "debug",
|
|
5314
|
-
"allowNo": false,
|
|
5315
|
-
"type": "boolean"
|
|
5316
|
-
},
|
|
5317
|
-
"websocket": {
|
|
5318
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
5319
|
-
"name": "websocket",
|
|
5320
|
-
"hasDynamicHelp": false,
|
|
5321
|
-
"multiple": false,
|
|
5322
|
-
"type": "option"
|
|
5323
|
-
},
|
|
5324
|
-
"skipauth": {
|
|
5325
|
-
"description": "Skip authentication check when a default username is required",
|
|
5326
|
-
"name": "skipauth",
|
|
5327
|
-
"allowNo": false,
|
|
5328
|
-
"type": "boolean"
|
|
5329
|
-
},
|
|
5330
|
-
"target-org": {
|
|
5331
|
-
"aliases": [
|
|
5332
|
-
"targetusername",
|
|
5333
|
-
"u"
|
|
5334
|
-
],
|
|
5335
|
-
"char": "o",
|
|
5336
|
-
"deprecateAliases": true,
|
|
5337
|
-
"name": "target-org",
|
|
5338
|
-
"noCacheDefault": true,
|
|
5339
|
-
"required": true,
|
|
5340
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
5341
|
-
"hasDynamicHelp": true,
|
|
5342
|
-
"multiple": false,
|
|
5343
|
-
"type": "option"
|
|
5344
|
-
}
|
|
5345
|
-
},
|
|
5346
|
-
"hasDynamicHelp": true,
|
|
5347
|
-
"hiddenAliases": [],
|
|
5348
|
-
"id": "hardis:org:diagnose:instanceupgrade",
|
|
5349
|
-
"pluginAlias": "sfdx-hardis",
|
|
5350
|
-
"pluginName": "sfdx-hardis",
|
|
5351
|
-
"pluginType": "core",
|
|
5352
|
-
"strict": true,
|
|
5353
|
-
"enableJsonFlag": true,
|
|
5354
|
-
"title": "Get Instance Upgrade date",
|
|
5355
|
-
"requiresProject": false,
|
|
5356
|
-
"isESM": true,
|
|
5357
|
-
"relativePath": [
|
|
5358
|
-
"lib",
|
|
5359
|
-
"commands",
|
|
5360
|
-
"hardis",
|
|
5361
|
-
"org",
|
|
5362
|
-
"diagnose",
|
|
5363
|
-
"instanceupgrade.js"
|
|
5100
|
+
"diagnose",
|
|
5101
|
+
"instanceupgrade.js"
|
|
5364
5102
|
],
|
|
5365
5103
|
"aliasPermutations": [],
|
|
5366
5104
|
"permutations": [
|
|
@@ -6300,6 +6038,268 @@
|
|
|
6300
6038
|
"unusedusers:diagnose:org:hardis"
|
|
6301
6039
|
]
|
|
6302
6040
|
},
|
|
6041
|
+
"hardis:org:files:export": {
|
|
6042
|
+
"aliases": [],
|
|
6043
|
+
"args": {},
|
|
6044
|
+
"description": "Export file attachments from a Salesforce org\n\nSee article below\n\n[](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
|
|
6045
|
+
"examples": [
|
|
6046
|
+
"$ sf hardis:org:files:export"
|
|
6047
|
+
],
|
|
6048
|
+
"flags": {
|
|
6049
|
+
"json": {
|
|
6050
|
+
"description": "Format output as json.",
|
|
6051
|
+
"helpGroup": "GLOBAL",
|
|
6052
|
+
"name": "json",
|
|
6053
|
+
"allowNo": false,
|
|
6054
|
+
"type": "boolean"
|
|
6055
|
+
},
|
|
6056
|
+
"flags-dir": {
|
|
6057
|
+
"helpGroup": "GLOBAL",
|
|
6058
|
+
"name": "flags-dir",
|
|
6059
|
+
"summary": "Import flag values from a directory.",
|
|
6060
|
+
"hasDynamicHelp": false,
|
|
6061
|
+
"multiple": false,
|
|
6062
|
+
"type": "option"
|
|
6063
|
+
},
|
|
6064
|
+
"path": {
|
|
6065
|
+
"char": "p",
|
|
6066
|
+
"description": "Path to the file export project",
|
|
6067
|
+
"name": "path",
|
|
6068
|
+
"hasDynamicHelp": false,
|
|
6069
|
+
"multiple": false,
|
|
6070
|
+
"type": "option"
|
|
6071
|
+
},
|
|
6072
|
+
"chunksize": {
|
|
6073
|
+
"char": "c",
|
|
6074
|
+
"description": "Number of records to add in a chunk before it is processed",
|
|
6075
|
+
"name": "chunksize",
|
|
6076
|
+
"default": 1000,
|
|
6077
|
+
"hasDynamicHelp": false,
|
|
6078
|
+
"multiple": false,
|
|
6079
|
+
"type": "option"
|
|
6080
|
+
},
|
|
6081
|
+
"polltimeout": {
|
|
6082
|
+
"char": "t",
|
|
6083
|
+
"description": "Timeout in MS for Bulk API calls",
|
|
6084
|
+
"name": "polltimeout",
|
|
6085
|
+
"default": 300000,
|
|
6086
|
+
"hasDynamicHelp": false,
|
|
6087
|
+
"multiple": false,
|
|
6088
|
+
"type": "option"
|
|
6089
|
+
},
|
|
6090
|
+
"startchunknumber": {
|
|
6091
|
+
"char": "s",
|
|
6092
|
+
"description": "Chunk number to start from",
|
|
6093
|
+
"name": "startchunknumber",
|
|
6094
|
+
"default": 0,
|
|
6095
|
+
"hasDynamicHelp": false,
|
|
6096
|
+
"multiple": false,
|
|
6097
|
+
"type": "option"
|
|
6098
|
+
},
|
|
6099
|
+
"debug": {
|
|
6100
|
+
"char": "d",
|
|
6101
|
+
"description": "Activate debug mode (more logs)",
|
|
6102
|
+
"name": "debug",
|
|
6103
|
+
"allowNo": false,
|
|
6104
|
+
"type": "boolean"
|
|
6105
|
+
},
|
|
6106
|
+
"websocket": {
|
|
6107
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6108
|
+
"name": "websocket",
|
|
6109
|
+
"hasDynamicHelp": false,
|
|
6110
|
+
"multiple": false,
|
|
6111
|
+
"type": "option"
|
|
6112
|
+
},
|
|
6113
|
+
"skipauth": {
|
|
6114
|
+
"description": "Skip authentication check when a default username is required",
|
|
6115
|
+
"name": "skipauth",
|
|
6116
|
+
"allowNo": false,
|
|
6117
|
+
"type": "boolean"
|
|
6118
|
+
},
|
|
6119
|
+
"target-org": {
|
|
6120
|
+
"aliases": [
|
|
6121
|
+
"targetusername",
|
|
6122
|
+
"u"
|
|
6123
|
+
],
|
|
6124
|
+
"char": "o",
|
|
6125
|
+
"deprecateAliases": true,
|
|
6126
|
+
"name": "target-org",
|
|
6127
|
+
"noCacheDefault": true,
|
|
6128
|
+
"required": true,
|
|
6129
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
6130
|
+
"hasDynamicHelp": true,
|
|
6131
|
+
"multiple": false,
|
|
6132
|
+
"type": "option"
|
|
6133
|
+
}
|
|
6134
|
+
},
|
|
6135
|
+
"hasDynamicHelp": true,
|
|
6136
|
+
"hiddenAliases": [],
|
|
6137
|
+
"id": "hardis:org:files:export",
|
|
6138
|
+
"pluginAlias": "sfdx-hardis",
|
|
6139
|
+
"pluginName": "sfdx-hardis",
|
|
6140
|
+
"pluginType": "core",
|
|
6141
|
+
"strict": true,
|
|
6142
|
+
"enableJsonFlag": true,
|
|
6143
|
+
"title": "Export files",
|
|
6144
|
+
"requiresProject": false,
|
|
6145
|
+
"isESM": true,
|
|
6146
|
+
"relativePath": [
|
|
6147
|
+
"lib",
|
|
6148
|
+
"commands",
|
|
6149
|
+
"hardis",
|
|
6150
|
+
"org",
|
|
6151
|
+
"files",
|
|
6152
|
+
"export.js"
|
|
6153
|
+
],
|
|
6154
|
+
"aliasPermutations": [],
|
|
6155
|
+
"permutations": [
|
|
6156
|
+
"hardis:org:files:export",
|
|
6157
|
+
"org:hardis:files:export",
|
|
6158
|
+
"org:files:hardis:export",
|
|
6159
|
+
"org:files:export:hardis",
|
|
6160
|
+
"hardis:files:org:export",
|
|
6161
|
+
"files:hardis:org:export",
|
|
6162
|
+
"files:org:hardis:export",
|
|
6163
|
+
"files:org:export:hardis",
|
|
6164
|
+
"hardis:files:export:org",
|
|
6165
|
+
"files:hardis:export:org",
|
|
6166
|
+
"files:export:hardis:org",
|
|
6167
|
+
"files:export:org:hardis",
|
|
6168
|
+
"hardis:org:export:files",
|
|
6169
|
+
"org:hardis:export:files",
|
|
6170
|
+
"org:export:hardis:files",
|
|
6171
|
+
"org:export:files:hardis",
|
|
6172
|
+
"hardis:export:org:files",
|
|
6173
|
+
"export:hardis:org:files",
|
|
6174
|
+
"export:org:hardis:files",
|
|
6175
|
+
"export:org:files:hardis",
|
|
6176
|
+
"hardis:export:files:org",
|
|
6177
|
+
"export:hardis:files:org",
|
|
6178
|
+
"export:files:hardis:org",
|
|
6179
|
+
"export:files:org:hardis"
|
|
6180
|
+
]
|
|
6181
|
+
},
|
|
6182
|
+
"hardis:org:files:import": {
|
|
6183
|
+
"aliases": [],
|
|
6184
|
+
"args": {},
|
|
6185
|
+
"description": "Import file attachments into a Salesforce org\n\nSee article below to see how to Export them.\n\n[](https://nicolas.vuillamy.fr/how-to-mass-download-notes-and-attachments-files-from-a-salesforce-org-83a028824afd)\n",
|
|
6186
|
+
"examples": [
|
|
6187
|
+
"$ sf hardis:org:files:import"
|
|
6188
|
+
],
|
|
6189
|
+
"flags": {
|
|
6190
|
+
"json": {
|
|
6191
|
+
"description": "Format output as json.",
|
|
6192
|
+
"helpGroup": "GLOBAL",
|
|
6193
|
+
"name": "json",
|
|
6194
|
+
"allowNo": false,
|
|
6195
|
+
"type": "boolean"
|
|
6196
|
+
},
|
|
6197
|
+
"flags-dir": {
|
|
6198
|
+
"helpGroup": "GLOBAL",
|
|
6199
|
+
"name": "flags-dir",
|
|
6200
|
+
"summary": "Import flag values from a directory.",
|
|
6201
|
+
"hasDynamicHelp": false,
|
|
6202
|
+
"multiple": false,
|
|
6203
|
+
"type": "option"
|
|
6204
|
+
},
|
|
6205
|
+
"path": {
|
|
6206
|
+
"char": "p",
|
|
6207
|
+
"description": "Path to the file export project",
|
|
6208
|
+
"name": "path",
|
|
6209
|
+
"hasDynamicHelp": false,
|
|
6210
|
+
"multiple": false,
|
|
6211
|
+
"type": "option"
|
|
6212
|
+
},
|
|
6213
|
+
"overwrite": {
|
|
6214
|
+
"char": "f",
|
|
6215
|
+
"description": "Override existing files (doubles the number of API calls)",
|
|
6216
|
+
"name": "overwrite",
|
|
6217
|
+
"allowNo": false,
|
|
6218
|
+
"type": "boolean"
|
|
6219
|
+
},
|
|
6220
|
+
"debug": {
|
|
6221
|
+
"char": "d",
|
|
6222
|
+
"description": "Activate debug mode (more logs)",
|
|
6223
|
+
"name": "debug",
|
|
6224
|
+
"allowNo": false,
|
|
6225
|
+
"type": "boolean"
|
|
6226
|
+
},
|
|
6227
|
+
"websocket": {
|
|
6228
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6229
|
+
"name": "websocket",
|
|
6230
|
+
"hasDynamicHelp": false,
|
|
6231
|
+
"multiple": false,
|
|
6232
|
+
"type": "option"
|
|
6233
|
+
},
|
|
6234
|
+
"skipauth": {
|
|
6235
|
+
"description": "Skip authentication check when a default username is required",
|
|
6236
|
+
"name": "skipauth",
|
|
6237
|
+
"allowNo": false,
|
|
6238
|
+
"type": "boolean"
|
|
6239
|
+
},
|
|
6240
|
+
"target-org": {
|
|
6241
|
+
"aliases": [
|
|
6242
|
+
"targetusername",
|
|
6243
|
+
"u"
|
|
6244
|
+
],
|
|
6245
|
+
"char": "o",
|
|
6246
|
+
"deprecateAliases": true,
|
|
6247
|
+
"name": "target-org",
|
|
6248
|
+
"noCacheDefault": true,
|
|
6249
|
+
"required": true,
|
|
6250
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
6251
|
+
"hasDynamicHelp": true,
|
|
6252
|
+
"multiple": false,
|
|
6253
|
+
"type": "option"
|
|
6254
|
+
}
|
|
6255
|
+
},
|
|
6256
|
+
"hasDynamicHelp": true,
|
|
6257
|
+
"hiddenAliases": [],
|
|
6258
|
+
"id": "hardis:org:files:import",
|
|
6259
|
+
"pluginAlias": "sfdx-hardis",
|
|
6260
|
+
"pluginName": "sfdx-hardis",
|
|
6261
|
+
"pluginType": "core",
|
|
6262
|
+
"strict": true,
|
|
6263
|
+
"enableJsonFlag": true,
|
|
6264
|
+
"title": "Import files",
|
|
6265
|
+
"requiresProject": false,
|
|
6266
|
+
"isESM": true,
|
|
6267
|
+
"relativePath": [
|
|
6268
|
+
"lib",
|
|
6269
|
+
"commands",
|
|
6270
|
+
"hardis",
|
|
6271
|
+
"org",
|
|
6272
|
+
"files",
|
|
6273
|
+
"import.js"
|
|
6274
|
+
],
|
|
6275
|
+
"aliasPermutations": [],
|
|
6276
|
+
"permutations": [
|
|
6277
|
+
"hardis:org:files:import",
|
|
6278
|
+
"org:hardis:files:import",
|
|
6279
|
+
"org:files:hardis:import",
|
|
6280
|
+
"org:files:import:hardis",
|
|
6281
|
+
"hardis:files:org:import",
|
|
6282
|
+
"files:hardis:org:import",
|
|
6283
|
+
"files:org:hardis:import",
|
|
6284
|
+
"files:org:import:hardis",
|
|
6285
|
+
"hardis:files:import:org",
|
|
6286
|
+
"files:hardis:import:org",
|
|
6287
|
+
"files:import:hardis:org",
|
|
6288
|
+
"files:import:org:hardis",
|
|
6289
|
+
"hardis:org:import:files",
|
|
6290
|
+
"org:hardis:import:files",
|
|
6291
|
+
"org:import:hardis:files",
|
|
6292
|
+
"org:import:files:hardis",
|
|
6293
|
+
"hardis:import:org:files",
|
|
6294
|
+
"import:hardis:org:files",
|
|
6295
|
+
"import:org:hardis:files",
|
|
6296
|
+
"import:org:files:hardis",
|
|
6297
|
+
"hardis:import:files:org",
|
|
6298
|
+
"import:hardis:files:org",
|
|
6299
|
+
"import:files:hardis:org",
|
|
6300
|
+
"import:files:org:hardis"
|
|
6301
|
+
]
|
|
6302
|
+
},
|
|
6303
6303
|
"hardis:org:fix:listviewmine": {
|
|
6304
6304
|
"aliases": [],
|
|
6305
6305
|
"args": {},
|
|
@@ -13883,5 +13883,5 @@
|
|
|
13883
13883
|
]
|
|
13884
13884
|
}
|
|
13885
13885
|
},
|
|
13886
|
-
"version": "5.10.2-
|
|
13886
|
+
"version": "5.10.2-beta202412302032.0"
|
|
13887
13887
|
}
|