@codemation/eventbus-redis 0.0.37 → 0.0.39

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/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # @codemation/eventbus-redis
2
2
 
3
+ ## 0.0.39
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`e0933eb`](https://github.com/MadeRelevant/codemation/commit/e0933ebc51806a9593f94758860c591b8346a7a5)]:
8
+ - @codemation/core@0.11.1
9
+
10
+ ## 0.0.38
11
+
12
+ ### Patch Changes
13
+
14
+ - 8285ec0: Sprint 14 coverage: tests for WhenBuilder DSL helper, InMemoryWorkflowExecutionRepository retention paths, DevTrackedProcessTreeKiller edge cases, ConsumerCliTsconfigPreparation resolution, ListenPortConflictDescriber ss fallback, RedisRunEventBus publish/subscribe/teardown, CodemationChatModelFactory HMAC signing, registerCoreNodes smoke, single-react-component-per-file rule branches, and CodemationAgentSkillsCli error/help paths. No production code changes.
15
+ - Updated dependencies [8285ec0]
16
+ - Updated dependencies [8285ec0]
17
+ - Updated dependencies [8285ec0]
18
+ - Updated dependencies [8285ec0]
19
+ - Updated dependencies [8285ec0]
20
+ - Updated dependencies [8285ec0]
21
+ - Updated dependencies [e4d3e1a]
22
+ - Updated dependencies [7b50018]
23
+ - Updated dependencies [8285ec0]
24
+ - Updated dependencies [8285ec0]
25
+ - Updated dependencies [8285ec0]
26
+ - Updated dependencies [8285ec0]
27
+ - Updated dependencies [8285ec0]
28
+ - Updated dependencies [8285ec0]
29
+ - Updated dependencies [e4d3e1a]
30
+ - Updated dependencies [0082ab5]
31
+ - Updated dependencies [8285ec0]
32
+ - Updated dependencies [8285ec0]
33
+ - Updated dependencies [8285ec0]
34
+ - Updated dependencies [8285ec0]
35
+ - Updated dependencies [8285ec0]
36
+ - Updated dependencies [8285ec0]
37
+ - Updated dependencies [8285ec0]
38
+ - @codemation/core@0.11.0
39
+
3
40
  ## 0.0.37
4
41
 
5
42
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -72,6 +72,11 @@ interface PersistedWorkflowSnapshotNode {
72
72
  tokenName?: string;
73
73
  configTokenName?: string;
74
74
  config: unknown;
75
+ /** Pre-computed static configuration summary; populated by WorkflowSnapshotCodec. */
76
+ inspectorSummary?: ReadonlyArray<Readonly<{
77
+ label: string;
78
+ value: string;
79
+ }>>;
75
80
  }
76
81
  interface PersistedWorkflowSnapshot {
77
82
  id: WorkflowId;
@@ -150,6 +155,10 @@ interface ConnectionInvocationRecord {
150
155
  readonly status: NodeExecutionStatus;
151
156
  readonly managedInput?: JsonValue;
152
157
  readonly managedOutput?: JsonValue;
158
+ /** Short human-readable description of what this invocation is doing right now (e.g. `"calling search_messages"`). Rendered as a sub-line on the canvas node card. */
159
+ readonly statusLabel?: string;
160
+ /** Stable identifier for the thing this invocation acts on (e.g. an MCP tool name like `"search_messages"`). Persists across status transitions so the inspector can show it on completed/failed entries too. Connection nodes that ARE the tool (e.g. node-backed agent tools) leave this unset — the parent node id already identifies the subject. */
161
+ readonly subjectName?: string;
153
162
  readonly error?: NodeExecutionError;
154
163
  readonly queuedAt?: string;
155
164
  readonly startedAt?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemation/eventbus-redis",
3
- "version": "0.0.37",
3
+ "version": "0.0.39",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -29,14 +29,15 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "ioredis": "^5.7.0",
32
- "@codemation/core": "0.10.2"
32
+ "@codemation/core": "0.11.1"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/node": "^25.3.5",
36
36
  "eslint": "^10.0.3",
37
37
  "tsdown": "^0.15.5",
38
38
  "tsx": "^4.21.0",
39
- "typescript": "^5.9.3"
39
+ "typescript": "^5.9.3",
40
+ "vitest": "4.0.18"
40
41
  },
41
42
  "scripts": {
42
43
  "changeset:verify": "pnpm --workspace-root run changeset:verify",
@@ -44,6 +45,6 @@
44
45
  "build": "tsdown",
45
46
  "typecheck": "tsc -p tsconfig.json --noEmit",
46
47
  "lint": "eslint .",
47
- "test": "echo \"(test placeholder)\""
48
+ "test": "vitest run"
48
49
  }
49
50
  }