@chatpanel/gateway 0.6.97 → 0.6.98

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": "@chatpanel/gateway",
3
- "version": "0.6.97",
3
+ "version": "0.6.98",
4
4
  "description": "Local privacy gateway — redacts PII out of OpenAI/Anthropic API traffic before it reaches a model, then restores it in the reply. Point opencode, codex, aider, Claude Code, etc. at it.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -27,7 +27,7 @@
27
27
  "node": ">=18"
28
28
  },
29
29
  "dependencies": {
30
- "@chatpanel/bridge": "^0.11.21",
30
+ "@chatpanel/bridge": "^0.11.23",
31
31
  "@chatpanel/pii": "^0.7.4",
32
32
  "@huggingface/transformers": "^4.2.0",
33
33
  "onnxruntime-web": "1.26.0-dev.20260416-b7804b056c",
package/src/server.js CHANGED
@@ -63,7 +63,7 @@ import * as openai from './openai.js';
63
63
  import * as responses from './responses.js';
64
64
  import * as anthropic from './anthropic.js';
65
65
 
66
- export const VERSION = '0.6.97';
66
+ export const VERSION = '0.6.98';
67
67
 
68
68
  // WARM search tier — SQLite + FTS5 record store (falls back to an encrypted-JSON
69
69
  // store if SQLite can't load), fed by the extension's ingest sync + backup-ingest.
package/src/team-board.js CHANGED
@@ -75,7 +75,9 @@ export function parseFindings(text, { role, taskId } = {}) {
75
75
  // ── threads, posts, asks ────────────────────────────────────────────────────────────────
76
76
 
77
77
  export const THREAD_KINDS = Object.freeze(['task', 'ask', 'discussion', 'proposal']);
78
- export const THREAD_STATUSES = Object.freeze(['open', 'waiting', 'resolved', 'approved', 'rejected']);
78
+ // `failed`: the task behind the thread ended without an answer (every model on the roster
79
+ // tried, or a hard error) — not `resolved`, which read as "done" on the board.
80
+ export const THREAD_STATUSES = Object.freeze(['open', 'waiting', 'resolved', 'failed', 'approved', 'rejected']);
79
81
  export const POST_KINDS = Object.freeze(['finding', 'note', 'question', 'answer', 'draft', 'decision']);
80
82
  export const POST_STATUSES = Object.freeze(['open', 'proposed', 'approved', 'rejected']);
81
83
  export const ASK_TYPES = Object.freeze(['info', 'budget', 'permission', 'direction']);