@adhdev/daemon-standalone 0.9.77-rc.13 → 0.9.77-rc.15

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/dist/index.js CHANGED
@@ -46300,7 +46300,7 @@ ${effect.notification.body || ""}`.trim();
46300
46300
  async function handlePtyInput(h, args) {
46301
46301
  const { cliType, data, targetSessionId } = args || {};
46302
46302
  if (!data) return { success: false, error: "data required" };
46303
- const cleanData = typeof data === "string" ? data.replace(/\x1b\[\?[0-9;]*c/g, "") : data;
46303
+ const cleanData = typeof data === "string" ? data.replace(/\x1b\[[?>][0-9;]*c/g, "") : data;
46304
46304
  if (!cleanData) return { success: true };
46305
46305
  const adapter = h.getCliAdapter(targetSessionId || cliType);
46306
46306
  if (!adapter || typeof adapter.writeRaw !== "function") {