@orion-js/mongodb 3.2.24 → 3.2.28

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.
@@ -142,6 +142,9 @@ export interface Collection<ModelClass = any> {
142
142
  updateMany: UpdateMany<ModelClass>;
143
143
  upsert: Upsert<ModelClass>;
144
144
  findOneAndUpdate: FindOneAndUpdate<ModelClass>;
145
+ /**
146
+ * Updates a document and returns the updated document with the changes
147
+ */
145
148
  updateAndFind: UpdateAndFind<ModelClass>;
146
149
  updateItem: UpdateItem<ModelClass>;
147
150
  estimatedDocumentCount: EstimatedDocumentCount<ModelClass>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orion-js/mongodb",
3
- "version": "3.2.24",
3
+ "version": "3.2.28",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "files": [
@@ -20,11 +20,11 @@
20
20
  "@orion-js/env": "^3.2.21",
21
21
  "@orion-js/helpers": "^3.2.21",
22
22
  "@orion-js/logger": "^3.2.21",
23
- "@orion-js/models": "^3.2.21",
24
- "@orion-js/resolvers": "^3.2.21",
25
- "@orion-js/schema": "^3.2.21",
23
+ "@orion-js/models": "^3.2.28",
24
+ "@orion-js/resolvers": "^3.2.28",
25
+ "@orion-js/schema": "^3.2.28",
26
26
  "@orion-js/services": "^3.2.21",
27
- "@orion-js/typed-model": "^3.2.21",
27
+ "@orion-js/typed-model": "^3.2.28",
28
28
  "dataloader": "2.1.0",
29
29
  "dot-object": "2.1.4",
30
30
  "mongodb": "4.5.0"
@@ -41,5 +41,5 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "7ac18ac50d53bc98504e157706f3ed0cd14a38e9"
44
+ "gitHead": "670440985bbd077e154e5d225337bbf242701f5a"
45
45
  }