@aloma.io/integration-sdk 3.7.27 → 3.7.29

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.
@@ -351,8 +351,9 @@ ${text}
351
351
  result.ok = false;
352
352
  result.error = e.message;
353
353
  }
354
- const packet = transport.newPacket(result);
354
+ const packet = transport.newPacket({});
355
355
  packet.method("connector.health.check");
356
+ packet.args(result);
356
357
  transport.send(packet);
357
358
  },
358
359
  getClient: (arg) => theOAuth ? theOAuth.getClient(arg) : new Fetcher(arg),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.7.27",
3
+ "version": "3.7.29",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -443,11 +443,10 @@ ${text}
443
443
  result.error = e.message;
444
444
  }
445
445
 
446
- const packet = transport.newPacket(
447
- result,
448
- );
446
+ const packet = transport.newPacket({});
449
447
 
450
448
  packet.method("connector.health.check");
449
+ packet.args(result);
451
450
 
452
451
  transport.send(packet);
453
452
  },