@pinelab/vendure-plugin-alerting 1.0.0 → 1.0.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/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # 1.0.1 (2026-05-28)
2
+
3
+ - Added `EmailNotifier` for sending plain-text email alerts via Vendure's built-in email sender.
4
+ - Added error logging with try/catch in job queue processing.
5
+
1
6
  # 1.0.0 (2026-05-27)
2
7
 
3
8
  - Initial release.
package/README.md CHANGED
@@ -4,6 +4,8 @@
4
4
 
5
5
  Send notifications based on Vendure events and log messages via configurable notifiers like webhooks, slack or N8N.
6
6
 
7
+ ![image](https://plugins.pinelab.studio/plugin-images/alerting.png)
8
+
7
9
  ## Getting started
8
10
 
9
11
  ```ts
package/package.json CHANGED
@@ -1,11 +1,27 @@
1
1
  {
2
2
  "name": "@pinelab/vendure-plugin-alerting",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Vendure plugin for sending alerts based on events and log to various notifiers like Slack, email or N8N",
5
5
  "author": "Martijn van de Brug <martijn@pinelab.studio>",
6
6
  "homepage": "https://plugins.pinelab.studio/",
7
7
  "repository": "https://github.com/Pinelab-studio/pinelab-vendure-plugins",
8
8
  "license": "MIT",
9
+ "keywords": [
10
+ "vendure",
11
+ "vendure-plugin",
12
+ "notification",
13
+ "alerting",
14
+ "alerts",
15
+ "vendure-event",
16
+ "log-based-alerting",
17
+ "logging",
18
+ "slack",
19
+ "email",
20
+ "webhook",
21
+ "n8n",
22
+ "monitoring",
23
+ "error-handling"
24
+ ],
9
25
  "private": false,
10
26
  "publishConfig": {
11
27
  "access": "public"