@opencxh/domain 1.59.0 → 1.69.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.
|
@@ -10,6 +10,10 @@ export interface Attachment {
|
|
|
10
10
|
mimeType: string;
|
|
11
11
|
size?: number;
|
|
12
12
|
url?: string;
|
|
13
|
+
/** Content-ID voor inline (cid:) referenties in de body — bare, zonder `<>`. */
|
|
14
|
+
contentId?: string;
|
|
15
|
+
/** True wanneer de bijlage inline in de body hoort (cid:), niet als losse chip. */
|
|
16
|
+
isInline?: boolean;
|
|
13
17
|
}
|
|
14
18
|
export interface BaseActivity {
|
|
15
19
|
id: string;
|
|
@@ -86,4 +86,11 @@ export interface Interaction {
|
|
|
86
86
|
updatedAt?: number;
|
|
87
87
|
lastActivityAt?: number;
|
|
88
88
|
lastActivityPreview?: ActivityPreview;
|
|
89
|
+
/**
|
|
90
|
+
* Epoch-ms tot wanneer de interactie gesnoozed is. Zolang `snoozedTill > now`
|
|
91
|
+
* wordt de interactie uit de lijst gefilterd (status is dan "snoozed"). Een
|
|
92
|
+
* cron-job wekt verlopen snoozes: zet status terug naar "open", bumpt
|
|
93
|
+
* `lastActivityAt` en wist `snoozedTill` (op null). `null`/afwezig = niet gesnoozed.
|
|
94
|
+
*/
|
|
95
|
+
snoozedTill?: number | null;
|
|
89
96
|
}
|