UNPKG

stanza-extend

Version:

Modern XMPP in the browser, with a JSON API

56 lines (55 loc) 1.86 kB
"use strict"; // ==================================================================== // XEP-0050: Ad-Hoc Commands // -------------------------------------------------------------------- // Source: https://xmpp.org/extensions/xep-0050.html // Version: 1.2.2 (2016-12-03) // ==================================================================== Object.defineProperty(exports, "__esModule", { value: true }); const jxt_1 = require("../jxt"); const Namespaces_1 = require("../Namespaces"); const Protocol = [ jxt_1.addAlias(Namespaces_1.NS_DATAFORM, 'x', ['iq.command.form']), jxt_1.extendStanzaError({ commandError: jxt_1.childEnum(Namespaces_1.NS_ADHOC_COMMANDS, [ 'bad-action', 'bad-locale', 'bad-payload', 'bad-sessionid', 'malformed-action', 'session-expired' ]) }), { element: 'command', fields: { action: jxt_1.attribute('action'), node: jxt_1.attribute('node'), sid: jxt_1.attribute('sessionid'), status: jxt_1.attribute('status') }, namespace: Namespaces_1.NS_ADHOC_COMMANDS, path: 'iq.command' }, { element: 'actions', fields: { complete: jxt_1.childBoolean(null, 'complete'), execute: jxt_1.attribute('execute'), next: jxt_1.childBoolean(null, 'next'), prev: jxt_1.childBoolean(null, 'prev') }, namespace: Namespaces_1.NS_ADHOC_COMMANDS, path: 'iq.command.availableActions' }, { aliases: [{ path: 'iq.command.notes', multiple: true }], element: 'note', fields: { type: jxt_1.attribute('type'), value: jxt_1.text() }, namespace: Namespaces_1.NS_ADHOC_COMMANDS } ]; exports.default = Protocol;