@hawk.so/types 0.5.8 → 0.5.9

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.
@@ -27,4 +27,8 @@ export interface NotificationsChannelsDBScheme {
27
27
  * Alerts through the Loop
28
28
  */
29
29
  loop?: NotificationsChannelSettingsDBScheme;
30
+ /**
31
+ * Alerts through a custom Webhook URL
32
+ */
33
+ webhook?: NotificationsChannelSettingsDBScheme;
30
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hawk.so/types",
3
- "version": "0.5.8",
3
+ "version": "0.5.9",
4
4
  "description": "TypeScript definitions for Hawk",
5
5
  "types": "build/index.d.ts",
6
6
  "main": "build/index.js",
@@ -33,4 +33,9 @@ export interface NotificationsChannelsDBScheme {
33
33
  * Alerts through the Loop
34
34
  */
35
35
  loop?: NotificationsChannelSettingsDBScheme;
36
+
37
+ /**
38
+ * Alerts through a custom Webhook URL
39
+ */
40
+ webhook?: NotificationsChannelSettingsDBScheme;
36
41
  }