New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@mcma/aws-dynamodb

Package Overview
Dependencies
Maintainers
3
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mcma/aws-dynamodb - npm Package Compare versions

Comparing version 0.4.4 to 0.4.6

14

lib/dynamo-db-table.js

@@ -25,3 +25,3 @@ const AWS = require("aws-sdk");

}
}
};

@@ -32,3 +32,3 @@ class DynamoDbTable extends DbTable {

const docClient = new AWS.DynamoDB.DocumentClient()
const docClient = new AWS.DynamoDB.DocumentClient();
const dcQuery = util.promisify(docClient.query.bind(docClient));

@@ -64,3 +64,3 @@ const dcGet = util.promisify(docClient.get.bind(docClient));

return items;
}
};

@@ -82,3 +82,3 @@ this.get = async (id) => {

return data.Item.resource;
}
};

@@ -100,4 +100,6 @@ this.put = async (id, resource) => {

await dcPut(params);
}
return resource;
};
this.delete = async (id) => {

@@ -113,3 +115,3 @@ var params = {

await dcDelete(params);
}
};
}

@@ -116,0 +118,0 @@ }

{
"name": "@mcma/aws-dynamodb",
"version": "0.4.4",
"version": "0.4.6",
"description": "Node module with code for using DynamoDB as the backing data storage for MCMA API handlers and workers.",

@@ -29,3 +29,3 @@ "engines": {

"dependencies": {
"@mcma/data": "0.4.4",
"@mcma/data": "0.4.6",
"aws-sdk": "^2.291.0",

@@ -32,0 +32,0 @@ "dynamodb-doc": "^1.0.0"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc