@salesforce/plugin-auth 3.1.1 → 3.2.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/README.md +23 -14
- package/lib/commands/org/login/sfdx-url.d.ts +2 -1
- package/lib/commands/org/login/sfdx-url.js +24 -6
- package/lib/commands/org/login/sfdx-url.js.map +1 -1
- package/messages/sfdxurl.store.md +11 -1
- package/oclif.lock +9 -9
- package/oclif.manifest.json +19 -5
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -107,7 +107,7 @@ EXAMPLES
|
|
|
107
107
|
$ sf org list auth
|
|
108
108
|
```
|
|
109
109
|
|
|
110
|
-
_See code: [src/commands/org/list/auth.ts](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
110
|
+
_See code: [src/commands/org/list/auth.ts](https://github.com/salesforcecli/plugin-auth/blob/3.2.0/src/commands/org/list/auth.ts)_
|
|
111
111
|
|
|
112
112
|
## `sf org login access-token`
|
|
113
113
|
|
|
@@ -160,7 +160,7 @@ FLAG DESCRIPTIONS
|
|
|
160
160
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
161
161
|
```
|
|
162
162
|
|
|
163
|
-
_See code: [src/commands/org/login/access-token.ts](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
163
|
+
_See code: [src/commands/org/login/access-token.ts](https://github.com/salesforcecli/plugin-auth/blob/3.2.0/src/commands/org/login/access-token.ts)_
|
|
164
164
|
|
|
165
165
|
## `sf org login device`
|
|
166
166
|
|
|
@@ -219,7 +219,7 @@ FLAG DESCRIPTIONS
|
|
|
219
219
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
220
220
|
```
|
|
221
221
|
|
|
222
|
-
_See code: [src/commands/org/login/device.ts](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
222
|
+
_See code: [src/commands/org/login/device.ts](https://github.com/salesforcecli/plugin-auth/blob/3.2.0/src/commands/org/login/device.ts)_
|
|
223
223
|
|
|
224
224
|
## `sf org login jwt`
|
|
225
225
|
|
|
@@ -308,27 +308,29 @@ FLAG DESCRIPTIONS
|
|
|
308
308
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
309
309
|
```
|
|
310
310
|
|
|
311
|
-
_See code: [src/commands/org/login/jwt.ts](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
311
|
+
_See code: [src/commands/org/login/jwt.ts](https://github.com/salesforcecli/plugin-auth/blob/3.2.0/src/commands/org/login/jwt.ts)_
|
|
312
312
|
|
|
313
313
|
## `sf org login sfdx-url`
|
|
314
314
|
|
|
315
|
-
Authorize an org using a Salesforce DX authorization URL stored in a file.
|
|
315
|
+
Authorize an org using a Salesforce DX authorization URL stored in a file or through standard input (stdin).
|
|
316
316
|
|
|
317
317
|
```
|
|
318
318
|
USAGE
|
|
319
|
-
$ sf org login sfdx-url -f <value> [
|
|
319
|
+
$ sf org login sfdx-url [--json] [-f <value>] [-u <value>] [-d] [-s] [-a <value>]
|
|
320
320
|
|
|
321
321
|
FLAGS
|
|
322
|
-
-a, --alias=<value>
|
|
323
|
-
-d, --set-default-dev-hub
|
|
324
|
-
-f, --sfdx-url-file=<value>
|
|
325
|
-
-s, --set-default
|
|
322
|
+
-a, --alias=<value> Alias for the org.
|
|
323
|
+
-d, --set-default-dev-hub Set the authenticated org as the default Dev Hub.
|
|
324
|
+
-f, --sfdx-url-file=<value> Path to a file that contains the Salesforce DX authorization URL.
|
|
325
|
+
-s, --set-default Set the authenticated org as the default that all org-related commands run against.
|
|
326
|
+
-u, --sfdx-url-stdin=<value> Specify '-' as this flag's value to pipe the Salesforce DX authorization URL through
|
|
327
|
+
standard input (stdin).
|
|
326
328
|
|
|
327
329
|
GLOBAL FLAGS
|
|
328
330
|
--json Format output as json.
|
|
329
331
|
|
|
330
332
|
DESCRIPTION
|
|
331
|
-
Authorize an org using a Salesforce DX authorization URL stored in a file.
|
|
333
|
+
Authorize an org using a Salesforce DX authorization URL stored in a file or through standard input (stdin).
|
|
332
334
|
|
|
333
335
|
The Salesforce DX (SFDX) authorization URL must have the format
|
|
334
336
|
"force://<clientId>:<clientSecret>:<refreshToken>@<instanceUrl>". NOTE: The SFDX authorization URL uses the "force"
|
|
@@ -352,6 +354,9 @@ DESCRIPTION
|
|
|
352
354
|
You can also create a JSON file that has a top-level property named sfdxAuthUrl whose value is the authorization URL.
|
|
353
355
|
Finally, you can create a normal text file that includes just the URL and nothing else.
|
|
354
356
|
|
|
357
|
+
Alternatively, you can pipe the SFDX authorization URL through standard input by using the --sfdx-url-stdin flag and
|
|
358
|
+
providing the '-' character as the value.
|
|
359
|
+
|
|
355
360
|
ALIASES
|
|
356
361
|
$ sf force auth sfdxurl store
|
|
357
362
|
$ sf auth sfdxurl store
|
|
@@ -364,9 +369,13 @@ EXAMPLES
|
|
|
364
369
|
Similar to previous example, but set the org as your default and give it an alias MyDefaultOrg:
|
|
365
370
|
|
|
366
371
|
$ sf org login sfdx-url --sfdx-url-file files/authFile.json --set-default --alias MyDefaultOrg
|
|
372
|
+
|
|
373
|
+
Pipe the SFDX authorization URL from stdin by specifying the '-' value.
|
|
374
|
+
|
|
375
|
+
$ echo url | sf org login sfdx-url --sfdx-url-stdin -
|
|
367
376
|
```
|
|
368
377
|
|
|
369
|
-
_See code: [src/commands/org/login/sfdx-url.ts](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
378
|
+
_See code: [src/commands/org/login/sfdx-url.ts](https://github.com/salesforcecli/plugin-auth/blob/3.2.0/src/commands/org/login/sfdx-url.ts)_
|
|
370
379
|
|
|
371
380
|
## `sf org login web`
|
|
372
381
|
|
|
@@ -451,7 +460,7 @@ FLAG DESCRIPTIONS
|
|
|
451
460
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
452
461
|
```
|
|
453
462
|
|
|
454
|
-
_See code: [src/commands/org/login/web.ts](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
463
|
+
_See code: [src/commands/org/login/web.ts](https://github.com/salesforcecli/plugin-auth/blob/3.2.0/src/commands/org/login/web.ts)_
|
|
455
464
|
|
|
456
465
|
## `sf org logout`
|
|
457
466
|
|
|
@@ -511,6 +520,6 @@ FLAG DESCRIPTIONS
|
|
|
511
520
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
512
521
|
```
|
|
513
522
|
|
|
514
|
-
_See code: [src/commands/org/logout.ts](https://github.com/salesforcecli/plugin-auth/blob/3.
|
|
523
|
+
_See code: [src/commands/org/logout.ts](https://github.com/salesforcecli/plugin-auth/blob/3.2.0/src/commands/org/logout.ts)_
|
|
515
524
|
|
|
516
525
|
<!-- commandsstop -->
|
|
@@ -7,7 +7,8 @@ export default class LoginSfdxUrl extends AuthBaseCommand<AuthFields> {
|
|
|
7
7
|
static aliases: string[];
|
|
8
8
|
static readonly deprecateAliases = true;
|
|
9
9
|
static readonly flags: {
|
|
10
|
-
'sfdx-url-file': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
|
10
|
+
'sfdx-url-file': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
|
11
|
+
'sfdx-url-stdin': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
|
11
12
|
'set-default-dev-hub': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
|
|
12
13
|
'set-default': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
|
|
13
14
|
alias: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
|
|
@@ -23,9 +23,19 @@ export default class LoginSfdxUrl extends AuthBaseCommand {
|
|
|
23
23
|
'sfdx-url-file': Flags.file({
|
|
24
24
|
char: 'f',
|
|
25
25
|
summary: messages.getMessage('flags.sfdx-url-file.summary'),
|
|
26
|
-
required:
|
|
26
|
+
required: false,
|
|
27
27
|
deprecateAliases: true,
|
|
28
28
|
aliases: ['sfdxurlfile'],
|
|
29
|
+
exactlyOne: ['sfdx-url-file', 'sfdx-url-stdin'],
|
|
30
|
+
}),
|
|
31
|
+
'sfdx-url-stdin': Flags.file({
|
|
32
|
+
char: 'u',
|
|
33
|
+
summary: messages.getMessage('flags.sfdx-url-stdin.summary'),
|
|
34
|
+
required: false,
|
|
35
|
+
deprecateAliases: true,
|
|
36
|
+
aliases: ['sfdxurlstdin'],
|
|
37
|
+
allowStdin: 'only',
|
|
38
|
+
exactlyOne: ['sfdx-url-file', 'sfdx-url-stdin'],
|
|
29
39
|
}),
|
|
30
40
|
'set-default-dev-hub': Flags.boolean({
|
|
31
41
|
char: 'd',
|
|
@@ -60,11 +70,19 @@ export default class LoginSfdxUrl extends AuthBaseCommand {
|
|
|
60
70
|
if (await this.shouldExitCommand(flags['no-prompt']))
|
|
61
71
|
return {};
|
|
62
72
|
const authFile = flags['sfdx-url-file'];
|
|
63
|
-
const
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
73
|
+
const authStdin = flags['sfdx-url-stdin'];
|
|
74
|
+
let sfdxAuthUrl;
|
|
75
|
+
if (authFile) {
|
|
76
|
+
sfdxAuthUrl = authFile.endsWith('.json') ? await getUrlFromJson(authFile) : await fs.readFile(authFile, 'utf8');
|
|
77
|
+
if (!sfdxAuthUrl) {
|
|
78
|
+
throw new Error(`Error getting the auth URL from file ${authFile}. Please ensure it meets the description shown in the documentation for this command.`);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
else if (authStdin) {
|
|
82
|
+
sfdxAuthUrl = authStdin;
|
|
83
|
+
}
|
|
84
|
+
else {
|
|
85
|
+
throw new Error('SFDX Auth URL not found.');
|
|
68
86
|
}
|
|
69
87
|
const oauth2Options = AuthInfo.parseSfdxAuthUrl(sfdxAuthUrl);
|
|
70
88
|
const authInfo = await AuthInfo.create({ oauth2Options });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sfdx-url.js","sourceRoot":"","sources":["../../../../src/commands/org/login/sfdx-url.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAClC,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAc,QAAQ,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAElE,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAE9D,QAAQ,CAAC,kCAAkC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC7D,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,yBAAyB,EAAE,eAAe,CAAC,CAAC;AACnF,MAAM,cAAc,GAAG,QAAQ,CAAC,YAAY,CAAC,yBAAyB,EAAE,UAAU,CAAC,CAAC;AAEpF,MAAM,eAAe,GAAG,gEAAgE,CAAC;AAMzF,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,eAA2B;IAC5D,MAAM,CAAU,OAAO,GAAG,QAAQ,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;IACzD,MAAM,CAAU,WAAW,GAAG,QAAQ,CAAC,UAAU,CAAC,aAAa,EAAE,CAAC,eAAe,CAAC,CAAC,CAAC;IACpF,MAAM,CAAU,QAAQ,GAAG,QAAQ,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAC5D,MAAM,CAAC,OAAO,GAAG,CAAC,0BAA0B,EAAE,oBAAoB,CAAC,CAAC;IACpE,MAAM,CAAU,gBAAgB,GAAG,IAAI,CAAC;IAExC,MAAM,CAAU,KAAK,GAAG;QAC7B,eAAe,EAAE,KAAK,CAAC,IAAI,CAAC;YAC1B,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,6BAA6B,CAAC;YAC3D,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"sfdx-url.js","sourceRoot":"","sources":["../../../../src/commands/org/login/sfdx-url.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAClC,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AAC9D,OAAO,EAAc,QAAQ,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAElE,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAE9D,QAAQ,CAAC,kCAAkC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC7D,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,yBAAyB,EAAE,eAAe,CAAC,CAAC;AACnF,MAAM,cAAc,GAAG,QAAQ,CAAC,YAAY,CAAC,yBAAyB,EAAE,UAAU,CAAC,CAAC;AAEpF,MAAM,eAAe,GAAG,gEAAgE,CAAC;AAMzF,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,eAA2B;IAC5D,MAAM,CAAU,OAAO,GAAG,QAAQ,CAAC,UAAU,CAAC,SAAS,CAAC,CAAC;IACzD,MAAM,CAAU,WAAW,GAAG,QAAQ,CAAC,UAAU,CAAC,aAAa,EAAE,CAAC,eAAe,CAAC,CAAC,CAAC;IACpF,MAAM,CAAU,QAAQ,GAAG,QAAQ,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAC5D,MAAM,CAAC,OAAO,GAAG,CAAC,0BAA0B,EAAE,oBAAoB,CAAC,CAAC;IACpE,MAAM,CAAU,gBAAgB,GAAG,IAAI,CAAC;IAExC,MAAM,CAAU,KAAK,GAAG;QAC7B,eAAe,EAAE,KAAK,CAAC,IAAI,CAAC;YAC1B,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,6BAA6B,CAAC;YAC3D,QAAQ,EAAE,KAAK;YACf,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,CAAC,aAAa,CAAC;YACxB,UAAU,EAAE,CAAC,eAAe,EAAE,gBAAgB,CAAC;SAChD,CAAC;QACF,gBAAgB,EAAE,KAAK,CAAC,IAAI,CAAC;YAC3B,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,8BAA8B,CAAC;YAC5D,QAAQ,EAAE,KAAK;YACf,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,CAAC,cAAc,CAAC;YACzB,UAAU,EAAE,MAAM;YAClB,UAAU,EAAE,CAAC,eAAe,EAAE,gBAAgB,CAAC;SAChD,CAAC;QACF,qBAAqB,EAAE,KAAK,CAAC,OAAO,CAAC;YACnC,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,cAAc,CAAC,UAAU,CAAC,mCAAmC,CAAC;YACvE,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,CAAC,kBAAkB,EAAE,0BAA0B,CAAC;SAC1D,CAAC;QACF,aAAa,EAAE,KAAK,CAAC,OAAO,CAAC;YAC3B,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,cAAc,CAAC,UAAU,CAAC,2BAA2B,CAAC;YAC/D,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,CAAC,oBAAoB,CAAC;SAChC,CAAC;QACF,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC;YAClB,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,cAAc,CAAC,UAAU,CAAC,qBAAqB,CAAC;YACzD,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,CAAC,UAAU,CAAC;SACtB,CAAC;QACF,WAAW,EAAE,KAAK,CAAC,OAAO,CAAC;YACzB,IAAI,EAAE,GAAG;YACT,OAAO,EAAE,cAAc,CAAC,UAAU,CAAC,yBAAyB,CAAC;YAC7D,QAAQ,EAAE,KAAK;YACf,MAAM,EAAE,IAAI;YACZ,gBAAgB,EAAE,IAAI;YACtB,OAAO,EAAE,CAAC,UAAU,CAAC;SACtB,CAAC;QACF,QAAQ;KACT,CAAC;IAEK,KAAK,CAAC,GAAG;QACd,MAAM,EAAE,KAAK,EAAE,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;QACjD,IAAI,MAAM,IAAI,CAAC,iBAAiB,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;YAAE,OAAO,EAAE,CAAC;QAEhE,MAAM,QAAQ,GAAG,KAAK,CAAC,eAAe,CAAC,CAAC;QACxC,MAAM,SAAS,GAAG,KAAK,CAAC,gBAAgB,CAAC,CAAC;QAC1C,IAAI,WAAmB,CAAC;QAExB,IAAI,QAAQ,EAAE,CAAC;YACb,WAAW,GAAG,QAAQ,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;YAEhH,IAAI,CAAC,WAAW,EAAE,CAAC;gBACjB,MAAM,IAAI,KAAK,CACb,wCAAwC,QAAQ,uFAAuF,CACxI,CAAC;YACJ,CAAC;QACH,CAAC;aAAM,IAAI,SAAS,EAAE,CAAC;YACrB,WAAW,GAAG,SAAS,CAAC;QAC1B,CAAC;aAAM,CAAC;YACN,MAAM,IAAI,KAAK,CAAC,0BAA0B,CAAC,CAAC;QAC9C,CAAC;QAED,MAAM,aAAa,GAAG,QAAQ,CAAC,gBAAgB,CAAC,WAAW,CAAC,CAAC;QAE7D,MAAM,QAAQ,GAAG,MAAM,QAAQ,CAAC,MAAM,CAAC,EAAE,aAAa,EAAE,CAAC,CAAC;QAC1D,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;QAEtB,MAAM,QAAQ,CAAC,6BAA6B,CAAC;YAC3C,KAAK,EAAE,KAAK,CAAC,KAAK;YAClB,UAAU,EAAE,KAAK,CAAC,aAAa,CAAC;YAChC,gBAAgB,EAAE,KAAK,CAAC,qBAAqB,CAAC;SAC/C,CAAC,CAAC;QAEH,uDAAuD;QACvD,MAAM,MAAM,GAAG,EAAE,YAAY,EAAE,EAAE,EAAE,GAAG,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC;QACjE,MAAM,QAAQ,CAAC,2BAA2B,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;QAE7D,MAAM,UAAU,GAAG,cAAc,CAAC,UAAU,CAAC,yBAAyB,EAAE,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;QACzG,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;QAC5B,OAAO,MAAM,CAAC;IAChB,CAAC;;AAGH,MAAM,cAAc,GAAG,KAAK,EAAE,QAAgB,EAAmB,EAAE;IACjE,MAAM,YAAY,GAAG,MAAM,EAAE,CAAC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;IACzD,MAAM,YAAY,GAAG,SAAS,CAAC,YAAY,CAAa,CAAC;IACzD,OAAO,YAAY,CAAC,MAAM,EAAE,WAAW,IAAI,YAAY,CAAC,WAAW,CAAC;AACtE,CAAC,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# summary
|
|
2
2
|
|
|
3
|
-
Authorize an org using a Salesforce DX authorization URL stored in a file.
|
|
3
|
+
Authorize an org using a Salesforce DX authorization URL stored in a file or through standard input (stdin).
|
|
4
4
|
|
|
5
5
|
# description
|
|
6
6
|
|
|
@@ -18,10 +18,16 @@ NOTE: The "<%= config.bin %> org display --verbose" command displays the refresh
|
|
|
18
18
|
|
|
19
19
|
You can also create a JSON file that has a top-level property named sfdxAuthUrl whose value is the authorization URL. Finally, you can create a normal text file that includes just the URL and nothing else.
|
|
20
20
|
|
|
21
|
+
Alternatively, you can pipe the SFDX authorization URL through standard input by using the --sfdx-url-stdin flag and providing the '-' character as the value.
|
|
22
|
+
|
|
21
23
|
# flags.sfdx-url-file.summary
|
|
22
24
|
|
|
23
25
|
Path to a file that contains the Salesforce DX authorization URL.
|
|
24
26
|
|
|
27
|
+
# flags.sfdx-url-stdin.summary
|
|
28
|
+
|
|
29
|
+
Specify '-' as this flag's value to pipe the Salesforce DX authorization URL through standard input (stdin).
|
|
30
|
+
|
|
25
31
|
# examples
|
|
26
32
|
|
|
27
33
|
- Authorize an org using the SFDX authorization URL in the files/authFile.json file:
|
|
@@ -31,3 +37,7 @@ Path to a file that contains the Salesforce DX authorization URL.
|
|
|
31
37
|
- Similar to previous example, but set the org as your default and give it an alias MyDefaultOrg:
|
|
32
38
|
|
|
33
39
|
<%= config.bin %> <%= command.id %> --sfdx-url-file files/authFile.json --set-default --alias MyDefaultOrg
|
|
40
|
+
|
|
41
|
+
- Pipe the SFDX authorization URL from stdin by specifying the '-' value.
|
|
42
|
+
|
|
43
|
+
<%= "\n $ echo url | " + config.bin %> <%= command.id %> --sfdx-url-stdin -
|
package/oclif.lock
CHANGED
|
@@ -934,10 +934,10 @@
|
|
|
934
934
|
strip-ansi "6.0.1"
|
|
935
935
|
ts-retry-promise "^0.7.1"
|
|
936
936
|
|
|
937
|
-
"@salesforce/core@^6.4.0", "@salesforce/core@^6.4.1", "@salesforce/core@^6.4.2":
|
|
938
|
-
version "6.4.
|
|
939
|
-
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.4.
|
|
940
|
-
integrity sha512-
|
|
937
|
+
"@salesforce/core@^6.4.0", "@salesforce/core@^6.4.1", "@salesforce/core@^6.4.2", "@salesforce/core@^6.4.4":
|
|
938
|
+
version "6.4.4"
|
|
939
|
+
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-6.4.4.tgz#e96d2ef9cd05c3894578374d1054af80bfdca119"
|
|
940
|
+
integrity sha512-VegX3ChnJUOOztSP05QPiXCTOSioShB22NyhYjL7vVhf6yqSOH0VT2oQ3ywrMYbYCbjLSdsmFdTVLiQIFpK57g==
|
|
941
941
|
dependencies:
|
|
942
942
|
"@salesforce/kit" "^3.0.15"
|
|
943
943
|
"@salesforce/schemas" "^1.6.1"
|
|
@@ -953,7 +953,7 @@
|
|
|
953
953
|
jszip "3.10.1"
|
|
954
954
|
pino "^8.16.2"
|
|
955
955
|
pino-abstract-transport "^1.1.0"
|
|
956
|
-
pino-pretty "^10.3.
|
|
956
|
+
pino-pretty "^10.3.1"
|
|
957
957
|
proper-lockfile "^4.1.2"
|
|
958
958
|
semver "^7.5.4"
|
|
959
959
|
ts-retry-promise "^0.7.1"
|
|
@@ -6076,10 +6076,10 @@ pino-abstract-transport@^1.0.0, pino-abstract-transport@^1.1.0, pino-abstract-tr
|
|
|
6076
6076
|
readable-stream "^4.0.0"
|
|
6077
6077
|
split2 "^4.0.0"
|
|
6078
6078
|
|
|
6079
|
-
pino-pretty@^10.3.
|
|
6080
|
-
version "10.3.
|
|
6081
|
-
resolved "https://registry.yarnpkg.com/pino-pretty/-/pino-pretty-10.3.
|
|
6082
|
-
integrity sha512-
|
|
6079
|
+
pino-pretty@^10.3.1:
|
|
6080
|
+
version "10.3.1"
|
|
6081
|
+
resolved "https://registry.yarnpkg.com/pino-pretty/-/pino-pretty-10.3.1.tgz#e3285a5265211ac6c7cd5988f9e65bf3371a0ca9"
|
|
6082
|
+
integrity sha512-az8JbIYeN/1iLj2t0jR9DV48/LQ3RC6hZPpapKPkb84Q+yTidMCpgWxIT3N0flnBDilyBQ1luWNpOeJptjdp/g==
|
|
6083
6083
|
dependencies:
|
|
6084
6084
|
colorette "^2.0.7"
|
|
6085
6085
|
dateformat "^4.6.3"
|
package/oclif.manifest.json
CHANGED
|
@@ -676,10 +676,11 @@
|
|
|
676
676
|
],
|
|
677
677
|
"args": {},
|
|
678
678
|
"deprecateAliases": true,
|
|
679
|
-
"description": "The Salesforce DX (SFDX) authorization URL must have the format \"force://<clientId>:<clientSecret>:<refreshToken>@<instanceUrl>\". NOTE: The SFDX authorization URL uses the \"force\" protocol, and not \"http\" or \"https\". Also, the \"instanceUrl\" inside the SFDX authorization URL doesn't include the protocol (\"https://\").\n\nYou have three options when creating the authorization file. The easiest option is to redirect the output of the \"<%= config.bin %> org display --verbose --json\" command into a file. For example, using an org with alias my-org that you've already authorized:\n\n $ <%= config.bin %> org display --target-org my-org --verbose --json > authFile.json\n\nThe resulting JSON file contains the URL in the \"sfdxAuthUrl\" property of the \"result\" object. You can then reference the file when running this command:\n\n $ <%= config.bin %> <%= command.id %> --sfdx-url-file authFile.json\n\nNOTE: The \"<%= config.bin %> org display --verbose\" command displays the refresh token only for orgs authorized with the web server flow, and not the JWT bearer flow.\n\nYou can also create a JSON file that has a top-level property named sfdxAuthUrl whose value is the authorization URL. Finally, you can create a normal text file that includes just the URL and nothing else.",
|
|
679
|
+
"description": "The Salesforce DX (SFDX) authorization URL must have the format \"force://<clientId>:<clientSecret>:<refreshToken>@<instanceUrl>\". NOTE: The SFDX authorization URL uses the \"force\" protocol, and not \"http\" or \"https\". Also, the \"instanceUrl\" inside the SFDX authorization URL doesn't include the protocol (\"https://\").\n\nYou have three options when creating the authorization file. The easiest option is to redirect the output of the \"<%= config.bin %> org display --verbose --json\" command into a file. For example, using an org with alias my-org that you've already authorized:\n\n $ <%= config.bin %> org display --target-org my-org --verbose --json > authFile.json\n\nThe resulting JSON file contains the URL in the \"sfdxAuthUrl\" property of the \"result\" object. You can then reference the file when running this command:\n\n $ <%= config.bin %> <%= command.id %> --sfdx-url-file authFile.json\n\nNOTE: The \"<%= config.bin %> org display --verbose\" command displays the refresh token only for orgs authorized with the web server flow, and not the JWT bearer flow.\n\nYou can also create a JSON file that has a top-level property named sfdxAuthUrl whose value is the authorization URL. Finally, you can create a normal text file that includes just the URL and nothing else.\n\nAlternatively, you can pipe the SFDX authorization URL through standard input by using the --sfdx-url-stdin flag and providing the '-' character as the value.",
|
|
680
680
|
"examples": [
|
|
681
681
|
"Authorize an org using the SFDX authorization URL in the files/authFile.json file:\n<%= config.bin %> <%= command.id %> --sfdx-url-file files/authFile.json",
|
|
682
|
-
"Similar to previous example, but set the org as your default and give it an alias MyDefaultOrg:\n<%= config.bin %> <%= command.id %> --sfdx-url-file files/authFile.json --set-default --alias MyDefaultOrg"
|
|
682
|
+
"Similar to previous example, but set the org as your default and give it an alias MyDefaultOrg:\n<%= config.bin %> <%= command.id %> --sfdx-url-file files/authFile.json --set-default --alias MyDefaultOrg",
|
|
683
|
+
"Pipe the SFDX authorization URL from stdin by specifying the '-' value.\n<%= \"\\n $ echo url | \" + config.bin %> <%= command.id %> --sfdx-url-stdin -"
|
|
683
684
|
],
|
|
684
685
|
"flags": {
|
|
685
686
|
"json": {
|
|
@@ -696,12 +697,25 @@
|
|
|
696
697
|
"char": "f",
|
|
697
698
|
"deprecateAliases": true,
|
|
698
699
|
"name": "sfdx-url-file",
|
|
699
|
-
"required":
|
|
700
|
+
"required": false,
|
|
700
701
|
"summary": "Path to a file that contains the Salesforce DX authorization URL.",
|
|
701
702
|
"hasDynamicHelp": false,
|
|
702
703
|
"multiple": false,
|
|
703
704
|
"type": "option"
|
|
704
705
|
},
|
|
706
|
+
"sfdx-url-stdin": {
|
|
707
|
+
"aliases": [
|
|
708
|
+
"sfdxurlstdin"
|
|
709
|
+
],
|
|
710
|
+
"char": "u",
|
|
711
|
+
"deprecateAliases": true,
|
|
712
|
+
"name": "sfdx-url-stdin",
|
|
713
|
+
"required": false,
|
|
714
|
+
"summary": "Specify '-' as this flag's value to pipe the Salesforce DX authorization URL through standard input (stdin).",
|
|
715
|
+
"hasDynamicHelp": false,
|
|
716
|
+
"multiple": false,
|
|
717
|
+
"type": "option"
|
|
718
|
+
},
|
|
705
719
|
"set-default-dev-hub": {
|
|
706
720
|
"aliases": [
|
|
707
721
|
"setdefaultdevhub",
|
|
@@ -768,7 +782,7 @@
|
|
|
768
782
|
"pluginName": "@salesforce/plugin-auth",
|
|
769
783
|
"pluginType": "core",
|
|
770
784
|
"strict": true,
|
|
771
|
-
"summary": "Authorize an org using a Salesforce DX authorization URL stored in a file.",
|
|
785
|
+
"summary": "Authorize an org using a Salesforce DX authorization URL stored in a file or through standard input (stdin).",
|
|
772
786
|
"isESM": true,
|
|
773
787
|
"relativePath": [
|
|
774
788
|
"lib",
|
|
@@ -1010,5 +1024,5 @@
|
|
|
1010
1024
|
]
|
|
1011
1025
|
}
|
|
1012
1026
|
},
|
|
1013
|
-
"version": "3.
|
|
1027
|
+
"version": "3.2.0"
|
|
1014
1028
|
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-auth",
|
|
3
3
|
"description": "plugin for sf auth commands",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.2.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@oclif/core": "^3.16.0",
|
|
9
|
-
"@salesforce/core": "^6.4.
|
|
9
|
+
"@salesforce/core": "^6.4.4",
|
|
10
10
|
"@salesforce/kit": "^3.0.15",
|
|
11
11
|
"@salesforce/sf-plugins-core": "^5.0.13",
|
|
12
12
|
"@salesforce/ts-types": "^2.0.9",
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
"exports": "./lib/index.js",
|
|
232
232
|
"type": "module",
|
|
233
233
|
"sfdx": {
|
|
234
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.
|
|
235
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.
|
|
234
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.2.0.crt",
|
|
235
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.2.0.sig"
|
|
236
236
|
}
|
|
237
237
|
}
|