@crewhaus/event-log 0.5.8 → 0.6.0

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.d.ts +1 -1
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export declare const DEFAULT_ROOT_DIR = ".crewhaus/sessions";
2
- export type EventKind = "user_message" | "assistant_message" | "tool_use" | "tool_result" | "error" | "run_failed" | "context_evicted" | "compaction" | "sub_agent_start" | "sub_agent_end" | "role_start" | "role_end" | "handoff" | "a2a_message" | "a2a_turn_start" | "a2a_turn_end" | "crew_done" | "cost_accrual" | "toolset" | "user_feedback" | "recovery" | "tool_stats" | "permission" | "model_meta" | "mcp_stats" | "model_route" | "wiki_write" | "plan_update" | "goal_update" | "action_proof" | "dream_run";
2
+ export type EventKind = "user_message" | "assistant_message" | "tool_use" | "tool_result" | "error" | "run_failed" | "context_evicted" | "compaction" | "sub_agent_start" | "sub_agent_end" | "role_start" | "role_end" | "handoff" | "a2a_message" | "a2a_turn_start" | "a2a_turn_end" | "crew_done" | "cost_accrual" | "toolset" | "user_feedback" | "recovery" | "tool_stats" | "permission" | "model_meta" | "mcp_stats" | "model_route" | "model_tier_route" | "model_failover" | "model_stage" | "model_directive" | "judge_verdict" | "wiki_write" | "plan_update" | "goal_update" | "action_proof" | "dream_run";
3
3
  /**
4
4
  * Payload for the `wiki_write` event kind (0.3.0 design §9): which article
5
5
  * was mutated, at what version, and how. `action` distinguishes a body
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewhaus/event-log",
3
- "version": "0.5.8",
3
+ "version": "0.6.0",
4
4
  "type": "module",
5
5
  "description": "Append-only JSONL transcript log per session",
6
6
  "main": "dist/index.js",
@@ -15,8 +15,8 @@
15
15
  "test": "bun test src"
16
16
  },
17
17
  "dependencies": {
18
- "@crewhaus/errors": "0.5.8",
19
- "@crewhaus/tenancy": "0.5.8"
18
+ "@crewhaus/errors": "0.6.0",
19
+ "@crewhaus/tenancy": "0.6.0"
20
20
  },
21
21
  "license": "Apache-2.0",
22
22
  "author": {