@aws-sdk/util-dynamodb 3.995.0 → 3.996.1

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.
@@ -1,4 +1,4 @@
1
- import { NumberValue as INumberValue } from "./models";
1
+ import type { NumberValue as INumberValue } from "./models";
2
2
  /**
3
3
  *
4
4
  * Class for storing DynamoDB numbers that exceed the scale of
@@ -1,6 +1,6 @@
1
- import { AttributeValue } from "@aws-sdk/client-dynamodb";
2
- import { marshallOptions } from "./marshall";
3
- import { NativeAttributeValue } from "./models";
1
+ import type { AttributeValue } from "@aws-sdk/client-dynamodb";
2
+ import type { marshallOptions } from "./marshall";
3
+ import type { NativeAttributeValue } from "./models";
4
4
  /**
5
5
  * Convert a JavaScript value to its equivalent DynamoDB AttributeValue type.
6
6
  *
@@ -1,6 +1,6 @@
1
- import { AttributeValue } from "@aws-sdk/client-dynamodb";
1
+ import type { AttributeValue } from "@aws-sdk/client-dynamodb";
2
2
  import type { NativeAttributeValue } from "./models";
3
- import { unmarshallOptions } from "./unmarshall";
3
+ import type { unmarshallOptions } from "./unmarshall";
4
4
  /**
5
5
  * Convert a DynamoDB AttributeValue object to its equivalent JavaScript type.
6
6
  *
@@ -1,6 +1,6 @@
1
- import { AttributeValue } from "@aws-sdk/client-dynamodb";
2
- import { NativeAttributeBinary, NativeAttributeValue } from "./models";
3
- import { NumberValue } from "./NumberValue";
1
+ import type { AttributeValue } from "@aws-sdk/client-dynamodb";
2
+ import type { NativeAttributeBinary, NativeAttributeValue } from "./models";
3
+ import type { NumberValue } from "./NumberValue";
4
4
  /**
5
5
  * An optional configuration object for `marshall`
6
6
  */
@@ -1,6 +1,6 @@
1
- import { AttributeValue } from "@aws-sdk/client-dynamodb";
2
- import { NativeAttributeValue } from "./models";
3
- import { NumberValue } from "./NumberValue";
1
+ import type { AttributeValue } from "@aws-sdk/client-dynamodb";
2
+ import type { NativeAttributeValue } from "./models";
3
+ import type { NumberValue } from "./NumberValue";
4
4
  /**
5
5
  * An optional configuration object for `convertToNative`
6
6
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/util-dynamodb",
3
- "version": "3.995.0",
3
+ "version": "3.996.1",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
6
  "build:cjs": "node ../../scripts/compilation/inline util-dynamodb",
@@ -26,7 +26,7 @@
26
26
  "tslib": "^2.6.2"
27
27
  },
28
28
  "devDependencies": {
29
- "@aws-sdk/client-dynamodb": "3.995.0",
29
+ "@aws-sdk/client-dynamodb": "3.997.0",
30
30
  "@tsconfig/recommended": "1.0.1",
31
31
  "concurrently": "7.0.0",
32
32
  "downlevel-dts": "0.10.1",
@@ -34,7 +34,7 @@
34
34
  "typescript": "~5.8.3"
35
35
  },
36
36
  "peerDependencies": {
37
- "@aws-sdk/client-dynamodb": "^3.995.0"
37
+ "@aws-sdk/client-dynamodb": "^3.997.0"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=20.0.0"