sfdx-hardis 6.14.4 → 6.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/lib/common/ticketProvider/index.d.ts +6 -0
- package/lib/common/ticketProvider/jiraProvider.d.ts +3 -24
- package/lib/common/ticketProvider/jiraProvider.js +70 -17
- package/lib/common/ticketProvider/jiraProvider.js.map +1 -1
- package/oclif.lock +28 -292
- package/oclif.manifest.json +317 -317
- package/package.json +6 -5
- package/yarn.lock +13799 -0
package/oclif.manifest.json
CHANGED
|
@@ -57,12 +57,13 @@
|
|
|
57
57
|
"world:hello"
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
|
-
"hardis:
|
|
60
|
+
"hardis:auth:login": {
|
|
61
61
|
"aliases": [],
|
|
62
62
|
"args": {},
|
|
63
|
-
"description": "\n## Command Behavior\n\n**
|
|
63
|
+
"description": "\n## Command Behavior\n\n**Authenticates to a Salesforce org, primarily designed for CI/CD workflows.**\n\nThis command facilitates secure and automated logins to Salesforce organizations within continuous integration and continuous delivery pipelines. It leverages pre-configured authentication details, ensuring that CI/CD processes can interact with Salesforce without manual intervention.\n\nKey aspects:\n\n- **Configuration-Driven:** It relies on authentication variables and files set up by dedicated configuration commands:\n - For CI/CD repositories: [Configure Org CI Authentication](https://sfdx-hardis.cloudity.com/hardis/project/configure/auth/)\n - For Monitoring repositories: [Configure Org Monitoring](https://sfdx-hardis.cloudity.com/hardis/org/configure/monitoring/)\n- **Technical Org Support:** Supports authentication to a 'technical org' (e.g., for calling Agentforce from another org) by utilizing the `SFDX_AUTH_URL_TECHNICAL_ORG` environment variable. If this variable is set, the command authenticates to this org with the alias `TECHNICAL_ORG`.\n\nTo obtain the `SFDX_AUTH_URL_TECHNICAL_ORG` value, you can run `sf org display --verbose --json` and copy the `sfdxAuthUrl` field from the output.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical flow involves:\n\n- **Flag Parsing:** It parses command-line flags such as `instanceurl`, `devhub`, `scratchorg`, and `debug` to determine the authentication context.\n- **Authentication Hook:** It triggers an internal authentication hook (`this.config.runHook('auth', ...`)) which is responsible for executing the actual authentication logic based on the provided flags (e.g., whether it's a Dev Hub or a scratch org).\n- **Environment Variable Check:** It checks for the presence of `SFDX_AUTH_URL_TECHNICAL_ORG` or `TECHNICAL_ORG_ALIAS` environment variables.\n- **`authOrg` Utility:** If a technical org is configured, it calls the `authOrg` utility function to perform the authentication for that specific org, ensuring it's connected and available for subsequent operations.\n- **Salesforce CLI Integration:** It integrates with the Salesforce CLI's authentication mechanisms to establish and manage org connections.\n</details>\n",
|
|
64
64
|
"examples": [
|
|
65
|
-
"$ sf hardis:
|
|
65
|
+
"$ sf hardis:auth:login",
|
|
66
|
+
"CI=true CI_COMMIT_REF_NAME=monitoring_myclient sf hardis:auth:login"
|
|
66
67
|
],
|
|
67
68
|
"flags": {
|
|
68
69
|
"json": {
|
|
@@ -80,6 +81,28 @@
|
|
|
80
81
|
"multiple": false,
|
|
81
82
|
"type": "option"
|
|
82
83
|
},
|
|
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
|
+
},
|
|
83
106
|
"debug": {
|
|
84
107
|
"char": "d",
|
|
85
108
|
"description": "Activate debug mode (more logs)",
|
|
@@ -103,42 +126,38 @@
|
|
|
103
126
|
},
|
|
104
127
|
"hasDynamicHelp": false,
|
|
105
128
|
"hiddenAliases": [],
|
|
106
|
-
"id": "hardis:
|
|
129
|
+
"id": "hardis:auth:login",
|
|
107
130
|
"pluginAlias": "sfdx-hardis",
|
|
108
131
|
"pluginName": "sfdx-hardis",
|
|
109
132
|
"pluginType": "core",
|
|
110
133
|
"strict": true,
|
|
111
134
|
"enableJsonFlag": true,
|
|
112
|
-
"title": "
|
|
113
|
-
"uiConfig": {
|
|
114
|
-
"hide": true
|
|
115
|
-
},
|
|
135
|
+
"title": "Login",
|
|
116
136
|
"requiresProject": false,
|
|
117
137
|
"isESM": true,
|
|
118
138
|
"relativePath": [
|
|
119
139
|
"lib",
|
|
120
140
|
"commands",
|
|
121
141
|
"hardis",
|
|
122
|
-
"
|
|
123
|
-
"
|
|
142
|
+
"auth",
|
|
143
|
+
"login.js"
|
|
124
144
|
],
|
|
125
145
|
"aliasPermutations": [],
|
|
126
146
|
"permutations": [
|
|
127
|
-
"hardis:
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"hardis:
|
|
131
|
-
"
|
|
132
|
-
"
|
|
147
|
+
"hardis:auth:login",
|
|
148
|
+
"auth:hardis:login",
|
|
149
|
+
"auth:login:hardis",
|
|
150
|
+
"hardis:login:auth",
|
|
151
|
+
"login:hardis:auth",
|
|
152
|
+
"login:auth:hardis"
|
|
133
153
|
]
|
|
134
154
|
},
|
|
135
|
-
"hardis:
|
|
155
|
+
"hardis:cache:clear": {
|
|
136
156
|
"aliases": [],
|
|
137
157
|
"args": {},
|
|
138
|
-
"description": "\n## Command Behavior\n\n**
|
|
158
|
+
"description": "\n## Command Behavior\n\n**Clears the local cache generated by the sfdx-hardis plugin.**\n\nThis command is designed to remove temporary files, stored configurations, and other cached data that sfdx-hardis uses to optimize its operations. Clearing the cache can be beneficial for:\n\n- **Troubleshooting:** Resolving unexpected behavior or inconsistencies.\n- **Disk Space Management:** Freeing up storage on your local machine.\n- **Ensuring Fresh Data:** Guaranteeing that the plugin operates with the most current data and configurations.\n\n## Technical explanations\n\nThe command's technical implementation is straightforward:\n\n- **Direct Function Call:** It directly invokes the `clearCache()` function, which is imported from \buri../../../common/cache/index.js\buri.\n- **Cache Management Logic:** The \buriclearCache()` function encapsulates the logic for identifying and removing the specific files and directories that constitute the sfdx-hardis cache.\n",
|
|
139
159
|
"examples": [
|
|
140
|
-
"$ sf hardis:
|
|
141
|
-
"CI=true CI_COMMIT_REF_NAME=monitoring_myclient sf hardis:auth:login"
|
|
160
|
+
"$ sf hardis:cache:clear"
|
|
142
161
|
],
|
|
143
162
|
"flags": {
|
|
144
163
|
"json": {
|
|
@@ -156,28 +175,6 @@
|
|
|
156
175
|
"multiple": false,
|
|
157
176
|
"type": "option"
|
|
158
177
|
},
|
|
159
|
-
"instanceurl": {
|
|
160
|
-
"char": "r",
|
|
161
|
-
"description": "URL of org instance",
|
|
162
|
-
"name": "instanceurl",
|
|
163
|
-
"hasDynamicHelp": false,
|
|
164
|
-
"multiple": false,
|
|
165
|
-
"type": "option"
|
|
166
|
-
},
|
|
167
|
-
"devhub": {
|
|
168
|
-
"char": "h",
|
|
169
|
-
"description": "Also connect associated DevHub",
|
|
170
|
-
"name": "devhub",
|
|
171
|
-
"allowNo": false,
|
|
172
|
-
"type": "boolean"
|
|
173
|
-
},
|
|
174
|
-
"scratchorg": {
|
|
175
|
-
"char": "s",
|
|
176
|
-
"description": "Scratch org",
|
|
177
|
-
"name": "scratchorg",
|
|
178
|
-
"allowNo": false,
|
|
179
|
-
"type": "boolean"
|
|
180
|
-
},
|
|
181
178
|
"debug": {
|
|
182
179
|
"char": "d",
|
|
183
180
|
"description": "Activate debug mode (more logs)",
|
|
@@ -201,30 +198,33 @@
|
|
|
201
198
|
},
|
|
202
199
|
"hasDynamicHelp": false,
|
|
203
200
|
"hiddenAliases": [],
|
|
204
|
-
"id": "hardis:
|
|
201
|
+
"id": "hardis:cache:clear",
|
|
205
202
|
"pluginAlias": "sfdx-hardis",
|
|
206
203
|
"pluginName": "sfdx-hardis",
|
|
207
204
|
"pluginType": "core",
|
|
208
205
|
"strict": true,
|
|
209
206
|
"enableJsonFlag": true,
|
|
210
|
-
"title": "
|
|
207
|
+
"title": "Clear sfdx-hardis cache",
|
|
208
|
+
"uiConfig": {
|
|
209
|
+
"hide": true
|
|
210
|
+
},
|
|
211
211
|
"requiresProject": false,
|
|
212
212
|
"isESM": true,
|
|
213
213
|
"relativePath": [
|
|
214
214
|
"lib",
|
|
215
215
|
"commands",
|
|
216
216
|
"hardis",
|
|
217
|
-
"
|
|
218
|
-
"
|
|
217
|
+
"cache",
|
|
218
|
+
"clear.js"
|
|
219
219
|
],
|
|
220
220
|
"aliasPermutations": [],
|
|
221
221
|
"permutations": [
|
|
222
|
-
"hardis:
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"hardis:
|
|
226
|
-
"
|
|
227
|
-
"
|
|
222
|
+
"hardis:cache:clear",
|
|
223
|
+
"cache:hardis:clear",
|
|
224
|
+
"cache:clear:hardis",
|
|
225
|
+
"hardis:clear:cache",
|
|
226
|
+
"clear:hardis:cache",
|
|
227
|
+
"clear:cache:hardis"
|
|
228
228
|
]
|
|
229
229
|
},
|
|
230
230
|
"hardis:config:get": {
|
|
@@ -6937,6 +6937,121 @@
|
|
|
6937
6937
|
"unusedusers:diagnose:org:hardis"
|
|
6938
6938
|
]
|
|
6939
6939
|
},
|
|
6940
|
+
"hardis:org:fix:listviewmine": {
|
|
6941
|
+
"aliases": [],
|
|
6942
|
+
"args": {},
|
|
6943
|
+
"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",
|
|
6944
|
+
"examples": [
|
|
6945
|
+
"$ sf hardis:org:fix:listviewmine",
|
|
6946
|
+
"$ sf hardis:org:fix:listviewmine --listviews Opportunity:MySubscriptions,Account:MyActivePartners"
|
|
6947
|
+
],
|
|
6948
|
+
"flags": {
|
|
6949
|
+
"json": {
|
|
6950
|
+
"description": "Format output as json.",
|
|
6951
|
+
"helpGroup": "GLOBAL",
|
|
6952
|
+
"name": "json",
|
|
6953
|
+
"allowNo": false,
|
|
6954
|
+
"type": "boolean"
|
|
6955
|
+
},
|
|
6956
|
+
"flags-dir": {
|
|
6957
|
+
"helpGroup": "GLOBAL",
|
|
6958
|
+
"name": "flags-dir",
|
|
6959
|
+
"summary": "Import flag values from a directory.",
|
|
6960
|
+
"hasDynamicHelp": false,
|
|
6961
|
+
"multiple": false,
|
|
6962
|
+
"type": "option"
|
|
6963
|
+
},
|
|
6964
|
+
"listviews": {
|
|
6965
|
+
"char": "l",
|
|
6966
|
+
"description": "Comma-separated list of listviews following format Object:ListViewName\nExample: Contact:MyContacts,Contact:MyActiveContacts,Opportunity:MYClosedOpportunities",
|
|
6967
|
+
"name": "listviews",
|
|
6968
|
+
"hasDynamicHelp": false,
|
|
6969
|
+
"multiple": false,
|
|
6970
|
+
"type": "option"
|
|
6971
|
+
},
|
|
6972
|
+
"debug": {
|
|
6973
|
+
"char": "d",
|
|
6974
|
+
"description": "Activate debug mode (more logs)",
|
|
6975
|
+
"name": "debug",
|
|
6976
|
+
"allowNo": false,
|
|
6977
|
+
"type": "boolean"
|
|
6978
|
+
},
|
|
6979
|
+
"websocket": {
|
|
6980
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
6981
|
+
"name": "websocket",
|
|
6982
|
+
"hasDynamicHelp": false,
|
|
6983
|
+
"multiple": false,
|
|
6984
|
+
"type": "option"
|
|
6985
|
+
},
|
|
6986
|
+
"skipauth": {
|
|
6987
|
+
"description": "Skip authentication check when a default username is required",
|
|
6988
|
+
"name": "skipauth",
|
|
6989
|
+
"allowNo": false,
|
|
6990
|
+
"type": "boolean"
|
|
6991
|
+
},
|
|
6992
|
+
"target-org": {
|
|
6993
|
+
"aliases": [
|
|
6994
|
+
"targetusername",
|
|
6995
|
+
"u"
|
|
6996
|
+
],
|
|
6997
|
+
"char": "o",
|
|
6998
|
+
"deprecateAliases": true,
|
|
6999
|
+
"name": "target-org",
|
|
7000
|
+
"noCacheDefault": true,
|
|
7001
|
+
"required": true,
|
|
7002
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
7003
|
+
"hasDynamicHelp": true,
|
|
7004
|
+
"multiple": false,
|
|
7005
|
+
"type": "option"
|
|
7006
|
+
}
|
|
7007
|
+
},
|
|
7008
|
+
"hasDynamicHelp": true,
|
|
7009
|
+
"hiddenAliases": [],
|
|
7010
|
+
"id": "hardis:org:fix:listviewmine",
|
|
7011
|
+
"pluginAlias": "sfdx-hardis",
|
|
7012
|
+
"pluginName": "sfdx-hardis",
|
|
7013
|
+
"pluginType": "core",
|
|
7014
|
+
"strict": true,
|
|
7015
|
+
"enableJsonFlag": true,
|
|
7016
|
+
"title": "Fix listviews with ",
|
|
7017
|
+
"requiresProject": true,
|
|
7018
|
+
"isESM": true,
|
|
7019
|
+
"relativePath": [
|
|
7020
|
+
"lib",
|
|
7021
|
+
"commands",
|
|
7022
|
+
"hardis",
|
|
7023
|
+
"org",
|
|
7024
|
+
"fix",
|
|
7025
|
+
"listviewmine.js"
|
|
7026
|
+
],
|
|
7027
|
+
"aliasPermutations": [],
|
|
7028
|
+
"permutations": [
|
|
7029
|
+
"hardis:org:fix:listviewmine",
|
|
7030
|
+
"org:hardis:fix:listviewmine",
|
|
7031
|
+
"org:fix:hardis:listviewmine",
|
|
7032
|
+
"org:fix:listviewmine:hardis",
|
|
7033
|
+
"hardis:fix:org:listviewmine",
|
|
7034
|
+
"fix:hardis:org:listviewmine",
|
|
7035
|
+
"fix:org:hardis:listviewmine",
|
|
7036
|
+
"fix:org:listviewmine:hardis",
|
|
7037
|
+
"hardis:fix:listviewmine:org",
|
|
7038
|
+
"fix:hardis:listviewmine:org",
|
|
7039
|
+
"fix:listviewmine:hardis:org",
|
|
7040
|
+
"fix:listviewmine:org:hardis",
|
|
7041
|
+
"hardis:org:listviewmine:fix",
|
|
7042
|
+
"org:hardis:listviewmine:fix",
|
|
7043
|
+
"org:listviewmine:hardis:fix",
|
|
7044
|
+
"org:listviewmine:fix:hardis",
|
|
7045
|
+
"hardis:listviewmine:org:fix",
|
|
7046
|
+
"listviewmine:hardis:org:fix",
|
|
7047
|
+
"listviewmine:org:hardis:fix",
|
|
7048
|
+
"listviewmine:org:fix:hardis",
|
|
7049
|
+
"hardis:listviewmine:fix:org",
|
|
7050
|
+
"listviewmine:hardis:fix:org",
|
|
7051
|
+
"listviewmine:fix:hardis:org",
|
|
7052
|
+
"listviewmine:fix:org:hardis"
|
|
7053
|
+
]
|
|
7054
|
+
},
|
|
6940
7055
|
"hardis:org:files:export": {
|
|
6941
7056
|
"aliases": [],
|
|
6942
7057
|
"args": {},
|
|
@@ -7206,13 +7321,14 @@
|
|
|
7206
7321
|
"import:files:org:hardis"
|
|
7207
7322
|
]
|
|
7208
7323
|
},
|
|
7209
|
-
"hardis:org:
|
|
7324
|
+
"hardis:org:generate:packagexmlfull": {
|
|
7210
7325
|
"aliases": [],
|
|
7211
7326
|
"args": {},
|
|
7212
|
-
"description": "
|
|
7327
|
+
"description": "\n## Command Behavior\n\n**Generates a comprehensive `package.xml` file for a Salesforce org, including all metadata components, even managed ones.**\n\nThis command is essential for various Salesforce development and administration tasks, especially when you need a complete snapshot of an org's metadata. It goes beyond typical source tracking by including managed package components, which is crucial for understanding the full metadata footprint of an org.\n\nKey functionalities:\n\n- **Full Org Metadata Retrieval:** Connects to a specified Salesforce org (or prompts for one if not provided) and retrieves a complete list of all metadata types and their members.\n- **Managed Package Inclusion:** Unlike standard source retrieval, this command explicitly includes metadata from managed packages, providing a truly comprehensive `package.xml`.\n- **Customizable Output:** Allows you to specify the output file path for the generated `package.xml`.\n- **Interactive Org Selection:** If no target org is specified, it interactively prompts the user to choose an org. (or use --no-prompt to skip this step)\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **Salesforce Metadata API Interaction:** It leverages the Salesforce Metadata API to list all available metadata types and then retrieve all components for each type.\n- **`buildOrgManifest` Utility:** The core logic for querying the org's metadata and constructing the `package.xml` is encapsulated within the `buildOrgManifest` utility function.\n- **XML Generation:** It dynamically builds the XML structure of the `package.xml` file, including the `types` and `members` elements for all retrieved metadata.\n- **File System Operations:** It writes the generated `package.xml` file to the specified output path.\n- **Interactive Prompts:** Uses `promptOrgUsernameDefault` to guide the user in selecting the target Salesforce org.\n</details>\n",
|
|
7213
7328
|
"examples": [
|
|
7214
|
-
"$ sf hardis:org:
|
|
7215
|
-
"$ sf hardis:org:
|
|
7329
|
+
"$ sf hardis:org:generate:packagexmlfull",
|
|
7330
|
+
"$ sf hardis:org:generate:packagexmlfull --outputfile /tmp/packagexmlfull.xml",
|
|
7331
|
+
"$ sf hardis:org:generate:packagexmlfull --target-org nico@example.com"
|
|
7216
7332
|
],
|
|
7217
7333
|
"flags": {
|
|
7218
7334
|
"json": {
|
|
@@ -7230,10 +7346,9 @@
|
|
|
7230
7346
|
"multiple": false,
|
|
7231
7347
|
"type": "option"
|
|
7232
7348
|
},
|
|
7233
|
-
"
|
|
7234
|
-
"
|
|
7235
|
-
"
|
|
7236
|
-
"name": "listviews",
|
|
7349
|
+
"outputfile": {
|
|
7350
|
+
"description": "Output package.xml file",
|
|
7351
|
+
"name": "outputfile",
|
|
7237
7352
|
"hasDynamicHelp": false,
|
|
7238
7353
|
"multiple": false,
|
|
7239
7354
|
"type": "option"
|
|
@@ -7245,6 +7360,13 @@
|
|
|
7245
7360
|
"allowNo": false,
|
|
7246
7361
|
"type": "boolean"
|
|
7247
7362
|
},
|
|
7363
|
+
"no-prompt": {
|
|
7364
|
+
"char": "n",
|
|
7365
|
+
"description": "Do not prompt for org username, use the default one",
|
|
7366
|
+
"name": "no-prompt",
|
|
7367
|
+
"allowNo": false,
|
|
7368
|
+
"type": "boolean"
|
|
7369
|
+
},
|
|
7248
7370
|
"websocket": {
|
|
7249
7371
|
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
7250
7372
|
"name": "websocket",
|
|
@@ -7276,144 +7398,22 @@
|
|
|
7276
7398
|
},
|
|
7277
7399
|
"hasDynamicHelp": true,
|
|
7278
7400
|
"hiddenAliases": [],
|
|
7279
|
-
"id": "hardis:org:
|
|
7401
|
+
"id": "hardis:org:generate:packagexmlfull",
|
|
7280
7402
|
"pluginAlias": "sfdx-hardis",
|
|
7281
7403
|
"pluginName": "sfdx-hardis",
|
|
7282
7404
|
"pluginType": "core",
|
|
7283
7405
|
"strict": true,
|
|
7284
7406
|
"enableJsonFlag": true,
|
|
7285
|
-
"title": "
|
|
7286
|
-
"requiresProject":
|
|
7407
|
+
"title": "Generate Full Org package.xml",
|
|
7408
|
+
"requiresProject": false,
|
|
7287
7409
|
"isESM": true,
|
|
7288
7410
|
"relativePath": [
|
|
7289
7411
|
"lib",
|
|
7290
7412
|
"commands",
|
|
7291
7413
|
"hardis",
|
|
7292
7414
|
"org",
|
|
7293
|
-
"
|
|
7294
|
-
"
|
|
7295
|
-
],
|
|
7296
|
-
"aliasPermutations": [],
|
|
7297
|
-
"permutations": [
|
|
7298
|
-
"hardis:org:fix:listviewmine",
|
|
7299
|
-
"org:hardis:fix:listviewmine",
|
|
7300
|
-
"org:fix:hardis:listviewmine",
|
|
7301
|
-
"org:fix:listviewmine:hardis",
|
|
7302
|
-
"hardis:fix:org:listviewmine",
|
|
7303
|
-
"fix:hardis:org:listviewmine",
|
|
7304
|
-
"fix:org:hardis:listviewmine",
|
|
7305
|
-
"fix:org:listviewmine:hardis",
|
|
7306
|
-
"hardis:fix:listviewmine:org",
|
|
7307
|
-
"fix:hardis:listviewmine:org",
|
|
7308
|
-
"fix:listviewmine:hardis:org",
|
|
7309
|
-
"fix:listviewmine:org:hardis",
|
|
7310
|
-
"hardis:org:listviewmine:fix",
|
|
7311
|
-
"org:hardis:listviewmine:fix",
|
|
7312
|
-
"org:listviewmine:hardis:fix",
|
|
7313
|
-
"org:listviewmine:fix:hardis",
|
|
7314
|
-
"hardis:listviewmine:org:fix",
|
|
7315
|
-
"listviewmine:hardis:org:fix",
|
|
7316
|
-
"listviewmine:org:hardis:fix",
|
|
7317
|
-
"listviewmine:org:fix:hardis",
|
|
7318
|
-
"hardis:listviewmine:fix:org",
|
|
7319
|
-
"listviewmine:hardis:fix:org",
|
|
7320
|
-
"listviewmine:fix:hardis:org",
|
|
7321
|
-
"listviewmine:fix:org:hardis"
|
|
7322
|
-
]
|
|
7323
|
-
},
|
|
7324
|
-
"hardis:org:generate:packagexmlfull": {
|
|
7325
|
-
"aliases": [],
|
|
7326
|
-
"args": {},
|
|
7327
|
-
"description": "\n## Command Behavior\n\n**Generates a comprehensive `package.xml` file for a Salesforce org, including all metadata components, even managed ones.**\n\nThis command is essential for various Salesforce development and administration tasks, especially when you need a complete snapshot of an org's metadata. It goes beyond typical source tracking by including managed package components, which is crucial for understanding the full metadata footprint of an org.\n\nKey functionalities:\n\n- **Full Org Metadata Retrieval:** Connects to a specified Salesforce org (or prompts for one if not provided) and retrieves a complete list of all metadata types and their members.\n- **Managed Package Inclusion:** Unlike standard source retrieval, this command explicitly includes metadata from managed packages, providing a truly comprehensive `package.xml`.\n- **Customizable Output:** Allows you to specify the output file path for the generated `package.xml`.\n- **Interactive Org Selection:** If no target org is specified, it interactively prompts the user to choose an org. (or use --no-prompt to skip this step)\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's technical implementation involves:\n\n- **Salesforce Metadata API Interaction:** It leverages the Salesforce Metadata API to list all available metadata types and then retrieve all components for each type.\n- **`buildOrgManifest` Utility:** The core logic for querying the org's metadata and constructing the `package.xml` is encapsulated within the `buildOrgManifest` utility function.\n- **XML Generation:** It dynamically builds the XML structure of the `package.xml` file, including the `types` and `members` elements for all retrieved metadata.\n- **File System Operations:** It writes the generated `package.xml` file to the specified output path.\n- **Interactive Prompts:** Uses `promptOrgUsernameDefault` to guide the user in selecting the target Salesforce org.\n</details>\n",
|
|
7328
|
-
"examples": [
|
|
7329
|
-
"$ sf hardis:org:generate:packagexmlfull",
|
|
7330
|
-
"$ sf hardis:org:generate:packagexmlfull --outputfile /tmp/packagexmlfull.xml",
|
|
7331
|
-
"$ sf hardis:org:generate:packagexmlfull --target-org nico@example.com"
|
|
7332
|
-
],
|
|
7333
|
-
"flags": {
|
|
7334
|
-
"json": {
|
|
7335
|
-
"description": "Format output as json.",
|
|
7336
|
-
"helpGroup": "GLOBAL",
|
|
7337
|
-
"name": "json",
|
|
7338
|
-
"allowNo": false,
|
|
7339
|
-
"type": "boolean"
|
|
7340
|
-
},
|
|
7341
|
-
"flags-dir": {
|
|
7342
|
-
"helpGroup": "GLOBAL",
|
|
7343
|
-
"name": "flags-dir",
|
|
7344
|
-
"summary": "Import flag values from a directory.",
|
|
7345
|
-
"hasDynamicHelp": false,
|
|
7346
|
-
"multiple": false,
|
|
7347
|
-
"type": "option"
|
|
7348
|
-
},
|
|
7349
|
-
"outputfile": {
|
|
7350
|
-
"description": "Output package.xml file",
|
|
7351
|
-
"name": "outputfile",
|
|
7352
|
-
"hasDynamicHelp": false,
|
|
7353
|
-
"multiple": false,
|
|
7354
|
-
"type": "option"
|
|
7355
|
-
},
|
|
7356
|
-
"debug": {
|
|
7357
|
-
"char": "d",
|
|
7358
|
-
"description": "Activate debug mode (more logs)",
|
|
7359
|
-
"name": "debug",
|
|
7360
|
-
"allowNo": false,
|
|
7361
|
-
"type": "boolean"
|
|
7362
|
-
},
|
|
7363
|
-
"no-prompt": {
|
|
7364
|
-
"char": "n",
|
|
7365
|
-
"description": "Do not prompt for org username, use the default one",
|
|
7366
|
-
"name": "no-prompt",
|
|
7367
|
-
"allowNo": false,
|
|
7368
|
-
"type": "boolean"
|
|
7369
|
-
},
|
|
7370
|
-
"websocket": {
|
|
7371
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
7372
|
-
"name": "websocket",
|
|
7373
|
-
"hasDynamicHelp": false,
|
|
7374
|
-
"multiple": false,
|
|
7375
|
-
"type": "option"
|
|
7376
|
-
},
|
|
7377
|
-
"skipauth": {
|
|
7378
|
-
"description": "Skip authentication check when a default username is required",
|
|
7379
|
-
"name": "skipauth",
|
|
7380
|
-
"allowNo": false,
|
|
7381
|
-
"type": "boolean"
|
|
7382
|
-
},
|
|
7383
|
-
"target-org": {
|
|
7384
|
-
"aliases": [
|
|
7385
|
-
"targetusername",
|
|
7386
|
-
"u"
|
|
7387
|
-
],
|
|
7388
|
-
"char": "o",
|
|
7389
|
-
"deprecateAliases": true,
|
|
7390
|
-
"name": "target-org",
|
|
7391
|
-
"noCacheDefault": true,
|
|
7392
|
-
"required": true,
|
|
7393
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
7394
|
-
"hasDynamicHelp": true,
|
|
7395
|
-
"multiple": false,
|
|
7396
|
-
"type": "option"
|
|
7397
|
-
}
|
|
7398
|
-
},
|
|
7399
|
-
"hasDynamicHelp": true,
|
|
7400
|
-
"hiddenAliases": [],
|
|
7401
|
-
"id": "hardis:org:generate:packagexmlfull",
|
|
7402
|
-
"pluginAlias": "sfdx-hardis",
|
|
7403
|
-
"pluginName": "sfdx-hardis",
|
|
7404
|
-
"pluginType": "core",
|
|
7405
|
-
"strict": true,
|
|
7406
|
-
"enableJsonFlag": true,
|
|
7407
|
-
"title": "Generate Full Org package.xml",
|
|
7408
|
-
"requiresProject": false,
|
|
7409
|
-
"isESM": true,
|
|
7410
|
-
"relativePath": [
|
|
7411
|
-
"lib",
|
|
7412
|
-
"commands",
|
|
7413
|
-
"hardis",
|
|
7414
|
-
"org",
|
|
7415
|
-
"generate",
|
|
7416
|
-
"packagexmlfull.js"
|
|
7415
|
+
"generate",
|
|
7416
|
+
"packagexmlfull.js"
|
|
7417
7417
|
],
|
|
7418
7418
|
"aliasPermutations": [],
|
|
7419
7419
|
"permutations": [
|
|
@@ -9939,6 +9939,135 @@
|
|
|
9939
9939
|
"remotesites:audit:project:hardis"
|
|
9940
9940
|
]
|
|
9941
9941
|
},
|
|
9942
|
+
"hardis:project:configure:auth": {
|
|
9943
|
+
"aliases": [],
|
|
9944
|
+
"args": {},
|
|
9945
|
+
"description": "\n## Command Behavior\n\n**Configures authentication between a Git branch and a target Salesforce org for CI/CD deployments.**\n\nThis command facilitates the setup of automated CI/CD pipelines, enabling seamless deployments from specific Git branches to designated Salesforce orgs. It supports both standard Salesforce orgs and Dev Hub configurations, catering to various enterprise deployment workflows.\n\nKey functionalities include:\n\n- **Org Selection/Login:** Guides the user to select an existing Salesforce org or log in to a new one.\n- **Git Branch Association:** Allows associating a specific Git branch with the chosen Salesforce org.\n- **Merge Target Definition:** Enables defining target Git branches into which the configured branch can merge, ensuring controlled deployment flows.\n- **Salesforce Username Configuration:** Prompts for the Salesforce username to be used by the CI server for deployments.\n- **SSL Certificate Generation:** Automatically generates an SSL certificate for secure authentication.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's implementation involves several key technical aspects:\n\n- **SF CLI Integration:** Utilizes \n@salesforce/sf-plugins-core\n for command structure and flag parsing.\n- **Interactive Prompts:** Employs the \nprompts\n library for interactive user input, guiding the configuration process.\n- **Git Integration:** Interacts with Git to retrieve branch information using \n`git().branch([\"--list\", \"-r\"])`\n.\n- **Configuration Management:** Leverages internal utilities (`checkConfig`, `getConfig`, `setConfig`, `setInConfigFile`) to read from and write to project-specific configuration files (e.g., `.sfdx-hardis.<branchName>.yml`).\n- **Salesforce CLI Execution:** Executes Salesforce CLI commands programmatically via `execSfdxJson` for org interactions.\n- **SSL Certificate Generation:** Calls `generateSSLCertificate` to create necessary SSL certificates for JWT-based authentication.\n- **WebSocket Communication:** Uses `WebSocketClient` for potential communication with external tools or processes, such as restarting the command in VS Code.\n- **Dependency Check:** Ensures the presence of `openssl` on the system, which is required for SSL certificate generation.\n",
|
|
9946
|
+
"examples": [
|
|
9947
|
+
"$ sf hardis:project:configure:auth"
|
|
9948
|
+
],
|
|
9949
|
+
"flags": {
|
|
9950
|
+
"json": {
|
|
9951
|
+
"description": "Format output as json.",
|
|
9952
|
+
"helpGroup": "GLOBAL",
|
|
9953
|
+
"name": "json",
|
|
9954
|
+
"allowNo": false,
|
|
9955
|
+
"type": "boolean"
|
|
9956
|
+
},
|
|
9957
|
+
"flags-dir": {
|
|
9958
|
+
"helpGroup": "GLOBAL",
|
|
9959
|
+
"name": "flags-dir",
|
|
9960
|
+
"summary": "Import flag values from a directory.",
|
|
9961
|
+
"hasDynamicHelp": false,
|
|
9962
|
+
"multiple": false,
|
|
9963
|
+
"type": "option"
|
|
9964
|
+
},
|
|
9965
|
+
"devhub": {
|
|
9966
|
+
"char": "b",
|
|
9967
|
+
"description": "Configure project DevHub",
|
|
9968
|
+
"name": "devhub",
|
|
9969
|
+
"allowNo": false,
|
|
9970
|
+
"type": "boolean"
|
|
9971
|
+
},
|
|
9972
|
+
"debug": {
|
|
9973
|
+
"char": "d",
|
|
9974
|
+
"description": "Activate debug mode (more logs)",
|
|
9975
|
+
"name": "debug",
|
|
9976
|
+
"allowNo": false,
|
|
9977
|
+
"type": "boolean"
|
|
9978
|
+
},
|
|
9979
|
+
"websocket": {
|
|
9980
|
+
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
9981
|
+
"name": "websocket",
|
|
9982
|
+
"hasDynamicHelp": false,
|
|
9983
|
+
"multiple": false,
|
|
9984
|
+
"type": "option"
|
|
9985
|
+
},
|
|
9986
|
+
"skipauth": {
|
|
9987
|
+
"description": "Skip authentication check when a default username is required",
|
|
9988
|
+
"name": "skipauth",
|
|
9989
|
+
"allowNo": false,
|
|
9990
|
+
"type": "boolean"
|
|
9991
|
+
},
|
|
9992
|
+
"target-org": {
|
|
9993
|
+
"aliases": [
|
|
9994
|
+
"targetusername",
|
|
9995
|
+
"u"
|
|
9996
|
+
],
|
|
9997
|
+
"char": "o",
|
|
9998
|
+
"deprecateAliases": true,
|
|
9999
|
+
"name": "target-org",
|
|
10000
|
+
"noCacheDefault": true,
|
|
10001
|
+
"summary": "Username or alias of the target org.",
|
|
10002
|
+
"hasDynamicHelp": true,
|
|
10003
|
+
"multiple": false,
|
|
10004
|
+
"type": "option"
|
|
10005
|
+
},
|
|
10006
|
+
"target-dev-hub": {
|
|
10007
|
+
"aliases": [
|
|
10008
|
+
"targetdevhubusername"
|
|
10009
|
+
],
|
|
10010
|
+
"char": "v",
|
|
10011
|
+
"deprecateAliases": true,
|
|
10012
|
+
"name": "target-dev-hub",
|
|
10013
|
+
"noCacheDefault": true,
|
|
10014
|
+
"required": false,
|
|
10015
|
+
"summary": "Username or alias of the Dev Hub org.",
|
|
10016
|
+
"hasDynamicHelp": true,
|
|
10017
|
+
"multiple": false,
|
|
10018
|
+
"type": "option"
|
|
10019
|
+
}
|
|
10020
|
+
},
|
|
10021
|
+
"hasDynamicHelp": true,
|
|
10022
|
+
"hiddenAliases": [],
|
|
10023
|
+
"id": "hardis:project:configure:auth",
|
|
10024
|
+
"pluginAlias": "sfdx-hardis",
|
|
10025
|
+
"pluginName": "sfdx-hardis",
|
|
10026
|
+
"pluginType": "core",
|
|
10027
|
+
"strict": true,
|
|
10028
|
+
"enableJsonFlag": true,
|
|
10029
|
+
"title": "Configure authentication",
|
|
10030
|
+
"requiresProject": false,
|
|
10031
|
+
"requiresDependencies": [
|
|
10032
|
+
"openssl"
|
|
10033
|
+
],
|
|
10034
|
+
"isESM": true,
|
|
10035
|
+
"relativePath": [
|
|
10036
|
+
"lib",
|
|
10037
|
+
"commands",
|
|
10038
|
+
"hardis",
|
|
10039
|
+
"project",
|
|
10040
|
+
"configure",
|
|
10041
|
+
"auth.js"
|
|
10042
|
+
],
|
|
10043
|
+
"aliasPermutations": [],
|
|
10044
|
+
"permutations": [
|
|
10045
|
+
"hardis:project:configure:auth",
|
|
10046
|
+
"project:hardis:configure:auth",
|
|
10047
|
+
"project:configure:hardis:auth",
|
|
10048
|
+
"project:configure:auth:hardis",
|
|
10049
|
+
"hardis:configure:project:auth",
|
|
10050
|
+
"configure:hardis:project:auth",
|
|
10051
|
+
"configure:project:hardis:auth",
|
|
10052
|
+
"configure:project:auth:hardis",
|
|
10053
|
+
"hardis:configure:auth:project",
|
|
10054
|
+
"configure:hardis:auth:project",
|
|
10055
|
+
"configure:auth:hardis:project",
|
|
10056
|
+
"configure:auth:project:hardis",
|
|
10057
|
+
"hardis:project:auth:configure",
|
|
10058
|
+
"project:hardis:auth:configure",
|
|
10059
|
+
"project:auth:hardis:configure",
|
|
10060
|
+
"project:auth:configure:hardis",
|
|
10061
|
+
"hardis:auth:project:configure",
|
|
10062
|
+
"auth:hardis:project:configure",
|
|
10063
|
+
"auth:project:hardis:configure",
|
|
10064
|
+
"auth:project:configure:hardis",
|
|
10065
|
+
"hardis:auth:configure:project",
|
|
10066
|
+
"auth:hardis:configure:project",
|
|
10067
|
+
"auth:configure:hardis:project",
|
|
10068
|
+
"auth:configure:project:hardis"
|
|
10069
|
+
]
|
|
10070
|
+
},
|
|
9942
10071
|
"hardis:project:clean:emptyitems": {
|
|
9943
10072
|
"aliases": [],
|
|
9944
10073
|
"args": {},
|
|
@@ -11525,135 +11654,6 @@
|
|
|
11525
11654
|
"xml:clean:project:hardis"
|
|
11526
11655
|
]
|
|
11527
11656
|
},
|
|
11528
|
-
"hardis:project:configure:auth": {
|
|
11529
|
-
"aliases": [],
|
|
11530
|
-
"args": {},
|
|
11531
|
-
"description": "\n## Command Behavior\n\n**Configures authentication between a Git branch and a target Salesforce org for CI/CD deployments.**\n\nThis command facilitates the setup of automated CI/CD pipelines, enabling seamless deployments from specific Git branches to designated Salesforce orgs. It supports both standard Salesforce orgs and Dev Hub configurations, catering to various enterprise deployment workflows.\n\nKey functionalities include:\n\n- **Org Selection/Login:** Guides the user to select an existing Salesforce org or log in to a new one.\n- **Git Branch Association:** Allows associating a specific Git branch with the chosen Salesforce org.\n- **Merge Target Definition:** Enables defining target Git branches into which the configured branch can merge, ensuring controlled deployment flows.\n- **Salesforce Username Configuration:** Prompts for the Salesforce username to be used by the CI server for deployments.\n- **SSL Certificate Generation:** Automatically generates an SSL certificate for secure authentication.\n\n<details markdown=\"1\">\n<summary>Technical explanations</summary>\n\nThe command's implementation involves several key technical aspects:\n\n- **SF CLI Integration:** Utilizes \n@salesforce/sf-plugins-core\n for command structure and flag parsing.\n- **Interactive Prompts:** Employs the \nprompts\n library for interactive user input, guiding the configuration process.\n- **Git Integration:** Interacts with Git to retrieve branch information using \n`git().branch([\"--list\", \"-r\"])`\n.\n- **Configuration Management:** Leverages internal utilities (`checkConfig`, `getConfig`, `setConfig`, `setInConfigFile`) to read from and write to project-specific configuration files (e.g., `.sfdx-hardis.<branchName>.yml`).\n- **Salesforce CLI Execution:** Executes Salesforce CLI commands programmatically via `execSfdxJson` for org interactions.\n- **SSL Certificate Generation:** Calls `generateSSLCertificate` to create necessary SSL certificates for JWT-based authentication.\n- **WebSocket Communication:** Uses `WebSocketClient` for potential communication with external tools or processes, such as restarting the command in VS Code.\n- **Dependency Check:** Ensures the presence of `openssl` on the system, which is required for SSL certificate generation.\n",
|
|
11532
|
-
"examples": [
|
|
11533
|
-
"$ sf hardis:project:configure:auth"
|
|
11534
|
-
],
|
|
11535
|
-
"flags": {
|
|
11536
|
-
"json": {
|
|
11537
|
-
"description": "Format output as json.",
|
|
11538
|
-
"helpGroup": "GLOBAL",
|
|
11539
|
-
"name": "json",
|
|
11540
|
-
"allowNo": false,
|
|
11541
|
-
"type": "boolean"
|
|
11542
|
-
},
|
|
11543
|
-
"flags-dir": {
|
|
11544
|
-
"helpGroup": "GLOBAL",
|
|
11545
|
-
"name": "flags-dir",
|
|
11546
|
-
"summary": "Import flag values from a directory.",
|
|
11547
|
-
"hasDynamicHelp": false,
|
|
11548
|
-
"multiple": false,
|
|
11549
|
-
"type": "option"
|
|
11550
|
-
},
|
|
11551
|
-
"devhub": {
|
|
11552
|
-
"char": "b",
|
|
11553
|
-
"description": "Configure project DevHub",
|
|
11554
|
-
"name": "devhub",
|
|
11555
|
-
"allowNo": false,
|
|
11556
|
-
"type": "boolean"
|
|
11557
|
-
},
|
|
11558
|
-
"debug": {
|
|
11559
|
-
"char": "d",
|
|
11560
|
-
"description": "Activate debug mode (more logs)",
|
|
11561
|
-
"name": "debug",
|
|
11562
|
-
"allowNo": false,
|
|
11563
|
-
"type": "boolean"
|
|
11564
|
-
},
|
|
11565
|
-
"websocket": {
|
|
11566
|
-
"description": "Websocket host:port for VsCode SFDX Hardis UI integration",
|
|
11567
|
-
"name": "websocket",
|
|
11568
|
-
"hasDynamicHelp": false,
|
|
11569
|
-
"multiple": false,
|
|
11570
|
-
"type": "option"
|
|
11571
|
-
},
|
|
11572
|
-
"skipauth": {
|
|
11573
|
-
"description": "Skip authentication check when a default username is required",
|
|
11574
|
-
"name": "skipauth",
|
|
11575
|
-
"allowNo": false,
|
|
11576
|
-
"type": "boolean"
|
|
11577
|
-
},
|
|
11578
|
-
"target-org": {
|
|
11579
|
-
"aliases": [
|
|
11580
|
-
"targetusername",
|
|
11581
|
-
"u"
|
|
11582
|
-
],
|
|
11583
|
-
"char": "o",
|
|
11584
|
-
"deprecateAliases": true,
|
|
11585
|
-
"name": "target-org",
|
|
11586
|
-
"noCacheDefault": true,
|
|
11587
|
-
"summary": "Username or alias of the target org.",
|
|
11588
|
-
"hasDynamicHelp": true,
|
|
11589
|
-
"multiple": false,
|
|
11590
|
-
"type": "option"
|
|
11591
|
-
},
|
|
11592
|
-
"target-dev-hub": {
|
|
11593
|
-
"aliases": [
|
|
11594
|
-
"targetdevhubusername"
|
|
11595
|
-
],
|
|
11596
|
-
"char": "v",
|
|
11597
|
-
"deprecateAliases": true,
|
|
11598
|
-
"name": "target-dev-hub",
|
|
11599
|
-
"noCacheDefault": true,
|
|
11600
|
-
"required": false,
|
|
11601
|
-
"summary": "Username or alias of the Dev Hub org.",
|
|
11602
|
-
"hasDynamicHelp": true,
|
|
11603
|
-
"multiple": false,
|
|
11604
|
-
"type": "option"
|
|
11605
|
-
}
|
|
11606
|
-
},
|
|
11607
|
-
"hasDynamicHelp": true,
|
|
11608
|
-
"hiddenAliases": [],
|
|
11609
|
-
"id": "hardis:project:configure:auth",
|
|
11610
|
-
"pluginAlias": "sfdx-hardis",
|
|
11611
|
-
"pluginName": "sfdx-hardis",
|
|
11612
|
-
"pluginType": "core",
|
|
11613
|
-
"strict": true,
|
|
11614
|
-
"enableJsonFlag": true,
|
|
11615
|
-
"title": "Configure authentication",
|
|
11616
|
-
"requiresProject": false,
|
|
11617
|
-
"requiresDependencies": [
|
|
11618
|
-
"openssl"
|
|
11619
|
-
],
|
|
11620
|
-
"isESM": true,
|
|
11621
|
-
"relativePath": [
|
|
11622
|
-
"lib",
|
|
11623
|
-
"commands",
|
|
11624
|
-
"hardis",
|
|
11625
|
-
"project",
|
|
11626
|
-
"configure",
|
|
11627
|
-
"auth.js"
|
|
11628
|
-
],
|
|
11629
|
-
"aliasPermutations": [],
|
|
11630
|
-
"permutations": [
|
|
11631
|
-
"hardis:project:configure:auth",
|
|
11632
|
-
"project:hardis:configure:auth",
|
|
11633
|
-
"project:configure:hardis:auth",
|
|
11634
|
-
"project:configure:auth:hardis",
|
|
11635
|
-
"hardis:configure:project:auth",
|
|
11636
|
-
"configure:hardis:project:auth",
|
|
11637
|
-
"configure:project:hardis:auth",
|
|
11638
|
-
"configure:project:auth:hardis",
|
|
11639
|
-
"hardis:configure:auth:project",
|
|
11640
|
-
"configure:hardis:auth:project",
|
|
11641
|
-
"configure:auth:hardis:project",
|
|
11642
|
-
"configure:auth:project:hardis",
|
|
11643
|
-
"hardis:project:auth:configure",
|
|
11644
|
-
"project:hardis:auth:configure",
|
|
11645
|
-
"project:auth:hardis:configure",
|
|
11646
|
-
"project:auth:configure:hardis",
|
|
11647
|
-
"hardis:auth:project:configure",
|
|
11648
|
-
"auth:hardis:project:configure",
|
|
11649
|
-
"auth:project:hardis:configure",
|
|
11650
|
-
"auth:project:configure:hardis",
|
|
11651
|
-
"hardis:auth:configure:project",
|
|
11652
|
-
"auth:hardis:configure:project",
|
|
11653
|
-
"auth:configure:hardis:project",
|
|
11654
|
-
"auth:configure:project:hardis"
|
|
11655
|
-
]
|
|
11656
|
-
},
|
|
11657
11657
|
"hardis:project:convert:profilestopermsets": {
|
|
11658
11658
|
"aliases": [],
|
|
11659
11659
|
"args": {},
|
|
@@ -15719,5 +15719,5 @@
|
|
|
15719
15719
|
]
|
|
15720
15720
|
}
|
|
15721
15721
|
},
|
|
15722
|
-
"version": "6.
|
|
15722
|
+
"version": "6.15.0"
|
|
15723
15723
|
}
|