sfdx-hardis 5.38.2-beta202506042301.0 → 5.38.2

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.
Files changed (2) hide show
  1. package/oclif.manifest.json +56 -56
  2. package/package.json +1 -1
@@ -129,13 +129,12 @@
129
129
  "clear:cache:hardis"
130
130
  ]
131
131
  },
132
- "hardis:auth:login": {
132
+ "hardis:config:get": {
133
133
  "aliases": [],
134
134
  "args": {},
135
- "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",
135
+ "description": "Returns sfdx-hardis project config for a given level",
136
136
  "examples": [
137
- "$ sf hardis:auth:login",
138
- "CI=true sf hardis:auth:login"
137
+ "$ sf hardis:project:deploy:sources:metadata"
139
138
  ],
140
139
  "flags": {
141
140
  "json": {
@@ -153,28 +152,20 @@
153
152
  "multiple": false,
154
153
  "type": "option"
155
154
  },
156
- "instanceurl": {
157
- "char": "r",
158
- "description": "URL of org instance",
159
- "name": "instanceurl",
155
+ "level": {
156
+ "char": "l",
157
+ "description": "project,branch or user",
158
+ "name": "level",
159
+ "default": "project",
160
160
  "hasDynamicHelp": false,
161
161
  "multiple": false,
162
+ "options": [
163
+ "project",
164
+ "branch",
165
+ "user"
166
+ ],
162
167
  "type": "option"
163
168
  },
164
- "devhub": {
165
- "char": "h",
166
- "description": "Also connect associated DevHub",
167
- "name": "devhub",
168
- "allowNo": false,
169
- "type": "boolean"
170
- },
171
- "scratchorg": {
172
- "char": "s",
173
- "description": "Scratch org",
174
- "name": "scratchorg",
175
- "allowNo": false,
176
- "type": "boolean"
177
- },
178
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:auth:login",
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": "Login",
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
- "auth",
215
- "login.js"
205
+ "config",
206
+ "get.js"
216
207
  ],
217
208
  "aliasPermutations": [],
218
209
  "permutations": [
219
- "hardis:auth:login",
220
- "auth:hardis:login",
221
- "auth:login:hardis",
222
- "hardis:login:auth",
223
- "login:hardis:auth",
224
- "login:auth:hardis"
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:config:get": {
218
+ "hardis:auth:login": {
228
219
  "aliases": [],
229
220
  "args": {},
230
- "description": "Returns sfdx-hardis project config for a given level",
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:project:deploy:sources:metadata"
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
- "level": {
251
- "char": "l",
252
- "description": "project,branch or user",
253
- "name": "level",
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:config:get",
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": "Deploy metadata sources to org",
293
+ "title": "Login",
294
294
  "requiresProject": false,
295
295
  "isESM": true,
296
296
  "relativePath": [
297
297
  "lib",
298
298
  "commands",
299
299
  "hardis",
300
- "config",
301
- "get.js"
300
+ "auth",
301
+ "login.js"
302
302
  ],
303
303
  "aliasPermutations": [],
304
304
  "permutations": [
305
- "hardis:config:get",
306
- "config:hardis:get",
307
- "config:get:hardis",
308
- "hardis:get:config",
309
- "get:hardis:config",
310
- "get:config:hardis"
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": {
@@ -14726,5 +14726,5 @@
14726
14726
  ]
14727
14727
  }
14728
14728
  },
14729
- "version": "5.38.2-beta202506042301.0"
14729
+ "version": "5.38.2"
14730
14730
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Swiss-army-knife Toolbox for Salesforce.\n Allows you to define a complete CD/CD Pipeline.\n Orchestrate base commands and assist users with interactive wizards",
4
4
  "author": "NicolasVuillamy @nvuillam",
5
5
  "bugs": "https://github.com/hardisgroupcom/sfdx-hardis/issues",
6
- "version": "5.38.2-beta202506042301.0",
6
+ "version": "5.38.2",
7
7
  "dependencies": {
8
8
  "@actions/github": "^6.0.1",
9
9
  "@cparra/apexdocs": "^3.12.1",