@axiom-lattice/gateway 2.1.63 → 2.1.64
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 +12 -12
- package/CHANGELOG.md +8 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +521 -162
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +449 -89
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/controllers/workflow-tracking.ts +385 -0
- package/src/index.ts +18 -0
- package/src/routes/index.ts +46 -0
- package/src/services/agent_task_consumer.ts +40 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @axiom-lattice/gateway@2.1.
|
|
2
|
+
> @axiom-lattice/gateway@2.1.64 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
|
|
@@ -11,20 +11,20 @@
|
|
|
11
11
|
[34mESM[39m Build start
|
|
12
12
|
[warn] [33m▲ [43;33m[[43;30mWARNING[43;33m][0m [1m"import.meta" is not available with the "cjs" output format and will be empty[0m [empty-import-meta]
|
|
13
13
|
|
|
14
|
-
src/index.ts:
|
|
15
|
-
[37m
|
|
14
|
+
src/index.ts:152:33:
|
|
15
|
+
[37m 152 │ const __filename = fileURLToPath([32mimport.meta[37m.url);
|
|
16
16
|
╵ [32m~~~~~~~~~~~[0m
|
|
17
17
|
|
|
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[
|
|
22
|
-
[32mCJS[39m [1mdist/index.js.map [22m[
|
|
23
|
-
[32mCJS[39m ⚡️ Build success in
|
|
24
|
-
[32mESM[39m [1mdist/index.mjs [22m[
|
|
25
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[
|
|
26
|
-
[32mESM[39m ⚡️ Build success in
|
|
21
|
+
[32mCJS[39m [1mdist/index.js [22m[32m203.07 KB[39m
|
|
22
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m432.28 KB[39m
|
|
23
|
+
[32mCJS[39m ⚡️ Build success in 296ms
|
|
24
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m199.74 KB[39m
|
|
25
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m432.91 KB[39m
|
|
26
|
+
[32mESM[39m ⚡️ Build success in 354ms
|
|
27
27
|
[34mDTS[39m Build start
|
|
28
|
-
[32mDTS[39m ⚡️ Build success in
|
|
29
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m3.
|
|
30
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m3.
|
|
28
|
+
[32mDTS[39m ⚡️ Build success in 12990ms
|
|
29
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m3.85 KB[39m
|
|
30
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m3.85 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED