@amohamud23/notihub 1.0.95 → 1.0.97
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 +5 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -248,7 +248,11 @@ var NotificationSchema = {
|
|
|
248
248
|
type: { type: String, required: true },
|
|
249
249
|
body: { type: String },
|
|
250
250
|
entityId: { type: String, required: true },
|
|
251
|
-
entityMinified:
|
|
251
|
+
entityMinified: {
|
|
252
|
+
type: import_mongoose9.Schema.Types.ObjectId,
|
|
253
|
+
ref: "CustomerMinified",
|
|
254
|
+
required: true
|
|
255
|
+
}
|
|
252
256
|
};
|
|
253
257
|
var NotificationSchema_default = NotificationSchema;
|
|
254
258
|
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -197,7 +197,11 @@ var NotificationSchema = {
|
|
|
197
197
|
type: { type: String, required: true },
|
|
198
198
|
body: { type: String },
|
|
199
199
|
entityId: { type: String, required: true },
|
|
200
|
-
entityMinified:
|
|
200
|
+
entityMinified: {
|
|
201
|
+
type: Schema9.Types.ObjectId,
|
|
202
|
+
ref: "CustomerMinified",
|
|
203
|
+
required: true
|
|
204
|
+
}
|
|
201
205
|
};
|
|
202
206
|
var NotificationSchema_default = NotificationSchema;
|
|
203
207
|
|