@kadoa/mcp 0.3.1-rc.0 → 0.3.1
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/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -53959,7 +53959,7 @@ function renderTeamSelectionPage(teams, selectionToken) {
|
|
|
53959
53959
|
function escapeHtml(str) {
|
|
53960
53960
|
return str.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """).replace(/'/g, "'");
|
|
53961
53961
|
}
|
|
53962
|
-
var clients, pendingAuths, pendingTeamSelections, authCodes, accessTokens, refreshTokens, TEAM_SELECTION_TTL, ACCESS_TOKEN_TTL
|
|
53962
|
+
var clients, pendingAuths, pendingTeamSelections, authCodes, accessTokens, refreshTokens, TEAM_SELECTION_TTL, ACCESS_TOKEN_TTL, kadoaClientsStore;
|
|
53963
53963
|
var init_auth2 = __esm(() => {
|
|
53964
53964
|
clients = new Map;
|
|
53965
53965
|
pendingAuths = new Map;
|
|
@@ -53968,6 +53968,7 @@ var init_auth2 = __esm(() => {
|
|
|
53968
53968
|
accessTokens = new Map;
|
|
53969
53969
|
refreshTokens = new Map;
|
|
53970
53970
|
TEAM_SELECTION_TTL = 10 * 60 * 1000;
|
|
53971
|
+
ACCESS_TOKEN_TTL = 7 * 24 * 3600;
|
|
53971
53972
|
kadoaClientsStore = {
|
|
53972
53973
|
getClient(clientId) {
|
|
53973
53974
|
return clients.get(clientId);
|