From 1f62b5a7d11256dd3e38192c135a1c3eb846b24d Mon Sep 17 00:00:00 2001 From: Kummithi Guru Eswar Sainath Reddy <148111540+Eswar2103@users.noreply.github.com> Date: Tue, 4 Nov 2025 18:00:03 +0530 Subject: [PATCH 1/2] FCA start issue fix --- src/FireboltTransportInvoker.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/FireboltTransportInvoker.js b/src/FireboltTransportInvoker.js index 2f545b8e..c54e08ea 100644 --- a/src/FireboltTransportInvoker.js +++ b/src/FireboltTransportInvoker.js @@ -17,6 +17,7 @@ */ import Transport from '@firebolt-js/sdk/dist/lib/Transport'; +const logger = require('./utils/Logger')('FireboltTransportInvoker.js'); let getInvoker; try { getInvoker = require('../plugins/FireboltExtensionInvoker').getInvoker; From ef2b7062cf323b16ff89ca443efe9357acb90579 Mon Sep 17 00:00:00 2001 From: Kummithi Guru Eswar Sainath Reddy <148111540+Eswar2103@users.noreply.github.com> Date: Wed, 19 Nov 2025 11:08:29 +0530 Subject: [PATCH 2/2] Pass params to registerEventInTransport method (#327) --- src/EventInvocation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EventInvocation.js b/src/EventInvocation.js index 40c29421..66dc6e7f 100644 --- a/src/EventInvocation.js +++ b/src/EventInvocation.js @@ -204,7 +204,7 @@ export class EventInvocation { moduleWithEventName = moduleWithEventName.split('_')[1]; } - const { id, promise } = await this.registerEventInTransport(moduleWithEventName); + const { id, promise } = await this.registerEventInTransport(moduleWithEventName, params); const result = await promise; if (result && result.message) { throw result.message;