@salesforce/core 8.23.5-dev.0 → 8.23.5
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/lib/org/authInfo.js +1 -0
- package/package.json +2 -2
package/lib/org/authInfo.js
CHANGED
|
@@ -939,6 +939,7 @@ class AuthInfo extends kit_1.AsyncOptionalCreatable {
|
|
|
939
939
|
try {
|
|
940
940
|
this.logger.debug(`Exchanging auth code for access token using loginUrl: ${options.loginUrl ?? '<undefined>'}`);
|
|
941
941
|
authFields = await oauth2.requestToken((0, ts_types_1.ensure)(options.authCode));
|
|
942
|
+
this.logger.debug(`Successfully requested an access token with scopes: "${authFields.scope}".`);
|
|
942
943
|
}
|
|
943
944
|
catch (err) {
|
|
944
945
|
const msg = err instanceof Error ? `${err.name}::${err.message}` : typeof err === 'string' ? err : 'UNKNOWN';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/core",
|
|
3
|
-
"version": "8.23.5
|
|
3
|
+
"version": "8.23.5",
|
|
4
4
|
"description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
|
|
5
5
|
"main": "lib/index",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"messageTransformer/messageTransformer.ts"
|
|
56
56
|
],
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@jsforce/jsforce-node": "^3.10.
|
|
58
|
+
"@jsforce/jsforce-node": "^3.10.10",
|
|
59
59
|
"@salesforce/kit": "^3.2.4",
|
|
60
60
|
"@salesforce/schemas": "^1.10.3",
|
|
61
61
|
"@salesforce/ts-types": "^2.0.12",
|