UNPKG

@fnlb-project/stanza

Version:

Modern XMPP in the browser, with a JSON API

28 lines (27 loc) 1.03 kB
// ==================================================================== // XEP-0012: Last Activity // -------------------------------------------------------------------- // Source: https://xmpp.org/extensions/xep-0012.html // Version: 2.0 (2008-11-26) // // Additional: // -------------------------------------------------------------------- // XEP-0256: Last Activity in Presence // -------------------------------------------------------------------- // Source: https://xmpp.org/extensions/xep-0256.html // Version: 1.1 (2009-09-15) // ==================================================================== import { integerAttribute, text } from '../jxt'; import { NS_LAST_ACTIVITY } from '../Namespaces'; const Protocol = [ { aliases: ['presence.legacyLastActivity', 'iq.lastActivity'], element: 'query', fields: { seconds: integerAttribute('seconds'), status: text() }, namespace: NS_LAST_ACTIVITY } ]; export default Protocol;