@hawk.so/types 0.1.35 → 0.1.37

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.
@@ -17,5 +17,5 @@ export interface AffectedUser {
17
17
  /**
18
18
  * User's public picture
19
19
  */
20
- image?: string;
20
+ photo?: string;
21
21
  }
@@ -23,4 +23,8 @@ export interface NotificationsChannelsDBScheme {
23
23
  * Pushes through the Hawk Desktop app
24
24
  */
25
25
  desktopPush?: NotificationsChannelSettingsDBScheme;
26
+ /**
27
+ * Alerts through the Loop
28
+ */
29
+ loop?: NotificationsChannelSettingsDBScheme;
26
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hawk.so/types",
3
- "version": "0.1.35",
3
+ "version": "0.1.37",
4
4
  "description": "TypeScript definitions for Hawk",
5
5
  "types": "build/index.d.ts",
6
6
  "main": "build/index.js",
@@ -20,5 +20,5 @@ export interface AffectedUser {
20
20
  /**
21
21
  * User's public picture
22
22
  */
23
- image?: string;
24
- }
23
+ photo?: string;
24
+ }
@@ -28,4 +28,9 @@ export interface NotificationsChannelsDBScheme {
28
28
  * Pushes through the Hawk Desktop app
29
29
  */
30
30
  desktopPush?: NotificationsChannelSettingsDBScheme;
31
+
32
+ /**
33
+ * Alerts through the Loop
34
+ */
35
+ loop?: NotificationsChannelSettingsDBScheme;
31
36
  }