@salesforce/plugin-auth 3.6.36 → 3.6.37

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 CHANGED
@@ -108,7 +108,7 @@ EXAMPLES
108
108
  $ sf org list auth
109
109
  ```
110
110
 
111
- _See code: [src/commands/org/list/auth.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.36/src/commands/org/list/auth.ts)_
111
+ _See code: [src/commands/org/list/auth.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.37/src/commands/org/list/auth.ts)_
112
112
 
113
113
  ## `sf org login access-token`
114
114
 
@@ -135,7 +135,7 @@ DESCRIPTION
135
135
  By default, the command runs interactively and asks you for the access token. If you previously authorized the org,
136
136
  the command prompts whether you want to overwrite the local file. Specify --no-prompt to not be prompted.
137
137
 
138
- To use the command in a CI/CD script, set the SFDX_ACCESS_TOKEN environment variable to the access token. Then run the
138
+ To use the command in a CI/CD script, set the SF_ACCESS_TOKEN environment variable to the access token. Then run the
139
139
  command with the --no-prompt parameter.
140
140
 
141
141
  ALIASES
@@ -162,7 +162,7 @@ FLAG DESCRIPTIONS
162
162
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
163
163
  ```
164
164
 
165
- _See code: [src/commands/org/login/access-token.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.36/src/commands/org/login/access-token.ts)_
165
+ _See code: [src/commands/org/login/access-token.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.37/src/commands/org/login/access-token.ts)_
166
166
 
167
167
  ## `sf org login device`
168
168
 
@@ -222,7 +222,7 @@ FLAG DESCRIPTIONS
222
222
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
223
223
  ```
224
224
 
225
- _See code: [src/commands/org/login/device.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.36/src/commands/org/login/device.ts)_
225
+ _See code: [src/commands/org/login/device.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.37/src/commands/org/login/device.ts)_
226
226
 
227
227
  ## `sf org login jwt`
228
228
 
@@ -313,7 +313,7 @@ FLAG DESCRIPTIONS
313
313
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
314
314
  ```
315
315
 
316
- _See code: [src/commands/org/login/jwt.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.36/src/commands/org/login/jwt.ts)_
316
+ _See code: [src/commands/org/login/jwt.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.37/src/commands/org/login/jwt.ts)_
317
317
 
318
318
  ## `sf org login sfdx-url`
319
319
 
@@ -378,7 +378,7 @@ EXAMPLES
378
378
  $ echo url | sf org login sfdx-url --sfdx-url-stdin
379
379
  ```
380
380
 
381
- _See code: [src/commands/org/login/sfdx-url.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.36/src/commands/org/login/sfdx-url.ts)_
381
+ _See code: [src/commands/org/login/sfdx-url.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.37/src/commands/org/login/sfdx-url.ts)_
382
382
 
383
383
  ## `sf org login web`
384
384
 
@@ -465,7 +465,7 @@ FLAG DESCRIPTIONS
465
465
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
466
466
  ```
467
467
 
468
- _See code: [src/commands/org/login/web.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.36/src/commands/org/login/web.ts)_
468
+ _See code: [src/commands/org/login/web.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.37/src/commands/org/login/web.ts)_
469
469
 
470
470
  ## `sf org logout`
471
471
 
@@ -526,6 +526,6 @@ FLAG DESCRIPTIONS
526
526
  All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
527
527
  ```
528
528
 
529
- _See code: [src/commands/org/logout.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.36/src/commands/org/logout.ts)_
529
+ _See code: [src/commands/org/logout.ts](https://github.com/salesforcecli/plugin-auth/blob/3.6.37/src/commands/org/logout.ts)_
530
530
 
531
531
  <!-- commandsstop -->
@@ -6,7 +6,7 @@ Authorize an org using an existing Salesforce access token.
6
6
 
7
7
  By default, the command runs interactively and asks you for the access token. If you previously authorized the org, the command prompts whether you want to overwrite the local file. Specify --no-prompt to not be prompted.
8
8
 
9
- To use the command in a CI/CD script, set the SFDX_ACCESS_TOKEN environment variable to the access token. Then run the command with the --no-prompt parameter.
9
+ To use the command in a CI/CD script, set the SF_ACCESS_TOKEN environment variable to the access token. Then run the command with the --no-prompt parameter.
10
10
 
11
11
  # examples
12
12
 
@@ -190,7 +190,7 @@
190
190
  ],
191
191
  "args": {},
192
192
  "deprecateAliases": true,
193
- "description": "By default, the command runs interactively and asks you for the access token. If you previously authorized the org, the command prompts whether you want to overwrite the local file. Specify --no-prompt to not be prompted.\n\nTo use the command in a CI/CD script, set the SFDX_ACCESS_TOKEN environment variable to the access token. Then run the command with the --no-prompt parameter.",
193
+ "description": "By default, the command runs interactively and asks you for the access token. If you previously authorized the org, the command prompts whether you want to overwrite the local file. Specify --no-prompt to not be prompted.\n\nTo use the command in a CI/CD script, set the SF_ACCESS_TOKEN environment variable to the access token. Then run the command with the --no-prompt parameter.",
194
194
  "examples": [
195
195
  "Authorize an org on https://mycompany.my.salesforce.com; the command prompts you for the access token:\n<%= config.bin %> <%= command.id %> --instance-url https://mycompany.my.salesforce.com",
196
196
  "Authorize the org without being prompted; you must have previously set the SF_ACCESS_TOKEN environment variable to the access token:\n<%= config.bin %> <%= command.id %> --instance-url https://dev-hub.my.salesforce.com --no-prompt"
@@ -1063,5 +1063,5 @@
1063
1063
  ]
1064
1064
  }
1065
1065
  },
1066
- "version": "3.6.36"
1066
+ "version": "3.6.37"
1067
1067
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-auth",
3
3
  "description": "plugin for sf auth commands",
4
- "version": "3.6.36",
4
+ "version": "3.6.37",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
@@ -21,7 +21,7 @@
21
21
  "@salesforce/dev-scripts": "^10.2.2",
22
22
  "@salesforce/plugin-command-reference": "^3.1.6",
23
23
  "@salesforce/ts-sinon": "^1.4.22",
24
- "eslint-plugin-sf-plugin": "^1.18.8",
24
+ "eslint-plugin-sf-plugin": "^1.18.11",
25
25
  "oclif": "^4.13.12",
26
26
  "ts-node": "^10.9.2",
27
27
  "typescript": "^5.5.3"
@@ -233,7 +233,7 @@
233
233
  "exports": "./lib/index.js",
234
234
  "type": "module",
235
235
  "sfdx": {
236
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.6.36.crt",
237
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.6.36.sig"
236
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.6.37.crt",
237
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.6.37.sig"
238
238
  }
239
239
  }