@aloma.io/integration-sdk 3.7.32 → 3.7.33

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.
@@ -343,7 +343,7 @@ ${text}
343
343
  getBlobContent,
344
344
  createBlob,
345
345
  healthCheck: async (controller) => {
346
- let result = { ok: true };
346
+ let result = { ok: true, error: null };
347
347
  try {
348
348
  await controller.__healthCheck();
349
349
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.7.32",
3
+ "version": "3.7.33",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -433,7 +433,7 @@ ${text}
433
433
  getBlobContent,
434
434
  createBlob,
435
435
  healthCheck: async (controller) => {
436
- let result: any = { ok: true };
436
+ let result: any = { ok: true, error: null };
437
437
 
438
438
  try {
439
439
  await controller.__healthCheck();