@aloma.io/integration-sdk 3.8.21 → 3.8.23

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.
@@ -135,6 +135,7 @@ export class AbstractController {
135
135
  console.log(this.config, configSchema);
136
136
  const missing = Object.entries(configSchema)
137
137
  .map(([key, field]) => {
138
+ console.log(key, field, config[key]);
138
139
  if (!field)
139
140
  return;
140
141
  if (!field.optional && config[key] == null) {
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.23",
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) {