mongoose 9.6.0 → 9.6.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mongoose",
3
3
  "description": "Mongoose MongoDB ODM",
4
- "version": "9.6.0",
4
+ "version": "9.6.1",
5
5
  "author": "Guillermo Rauch <guillermo@learnboost.com>",
6
6
  "keywords": [
7
7
  "mongodb",
@@ -1,7 +1,7 @@
1
1
  // this import is required so that types get merged instead of completely overwritten
2
- import 'bson';
2
+ import 'mongodb';
3
3
 
4
- declare module 'bson' {
4
+ declare module 'mongodb' {
5
5
  interface ObjectId {
6
6
  /** Mongoose automatically adds a conveniency "_id" getter on the base ObjectId class */
7
7
  _id: this;