@aloma.io/integration-sdk 3.8.20 → 3.8.22

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.8.20",
3
+ "version": "3.8.22",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -186,8 +186,11 @@ 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]) => {
193
+ console.log(key, field, config[key])
191
194
  if (!field) return;
192
195
 
193
196
  if (!field.optional && config[key] == null) {