Zoom's mac electron SDK needs testing and fixes

When trying to update our Mac Electron app use latest Zoom Mac Electron SDK v4.3.47193.0321, we are running into two issues,

First, which we could resolve ourselves, needed to add import for ZoomSDKVideoUI.framework in zoomsdk_bridge.js

if(appName('isEqualToString', electron))
{
  $.import(path.resolve(__filename,'../../../../ZoomSDK/util.framework'));
  $.import(path.resolve(__filename,'../../../../ZoomSDK/ZCommonUI.framework'));
  $.import(path.resolve(__filename,'../../../../ZoomSDK/cmmlib.framework'));
  $.import(path.resolve(__filename,'../../../../ZoomSDK/ZoomSDKChatUI.framework'));
  $.import(path.resolve(__filename,'../../../../ZoomSDK/ZoomSDKVideoUI.framework'));
  $.import(path.resolve(__filename,'../../../../ZoomSDK/ZoomSDK.framework'));
}
else
{
  $.import(path.resolve(__filename,'../../../../../Frameworks/util.framework'));
  $.import(path.resolve(__filename,'../../../../../Frameworks/ZCommonUI.framework'));
  $.import(path.resolve(__filename,'../../../../../Frameworks/cmmlib.framework'));
  $.import(path.resolve(__filename,'../../../../../Frameworks/ZoomSDKChatUI.framework'));
  $.import(path.resolve(__filename,'../../../../../Frameworks/ZoomSDKVideoUI.framework'));
  $.import(path.resolve(__filename,'../../../../../Frameworks/ZoomSDK.framework'));
}

Second, SDKAuth(appkey, appsecret); API call is not sending back a reply, neither success or error.

Sorry, we can not reproduce this issue on our mac sdk electron demo app, please recheck your code on your side.
BTW, auth result is provided from the callback api ‘onAuthResult’.