@axiom-lattice/gateway 2.1.109 → 2.1.111

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @axiom-lattice/gateway@2.1.109 build /home/runner/work/agentic/agentic/packages/gateway
2
+ > @axiom-lattice/gateway@2.1.111 build /home/runner/work/agentic/agentic/packages/gateway
3
3
  > tsup src/index.ts --format cjs,esm --dts --clean --sourcemap
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -18,29 +18,29 @@
18
18
  You need to set the output format to "esm" for "import.meta" to work correctly.
19
19
 
20
20
 
21
- CJS dist/index.js 353.34 KB
22
- CJS dist/index.js.map 720.44 KB
23
- CJS ⚡️ Build success in 573ms
24
- ESM dist/index.mjs 282.73 KB
25
21
  ESM dist/mcp-configs-SHRMQHIL.mjs 685.00 B
26
22
  ESM dist/chunk-K4XELOSO.mjs 12.52 KB
27
23
  ESM dist/sender-PX32VSHB.mjs 873.00 B
28
24
  ESM dist/WechatChannelAdapter-WSDKR4OA.mjs 8.27 KB
29
- ESM dist/chunk-6CUQGDJI.mjs 6.42 KB
30
25
  ESM dist/a2a-ERG5RMUW.mjs 15.95 KB
31
- ESM dist/resources-5POCLGXV.mjs 15.73 KB
26
+ ESM dist/chunk-6CUQGDJI.mjs 6.42 KB
27
+ ESM dist/index.mjs 282.73 KB
28
+ ESM dist/resources-VA7LSDKN.mjs 15.81 KB
32
29
  ESM dist/chunk-LHQY46YB.mjs 1.46 KB
33
- ESM dist/mcp-configs-SHRMQHIL.mjs.map 71.00 B
34
30
  ESM dist/chunk-K4XELOSO.mjs.map 25.53 KB
35
31
  ESM dist/sender-PX32VSHB.mjs.map 2.07 KB
36
32
  ESM dist/WechatChannelAdapter-WSDKR4OA.mjs.map 16.28 KB
37
- ESM dist/chunk-6CUQGDJI.mjs.map 14.04 KB
38
33
  ESM dist/a2a-ERG5RMUW.mjs.map 32.14 KB
39
- ESM dist/resources-5POCLGXV.mjs.map 29.34 KB
34
+ ESM dist/chunk-6CUQGDJI.mjs.map 14.04 KB
35
+ ESM dist/resources-VA7LSDKN.mjs.map 29.34 KB
40
36
  ESM dist/chunk-LHQY46YB.mjs.map 2.39 KB
41
37
  ESM dist/index.mjs.map 598.22 KB
42
- ESM ⚡️ Build success in 611ms
38
+ ESM dist/mcp-configs-SHRMQHIL.mjs.map 71.00 B
39
+ ESM ⚡️ Build success in 559ms
40
+ CJS dist/index.js 353.42 KB
41
+ CJS dist/index.js.map 720.44 KB
42
+ CJS ⚡️ Build success in 559ms
43
43
  DTS Build start
44
- DTS ⚡️ Build success in 21205ms
44
+ DTS ⚡️ Build success in 20544ms
45
45
  DTS dist/index.d.ts 7.57 KB
46
46
  DTS dist/index.d.mts 7.57 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @axiom-lattice/gateway
2
2
 
3
+ ## 2.1.111
4
+
5
+ ### Patch Changes
6
+
7
+ - 4e028de: fix issues
8
+ - Updated dependencies [4e028de]
9
+ - @axiom-lattice/core@2.1.98
10
+ - @axiom-lattice/agent-eval@2.1.92
11
+ - @axiom-lattice/pg-stores@1.0.89
12
+
13
+ ## 2.1.110
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [576443a]
18
+ - @axiom-lattice/core@2.1.97
19
+ - @axiom-lattice/agent-eval@2.1.91
20
+ - @axiom-lattice/pg-stores@1.0.88
21
+
3
22
  ## 2.1.109
4
23
 
5
24
  ### Patch Changes
package/dist/index.js CHANGED
@@ -1977,6 +1977,7 @@ var init_resources = __esm({
1977
1977
  _resolveSafeSubPath(entryFile, subPath) {
1978
1978
  if (!subPath) return entryFile;
1979
1979
  if (subPath.includes("..")) throw new Error("Path traversal denied");
1980
+ if (subPath.startsWith(entryFile + "/") || subPath === entryFile) return subPath;
1980
1981
  const entryDir = this._isFilePath(entryFile) ? entryFile.replace(/[^/]+$/, "") : entryFile + "/";
1981
1982
  return (entryDir + subPath).replace(/\/+/g, "/");
1982
1983
  }