@opencxh/domain 1.70.0 → 1.75.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.
@@ -22,4 +22,5 @@ export interface Channel {
22
22
  extraIntents?: IntentCapability[];
23
23
  enabled: boolean;
24
24
  verified: boolean;
25
+ lastSyncedAt?: number;
25
26
  }
@@ -44,6 +44,12 @@ export interface ToastConfig {
44
44
  * must-acknowledge notices.
45
45
  */
46
46
  persistent?: boolean;
47
+ /**
48
+ * Whether the dismiss (×) button is shown. Defaults to true. Set false to
49
+ * force the user to act via an action (e.g. a mandatory update prompt) —
50
+ * combine with `persistent: true` so it can't be auto- or hand-dismissed.
51
+ */
52
+ closable?: boolean;
47
53
  actions?: {
48
54
  label: string;
49
55
  onClick: () => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencxh/domain",
3
- "version": "1.70.0",
3
+ "version": "1.75.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",