@salesforce/plugin-auth 3.9.9 → 3.9.14
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 +6 -6
- package/messages/web.login.md +1 -1
- package/oclif.manifest.json +75 -75
- package/package.json +10 -10
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.9.
|
|
110
|
+
_See code: [src/commands/org/list/auth.ts](https://github.com/salesforcecli/plugin-auth/blob/3.9.14/src/commands/org/list/auth.ts)_
|
|
111
111
|
|
|
112
112
|
## `sf org login access-token`
|
|
113
113
|
|
|
@@ -161,7 +161,7 @@ FLAG DESCRIPTIONS
|
|
|
161
161
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
162
162
|
```
|
|
163
163
|
|
|
164
|
-
_See code: [src/commands/org/login/access-token.ts](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
164
|
+
_See code: [src/commands/org/login/access-token.ts](https://github.com/salesforcecli/plugin-auth/blob/3.9.14/src/commands/org/login/access-token.ts)_
|
|
165
165
|
|
|
166
166
|
## `sf org login jwt`
|
|
167
167
|
|
|
@@ -252,7 +252,7 @@ FLAG DESCRIPTIONS
|
|
|
252
252
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
253
253
|
```
|
|
254
254
|
|
|
255
|
-
_See code: [src/commands/org/login/jwt.ts](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
255
|
+
_See code: [src/commands/org/login/jwt.ts](https://github.com/salesforcecli/plugin-auth/blob/3.9.14/src/commands/org/login/jwt.ts)_
|
|
256
256
|
|
|
257
257
|
## `sf org login sfdx-url`
|
|
258
258
|
|
|
@@ -322,7 +322,7 @@ EXAMPLES
|
|
|
322
322
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
323
323
|
```
|
|
324
324
|
|
|
325
|
-
_See code: [src/commands/org/login/sfdx-url.ts](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
325
|
+
_See code: [src/commands/org/login/sfdx-url.ts](https://github.com/salesforcecli/plugin-auth/blob/3.9.14/src/commands/org/login/sfdx-url.ts)_
|
|
326
326
|
|
|
327
327
|
## `sf org login web`
|
|
328
328
|
|
|
@@ -427,7 +427,7 @@ FLAG DESCRIPTIONS
|
|
|
427
427
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
428
428
|
```
|
|
429
429
|
|
|
430
|
-
_See code: [src/commands/org/login/web.ts](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
430
|
+
_See code: [src/commands/org/login/web.ts](https://github.com/salesforcecli/plugin-auth/blob/3.9.14/src/commands/org/login/web.ts)_
|
|
431
431
|
|
|
432
432
|
## `sf org logout`
|
|
433
433
|
|
|
@@ -493,6 +493,6 @@ FLAG DESCRIPTIONS
|
|
|
493
493
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
494
494
|
```
|
|
495
495
|
|
|
496
|
-
_See code: [src/commands/org/logout.ts](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
496
|
+
_See code: [src/commands/org/logout.ts](https://github.com/salesforcecli/plugin-auth/blob/3.9.14/src/commands/org/logout.ts)_
|
|
497
497
|
|
|
498
498
|
<!-- commandsstop -->
|
package/messages/web.login.md
CHANGED
|
@@ -62,7 +62,7 @@ Successfully linked "%s" client app to %s.
|
|
|
62
62
|
|
|
63
63
|
# error.headlessWebAuth
|
|
64
64
|
|
|
65
|
-
"
|
|
65
|
+
"org login web" isn't supported when authorizing in a headless environment. Use another OAuth flow, such as the JWT Bearer Flow with the "org login jwt" command.
|
|
66
66
|
|
|
67
67
|
# invalidClientId
|
|
68
68
|
|
package/oclif.manifest.json
CHANGED
|
@@ -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",
|
|
@@ -1028,81 +1102,7 @@
|
|
|
1028
1102
|
"web:org:login",
|
|
1029
1103
|
"web:login:org"
|
|
1030
1104
|
]
|
|
1031
|
-
},
|
|
1032
|
-
"org:list:auth": {
|
|
1033
|
-
"aliases": [
|
|
1034
|
-
"force:auth:list",
|
|
1035
|
-
"auth:list"
|
|
1036
|
-
],
|
|
1037
|
-
"args": {},
|
|
1038
|
-
"deprecateAliases": true,
|
|
1039
|
-
"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.",
|
|
1040
|
-
"examples": [
|
|
1041
|
-
"List local authorization information about your orgs:\n<%= config.bin %> <%= command.id %>"
|
|
1042
|
-
],
|
|
1043
|
-
"flags": {
|
|
1044
|
-
"json": {
|
|
1045
|
-
"description": "Format output as json.",
|
|
1046
|
-
"helpGroup": "GLOBAL",
|
|
1047
|
-
"name": "json",
|
|
1048
|
-
"allowNo": false,
|
|
1049
|
-
"type": "boolean"
|
|
1050
|
-
},
|
|
1051
|
-
"flags-dir": {
|
|
1052
|
-
"helpGroup": "GLOBAL",
|
|
1053
|
-
"name": "flags-dir",
|
|
1054
|
-
"summary": "Import flag values from a directory.",
|
|
1055
|
-
"hasDynamicHelp": false,
|
|
1056
|
-
"multiple": false,
|
|
1057
|
-
"type": "option"
|
|
1058
|
-
},
|
|
1059
|
-
"loglevel": {
|
|
1060
|
-
"deprecated": {
|
|
1061
|
-
"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."
|
|
1062
|
-
},
|
|
1063
|
-
"hidden": true,
|
|
1064
|
-
"name": "loglevel",
|
|
1065
|
-
"hasDynamicHelp": false,
|
|
1066
|
-
"multiple": false,
|
|
1067
|
-
"type": "option"
|
|
1068
|
-
}
|
|
1069
|
-
},
|
|
1070
|
-
"hasDynamicHelp": false,
|
|
1071
|
-
"hiddenAliases": [],
|
|
1072
|
-
"id": "org:list:auth",
|
|
1073
|
-
"pluginAlias": "@salesforce/plugin-auth",
|
|
1074
|
-
"pluginName": "@salesforce/plugin-auth",
|
|
1075
|
-
"pluginType": "core",
|
|
1076
|
-
"strict": true,
|
|
1077
|
-
"summary": "List authorization information about the orgs you created or logged into.",
|
|
1078
|
-
"enableJsonFlag": true,
|
|
1079
|
-
"isESM": true,
|
|
1080
|
-
"relativePath": [
|
|
1081
|
-
"lib",
|
|
1082
|
-
"commands",
|
|
1083
|
-
"org",
|
|
1084
|
-
"list",
|
|
1085
|
-
"auth.js"
|
|
1086
|
-
],
|
|
1087
|
-
"aliasPermutations": [
|
|
1088
|
-
"force:auth:list",
|
|
1089
|
-
"auth:force:list",
|
|
1090
|
-
"auth:list:force",
|
|
1091
|
-
"force:list:auth",
|
|
1092
|
-
"list:force:auth",
|
|
1093
|
-
"list:auth:force",
|
|
1094
|
-
"auth:list",
|
|
1095
|
-
"list:auth"
|
|
1096
|
-
],
|
|
1097
|
-
"permutations": [
|
|
1098
|
-
"org:list:auth",
|
|
1099
|
-
"list:org:auth",
|
|
1100
|
-
"list:auth:org",
|
|
1101
|
-
"org:auth:list",
|
|
1102
|
-
"auth:org:list",
|
|
1103
|
-
"auth:list:org"
|
|
1104
|
-
]
|
|
1105
1105
|
}
|
|
1106
1106
|
},
|
|
1107
|
-
"version": "3.9.
|
|
1107
|
+
"version": "3.9.14"
|
|
1108
1108
|
}
|
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-auth",
|
|
3
3
|
"description": "plugin for sf auth commands",
|
|
4
|
-
"version": "3.9.
|
|
4
|
+
"version": "3.9.14",
|
|
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.23.
|
|
11
|
+
"@salesforce/core": "8.23.2",
|
|
12
12
|
"@salesforce/kit": "^3.2.4",
|
|
13
|
-
"@salesforce/plugin-info": "^3.4.
|
|
14
|
-
"@salesforce/sf-plugins-core": "^12.2.
|
|
13
|
+
"@salesforce/plugin-info": "^3.4.89",
|
|
14
|
+
"@salesforce/sf-plugins-core": "^12.2.5",
|
|
15
15
|
"@salesforce/ts-types": "^2.0.11",
|
|
16
16
|
"open": "^10.2.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@oclif/plugin-command-snapshot": "^5.3.
|
|
19
|
+
"@oclif/plugin-command-snapshot": "^5.3.7",
|
|
20
20
|
"@salesforce/cli-plugins-testkit": "^5.3.41",
|
|
21
21
|
"@salesforce/dev-scripts": "^11.0.4",
|
|
22
|
-
"@salesforce/plugin-command-reference": "^3.1.
|
|
22
|
+
"@salesforce/plugin-command-reference": "^3.1.75",
|
|
23
23
|
"@salesforce/ts-sinon": "^1.4.31",
|
|
24
|
-
"eslint-plugin-sf-plugin": "^1.20.
|
|
25
|
-
"oclif": "^4.22.
|
|
24
|
+
"eslint-plugin-sf-plugin": "^1.20.33",
|
|
25
|
+
"oclif": "^4.22.32",
|
|
26
26
|
"ts-node": "^10.9.2",
|
|
27
27
|
"typescript": "^5.5.4"
|
|
28
28
|
},
|
|
@@ -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.9.
|
|
238
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.9.
|
|
237
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.9.14.crt",
|
|
238
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-auth/3.9.14.sig"
|
|
239
239
|
}
|
|
240
240
|
}
|