@retasc/cli 1.6.0 → 1.6.1

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/api.js +1 -1
  2. package/package.json +1 -1
package/dist/api.js CHANGED
@@ -57,7 +57,7 @@ export function formatError(e) {
57
57
  // `sanitize` in convex/lib/userError.ts; the two are one wire contract.
58
58
  const clean = (v) =>
59
59
  // eslint-disable-next-line no-control-regex
60
- typeof v === "string" ? v.replace(/[\x00-\x1f\x7f]/g, " ").trim() : undefined;
60
+ typeof v === "string" ? v.replace(/[\x00-\x1f\x7f\u0085\u2028\u2029]/g, " ").trim() : undefined;
61
61
  return { code: clean(data.code), message: clean(data.message), hint: clean(data.hint) };
62
62
  }
63
63
  const message = String(e?.message ?? e)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@retasc/cli",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Retasc CLI — sign in with GitHub, create projects, mint agent API keys, and wire your agent to the Retasc MCP server in one command.",
5
5
  "type": "module",
6
6
  "bin": {