shared-ritm 1.2.102 → 1.2.104
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.
|
@@ -155,7 +155,6 @@ export type Api_Tasks_Task_Dto = {
|
|
|
155
155
|
instruments?: any[];
|
|
156
156
|
warehouse: any[];
|
|
157
157
|
files: any[];
|
|
158
|
-
work_zone: string;
|
|
159
158
|
planned_start: null | string;
|
|
160
159
|
planned_end: null | string;
|
|
161
160
|
fact_start_date: string;
|
|
@@ -165,6 +164,10 @@ export type Api_Tasks_Task_Dto = {
|
|
|
165
164
|
repair_object: null | string;
|
|
166
165
|
isPause: boolean;
|
|
167
166
|
defect: string | null;
|
|
167
|
+
expired: boolean;
|
|
168
|
+
is_critical_task: boolean;
|
|
169
|
+
usage_users: boolean;
|
|
170
|
+
usage_warehouses: boolean;
|
|
168
171
|
subtasks: Api_Tasks_Task_Dto[];
|
|
169
172
|
status: Api_Tasks_Status_Dto;
|
|
170
173
|
project: Api_Tasks_Project_Dto;
|
package/package.json
CHANGED
|
@@ -171,7 +171,6 @@ export type Api_Tasks_Task_Dto = {
|
|
|
171
171
|
instruments?: any[]
|
|
172
172
|
warehouse: any[]
|
|
173
173
|
files: any[]
|
|
174
|
-
work_zone: string
|
|
175
174
|
planned_start: null | string
|
|
176
175
|
planned_end: null | string
|
|
177
176
|
fact_start_date: string
|
|
@@ -181,6 +180,10 @@ export type Api_Tasks_Task_Dto = {
|
|
|
181
180
|
repair_object: null | string
|
|
182
181
|
isPause: boolean
|
|
183
182
|
defect: string | null
|
|
183
|
+
expired: boolean
|
|
184
|
+
is_critical_task: boolean
|
|
185
|
+
usage_users: boolean
|
|
186
|
+
usage_warehouses: boolean
|
|
184
187
|
subtasks: Api_Tasks_Task_Dto[]
|
|
185
188
|
status: Api_Tasks_Status_Dto
|
|
186
189
|
project: Api_Tasks_Project_Dto
|