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