UNPKG

@pryv/monitor

Version:

Extends `pryv` with event-driven notifications for changes on a Pryv.io account

20 lines (18 loc) 338 B
/** * @license * [BSD-3-Clause](https://github.com/pryv/lib-js/blob/master/LICENSE) */ /** * Enum trigger messages * @readonly * @enum {pryv.Monitor.Changes} */ const Changes = { EVENT: 'event', EVENT_DELETE: 'eventDelete', STREAMS: 'streams', ERROR: 'error', READY: 'ready', STOP: 'stop' }; module.exports = Changes;