@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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. 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, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&#39;");
53961
53961
  }
53962
- var clients, pendingAuths, pendingTeamSelections, authCodes, accessTokens, refreshTokens, TEAM_SELECTION_TTL, ACCESS_TOKEN_TTL = 3600, kadoaClientsStore;
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kadoa/mcp",
3
- "version": "0.3.1-rc.0",
3
+ "version": "0.3.1",
4
4
  "description": "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",