@app-connect/core 1.7.33 → 1.7.34
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/handlers/auth.js +1 -1
- package/package.json +1 -1
- package/releaseNotes.json +20 -0
package/handlers/auth.js
CHANGED
|
@@ -50,7 +50,7 @@ async function onOAuthCallback({ platform, hostname, tokenUrl, query, hashedRcEx
|
|
|
50
50
|
let overridingOAuthOption = null;
|
|
51
51
|
if (platformModule.getOverridingOAuthOption != null) {
|
|
52
52
|
const code = new URL(callbackUri).searchParams.get('code');
|
|
53
|
-
overridingOAuthOption = platformModule.getOverridingOAuthOption({ code });
|
|
53
|
+
overridingOAuthOption = platformModule.getOverridingOAuthOption({ code, oauthInfo });
|
|
54
54
|
}
|
|
55
55
|
const oauthApp = oauth.getOAuthApp(oauthInfo);
|
|
56
56
|
const { accessToken, refreshToken, expires, data } = await oauthApp.code.getToken(callbackUri, overridingOAuthOption);
|
package/package.json
CHANGED
package/releaseNotes.json
CHANGED
|
@@ -1,4 +1,24 @@
|
|
|
1
1
|
{
|
|
2
|
+
"1.7.34": {
|
|
3
|
+
"global": [
|
|
4
|
+
{
|
|
5
|
+
"type": "New",
|
|
6
|
+
"description": "Call pop fallback url when no matched contact"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"type": "Fix",
|
|
10
|
+
"description": "Hostname page input debounce"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"type": "Fix",
|
|
14
|
+
"description": "RingCentral additional info submission during auth"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "Fix",
|
|
18
|
+
"description": "Managed auth, admins can now see hidden fields"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
},
|
|
2
22
|
"1.7.33": {
|
|
3
23
|
"global": [
|
|
4
24
|
{
|