@aws-sdk/util-dynamodb 3.160.0 → 3.163.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 +27 -0
- package/dist-types/models.d.ts +9 -0
- package/dist-types/ts3.4/models.d.ts +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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.163.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.162.0...v3.163.0) (2022-09-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/util-dynamodb
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.162.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.161.0...v3.162.0) (2022-08-31)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **lib-dynamodb:** declare File interface without requiring dom lib ([#3890](https://github.com/aws/aws-sdk-js-v3/issues/3890)) ([574507f](https://github.com/aws/aws-sdk-js-v3/commit/574507fab12cf7a6bed5af0f66760853ee31780f))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.161.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.160.0...v3.161.0) (2022-08-30)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/util-dynamodb
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.160.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.159.0...v3.160.0) (2022-08-29)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/util-dynamodb
|
package/dist-types/models.d.ts
CHANGED
|
@@ -16,4 +16,13 @@ export declare type NativeAttributeValue = NativeScalarAttributeValue | {
|
|
|
16
16
|
new (...args: any[]): any;
|
|
17
17
|
}>;
|
|
18
18
|
export declare type NativeScalarAttributeValue = null | undefined | boolean | number | NumberValue | bigint | NativeAttributeBinary | string;
|
|
19
|
+
/**
|
|
20
|
+
* Declare File in case DOM is not added to the tsconfig lib causing
|
|
21
|
+
* File interface is not defined. For developers with DOM lib added,
|
|
22
|
+
* the File interface will be merged correctly.
|
|
23
|
+
*/
|
|
24
|
+
declare global {
|
|
25
|
+
interface File {
|
|
26
|
+
}
|
|
27
|
+
}
|
|
19
28
|
export declare type NativeAttributeBinary = ArrayBuffer | Blob | Buffer | DataView | File | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array;
|
|
@@ -9,4 +9,9 @@ export declare type NativeAttributeValue = NativeScalarAttributeValue | {
|
|
|
9
9
|
new (...args: any[]): any;
|
|
10
10
|
}>;
|
|
11
11
|
export declare type NativeScalarAttributeValue = null | undefined | boolean | number | NumberValue | bigint | NativeAttributeBinary | string;
|
|
12
|
+
|
|
13
|
+
declare global {
|
|
14
|
+
interface File {
|
|
15
|
+
}
|
|
16
|
+
}
|
|
12
17
|
export declare type NativeAttributeBinary = ArrayBuffer | Blob | Buffer | DataView | File | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/util-dynamodb",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.163.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.163.0",
|
|
26
26
|
"@tsconfig/recommended": "1.0.1",
|
|
27
27
|
"concurrently": "7.0.0",
|
|
28
28
|
"downlevel-dts": "0.7.0",
|