@automateinc/fleet-types 1.0.72-dev.761edbe → 1.0.72-dev.9e5a129

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.
@@ -23,10 +23,13 @@ export interface IClientField {
23
23
  updatedAt?: string;
24
24
  regionId: string;
25
25
 
26
- employeeId?: string;
26
+ order: number;
27
27
 
28
28
  name: string;
29
- category?: string;
29
+ categoryId: string;
30
+
31
+ requestCategoryFieldId?: string;
32
+
30
33
  type: "METADATA" | "REQUEST" | "CLIENT";
31
34
  config?: ClientFieldInput;
32
35
 
@@ -7,6 +7,8 @@ export interface IClientRequestAction {
7
7
  operation: "HTTP";
8
8
  type: "VERIFICATION" | "APPROVAL" | "REJECTION" | "CREATION";
9
9
 
10
+ categoryId: string;
11
+
10
12
  config: Record<string, any>;
11
13
  order: number;
12
14
 
@@ -8,6 +8,7 @@ export interface IClientRequestCategoryField {
8
8
  categoryId: string;
9
9
 
10
10
  required: boolean;
11
+ order: number;
11
12
 
12
13
  name: string;
13
14
 
@@ -0,0 +1,10 @@
1
+ export interface IClientStatus {
2
+ id: string;
3
+ createdAt: string;
4
+ updatedAt: string;
5
+ name: string;
6
+ default: boolean;
7
+ weight: number;
8
+ regionId: string;
9
+ metadata?: any;
10
+ }
@@ -1,12 +1,16 @@
1
1
  export interface IClient {
2
2
  id: string;
3
- name: string;
4
- status: "ACTIVE" | "INACTIVE";
5
3
  createdAt: string;
6
- updatedAt: string;
7
- deletedAt: string;
4
+ updatedAt?: string;
5
+ deletedAt?: string;
6
+
7
+ name: string;
8
+ primaryId: string;
9
+ primaryKey: string;
10
+
8
11
  logoId: string;
9
12
  folderKey: string;
10
13
  classId?: string;
14
+ statusId: string;
11
15
  metadata?: any;
12
16
  }
@@ -71,6 +71,7 @@ export * from "./client-request-type";
71
71
  export * from "./client-request-value";
72
72
  export * from "./client-request-verification";
73
73
  export * from "./client-site";
74
+ export * from "./client-status";
74
75
  export * from "./cluster-patrol";
75
76
  export * from "./cluster-patrol-point";
76
77
  export * from "./company";
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.72-dev.761edbe"
55
+ "version": "1.0.72-dev.9e5a129"
56
56
  }