@axiom-lattice/gateway 2.1.82 → 2.1.83
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 +32 -0
- package/CHANGELOG.md +12 -0
- package/package.json +6 -6
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
|
|
2
|
+
> @axiom-lattice/gateway@2.1.83 build /home/runner/work/agentic/agentic/packages/gateway
|
|
3
|
+
> tsup src/index.ts --format cjs,esm --dts --clean --sourcemap
|
|
4
|
+
|
|
5
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
+
[34mCLI[39m tsup v8.5.0
|
|
8
|
+
[34mCLI[39m Target: es2020
|
|
9
|
+
[34mCLI[39m Cleaning output folder
|
|
10
|
+
[34mCJS[39m Build start
|
|
11
|
+
[34mESM[39m Build start
|
|
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
|
+
|
|
14
|
+
src/index.ts:178:33:
|
|
15
|
+
[37m 178 │ const __filename = fileURLToPath([32mimport.meta[37m.url);
|
|
16
|
+
╵ [32m~~~~~~~~~~~[0m
|
|
17
|
+
|
|
18
|
+
You need to set the output format to "esm" for "import.meta" to work correctly.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
[32mCJS[39m [1mdist/index.js [22m[32m242.67 KB[39m
|
|
22
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m508.08 KB[39m
|
|
23
|
+
[32mCJS[39m ⚡️ Build success in 369ms
|
|
24
|
+
[32mESM[39m [1mdist/sender-PX32VSHB.mjs [22m[32m873.00 B[39m
|
|
25
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m237.97 KB[39m
|
|
26
|
+
[32mESM[39m [1mdist/sender-PX32VSHB.mjs.map [22m[32m2.07 KB[39m
|
|
27
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m506.56 KB[39m
|
|
28
|
+
[32mESM[39m ⚡️ Build success in 372ms
|
|
29
|
+
[34mDTS[39m Build start
|
|
30
|
+
[32mDTS[39m ⚡️ Build success in 13970ms
|
|
31
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m5.04 KB[39m
|
|
32
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m5.04 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @axiom-lattice/gateway
|
|
2
2
|
|
|
3
|
+
## 2.1.83
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- aac09bf: up all
|
|
8
|
+
- Updated dependencies [aac09bf]
|
|
9
|
+
- @axiom-lattice/agent-eval@2.1.66
|
|
10
|
+
- @axiom-lattice/core@2.1.72
|
|
11
|
+
- @axiom-lattice/pg-stores@1.0.62
|
|
12
|
+
- @axiom-lattice/protocols@2.1.37
|
|
13
|
+
- @axiom-lattice/queue-redis@1.0.36
|
|
14
|
+
|
|
3
15
|
## 2.1.82
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axiom-lattice/gateway",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.83",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"redis": "^5.0.1",
|
|
41
41
|
"uuid": "^9.0.1",
|
|
42
42
|
"zod": "3.25.76",
|
|
43
|
-
"@axiom-lattice/agent-eval": "2.1.
|
|
44
|
-
"@axiom-lattice/core": "2.1.
|
|
45
|
-
"@axiom-lattice/pg-stores": "1.0.
|
|
46
|
-
"@axiom-lattice/protocols": "2.1.
|
|
47
|
-
"@axiom-lattice/queue-redis": "1.0.
|
|
43
|
+
"@axiom-lattice/agent-eval": "2.1.66",
|
|
44
|
+
"@axiom-lattice/core": "2.1.72",
|
|
45
|
+
"@axiom-lattice/pg-stores": "1.0.62",
|
|
46
|
+
"@axiom-lattice/protocols": "2.1.37",
|
|
47
|
+
"@axiom-lattice/queue-redis": "1.0.36"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/jest": "^29.5.14",
|