shared-ritm 1.2.97 → 1.2.99

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.
Files changed (119) hide show
  1. package/README.md +103 -103
  2. package/dist/index.css +1 -1
  3. package/dist/shared-ritm.es.js +2051 -2054
  4. package/dist/shared-ritm.umd.js +25 -25
  5. package/dist/types/api/services/UserService.d.ts +7 -0
  6. package/dist/types/api/services/VideoService.d.ts +0 -14
  7. package/dist/types/api/types/Api_Tasks.d.ts +1 -1
  8. package/dist/types/index.d.ts +0 -1
  9. package/package.json +1 -1
  10. package/src/App.vue +2461 -2461
  11. package/src/api/services/AuthService.ts +64 -64
  12. package/src/api/services/CommentsService.ts +24 -24
  13. package/src/api/services/ControlsService.ts +65 -65
  14. package/src/api/services/FileService.ts +17 -17
  15. package/src/api/services/GanttService.ts +17 -17
  16. package/src/api/services/MetricsService.ts +110 -110
  17. package/src/api/services/ProjectsService.ts +68 -68
  18. package/src/api/services/RepairsService.ts +119 -119
  19. package/src/api/services/SearchService.ts +16 -16
  20. package/src/api/services/TasksService.ts +145 -145
  21. package/src/api/services/UserService.ts +101 -87
  22. package/src/api/services/VideoService.ts +0 -19
  23. package/src/api/types/Api_Comment.ts +40 -40
  24. package/src/api/types/Api_Controls.ts +72 -72
  25. package/src/api/types/Api_Files.ts +7 -7
  26. package/src/api/types/Api_Projects.ts +55 -55
  27. package/src/api/types/Api_Repairs.ts +115 -115
  28. package/src/api/types/Api_Search.ts +48 -48
  29. package/src/api/types/Api_Service.ts +9 -9
  30. package/src/api/types/Api_Tasks.ts +315 -315
  31. package/src/common/app-button/AppButton.vue +173 -173
  32. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  33. package/src/common/app-date-picker/AppDatePicker.vue +81 -81
  34. package/src/common/app-datepicker/AppDatepicker.vue +165 -165
  35. package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
  36. package/src/common/app-dropdown/AppDropdown.vue +31 -31
  37. package/src/common/app-icon/AppIcon.vue +108 -108
  38. package/src/common/app-input/AppInput.vue +148 -148
  39. package/src/common/app-input-new/AppInputNew.vue +152 -152
  40. package/src/common/app-input-search/AppInputSearch.vue +174 -174
  41. package/src/common/app-layout/AppLayout.vue +84 -84
  42. package/src/common/app-layout/components/AppLayoutHeader.vue +1 -0
  43. package/src/common/app-layout/components/AppLayoutPage.vue +16 -16
  44. package/src/common/app-loader/index.vue +43 -43
  45. package/src/common/app-page-layout/AppPageLayout.vue +122 -122
  46. package/src/common/app-select/AppSelect.vue +157 -157
  47. package/src/common/app-sheet/AppSheet.vue +120 -120
  48. package/src/common/app-sidebar/AppSidebar.vue +168 -168
  49. package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
  50. package/src/common/app-sidebar/components/SidebarMenuItem.vue +148 -148
  51. package/src/common/app-table/AppTable.vue +1 -8
  52. package/src/common/app-table/AppTableLayout.vue +4 -5
  53. package/src/common/app-table/components/TablePagination.vue +152 -152
  54. package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
  55. package/src/common/app-table/controllers/useTableModel.ts +93 -93
  56. package/src/common/app-toggle/AppToggle.vue +24 -24
  57. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  58. package/src/global.d.ts +1 -1
  59. package/src/icons/components/arrow-down-icon.vue +25 -25
  60. package/src/icons/components/arrow-frame-icon.vue +19 -19
  61. package/src/icons/components/arrow-square.vue +22 -22
  62. package/src/icons/components/table-filter-icon.vue +30 -30
  63. package/src/icons/dialogs/RemoveIcon.vue +12 -12
  64. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  65. package/src/icons/header/NotificationIcon.vue +18 -18
  66. package/src/icons/header/PersonIcon.vue +11 -11
  67. package/src/icons/header/SettingIcon.vue +14 -14
  68. package/src/icons/header/flashIcon.vue +24 -24
  69. package/src/icons/header/searchStatusIcon.vue +24 -24
  70. package/src/icons/header/smallCapsIcon.vue +34 -34
  71. package/src/icons/sidebar/assign-module-icon.vue +36 -36
  72. package/src/icons/sidebar/instrument-history-icon.vue +32 -32
  73. package/src/icons/sidebar/instrument-order-icon.vue +38 -38
  74. package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
  75. package/src/icons/sidebar/instruments-icon.vue +45 -45
  76. package/src/icons/sidebar/logo-icon.vue +15 -15
  77. package/src/icons/sidebar/logout-icon.vue +13 -13
  78. package/src/icons/sidebar/modules-icon.vue +16 -16
  79. package/src/icons/sidebar/notifications-icon.vue +24 -24
  80. package/src/icons/sidebar/order-icon.vue +44 -44
  81. package/src/icons/sidebar/pass-icon.vue +38 -38
  82. package/src/icons/sidebar/positions-icon.vue +42 -42
  83. package/src/icons/sidebar/preorder-icon.vue +19 -19
  84. package/src/icons/sidebar/projects-icon.vue +31 -31
  85. package/src/icons/sidebar/repair-object-icon.vue +18 -18
  86. package/src/icons/sidebar/repairs-icon.vue +20 -20
  87. package/src/icons/sidebar/roles-icon.vue +26 -26
  88. package/src/icons/sidebar/status-history-icon.vue +24 -24
  89. package/src/icons/sidebar/tasks-icon.vue +28 -28
  90. package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
  91. package/src/icons/sidebar/tasks_today-icon.vue +27 -27
  92. package/src/icons/sidebar/teams-icon.vue +32 -32
  93. package/src/icons/sidebar/user-icon.vue +18 -18
  94. package/src/icons/sidebar/users-icon.vue +46 -46
  95. package/src/icons/sidebar/videosources-icon.vue +19 -19
  96. package/src/icons/sidebar/videowall-icon.vue +13 -13
  97. package/src/icons/sidebar/videozones-icon.vue +21 -21
  98. package/src/icons/sidebar/warehouses-icon.vue +43 -43
  99. package/src/icons/sidebar/workshop-icon.vue +100 -100
  100. package/src/icons/sidebar/workzones-icon.vue +22 -22
  101. package/src/icons/task/attention-icon.vue +13 -13
  102. package/src/icons/task/clock-icon.vue +10 -10
  103. package/src/icons/task/delete-icon.vue +10 -10
  104. package/src/icons/task/fire-icon.vue +16 -16
  105. package/src/index.ts +0 -1
  106. package/src/main.ts +28 -28
  107. package/src/quasar-user-options.ts +17 -17
  108. package/src/router/index.ts +10 -10
  109. package/src/shared/styles/general.css +124 -124
  110. package/src/shims-vue.d.ts +5 -5
  111. package/src/utils/confirm.ts +12 -12
  112. package/src/utils/faceApiHelper.ts +137 -137
  113. package/src/utils/helpers.ts +59 -59
  114. package/src/utils/notification.ts +9 -9
  115. package/dist/types/api/services/ComentsServise.d.ts +0 -10
  116. package/dist/types/api/services/PhotoService.d.ts +0 -53
  117. package/dist/types/api/types/Api_Users.d.ts +0 -43
  118. package/dist/types/api/types/Api_Video.d.ts +0 -87
  119. package/src/api/types/Api_Video.ts +0 -90
