{"version":3,"sources":["../../../packages/core/rpc/notification/rpc-notification-model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AAC5E,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE1C;;GAEG;AACH,qBAAa,kBAAkB;IAC3B,OAAc,OAAO,SAAkB;IACvC,OAAc,OAAO,SAAW;CACnC;AAED;;GAEG;AACH,MAAM,WAAW,eAAgB,SAAQ,WAAW,EAAE,kBAAkB;IACpE;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACrB","file":"rpc-notification-model.d.ts","sourcesContent":["import { ClientNotification } from '../../notification/client-notification';\r\nimport { RpcBaseData } from '../rpc-base';\r\n\r\n/**\r\n * RPC notification request name and version.\r\n */\r\nexport class RpcNotificationKey {\r\n    public static command = 'Notification';\r\n    public static version = '0.1.0';\r\n}\r\n\r\n/**\r\n * Rpc notification record data.\r\n */\r\nexport interface RpcNotification extends RpcBaseData, ClientNotification {\r\n    /**\r\n     * node name.\r\n     */\r\n    nodeName: string;\r\n\r\n    /**\r\n     * The timestamp. Date.now() / the number of milliseconds elapsed since 1 January 1970 00:00:00 UTC.\r\n     */\r\n    timestamp: number;\r\n}\r\n"]}