@amohamud23/notihub 1.0.13 → 1.0.14

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 +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amohamud23/notihub",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Notihub Package",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.d.ts",
package/src/index.d.ts CHANGED
@@ -90,12 +90,13 @@ export interface INotiHubStats {
90
90
  export interface INotiType {
91
91
  _id?: string;
92
92
  type: string;
93
+ entity: string;
93
94
  createdAt: string;
94
95
  }
95
96
 
96
97
  export interface INotiTypeStats {
97
98
  _id?: string;
98
- type: string;
99
+ notiTypeId: string;
99
100
  subscribed: number;
100
101
  createdAt: string;
101
102
  }