@aloma.io/integration-sdk 3.8.21 → 3.8.22

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.8.21",
3
+ "version": "3.8.22",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -190,6 +190,7 @@ export abstract class AbstractController {
190
190
 
191
191
  const missing = Object.entries(configSchema)
192
192
  .map(([key, field]) => {
193
+ console.log(key, field, config[key])
193
194
  if (!field) return;
194
195
 
195
196
  if (!field.optional && config[key] == null) {