@automateinc/fleet-types 1.0.14 → 1.0.16

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.
@@ -0,0 +1,10 @@
1
+ export interface IEmployeeLabel {
2
+ id: string;
3
+ createdAt: string;
4
+ updatedAt?: string;
5
+
6
+ name: string;
7
+ color: string;
8
+
9
+ regionId: string;
10
+ }
@@ -149,3 +149,4 @@ export * from "./report-comment-reaction";
149
149
  export * from "./call-log";
150
150
  export * from "./notification";
151
151
  export * from "./notification-token";
152
+ export * from "./employee-label";
@@ -11,4 +11,9 @@ export interface INotification {
11
11
 
12
12
  userId?: string;
13
13
  employeeId?: string;
14
+ requestId?: string;
15
+ attendanceId?: string;
16
+ attendancePresenceCheckId?: string;
17
+ recruitmentId?: string;
18
+ dispatchId?: string;
14
19
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@automateinc/fleet-types",
3
3
  "private": false,
4
- "version": "1.0.14",
4
+ "version": "1.0.16",
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",