colibris-types 1.0.36 → 1.0.37
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.
- package/lib/index.d.ts +10 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1382,3 +1382,13 @@ export type ImportsHistory = {
|
|
|
1382
1382
|
date: string;
|
|
1383
1383
|
error?: string;
|
|
1384
1384
|
};
|
|
1385
|
+
export type Notification = {
|
|
1386
|
+
id: string;
|
|
1387
|
+
user: string;
|
|
1388
|
+
createdAt: string;
|
|
1389
|
+
title: string;
|
|
1390
|
+
content: string;
|
|
1391
|
+
read: boolean;
|
|
1392
|
+
url?: string;
|
|
1393
|
+
to?: string[];
|
|
1394
|
+
};
|