@aloma.io/integration-sdk 3.8.24 → 3.8.25
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.
@@ -134,7 +134,7 @@ export class AbstractController {
|
|
134
134
|
async defaultConfigCheck(configSchema) {
|
135
135
|
const config = this.config;
|
136
136
|
console.log(this.config, configSchema);
|
137
|
-
const missing = Object.entries(configSchema
|
137
|
+
const missing = Object.entries(configSchema)
|
138
138
|
.map(([key, field]) => {
|
139
139
|
console.log(key, field, config[key]);
|
140
140
|
if (!field)
|
package/package.json
CHANGED
package/src/controller/index.mts
CHANGED
@@ -189,7 +189,7 @@ export abstract class AbstractController {
|
|
189
189
|
|
190
190
|
console.log(this.config, configSchema)
|
191
191
|
|
192
|
-
const missing = Object.entries(configSchema
|
192
|
+
const missing = Object.entries(configSchema)
|
193
193
|
.map(([key, field]) => {
|
194
194
|
console.log(key, field, config[key])
|
195
195
|
if (!field) return;
|