@axiom-lattice/gateway 2.1.53 → 2.1.55

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 (42) hide show
  1. package/.turbo/turbo-build.log +8 -8
  2. package/CHANGELOG.md +19 -0
  3. package/dist/index.js +1043 -526
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.mjs +977 -449
  6. package/dist/index.mjs.map +1 -1
  7. package/jest.config.js +5 -0
  8. package/package.json +6 -5
  9. package/src/__tests__/__mocks__/e2b.ts +1 -0
  10. package/src/__tests__/channel-installations.test.ts +199 -0
  11. package/src/__tests__/sandbox-provider-registration.test.ts +74 -0
  12. package/src/__tests__/workspace.test.ts +119 -8
  13. package/src/channels/__tests__/routes.test.ts +71 -0
  14. package/src/channels/lark/README.md +187 -0
  15. package/src/channels/lark/__tests__/aggregator.test.ts +23 -0
  16. package/src/channels/lark/__tests__/controller.test.ts +270 -0
  17. package/src/channels/lark/__tests__/mapping-service.test.ts +118 -0
  18. package/src/channels/lark/__tests__/parser.test.ts +72 -0
  19. package/src/channels/lark/__tests__/sender.test.ts +37 -0
  20. package/src/channels/lark/__tests__/verification.test.ts +157 -0
  21. package/src/channels/lark/aggregator.ts +16 -0
  22. package/src/channels/lark/config.ts +44 -0
  23. package/src/channels/lark/controller.ts +189 -0
  24. package/src/channels/lark/mapping-service.ts +138 -0
  25. package/src/channels/lark/parser.ts +68 -0
  26. package/src/channels/lark/routes.ts +121 -0
  27. package/src/channels/lark/runner.ts +37 -0
  28. package/src/channels/lark/sender.ts +58 -0
  29. package/src/channels/lark/types.ts +33 -0
  30. package/src/channels/lark/verification.ts +67 -0
  31. package/src/channels/routes.ts +25 -0
  32. package/src/controllers/channel-installations.ts +354 -0
  33. package/src/controllers/sandbox.ts +30 -80
  34. package/src/controllers/skills.ts +71 -321
  35. package/src/controllers/threads.ts +8 -6
  36. package/src/controllers/workspace.ts +64 -179
  37. package/src/index.ts +28 -5
  38. package/src/routes/channel-installations.ts +33 -0
  39. package/src/routes/index.ts +6 -0
  40. package/src/schemas/index.ts +2 -2
  41. package/src/services/sandbox_service.ts +21 -21
  42. package/src/services/skill_service.ts +97 -0
@@ -1,5 +1,5 @@
1
1
 
2
- > @axiom-lattice/gateway@2.1.53 build /home/runner/work/agentic/agentic/packages/gateway
2
+ > @axiom-lattice/gateway@2.1.55 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
@@ -9,13 +9,13 @@
9
9
  CLI Cleaning output folder
10
10
  CJS Build start
11
11
  ESM Build start
12
- CJS dist/index.js 173.70 KB
13
- CJS dist/index.js.map 370.35 KB
14
- CJS ⚡️ Build success in 319ms
15
- ESM dist/index.mjs 170.28 KB
16
- ESM dist/index.mjs.map 370.85 KB
17
- ESM ⚡️ Build success in 320ms
12
+ CJS dist/index.js 187.77 KB
13
+ CJS dist/index.js.map 403.05 KB
14
+ CJS ⚡️ Build success in 239ms
15
+ ESM dist/index.mjs 184.87 KB
16
+ ESM dist/index.mjs.map 403.64 KB
17
+ ESM ⚡️ Build success in 255ms
18
18
  DTS Build start
19
- DTS ⚡️ Build success in 9215ms
19
+ DTS ⚡️ Build success in 11050ms
20
20
  DTS dist/index.d.ts 3.76 KB
21
21
  DTS dist/index.d.mts 3.76 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @axiom-lattice/gateway
2
2
 
3
+ ## 2.1.55
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [4a70a4d]
8
+ - @axiom-lattice/core@2.1.49
9
+ - @axiom-lattice/pg-stores@1.0.39
10
+
11
+ ## 2.1.54
12
+
13
+ ### Patch Changes
14
+
15
+ - 5444ad4: update
16
+ - Updated dependencies [5444ad4]
17
+ - @axiom-lattice/core@2.1.48
18
+ - @axiom-lattice/pg-stores@1.0.38
19
+ - @axiom-lattice/protocols@2.1.26
20
+ - @axiom-lattice/queue-redis@1.0.25
21
+
3
22
  ## 2.1.53
4
23
 
5
24
  ### Patch Changes