cicy-desktop 2.1.209 → 2.1.210

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cicy-desktop",
3
- "version": "2.1.209",
3
+ "version": "2.1.210",
4
4
  "description": "CiCy - AI-powered operating system browser",
5
5
  "main": "src/main.js",
6
6
  "bin": {
@@ -212,7 +212,7 @@ contextBridge.exposeInMainWorld("cicy", {
212
212
  // Open / reload a URL as a TAB in profile 0 (homepage cards open like the local
213
213
  // card — current profile, not a new window / system browser).
214
214
  tabs: {
215
- open: (url, title) => logInvoke("tabs:open", { url, title }),
215
+ open: (url, title, avatar, team) => logInvoke("tabs:open", { url, title, avatar, team }),
216
216
  reload: (url, title) => logInvoke("tabs:reload", { url, title }),
217
217
  reloadIfOpen: (url, title) => logInvoke("tabs:reloadIfOpen", { url, title }),
218
218
  activateIfOpen: (url) => logInvoke("tabs:activateIfOpen", { url }),
@@ -281,6 +281,8 @@ contextBridge.exposeInMainWorld("cicy", {
281
281
  add: (spec) => logInvoke("localTeams:add", spec),
282
282
  remove: (id) => logInvoke("localTeams:remove", id),
283
283
  update: (id, patch) => logInvoke("localTeams:update", { id, patch }),
284
+ setAvatar: (id, dataUrl) => logInvoke("localTeams:setAvatar", { id, dataUrl }),
285
+ avatars: () => logInvoke("localTeams:avatars"),
284
286
  upgrade: (id) => logInvoke("localTeams:upgrade", id),
285
287
  syncCloud: () => logInvoke("localTeams:syncCloud"),
286
288
  // Subscribe to relay requests forwarded from a child <webview>