* Added 'M' type to decode attribute for dynamodb * Fixed bug with return all. Headers from the previous iteration were being passed causing an invalid signature error
This commit is contained in:
@@ -81,6 +81,8 @@ function decodeAttribute(type: AttributeValueType, attribute: string) {
|
||||
case 'SS':
|
||||
case 'NS':
|
||||
return attribute;
|
||||
case 'M':
|
||||
return simplify(attribute);
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user