@amohamud23/notihub 1.0.15 → 1.0.17

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.d.ts +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amohamud23/notihub",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "description": "Notihub Package",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.d.ts",
package/src/index.d.ts CHANGED
@@ -81,7 +81,7 @@ export interface INotiHubImage {
81
81
  }
82
82
 
83
83
  export interface INotiHubStats {
84
- entityId: string;
84
+ entityId: INotiHubCustomer;
85
85
  subscription: number;
86
86
  notifications: number;
87
87
  impressions: number;
@@ -127,3 +127,10 @@ export interface IUserSubscribeNotifier {
127
127
  createdAt: string;
128
128
  updatedAt: string;
129
129
  }
130
+
131
+ export interface INotiHubUserView {
132
+ userId: string;
133
+ entityId: string;
134
+ notificationId;
135
+ createdAt: string;
136
+ }