@automateinc/fleet-types 1.0.29 → 1.0.31

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,15 @@
1
+ export interface IAttendanceAction {
2
+ id: string;
3
+ createdAt: string;
4
+ updatedAt?: string;
5
+ deletedAt?: string;
6
+
7
+ type: string;
8
+
9
+ attendanceId: string;
10
+
11
+ resolvedAt?: string;
12
+ resolvedById?: string;
13
+
14
+ metadata: any;
15
+ }
@@ -0,0 +1,10 @@
1
+ export interface ICompanyFile {
2
+ id: string;
3
+ createdAt: string;
4
+ updatedAt?: string;
5
+ deletedAt?: string;
6
+
7
+ name: string;
8
+ fileId: string;
9
+ companyId: string;
10
+ }
@@ -156,3 +156,4 @@ export * from "./employee-event";
156
156
  export * from "./leave-type";
157
157
  export * from "./leave-event";
158
158
  export * from "./leave";
159
+ export * from "./company-file";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@automateinc/fleet-types",
3
3
  "private": false,
4
- "version": "1.0.29",
4
+ "version": "1.0.31",
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",