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.72 to 0.0.73

xapp-dynamo-service-0.0.72.tgz

2

dist/service/TableService.d.ts

@@ -60,3 +60,3 @@ import { ConditionExpression, DynamoService, QueryParams, QueryResult, ScanParams, ScanResult, UpdateBody, UpdateReturnType } from "./DynamoService";

private convertObjectsFromDynamo<P>(dynamoObj);
private convertObjToDynamo(obj);
private convertObjToDynamo<K>(obj);
}

@@ -138,3 +138,4 @@ "use strict";

get(key, projection) {
return this.db.get(this.tableName, key, projection)
const realKey = (Array.isArray(key)) ? key.map(this.convertObjToDynamo) : this.convertObjToDynamo(key);
return this.db.get(this.tableName, realKey, projection)
.then(item => this.convertObjFromDynamo(item))

@@ -141,0 +142,0 @@ .then(item => this.cleanseObjectOfIgnoredGetItems(item));

{
"name": "@xapp/dynamo-service",
"version": "0.0.72",
"version": "0.0.73",
"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