@nmshd/runtime 1.2.12 → 1.2.16
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/dist/buildInformation.js +5 -5
- package/dist/dataViews/DataViewExpander.d.ts +7 -4
- package/dist/dataViews/DataViewExpander.js +115 -31
- package/dist/dataViews/DataViewExpander.js.map +1 -1
- package/dist/dataViews/DataViewTranslateable.js +5 -5
- package/dist/dataViews/consumption/MatchedAttributesDVO.d.ts +1 -0
- package/dist/dataViews/consumption/StoredAttributeDVO.d.ts +3 -2
- package/dist/dataViews/content/AttributeDVO.d.ts +2 -4
- package/dist/dataViews/content/MailDVOs.d.ts +7 -13
- package/dist/dataViews/content/RequestDVOs.d.ts +23 -1
- package/dist/dataViews/transport/MessageDVO.d.ts +63 -9
- package/dist/dataViews/transport/MessageDVO.js +12 -4
- package/dist/dataViews/transport/MessageDVO.js.map +1 -1
- package/dist/dataViews/transport/RelationshipDVO.d.ts +33 -0
- package/dist/dataViews/transport/RelationshipDVO.js +6 -0
- package/dist/dataViews/transport/RelationshipDVO.js.map +1 -1
- package/dist/useCases/common/QRCode.js +1 -1
- package/dist/useCases/common/QRCode.js.map +1 -1
- package/lib-web/nmshd.runtime.js +163 -50
- package/lib-web/nmshd.runtime.js.map +1 -1
- package/lib-web/nmshd.runtime.min.js +2 -2
- package/lib-web/nmshd.runtime.min.js.map +1 -1
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nmshd/runtime",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.16",
|
|
4
4
|
"description": "The Enmeshed client runtime.",
|
|
5
5
|
"homepage": "https://enmeshed.eu",
|
|
6
6
|
"license": "MIT",
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
"@js-soft/logging-abstractions": "1.0.0",
|
|
50
50
|
"@js-soft/ts-serval": "1.0.2",
|
|
51
51
|
"@js-soft/ts-utils": "^1.1.1",
|
|
52
|
-
"@nmshd/consumption": "1.0.
|
|
53
|
-
"@nmshd/content": "1.1.
|
|
54
|
-
"@nmshd/crypto": "1.0.
|
|
55
|
-
"@nmshd/transport": "1.1.
|
|
56
|
-
"ajv": "^8.
|
|
52
|
+
"@nmshd/consumption": "1.0.12",
|
|
53
|
+
"@nmshd/content": "1.1.3",
|
|
54
|
+
"@nmshd/crypto": "1.0.7",
|
|
55
|
+
"@nmshd/transport": "1.1.6",
|
|
56
|
+
"ajv": "^8.9.0",
|
|
57
57
|
"ajv-errors": "^3.0.0",
|
|
58
58
|
"ajv-formats": "^2.1.1",
|
|
59
59
|
"fluent-ts-validator": "3.0.2",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@alex_neo/jest-expect-message": "^1.0.5",
|
|
69
69
|
"@js-soft/docdb-access-loki": "1.0.2",
|
|
70
|
-
"@js-soft/docdb-access-mongo": "1.0.
|
|
70
|
+
"@js-soft/docdb-access-mongo": "1.0.4",
|
|
71
71
|
"@js-soft/eslint-config-ts": "^1.4.2",
|
|
72
72
|
"@js-soft/license-check": "1.0.3",
|
|
73
73
|
"@js-soft/node-logger": "1.0.0",
|
|
@@ -75,19 +75,19 @@
|
|
|
75
75
|
"@types/jest-expect-message": "^1.0.3",
|
|
76
76
|
"@types/json-stringify-safe": "^5.0.0",
|
|
77
77
|
"@types/luxon": "^2.0.9",
|
|
78
|
-
"@types/node": "^17.0.
|
|
78
|
+
"@types/node": "^17.0.10",
|
|
79
79
|
"@types/qrcode": "^1.4.2",
|
|
80
80
|
"@types/qs": "^6.9.7",
|
|
81
|
-
"eslint": "^8.
|
|
81
|
+
"eslint": "^8.7.0",
|
|
82
82
|
"jest": "^27.4.7",
|
|
83
83
|
"madge": "^5.0.1",
|
|
84
84
|
"nodemon": "^2.0.15",
|
|
85
85
|
"prettier": "^2.5.1",
|
|
86
|
-
"ts-jest": "^27.1.
|
|
86
|
+
"ts-jest": "^27.1.3",
|
|
87
87
|
"ts-json-schema-generator": "^0.97.0",
|
|
88
88
|
"tsconfig-paths": "^3.12.0",
|
|
89
|
-
"typescript": "^4.5.
|
|
90
|
-
"webpack": "^5.
|
|
89
|
+
"typescript": "^4.5.5",
|
|
90
|
+
"webpack": "^5.66.0",
|
|
91
91
|
"webpack-cli": "^4.9.1"
|
|
92
92
|
},
|
|
93
93
|
"publishConfig": {
|