@automatalabs/workflows 0.44.0 → 0.44.1
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/mcp-server.js +3 -1
- package/package.json +4 -4
package/dist/mcp-server.js
CHANGED
|
@@ -32381,6 +32381,7 @@ var runStatusShape = {
|
|
|
32381
32381
|
backendId: external_exports.string().optional(),
|
|
32382
32382
|
timeoutMs: external_exports.number().nonnegative().nullable().optional(),
|
|
32383
32383
|
errorCode: external_exports.string().optional(),
|
|
32384
|
+
status: external_exports.enum(["queued", "running"]).optional(),
|
|
32384
32385
|
resultPreview: external_exports.string(),
|
|
32385
32386
|
resultRedacted: external_exports.boolean(),
|
|
32386
32387
|
resultTruncated: external_exports.boolean()
|
|
@@ -33624,7 +33625,8 @@ function inspectionSummaryLines(status, options = {}) {
|
|
|
33624
33625
|
for (const call of status.calls) {
|
|
33625
33626
|
const attribution = call.label ? `${call.kind} "${call.label}"` : call.kind;
|
|
33626
33627
|
const phase = call.phase ? ` in ${call.phase}` : "";
|
|
33627
|
-
|
|
33628
|
+
const outcome = call.status !== void 0 ? `(${call.status})` : call.resultPreview;
|
|
33629
|
+
lines.push(` [${call.index}] ${attribution}${phase}: ${outcome}`);
|
|
33628
33630
|
}
|
|
33629
33631
|
return lines;
|
|
33630
33632
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automatalabs/workflows",
|
|
3
|
-
"version": "0.44.
|
|
3
|
+
"version": "0.44.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22"
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"typebox": "1.3.2",
|
|
34
|
-
"@automatalabs/shared-types": "0.
|
|
35
|
-
"@automatalabs/workflow-engine": "0.
|
|
36
|
-
"@automatalabs/acp-agents": "0.34.
|
|
34
|
+
"@automatalabs/shared-types": "0.28.0",
|
|
35
|
+
"@automatalabs/workflow-engine": "0.33.0",
|
|
36
|
+
"@automatalabs/acp-agents": "0.34.10"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"esbuild": "^0.28.1"
|