shared-ritm 1.3.108 → 1.3.110

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.
@@ -3,18 +3,22 @@ export type Api_Equipment_Create = Omit<Api_Equipment_Full_Dto, 'id'>;
3
3
  export type Api_Equipment_Element_Dto = {
4
4
  id: string;
5
5
  name: string;
6
- model: string;
7
- registration_number: string;
6
+ model: string | null;
7
+ registration_number: string | null;
8
+ parent_id: string | null;
9
+ depth: string | null;
8
10
  };
9
11
  export type Api_Equipment_Dto = {
10
12
  id: string;
13
+ equipment_type_id: string;
11
14
  name: string;
12
- model: string;
13
- registration_number: string;
14
- repair_frequency: number;
15
- repair_range: number;
16
- parent: Api_Equipment_Element_Dto;
17
- root: Api_Equipment_Element_Dto;
15
+ model: string | null;
16
+ registration_number: string | null;
17
+ repair_frequency: number | null;
18
+ repair_range: number | null;
19
+ parent: Api_Equipment_Element_Dto | null;
20
+ root: Api_Equipment_Element_Dto | null;
21
+ children: Api_Equipment_Element_Dto[];
18
22
  };
19
23
  export type Api_Equipment_Tree_Dto = {
20
24
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.3.108",
3
+ "version": "1.3.110",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -5,19 +5,23 @@ export type Api_Equipment_Create = Omit<Api_Equipment_Full_Dto, 'id'>
5
5
  export type Api_Equipment_Element_Dto = {
6
6
  id: string
7
7
  name: string
8
- model: string
9
- registration_number: string
8
+ model: string | null
9
+ registration_number: string | null
10
+ parent_id: string | null
11
+ depth: string | null
10
12
  }
11
13
 
12
14
  export type Api_Equipment_Dto = {
13
15
  id: string
16
+ equipment_type_id: string
14
17
  name: string
15
- model: string
16
- registration_number: string
17
- repair_frequency: number
18
- repair_range: number
19
- parent: Api_Equipment_Element_Dto
20
- root: Api_Equipment_Element_Dto
18
+ model: string | null
19
+ registration_number: string | null
20
+ repair_frequency: number | null
21
+ repair_range: number | null
22
+ parent: Api_Equipment_Element_Dto | null
23
+ root: Api_Equipment_Element_Dto | null
24
+ children: Api_Equipment_Element_Dto[]
21
25
  }
22
26
 
23
27
  export type Api_Equipment_Tree_Dto = {