@joshski/dust 0.1.21 → 0.1.22

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/dust.js +1 -1
  2. package/package.json +1 -1
package/dist/dust.js CHANGED
@@ -1879,7 +1879,7 @@ async function loopClaude(dependencies, loopDependencies = createDefaultDependen
1879
1879
  const iterationOptions = {};
1880
1880
  if (eventsUrl) {
1881
1881
  iterationOptions.onRawEvent = (rawEvent) => {
1882
- if (rawEvent.type === "result" && typeof rawEvent.session_id === "string" && rawEvent.session_id) {
1882
+ if (typeof rawEvent.session_id === "string" && rawEvent.session_id) {
1883
1883
  agentSessionId = rawEvent.session_id;
1884
1884
  }
1885
1885
  emit({ type: "claude.raw_event", rawEvent });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joshski/dust",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "description": "Flow state for AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {