@automateinc/fleet-types 1.0.47-dev.209822a → 1.0.47-dev.6fa8659

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.
@@ -167,3 +167,4 @@ export * from "./position-template";
167
167
  export * from "./position-template-item";
168
168
  export * from "./day-of-week";
169
169
  export * from "./client-contract";
170
+ export * from "./payment-cycle-config";
@@ -0,0 +1,8 @@
1
+ export interface IPaymentCycleConfig {
2
+ id: string;
3
+ createdAt: Date;
4
+ from: number;
5
+ to: number;
6
+ companyId: string;
7
+ metadata?: any;
8
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@automateinc/fleet-types",
3
3
  "private": false,
4
- "version": "1.0.47-dev.209822a",
4
+ "version": "1.0.47-dev.6fa8659",
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",