@nocobase/plugin-notifications 0.21.0-alpha.6 → 0.21.0-alpha.7

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.
@@ -1,5 +1,5 @@
1
1
  import { Plugin } from '@nocobase/client';
2
- declare class NotificationPlugin extends Plugin {
2
+ declare class PluginNotificationClient extends Plugin {
3
3
  load(): Promise<void>;
4
4
  }
5
- export default NotificationPlugin;
5
+ export default PluginNotificationClient;
@@ -1,6 +1,6 @@
1
1
  module.exports = {
2
- "@nocobase/client": "0.21.0-alpha.6",
3
- "@nocobase/server": "0.21.0-alpha.6",
4
- "@nocobase/database": "0.21.0-alpha.6",
2
+ "@nocobase/client": "0.21.0-alpha.7",
3
+ "@nocobase/server": "0.21.0-alpha.7",
4
+ "@nocobase/database": "0.21.0-alpha.7",
5
5
  "lodash": "4.17.21"
6
6
  };
@@ -1 +1 @@
1
- {"name":"nodemailer","version":"6.9.7","description":"Easy as cake e-mail sending from your Node.js applications","main":"lib/nodemailer.js","scripts":{"test":"grunt --trace-warnings","update":"rm -rf node_modules/ package-lock.json && ncu -u && npm install"},"repository":{"type":"git","url":"https://github.com/nodemailer/nodemailer.git"},"keywords":["Nodemailer"],"author":"Andris Reinman","license":"MIT-0","bugs":{"url":"https://github.com/nodemailer/nodemailer/issues"},"homepage":"https://nodemailer.com/","devDependencies":{"@aws-sdk/client-ses":"3.433.0","aws-sdk":"2.1478.0","bunyan":"1.8.15","chai":"4.3.10","eslint-config-nodemailer":"1.2.0","eslint-config-prettier":"9.0.0","grunt":"1.6.1","grunt-cli":"1.4.3","grunt-eslint":"24.3.0","grunt-mocha-test":"0.13.3","libbase64":"1.2.1","libmime":"5.2.1","libqp":"2.0.1","mocha":"10.2.0","nodemailer-ntlm-auth":"1.0.4","proxy":"1.0.2","proxy-test-server":"1.0.0","sinon":"17.0.0","smtp-server":"3.13.0"},"engines":{"node":">=6.0.0"},"_lastModified":"2024-04-07T14:03:42.922Z"}
1
+ {"name":"nodemailer","version":"6.9.7","description":"Easy as cake e-mail sending from your Node.js applications","main":"lib/nodemailer.js","scripts":{"test":"grunt --trace-warnings","update":"rm -rf node_modules/ package-lock.json && ncu -u && npm install"},"repository":{"type":"git","url":"https://github.com/nodemailer/nodemailer.git"},"keywords":["Nodemailer"],"author":"Andris Reinman","license":"MIT-0","bugs":{"url":"https://github.com/nodemailer/nodemailer/issues"},"homepage":"https://nodemailer.com/","devDependencies":{"@aws-sdk/client-ses":"3.433.0","aws-sdk":"2.1478.0","bunyan":"1.8.15","chai":"4.3.10","eslint-config-nodemailer":"1.2.0","eslint-config-prettier":"9.0.0","grunt":"1.6.1","grunt-cli":"1.4.3","grunt-eslint":"24.3.0","grunt-mocha-test":"0.13.3","libbase64":"1.2.1","libmime":"5.2.1","libqp":"2.0.1","mocha":"10.2.0","nodemailer-ntlm-auth":"1.0.4","proxy":"1.0.2","proxy-test-server":"1.0.0","sinon":"17.0.0","smtp-server":"3.13.0"},"engines":{"node":">=6.0.0"},"_lastModified":"2024-04-13T01:49:25.034Z"}
@@ -1,4 +1,4 @@
1
1
  import { Plugin } from '@nocobase/server';
2
- export default class PluginNotifications extends Plugin {
2
+ export default class PluginNotificationsServer extends Plugin {
3
3
  load(): Promise<void>;
4
4
  }
@@ -27,12 +27,12 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
27
27
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
28
28
  var server_exports = {};
29
29
  __export(server_exports, {
30
- default: () => PluginNotifications
30
+ default: () => PluginNotificationsServer
31
31
  });
32
32
  module.exports = __toCommonJS(server_exports);
33
33
  var import_server = require("@nocobase/server");
34
34
  var import_path = __toESM(require("path"));
35
- class PluginNotifications extends import_server.Plugin {
35
+ class PluginNotificationsServer extends import_server.Plugin {
36
36
  async load() {
37
37
  await this.app.db.import({
38
38
  directory: import_path.default.resolve(__dirname, "collections")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nocobase/plugin-notifications",
3
- "version": "0.21.0-alpha.6",
3
+ "version": "0.21.0-alpha.7",
4
4
  "description": "",
5
5
  "license": "AGPL-3.0",
6
6
  "main": "./dist/server/index.js",
@@ -16,5 +16,5 @@
16
16
  "@nocobase/test": "0.x",
17
17
  "@nocobase/utils": "0.x"
18
18
  },
19
- "gitHead": "25eaaf1bdf44d2b457a3a3742532db9d2008216b"
19
+ "gitHead": "b1be3993f8aa81173d01bc390aa8e4c5adcc0e2d"
20
20
  }