@infra-blocks/aws-dynamodb 0.32.1 → 0.32.2

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.
@@ -4,9 +4,8 @@ export type NativeBinary = Buffer;
4
4
  export type NativeBinarySet = Set<NativeBinary>;
5
5
  export type NativeBoolean = boolean;
6
6
  export type NativeList = Array<AttributeValue>;
7
- export type NativeMap = {
8
- [key: AttributeName]: AttributeValue;
9
- };
7
+ export interface NativeMap extends Attributes {
8
+ }
10
9
  export type NativeNull = null;
11
10
  export type NativeNumber = bigint | number;
12
11
  export type NativeNumberSet = Set<NativeNumber>;
@@ -4,9 +4,8 @@ export type NativeBinary = Buffer;
4
4
  export type NativeBinarySet = Set<NativeBinary>;
5
5
  export type NativeBoolean = boolean;
6
6
  export type NativeList = Array<AttributeValue>;
7
- export type NativeMap = {
8
- [key: AttributeName]: AttributeValue;
9
- };
7
+ export interface NativeMap extends Attributes {
8
+ }
10
9
  export type NativeNull = null;
11
10
  export type NativeNumber = bigint | number;
12
11
  export type NativeNumberSet = Set<NativeNumber>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infra-blocks/aws-dynamodb",
3
- "version": "0.32.1",
3
+ "version": "0.32.2",
4
4
  "description": "A convenience wrapper over @aws-sdk/client-dynamodb and @aws-sdk/lib-dynamodb.",
5
5
  "keywords": [
6
6
  "aws",
@@ -45,7 +45,6 @@
45
45
  "@infra-blocks/iter": "^0.2.7",
46
46
  "@infra-blocks/node-console-logger": "^0.3.1",
47
47
  "@infra-blocks/test": "^0.4.0",
48
- "@infra-blocks/types": "^0.13.1",
49
48
  "@types/mocha": "^10.0.10",
50
49
  "@types/node": "^24.0.10",
51
50
  "c8": "^10.1.3",
@@ -65,6 +64,7 @@
65
64
  "@aws-sdk/lib-dynamodb": "^3.840.0",
66
65
  "@infra-blocks/logger-interface": "^0.3.1",
67
66
  "@infra-blocks/null-logger": "^0.1.1",
68
- "@infra-blocks/retry": "^0.1.1"
67
+ "@infra-blocks/retry": "^0.1.1",
68
+ "@infra-blocks/types": "^0.14.0"
69
69
  }
70
70
  }