@nmshd/runtime 2.0.0-beta.19 → 2.0.0-beta.21
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.js +34 -17
- package/dist/dataViews/DataViewExpander.js.map +1 -1
- package/dist/dataViews/consumption/PeerRelationshipTemplateDVO.d.ts +4 -2
- package/dist/dataViews/transport/RelationshipDVO.d.ts +1 -0
- package/dist/dataViews/transport/RelationshipTemplateDVO.d.ts +2 -0
- package/dist/extensibility/facades/consumption/OutgoingRequestsFacade.d.ts +2 -2
- package/dist/extensibility/facades/consumption/OutgoingRequestsFacade.js.map +1 -1
- package/dist/useCases/common/SchemaRepository.js +1 -1
- package/dist/useCases/common/SchemaRepository.js.map +1 -1
- package/dist/useCases/common/Schemas.d.ts +2 -1
- package/dist/useCases/common/Schemas.js +1383 -7
- package/dist/useCases/common/Schemas.js.map +1 -1
- package/dist/useCases/consumption/requests/CanCreateOutgoingRequest.d.ts +13 -5
- package/dist/useCases/consumption/requests/CanCreateOutgoingRequest.js +14 -4
- package/dist/useCases/consumption/requests/CanCreateOutgoingRequest.js.map +1 -1
- package/lib-web/nmshd.runtime.js +1666 -242
- package/lib-web/nmshd.runtime.js.map +1 -1
- package/lib-web/nmshd.runtime.min.js +5 -5
- package/lib-web/nmshd.runtime.min.js.map +1 -1
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nmshd/runtime",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.21",
|
|
4
4
|
"description": "The Enmeshed client runtime.",
|
|
5
5
|
"homepage": "https://enmeshed.eu",
|
|
6
6
|
"license": "MIT",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"@js-soft/logging-abstractions": "1.0.0",
|
|
56
56
|
"@js-soft/ts-serval": "2.0.4",
|
|
57
57
|
"@js-soft/ts-utils": "^2.2.2",
|
|
58
|
-
"@nmshd/consumption": "2.0.0-beta.
|
|
58
|
+
"@nmshd/consumption": "2.0.0-beta.11",
|
|
59
59
|
"@nmshd/content": "2.0.0-beta.13",
|
|
60
60
|
"@nmshd/crypto": "2.0.1",
|
|
61
61
|
"@nmshd/transport": "2.0.0-beta.4",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"ajv-errors": "^3.0.0",
|
|
64
64
|
"ajv-formats": "^2.1.1",
|
|
65
65
|
"json-stringify-safe": "^5.0.1",
|
|
66
|
-
"luxon": "^3.0.
|
|
66
|
+
"luxon": "^3.0.3",
|
|
67
67
|
"qrcode": "1.5.1",
|
|
68
68
|
"reflect-metadata": "0.1.13",
|
|
69
69
|
"ts-simple-nameof": "1.3.1",
|
|
@@ -72,23 +72,23 @@
|
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@alex_neo/jest-expect-message": "^1.0.5",
|
|
74
74
|
"@js-soft/docdb-access-loki": "1.0.3",
|
|
75
|
-
"@js-soft/docdb-access-mongo": "1.1.
|
|
75
|
+
"@js-soft/docdb-access-mongo": "1.1.2",
|
|
76
76
|
"@js-soft/eslint-config-ts": "^1.6.0",
|
|
77
77
|
"@js-soft/license-check": "1.0.4",
|
|
78
78
|
"@js-soft/node-logger": "1.0.2",
|
|
79
|
-
"@types/jest": "^28.1.
|
|
79
|
+
"@types/jest": "^28.1.8",
|
|
80
80
|
"@types/jest-expect-message": "^1.0.4",
|
|
81
81
|
"@types/json-stringify-safe": "^5.0.0",
|
|
82
|
-
"@types/luxon": "^3.0.
|
|
83
|
-
"@types/node": "^18.
|
|
84
|
-
"@types/qrcode": "^1.
|
|
85
|
-
"eslint": "^8.
|
|
82
|
+
"@types/luxon": "^3.0.1",
|
|
83
|
+
"@types/node": "^18.7.15",
|
|
84
|
+
"@types/qrcode": "^1.5.0",
|
|
85
|
+
"eslint": "^8.23.0",
|
|
86
86
|
"jest": "^28.1.3",
|
|
87
87
|
"madge": "^5.0.1",
|
|
88
88
|
"prettier": "^2.7.1",
|
|
89
|
-
"ts-jest": "^28.0.
|
|
89
|
+
"ts-jest": "^28.0.8",
|
|
90
90
|
"ts-json-schema-generator": "^1.0.0",
|
|
91
|
-
"typescript": "
|
|
91
|
+
"typescript": "4.7.4",
|
|
92
92
|
"webpack": "^5.74.0",
|
|
93
93
|
"webpack-cli": "^4.10.0"
|
|
94
94
|
},
|