@nmshd/app-runtime 1.0.6 → 2.0.0-alpha.1
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/AppConfig.js +12 -0
- package/dist/AppConfig.js.map +1 -1
- package/dist/AppRuntime.d.ts +7 -6
- package/dist/AppRuntime.js +27 -26
- package/dist/AppRuntime.js.map +1 -1
- package/dist/buildInformation.js +5 -5
- package/dist/events/AccountSelectedEvent.d.ts +2 -2
- package/dist/events/AccountSelectedEvent.js +3 -3
- package/dist/events/AccountSelectedEvent.js.map +1 -1
- package/dist/extensibility/AppServices.d.ts +2 -1
- package/dist/extensibility/AppServices.js +3 -3
- package/dist/extensibility/AppServices.js.map +1 -1
- package/dist/extensibility/facades/AppRuntimeFacade.d.ts +1 -1
- package/dist/extensibility/facades/AppRuntimeFacade.js +4 -4
- package/dist/extensibility/facades/AppRuntimeFacade.js.map +1 -1
- package/dist/extensibility/facades/AppStringProcessorFacade.js +2 -2
- package/dist/extensibility/facades/AppStringProcessorFacade.js.map +1 -1
- package/dist/modules/AppRuntimeModule.d.ts +6 -1
- package/dist/modules/AppRuntimeModule.js +19 -0
- package/dist/modules/AppRuntimeModule.js.map +1 -1
- package/dist/modules/appEvents/AppLaunchModule.d.ts +1 -2
- package/dist/modules/appEvents/AppLaunchModule.js +5 -13
- package/dist/modules/appEvents/AppLaunchModule.js.map +1 -1
- package/dist/modules/appEvents/MailReceivedModule.d.ts +1 -2
- package/dist/modules/appEvents/MailReceivedModule.js +5 -10
- package/dist/modules/appEvents/MailReceivedModule.js.map +1 -1
- package/dist/modules/appEvents/OnboardingChangeReceivedModule.d.ts +1 -2
- package/dist/modules/appEvents/OnboardingChangeReceivedModule.js +5 -10
- package/dist/modules/appEvents/OnboardingChangeReceivedModule.js.map +1 -1
- package/dist/modules/appSync/AppSyncModule.js +6 -3
- package/dist/modules/appSync/AppSyncModule.js.map +1 -1
- package/dist/modules/pushNotifications/PushNotificationModule.d.ts +4 -7
- package/dist/modules/pushNotifications/PushNotificationModule.js +12 -51
- package/dist/modules/pushNotifications/PushNotificationModule.js.map +1 -1
- package/dist/modules/runtimeEvents/MessageReceivedModule.d.ts +1 -2
- package/dist/modules/runtimeEvents/MessageReceivedModule.js +5 -10
- package/dist/modules/runtimeEvents/MessageReceivedModule.js.map +1 -1
- package/dist/modules/runtimeEvents/RelationshipChangedModule.d.ts +1 -2
- package/dist/modules/runtimeEvents/RelationshipChangedModule.js +5 -10
- package/dist/modules/runtimeEvents/RelationshipChangedModule.js.map +1 -1
- package/dist/multiAccount/AccountServices.js +1 -1
- package/dist/multiAccount/AccountServices.js.map +1 -1
- package/dist/multiAccount/MultiAccountController.js +3 -3
- package/dist/multiAccount/MultiAccountController.js.map +1 -1
- package/dist/multiAccount/MultiAccountFacade.js +1 -1
- package/dist/multiAccount/MultiAccountFacade.js.map +1 -1
- package/dist/multiAccount/data/LocalAccount.js +3 -4
- package/dist/multiAccount/data/LocalAccount.js.map +1 -1
- package/lib-web/nmshd.app-runtime.js +192 -162
- package/lib-web/nmshd.app-runtime.min.js +1 -1
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nmshd/app-runtime",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-alpha.1",
|
|
4
4
|
"description": "The App Runtime",
|
|
5
5
|
"homepage": "https://enmeshed.eu",
|
|
6
6
|
"repository": "github:nmshd/cns-app-runtime",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@js-soft/docdb-access-loki": "^1.0.2",
|
|
40
|
-
"@js-soft/native-abstractions": "^1.0
|
|
41
|
-
"@nmshd/runtime": "
|
|
40
|
+
"@js-soft/native-abstractions": "^1.1.0",
|
|
41
|
+
"@nmshd/runtime": "2.0.0-alpha.13",
|
|
42
42
|
"lodash": "^4.17.21"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
@@ -50,18 +50,18 @@
|
|
|
50
50
|
"@types/lokijs": "^1.5.7",
|
|
51
51
|
"@types/luxon": "^2.3.2",
|
|
52
52
|
"@types/mocha": "^9.1.1",
|
|
53
|
-
"@types/node": "^17.0.
|
|
53
|
+
"@types/node": "^17.0.38",
|
|
54
54
|
"bt-runner": "^2.0.5",
|
|
55
55
|
"chai": "^4.3.6",
|
|
56
|
-
"copy-webpack-plugin": "^
|
|
57
|
-
"eslint": "^8.
|
|
56
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
57
|
+
"eslint": "^8.16.0",
|
|
58
58
|
"madge": "^5.0.1",
|
|
59
59
|
"mocha": "^10.0.0",
|
|
60
60
|
"prettier": "^2.6.2",
|
|
61
61
|
"terser-webpack-plugin": "5.3.1",
|
|
62
|
-
"ts-node": "^10.
|
|
62
|
+
"ts-node": "^10.8.0",
|
|
63
63
|
"tsconfig-paths": "^4.0.0",
|
|
64
|
-
"typescript": "^4.
|
|
64
|
+
"typescript": "^4.7.2",
|
|
65
65
|
"webpack": "^5.72.1",
|
|
66
66
|
"webpack-cli": "^4.9.2"
|
|
67
67
|
},
|