forked from legastero/stanza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xep0333.ts
61 lines (55 loc) · 1.4 KB
/
xep0333.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// ====================================================================
// XEP-0333: Chat Markers
// --------------------------------------------------------------------
// Source: https://xmpp.org/extensions/xep-0333.html
// Version: 0.3.0 (2017-09-11)
// ====================================================================
import { attribute, DefinitionOptions } from '../jxt';
import { NS_CHAT_MARKERS_0 } from '../Namespaces';
declare module './' {
export interface Message {
marker?: ChatMarker;
}
}
export interface ChatMarker {
type: 'markable' | 'received' | 'displayed' | 'acknowledged';
id?: string;
}
const path = 'message.marker';
const Protocol: DefinitionOptions[] = [
{
element: 'markable',
namespace: NS_CHAT_MARKERS_0,
path,
type: 'markable',
typeField: 'type'
},
{
element: 'received',
fields: {
id: attribute('id')
},
namespace: NS_CHAT_MARKERS_0,
path,
type: 'received'
},
{
element: 'displayed',
fields: {
id: attribute('id')
},
namespace: NS_CHAT_MARKERS_0,
path,
type: 'displayed'
},
{
element: 'acknowledged',
fields: {
id: attribute('id')
},
namespace: NS_CHAT_MARKERS_0,
path,
type: 'acknowledged'
}
];
export default Protocol;