@eik/service 5.2.0 → 5.2.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [5.2.2](https://github.com/eik-lib/service/compare/v5.2.1...v5.2.2) (2026-08-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * bump @eik/core to 2.1.74 ([#786](https://github.com/eik-lib/service/issues/786)) ([4a9aee3](https://github.com/eik-lib/service/commit/4a9aee381542cf9e1e587226936d08b4cd0e9528))
7
+
8
+ ## [5.2.1](https://github.com/eik-lib/service/compare/v5.2.0...v5.2.1) (2026-08-14)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * bump @eik/core to 2.1.73 ([#785](https://github.com/eik-lib/service/issues/785)) ([2199b00](https://github.com/eik-lib/service/commit/2199b00176017a2b2a7b8ab236e2d1ad657b1717))
14
+
1
15
  # [5.2.0](https://github.com/eik-lib/service/compare/v5.1.69...v5.2.0) (2026-08-14)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/service",
3
- "version": "5.2.0",
3
+ "version": "5.2.2",
4
4
  "description": "Eik REST API as a standalone HTTP service",
5
5
  "type": "module",
6
6
  "main": "./lib/main.js",
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "homepage": "https://github.com/eik-lib/service#readme",
45
45
  "dependencies": {
46
- "@eik/core": "2.1.72",
46
+ "@eik/core": "2.1.74",
47
47
  "@eik/sink": "1.2.7",
48
48
  "@eik/sink-file-system": "2.0.40",
49
49
  "@eik/sink-memory": "2.0.37",
package/types/main.d.ts CHANGED
@@ -480,6 +480,7 @@ declare const EikService: {
480
480
  };
481
481
  readonly metrics: import("@metrics/client");
482
482
  _parser(incoming: any): Promise<any>;
483
+ _writeEikJson(incoming: any, capturedEikJson: Record<string, any> | null): Promise<void>;
483
484
  _readVersions(incoming: any): Promise<{
484
485
  _versions: Map<any, any>;
485
486
  _type: string;
@@ -572,6 +573,7 @@ declare const EikService: {
572
573
  };
573
574
  readonly metrics: import("@metrics/client");
574
575
  _parser(incoming: any): Promise<any>;
576
+ _writeEikJson(incoming: any, capturedEikJson: Record<string, any> | null): Promise<void>;
575
577
  _readVersions(incoming: any): Promise<{
576
578
  _versions: Map<any, any>;
577
579
  _type: string;