@xapp/dynamo-service
Advanced tools
Comparing version 0.0.101 to 0.0.102
@@ -8,3 +8,3 @@ import { ConditionExpression, DynamoService, QueryParams, QueryResult, ScanParams, ScanResult, UpdateBody, UpdateReturnType } from "./DynamoService"; | ||
trimConstants?: boolean; | ||
ignoreColumnsInGet?: RegExp; | ||
ignoreColumnsInGet?: RegExp | RegExp[]; | ||
} | ||
@@ -11,0 +11,0 @@ export interface PutAllReturn<T> { |
@@ -158,3 +158,3 @@ "use strict"; | ||
const keys = Object.keys(obj); | ||
const ignoredInGetKeys = [this.props.ignoreColumnsInGet]; | ||
const ignoredInGetKeys = [].concat(this.props.ignoreColumnsInGet); | ||
for (let ignored of ignoredInGetKeys) { | ||
@@ -161,0 +161,0 @@ for (let key of keys) { |
{ | ||
"name": "@xapp/dynamo-service", | ||
"version": "0.0.101", | ||
"version": "0.0.102", | ||
"description": "A dynamo help class which will help maintain data integrity.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
147517