@automateinc/fleet-types 1.0.42 → 1.0.43-dev.f8c36b0

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.
@@ -26,6 +26,7 @@ export interface IClientContract {
26
26
  notes: string;
27
27
  supplementalAgreementId?: string;
28
28
  personInChargeId?: string;
29
+ parentContractId?: string;
29
30
 
30
31
  metadata?: any;
31
32
  }
@@ -167,4 +167,3 @@ 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 "./client-sub-contract";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@automateinc/fleet-types",
3
3
  "private": false,
4
- "version": "1.0.42",
4
+ "version": "1.0.43-dev.f8c36b0",
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",
@@ -1,15 +0,0 @@
1
- export interface IClientSubContract {
2
- id: string;
3
- createdAt: string;
4
- updatedAt: string;
5
-
6
- status: "INACTIVE" | "ACTIVE" | "TERMINATED" | "EXPIRED";
7
- contractId: string;
8
- startDate: string;
9
- endDate?: string;
10
- duration?: number | "ONGOING";
11
- manPower?: number;
12
- notes: string;
13
-
14
- metadata?: any;
15
- }