@aws-sdk/util-dynamodb 3.105.0 → 3.112.0
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
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.112.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.111.0...v3.112.0) (2022-06-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/util-dynamodb
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/util-dynamodb
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @aws-sdk/util-dynamodb
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
7
31
|
|
|
8
32
|
**Note:** Version bump only for package @aws-sdk/util-dynamodb
|
|
@@ -6,8 +6,4 @@ export interface unmarshallOptions {
|
|
|
6
6
|
wrapNumbers?: boolean;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
export declare const unmarshall: (data:
|
|
10
|
-
[key: string]: AttributeValue;
|
|
11
|
-
}, options?: unmarshallOptions | undefined) => {
|
|
12
|
-
[key: string]: any;
|
|
13
|
-
};
|
|
9
|
+
export declare const unmarshall: (data: Record<string, AttributeValue>, options?: unmarshallOptions | undefined) => Record<string, NativeAttributeValue>;
|
|
@@ -16,8 +16,4 @@ export interface unmarshallOptions {
|
|
|
16
16
|
* @param {any} data - The DynamoDB record
|
|
17
17
|
* @param {unmarshallOptions} options - An optional configuration object for `unmarshall`
|
|
18
18
|
*/
|
|
19
|
-
export declare const unmarshall: (data:
|
|
20
|
-
[key: string]: AttributeValue;
|
|
21
|
-
}, options?: unmarshallOptions | undefined) => {
|
|
22
|
-
[key: string]: any;
|
|
23
|
-
};
|
|
19
|
+
export declare const unmarshall: (data: Record<string, AttributeValue>, options?: unmarshallOptions | undefined) => Record<string, NativeAttributeValue>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/util-dynamodb",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.112.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"tslib": "^2.3.1"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@aws-sdk/client-dynamodb": "3.
|
|
25
|
+
"@aws-sdk/client-dynamodb": "3.112.0",
|
|
26
26
|
"@tsconfig/recommended": "1.0.1",
|
|
27
27
|
"concurrently": "7.0.0",
|
|
28
28
|
"downlevel-dts": "0.7.0",
|