monastery 3.4.0 → 3.4.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/changelog.md +2 -0
- package/lib/index.js +9 -13
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [3.4.1](https://github.com/boycce/monastery/compare/3.4.0...3.4.1) (2024-08-09)
|
|
6
|
+
|
|
5
7
|
## [3.4.0](https://github.com/boycce/monastery/compare/3.3.0...3.4.0) (2024-08-09)
|
|
6
8
|
|
|
7
9
|
## [3.3.0](https://github.com/boycce/monastery/compare/3.2.1...3.3.0) (2024-08-07)
|
package/lib/index.js
CHANGED
|
@@ -281,22 +281,18 @@ Manager.prototype.parseData = function(obj, parseBracketToDotNotation, parseDotN
|
|
|
281
281
|
return util.parseData(obj, parseBracketToDotNotation, parseDotNotation)
|
|
282
282
|
}
|
|
283
283
|
|
|
284
|
-
Manager.prototype.parseBracketNotation = function(obj) {
|
|
285
|
-
return util.parseBracketNotation(obj)
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
Manager.prototype.parseBracketToDotNotation = function(obj) {
|
|
289
|
-
return util.parseBracketToDotNotation(obj)
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
Manager.prototype.parseDotNotation = function(obj) {
|
|
293
|
-
return util.parseDotNotation(obj)
|
|
294
|
-
}
|
|
295
|
-
|
|
296
284
|
Manager.prototype.model = Model
|
|
297
285
|
Manager.prototype.getSignedUrl = Manager.prototype._getSignedUrl = imagePluginFile.getSignedUrl
|
|
298
286
|
|
|
299
287
|
inherits(Manager, EventEmitter)
|
|
300
|
-
module.exports = Manager
|
|
288
|
+
module.exports = Manager
|
|
289
|
+
module.exports.id = Manager.prototype.id
|
|
290
|
+
module.exports.isId = Manager.prototype.isId
|
|
291
|
+
module.exports.arrayWithSchema = Manager.prototype.arrayWithSchema
|
|
292
|
+
module.exports.parseData = Manager.prototype.parseData
|
|
293
|
+
module.exports.parseBracketNotation = Manager.prototype.parseBracketNotation
|
|
294
|
+
module.exports.parseBracketToDotNotation = Manager.prototype.parseBracketToDotNotation
|
|
295
|
+
module.exports.parseDotNotation = Manager.prototype.parseDotNotation
|
|
296
|
+
module.exports.getSignedUrl = Manager.prototype.getSignedUrl
|
|
301
297
|
module.exports.manager = null
|
|
302
298
|
module.exports.rules = rules
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "monastery",
|
|
3
3
|
"description": "⛪ A simple, straightforward MongoDB ODM",
|
|
4
4
|
"author": "Ricky Boyce",
|
|
5
|
-
"version": "3.4.
|
|
5
|
+
"version": "3.4.1",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": "github:boycce/monastery",
|
|
8
8
|
"homepage": "https://boycce.github.io/monastery/",
|