@fnlb-project/stanza
Version:
Modern XMPP in the browser, with a JSON API
28 lines (27 loc) • 861 B
JavaScript
// ====================================================================
// XEP-0186: Invisible Command
// --------------------------------------------------------------------
// Source: https://xmpp.org/extensions/xep-0186.html
// Version: 0.13 (2017-11-29)
// ====================================================================
import { booleanAttribute } from '../jxt';
import { NS_INVISIBLE_0 } from '../Namespaces';
const Protocol = [
{
element: 'invisible',
fields: {
probe: booleanAttribute('probe')
},
namespace: NS_INVISIBLE_0,
path: 'iq.visibility',
type: 'invisible',
typeField: 'type'
},
{
element: 'visible',
namespace: NS_INVISIBLE_0,
path: 'iq.visibility',
type: 'visible'
}
];
export default Protocol;