Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@xapp/dynamo-service

Package Overview
Dependencies
Maintainers
6
Versions
155
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xapp/dynamo-service - npm Package Compare versions

Comparing version 0.0.91 to 0.0.92

xapp-dynamo-service-0.0.91.tgz

6

dist/service/TableService.js

@@ -130,4 +130,5 @@ "use strict";

ensureFormat(this.formattedKeys, set);
const dynamoKey = this.convertObjToDynamo(key);
return this.db
.update(this.tableName, key, { set, remove, append }, conditionExpression, returnType)
.update(this.tableName, dynamoKey, { set, remove, append }, conditionExpression, returnType)
.then((results) => {

@@ -159,3 +160,4 @@ if (results) {

delete(key) {
return this.db.delete(this.tableName, key);
const dynamoKey = Array.isArray(key) ? key.map(k => this.convertObjToDynamo(k)) : this.convertObjToDynamo(key);
return this.db.delete(this.tableName, dynamoKey);
}

@@ -162,0 +164,0 @@ cleanseObjectOfIgnoredGetItems(obj) {

{
"name": "@xapp/dynamo-service",
"version": "0.0.91",
"version": "0.0.92",
"description": "A dynamo help class which will help maintain data integrity.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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