@things-factory/notification 9.0.0-beta.8 → 9.0.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-client/actions/notification-fcm.js +1 -2
- package/dist-client/actions/notification-fcm.js.map +1 -1
- package/dist-client/bootstrap.js +4 -1
- package/dist-client/bootstrap.js.map +1 -1
- package/dist-client/pages/notification/notification-list-page.js +35 -28
- package/dist-client/pages/notification/notification-list-page.js.map +1 -1
- package/dist-client/pages/notification-rule/notification-rule-importer.js +16 -17
- package/dist-client/pages/notification-rule/notification-rule-importer.js.map +1 -1
- package/dist-client/pages/notification-rule/notification-rule-list-page.js +35 -28
- package/dist-client/pages/notification-rule/notification-rule-list-page.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/notification-badge.js +10 -10
- package/dist-client/viewparts/notification-badge.js.map +1 -1
- package/dist-client/viewparts/notification-item.js +78 -79
- package/dist-client/viewparts/notification-item.js.map +1 -1
- package/dist-client/viewparts/notification-list.js +57 -54
- package/dist-client/viewparts/notification-list.js.map +1 -1
- package/dist-client/viewparts/notification-sender.js +55 -56
- package/dist-client/viewparts/notification-sender.js.map +1 -1
- package/dist-client/viewparts/notification-setting-let.js +53 -53
- package/dist-client/viewparts/notification-setting-let.js.map +1 -1
- package/dist-server/controllers/fcm.js +4 -1
- package/dist-server/controllers/fcm.js.map +1 -1
- package/dist-server/routers/notification-router.js +5 -2
- package/dist-server/routers/notification-router.js.map +1 -1
- package/dist-server/service/index.js +6 -2
- package/dist-server/service/index.js.map +1 -1
- package/dist-server/service/notification/directive-notification.js +1 -2
- package/dist-server/service/notification/directive-notification.js.map +1 -1
- package/dist-server/service/notification/notification-mutation.js +24 -6
- package/dist-server/service/notification/notification-mutation.js.map +1 -1
- package/dist-server/service/notification/notification-subscription.js +2 -2
- package/dist-server/service/notification/notification-subscription.js.map +1 -1
- package/dist-server/service/notification-rule/notification-rule-mutation.js +25 -7
- package/dist-server/service/notification-rule/notification-rule-mutation.js.map +1 -1
- package/dist-server/service/notification-rule/notification-rule-query.js +1 -1
- package/dist-server/service/notification-rule/notification-rule-query.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/notification",
|
|
3
|
-
"version": "9.0.0
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@material/web": "^2.0.0",
|
|
31
|
-
"@operato/layout": "^9.0.0
|
|
32
|
-
"@things-factory/auth-base": "^9.0.0
|
|
33
|
-
"@things-factory/codelingua": "^9.0.0
|
|
34
|
-
"@things-factory/i18n-base": "^9.0.0
|
|
35
|
-
"@things-factory/organization": "^9.0.0
|
|
36
|
-
"@things-factory/setting-base": "^9.0.0
|
|
37
|
-
"@things-factory/shell": "^9.0.0
|
|
31
|
+
"@operato/layout": "^9.0.0",
|
|
32
|
+
"@things-factory/auth-base": "^9.0.0",
|
|
33
|
+
"@things-factory/codelingua": "^9.0.0",
|
|
34
|
+
"@things-factory/i18n-base": "^9.0.0",
|
|
35
|
+
"@things-factory/organization": "^9.0.0",
|
|
36
|
+
"@things-factory/setting-base": "^9.0.0",
|
|
37
|
+
"@things-factory/shell": "^9.0.0",
|
|
38
38
|
"clipboard": "^2.0.6",
|
|
39
39
|
"firebase": "^9.14.0",
|
|
40
40
|
"firebase-admin": "^11.3.0",
|
|
41
41
|
"google": "^2.1.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "d6b5293b3ad571461b4282f19bc89288bdab2acc"
|
|
44
44
|
}
|