@things-factory/notification 6.1.22 → 6.1.28
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/pages/noti-box/noti-box-list-page.d.ts +49 -0
- package/dist-client/pages/noti-box/noti-box-list-page.js +262 -0
- package/dist-client/pages/noti-box/noti-box-list-page.js.map +1 -0
- package/dist-client/pages/noti-rule/noti-rule-importer.d.ts +22 -0
- package/dist-client/pages/noti-rule/noti-rule-importer.js +100 -0
- package/dist-client/pages/noti-rule/noti-rule-importer.js.map +1 -0
- package/dist-client/pages/noti-rule/noti-rule-list-page.d.ts +62 -0
- package/dist-client/pages/noti-rule/noti-rule-list-page.js +380 -0
- package/dist-client/pages/noti-rule/noti-rule-list-page.js.map +1 -0
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/noti-box/index.js +9 -0
- package/dist-server/service/noti-box/index.js.map +1 -0
- package/dist-server/service/noti-box/noti-box-mutation.js +110 -0
- package/dist-server/service/noti-box/noti-box-mutation.js.map +1 -0
- package/dist-server/service/noti-box/noti-box-query.js +109 -0
- package/dist-server/service/noti-box/noti-box-query.js.map +1 -0
- package/dist-server/service/noti-box/noti-box-type.js +69 -0
- package/dist-server/service/noti-box/noti-box-type.js.map +1 -0
- package/dist-server/service/noti-box/noti-box.js +107 -0
- package/dist-server/service/noti-box/noti-box.js.map +1 -0
- package/dist-server/service/noti-rule/event-subscriber.js +21 -0
- package/dist-server/service/noti-rule/event-subscriber.js.map +1 -0
- package/dist-server/service/noti-rule/index.js +12 -0
- package/dist-server/service/noti-rule/index.js.map +1 -0
- package/dist-server/service/noti-rule/noti-rule-history.js +139 -0
- package/dist-server/service/noti-rule/noti-rule-history.js.map +1 -0
- package/dist-server/service/noti-rule/noti-rule-mutation.js +168 -0
- package/dist-server/service/noti-rule/noti-rule-mutation.js.map +1 -0
- package/dist-server/service/noti-rule/noti-rule-query.js +97 -0
- package/dist-server/service/noti-rule/noti-rule-query.js.map +1 -0
- package/dist-server/service/noti-rule/noti-rule-type.js +102 -0
- package/dist-server/service/noti-rule/noti-rule-type.js.map +1 -0
- package/dist-server/service/noti-rule/noti-rule.js +146 -0
- package/dist-server/service/noti-rule/noti-rule.js.map +1 -0
- package/dist-server/service/notification-old/directive-notification.js +59 -0
- package/dist-server/service/notification-old/directive-notification.js.map +1 -0
- package/dist-server/service/notification-old/index.js +14 -0
- package/dist-server/service/notification-old/index.js.map +1 -0
- package/dist-server/service/notification-old/notification-resolver.js +45 -0
- package/dist-server/service/notification-old/notification-resolver.js.map +1 -0
- package/dist-server/service/notification-old/notification.js +49 -0
- package/dist-server/service/notification-old/notification.js.map +1 -0
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/server/dist-server/tsconfig.tsbuildinfo +1 -0
- package/dist-server/migrations/index.js +0 -12
- package/dist-server/migrations/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/notification",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.28",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -30,16 +30,16 @@
|
|
|
30
30
|
"@material/mwc-formfield": "^0.27.0",
|
|
31
31
|
"@material/mwc-switch": "^0.27.0",
|
|
32
32
|
"@operato/layout": "^1.0.1",
|
|
33
|
-
"@things-factory/auth-base": "^6.1.
|
|
34
|
-
"@things-factory/codelingua": "^6.1.
|
|
35
|
-
"@things-factory/i18n-base": "^6.1.
|
|
36
|
-
"@things-factory/organization": "^6.1.
|
|
37
|
-
"@things-factory/setting-base": "^6.1.
|
|
38
|
-
"@things-factory/shell": "^6.1.
|
|
33
|
+
"@things-factory/auth-base": "^6.1.28",
|
|
34
|
+
"@things-factory/codelingua": "^6.1.28",
|
|
35
|
+
"@things-factory/i18n-base": "^6.1.28",
|
|
36
|
+
"@things-factory/organization": "^6.1.28",
|
|
37
|
+
"@things-factory/setting-base": "^6.1.28",
|
|
38
|
+
"@things-factory/shell": "^6.1.28",
|
|
39
39
|
"clipboard": "^2.0.6",
|
|
40
40
|
"firebase": "^9.14.0",
|
|
41
41
|
"firebase-admin": "^11.3.0",
|
|
42
42
|
"google": "^2.1.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "6830586c0142afaf8a23ff84aced6d4da18f1746"
|
|
45
45
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":[],"fileInfos":[],"options":{"allowSyntheticDefaultImports":true,"declaration":false,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":1,"noEmitOnError":true,"noImplicitAny":false,"outDir":"./","sourceMap":true,"strict":false,"target":4,"useDefineForClassFields":false},"referencedMap":[],"exportedModulesMap":[]},"version":"4.9.5"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.migrations = void 0;
|
|
4
|
-
const glob = require('glob');
|
|
5
|
-
const path = require('path');
|
|
6
|
-
exports.migrations = [];
|
|
7
|
-
glob.sync(path.resolve(__dirname, '.', '**', '*.js')).forEach(function (file) {
|
|
8
|
-
if (file.indexOf('index.js') !== -1)
|
|
9
|
-
return;
|
|
10
|
-
exports.migrations = exports.migrations.concat(Object.values(require(path.resolve(file))) || []);
|
|
11
|
-
});
|
|
12
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../server/migrations/index.ts"],"names":[],"mappings":";;;AAAA,MAAM,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;AAC5B,MAAM,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;AAEjB,QAAA,UAAU,GAAG,EAAE,CAAA;AAE1B,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,UAAS,IAAI;IACzE,IAAI,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;QAAE,OAAM;IAC3C,kBAAU,GAAG,kBAAU,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAA;AAClF,CAAC,CAAC,CAAA","sourcesContent":["const glob = require('glob')\nconst path = require('path')\n\nexport var migrations = []\n\nglob.sync(path.resolve(__dirname, '.', '**', '*.js')).forEach(function(file) {\n if (file.indexOf('index.js') !== -1) return\n migrations = migrations.concat(Object.values(require(path.resolve(file))) || [])\n})\n"]}
|