quidproquo-actionprocessor-awslambda 0.0.188 → 0.0.190

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -125,6 +125,8 @@ const buildDynamoUpdateExpression = (updates) => {
125
125
  ]
126
126
  .map((kvsUpdateActionType) => (0, exports.buildDynamoUpdateExpressionForType)(kvsUpdateActionType, updates))
127
127
  .filter((expression) => !!expression);
128
- return updatesExpressions.join(' ');
128
+ const result = updatesExpressions.join(' ');
129
+ console.log('Update Expression: ', result);
130
+ return result;
129
131
  };
130
132
  exports.buildDynamoUpdateExpression = buildDynamoUpdateExpression;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quidproquo-actionprocessor-awslambda",
3
- "version": "0.0.188",
3
+ "version": "0.0.190",
4
4
  "description": "",
5
5
  "main": "./lib/commonjs/index.js",
6
6
  "types": "./lib/commonjs/index.d.ts",
@@ -47,9 +47,9 @@
47
47
  "lodash": "^4.17.21",
48
48
  "node-cache": "^5.1.2",
49
49
  "node-match-path": "^0.6.3",
50
- "quidproquo-config-aws": "0.0.188",
51
- "quidproquo-core": "0.0.188",
52
- "quidproquo-webserver": "0.0.188"
50
+ "quidproquo-config-aws": "0.0.190",
51
+ "quidproquo-core": "0.0.190",
52
+ "quidproquo-webserver": "0.0.190"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@types/aws-lambda": "^8.10.109",
@@ -57,7 +57,7 @@
57
57
  "@types/jsonwebtoken": "^9.0.2",
58
58
  "@types/lodash": "^4.14.194",
59
59
  "@types/node": "^18.11.9",
60
- "quidproquo-tsconfig": "0.0.188",
60
+ "quidproquo-tsconfig": "0.0.190",
61
61
  "typescript": "^4.9.3"
62
62
  }
63
63
  }