@kosinal/claude-code-dashboard 0.0.6 → 0.0.7
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/bin.js +8 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -1436,7 +1436,14 @@ var EVENT_TO_STATUS = {
|
|
|
1436
1436
|
UserPromptSubmit: "running",
|
|
1437
1437
|
Stop: "done"
|
|
1438
1438
|
};
|
|
1439
|
-
var INTERACTIVE_TOOLS = /* @__PURE__ */ new Set([
|
|
1439
|
+
var INTERACTIVE_TOOLS = /* @__PURE__ */ new Set([
|
|
1440
|
+
"ExitPlanMode",
|
|
1441
|
+
"AskUserQuestion",
|
|
1442
|
+
"Bash",
|
|
1443
|
+
"Write",
|
|
1444
|
+
"Edit",
|
|
1445
|
+
"NotebookEdit"
|
|
1446
|
+
]);
|
|
1440
1447
|
function createStore() {
|
|
1441
1448
|
const sessions = /* @__PURE__ */ new Map();
|
|
1442
1449
|
return {
|