@nmshd/app-runtime 6.50.4 → 6.51.0
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/AppRuntimeErrors.d.ts +0 -4
- package/dist/AppRuntimeErrors.d.ts.map +1 -1
- package/dist/AppRuntimeErrors.js +0 -12
- package/dist/AppRuntimeErrors.js.map +1 -1
- package/dist/buildInformation.js +4 -4
- package/dist/modules/AppRuntimeModule.d.ts +0 -1
- package/dist/modules/AppRuntimeModule.d.ts.map +1 -1
- package/dist/modules/AppRuntimeModule.js +0 -4
- package/dist/modules/AppRuntimeModule.js.map +1 -1
- package/package.json +2 -2
@@ -17,13 +17,9 @@ declare class General {
|
|
17
17
|
noAccountAvailableForIdentityTruncated(): ApplicationError;
|
18
18
|
}
|
19
19
|
declare class Startup {
|
20
|
-
bootstrapError(bootstrapError?: Error): ApplicationError;
|
21
|
-
bootstrapperNotInitialized(): ApplicationError;
|
22
20
|
uiBridgeAlreadyRegistered(): ApplicationError;
|
23
21
|
}
|
24
22
|
declare class PushNotificationModule {
|
25
|
-
subscriptionNotPossible(details: string, rootError?: Error): ApplicationError;
|
26
|
-
unsubscriptionNotPossible(details: string, rootError?: Error): ApplicationError;
|
27
23
|
tokenRegistrationNotPossible(details: string, rootError?: Error): ApplicationError;
|
28
24
|
}
|
29
25
|
declare class Modules {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"AppRuntimeErrors.d.ts","sourceRoot":"","sources":["../src/AppRuntimeErrors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAErD,cAAM,kBAAkB;IACb,QAAQ,IAAI,gBAAgB;IAI5B,SAAS,IAAI,gBAAgB;IAI7B,gBAAgB,IAAI,gBAAgB;IAIpC,wBAAwB,IAAI,gBAAgB;IAI5C,0BAA0B,IAAI,gBAAgB;IAO9C,mBAAmB,IAAI,gBAAgB;IAIvC,yBAAyB,IAAI,gBAAgB;IAI7C,sBAAsB,IAAI,gBAAgB;CAMpD;AAED,cAAM,OAAO;IACF,yBAAyB,IAAI,gBAAgB;IAI7C,kBAAkB,IAAI,gBAAgB;IAOtC,sBAAsB,IAAI,gBAAgB;IAI1C,kBAAkB,CAAC,KAAK,CAAC,EAAE,KAAK,GAAG,gBAAgB;IAInD,sCAAsC,IAAI,gBAAgB;CAOpE;AAED,cAAM,OAAO;IACF,
|
1
|
+
{"version":3,"file":"AppRuntimeErrors.d.ts","sourceRoot":"","sources":["../src/AppRuntimeErrors.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAErD,cAAM,kBAAkB;IACb,QAAQ,IAAI,gBAAgB;IAI5B,SAAS,IAAI,gBAAgB;IAI7B,gBAAgB,IAAI,gBAAgB;IAIpC,wBAAwB,IAAI,gBAAgB;IAI5C,0BAA0B,IAAI,gBAAgB;IAO9C,mBAAmB,IAAI,gBAAgB;IAIvC,yBAAyB,IAAI,gBAAgB;IAI7C,sBAAsB,IAAI,gBAAgB;CAMpD;AAED,cAAM,OAAO;IACF,yBAAyB,IAAI,gBAAgB;IAI7C,kBAAkB,IAAI,gBAAgB;IAOtC,sBAAsB,IAAI,gBAAgB;IAI1C,kBAAkB,CAAC,KAAK,CAAC,EAAE,KAAK,GAAG,gBAAgB;IAInD,sCAAsC,IAAI,gBAAgB;CAOpE;AAED,cAAM,OAAO;IACF,yBAAyB,IAAI,gBAAgB;CAGvD;AAED,cAAM,sBAAsB;IACjB,4BAA4B,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,KAAK,GAAG,gBAAgB;CAO5F;AAED,cAAM,OAAO;IACT,SAAgB,sBAAsB,yBAAgC;CACzE;AAED,qBAAa,gBAAgB;IACzB,gBAAuB,kBAAkB,qBAA4B;IACrE,gBAAuB,OAAO,UAAiB;IAC/C,gBAAuB,OAAO,UAAiB;IAC/C,gBAAuB,OAAO,UAAiB;CAClD"}
|
package/dist/AppRuntimeErrors.js
CHANGED
@@ -46,23 +46,11 @@ class General {
|
|
46
46
|
}
|
47
47
|
}
|
48
48
|
class Startup {
|
49
|
-
bootstrapError(bootstrapError) {
|
50
|
-
return new ts_utils_1.ApplicationError("error.runtime.startup.BootstrapError", "There was an error while bootstrapping.", bootstrapError);
|
51
|
-
}
|
52
|
-
bootstrapperNotInitialized() {
|
53
|
-
return new ts_utils_1.ApplicationError("error.runtime.startup.BootstrapNotInitialized", "The given bootstrapper is not initialized.");
|
54
|
-
}
|
55
49
|
uiBridgeAlreadyRegistered() {
|
56
50
|
return new ts_utils_1.ApplicationError("error.appruntime.startup.uiBridgeAlreadyRegistered", "The UI bridge was already registered for this Runtime instance.");
|
57
51
|
}
|
58
52
|
}
|
59
53
|
class PushNotificationModule {
|
60
|
-
subscriptionNotPossible(details, rootError) {
|
61
|
-
return new ts_utils_1.ApplicationError("error.runtime.module.PushNotificationModule.SubscriptionNotPossible", `Subscribing to the NativeEventBus was not possible. Root cause: '${details}'`, rootError);
|
62
|
-
}
|
63
|
-
unsubscriptionNotPossible(details, rootError) {
|
64
|
-
return new ts_utils_1.ApplicationError("error.runtime.module.PushNotificationModule.UnsubscriptionNotPossible", `Unsubscribing from the NativeEventBus was not possible. Root cause: '${details}'`, rootError);
|
65
|
-
}
|
66
54
|
tokenRegistrationNotPossible(details, rootError) {
|
67
55
|
return new ts_utils_1.ApplicationError("error.runtime.module.PushNotificationModule.TokenRegistrationNotPossible", `Registering the Push Notification Token for the account was not possible. Root cause: '${details}'`, rootError);
|
68
56
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"AppRuntimeErrors.js","sourceRoot":"","sources":["../src/AppRuntimeErrors.ts"],"names":[],"mappings":";;;AAAA,gDAAqD;AAErD,MAAM,kBAAkB;IACb,QAAQ;QACX,OAAO,IAAI,2BAAgB,CAAC,8CAA8C,EAAE,qCAAqC,CAAC,CAAC;IACvH,CAAC;IAEM,SAAS;QACZ,OAAO,IAAI,2BAAgB,CAAC,+CAA+C,EAAE,sCAAsC,CAAC,CAAC;IACzH,CAAC;IAEM,gBAAgB;QACnB,OAAO,IAAI,2BAAgB,CAAC,sDAAsD,EAAE,8DAA8D,CAAC,CAAC;IACxJ,CAAC;IAEM,wBAAwB;QAC3B,OAAO,IAAI,2BAAgB,CAAC,8DAA8D,EAAE,oDAAoD,CAAC,CAAC;IACtJ,CAAC;IAEM,0BAA0B;QAC7B,OAAO,IAAI,2BAAgB,CACvB,gEAAgE,EAChE,uFAAuF,CAC1F,CAAC;IACN,CAAC;IAEM,mBAAmB;QACtB,OAAO,IAAI,2BAAgB,CAAC,yDAAyD,EAAE,2BAA2B,CAAC,CAAC;IACxH,CAAC;IAEM,yBAAyB;QAC5B,OAAO,IAAI,2BAAgB,CAAC,+DAA+D,EAAE,mEAAmE,CAAC,CAAC;IACtK,CAAC;IAEM,sBAAsB;QACzB,OAAO,IAAI,2BAAgB,CACvB,4DAA4D,EAC5D,+HAA+H,CAClI,CAAC;IACN,CAAC;CACJ;AAED,MAAM,OAAO;IACF,yBAAyB;QAC5B,OAAO,IAAI,2BAAgB,CAAC,oDAAoD,EAAE,kFAAkF,CAAC,CAAC;IAC1K,CAAC;IAEM,kBAAkB;QACrB,OAAO,IAAI,2BAAgB,CACvB,6CAA6C,EAC7C,0GAA0G,CAC7G,CAAC;IACN,CAAC;IAEM,sBAAsB;QACzB,OAAO,IAAI,2BAAgB,CAAC,iDAAiD,EAAE,iFAAiF,CAAC,CAAC;IACtK,CAAC;IAEM,kBAAkB,CAAC,KAAa;QACnC,OAAO,IAAI,2BAAgB,CAAC,6CAA6C,EAAE,gDAAgD,EAAE,KAAK,CAAC,CAAC;IACxI,CAAC;IAEM,sCAAsC;QACzC,OAAO,IAAI,2BAAgB,CACvB,iEAAiE,EACjE,gEAAgE,EAChE,+JAA+J,CAClK,CAAC;IACN,CAAC;CACJ;AAED,MAAM,OAAO;IACF,
|
1
|
+
{"version":3,"file":"AppRuntimeErrors.js","sourceRoot":"","sources":["../src/AppRuntimeErrors.ts"],"names":[],"mappings":";;;AAAA,gDAAqD;AAErD,MAAM,kBAAkB;IACb,QAAQ;QACX,OAAO,IAAI,2BAAgB,CAAC,8CAA8C,EAAE,qCAAqC,CAAC,CAAC;IACvH,CAAC;IAEM,SAAS;QACZ,OAAO,IAAI,2BAAgB,CAAC,+CAA+C,EAAE,sCAAsC,CAAC,CAAC;IACzH,CAAC;IAEM,gBAAgB;QACnB,OAAO,IAAI,2BAAgB,CAAC,sDAAsD,EAAE,8DAA8D,CAAC,CAAC;IACxJ,CAAC;IAEM,wBAAwB;QAC3B,OAAO,IAAI,2BAAgB,CAAC,8DAA8D,EAAE,oDAAoD,CAAC,CAAC;IACtJ,CAAC;IAEM,0BAA0B;QAC7B,OAAO,IAAI,2BAAgB,CACvB,gEAAgE,EAChE,uFAAuF,CAC1F,CAAC;IACN,CAAC;IAEM,mBAAmB;QACtB,OAAO,IAAI,2BAAgB,CAAC,yDAAyD,EAAE,2BAA2B,CAAC,CAAC;IACxH,CAAC;IAEM,yBAAyB;QAC5B,OAAO,IAAI,2BAAgB,CAAC,+DAA+D,EAAE,mEAAmE,CAAC,CAAC;IACtK,CAAC;IAEM,sBAAsB;QACzB,OAAO,IAAI,2BAAgB,CACvB,4DAA4D,EAC5D,+HAA+H,CAClI,CAAC;IACN,CAAC;CACJ;AAED,MAAM,OAAO;IACF,yBAAyB;QAC5B,OAAO,IAAI,2BAAgB,CAAC,oDAAoD,EAAE,kFAAkF,CAAC,CAAC;IAC1K,CAAC;IAEM,kBAAkB;QACrB,OAAO,IAAI,2BAAgB,CACvB,6CAA6C,EAC7C,0GAA0G,CAC7G,CAAC;IACN,CAAC;IAEM,sBAAsB;QACzB,OAAO,IAAI,2BAAgB,CAAC,iDAAiD,EAAE,iFAAiF,CAAC,CAAC;IACtK,CAAC;IAEM,kBAAkB,CAAC,KAAa;QACnC,OAAO,IAAI,2BAAgB,CAAC,6CAA6C,EAAE,gDAAgD,EAAE,KAAK,CAAC,CAAC;IACxI,CAAC;IAEM,sCAAsC;QACzC,OAAO,IAAI,2BAAgB,CACvB,iEAAiE,EACjE,gEAAgE,EAChE,+JAA+J,CAClK,CAAC;IACN,CAAC;CACJ;AAED,MAAM,OAAO;IACF,yBAAyB;QAC5B,OAAO,IAAI,2BAAgB,CAAC,oDAAoD,EAAE,iEAAiE,CAAC,CAAC;IACzJ,CAAC;CACJ;AAED,MAAM,sBAAsB;IACjB,4BAA4B,CAAC,OAAe,EAAE,SAAiB;QAClE,OAAO,IAAI,2BAAgB,CACvB,0EAA0E,EAC1E,0FAA0F,OAAO,GAAG,EACpG,SAAS,CACZ,CAAC;IACN,CAAC;CACJ;AAED,MAAM,OAAO;IAAb;QACoB,2BAAsB,GAAG,IAAI,sBAAsB,EAAE,CAAC;IAC1E,CAAC;CAAA;AAED,MAAa,gBAAgB;aACF,uBAAkB,GAAG,IAAI,kBAAkB,EAAE,CAAC;aAC9C,YAAO,GAAG,IAAI,OAAO,EAAE,CAAC;aACxB,YAAO,GAAG,IAAI,OAAO,EAAE,CAAC;aACxB,YAAO,GAAG,IAAI,OAAO,EAAE,CAAC;;AAJnD,4CAKC"}
|
package/dist/buildInformation.js
CHANGED
@@ -8,10 +8,10 @@ const crypto_1 = require("@nmshd/crypto");
|
|
8
8
|
const runtime_1 = require("@nmshd/runtime");
|
9
9
|
const transport_1 = require("@nmshd/transport");
|
10
10
|
exports.buildInformation = {
|
11
|
-
version: "6.
|
12
|
-
build: "
|
13
|
-
date: "2025-
|
14
|
-
commit: "
|
11
|
+
version: "6.51.0",
|
12
|
+
build: "282",
|
13
|
+
date: "2025-06-02T20:14:07+00:00",
|
14
|
+
commit: "4caaf1dc8127b90f6aee787d656366a93907cf7b",
|
15
15
|
dependencies: {"@js-soft/docdb-access-loki":"^1.2.0","@nmshd/runtime":"*","eventsource":"^4.0.0","lodash":"^4.17.21"},
|
16
16
|
libraries: {
|
17
17
|
serval: ts_serval_1.buildInformation,
|
@@ -7,6 +7,5 @@ export interface IAppRuntimeModuleConstructor {
|
|
7
7
|
export interface AppRuntimeModuleConfiguration extends ModuleConfiguration {
|
8
8
|
}
|
9
9
|
export declare abstract class AppRuntimeModule<TConfig extends AppRuntimeModuleConfiguration = AppRuntimeModuleConfiguration> extends RuntimeModule<TConfig, AppRuntime> {
|
10
|
-
private readonly nativeEventSubscriptionIds;
|
11
10
|
}
|
12
11
|
//# sourceMappingURL=AppRuntimeModule.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"AppRuntimeModule.d.ts","sourceRoot":"","sources":["../../src/modules/AppRuntimeModule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AACxD,OAAO,EAAE,mBAAmB,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C,MAAM,WAAW,4BAA4B;IACzC,KAAK,OAAO,EAAE,UAAU,EAAE,aAAa,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,GAAG,gBAAgB,CAAC;CACpF;AAED,MAAM,WAAW,6BAA8B,SAAQ,mBAAmB;CAAG;AAE7E,8BAAsB,gBAAgB,CAAC,OAAO,SAAS,6BAA6B,GAAG,6BAA6B,CAAE,SAAQ,aAAa,CAAC,OAAO,EAAE,UAAU,CAAC;
|
1
|
+
{"version":3,"file":"AppRuntimeModule.d.ts","sourceRoot":"","sources":["../../src/modules/AppRuntimeModule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,+BAA+B,CAAC;AACxD,OAAO,EAAE,mBAAmB,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpE,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C,MAAM,WAAW,4BAA4B;IACzC,KAAK,OAAO,EAAE,UAAU,EAAE,aAAa,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,GAAG,gBAAgB,CAAC;CACpF;AAED,MAAM,WAAW,6BAA8B,SAAQ,mBAAmB;CAAG;AAE7E,8BAAsB,gBAAgB,CAAC,OAAO,SAAS,6BAA6B,GAAG,6BAA6B,CAAE,SAAQ,aAAa,CAAC,OAAO,EAAE,UAAU,CAAC;CAAG"}
|
@@ -3,10 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.AppRuntimeModule = void 0;
|
4
4
|
const runtime_1 = require("@nmshd/runtime");
|
5
5
|
class AppRuntimeModule extends runtime_1.RuntimeModule {
|
6
|
-
constructor() {
|
7
|
-
super(...arguments);
|
8
|
-
this.nativeEventSubscriptionIds = [];
|
9
|
-
}
|
10
6
|
}
|
11
7
|
exports.AppRuntimeModule = AppRuntimeModule;
|
12
8
|
//# sourceMappingURL=AppRuntimeModule.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"AppRuntimeModule.js","sourceRoot":"","sources":["../../src/modules/AppRuntimeModule.ts"],"names":[],"mappings":";;;AACA,4CAAoE;AASpE,MAAsB,gBAAgG,SAAQ,uBAAkC;
|
1
|
+
{"version":3,"file":"AppRuntimeModule.js","sourceRoot":"","sources":["../../src/modules/AppRuntimeModule.ts"],"names":[],"mappings":";;;AACA,4CAAoE;AASpE,MAAsB,gBAAgG,SAAQ,uBAAkC;CAAG;AAAnK,4CAAmK"}
|
package/package.json
CHANGED
@@ -53,7 +53,7 @@
|
|
53
53
|
},
|
54
54
|
"dependencies": {
|
55
55
|
"@js-soft/docdb-access-loki": "^1.2.0",
|
56
|
-
"@nmshd/runtime": "6.
|
56
|
+
"@nmshd/runtime": "6.51.0",
|
57
57
|
"eventsource": "^4.0.0",
|
58
58
|
"lodash": "^4.17.21"
|
59
59
|
},
|
@@ -67,5 +67,5 @@
|
|
67
67
|
"access": "public",
|
68
68
|
"provenance": true
|
69
69
|
},
|
70
|
-
"version": "6.
|
70
|
+
"version": "6.51.0"
|
71
71
|
}
|