@aloma.io/integration-sdk 3.8.22 → 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) {
|