2017-03-07 16:44:31 -06:00
|
|
|
'use strict';
|
|
|
|
|
2017-08-24 02:51:02 -05:00
|
|
|
let keyMirror = require('keymirror');
|
2017-03-07 16:44:31 -06:00
|
|
|
|
2017-08-24 05:48:32 -05:00
|
|
|
/**
|
|
|
|
* Set of APIs exposed to the remote object
|
|
|
|
* @type {Object}
|
|
|
|
*/
|
2017-03-07 16:44:31 -06:00
|
|
|
const cmds = keyMirror({
|
|
|
|
isOnline: null,
|
|
|
|
registerLogger: null,
|
|
|
|
setBadgeCount: null,
|
2017-04-18 11:02:25 -05:00
|
|
|
badgeDataUrl: null,
|
2017-04-20 13:54:11 -05:00
|
|
|
activate: null,
|
2017-05-08 13:30:45 -05:00
|
|
|
registerBoundsChange: null,
|
2017-05-13 13:23:44 -05:00
|
|
|
registerProtocolHandler: null,
|
2017-05-08 13:30:45 -05:00
|
|
|
registerActivityDetection: null,
|
2017-06-16 17:29:56 -05:00
|
|
|
showNotificationSettings: null,
|
2018-01-23 02:17:17 -06:00
|
|
|
sanitize: null,
|
2018-03-09 04:01:44 -06:00
|
|
|
bringToFront: null,
|
2018-03-09 04:46:47 -06:00
|
|
|
openScreenPickerWindow: null,
|
2018-04-11 08:06:46 -05:00
|
|
|
popupMenu: null,
|
2018-05-04 05:38:09 -05:00
|
|
|
optimizeMemoryConsumption: null,
|
2018-09-01 06:05:53 -05:00
|
|
|
optimizeMemoryRegister: null,
|
2018-06-19 09:56:04 -05:00
|
|
|
setIsInMeeting: null,
|
|
|
|
setLocale: null,
|
2018-07-09 02:54:35 -05:00
|
|
|
keyPress: null,
|
2019-01-03 06:48:50 -06:00
|
|
|
openScreenSharingIndicator: null
|
2017-03-21 11:15:18 -05:00
|
|
|
});
|
|
|
|
|
2017-03-07 16:44:31 -06:00
|
|
|
module.exports = {
|
|
|
|
cmds: cmds,
|
|
|
|
apiName: 'symphony-api'
|
2017-05-13 13:23:44 -05:00
|
|
|
};
|