@aloma.io/integration-sdk 3.7.50 → 3.8.0

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.
@@ -18,7 +18,7 @@ export class Connector {
18
18
  return (this.dispatcher = new Dispatcher());
19
19
  }
20
20
  async run() {
21
- console.log(`Running ${this.name} (${this.version})`);
21
+ console.log(`Running ${this.name}`);
22
22
  const { processPacket, start, introspect, configSchema } = this.dispatcher.build();
23
23
  const config = await makeConfig({
24
24
  id: this.id,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.7.50",
3
+ "version": "3.8.0",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -21,7 +21,7 @@ export class Connector {
21
21
  }
22
22
 
23
23
  async run() {
24
- console.log(`Running ${this.name} (${this.version})`);
24
+ console.log(`Running ${this.name}`);
25
25
 
26
26
  const { processPacket, start, introspect, configSchema } = this.dispatcher!.build();
27
27