@automateinc/fleet-types 1.0.81 → 1.0.82

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.
@@ -10,12 +10,7 @@ export interface IClientQuotationPositionVersion {
10
10
  positionVersionId?: string | null;
11
11
 
12
12
  name: string;
13
- status:
14
- | "UNVERIFIED"
15
- | "PENDING_VERIFICATION"
16
- | "VERIFIED"
17
- | "REJECTED"
18
- | "CHANGES_NEEDED";
13
+ status: "UNVERIFIED" | "PENDING_VERIFICATION" | "VERIFIED" | "REJECTED" | "CHANGES_NEEDED";
19
14
  reason?: string | null;
20
15
 
21
16
  coversSaturday: boolean;
@@ -31,4 +26,4 @@ export interface IClientQuotationPositionVersion {
31
26
  gender?: IGender | null;
32
27
 
33
28
  metadata?: any;
34
- }
29
+ }
@@ -10,4 +10,4 @@ export interface IClientQuotationSiteDraft {
10
10
  name: string;
11
11
 
12
12
  metadata?: any;
13
- }
13
+ }
@@ -8,4 +8,4 @@ export interface IClientStatusCheckRequirementConditionGroup {
8
8
  operator?: string;
9
9
  conditions?: IClientStatusCheckRequirementCondition[];
10
10
  metadata?: any;
11
- }
11
+ }
@@ -12,4 +12,4 @@ export interface IClientStatusCheckRequirementCondition {
12
12
  compareValueNumber?: number;
13
13
  compareValueString?: string;
14
14
  metadata?: any;
15
- }
15
+ }
@@ -3,15 +3,15 @@ export interface IContractCost {
3
3
  createdAt: string;
4
4
  updatedAt: string;
5
5
 
6
- name: string;
7
- value: number;
6
+ name: string;
7
+ value: number;
8
8
 
9
- recurrence: "ONE_TIME" | "RECURRING";
9
+ recurrence: "ONE_TIME" | "RECURRING";
10
10
 
11
- duration?: number;
12
- durationType?: "DAY" | "WEEK" | "MONTH" | "YEAR";
11
+ duration?: number;
12
+ durationType?: "DAY" | "WEEK" | "MONTH" | "YEAR";
13
13
 
14
- contractId: string;
14
+ contractId: string;
15
15
 
16
- metadata?: any;
16
+ metadata?: any;
17
17
  }
@@ -21,4 +21,4 @@ export interface IContractSnapshotAllowance {
21
21
  companyId?: string;
22
22
 
23
23
  metadata?: any;
24
- }
24
+ }
@@ -12,4 +12,4 @@ export interface IContractSnapshotBenefit {
12
12
  companyId?: string;
13
13
 
14
14
  metadata?: any;
15
- }
15
+ }
@@ -15,4 +15,4 @@ export interface IContractSnapshotCost {
15
15
  durationType?: "DAY" | "WEEK" | "MONTH" | "YEAR";
16
16
 
17
17
  metadata?: any;
18
- }
18
+ }
@@ -16,4 +16,4 @@ export interface IContractSnapshotDeduction {
16
16
  companyId?: string;
17
17
 
18
18
  metadata?: any;
19
- }
19
+ }
@@ -23,4 +23,4 @@ export interface IContractSnapshot {
23
23
  contractualAllowancesProvided: boolean;
24
24
 
25
25
  metadata?: any;
26
- }
26
+ }
@@ -14,4 +14,4 @@ export interface IEmployeeGroupCost {
14
14
  employeeGroupId: string;
15
15
 
16
16
  metadata?: any;
17
- }
17
+ }
@@ -15,4 +15,4 @@ export interface IEmployeeGroupSnapshotCost {
15
15
  durationType?: "DAY" | "WEEK" | "MONTH" | "YEAR";
16
16
 
17
17
  metadata?: any;
18
- }
18
+ }
@@ -8,4 +8,4 @@ export interface IEmployeeGroupSnapshot {
8
8
  regionId: string;
9
9
 
10
10
  metadata?: any;
11
- }
11
+ }
@@ -5,7 +5,7 @@ export interface IShift {
5
5
  updatedAt: Date;
6
6
  createdAt: Date;
7
7
 
8
- class: "MAIN" | "OVERTIME";
8
+ class: "MAIN" | "OVERTIME" | "FLEXIBLE";
9
9
 
10
10
  startTime: number;
11
11
 
package/package.json CHANGED
@@ -52,5 +52,5 @@
52
52
  "test": "echo \"Error: no test specified\" && exit 1"
53
53
  },
54
54
  "types": "dist/types/index.d.ts",
55
- "version": "1.0.81"
55
+ "version": "1.0.82"
56
56
  }