@opencxh/domain 1.113.1 → 1.114.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,6 +3,12 @@ export interface MessageTemplate {
|
|
|
3
3
|
name: string;
|
|
4
4
|
body: string;
|
|
5
5
|
subject?: string;
|
|
6
|
+
/**
|
|
7
|
+
* Short lookup key an agent can recognise the template by, `/factuur` style.
|
|
8
|
+
* Stored and shown; it is not a trigger — the composer does not yet expand
|
|
9
|
+
* typed shortcuts, it only lets you find the template on this string.
|
|
10
|
+
*/
|
|
11
|
+
shortcut?: string;
|
|
6
12
|
folderId?: string;
|
|
7
13
|
isPrivate: boolean;
|
|
8
14
|
inboxIds?: string[];
|