cicy-desktop 2.1.54 → 2.1.56

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.54",
3
+ "version": "2.1.56",
4
4
  "description": "CiCy - AI-powered operating system browser",
5
5
  "main": "src/main.js",
6
6
  "bin": {
@@ -171,6 +171,7 @@ contextBridge.exposeInMainWorld("cicy", {
171
171
  localTeams: {
172
172
  list: (opts) => logInvoke("localTeams:list", opts),
173
173
  open: (id) => logInvoke("localTeams:open", id),
174
+ reload: (id) => logInvoke("localTeams:reload", id),
174
175
  add: (spec) => logInvoke("localTeams:add", spec),
175
176
  remove: (id) => logInvoke("localTeams:remove", id),
176
177
  update: (id, patch) => logInvoke("localTeams:update", { id, patch }),