@siduri-x/api 2.0.8 → 2.0.10

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,4 +1,4 @@
1
1
 
2
- > @siduri-x/api@2.0.6 build /home/zagin/Projects/vxnus-studio/projects/siduri-x/apps/api
2
+ > @siduri-x/api@2.0.10 build /home/zagin/Projects/vxnus-studio/projects/siduri-x/apps/api
3
3
  > tsc
4
4
 
@@ -1,11 +1,9 @@
1
1
 
2
- > @siduri-x/api@2.0.6 test /home/zagin/Projects/vxnus-studio/projects/siduri-x/apps/api
2
+ > @siduri-x/api@2.0.10 test /home/zagin/Projects/vxnus-studio/projects/siduri-x/apps/api
3
3
  > jest --config jest.config.json
4
4
 
5
- PASS src/context-mapper.test.ts (11.22 s)
6
- PASS src/index.test.ts (13.131 s)
7
- PASS src/t5-experience.test.ts (13.22 s)
8
- PASS src/runtime.test.ts (12.627 s)
5
+ PASS src/context-mapper.test.ts (14.575 s)
6
+ PASS src/runtime.test.ts (14.839 s)
9
7
  ● Console
10
8
 
11
9
  console.error
@@ -26,18 +24,20 @@ PASS src/runtime.test.ts (12.627 s)
26
24
  at PerceptionPipeline.execute (../../packages/core/dist/perception-pipeline.js:21:34)
27
25
  at Object.<anonymous> (src/runtime.test.ts:74:22)
28
26
 
29
- PASS src/knowledge.test.ts
27
+ PASS src/t6-security.test.ts (16.358 s)
28
+ PASS src/t4-gating.test.ts (15.402 s)
29
+ PASS src/t7-release.test.ts
30
+ PASS src/index.test.ts (15.608 s)
30
31
  PASS src/smoke.test.ts
31
32
  PASS src/auth.test.ts
32
- PASS src/t7-release.test.ts
33
- PASS src/b0-b6.test.ts
34
- PASS src/t6-security.test.ts (14.16 s)
35
- PASS src/t4-gating.test.ts (14.149 s)
36
- PASS src/teach-mode.test.ts (13.83 s)
33
+ PASS src/t5-experience.test.ts (16.078 s)
34
+ PASS src/teach-mode.test.ts (16.355 s)
37
35
  PASS src/boot.test.ts
36
+ PASS src/knowledge.test.ts
37
+ PASS src/b0-b6.test.ts
38
38
  
39
39
  Test Suites: 13 passed, 13 total
40
40
  Tests: 90 passed, 90 total
41
41
  Snapshots: 0 total
42
- Time: 17.611 s
42
+ Time: 21.926 s
43
43
  Ran all test suites.
package/dist/index.js CHANGED
@@ -19,7 +19,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
20
  exports.app = exports.createApp = void 0;
21
21
  const dotenv_1 = __importDefault(require("dotenv"));
22
- dotenv_1.default.config();
22
+ dotenv_1.default.config({ override: true });
23
23
  const promises_1 = require("node:fs/promises");
24
24
  const node_path_1 = __importDefault(require("node:path"));
25
25
  const app_1 = require("./app");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siduri-x/api",
3
- "version": "2.0.8",
3
+ "version": "2.0.10",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -13,16 +13,16 @@
13
13
  "dotenv": "^17.4.2",
14
14
  "express": "^5.2.1",
15
15
  "@siduri-x/body": "2.0.1",
16
- "@siduri-x/brain": "2.0.4",
17
- "@siduri-x/core": "2.0.6",
16
+ "@siduri-x/brain": "2.0.5",
17
+ "@siduri-x/core": "2.0.7",
18
18
  "@siduri-x/ear": "2.0.1",
19
19
  "@siduri-x/eknowledge": "2.0.1",
20
20
  "@siduri-x/hands": "2.0.1",
21
21
  "@siduri-x/knowledge": "2.0.3",
22
22
  "@siduri-x/memory": "2.0.4",
23
23
  "@siduri-x/mouth": "2.0.2",
24
- "@siduri-x/observation": "2.0.1",
25
24
  "@siduri-x/self": "2.0.4",
25
+ "@siduri-x/observation": "2.0.1",
26
26
  "@siduri-x/vision": "2.0.1",
27
27
  "@siduri-x/voice": "2.0.2"
28
28
  },
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import dotenv from 'dotenv';
2
- dotenv.config();
2
+ dotenv.config({ override: true });
3
3
 
4
4
  import { readFile } from 'node:fs/promises';
5
5
  import path from 'node:path';