framer-code-link 0.4.3 → 0.4.4

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.
Files changed (2) hide show
  1. package/dist/index.mjs +3 -3
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -1607,14 +1607,14 @@ var FileMetadataCache = class {
1607
1607
  };
1608
1608
 
1609
1609
  //#endregion
1610
- //#region src/helpers/user-actions.ts
1610
+ //#region src/helpers/plugin-prompts.ts
1611
1611
  var PluginDisconnectedError = class extends Error {
1612
1612
  constructor() {
1613
1613
  super("Plugin disconnected");
1614
1614
  this.name = "PluginDisconnectedError";
1615
1615
  }
1616
1616
  };
1617
- var UserActionCoordinator = class {
1617
+ var PluginUserPromptCoordinator = class {
1618
1618
  pendingActions = /* @__PURE__ */ new Map();
1619
1619
  /**
1620
1620
  * Register a pending action and return a typed promise
@@ -2413,7 +2413,7 @@ async function start(config) {
2413
2413
  pendingOperations: /* @__PURE__ */ new Map(),
2414
2414
  nextOperationId: 1
2415
2415
  };
2416
- const userActions = new UserActionCoordinator();
2416
+ const userActions = new PluginUserPromptCoordinator();
2417
2417
  async function processEvent(event) {
2418
2418
  const socketState = syncState.socket?.readyState;
2419
2419
  debug(`[STATE] Processing event: ${event.type} (mode: ${syncState.mode}, socket: ${socketState ?? "none"})`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "framer-code-link",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "CLI tool for syncing Framer code components - controller-centric architecture",
5
5
  "main": "dist/index.mjs",
6
6
  "type": "module",