@@ -1,315 +1,315 @@
1
- import { Api_Comment_Dto } from '../types/Api_Comment'
2
- export type Api_Tasks_InstrumentHistory_Item_Dto = {
3
- interval: {
4
- start_interval: string
5
- end_interval: string
6
- minutes: number | null
7
- user: {
8
- id: string
9
- first_name: string
10
- last_name: string
11
- patronymic: string | null
12
- full_name: string
13
- }
14
- }[]
15
- minutes: number
16
- warehouse: {
17
- id: string
18
- name: string
19
- status: {
20
- id: string
21
- name: string
22
- title: string
23
- }
24
- }
25
- }
26
-
27
- export type Api_Tasks_AllPersonalUser_Dto = {
28
- users: Api_Tasks_Personal_User_Dto[]
29
- unrecognized_users: Api_PersonalUnrecognizedUser[]
30
- }
31
-
32
- export type Api_Tasks_Personal_User_Dto = {
33
- user: Api_Tasks_Position_Assigned_User_Dto
34
- sum_minutes_interval: number
35
- interval: {
36
- start_interval: string
37
- end_interval: string
38
- }[]
39
- }
40
-
41
- export type Api_PersonalUnrecognizedUser = {
42
- user_id: string
43
- start_interval: string
44
- end_interval: string
45
- minutes: number
46
- }
47
-
48
- export type Api_Tasks_ReplaceInstrument_Request_Dto = {
49
- equivalent: string
50
- origin: string
51
- task: string
52
- }
53
-
54
- export type Api_QualityMetric_Request_Dto = {
55
- id: string
56
- task_id: string
57
- name: string
58
- unit: string
59
- norm_from: number
60
- norm_to: number
61
- metric_before: number | null
62
- metric_after: number | null
63
- is_normal: boolean
64
- }
65
-
66
- export type Api_Task_ChangeStatusVerification_Dto = {
67
- id: string
68
- name: string
69
- }
70
-
71
- export type Api_Tasks_Responsible_Dto = {
72
- id: string
73
- first_name: string
74
- last_name: string
75
- patronymic: string
76
- full_name: string
77
- }
78
-
79
- export type Api_Tasks_Assigned_Dto = {
80
- id: string
81
- first_name: string
82
- last_name: string
83
- patronymic: null | string
84
- full_name: string
85
- }
86
-
87
- export type Api_Tasks_Status_Dto = {
88
- id: string
89
- name: string
90
- title: string
91
- }
92
- export type Api_Tasks_Project_Dto = {
93
- id: string
94
- name: string
95
- teams: string[]
96
- }
97
- export type Api_Tasks_Position_Dto = {
98
- id: string
99
- name: string
100
- display_name: string
101
- }
102
-
103
- export type Api_Tasks_Position_Assigned_User_Dto = {
104
- id: string
105
- full_name: string
106
- }
107
-
108
- export type Api_Tasks_Position_Assigned_Dto = {
109
- id?: number
110
- user?: Api_Tasks_Position_Assigned_User_Dto | null
111
- position?: Api_Tasks_Position_Dto
112
- }
113
-
114
- export type Api_Tasks_Teams_Dto = {
115
- id: string
116
- name: string
117
- display_name: string
118
- }
119
-
120
- export type Api_Tasks_Equipment_Dto = {
121
- id: string
122
- name: string
123
- model: string
124
- registration_number: string
125
- created_at: string
126
- updated_at: string
127
- repair_frequency: number
128
- repair_range: number
129
- }
130
-
131
- export type Api_Task_VideoSource_Dto = {
132
- id: string
133
- name: string
134
- url: string
135
- work_zone_by_task: {
136
- id: string
137
- title: string
138
- }
139
- }
140
-
141
- export type Api_Task_QualityMetric_Dto = {
142
- id: string
143
- task_id: string
144
- name: string
145
- unit: string
146
- norm_from: number
147
- norm_to: number
148
- metric_before: number | null
149
- metric_after: number | null
150
- is_normal: boolean
151
- }
152
-
153
- export type Api_Tasks_Task_Dto = {
154
- id: string
155
- name: string
156
- type: string
157
- project_id: string
158
- description: string
159
- subtask_counter: number
160
- state_id: null | string
161
- start_date: string
162
- end_date: string
163
- deadline: string
164
- plan_date: string
165
- time_to_complete: null | string | number
166
- time_to_complete_sec: number | null
167
- priority: number
168
- work_zone_id: null | string
169
- location_id: null | string
170
- target: any
171
- instruments?: any[]
172
- warehouse: any[]
173
- files: any[]
174
- work_zone: string
175
- planned_start: null | string
176
- planned_end: null | string
177
- fact_start_date: string
178
- fact_end_date: null | string
179
- work_sec: number
180
- pause_sec: number
181
- repair_object: null | string
182
- isPause: boolean
183
- defect: string | null
184
- subtasks: Api_Tasks_Task_Dto[]
185
- status: Api_Tasks_Status_Dto
186
- project: Api_Tasks_Project_Dto
187
- position: Api_Tasks_Position_Dto[]
188
- assigned: Api_Tasks_Assigned_Dto[]
189
- responsible: Api_Tasks_Responsible_Dto[]
190
- position_assigned: Api_Tasks_Position_Assigned_Dto[]
191
- comments: Api_Comment_Dto[]
192
- teams: Api_Tasks_Teams_Dto[]
193
- equipment: Api_Tasks_Equipment_Dto
194
- instrument_types: Api_Task_Instrument_From_Warehouse[]
195
- quality_metrics: Api_Task_QualityMetric_Dto[]
196
- video_source: Api_Task_VideoSource_Dto
197
- }
198
-
199
- export type Api_Tasks_Task_Edit_Request_Dto = {
200
- name: string
201
- description?: string
202
- instruments?: string[]
203
- responsible?: string[]
204
- equipment?: string
205
- status: string
206
- assigned?: string[]
207
- position_assigned?: unknown[]
208
- files?: string[]
209
- position?: unknown[]
210
- warehouse?: string[]
211
- teams?: string[]
212
- video_source_id?: string
213
- work_zone_id?: string
214
- state_id?: string
215
- location_id?: string
216
- project_id?: string
217
- priority?: number
218
- start_date?: string // YYYY-MM-DD HH:MM
219
- plan_date?: string // YYYY-MM-DD HH:MM
220
- deadline?: string // YYYY-MM-DD HH:MM
221
- time_to_complete?: number
222
- time_to_complete_sec?: number
223
- target?: string
224
- repair_object_id?: string
225
- }
226
-
227
- export type Api_Task_Instrument_Dto = {
228
- id: string
229
- name: string
230
- }
231
-
232
- export type Api_Task_Module_Instrument_Condition = {
233
- instruments_types_conditions: Record<
234
- string,
235
- {
236
- warehouse_responsible: boolean
237
- warehouse_statuses: boolean
238
- warehouse_modules: boolean
239
- }
240
- >
241
- instruments_types_count: Record<string, number>
242
- }
243
-
244
- export type Api_Task_Instrument_From_Warehouse = {
245
- id: string
246
- name: string
247
- warehouse_prepared_quantity: number
248
- has_status: boolean
249
- has_responsible: boolean
250
- has_module: boolean
251
- }
252
-
253
- export type Api_Task_Close_Reason = {
254
- has_reason: boolean
255
- category: string
256
- }
257
-
258
- //single task in list
259
-
260
- export type Api_Assigned_DTO = {
261
- id: string
262
- first_name: string
263
- last_name: string
264
- patronymic: string
265
- full_name: string
266
- }
267
-
268
- export type Api_Status_DTO = {
269
- id: string
270
- name: string
271
- title: string
272
- }
273
-
274
- export type Api_Teams_DTO = {
275
- id: string
276
- name: string
277
- display_name: string
278
- }
279
-
280
- export type Api_Responsible_DTO = {
281
- id: string
282
- name: string
283
- display_name: string
284
- }
285
-
286
- export type Api_VideoSource_DTO = {
287
- id: string
288
- name: string
289
- url: string
290
- work_zone_by_task: { id: string; title: string }
291
- }
292
-
293
- export type Api_Task_Dto = {
294
- id: string
295
- name: string
296
- plan_date: string
297
- deadline: string
298
- priority: number
299
- subtasks_count: number
300
- expired: boolean
301
- is_critical_path: boolean
302
- power_output_MWh: number
303
- cost_per_MWh: number
304
- isPause: boolean
305
- fact_start_date: null | string
306
- fact_end_date: null | string
307
- pause_sec: number
308
- work_sec: number
309
- has_quality_metrics: boolean
310
- responsible: Api_Responsible_DTO[]
311
- assigned: Api_Assigned_DTO[]
312
- status: Api_Status_DTO[]
313
- teams: Api_Teams_DTO[]
314
- video_source: Api_VideoSource_DTO
315
- }
1
+ import { Api_Comment_Dto } from '../types/Api_Comment'
2
+ export type Api_Tasks_InstrumentHistory_Item_Dto = {
3
+ interval: {
4
+ start_interval: string
5
+ end_interval: string
6
+ minutes: number | null
7
+ user: {
8
+ id: string
9
+ first_name: string
10
+ last_name: string
11
+ patronymic: string | null
12
+ full_name: string
13
+ }
14
+ }[]
15
+ minutes: number
16
+ warehouse: {
17
+ id: string
18
+ name: string
19
+ status: {
20
+ id: string
21
+ name: string
22
+ title: string
23
+ }
24
+ }
25
+ }
26
+
27
+ export type Api_Tasks_AllPersonalUser_Dto = {
28
+ users: Api_Tasks_Personal_User_Dto[]
29
+ unrecognized_users: Api_PersonalUnrecognizedUser[]
30
+ }
31
+
32
+ export type Api_Tasks_Personal_User_Dto = {
33
+ user: Api_Tasks_Position_Assigned_User_Dto
34
+ sum_minutes_interval: number
35
+ interval: {
36
+ start_interval: string
37
+ end_interval: string
38
+ }[]
39
+ }
40
+
41
+ export type Api_PersonalUnrecognizedUser = {
42
+ user_id: string
43
+ start_interval: string
44
+ end_interval: string
45
+ minutes: number
46
+ }
47
+
48
+ export type Api_Tasks_ReplaceInstrument_Request_Dto = {
49
+ equivalent: string
50
+ origin: string
51
+ task: string
52
+ }
53
+
54
+ export type Api_QualityMetric_Request_Dto = {
55
+ id: string
56
+ task_id: string
57
+ name: string
58
+ unit: string
59
+ norm_from: number
60
+ norm_to: number
61
+ metric_before: number | null
62
+ metric_after: number | null
63
+ is_normal: boolean
64
+ }
65
+
66
+ export type Api_Task_ChangeStatusVerification_Dto = {
67
+ id: string
68
+ name: string
69
+ }
70
+
71
+ export type Api_Tasks_Responsible_Dto = {
72
+ id: string
73
+ first_name: string
74
+ last_name: string
75
+ patronymic: string
76
+ full_name: string
77
+ }
78
+
79
+ export type Api_Tasks_Assigned_Dto = {
80
+ id: string
81
+ first_name: string
82
+ last_name: string
83
+ patronymic: null | string
84
+ full_name: string
85
+ }
86
+
87
+ export type Api_Tasks_Status_Dto = {
88
+ id: string
89
+ name: string
90
+ title: string
91
+ }
92
+ export type Api_Tasks_Project_Dto = {
93
+ id: string
94
+ name: string
95
+ teams: string[]
96
+ }
97
+ export type Api_Tasks_Position_Dto = {
98
+ id: string
99
+ name: string
100
+ display_name: string
101
+ }
102
+
103
+ export type Api_Tasks_Position_Assigned_User_Dto = {
104
+ id: string
105
+ full_name: string
106
+ }
107
+
108
+ export type Api_Tasks_Position_Assigned_Dto = {
109
+ id?: number
110
+ user?: Api_Tasks_Position_Assigned_User_Dto | null
111
+ position?: Api_Tasks_Position_Dto
112
+ }
113
+
114
+ export type Api_Tasks_Teams_Dto = {
115
+ id: string
116
+ name: string
117
+ display_name: string
118
+ }
119
+
120
+ export type Api_Tasks_Equipment_Dto = {
121
+ id: string
122
+ name: string
123
+ model: string
124
+ registration_number: string
125
+ created_at: string
126
+ updated_at: string
127
+ repair_frequency: number
128
+ repair_range: number
129
+ }
130
+
131
+ export type Api_Task_VideoSource_Dto = {
132
+ id: string
133
+ name: string
134
+ url: string
135
+ work_zone_by_task: {
136
+ id: string
137
+ title: string
138
+ }
139
+ }
140
+
141
+ export type Api_Task_QualityMetric_Dto = {
142
+ id: string
143
+ task_id: string
144
+ name: string
145
+ unit: string
146
+ norm_from: number
147
+ norm_to: number
148
+ metric_before: number | null
149
+ metric_after: number | null
150
+ is_normal: boolean
151
+ }
152
+
153
+ export type Api_Tasks_Task_Dto = {
154
+ id: string
155
+ name: string
156
+ type: string
157
+ project_id: string
158
+ description: string
159
+ subtask_counter: number
160
+ state_id: null | string
161
+ start_date: string
162
+ end_date: string
163
+ deadline: string
164
+ plan_date: string
165
+ time_to_complete: null | string | number
166
+ time_to_complete_sec: number | null
167
+ priority: number
168
+ work_zone_id: null | string
169
+ location_id: null | string
170
+ target: any
171
+ instruments?: any[]
172
+ warehouse: any[]
173
+ files: any[]
174
+ work_zone: string
175
+ planned_start: null | string
176
+ planned_end: null | string
177
+ fact_start_date: string
178
+ fact_end_date: null | string
179
+ work_sec: number
180
+ pause_sec: number
181
+ repair_object: null | string
182
+ isPause: boolean
183
+ defect: string | null
184
+ subtasks: Api_Tasks_Task_Dto[]
185
+ status: Api_Tasks_Status_Dto
186
+ project: Api_Tasks_Project_Dto
187
+ position: Api_Tasks_Position_Dto[]
188
+ assigned: Api_Tasks_Assigned_Dto[]
189
+ responsible: Api_Tasks_Responsible_Dto[]
190
+ position_assigned: Api_Tasks_Position_Assigned_Dto[]
191
+ comments: Api_Comment_Dto[]
192
+ teams: Api_Tasks_Teams_Dto[]
193
+ equipment: Api_Tasks_Equipment_Dto[]
194
+ instrument_types: Api_Task_Instrument_From_Warehouse[]
195
+ quality_metrics: Api_Task_QualityMetric_Dto[]
196
+ video_source: Api_Task_VideoSource_Dto
197
+ }
198
+
199
+ export type Api_Tasks_Task_Edit_Request_Dto = {
200
+ name: string
201
+ description?: string
202
+ instruments?: string[]
203
+ responsible?: string[]
204
+ equipment?: string
205
+ status: string
206
+ assigned?: string[]
207
+ position_assigned?: unknown[]
208
+ files?: string[]
209
+ position?: unknown[]
210
+ warehouse?: string[]
211
+ teams?: string[]
212
+ video_source_id?: string
213
+ work_zone_id?: string
214
+ state_id?: string
215
+ location_id?: string
216
+ project_id?: string
217
+ priority?: number
218
+ start_date?: string // YYYY-MM-DD HH:MM
219
+ plan_date?: string // YYYY-MM-DD HH:MM
220
+ deadline?: string // YYYY-MM-DD HH:MM
221
+ time_to_complete?: number
222
+ time_to_complete_sec?: number
223
+ target?: string
224
+ repair_object_id?: string
225
+ }
226
+
227
+ export type Api_Task_Instrument_Dto = {
228
+ id: string
229
+ name: string
230
+ }
231
+
232
+ export type Api_Task_Module_Instrument_Condition = {
233
+ instruments_types_conditions: Record<
234
+ string,
235
+ {
236
+ warehouse_responsible: boolean
237
+ warehouse_statuses: boolean
238
+ warehouse_modules: boolean
239
+ }
240
+ >
241
+ instruments_types_count: Record<string, number>
242
+ }
243
+
244
+ export type Api_Task_Instrument_From_Warehouse = {
245
+ id: string
246
+ name: string
247
+ warehouse_prepared_quantity: number
248
+ has_status: boolean
249
+ has_responsible: boolean
250
+ has_module: boolean
251
+ }
252
+
253
+ export type Api_Task_Close_Reason = {
254
+ has_reason: boolean
255
+ category: string
256
+ }
257
+
258
+ //single task in list
259
+
260
+ export type Api_Assigned_DTO = {
261
+ id: string
262
+ first_name: string
263
+ last_name: string
264
+ patronymic: string
265
+ full_name: string
266
+ }
267
+
268
+ export type Api_Status_DTO = {
269
+ id: string
270
+ name: string
271
+ title: string
272
+ }
273
+
274
+ export type Api_Teams_DTO = {
275
+ id: string
276
+ name: string
277
+ display_name: string
278
+ }
279
+
280
+ export type Api_Responsible_DTO = {
281
+ id: string
282
+ name: string
283
+ display_name: string
284
+ }
285
+
286
+ export type Api_VideoSource_DTO = {
287
+ id: string
288
+ name: string
289
+ url: string
290
+ work_zone_by_task: { id: string; title: string }
291
+ }
292
+
293
+ export type Api_Task_Dto = {
294
+ id: string
295
+ name: string
296
+ plan_date: string
297
+ deadline: string
298
+ priority: number
299
+ subtasks_count: number
300
+ expired: boolean
301
+ is_critical_path: boolean
302
+ power_output_MWh: number
303
+ cost_per_MWh: number
304
+ isPause: boolean
305
+ fact_start_date: null | string
306
+ fact_end_date: null | string
307
+ pause_sec: number
308
+ work_sec: number
309
+ has_quality_metrics: boolean
310
+ responsible: Api_Responsible_DTO[]
311
+ assigned: Api_Assigned_DTO[]
312
+ status: Api_Status_DTO[]
313
+ teams: Api_Teams_DTO[]
314
+ video_source: Api_VideoSource_DTO
315
+ }