@eik/service 5.2.3 → 5.2.5

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.5](https://github.com/eik-lib/service/compare/v5.2.4...v5.2.5) (2026-08-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @fastify/jwt to v10.2.2 ([#790](https://github.com/eik-lib/service/issues/790)) ([c420c8c](https://github.com/eik-lib/service/commit/c420c8c19309536ac7a57a246a1d06d34df397d6))
7
+
8
+ ## [5.2.4](https://github.com/eik-lib/service/compare/v5.2.3...v5.2.4) (2026-08-14)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * bump @eik/core to 2.1.76 ([#788](https://github.com/eik-lib/service/issues/788)) ([d763126](https://github.com/eik-lib/service/commit/d7631260390d770d6c68b3088bc9b20cacc806b6))
14
+
1
15
  ## [5.2.3](https://github.com/eik-lib/service/compare/v5.2.2...v5.2.3) (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.3",
3
+ "version": "5.2.5",
4
4
  "description": "Eik REST API as a standalone HTTP service",
5
5
  "type": "module",
6
6
  "main": "./lib/main.js",
@@ -43,13 +43,13 @@
43
43
  },
44
44
  "homepage": "https://github.com/eik-lib/service#readme",
45
45
  "dependencies": {
46
- "@eik/core": "2.1.75",
46
+ "@eik/core": "2.1.76",
47
47
  "@eik/sink": "1.2.7",
48
48
  "@eik/sink-file-system": "2.0.40",
49
49
  "@eik/sink-memory": "2.0.37",
50
50
  "@fastify/compress": "9.2.0",
51
51
  "@fastify/cors": "11.3.0",
52
- "@fastify/jwt": "10.2.1",
52
+ "@fastify/jwt": "10.2.2",
53
53
  "convict": "6.2.5",
54
54
  "fastify": "5.11.3",
55
55
  "http-errors": "2.0.1",
package/types/main.d.ts CHANGED
@@ -481,7 +481,12 @@ declare const EikService: {
481
481
  readonly metrics: import("@metrics/client");
482
482
  _parser(incoming: any): Promise<any>;
483
483
  _writeEikJson(incoming: any, capturedEikJson: Record<string, any> | null): Promise<void>;
484
- _readVersions(incoming: any): Promise<{
484
+ _readVersions(incoming: any): Promise<InstanceType<new ({ versions, type, name, org }?: {
485
+ versions?: [any, any][];
486
+ type?: string;
487
+ name?: string;
488
+ org?: string;
489
+ }) => {
485
490
  _versions: Map<any, any>;
486
491
  _type: string;
487
492
  _name: string;
@@ -500,7 +505,7 @@ declare const EikService: {
500
505
  org: string;
501
506
  };
502
507
  get [Symbol.toStringTag](): string;
503
- }>;
508
+ }>>;
504
509
  _readVersion(incoming: any): Promise<boolean>;
505
510
  _writeVersions(incoming: any, versions: any): Promise<void>;
506
511
  handler(req: any, user: any, type: string, name: string, version: string): Promise<{
@@ -574,7 +579,12 @@ declare const EikService: {
574
579
  readonly metrics: import("@metrics/client");
575
580
  _parser(incoming: any): Promise<any>;
576
581
  _writeEikJson(incoming: any, capturedEikJson: Record<string, any> | null): Promise<void>;
577
- _readVersions(incoming: any): Promise<{
582
+ _readVersions(incoming: any): Promise<InstanceType<new ({ versions, type, name, org }?: {
583
+ versions?: [any, any][];
584
+ type?: string;
585
+ name?: string;
586
+ org?: string;
587
+ }) => {
578
588
  _versions: Map<any, any>;
579
589
  _type: string;
580
590
  _name: string;
@@ -593,7 +603,7 @@ declare const EikService: {
593
603
  org: string;
594
604
  };
595
605
  get [Symbol.toStringTag](): string;
596
- }>;
606
+ }>>;
597
607
  _readVersion(incoming: any): Promise<boolean>;
598
608
  _writeVersions(incoming: any, versions: any): Promise<void>;
599
609
  handler(req: any, user: any, type: string, name: string, version: string): Promise<{
@@ -672,7 +682,12 @@ declare const EikService: {
672
682
  file: any;
673
683
  path: any;
674
684
  }): Promise<string>;
675
- _readVersions(incoming: any): Promise<{
685
+ _readVersions(incoming: any): Promise<InstanceType<new ({ versions, type, name, org }?: {
686
+ versions?: [any, any][];
687
+ type?: string;
688
+ name?: string;
689
+ org?: string;
690
+ }) => {
676
691
  _versions: Map<any, any>;
677
692
  _type: string;
678
693
  _name: string;
@@ -691,7 +706,7 @@ declare const EikService: {
691
706
  org: string;
692
707
  };
693
708
  get [Symbol.toStringTag](): string;
694
- }>;
709
+ }>>;
695
710
  _writeVersions(incoming: any, versions: any): Promise<void>;
696
711
  handler(req: any, user: any, name: string, version: string): Promise<{
697
712
  _cacheControl: string;