@nmshd/runtime 7.0.0-alpha.6 → 7.0.0-alpha.7
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/README.md +2 -2
- package/dist/Runtime.d.ts +2 -2
- package/dist/Runtime.d.ts.map +1 -1
- package/dist/Runtime.js +14 -17
- package/dist/Runtime.js.map +1 -1
- package/dist/buildInformation.js +5 -5
- package/dist/dataViews/consumption/DecidableRequestItemDVOs.d.ts +1 -0
- package/dist/dataViews/consumption/DecidableRequestItemDVOs.d.ts.map +1 -1
- package/dist/dataViews/content/RequestItemDVOs.d.ts +1 -0
- package/dist/dataViews/content/RequestItemDVOs.d.ts.map +1 -1
- package/dist/dataViews/transport/MessageDVO.d.ts +2 -2
- package/dist/events/transport/MessageDeliveredEvent.js +1 -1
- package/dist/extensibility/modules/RuntimeModule.d.ts +1 -3
- package/dist/extensibility/modules/RuntimeModule.d.ts.map +1 -1
- package/dist/extensibility/modules/RuntimeModule.js +1 -4
- package/dist/extensibility/modules/RuntimeModule.js.map +1 -1
- package/dist/extensibility/modules/RuntimeModuleRegistry.d.ts +0 -1
- package/dist/extensibility/modules/RuntimeModuleRegistry.d.ts.map +1 -1
- package/dist/extensibility/modules/RuntimeModuleRegistry.js +0 -3
- package/dist/extensibility/modules/RuntimeModuleRegistry.js.map +1 -1
- package/dist/useCases/common/RuntimeErrors.js +4 -4
- package/dist/useCases/common/Schemas.d.ts.map +1 -1
- package/dist/useCases/common/Schemas.js +30 -0
- package/dist/useCases/common/Schemas.js.map +1 -1
- package/dist/useCases/transport/relationships/DecomposeRelationship.js +1 -1
- package/package.json +9 -9
|
@@ -43,7 +43,7 @@ let DecomposeRelationshipUseCase = class DecomposeRelationshipUseCase extends co
|
|
|
43
43
|
if (!relationship.cache) {
|
|
44
44
|
return ts_utils_1.Result.fail(common_1.RuntimeErrors.general.cacheEmpty(transport_1.Relationship, relationship.id.toString()));
|
|
45
45
|
}
|
|
46
|
-
//
|
|
46
|
+
// Backbone call first so nothing is deleted in case it goes wrong
|
|
47
47
|
await this.relationshipsController.decompose(relationship.id);
|
|
48
48
|
await this.accountController.cleanupDataOfDecomposedRelationship(relationship);
|
|
49
49
|
await this.consumptionController.cleanupDataOfDecomposedRelationship(relationship.peer.address, relationship.id);
|
package/package.json
CHANGED
|
@@ -64,19 +64,19 @@
|
|
|
64
64
|
"@js-soft/logging-abstractions": "^1.0.1",
|
|
65
65
|
"@js-soft/ts-serval": "2.0.12",
|
|
66
66
|
"@js-soft/ts-utils": "^2.3.3",
|
|
67
|
-
"@nmshd/consumption": "7.0.0-alpha.
|
|
68
|
-
"@nmshd/content": "7.0.0-alpha.
|
|
69
|
-
"@nmshd/core-types": "7.0.0-alpha.
|
|
70
|
-
"@nmshd/crypto": "2.1.
|
|
67
|
+
"@nmshd/consumption": "7.0.0-alpha.7",
|
|
68
|
+
"@nmshd/content": "7.0.0-alpha.7",
|
|
69
|
+
"@nmshd/core-types": "7.0.0-alpha.7",
|
|
70
|
+
"@nmshd/crypto": "2.1.1",
|
|
71
71
|
"@nmshd/iql": "^1.0.2",
|
|
72
|
-
"@nmshd/transport": "7.0.0-alpha.
|
|
72
|
+
"@nmshd/transport": "7.0.0-alpha.7",
|
|
73
73
|
"@nmshd/typescript-ioc": "3.2.4",
|
|
74
74
|
"ajv": "^8.17.1",
|
|
75
75
|
"ajv-errors": "^3.0.0",
|
|
76
76
|
"ajv-formats": "^3.0.1",
|
|
77
77
|
"json-stringify-safe": "^5.0.1",
|
|
78
78
|
"lodash": "^4.17.21",
|
|
79
|
-
"luxon": "^3.
|
|
79
|
+
"luxon": "^3.6.1",
|
|
80
80
|
"qrcode": "1.5.4",
|
|
81
81
|
"reflect-metadata": "^0.2.2",
|
|
82
82
|
"ts-simple-nameof": "^1.3.1"
|
|
@@ -87,14 +87,14 @@
|
|
|
87
87
|
"@js-soft/node-logger": "1.2.0",
|
|
88
88
|
"@types/json-stringify-safe": "^5.0.3",
|
|
89
89
|
"@types/lodash": "^4.17.16",
|
|
90
|
-
"@types/luxon": "^3.
|
|
90
|
+
"@types/luxon": "^3.6.2",
|
|
91
91
|
"@types/qrcode": "^1.5.5",
|
|
92
|
-
"ts-json-schema-generator": "2.
|
|
92
|
+
"ts-json-schema-generator": "2.4.0",
|
|
93
93
|
"ts-mockito": "^2.6.1"
|
|
94
94
|
},
|
|
95
95
|
"publishConfig": {
|
|
96
96
|
"access": "public",
|
|
97
97
|
"provenance": true
|
|
98
98
|
},
|
|
99
|
-
"version": "7.0.0-alpha.
|
|
99
|
+
"version": "7.0.0-alpha.7"
|
|
100
100
|
}
|