@event-nest/mongodb 0.0.2 → 0.0.3
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/README.md +3 -10
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Event Nest | MongoDB
|
|
2
|
+
The MongoDB module for [Event Nest](https://www.npmjs.com/package/@event-nest/core)
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
## Building
|
|
6
|
-
|
|
7
|
-
Run `nx build mongodb` to build the library.
|
|
8
|
-
|
|
9
|
-
## Running unit tests
|
|
10
|
-
|
|
11
|
-
Run `nx test mongodb` to execute the unit tests via [Jest](https://jestjs.io).
|
|
4
|
+
For a full documentation, please visit the [Event Nest](https://www.npmjs.com/package/@event-nest/core) package.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@event-nest/mongodb",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "A MongoDB based implementation for the event-nest library. It uses MongoDB collections and transactions to store events and entity information",
|
|
6
6
|
"author": "Nick Tsitlakidis",
|
|
@@ -13,16 +13,16 @@
|
|
|
13
13
|
"mongodb"
|
|
14
14
|
],
|
|
15
15
|
"peerDependencies": {
|
|
16
|
-
"@nestjs/common": "^
|
|
17
|
-
"@nestjs/core": "^
|
|
18
|
-
"
|
|
19
|
-
"
|
|
16
|
+
"@nestjs/common": "^9.0.0",
|
|
17
|
+
"@nestjs/core": "^9.0.0",
|
|
18
|
+
"reflect-metadata": "0.1.13",
|
|
19
|
+
"rxjs": "^7.2.0",
|
|
20
|
+
"@event-nest/core": "0.0.3",
|
|
20
21
|
"tslib": "2.5.3"
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
23
24
|
"class-transformer": "^0.5.1",
|
|
24
|
-
"
|
|
25
|
-
"rxjs": "^7.8.0"
|
|
25
|
+
"mongodb": "^5.6.0"
|
|
26
26
|
},
|
|
27
27
|
"main": "./src/index.js",
|
|
28
28
|
"types": "./src/index.d.ts"
|