@aloma.io/integration-sdk 3.8.20 → 3.8.21
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.
@@ -132,6 +132,7 @@ export class AbstractController {
|
|
132
132
|
}
|
133
133
|
async defaultConfigCheck(configSchema) {
|
134
134
|
const config = this.config;
|
135
|
+
console.log(this.config, configSchema);
|
135
136
|
const missing = Object.entries(configSchema)
|
136
137
|
.map(([key, field]) => {
|
137
138
|
if (!field)
|
package/package.json
CHANGED
package/src/controller/index.mts
CHANGED
@@ -186,6 +186,8 @@ export abstract class AbstractController {
|
|
186
186
|
private async defaultConfigCheck(configSchema: {[key: string]: ConfigField}): Promise<void> {
|
187
187
|
const config = this.config;
|
188
188
|
|
189
|
+
console.log(this.config, configSchema)
|
190
|
+
|
189
191
|
const missing = Object.entries(configSchema)
|
190
192
|
.map(([key, field]) => {
|
191
193
|
if (!field) return;
|