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.90 to 0.0.91

xapp-dynamo-service-0.0.90.tgz

18

dist/service/TableService.js

@@ -210,16 +210,10 @@ "use strict";

function ensureHasRequiredKeys(requiredKeys, obj) {
try {
Object_1.throwIfDoesNotContain(obj, requiredKeys);
}
catch (e) {
throw new ValidationError_1.ValidationError("The the object requires the keys '" + requiredKeys.join(",") + "'.");
}
Object_1.throwIfDoesNotContain(obj, requiredKeys, false, (missingKeys) => {
throw new ValidationError_1.ValidationError("The the object requires the keys '" + missingKeys.join(", ") + "'.");
});
}
function ensureDoesNotHaveConstantKeys(constantKeys, obj) {
try {
Object_1.throwIfDoesContain(obj, constantKeys);
}
catch (e) {
throw new ValidationError_1.ValidationError("The keys '" + constantKeys.join(",") + "' are constant and can not be modified.");
}
Object_1.throwIfDoesContain(obj, constantKeys, (foundKeys) => {
throw new ValidationError_1.ValidationError("The keys '" + foundKeys.join(", ") + "' are constant and can not be modified.");
});
}

@@ -226,0 +220,0 @@ function ensureNoExtraKeys(knownKeys, obj) {

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