@quanta-intellect/vessel-browser 0.1.60 → 0.1.63

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.
@@ -259,7 +259,17 @@ const api = {
259
259
  },
260
260
  bookmarks: {
261
261
  get: () => electron.ipcRenderer.invoke(Channels.BOOKMARKS_GET),
262
- saveBookmark: (url, title, folderId, note) => electron.ipcRenderer.invoke(Channels.BOOKMARK_SAVE, url, title, folderId, note),
262
+ saveBookmark: (url, title, folderId, note, intent, expectedContent, keyFields, agentHints) => electron.ipcRenderer.invoke(
263
+ Channels.BOOKMARK_SAVE,
264
+ url,
265
+ title,
266
+ folderId,
267
+ note,
268
+ intent,
269
+ expectedContent,
270
+ keyFields,
271
+ agentHints
272
+ ),
263
273
  removeBookmark: (id) => electron.ipcRenderer.invoke(Channels.BOOKMARK_REMOVE, id),
264
274
  createFolder: (name) => electron.ipcRenderer.invoke(Channels.FOLDER_CREATE, name),
265
275
  createFolderWithSummary: (name, summary) => electron.ipcRenderer.invoke(Channels.FOLDER_CREATE, name, summary),