@aloma.io/integration-sdk 3.3.35 → 3.3.36

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.
@@ -13,7 +13,6 @@ export default class RuntimeContext {
13
13
  if (!(controller instanceof AbstractController))
14
14
  throw new Error("the controller needs to extend AbstractController");
15
15
  const data = this.data;
16
- console.log(data, data.icon);
17
16
  let icon;
18
17
  try {
19
18
  if (data.icon) {
@@ -189,7 +189,6 @@ class Connector {
189
189
  this.version = version;
190
190
  this.name = name;
191
191
  this.icon = icon;
192
- console.log('have icon', icon);
193
192
  }
194
193
  configure() {
195
194
  return (this.dispatcher = new Dispatcher());
@@ -10,7 +10,6 @@ class Registration {
10
10
  const configSchema = config.configSchema();
11
11
  const intro = await config.introspect();
12
12
  const icon = config.icon();
13
- console.log('register icon', icon);
14
13
  const response = await fetch(config.url() + "register", C.augmentRegistration({
15
14
  method: "POST",
16
15
  body: JSON.stringify({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.3.35",
3
+ "version": "3.3.36",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -14,8 +14,6 @@ export default class RuntimeContext {
14
14
  if (!(controller instanceof AbstractController))
15
15
  throw new Error("the controller needs to extend AbstractController");
16
16
  const data: any = this.data;
17
-
18
- console.log(data, data.icon)
19
17
 
20
18
  let icon;
21
19
 
@@ -240,8 +240,6 @@ class Connector {
240
240
  this.version = version;
241
241
  this.name = name;
242
242
  this.icon = icon;
243
-
244
- console.log('have icon', icon)
245
243
  }
246
244
 
247
245
  configure() {
@@ -13,8 +13,6 @@ class Registration {
13
13
  const intro = await config.introspect();
14
14
  const icon = config.icon();
15
15
 
16
- console.log('register icon', icon)
17
-
18
16
  const response = await fetch(
19
17
  config.url() + "register",
20
18
  C.augmentRegistration(