@quanta-intellect/vessel-browser 0.1.92 → 0.1.95

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.
@@ -53,6 +53,7 @@ const Channels = {
53
53
  SETTINGS_UPDATE: "settings:update",
54
54
  SETTINGS_HEALTH_GET: "settings:health:get",
55
55
  SETTINGS_HEALTH_UPDATE: "settings:health:update",
56
+ MCP_REGENERATE_TOKEN: "mcp:regenerate-token",
56
57
  // Bookmarks
57
58
  BOOKMARKS_GET: "bookmarks:get",
58
59
  BOOKMARKS_UPDATE: "bookmarks:update",
@@ -348,6 +349,7 @@ const api = {
348
349
  settings: {
349
350
  get: () => electron.ipcRenderer.invoke(Channels.SETTINGS_GET),
350
351
  getHealth: () => electron.ipcRenderer.invoke(Channels.SETTINGS_HEALTH_GET),
352
+ regenerateMcpToken: () => electron.ipcRenderer.invoke(Channels.MCP_REGENERATE_TOKEN),
351
353
  onHealthUpdate: (cb) => {
352
354
  const handler = (_, health) => cb(health);
353
355
  electron.ipcRenderer.on(Channels.SETTINGS_HEALTH_UPDATE, handler);