nongo-driver 3.3.16 → 3.3.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.
package/dist/model.d.ts CHANGED
@@ -13,7 +13,7 @@ export default abstract class Model<T extends {
13
13
  key?: string;
14
14
  environment?: string;
15
15
  module?: string;
16
- deleted?: true;
16
+ deleted?: boolean;
17
17
  } = any> {
18
18
  nongo: Nongo;
19
19
  obj: T;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nongo-driver",
3
- "version": "3.3.16",
3
+ "version": "3.3.17",
4
4
  "description": "A promise driven, schema lead, mongo driver.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/model.ts CHANGED
@@ -47,7 +47,7 @@ export default abstract class Model<
47
47
  key?: string;
48
48
  environment?: string;
49
49
  module?: string;
50
- deleted?: true;
50
+ deleted?: boolean;
51
51
  } = any,
52
52
  > {
53
53
  // {@code instanceof} can be a bit funny when importing classes across