@twin.org/entity-storage-connector-dynamodb 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-dynamodb-v0.0.3-next.8...entity-storage-connector-dynamodb-v0.0.3-next.9) (2026-04-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **entity-storage-connector-dynamodb:** 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-dynamodb-v0.0.3-next.7...entity-storage-connector-dynamodb-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-dynamodb-v0.0.3-next.6...entity-storage-connector-dynamodb-v0.0.3-next.7) (2026-03-13)
|
|
4
36
|
|
|
5
37
|
|
|
@@ -14,17 +14,23 @@ The region for the AWS connection.
|
|
|
14
14
|
|
|
15
15
|
### authMode? {#authmode}
|
|
16
16
|
|
|
17
|
-
> `optional` **authMode
|
|
17
|
+
> `optional` **authMode?**: `"credentials"` \| `"pod"`
|
|
18
18
|
|
|
19
19
|
The authentication mode.
|
|
20
20
|
- "credentials": Use access key ID and secret access key.
|
|
21
21
|
- "pod": Use IAM role attached to the pod (e.g., in EKS).
|
|
22
22
|
|
|
23
|
+
#### Default
|
|
24
|
+
|
|
25
|
+
```ts
|
|
26
|
+
credentials
|
|
27
|
+
```
|
|
28
|
+
|
|
23
29
|
***
|
|
24
30
|
|
|
25
31
|
### accessKeyId? {#accesskeyid}
|
|
26
32
|
|
|
27
|
-
> `optional` **accessKeyId
|
|
33
|
+
> `optional` **accessKeyId?**: `string`
|
|
28
34
|
|
|
29
35
|
The AWS access key ID.
|
|
30
36
|
|
|
@@ -32,7 +38,7 @@ The AWS access key ID.
|
|
|
32
38
|
|
|
33
39
|
### secretAccessKey? {#secretaccesskey}
|
|
34
40
|
|
|
35
|
-
> `optional` **secretAccessKey
|
|
41
|
+
> `optional` **secretAccessKey?**: `string`
|
|
36
42
|
|
|
37
43
|
The AWS secret access key.
|
|
38
44
|
|
|
@@ -48,7 +54,7 @@ The name of the table for the storage.
|
|
|
48
54
|
|
|
49
55
|
### endpoint? {#endpoint}
|
|
50
56
|
|
|
51
|
-
> `optional` **endpoint
|
|
57
|
+
> `optional` **endpoint?**: `string`
|
|
52
58
|
|
|
53
59
|
AWS endpoint, not usually required but could be used for local DynamoDB instance e.g. http://localhost:10000.
|
|
54
60
|
|
|
@@ -56,6 +62,6 @@ AWS endpoint, not usually required but could be used for local DynamoDB instance
|
|
|
56
62
|
|
|
57
63
|
### connectionTimeoutMs? {#connectiontimeoutms}
|
|
58
64
|
|
|
59
|
-
> `optional` **connectionTimeoutMs
|
|
65
|
+
> `optional` **connectionTimeoutMs?**: `number`
|
|
60
66
|
|
|
61
67
|
The connection timeout in milliseconds.
|
|
@@ -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,7 +22,7 @@ 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, defaults to no logging.
|
|
28
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/entity-storage-connector-dynamodb",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.9",
|
|
4
4
|
"description": "Amazon DynamoDB connector for managed NoSQL persistence.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@aws-sdk/client-dynamodb": "3.
|
|
18
|
-
"@aws-sdk/lib-dynamodb": "3.
|
|
17
|
+
"@aws-sdk/client-dynamodb": "3.1017",
|
|
18
|
+
"@aws-sdk/lib-dynamodb": "3.1017",
|
|
19
19
|
"@aws-sdk/util-dynamodb": "3.996",
|
|
20
20
|
"@twin.org/context": "next",
|
|
21
21
|
"@twin.org/core": "next",
|
|
22
22
|
"@twin.org/entity": "next",
|
|
23
|
-
"@twin.org/entity-storage-models": "0.0.3-next.
|
|
23
|
+
"@twin.org/entity-storage-models": "0.0.3-next.9",
|
|
24
24
|
"@twin.org/logging-models": "next",
|
|
25
25
|
"@twin.org/nameof": "next"
|
|
26
26
|
},
|