dynamodb-enhanced
Advanced tools
Comparing version 0.4.0-j to 0.4.0-k
@@ -218,6 +218,6 @@ // Copyright Teleportd Ltd. and other Contributors | ||
data.TableName = table; | ||
var key = { "HashKeyElement": hash }; | ||
var key = [hash]; | ||
if(typeof range !== 'undefined' && | ||
range !== null) { | ||
key.RangeKeyElement = range; | ||
key.push(range); | ||
} | ||
@@ -455,3 +455,3 @@ data.Key = objToDDB(key); | ||
var key = part.keys[j]; | ||
var keyData = scToDDB(key); | ||
var keyData = objToDDB(key); | ||
tableData.Keys.push(keyData); | ||
@@ -458,0 +458,0 @@ } |
{ | ||
"name": "dynamodb-enhanced", | ||
"version": "0.4.0j", | ||
"version": "0.4.0k", | ||
"description": "Simple DynamoDB Library for Node.js. enhanced version of dynamodb by Stanislas Polu", | ||
@@ -5,0 +5,0 @@ "keywords": ["dynamo", "node", "db", "aws", "amazon"], |
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
81556