Checkboxes for prior research
Describe the bug
The exported type NativeAttributeValue is resolved (in my IDE) to any, so my inputs are not validated
Regression Issue
SDK version number
@aws-sdk/lib-dynamodb@3.939.0, @aws-sdk/util-dynamodb@3.939.0
Which JavaScript Runtime is this issue in?
Node.js
Details of the browser/Node.js/ReactNative version
v22.18.0
Reproduction Steps
import { NativeAttributeValue } from '@aws-sdk/lib-dynamodb';
Observed Behavior
When hovering the type, I'm seeing type NativeAttributeValue = any
Expected Behavior
I should see a more complex type, as it seems to be intended
something like type NativeAttributeValue = NativeScalarAttributeValue | { [key: string]: NativeAttributeValue; } | NativeAttributeValue[] | ...
Possible Solution
that seems to be caused by this part of the type: InstanceType<{ new (...args: any[]): any; }>
Additional Information/Context
No response
Checkboxes for prior research
Describe the bug
The exported type
NativeAttributeValueis resolved (in my IDE) toany, so my inputs are not validatedRegression Issue
SDK version number
@aws-sdk/lib-dynamodb@3.939.0, @aws-sdk/util-dynamodb@3.939.0
Which JavaScript Runtime is this issue in?
Node.js
Details of the browser/Node.js/ReactNative version
v22.18.0
Reproduction Steps
Observed Behavior
When hovering the type, I'm seeing
type NativeAttributeValue = anyExpected Behavior
I should see a more complex type, as it seems to be intended
something like
type NativeAttributeValue = NativeScalarAttributeValue | { [key: string]: NativeAttributeValue; } | NativeAttributeValue[] | ...Possible Solution
that seems to be caused by this part of the type:
InstanceType<{ new (...args: any[]): any; }>Additional Information/Context
No response