You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -175,6 +175,13 @@ export type PagesRouterResponse =
175
175
|ServerResponse<IncomingMessage>
176
176
|NextApiResponse;
177
177
178
+
exporttypeGetAccessTokenOptions={
179
+
/**
180
+
* Force a refresh of the access token.
181
+
*/
182
+
refresh?: boolean;
183
+
};
184
+
178
185
exportclassAuth0Client{
179
186
privatetransactionStore: TransactionStore;
180
187
privatesessionStore: AbstractSessionStore;
@@ -316,8 +323,8 @@ export class Auth0Client {
316
323
* It is recommended to call `getAccessToken(req, res)` in the middleware if you need to retrieve the access token in a Server Component to ensure the updated token set is persisted.
0 commit comments