@imtbl/auth-next-server 2.17.1-alpha.1 → 2.17.2-alpha.0
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/dist/node/index.cjs +1 -12
- package/dist/node/index.js +1 -12
- package/package.json +1 -1
- package/src/refresh.ts +12 -34
package/dist/node/index.cjs
CHANGED
|
@@ -124,8 +124,7 @@ function extractZkEvmFromIdToken(idToken) {
|
|
|
124
124
|
}
|
|
125
125
|
return void 0;
|
|
126
126
|
}
|
|
127
|
-
|
|
128
|
-
async function doRefreshAccessToken(refreshToken, clientId, authDomain) {
|
|
127
|
+
async function refreshAccessToken(refreshToken, clientId, authDomain = DEFAULT_AUTH_DOMAIN) {
|
|
129
128
|
const tokenUrl = `${authDomain}/oauth/token`;
|
|
130
129
|
const response = await fetch(tokenUrl, {
|
|
131
130
|
method: "POST",
|
|
@@ -164,16 +163,6 @@ async function doRefreshAccessToken(refreshToken, clientId, authDomain) {
|
|
|
164
163
|
accessTokenExpires: decodeJwtExpiry(tokenData.access_token)
|
|
165
164
|
};
|
|
166
165
|
}
|
|
167
|
-
async function refreshAccessToken(refreshToken, clientId, authDomain = DEFAULT_AUTH_DOMAIN) {
|
|
168
|
-
const cacheKey = `${clientId}:${refreshToken}`;
|
|
169
|
-
const inflight = refreshPromises.get(cacheKey);
|
|
170
|
-
if (inflight) return inflight;
|
|
171
|
-
const promise = doRefreshAccessToken(refreshToken, clientId, authDomain).finally(() => {
|
|
172
|
-
refreshPromises.delete(cacheKey);
|
|
173
|
-
});
|
|
174
|
-
refreshPromises.set(cacheKey, promise);
|
|
175
|
-
return promise;
|
|
176
|
-
}
|
|
177
166
|
|
|
178
167
|
// src/config.ts
|
|
179
168
|
var Credentials = import_credentials.default.default || import_credentials.default;
|
package/dist/node/index.js
CHANGED
|
@@ -67,8 +67,7 @@ function extractZkEvmFromIdToken(idToken) {
|
|
|
67
67
|
}
|
|
68
68
|
return void 0;
|
|
69
69
|
}
|
|
70
|
-
|
|
71
|
-
async function doRefreshAccessToken(refreshToken, clientId, authDomain) {
|
|
70
|
+
async function refreshAccessToken(refreshToken, clientId, authDomain = DEFAULT_AUTH_DOMAIN) {
|
|
72
71
|
const tokenUrl = `${authDomain}/oauth/token`;
|
|
73
72
|
const response = await fetch(tokenUrl, {
|
|
74
73
|
method: "POST",
|
|
@@ -107,16 +106,6 @@ async function doRefreshAccessToken(refreshToken, clientId, authDomain) {
|
|
|
107
106
|
accessTokenExpires: decodeJwtExpiry(tokenData.access_token)
|
|
108
107
|
};
|
|
109
108
|
}
|
|
110
|
-
async function refreshAccessToken(refreshToken, clientId, authDomain = DEFAULT_AUTH_DOMAIN) {
|
|
111
|
-
const cacheKey = `${clientId}:${refreshToken}`;
|
|
112
|
-
const inflight = refreshPromises.get(cacheKey);
|
|
113
|
-
if (inflight) return inflight;
|
|
114
|
-
const promise = doRefreshAccessToken(refreshToken, clientId, authDomain).finally(() => {
|
|
115
|
-
refreshPromises.delete(cacheKey);
|
|
116
|
-
});
|
|
117
|
-
refreshPromises.set(cacheKey, promise);
|
|
118
|
-
return promise;
|
|
119
|
-
}
|
|
120
109
|
|
|
121
110
|
// src/config.ts
|
|
122
111
|
var Credentials = CredentialsImport.default || CredentialsImport;
|
package/package.json
CHANGED
package/src/refresh.ts
CHANGED
|
@@ -85,16 +85,20 @@ export function extractZkEvmFromIdToken(idToken?: string): ZkEvmData | undefined
|
|
|
85
85
|
return undefined;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
88
|
+
/**
|
|
89
|
+
* Refresh access token using the refresh token.
|
|
90
|
+
* This is called server-side in the JWT callback when the access token is expired.
|
|
91
|
+
*
|
|
92
|
+
* @param refreshToken - The refresh token to use
|
|
93
|
+
* @param clientId - The OAuth client ID
|
|
94
|
+
* @param authDomain - The authentication domain (default: https://auth.immutable.com)
|
|
95
|
+
* @returns The refreshed tokens
|
|
96
|
+
* @throws Error if refresh fails
|
|
97
|
+
*/
|
|
98
|
+
export async function refreshAccessToken(
|
|
95
99
|
refreshToken: string,
|
|
96
100
|
clientId: string,
|
|
97
|
-
authDomain: string,
|
|
101
|
+
authDomain: string = DEFAULT_AUTH_DOMAIN,
|
|
98
102
|
): Promise<RefreshedTokens> {
|
|
99
103
|
const tokenUrl = `${authDomain}/oauth/token`;
|
|
100
104
|
|
|
@@ -137,29 +141,3 @@ async function doRefreshAccessToken(
|
|
|
137
141
|
accessTokenExpires: decodeJwtExpiry(tokenData.access_token),
|
|
138
142
|
};
|
|
139
143
|
}
|
|
140
|
-
|
|
141
|
-
/**
|
|
142
|
-
* Refresh access token using the refresh token.
|
|
143
|
-
* This is called server-side in the JWT callback when the access token is expired.
|
|
144
|
-
*
|
|
145
|
-
* @param refreshToken - The refresh token to use
|
|
146
|
-
* @param clientId - The OAuth client ID
|
|
147
|
-
* @param authDomain - The authentication domain (default: https://auth.immutable.com)
|
|
148
|
-
* @returns The refreshed tokens
|
|
149
|
-
* @throws Error if refresh fails
|
|
150
|
-
*/
|
|
151
|
-
export async function refreshAccessToken(
|
|
152
|
-
refreshToken: string,
|
|
153
|
-
clientId: string,
|
|
154
|
-
authDomain: string = DEFAULT_AUTH_DOMAIN,
|
|
155
|
-
): Promise<RefreshedTokens> {
|
|
156
|
-
const cacheKey = `${clientId}:${refreshToken}`;
|
|
157
|
-
const inflight = refreshPromises.get(cacheKey);
|
|
158
|
-
if (inflight) return inflight;
|
|
159
|
-
|
|
160
|
-
const promise = doRefreshAccessToken(refreshToken, clientId, authDomain).finally(() => {
|
|
161
|
-
refreshPromises.delete(cacheKey);
|
|
162
|
-
});
|
|
163
|
-
refreshPromises.set(cacheKey, promise);
|
|
164
|
-
return promise;
|
|
165
|
-
}
|