@hahnpro/hpc-api 2026.2.1 → 2026.2.2

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,5 +1,11 @@
1
1
  # @hahnpro/hpc-api
2
2
 
3
+ # 2026.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Add attributes to NotificationPayload in Endpoint Interface
8
+
3
9
  ## 2026.1.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hahnpro/hpc-api",
3
- "version": "2026.2.1",
3
+ "version": "2026.2.2",
4
4
  "description": "Module for easy access to the HahnPRO Cloud API",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -36,6 +36,12 @@ export interface NotificationPayload {
36
36
  message: string;
37
37
  group?: string;
38
38
  level?: string;
39
+ trigger?: string;
40
+ timestamp?: string;
41
+ previousNotification?: {
42
+ subject: string;
43
+ timestamp: string;
44
+ };
39
45
  eventLink?: string;
40
46
  assetId?: string;
41
47
  assetName?: string;