@things-factory/notification 6.1.79 → 6.1.80

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.
Files changed (46) hide show
  1. package/dist-client/tsconfig.tsbuildinfo +1 -1
  2. package/dist-server/migrations/index.js +12 -0
  3. package/dist-server/migrations/index.js.map +1 -0
  4. package/dist-server/tsconfig.tsbuildinfo +1 -1
  5. package/package.json +3 -3
  6. package/dist-client/pages/noti-box/noti-box-list-page.d.ts +0 -49
  7. package/dist-client/pages/noti-box/noti-box-list-page.js +0 -262
  8. package/dist-client/pages/noti-box/noti-box-list-page.js.map +0 -1
  9. package/dist-client/pages/noti-rule/noti-rule-importer.d.ts +0 -22
  10. package/dist-client/pages/noti-rule/noti-rule-importer.js +0 -100
  11. package/dist-client/pages/noti-rule/noti-rule-importer.js.map +0 -1
  12. package/dist-client/pages/noti-rule/noti-rule-list-page.d.ts +0 -62
  13. package/dist-client/pages/noti-rule/noti-rule-list-page.js +0 -380
  14. package/dist-client/pages/noti-rule/noti-rule-list-page.js.map +0 -1
  15. package/dist-server/service/noti-box/index.js +0 -9
  16. package/dist-server/service/noti-box/index.js.map +0 -1
  17. package/dist-server/service/noti-box/noti-box-mutation.js +0 -110
  18. package/dist-server/service/noti-box/noti-box-mutation.js.map +0 -1
  19. package/dist-server/service/noti-box/noti-box-query.js +0 -109
  20. package/dist-server/service/noti-box/noti-box-query.js.map +0 -1
  21. package/dist-server/service/noti-box/noti-box-type.js +0 -69
  22. package/dist-server/service/noti-box/noti-box-type.js.map +0 -1
  23. package/dist-server/service/noti-box/noti-box.js +0 -107
  24. package/dist-server/service/noti-box/noti-box.js.map +0 -1
  25. package/dist-server/service/noti-rule/event-subscriber.js +0 -21
  26. package/dist-server/service/noti-rule/event-subscriber.js.map +0 -1
  27. package/dist-server/service/noti-rule/index.js +0 -12
  28. package/dist-server/service/noti-rule/index.js.map +0 -1
  29. package/dist-server/service/noti-rule/noti-rule-history.js +0 -139
  30. package/dist-server/service/noti-rule/noti-rule-history.js.map +0 -1
  31. package/dist-server/service/noti-rule/noti-rule-mutation.js +0 -168
  32. package/dist-server/service/noti-rule/noti-rule-mutation.js.map +0 -1
  33. package/dist-server/service/noti-rule/noti-rule-query.js +0 -97
  34. package/dist-server/service/noti-rule/noti-rule-query.js.map +0 -1
  35. package/dist-server/service/noti-rule/noti-rule-type.js +0 -102
  36. package/dist-server/service/noti-rule/noti-rule-type.js.map +0 -1
  37. package/dist-server/service/noti-rule/noti-rule.js +0 -146
  38. package/dist-server/service/noti-rule/noti-rule.js.map +0 -1
  39. package/dist-server/service/notification-old/directive-notification.js +0 -59
  40. package/dist-server/service/notification-old/directive-notification.js.map +0 -1
  41. package/dist-server/service/notification-old/index.js +0 -14
  42. package/dist-server/service/notification-old/index.js.map +0 -1
  43. package/dist-server/service/notification-old/notification-resolver.js +0 -45
  44. package/dist-server/service/notification-old/notification-resolver.js.map +0 -1
  45. package/dist-server/service/notification-old/notification.js +0 -49
  46. package/dist-server/service/notification-old/notification.js.map +0 -1
@@ -0,0 +1 @@
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"]}