@automateinc/fleet-types 1.0.5 → 1.0.7

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.
@@ -8,6 +8,7 @@ export interface IDispatch {
8
8
  date: string;
9
9
  verified: boolean;
10
10
  // timeOnSite: number;
11
+ fleetCheckTime: string;
11
12
  zoneId: string;
12
13
  primaryKey: string;
13
14
  }
@@ -146,3 +146,5 @@ export * from "./report-value";
146
146
  export * from "./report-comment";
147
147
  export * from "./report-comment-reaction";
148
148
  export * from "./call-log";
149
+ export * from "./notification";
150
+ export * from "./notification-token";
@@ -0,0 +1,10 @@
1
+ export interface INotificationToken {
2
+ id: string;
3
+ createdAt: string;
4
+ updatedAt: string;
5
+
6
+ token: string;
7
+
8
+ userId?: string;
9
+ employeeId?: string;
10
+ }
@@ -0,0 +1,14 @@
1
+ export interface INotification {
2
+ id: string;
3
+ createdAt: string;
4
+ updatedAt: string;
5
+
6
+ title: string;
7
+ content: string;
8
+ isRead: boolean;
9
+
10
+ type?: string;
11
+
12
+ userId?: string;
13
+ employeeId?: string;
14
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@automateinc/fleet-types",
3
3
  "private": false,
4
- "version": "1.0.5",
4
+ "version": "1.0.7",
5
5
  "description": "Reusable TypeScript types and interfaces for Fleet API.",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/types/index.d.ts",