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