@tryarcanist/cli 0.1.305 → 0.1.307

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.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -25867,8 +25867,8 @@ function projectNarration(data, state) {
25867
25867
  }
25868
25868
  function flattenSessionEvents(raw) {
25869
25869
  const state = createFlattenState();
25870
- const normalizedEvents = normalizeRawSessionEvents(raw);
25871
- for (const normalized of normalizedEvents) {
25870
+ for (const rawEvent of raw) {
25871
+ const normalized = normalizeRawSessionEvent(rawEvent);
25872
25872
  const { type } = normalized;
25873
25873
  const data = normalized.data;
25874
25874
  switch (type) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tryarcanist/cli",
3
- "version": "0.1.305",
3
+ "version": "0.1.307",
4
4
  "description": "CLI for Arcanist - create and manage coding agent sessions",
5
5
  "type": "module",
6
6
  "bin": {