@platform-x/hep-notification-client 1.1.10 → 1.1.11

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.
@@ -10,7 +10,11 @@ declare const dynamicModelName: (collectionName: string) => Promise<mongoose.Mod
10
10
  } & {}, {}, {}, {}, mongoose.Document<unknown, {}, {
11
11
  createdAt: NativeDate;
12
12
  updatedAt: NativeDate;
13
- } & {}, {}> & {
13
+ } & {}, {}, {
14
+ timestamps: true;
15
+ minimize: false;
16
+ strict: false;
17
+ }> & {
14
18
  createdAt: NativeDate;
15
19
  updatedAt: NativeDate;
16
20
  } & {} & {
@@ -27,7 +31,11 @@ declare const dynamicModelName: (collectionName: string) => Promise<mongoose.Mod
27
31
  } & {}, mongoose.Document<unknown, {}, mongoose.FlatRecord<{
28
32
  createdAt: NativeDate;
29
33
  updatedAt: NativeDate;
30
- } & {}>, {}> & mongoose.FlatRecord<{
34
+ } & {}>, {}, mongoose.ResolveSchemaOptions<{
35
+ timestamps: true;
36
+ minimize: false;
37
+ strict: false;
38
+ }>> & mongoose.FlatRecord<{
31
39
  createdAt: NativeDate;
32
40
  updatedAt: NativeDate;
33
41
  } & {}> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-x/hep-notification-client",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "description": "@platform-x/hep-notification-client",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -46,8 +46,6 @@
46
46
  "lodash": "^4.17.21",
47
47
  "moment": "^2.30.1",
48
48
  "moment-timezone": "^0.5.34",
49
- "mongodb": "^3.6.0",
50
- "mongoose": "^8.13.2",
51
49
  "mysql2": "^2.3.3",
52
50
  "node-html-parser": "^7.0.1",
53
51
  "request-ip": "^3.3.0",
@@ -58,5 +56,9 @@
58
56
  "private": false,
59
57
  "publishConfig": {
60
58
  "access": "public"
59
+ },
60
+ "peerDependencies": {
61
+ "mongodb": "^6.18.0",
62
+ "mongoose": "^8.17.0"
61
63
  }
62
64
  }