@quanta-intellect/vessel-browser 0.1.18 → 0.1.19
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/README.md +17 -0
- package/out/main/index.js +922 -291
- package/out/preload/index.js +13 -0
- package/out/renderer/assets/{index-DAaJOss-.js → index-CKOT_IZt.js} +947 -209
- package/out/renderer/assets/{index-DMd-y6tm.css → index-DwRZftNk.css} +110 -0
- package/out/renderer/index.html +2 -2
- package/package.json +1 -1
package/out/preload/index.js
CHANGED
|
@@ -81,6 +81,12 @@ const Channels = {
|
|
|
81
81
|
PREMIUM_PORTAL: "premium:portal",
|
|
82
82
|
PREMIUM_RESET: "premium:reset",
|
|
83
83
|
PREMIUM_UPDATE: "premium:update",
|
|
84
|
+
// Agent Credential Vault
|
|
85
|
+
VAULT_LIST: "vault:list",
|
|
86
|
+
VAULT_ADD: "vault:add",
|
|
87
|
+
VAULT_UPDATE: "vault:update",
|
|
88
|
+
VAULT_REMOVE: "vault:remove",
|
|
89
|
+
VAULT_AUDIT_LOG: "vault:audit-log",
|
|
84
90
|
// Window controls
|
|
85
91
|
WINDOW_MINIMIZE: "window:minimize",
|
|
86
92
|
WINDOW_MAXIMIZE: "window:maximize",
|
|
@@ -242,6 +248,13 @@ const api = {
|
|
|
242
248
|
return () => electron.ipcRenderer.removeListener(Channels.PREMIUM_UPDATE, handler);
|
|
243
249
|
}
|
|
244
250
|
},
|
|
251
|
+
vault: {
|
|
252
|
+
list: () => electron.ipcRenderer.invoke(Channels.VAULT_LIST),
|
|
253
|
+
add: (entry) => electron.ipcRenderer.invoke(Channels.VAULT_ADD, entry),
|
|
254
|
+
update: (id, updates) => electron.ipcRenderer.invoke(Channels.VAULT_UPDATE, id, updates),
|
|
255
|
+
remove: (id) => electron.ipcRenderer.invoke(Channels.VAULT_REMOVE, id),
|
|
256
|
+
auditLog: (limit) => electron.ipcRenderer.invoke(Channels.VAULT_AUDIT_LOG, limit)
|
|
257
|
+
},
|
|
245
258
|
window: {
|
|
246
259
|
minimize: () => electron.ipcRenderer.invoke(Channels.WINDOW_MINIMIZE),
|
|
247
260
|
maximize: () => electron.ipcRenderer.invoke(Channels.WINDOW_MAXIMIZE),
|