@axiom-lattice/gateway 2.1.94 → 2.1.96
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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +19 -0
- package/dist/index.js +10 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/controllers/workflow-tracking.ts +10 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @axiom-lattice/gateway@2.1.
|
|
2
|
+
> @axiom-lattice/gateway@2.1.96 build /home/runner/work/agentic/agentic/packages/gateway
|
|
3
3
|
> tsup src/index.ts --format cjs,esm --dts --clean --sourcemap
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -18,17 +18,17 @@
|
|
|
18
18
|
You need to set the output format to "esm" for "import.meta" to work correctly.
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
[
|
|
22
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m607.49 KB[39m
|
|
23
|
-
[32mCJS[39m ⚡️ Build success in 393ms
|
|
24
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m270.54 KB[39m
|
|
21
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m270.71 KB[39m
|
|
25
22
|
[32mESM[39m [1mdist/sender-PX32VSHB.mjs [22m[32m873.00 B[39m
|
|
26
23
|
[32mESM[39m [1mdist/a2a-ERG5RMUW.mjs [22m[32m15.95 KB[39m
|
|
27
24
|
[32mESM[39m [1mdist/sender-PX32VSHB.mjs.map [22m[32m2.07 KB[39m
|
|
28
25
|
[32mESM[39m [1mdist/a2a-ERG5RMUW.mjs.map [22m[32m32.14 KB[39m
|
|
29
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[
|
|
30
|
-
[32mESM[39m ⚡️ Build success in
|
|
26
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m574.08 KB[39m
|
|
27
|
+
[32mESM[39m ⚡️ Build success in 532ms
|
|
28
|
+
[32mCJS[39m [1mdist/index.js [22m[32m292.19 KB[39m
|
|
29
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m607.87 KB[39m
|
|
30
|
+
[32mCJS[39m ⚡️ Build success in 532ms
|
|
31
31
|
[34mDTS[39m Build start
|
|
32
|
-
[32mDTS[39m ⚡️ Build success in
|
|
32
|
+
[32mDTS[39m ⚡️ Build success in 20005ms
|
|
33
33
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m7.57 KB[39m
|
|
34
34
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m7.57 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @axiom-lattice/gateway
|
|
2
2
|
|
|
3
|
+
## 2.1.96
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f5eea72: enhance wf
|
|
8
|
+
- Updated dependencies [f5eea72]
|
|
9
|
+
- @axiom-lattice/pg-stores@1.0.75
|
|
10
|
+
- @axiom-lattice/core@2.1.84
|
|
11
|
+
- @axiom-lattice/agent-eval@2.1.78
|
|
12
|
+
|
|
13
|
+
## 2.1.95
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [0edb54f]
|
|
18
|
+
- @axiom-lattice/core@2.1.83
|
|
19
|
+
- @axiom-lattice/agent-eval@2.1.77
|
|
20
|
+
- @axiom-lattice/pg-stores@1.0.74
|
|
21
|
+
|
|
3
22
|
## 2.1.94
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -2531,8 +2531,11 @@ async function getAllWorkflowRuns(request, reply) {
|
|
|
2531
2531
|
data: { records: enrichedRuns, total: enrichedRuns.length }
|
|
2532
2532
|
};
|
|
2533
2533
|
} catch (error) {
|
|
2534
|
-
request.log.error(error, "Failed to get workflow runs");
|
|
2535
|
-
return reply.status(500).send({
|
|
2534
|
+
request.log.error({ tenantId, assistantId, status, error: error.stack || error.message }, "Failed to get workflow runs");
|
|
2535
|
+
return reply.status(500).send({
|
|
2536
|
+
success: false,
|
|
2537
|
+
message: `Failed to retrieve workflow runs: ${error.message}`
|
|
2538
|
+
});
|
|
2536
2539
|
}
|
|
2537
2540
|
}
|
|
2538
2541
|
async function getInboxItems(request, reply) {
|
|
@@ -2750,8 +2753,11 @@ async function getRunSteps(request, reply) {
|
|
|
2750
2753
|
data: { records: steps, total: steps.length }
|
|
2751
2754
|
};
|
|
2752
2755
|
} catch (error) {
|
|
2753
|
-
request.log.error(error, "Failed to get run steps");
|
|
2754
|
-
return reply.status(500).send({
|
|
2756
|
+
request.log.error({ runId, error: error.stack || error.message }, "Failed to get run steps");
|
|
2757
|
+
return reply.status(500).send({
|
|
2758
|
+
success: false,
|
|
2759
|
+
message: `Failed to retrieve run steps: ${error.message}`
|
|
2760
|
+
});
|
|
2755
2761
|
}
|
|
2756
2762
|
}
|
|
2757
2763
|
async function getRunTasks(request, reply) {
|