@amohamud23/notihub 1.0.102 → 1.0.104
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/dist/index.cjs +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -383,7 +383,7 @@ var notiTypeStatsSchema = new import_mongoose19.Schema(NotiTypeStatsSchema_defau
|
|
|
383
383
|
timestamps: true
|
|
384
384
|
});
|
|
385
385
|
var NotiTypeStatsModel = (0, import_mongoose19.model)(
|
|
386
|
-
"
|
|
386
|
+
"NotiTypesStats",
|
|
387
387
|
notiTypeStatsSchema
|
|
388
388
|
);
|
|
389
389
|
var NotiTypeStatsModel_default = NotiTypeStatsModel;
|
package/dist/index.d.cts
CHANGED
|
@@ -127,7 +127,9 @@ type INotiHubSubscription = {
|
|
|
127
127
|
_id?: string;
|
|
128
128
|
subscriptionId: string;
|
|
129
129
|
entity: INotiHubCustomer;
|
|
130
|
+
entityRef: INotiHubCustomer;
|
|
130
131
|
user: INotiHubUser;
|
|
132
|
+
userRef: INotiHubUser;
|
|
131
133
|
type: "SUBSCRIBED" | "UNSUBSCRIBED";
|
|
132
134
|
createdAt: string;
|
|
133
135
|
updatedAt: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -127,7 +127,9 @@ type INotiHubSubscription = {
|
|
|
127
127
|
_id?: string;
|
|
128
128
|
subscriptionId: string;
|
|
129
129
|
entity: INotiHubCustomer;
|
|
130
|
+
entityRef: INotiHubCustomer;
|
|
130
131
|
user: INotiHubUser;
|
|
132
|
+
userRef: INotiHubUser;
|
|
131
133
|
type: "SUBSCRIBED" | "UNSUBSCRIBED";
|
|
132
134
|
createdAt: string;
|
|
133
135
|
updatedAt: string;
|
package/dist/index.js
CHANGED
|
@@ -331,7 +331,7 @@ var notiTypeStatsSchema = new Schema19(NotiTypeStatsSchema_default, {
|
|
|
331
331
|
timestamps: true
|
|
332
332
|
});
|
|
333
333
|
var NotiTypeStatsModel = model12(
|
|
334
|
-
"
|
|
334
|
+
"NotiTypesStats",
|
|
335
335
|
notiTypeStatsSchema
|
|
336
336
|
);
|
|
337
337
|
var NotiTypeStatsModel_default = NotiTypeStatsModel;
|