@opencxh/domain 1.59.0 → 1.68.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.
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencxh/domain",
3
- "version": "1.59.0",
3
+ "version": "1.68.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",