@axiom-lattice/gateway 2.1.111 → 2.1.113

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.
Files changed (32) hide show
  1. package/.turbo/turbo-build.log +13 -13
  2. package/CHANGELOG.md +20 -0
  3. package/dist/index.js +2118 -319
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.mjs +1948 -145
  6. package/dist/index.mjs.map +1 -1
  7. package/package.json +5 -6
  8. package/src/controllers/__tests__/workflow-tracking.test.ts +113 -0
  9. package/src/controllers/connections.ts +7 -0
  10. package/src/controllers/eval.ts +44 -4
  11. package/src/controllers/export-import.ts +166 -0
  12. package/src/controllers/run.ts +30 -4
  13. package/src/controllers/workflow-tracking.ts +105 -11
  14. package/src/export_registrations/a2a-api-key.registration.ts +89 -0
  15. package/src/export_registrations/agent.registration.ts +80 -0
  16. package/src/export_registrations/binding.registration.ts +106 -0
  17. package/src/export_registrations/channel-installation.registration.ts +88 -0
  18. package/src/export_registrations/collection.registration.ts +85 -0
  19. package/src/export_registrations/connection.registration.ts +97 -0
  20. package/src/export_registrations/database-config.registration.ts +94 -0
  21. package/src/export_registrations/eval.registration.ts +334 -0
  22. package/src/export_registrations/index.ts +31 -0
  23. package/src/export_registrations/mcp-config.registration.ts +97 -0
  24. package/src/export_registrations/menu.registration.ts +91 -0
  25. package/src/export_registrations/metrics-config.registration.ts +94 -0
  26. package/src/export_registrations/skill.registration.ts +88 -0
  27. package/src/export_registrations/task.registration.ts +99 -0
  28. package/src/index.ts +18 -8
  29. package/src/routes/index.ts +42 -1
  30. package/src/services/ExportImportService.ts +296 -0
  31. package/src/services/__tests__/ExportImportService.test.ts +130 -0
  32. package/src/services/eval-runner.ts +63 -55
@@ -1,5 +1,5 @@
1
1
 
2
- > @axiom-lattice/gateway@2.1.111 build /home/runner/work/agentic/agentic/packages/gateway
2
+ > @axiom-lattice/gateway@2.1.113 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
@@ -11,36 +11,36 @@
11
11
  ESM Build start
12
12
  [warn] ▲ [WARNING] "import.meta" is not available with the "cjs" output format and will be empty [empty-import-meta]
13
13
 
14
- src/index.ts:199:33:
15
-  199 │ const __filename = fileURLToPath(import.meta.url);
14
+ src/index.ts:201:33:
15
+  201 │ const __filename = fileURLToPath(import.meta.url);
16
16
  ╵ ~~~~~~~~~~~
17
17
 
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 409.50 KB
22
+ CJS dist/index.js.map 832.55 KB
23
+ CJS ⚡️ Build success in 655ms
24
+ ESM dist/index.mjs 338.80 KB
21
25
  ESM dist/mcp-configs-SHRMQHIL.mjs 685.00 B
22
26
  ESM dist/chunk-K4XELOSO.mjs 12.52 KB
23
27
  ESM dist/sender-PX32VSHB.mjs 873.00 B
24
28
  ESM dist/WechatChannelAdapter-WSDKR4OA.mjs 8.27 KB
25
- ESM dist/a2a-ERG5RMUW.mjs 15.95 KB
26
29
  ESM dist/chunk-6CUQGDJI.mjs 6.42 KB
27
- ESM dist/index.mjs 282.73 KB
30
+ ESM dist/a2a-ERG5RMUW.mjs 15.95 KB
28
31
  ESM dist/resources-VA7LSDKN.mjs 15.81 KB
29
32
  ESM dist/chunk-LHQY46YB.mjs 1.46 KB
33
+ ESM dist/mcp-configs-SHRMQHIL.mjs.map 71.00 B
30
34
  ESM dist/chunk-K4XELOSO.mjs.map 25.53 KB
31
35
  ESM dist/sender-PX32VSHB.mjs.map 2.07 KB
32
36
  ESM dist/WechatChannelAdapter-WSDKR4OA.mjs.map 16.28 KB
33
- ESM dist/a2a-ERG5RMUW.mjs.map 32.14 KB
34
37
  ESM dist/chunk-6CUQGDJI.mjs.map 14.04 KB
38
+ ESM dist/a2a-ERG5RMUW.mjs.map 32.14 KB
35
39
  ESM dist/resources-VA7LSDKN.mjs.map 29.34 KB
36
40
  ESM dist/chunk-LHQY46YB.mjs.map 2.39 KB
37
- ESM dist/index.mjs.map 598.22 KB
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
41
+ ESM dist/index.mjs.map 710.34 KB
42
+ ESM ⚡️ Build success in 670ms
43
43
  DTS Build start
44
- DTS ⚡️ Build success in 20544ms
44
+ DTS ⚡️ Build success in 20229ms
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,25 @@
1
1
  # @axiom-lattice/gateway
2
2
 
3
+ ## 2.1.113
4
+
5
+ ### Patch Changes
6
+
7
+ - 2feab5c: add sse enhance
8
+ - Updated dependencies [2feab5c]
9
+ - @axiom-lattice/core@2.1.100
10
+ - @axiom-lattice/pg-stores@1.0.91
11
+
12
+ ## 2.1.112
13
+
14
+ ### Patch Changes
15
+
16
+ - 2d1c9f4: enhance core
17
+ - Updated dependencies [2d1c9f4]
18
+ - @axiom-lattice/core@2.1.99
19
+ - @axiom-lattice/pg-stores@1.0.90
20
+ - @axiom-lattice/protocols@2.1.51
21
+ - @axiom-lattice/queue-redis@1.0.50
22
+
3
23
  ## 2.1.111
4
24
 
5
25
  ### Patch Changes