yamchart 0.9.3 → 0.9.4
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.
|
@@ -20993,7 +20993,7 @@ async function authSSORoutes(fastify, options) {
|
|
|
20993
20993
|
redirect_uris: [`${baseUrl}/api/auth/sso/${provider}/callback`],
|
|
20994
20994
|
response_types: ["code"]
|
|
20995
20995
|
});
|
|
20996
|
-
const tokenSet = await client.callback(`${baseUrl}/api/auth/sso/${provider}/callback`, { code: request.query.code, state: request.query.state }, { state: expectedState });
|
|
20996
|
+
const tokenSet = await client.callback(`${baseUrl}/api/auth/sso/${provider}/callback`, { code: request.query.code, state: request.query.state, iss: request.query.iss }, { state: expectedState });
|
|
20997
20997
|
const claims = tokenSet.claims();
|
|
20998
20998
|
const externalId = claims.sub;
|
|
20999
20999
|
const email = claims.email;
|
|
@@ -29934,4 +29934,4 @@ async function runDevServer(projectDir, options) {
|
|
|
29934
29934
|
export {
|
|
29935
29935
|
runDevServer
|
|
29936
29936
|
};
|
|
29937
|
-
//# sourceMappingURL=dev-
|
|
29937
|
+
//# sourceMappingURL=dev-7YLRQ6SA.js.map
|