shared-ritm 1.2.72 → 1.2.73

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.
@@ -78,9 +78,9 @@ export type Api_Create_Repair_With_Template = Omit<Api_Create_Repair_With_Equipm
78
78
  export type Api_Update_Repair = {
79
79
  name?: string;
80
80
  display_name?: string;
81
- description?: string;
82
- power_output_MWh?: number;
83
- cost_per_MWh?: number;
81
+ description?: string | null;
82
+ power_output_MWh?: number | null;
83
+ cost_per_MWh?: number | null;
84
84
  category?: number;
85
85
  user_id_list?: string[];
86
86
  team_id_list?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.2.72",
3
+ "version": "1.2.73",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -83,9 +83,9 @@ export type Api_Create_Repair_With_Template = Omit<Api_Create_Repair_With_Equipm
83
83
  export type Api_Update_Repair = {
84
84
  name?: string
85
85
  display_name?: string
86
- description?: string
87
- power_output_MWh?: number
88
- cost_per_MWh?: number
86
+ description?: string | null
87
+ power_output_MWh?: number | null
88
+ cost_per_MWh?: number | null
89
89
  category?: number
90
90
  user_id_list?: string[]
91
91
  team_id_list?: string[]