@neatlogs/claude-code 0.1.2 → 0.1.3
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 +1 -0
- package/dist/index.cjs +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -559,6 +559,7 @@ function createSpan(name, parent, startNano, endNano, attributes, status) {
|
|
|
559
559
|
function mapHookEvent(payload, config, shipper) {
|
|
560
560
|
switch (payload.hook_event_name) {
|
|
561
561
|
case "SessionStart":
|
|
562
|
+
case "SessionStart:resume":
|
|
562
563
|
handleSessionStart(payload, config, shipper);
|
|
563
564
|
break;
|
|
564
565
|
case "UserPromptSubmit":
|
package/dist/index.cjs
CHANGED
|
@@ -640,6 +640,7 @@ function createSpan(name, parent, startNano, endNano, attributes, status) {
|
|
|
640
640
|
function mapHookEvent(payload, config, shipper) {
|
|
641
641
|
switch (payload.hook_event_name) {
|
|
642
642
|
case "SessionStart":
|
|
643
|
+
case "SessionStart:resume":
|
|
643
644
|
handleSessionStart(payload, config, shipper);
|
|
644
645
|
break;
|
|
645
646
|
case "UserPromptSubmit":
|
package/dist/index.js
CHANGED
|
@@ -600,6 +600,7 @@ function createSpan(name, parent, startNano, endNano, attributes, status) {
|
|
|
600
600
|
function mapHookEvent(payload, config, shipper) {
|
|
601
601
|
switch (payload.hook_event_name) {
|
|
602
602
|
case "SessionStart":
|
|
603
|
+
case "SessionStart:resume":
|
|
603
604
|
handleSessionStart(payload, config, shipper);
|
|
604
605
|
break;
|
|
605
606
|
case "UserPromptSubmit":
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neatlogs/claude-code",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
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",
|