@@ -37,7 +37,7 @@ export class WebSocketBridgeCommunication {
3737 } ) ;
3838 let commandData = {
3939 Command : command ,
40- Data : { }
40+ Data : { } ,
4141 } ;
4242 let input = thisWebSocketBridgeCommunication . serializer . convertCommandDataToWebsocketInputFormat ( commandData ) ;
4343 this . heartbeatTimer = setInterval ( ( ) => {
@@ -71,7 +71,7 @@ export class WebSocketBridgeCommunication {
7171 } ) ;
7272 const commandData = {
7373 Command : command ,
74- Data : { Name : apiName }
74+ Data : { Name : apiName } ,
7575 } ;
7676 const input = thisWebSocketBridgeCommunication . serializer . convertCommandDataToWebsocketInputFormat ( commandData ) ;
7777 this . webSocket . send ( input ) ;
@@ -86,7 +86,7 @@ export class WebSocketBridgeCommunication {
8686 filter ( ( data : DeserializedData ) => data . command === command ) ,
8787 first ( ) ,
8888 map ( ( data : DeserializedData ) => {
89- this . logger . info ( 'ApiList received successfully' ) ;
89+ this . logger . info ( 'ApiList received successfully : ' + JSON . stringify ( data ) ) ;
9090 return thisWebSocketBridgeCommunication . deserializer . getJsonDataFromGetXcApiListRequest (
9191 data . stringData
9292 ) ;
@@ -95,7 +95,7 @@ export class WebSocketBridgeCommunication {
9595 . toPromise ( ) ;
9696 const commandData = {
9797 Command : command ,
98- Data : { }
98+ Data : { } ,
9999 } ;
100100 this . webSocket . send (
101101 thisWebSocketBridgeCommunication . serializer . convertCommandDataToWebsocketInputFormat ( commandData )
@@ -127,7 +127,7 @@ export class WebSocketBridgeCommunication {
127127 } ) ;
128128 const commandData = {
129129 Command : command ,
130- Data : { Name : apiName }
130+ Data : { Name : apiName } ,
131131 } ;
132132 this . webSocket . send (
133133 thisWebSocketBridgeCommunication . serializer . convertCommandDataToWebsocketInputFormat ( commandData )
0 commit comments