@axiom-lattice/gateway 2.1.70 → 2.1.71
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 +6 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/controllers/workflow-tracking.ts +12 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @axiom-lattice/gateway@2.1.
|
|
2
|
+
> @axiom-lattice/gateway@2.1.71 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,13 +18,13 @@
|
|
|
18
18
|
You need to set the output format to "esm" for "import.meta" to work correctly.
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
[32mCJS[39m [1mdist/index.js [22m[32m204.
|
|
22
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m436.
|
|
23
|
-
[32mCJS[39m ⚡️ Build success in
|
|
24
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m201.
|
|
25
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[
|
|
26
|
-
[32mESM[39m ⚡️ Build success in
|
|
21
|
+
[32mCJS[39m [1mdist/index.js [22m[32m204.96 KB[39m
|
|
22
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m436.78 KB[39m
|
|
23
|
+
[32mCJS[39m ⚡️ Build success in 394ms
|
|
24
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m201.64 KB[39m
|
|
25
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m437.40 KB[39m
|
|
26
|
+
[32mESM[39m ⚡️ Build success in 397ms
|
|
27
27
|
[34mDTS[39m Build start
|
|
28
|
-
[32mDTS[39m ⚡️ Build success in
|
|
28
|
+
[32mDTS[39m ⚡️ Build success in 14513ms
|
|
29
29
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m3.85 KB[39m
|
|
30
30
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m3.85 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -2055,6 +2055,10 @@ async function replyInboxTask(request, reply) {
|
|
|
2055
2055
|
tenant_id: tenantId
|
|
2056
2056
|
});
|
|
2057
2057
|
try {
|
|
2058
|
+
const queueStore = agent.getQueueStore?.() || agent.queueStore;
|
|
2059
|
+
if (queueStore?.resetProcessingToPending) {
|
|
2060
|
+
await queueStore.resetProcessingToPending(run.threadId);
|
|
2061
|
+
}
|
|
2058
2062
|
await agent.addMessage({
|
|
2059
2063
|
input: { message: "Clarification answers submitted" },
|
|
2060
2064
|
command: {
|
|
@@ -2065,6 +2069,7 @@ async function replyInboxTask(request, reply) {
|
|
|
2065
2069
|
}
|
|
2066
2070
|
}
|
|
2067
2071
|
});
|
|
2072
|
+
await agent.startQueueProcessorIfNeeded();
|
|
2068
2073
|
} catch (error) {
|
|
2069
2074
|
return reply.status(400).send({
|
|
2070
2075
|
success: false,
|