@twin.org/entity-storage-connector-mongodb 0.0.3-next.7 → 0.0.3-next.9
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/docs/changelog.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.9](https://github.com/twinfoundation/entity-storage/compare/entity-storage-connector-mongodb-v0.0.3-next.8...entity-storage-connector-mongodb-v0.0.3-next.9) (2026-04-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **entity-storage-connector-mongodb:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
18
|
+
|
|
19
|
+
## [0.0.3-next.8](https://github.com/twinfoundation/entity-storage/compare/entity-storage-connector-mongodb-v0.0.3-next.7...entity-storage-connector-mongodb-v0.0.3-next.8) (2026-03-20)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* tests and fixes for the comparisons for null and undefined ([#79](https://github.com/twinfoundation/entity-storage/issues/79)) ([e7ffd62](https://github.com/twinfoundation/entity-storage/commit/e7ffd62e9ec40ef31498e6e2350bb25d9c84638a))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Dependencies
|
|
28
|
+
|
|
29
|
+
* The following workspace dependencies were updated
|
|
30
|
+
* dependencies
|
|
31
|
+
* @twin.org/entity-storage-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
32
|
+
* devDependencies
|
|
33
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
34
|
+
|
|
3
35
|
## [0.0.3-next.7](https://github.com/twinfoundation/entity-storage/compare/entity-storage-connector-mongodb-v0.0.3-next.6...entity-storage-connector-mongodb-v0.0.3-next.7) (2026-03-13)
|
|
4
36
|
|
|
5
37
|
|
|
@@ -14,7 +14,7 @@ The host for the MongoDb instance.
|
|
|
14
14
|
|
|
15
15
|
### port? {#port}
|
|
16
16
|
|
|
17
|
-
> `optional` **port
|
|
17
|
+
> `optional` **port?**: `number`
|
|
18
18
|
|
|
19
19
|
The port for the MongoDb instance.
|
|
20
20
|
|
|
@@ -22,7 +22,7 @@ The port for the MongoDb instance.
|
|
|
22
22
|
|
|
23
23
|
### user? {#user}
|
|
24
24
|
|
|
25
|
-
> `optional` **user
|
|
25
|
+
> `optional` **user?**: `string`
|
|
26
26
|
|
|
27
27
|
The user for the MongoDb instance.
|
|
28
28
|
|
|
@@ -30,7 +30,7 @@ The user for the MongoDb instance.
|
|
|
30
30
|
|
|
31
31
|
### password? {#password}
|
|
32
32
|
|
|
33
|
-
> `optional` **password
|
|
33
|
+
> `optional` **password?**: `string`
|
|
34
34
|
|
|
35
35
|
The password for the MongoDb instance.
|
|
36
36
|
|
|
@@ -14,7 +14,7 @@ The schema for the entity.
|
|
|
14
14
|
|
|
15
15
|
### partitionContextIds? {#partitioncontextids}
|
|
16
16
|
|
|
17
|
-
> `optional` **partitionContextIds
|
|
17
|
+
> `optional` **partitionContextIds?**: `string`[]
|
|
18
18
|
|
|
19
19
|
The keys to use from the context ids to create partitions.
|
|
20
20
|
|
|
@@ -22,10 +22,16 @@ The keys to use from the context ids to create partitions.
|
|
|
22
22
|
|
|
23
23
|
### loggingComponentType? {#loggingcomponenttype}
|
|
24
24
|
|
|
25
|
-
> `optional` **loggingComponentType
|
|
25
|
+
> `optional` **loggingComponentType?**: `string`
|
|
26
26
|
|
|
27
27
|
The type of logging component to use.
|
|
28
28
|
|
|
29
|
+
#### Default
|
|
30
|
+
|
|
31
|
+
```ts
|
|
32
|
+
logging
|
|
33
|
+
```
|
|
34
|
+
|
|
29
35
|
***
|
|
30
36
|
|
|
31
37
|
### config {#config}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/entity-storage-connector-mongodb",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.9",
|
|
4
4
|
"description": "MongoDB connector for flexible document-oriented persistence.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"@twin.org/context": "next",
|
|
18
18
|
"@twin.org/core": "next",
|
|
19
19
|
"@twin.org/entity": "next",
|
|
20
|
-
"@twin.org/entity-storage-models": "0.0.3-next.
|
|
20
|
+
"@twin.org/entity-storage-models": "0.0.3-next.9",
|
|
21
21
|
"@twin.org/logging-models": "next",
|
|
22
22
|
"@twin.org/nameof": "next",
|
|
23
|
-
"mongodb": "7.1.
|
|
23
|
+
"mongodb": "7.1.1"
|
|
24
24
|
},
|
|
25
25
|
"main": "./dist/es/index.js",
|
|
26
26
|
"types": "./dist/types/index.d.ts",
|