colibris-types 1.0.36 → 1.0.38

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +12 -0
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -1382,3 +1382,15 @@ 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
+ type?: "success" | "error" | "warning" | "info" | "pending";
1395
+ isDownloadable?: boolean;
1396
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "colibris-types",
3
- "version": "1.0.36",
3
+ "version": "1.0.38",
4
4
  "description": "",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",