shared-ritm 1.1.32 → 1.1.34

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.
@@ -31,11 +31,17 @@ export type Api_Create_Repair_With_Equipments = {
31
31
  display_name: string;
32
32
  description: string;
33
33
  equipment_id: string;
34
+ power_output_MWh?: number;
35
+ cost_per_MWh?: number;
36
+ category?: string;
34
37
  };
35
38
  export type Api_Update_Repair = {
36
39
  name?: string;
37
40
  display_name?: string;
38
41
  description: string;
42
+ power_output_MWh?: number;
43
+ cost_per_MWh?: number;
44
+ category?: string;
39
45
  };
40
46
  export type Api_Repair_Dto = {
41
47
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.1.32",
3
+ "version": "1.1.34",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -37,12 +37,18 @@ export type Api_Create_Repair_With_Equipments = {
37
37
  display_name: string
38
38
  description: string
39
39
  equipment_id: string
40
+ power_output_MWh?: number
41
+ cost_per_MWh?: number
42
+ category?: string
40
43
  }
41
44
 
42
45
  export type Api_Update_Repair = {
43
46
  name?: string
44
47
  display_name?: string
45
48
  description: string
49
+ power_output_MWh?: number
50
+ cost_per_MWh?: number
51
+ category?: string
46
52
  }
47
53
 
48
54
  export type Api_Repair_Dto = {