@nmshd/runtime 7.5.11 → 7.5.12

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.
@@ -7,11 +7,11 @@ const content_1 = require("@nmshd/content");
7
7
  const crypto_1 = require("@nmshd/crypto");
8
8
  const transport_1 = require("@nmshd/transport");
9
9
  exports.buildInformation = {
10
- version: "7.5.11",
11
- build: "419",
12
- date: "2026-08-14T04:14:39+00:00",
13
- commit: "ab82709566b1776cd1b30d36f38a669af7c7ce95",
14
- dependencies: {"@js-soft/docdb-querytranslator":"^1.1.7","@js-soft/logging-abstractions":"^1.2.5","@js-soft/ts-serval":"2.0.17","@js-soft/ts-utils":"^2.3.6","@nmshd/consumption":"*","@nmshd/content":"*","@nmshd/core-types":"*","@nmshd/crypto":"3.0.3","@nmshd/iql":"^1.0.5","@nmshd/runtime-types":"*","@nmshd/transport":"*","@nmshd/typescript-ioc":"3.2.6","ajv":"^8.20.0","ajv-errors":"^3.0.0","ajv-formats":"^3.0.1","elliptic":"^6.6.1","json-stringify-safe":"^5.0.1","lodash":"^4.18.1","luxon":"^3.7.2","reflect-metadata":"^0.2.2","ts-simple-nameof":"^1.3.3"},
10
+ version: "7.5.12",
11
+ build: "420",
12
+ date: "2026-08-20T13:29:28+00:00",
13
+ commit: "55705c66bf1253fae8a13f34ef613262531e88b9",
14
+ dependencies: {"@js-soft/docdb-querytranslator":"^1.1.7","@js-soft/logging-abstractions":"^1.2.5","@js-soft/ts-serval":"2.0.17","@js-soft/ts-utils":"^2.3.6","@nmshd/consumption":"*","@nmshd/content":"*","@nmshd/core-types":"*","@nmshd/crypto":"3.0.4","@nmshd/iql":"^1.0.5","@nmshd/runtime-types":"*","@nmshd/transport":"*","@nmshd/typescript-ioc":"3.2.6","ajv":"^8.20.0","ajv-errors":"^3.0.0","ajv-formats":"^3.0.1","elliptic":"^6.6.1","json-stringify-safe":"^5.0.1","lodash":"^4.18.1","luxon":"^3.7.2","reflect-metadata":"^0.2.2","ts-simple-nameof":"^1.3.3"},
15
15
  libraries: {
16
16
  serval: ts_serval_1.buildInformation,
17
17
  consumption: consumption_1.buildInformation,
package/package.json CHANGED
@@ -22,11 +22,11 @@
22
22
  "build:schemas": "node scripts/buildSchemas.mjs",
23
23
  "cdep": "tsc && depcruise --config ../../.dependency-cruiser.cjs dist",
24
24
  "lint:tsc": "tsc --noEmit && tsc -p test/tsconfig.json --noEmit",
25
- "test:ci:lokijs": "USE_LOKIJS=true jest -i --coverage",
26
- "test:ci:mongodb": "jest -i --coverage",
27
- "test:local:ferretdb": "npm run test:local:start:ferretdb && CONNECTION_STRING='mongodb://root:example@localhost:27022' jest",
28
- "test:local:lokijs": "USE_LOKIJS=true jest",
29
- "test:local:mongodb": "npm run test:local:start:mongodb && CONNECTION_STRING='mongodb://root:example@localhost:27021' jest",
25
+ "test:ci:lokijs": "USE_LOKIJS=true NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest -i --coverage",
26
+ "test:ci:mongodb": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest -i --coverage",
27
+ "test:local:ferretdb": "npm run test:local:start:ferretdb && CONNECTION_STRING='mongodb://root:example@localhost:27022' NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
28
+ "test:local:lokijs": "USE_LOKIJS=true NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
29
+ "test:local:mongodb": "npm run test:local:start:mongodb && CONNECTION_STRING='mongodb://root:example@localhost:27021' NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
30
30
  "test:local:start:ferretdb": "docker compose -f ../../.dev/compose.yml up -d runtime-ferret",
31
31
  "test:local:start:mongodb": "docker compose -f ../../.dev/compose.yml up -d runtime-mongo",
32
32
  "test:local:teardown": "docker compose -f ../../.dev/compose.yml rm -fsv"
@@ -42,7 +42,9 @@
42
42
  "lcov"
43
43
  ],
44
44
  "maxWorkers": 1,
45
- "preset": "ts-jest",
45
+ "extensionsToTreatAsEsm": [
46
+ ".ts"
47
+ ],
46
48
  "setupFilesAfterEnv": [
47
49
  "./test/customMatchers.ts",
48
50
  "./test/disableTimeoutForDebugging.ts",
@@ -52,28 +54,17 @@
52
54
  "testEnvironment": "node",
53
55
  "testTimeout": 60000,
54
56
  "transform": {
55
- "^.+\\.(t|j)s$": [
57
+ "^.+\\.ts$": [
56
58
  "ts-jest",
57
59
  {
58
- "tsconfig": "test/tsconfig.json"
59
- }
60
- ],
61
- "^.+\\.mjs$": [
62
- "babel-jest",
63
- {
64
- "presets": [
65
- [
66
- "@babel/preset-env",
67
- {
68
- "modules": "commonjs"
69
- }
70
- ]
71
- ]
60
+ "tsconfig": "test/tsconfig.json",
61
+ "useESM": true
72
62
  }
73
63
  ]
74
64
  },
75
65
  "moduleNameMapper": {
76
- "^@verifiables/request-converter$": "<rootDir>/../../node_modules/@verifiables/request-converter/dist/index.js"
66
+ "^@verifiables/request-converter$": "<rootDir>/../../node_modules/@verifiables/request-converter/dist/index.js",
67
+ "^webcrypto-core$": "<rootDir>/../../node_modules/webcrypto-core/build/webcrypto-core.js"
77
68
  },
78
69
  "transformIgnorePatterns": [
79
70
  "[/\\\\]packages[/\\\\][^/\\\\]+[/\\\\]dist[/\\\\]",
@@ -85,13 +76,13 @@
85
76
  "@js-soft/logging-abstractions": "^1.2.5",
86
77
  "@js-soft/ts-serval": "2.0.17",
87
78
  "@js-soft/ts-utils": "^2.3.6",
88
- "@nmshd/consumption": "7.5.11",
89
- "@nmshd/content": "7.5.11",
90
- "@nmshd/core-types": "7.5.11",
91
- "@nmshd/crypto": "3.0.3",
79
+ "@nmshd/consumption": "7.5.12",
80
+ "@nmshd/content": "7.5.12",
81
+ "@nmshd/core-types": "7.5.12",
82
+ "@nmshd/crypto": "3.0.4",
92
83
  "@nmshd/iql": "^1.0.5",
93
- "@nmshd/runtime-types": "7.5.11",
94
- "@nmshd/transport": "7.5.11",
84
+ "@nmshd/runtime-types": "7.5.12",
85
+ "@nmshd/transport": "7.5.12",
95
86
  "@nmshd/typescript-ioc": "3.2.6",
96
87
  "ajv": "^8.20.0",
97
88
  "ajv-errors": "^3.0.0",
@@ -104,18 +95,18 @@
104
95
  "ts-simple-nameof": "^1.3.3"
105
96
  },
106
97
  "devDependencies": {
107
- "@eudiplo/sdk-core": "6.2.0",
98
+ "@eudiplo/sdk-core": "7.0.1",
108
99
  "@js-soft/docdb-access-loki": "1.4.3",
109
100
  "@js-soft/docdb-access-mongo": "1.4.3",
110
- "@js-soft/node-logger": "1.2.9",
111
- "@nmshd/connector-sdk": "7.4.3",
101
+ "@js-soft/node-logger": "1.2.10",
102
+ "@nmshd/connector-sdk": "7.4.5",
112
103
  "@types/elliptic": "6.4.18",
113
104
  "@types/jest": "30.0.0",
114
105
  "@types/json-stringify-safe": "5.0.3",
115
106
  "@types/lodash": "4.17.25",
116
107
  "@types/luxon": "3.7.4",
117
108
  "jwt-decode": "4.0.0",
118
- "openid-client": "6.8.4",
109
+ "openid-client": "6.8.5",
119
110
  "ts-json-schema-generator": "2.9.0",
120
111
  "ts-mockito": "2.6.1"
121
112
  },
@@ -123,5 +114,5 @@
123
114
  "access": "public",
124
115
  "provenance": true
125
116
  },
126
- "version": "7.5.11"
117
+ "version": "7.5.12"
127
118
  }