@salesforce/plugin-auth 3.7.13 → 3.7.15

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.7.13/src/commands/org/list/auth.ts)_
111
+ _See code: [src/commands/org/list/auth.ts](https://github.com/salesforcecli/plugin-auth/blob/3.7.15/src/commands/org/list/auth.ts)_
112
112
 
113
113
  ## `sf org login access-token`
114
114
 
@@ -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.7.13/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.7.15/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.7.13/src/commands/org/login/device.ts)_
225
+ _See code: [src/commands/org/login/device.ts](https://github.com/salesforcecli/plugin-auth/blob/3.7.15/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.7.13/src/commands/org/login/jwt.ts)_
316
+ _See code: [src/commands/org/login/jwt.ts](https://github.com/salesforcecli/plugin-auth/blob/3.7.15/src/commands/org/login/jwt.ts)_
317
317
 
318
318
  ## `sf org login sfdx-url`
319
319
 
@@ -383,7 +383,7 @@ EXAMPLES
383
383
  $ echo url | sf org login sfdx-url --sfdx-url-stdin
384
384
  ```
385
385
 
386
- _See code: [src/commands/org/login/sfdx-url.ts](https://github.com/salesforcecli/plugin-auth/blob/3.7.13/src/commands/org/login/sfdx-url.ts)_
386
+ _See code: [src/commands/org/login/sfdx-url.ts](https://github.com/salesforcecli/plugin-auth/blob/3.7.15/src/commands/org/login/sfdx-url.ts)_
387
387
 
388
388
  ## `sf org login web`
389
389
 
@@ -488,7 +488,7 @@ FLAG DESCRIPTIONS
488
488
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
489
489
  ```
490
490
 
491
- _See code: [src/commands/org/login/web.ts](https://github.com/salesforcecli/plugin-auth/blob/3.7.13/src/commands/org/login/web.ts)_
491
+ _See code: [src/commands/org/login/web.ts](https://github.com/salesforcecli/plugin-auth/blob/3.7.15/src/commands/org/login/web.ts)_
492
492
 
493
493
  ## `sf org logout`
494
494
 
@@ -554,6 +554,6 @@ FLAG DESCRIPTIONS
554
554
  All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
555
555
  ```
556
556
 
557
- _See code: [src/commands/org/logout.ts](https://github.com/salesforcecli/plugin-auth/blob/3.7.13/src/commands/org/logout.ts)_
557
+ _See code: [src/commands/org/logout.ts](https://github.com/salesforcecli/plugin-auth/blob/3.7.15/src/commands/org/logout.ts)_
558
558
 
559
559
  <!-- commandsstop -->
@@ -120,6 +120,80 @@
120
120
  "logout:org"
121
121
  ]
122
122
  },
123
+ "org:list:auth": {
124
+ "aliases": [
125
+ "force:auth:list",
126
+ "auth:list"
127
+ ],
128
+ "args": {},
129
+ "deprecateAliases": true,
130
+ "description": "This command uses local authorization information that Salesforce CLI caches when you create a scratch org or log into an org. The command doesn't actually connect to the orgs to verify that they're still active. As a result, this command executes very quickly. If you want to view live information about your authorized orgs, such as their connection status, use the \"org list\" command.",
131
+ "examples": [
132
+ "List local authorization information about your orgs:\n<%= config.bin %> <%= command.id %>"
133
+ ],
134
+ "flags": {
135
+ "json": {
136
+ "description": "Format output as json.",
137
+ "helpGroup": "GLOBAL",
138
+ "name": "json",
139
+ "allowNo": false,
140
+ "type": "boolean"
141
+ },
142
+ "flags-dir": {
143
+ "helpGroup": "GLOBAL",
144
+ "name": "flags-dir",
145
+ "summary": "Import flag values from a directory.",
146
+ "hasDynamicHelp": false,
147
+ "multiple": false,
148
+ "type": "option"
149
+ },
150
+ "loglevel": {
151
+ "deprecated": {
152
+ "message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
153
+ },
154
+ "hidden": true,
155
+ "name": "loglevel",
156
+ "hasDynamicHelp": false,
157
+ "multiple": false,
158
+ "type": "option"
159
+ }
160
+ },
161
+ "hasDynamicHelp": false,
162
+ "hiddenAliases": [],
163
+ "id": "org:list:auth",
164
+ "pluginAlias": "@salesforce/plugin-auth",
165
+ "pluginName": "@salesforce/plugin-auth",
166
+ "pluginType": "core",
167
+ "strict": true,
168
+ "summary": "List authorization information about the orgs you created or logged into.",
169
+ "enableJsonFlag": true,
170
+ "isESM": true,
171
+ "relativePath": [
172
+ "lib",
173
+ "commands",
174
+ "org",
175
+ "list",
176
+ "auth.js"
177
+ ],
178
+ "aliasPermutations": [
179
+ "force:auth:list",
180
+ "auth:force:list",
181
+ "auth:list:force",
182
+ "force:list:auth",
183
+ "list:force:auth",
184
+ "list:auth:force",
185
+ "auth:list",
186
+ "list:auth"
187
+ ],
188
+ "permutations": [
189
+ "org:list:auth",
190
+ "list:org:auth",
191
+ "list:auth:org",
192
+ "org:auth:list",
193
+ "auth:org:list",
194
+ "auth:list:org"
195
+ ]
196
+ },
123
197
  "org:login:access-token": {
124
198
  "aliases": [
125
199
  "force:auth:accesstoken:store",
@@ -1026,81 +1100,7 @@
1026
1100
  "web:org:login",
1027
1101
  "web:login:org"
1028
1102
  ]
1029
- },
1030
- "org:list:auth": {
1031
- "aliases": [
1032
- "force:auth:list",
1033
- "auth:list"
1034
- ],
1035
- "args": {},
1036
- "deprecateAliases": true,
1037
- "description": "This command uses local authorization information that Salesforce CLI caches when you create a scratch org or log into an org. The command doesn't actually connect to the orgs to verify that they're still active. As a result, this command executes very quickly. If you want to view live information about your authorized orgs, such as their connection status, use the \"org list\" command.",
1038
- "examples": [
1039
- "List local authorization information about your orgs:\n<%= config.bin %> <%= command.id %>"
1040
- ],
1041
- "flags": {
1042
- "json": {
1043
- "description": "Format output as json.",
1044
- "helpGroup": "GLOBAL",
1045
- "name": "json",
1046
- "allowNo": false,
1047
- "type": "boolean"
1048
- },
1049
- "flags-dir": {
1050
- "helpGroup": "GLOBAL",
1051
- "name": "flags-dir",
1052
- "summary": "Import flag values from a directory.",
1053
- "hasDynamicHelp": false,
1054
- "multiple": false,
1055
- "type": "option"
1056
- },
1057
- "loglevel": {
1058
- "deprecated": {
1059
- "message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
1060
- },
1061
- "hidden": true,
1062
- "name": "loglevel",
1063
- "hasDynamicHelp": false,
1064
- "multiple": false,
1065
- "type": "option"
1066
- }
1067
- },
1068
- "hasDynamicHelp": false,
1069
- "hiddenAliases": [],
1070
- "id": "org:list:auth",
1071
- "pluginAlias": "@salesforce/plugin-auth",
1072
- "pluginName": "@salesforce/plugin-auth",
1073
- "pluginType": "core",
1074
- "strict": true,
1075
- "summary": "List authorization information about the orgs you created or logged into.",
1076
- "enableJsonFlag": true,
1077
- "isESM": true,
1078
- "relativePath": [
1079
- "lib",
1080
- "commands",
1081
- "org",
1082
- "list",
1083
- "auth.js"
1084
- ],
1085
- "aliasPermutations": [
1086
- "force:auth:list",
1087
- "auth:force:list",
1088
- "auth:list:force",
1089
- "force:list:auth",
1090
- "list:force:auth",
1091
- "list:auth:force",
1092
- "auth:list",
1093
- "list:auth"
1094
- ],
1095
- "permutations": [
1096
- "org:list:auth",
1097
- "list:org:auth",
1098
- "list:auth:org",
1099
- "org:auth:list",
1100
- "auth:org:list",
1101
- "auth:list:org"
1102
- ]
1103
1103
  }
1104
1104
  },
1105
- "version": "3.7.13"
1105
+ "version": "3.7.15"
1106
1106
  }
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-auth",
3
3
  "description": "plugin for sf auth commands",
4
- "version": "3.7.13",
4
+ "version": "3.7.15",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
8
8
  "@inquirer/checkbox": "^2.5.0",
9
9
  "@inquirer/select": "^2.5.0",
10
10
  "@oclif/core": "^4",
11
- "@salesforce/core": "^8.18.1",
11
+ "@salesforce/core": "^8.18.5",
12
12
  "@salesforce/kit": "^3.2.3",
13
- "@salesforce/plugin-info": "^3.4.74",
13
+ "@salesforce/plugin-info": "^3.4.75",
14
14
  "@salesforce/sf-plugins-core": "^12.2.3",
15
15
  "@salesforce/ts-types": "^2.0.11",
16
16
  "open": "^10.2.0"
@@ -234,7 +234,7 @@
234
234
  "exports": "./lib/index.js",
235
235
  "type": "module",
236
236
  "sfdx": {
237
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.7.13.crt",
238
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.7.13.sig"
237
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.7.15.crt",
238
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.7.15.sig"
239
239
  }
240
240
  }