From a57af1a7742b3bf23ecb78d701636ca606c5c6f0 Mon Sep 17 00:00:00 2001 From: Niresh Shankar <89511644+the-niresh@users.noreply.github.com> Date: Wed, 18 Oct 2023 17:50:34 +0530 Subject: [PATCH] added GetMethodResponseHandler in IntentReader.js --- src/IntentReader.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/IntentReader.js b/src/IntentReader.js index d80b498b..252c18fe 100644 --- a/src/IntentReader.js +++ b/src/IntentReader.js @@ -43,6 +43,7 @@ import SetApiResponseHandler from './pubsub/handlers/setApiResponseHandler'; import LifecycleRecordHandler from './pubsub/handlers/lifecycleRecordHandler'; import RegisterProviderHandler from './pubsub/handlers/RegisterProviderHandler'; import GetEventResponse from './pubsub/handlers/GetEventResponse'; +import GetMethodResponseHandler from './pubsub/handlers/GetMethodResponseHandler'; const logger = require('./utils/Logger')('IntentReader.js'); @@ -59,6 +60,7 @@ const handlers = { startLifecycleRecording: new LifecycleRecordHandler('startLifecycleRecording'), stopLifecycleRecording: new LifecycleRecordHandler('stopLifecycleRecording'), getEventResponse: new GetEventResponse('getEventResponse'), + getMethodResponse: new GetMethodResponseHandler('getMethodResponse'), [CONSTANTS.CALL_METHOD]: new CallMethodHandler(CONSTANTS.CALL_METHOD), [CONSTANTS.HEALTH_CHECK]: new HealthCheckHandler(CONSTANTS.HEALTH_CHECK), };