@neatlogs/claude-code 0.1.3 → 0.1.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.
package/dist/cli.js CHANGED
@@ -606,9 +606,8 @@ function mapHookEvent(payload, config, shipper) {
606
606
  }
607
607
  }
608
608
  }
609
- function handleSessionStart(payload, config, shipper) {
609
+ function handleSessionStart(payload, _config, _shipper) {
610
610
  writeState(`model_${payload.session_id}`, payload.model ?? "");
611
- ensureSessionTrace(payload, config, shipper);
612
611
  }
613
612
  function handleUserPromptSubmit(payload, config, shipper) {
614
613
  const sessionCtx = ensureSessionTrace(payload, config, shipper);
package/dist/index.cjs CHANGED
@@ -687,9 +687,8 @@ function mapHookEvent(payload, config, shipper) {
687
687
  }
688
688
  }
689
689
  }
690
- function handleSessionStart(payload, config, shipper) {
690
+ function handleSessionStart(payload, _config, _shipper) {
691
691
  writeState(`model_${payload.session_id}`, payload.model ?? "");
692
- ensureSessionTrace(payload, config, shipper);
693
692
  }
694
693
  function handleUserPromptSubmit(payload, config, shipper) {
695
694
  const sessionCtx = ensureSessionTrace(payload, config, shipper);
package/dist/index.js CHANGED
@@ -647,9 +647,8 @@ function mapHookEvent(payload, config, shipper) {
647
647
  }
648
648
  }
649
649
  }
650
- function handleSessionStart(payload, config, shipper) {
650
+ function handleSessionStart(payload, _config, _shipper) {
651
651
  writeState(`model_${payload.session_id}`, payload.model ?? "");
652
- ensureSessionTrace(payload, config, shipper);
653
652
  }
654
653
  function handleUserPromptSubmit(payload, config, shipper) {
655
654
  const sessionCtx = ensureSessionTrace(payload, config, shipper);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neatlogs/claude-code",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Neatlogs observability for Claude Code sessions — automatic tracing of prompts, tool calls, thinking, and LLM responses via hooks",
5
5
  "license": "MIT",
6
6
  "type": "module",