@automateinc/fleet-types 1.0.53-dev.1f90703 → 1.0.53-dev.63efe66

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.
@@ -172,3 +172,4 @@ export * from "./cluster-patrol";
172
172
  export * from "./cluster-patrol-point";
173
173
  export * from "./payment-cycle-config";
174
174
  export * from "./employee-group";
175
+ export * from "./payroll-config";
@@ -0,0 +1,15 @@
1
+ export type IPayrollConfig = {
2
+ id: string;
3
+ createdAt: string;
4
+ updatedAt?: string;
5
+
6
+ value: any;
7
+
8
+ type: "DRAFT" | "PUBLISHED";
9
+
10
+ employeeGroupId: string;
11
+
12
+ regionId: string;
13
+
14
+ metadata?: any;
15
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@automateinc/fleet-types",
3
3
  "private": false,
4
- "version": "1.0.53-dev.1f90703",
4
+ "version": "1.0.53-dev.63efe66",
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",