shared-ritm 1.3.37 → 1.3.38-alpha.0

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 (86) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +12594 -12219
  3. package/dist/shared-ritm.umd.js +476 -476
  4. package/dist/types/api/services/AuthService.d.ts +1 -0
  5. package/dist/types/api/services/ControlsService.d.ts +3 -0
  6. package/dist/types/api/services/EquipmentService.d.ts +15 -5
  7. package/dist/types/api/services/GanttService.d.ts +22 -0
  8. package/dist/types/api/services/InstrumentsService.d.ts +6 -1
  9. package/dist/types/api/services/MetricsService.d.ts +5 -1
  10. package/dist/types/api/services/TasksService.d.ts +3 -2
  11. package/dist/types/api/services/UserIssueService.d.ts +15 -0
  12. package/dist/types/api/services/UserService.d.ts +2 -1
  13. package/dist/types/api/settings/ApiService.d.ts +6 -2
  14. package/dist/types/api/types/Api_Auth.d.ts +15 -0
  15. package/dist/types/api/types/Api_Controls.d.ts +1 -0
  16. package/dist/types/api/types/Api_Equipment.d.ts +45 -0
  17. package/dist/types/api/types/Api_Instruments.d.ts +24 -0
  18. package/dist/types/api/types/Api_Metrics.d.ts +69 -0
  19. package/dist/types/api/types/Api_Repairs.d.ts +14 -1
  20. package/dist/types/api/types/Api_Search.d.ts +1 -0
  21. package/dist/types/api/types/Api_User.d.ts +12 -0
  22. package/dist/types/api/types/Api_User_Issue.d.ts +33 -0
  23. package/dist/types/common/app-button/Button.stories.d.ts +13 -0
  24. package/dist/types/common/app-checkbox/Checkbox.stories.d.ts +12 -0
  25. package/dist/types/common/app-date-picker/DatePicker.stories.d.ts +7 -0
  26. package/dist/types/common/app-datepicker/Datepicker.stories.d.ts +10 -0
  27. package/dist/types/common/app-dialogs/Confirm.stories.d.ts +8 -0
  28. package/dist/types/common/app-dropdown/Dropdown.stories.d.ts +8 -0
  29. package/dist/types/common/app-file/File.stories.d.ts +8 -0
  30. package/dist/types/common/app-icon/Icon.stories.d.ts +7 -0
  31. package/dist/types/common/app-input/Input.stories.d.ts +9 -0
  32. package/dist/types/common/app-input-new/InputNew.stories.d.ts +12 -0
  33. package/dist/types/common/app-input-search/InputSearch.stories.d.ts +8 -0
  34. package/dist/types/common/app-loader/Loader.stories.d.ts +8 -0
  35. package/dist/types/common/app-select/Select.stories.d.ts +7 -0
  36. package/dist/types/common/app-table/components/ModalSelect.stories.d.ts +10 -0
  37. package/dist/types/common/app-toggle/Toggle.stories.d.ts +12 -0
  38. package/dist/types/configs/storybook.d.ts +1 -0
  39. package/dist/types/index.d.ts +3 -1
  40. package/dist/types/utils/files.d.ts +2 -0
  41. package/package.json +64 -64
  42. package/src/App.vue +2461 -2461
  43. package/src/api/services/AuthService.ts +53 -53
  44. package/src/api/services/ControlsService.ts +96 -96
  45. package/src/api/services/EquipmentService.ts +29 -29
  46. package/src/api/services/GanttService.ts +23 -23
  47. package/src/api/services/InstrumentsService.ts +68 -68
  48. package/src/api/services/MetricsService.ts +123 -123
  49. package/src/api/services/RepairsService.ts +111 -111
  50. package/src/api/services/TasksService.ts +157 -157
  51. package/src/api/services/UserService.ts +123 -123
  52. package/src/api/services/VideoService.ts +118 -118
  53. package/src/api/settings/ApiService.ts +2 -1
  54. package/src/api/types/Api_Auth.ts +105 -105
  55. package/src/api/types/Api_Controls.ts +111 -111
  56. package/src/api/types/Api_Equipment.ts +3 -3
  57. package/src/api/types/Api_Instruments.ts +156 -156
  58. package/src/api/types/Api_Metrics.ts +5 -5
  59. package/src/api/types/Api_Repairs.ts +186 -186
  60. package/src/api/types/Api_Search.ts +80 -80
  61. package/src/api/types/Api_Tasks.ts +376 -376
  62. package/src/api/types/Api_User.ts +146 -146
  63. package/src/api/types/Api_Video.ts +244 -244
  64. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  65. package/src/common/app-dialogs/AppConfirmDialog.vue +109 -109
  66. package/src/common/app-icon/AppIcon.vue +108 -108
  67. package/src/common/app-input/AppInput.vue +148 -148
  68. package/src/common/app-input-new/AppInputNew.vue +179 -179
  69. package/src/common/app-layout/components/AppLayoutHeader.vue +273 -273
  70. package/src/common/app-modal/index.vue +96 -96
  71. package/src/common/app-select/AppSelect.vue +159 -159
  72. package/src/common/app-sheet-new/AppSheetNew.vue +244 -244
  73. package/src/common/app-sidebar/AppSidebar.vue +174 -174
  74. package/src/common/app-table/AppTable.vue +313 -313
  75. package/src/common/app-table/components/ModalSelect.vue +298 -298
  76. package/src/common/app-table/components/TableModal.vue +367 -367
  77. package/src/common/app-table/controllers/useColumnSelector.ts +45 -45
  78. package/src/common/app-table/controllers/useTableModel.ts +102 -102
  79. package/src/common/app-toggle/AppToggle.vue +24 -24
  80. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  81. package/src/index.ts +131 -131
  82. package/src/shared/styles/general.css +124 -124
  83. package/src/styles/variables.sass +12 -12
  84. package/src/utils/files.ts +19 -19
  85. package/src/utils/helpers.ts +59 -59
  86. package/dist/types/api/services/PhotoService.d.ts +0 -40
@@ -1,118 +1,118 @@
1
- import ApiService from '../settings/ApiService'
2
- import { ResponseApi } from '@/api/types/Api_Service'
3
- import {
4
- Api_Video_Combination,
5
- Api_Video_Source_By_Repair,
6
- Api_Video_Source_Create,
7
- Api_Video_Source_Economics,
8
- Api_Video_Source_Search,
9
- Api_Video_Training_Status,
10
- Api_Work_Zone,
11
- Api_Work_Zone_Search,
12
- } from '@/api/types/Api_Video'
13
-
14
- class VideoService extends ApiService {
15
- public async startVideoAnalytics(): Promise<boolean> {
16
- return await this.post('/statanly/start', null)
17
- }
18
-
19
- public reloadVideoAnalytics(ids: string[]): Promise<any> {
20
- return this.post('/horizon/video-source/reload', { video_source_ids: ids })
21
- }
22
-
23
- public hardReloadStream(): Promise<any> {
24
- return this.post('horizon/video-source/streams/add', null)
25
- }
26
-
27
- public async fetchWorkZones(params?: any): Promise<ResponseApi<Api_Work_Zone_Search[]>> {
28
- return await this.get('/search/work_zones', { params })
29
- }
30
-
31
- public async fetchWorkZone(id: string): Promise<ResponseApi<Api_Work_Zone>> {
32
- return await this.get(`/work_zone/get_work_zone/${id}`)
33
- }
34
-
35
- public async editWorkZone(id: string, body: { title: string }): Promise<{ data: Api_Work_Zone; status: number }> {
36
- return await this.put(`/admin/work-zones/${id}`, body)
37
- }
38
-
39
- public async deleteWorkZone(id: string): Promise<{ data: boolean; status: number }> {
40
- return await this.delete(`/admin/work-zones/${id}`)
41
- }
42
-
43
- public async fetchVideoSources(params?: any): Promise<ResponseApi<Api_Video_Source_Search[]>> {
44
- return await this.get('/search/video_sources/list', { params })
45
- }
46
-
47
- public async fetchVideoSourceEconomics(params?: any): Promise<ResponseApi<Api_Video_Source_Economics>> {
48
- return await this.get('horizon/video-source/economics', { params })
49
- }
50
-
51
- public async createVideoSource(body: Api_Video_Source_Create): Promise<Api_Video_Source_Search> {
52
- return await this.post('horizon/video-source', body)
53
- }
54
-
55
- public async editVideoSource(id: string, body: Partial<Api_Video_Source_Create>): Promise<Api_Video_Source_Search> {
56
- return await this.put(`/horizon/video-source/${id}`, body)
57
- }
58
-
59
- public async deleteVideoSource(id: string): Promise<void> {
60
- await this.delete(`/horizon/video-source/${id}`)
61
- }
62
-
63
- public async fetchListRepairsVideoSource(params?: any): Promise<Api_Video_Source_By_Repair[]> {
64
- return await this.get('work_zone/get_list_video_source_by_repair', { params })
65
- }
66
-
67
- public async sendCombination(body: { cameras_id: string[] }): Promise<any> {
68
- return await this.post('horizon/video-source/training', body)
69
- }
70
-
71
- public async saveCombination(body: any): Promise<any> {
72
- return await this.post('horizon/video-source/bind', body)
73
- }
74
-
75
- public async fetchCombination(params?: Record<string, string>): Promise<Api_Video_Combination> {
76
- return await this.get('horizon/video-source/bind/show', { params })
77
- }
78
-
79
- public async startTraining(body: { cameras_id: string[] }): Promise<any> {
80
- return await this.post('horizon/video-source/training/start', body)
81
- }
82
-
83
- public async stopTraining(body: { cameras_id: string[] }): Promise<any> {
84
- return await this.post('horizon/video-source/training/stop', body)
85
- }
86
-
87
- public async fetchTrainingInfo(params?: Record<string, string>): Promise<any> {
88
- return await this.get('horizon/video-source/training/info', { params })
89
- }
90
-
91
- public async fetchTrainingStatus(params?: Record<string, string>): Promise<Api_Video_Training_Status> {
92
- return await this.get('horizon/video-source/training/status', { params })
93
- }
94
-
95
- public async fetchVisualizationDataLink(params?: Record<string, string>): Promise<string> {
96
- return await this.get('horizon/video-source/link/video/training', { params })
97
- }
98
-
99
- public async updateVisualizationData(params?: Record<string, string>): Promise<number> {
100
- return await this.get('horizon/video-source/download/video/training', { params })
101
- }
102
-
103
- public async deleteFrameFromVideo(id: string): Promise<void> {
104
- await this.delete(`horizon/video-source/delete/fragment/video/training/${id}`)
105
- }
106
-
107
- // Для тестирования ws видеостены
108
- public async sendEvent(params?: Record<string, any>): Promise<number> {
109
- return await this.post('alerts_callback_url', params)
110
- }
111
- }
112
-
113
- let api: VideoService
114
-
115
- export default function useVideoService() {
116
- if (!api) api = new VideoService()
117
- return api
118
- }
1
+ import ApiService from '../settings/ApiService'
2
+ import { ResponseApi } from '@/api/types/Api_Service'
3
+ import {
4
+ Api_Video_Combination,
5
+ Api_Video_Source_By_Repair,
6
+ Api_Video_Source_Create,
7
+ Api_Video_Source_Economics,
8
+ Api_Video_Source_Search,
9
+ Api_Video_Training_Status,
10
+ Api_Work_Zone,
11
+ Api_Work_Zone_Search,
12
+ } from '@/api/types/Api_Video'
13
+
14
+ class VideoService extends ApiService {
15
+ public async startVideoAnalytics(): Promise<boolean> {
16
+ return await this.post('/statanly/start', null)
17
+ }
18
+
19
+ public reloadVideoAnalytics(ids: string[]): Promise<any> {
20
+ return this.post('/horizon/video-source/reload', { video_source_ids: ids })
21
+ }
22
+
23
+ public hardReloadStream(): Promise<any> {
24
+ return this.post('horizon/video-source/streams/add', null)
25
+ }
26
+
27
+ public async fetchWorkZones(params?: any): Promise<ResponseApi<Api_Work_Zone_Search[]>> {
28
+ return await this.get('/search/work_zones', { params })
29
+ }
30
+
31
+ public async fetchWorkZone(id: string): Promise<ResponseApi<Api_Work_Zone>> {
32
+ return await this.get(`/work_zone/get_work_zone/${id}`)
33
+ }
34
+
35
+ public async editWorkZone(id: string, body: { title: string }): Promise<{ data: Api_Work_Zone; status: number }> {
36
+ return await this.put(`/admin/work-zones/${id}`, body)
37
+ }
38
+
39
+ public async deleteWorkZone(id: string): Promise<{ data: boolean; status: number }> {
40
+ return await this.delete(`/admin/work-zones/${id}`)
41
+ }
42
+
43
+ public async fetchVideoSources(params?: any): Promise<ResponseApi<Api_Video_Source_Search[]>> {
44
+ return await this.get('/search/video_sources/list', { params })
45
+ }
46
+
47
+ public async fetchVideoSourceEconomics(params?: any): Promise<ResponseApi<Api_Video_Source_Economics>> {
48
+ return await this.get('horizon/video-source/economics', { params })
49
+ }
50
+
51
+ public async createVideoSource(body: Api_Video_Source_Create): Promise<Api_Video_Source_Search> {
52
+ return await this.post('horizon/video-source', body)
53
+ }
54
+
55
+ public async editVideoSource(id: string, body: Partial<Api_Video_Source_Create>): Promise<Api_Video_Source_Search> {
56
+ return await this.put(`/horizon/video-source/${id}`, body)
57
+ }
58
+
59
+ public async deleteVideoSource(id: string): Promise<void> {
60
+ await this.delete(`/horizon/video-source/${id}`)
61
+ }
62
+
63
+ public async fetchListRepairsVideoSource(params?: any): Promise<Api_Video_Source_By_Repair[]> {
64
+ return await this.get('work_zone/get_list_video_source_by_repair', { params })
65
+ }
66
+
67
+ public async sendCombination(body: { cameras_id: string[] }): Promise<any> {
68
+ return await this.post('horizon/video-source/training', body)
69
+ }
70
+
71
+ public async saveCombination(body: any): Promise<any> {
72
+ return await this.post('horizon/video-source/bind', body)
73
+ }
74
+
75
+ public async fetchCombination(params?: Record<string, string>): Promise<Api_Video_Combination> {
76
+ return await this.get('horizon/video-source/bind/show', { params })
77
+ }
78
+
79
+ public async startTraining(body: { cameras_id: string[] }): Promise<any> {
80
+ return await this.post('horizon/video-source/training/start', body)
81
+ }
82
+
83
+ public async stopTraining(body: { cameras_id: string[] }): Promise<any> {
84
+ return await this.post('horizon/video-source/training/stop', body)
85
+ }
86
+
87
+ public async fetchTrainingInfo(params?: Record<string, string>): Promise<any> {
88
+ return await this.get('horizon/video-source/training/info', { params })
89
+ }
90
+
91
+ public async fetchTrainingStatus(params?: Record<string, string>): Promise<Api_Video_Training_Status> {
92
+ return await this.get('horizon/video-source/training/status', { params })
93
+ }
94
+
95
+ public async fetchVisualizationDataLink(params?: Record<string, string>): Promise<string> {
96
+ return await this.get('horizon/video-source/link/video/training', { params })
97
+ }
98
+
99
+ public async updateVisualizationData(params?: Record<string, string>): Promise<number> {
100
+ return await this.get('horizon/video-source/download/video/training', { params })
101
+ }
102
+
103
+ public async deleteFrameFromVideo(id: string): Promise<void> {
104
+ await this.delete(`horizon/video-source/delete/fragment/video/training/${id}`)
105
+ }
106
+
107
+ // Для тестирования ws видеостены
108
+ public async sendEvent(params?: Record<string, any>): Promise<number> {
109
+ return await this.post('alerts_callback_url', params)
110
+ }
111
+ }
112
+
113
+ let api: VideoService
114
+
115
+ export default function useVideoService() {
116
+ if (!api) api = new VideoService()
117
+ return api
118
+ }
@@ -9,7 +9,8 @@ export default class ApiService {
9
9
 
10
10
  constructor() {
11
11
  this.axiosInstance = axios.create({
12
- baseURL: process.env.VUE_APP_BACKEND,
12
+ //@ts-ignore
13
+ baseURL: window.__ENV__.VUE_APP_BACKEND,
13
14
  headers: {
14
15
  'Content-Type': 'application/json',
15
16
  Accept: 'application/json',
@@ -1,105 +1,105 @@
1
- import { Api_User } from '@/api/types/Api_User'
2
-
3
- export type LoginPayload = {
4
- email: string
5
- password: string
6
- }
7
-
8
- export type Api_Auth_User_Education = {
9
- created_at: string
10
- display_name: string
11
- id: string
12
- name: string
13
- }
14
-
15
- export type Api_Auth_User_Photo = {
16
- id: string
17
- name: string
18
- path: string
19
- type: string
20
- }
21
-
22
- export type Api_Auth_User_Position = {
23
- description: string
24
- display_name: string
25
- id: string
26
- name: string
27
- }
28
-
29
- export type Api_User_Roles_Permissions = {
30
- created_at: string
31
- description: string
32
- display_name: string
33
- id: string
34
- name: string
35
- updated_at: string
36
- }
37
-
38
- export type Api_Auth_User_Role = {
39
- display_name: string
40
- id: string
41
- name: string
42
- permissions: Api_User_Roles_Permissions[]
43
- }
44
-
45
- export type Api_Auth_User_Team = {
46
- display_name: string
47
- id: string
48
- name: string
49
- roles: Api_Auth_User_Role[]
50
- }
51
-
52
- export type Api_Auth_User = {
53
- RFID: string
54
- avatar_id: null | string
55
- avatar_path: null | string
56
- dismissal_at: null | string
57
- divisions: string
58
- educations: Api_Auth_User_Education[]
59
- email: string
60
- email_verified_at: string
61
- first_name: string
62
- full_name: string
63
- id: string
64
- last_name: string
65
- passes: any[]
66
- patronymic: string
67
- personnel_number: number
68
- phone: string
69
- photos: Api_Auth_User_Photo[]
70
- positions: Api_Auth_User_Position[]
71
- profession: string
72
- roles: Api_Auth_User_Role[]
73
- security_warnings: any[]
74
- teams: Api_Auth_User_Team[]
75
- }
76
-
77
- export type Api_Auth_Login = {
78
- token: string
79
- user: Api_Auth_User
80
- }
81
-
82
- export type ChangePasswordPayload = {
83
- password: string
84
- password_confirmation: string
85
- }
86
-
87
- export type ChangePasswordResponse = Pick<
88
- Api_User,
89
- | 'id'
90
- | 'archiveHistory'
91
- | 'assigned_tasks'
92
- | 'divisions'
93
- | 'email'
94
- | 'full_name'
95
- | 'passes'
96
- | 'personnel_number'
97
- | 'phone'
98
- | 'photos'
99
- | 'positions'
100
- | 'responsible_tasks'
101
- | 'teams'
102
- | 'warehouses'
103
- >
104
-
105
- export type ConfigResponse = any
1
+ import { Api_User } from '@/api/types/Api_User'
2
+
3
+ export type LoginPayload = {
4
+ email: string
5
+ password: string
6
+ }
7
+
8
+ export type Api_Auth_User_Education = {
9
+ created_at: string
10
+ display_name: string
11
+ id: string
12
+ name: string
13
+ }
14
+
15
+ export type Api_Auth_User_Photo = {
16
+ id: string
17
+ name: string
18
+ path: string
19
+ type: string
20
+ }
21
+
22
+ export type Api_Auth_User_Position = {
23
+ description: string
24
+ display_name: string
25
+ id: string
26
+ name: string
27
+ }
28
+
29
+ export type Api_User_Roles_Permissions = {
30
+ created_at: string
31
+ description: string
32
+ display_name: string
33
+ id: string
34
+ name: string
35
+ updated_at: string
36
+ }
37
+
38
+ export type Api_Auth_User_Role = {
39
+ display_name: string
40
+ id: string
41
+ name: string
42
+ permissions: Api_User_Roles_Permissions[]
43
+ }
44
+
45
+ export type Api_Auth_User_Team = {
46
+ display_name: string
47
+ id: string
48
+ name: string
49
+ roles: Api_Auth_User_Role[]
50
+ }
51
+
52
+ export type Api_Auth_User = {
53
+ RFID: string
54
+ avatar_id: null | string
55
+ avatar_path: null | string
56
+ dismissal_at: null | string
57
+ divisions: string
58
+ educations: Api_Auth_User_Education[]
59
+ email: string
60
+ email_verified_at: string
61
+ first_name: string
62
+ full_name: string
63
+ id: string
64
+ last_name: string
65
+ passes: any[]
66
+ patronymic: string
67
+ personnel_number: number
68
+ phone: string
69
+ photos: Api_Auth_User_Photo[]
70
+ positions: Api_Auth_User_Position[]
71
+ profession: string
72
+ roles: Api_Auth_User_Role[]
73
+ security_warnings: any[]
74
+ teams: Api_Auth_User_Team[]
75
+ }
76
+
77
+ export type Api_Auth_Login = {
78
+ token: string
79
+ user: Api_Auth_User
80
+ }
81
+
82
+ export type ChangePasswordPayload = {
83
+ password: string
84
+ password_confirmation: string
85
+ }
86
+
87
+ export type ChangePasswordResponse = Pick<
88
+ Api_User,
89
+ | 'id'
90
+ | 'archiveHistory'
91
+ | 'assigned_tasks'
92
+ | 'divisions'
93
+ | 'email'
94
+ | 'full_name'
95
+ | 'passes'
96
+ | 'personnel_number'
97
+ | 'phone'
98
+ | 'photos'
99
+ | 'positions'
100
+ | 'responsible_tasks'
101
+ | 'teams'
102
+ | 'warehouses'
103
+ >
104
+
105
+ export type ConfigResponse = any
@@ -1,111 +1,111 @@
1
- export type Api_User_Dto = {
2
- id: string
3
- full_name: string
4
- }
5
- export type Api_ControlsZone_Dto = {
6
- id: string
7
- name: string
8
- }
9
- export type Api_ControlZones_Dto = {
10
- id: string
11
- name: string
12
- inventory_number: string
13
- uuid: string
14
- controller_zone: string
15
- users?: Api_User_Dto[]
16
- }
17
- export type ControlsParams = {
18
- search?: string
19
- page?: number
20
- filter?: Record<string, string[]>
21
- }
22
-
23
- export interface ControlMeta {
24
- total: number
25
- perPage: number
26
- totalPages: number
27
- currentPage: number
28
- }
29
-
30
- export type FiltersValue = {
31
- users?: {
32
- users: Api_User_Dto[]
33
- }
34
- controller?: {
35
- controller: Api_User_Dto[]
36
- }
37
- controllers?: {
38
- controllers: Api_User_Dto[]
39
- }
40
- responsible?: {
41
- responsible: Api_User_Dto[]
42
- }
43
- controller_zones?: {
44
- controller_zones: Api_ControlsZone_Dto[]
45
- }
46
- status?: {
47
- status: boolean
48
- }
49
- }
50
- export type Api_Instrument_Dto = {
51
- id: string
52
- name: string
53
- storage_id?: string
54
- }
55
- export type Api_Warehouse_Dto = {
56
- id: string
57
- invoice_ref_key: string
58
- inventory_number: string
59
- instrument: Api_Instrument_Dto[]
60
- }
61
-
62
- export type Api_ControlLogs_Dto = {
63
- id: string
64
- automatically: string
65
- in_zone: string
66
- uuid: string
67
- controller_zone: string
68
- controller: Api_User_Dto[]
69
- user: Api_User_Dto[]
70
- frame: Api_ControlZones_Dto[]
71
- warehouse: Api_Warehouse_Dto[]
72
- }
73
- export type Api_New_Items = {
74
- title: string
75
- inventory_numbers: string
76
- storage_id: string
77
- }
78
- export type Api_ManualEntry_Dto = {
79
- user: string
80
- items?: string[]
81
- new_items?: Api_New_Items[]
82
- }
83
-
84
- export type Api_Instrument_Type_Search = {
85
- id: string
86
- icon: string
87
- name: string
88
- storages: {
89
- id: string
90
- title: string
91
- }[]
92
- warehouse_statuses: boolean
93
- }
94
-
95
- export type Api_Instrument_Category = {
96
- id: string
97
- title: string[]
98
- }
99
-
100
- export type Api_instrument_Type_Create = {
101
- name: string
102
- storage_id: string
103
- }
104
-
105
- export type Api_instrument_Type = {
106
- id: string
107
- name: string
108
- storage_id: string
109
- created_at: string
110
- updated_at: string
111
- }
1
+ export type Api_User_Dto = {
2
+ id: string
3
+ full_name: string
4
+ }
5
+ export type Api_ControlsZone_Dto = {
6
+ id: string
7
+ name: string
8
+ }
9
+ export type Api_ControlZones_Dto = {
10
+ id: string
11
+ name: string
12
+ inventory_number: string
13
+ uuid: string
14
+ controller_zone: string
15
+ users?: Api_User_Dto[]
16
+ }
17
+ export type ControlsParams = {
18
+ search?: string
19
+ page?: number
20
+ filter?: Record<string, string[]>
21
+ }
22
+
23
+ export interface ControlMeta {
24
+ total: number
25
+ perPage: number
26
+ totalPages: number
27
+ currentPage: number
28
+ }
29
+
30
+ export type FiltersValue = {
31
+ users?: {
32
+ users: Api_User_Dto[]
33
+ }
34
+ controller?: {
35
+ controller: Api_User_Dto[]
36
+ }
37
+ controllers?: {
38
+ controllers: Api_User_Dto[]
39
+ }
40
+ responsible?: {
41
+ responsible: Api_User_Dto[]
42
+ }
43
+ controller_zones?: {
44
+ controller_zones: Api_ControlsZone_Dto[]
45
+ }
46
+ status?: {
47
+ status: boolean
48
+ }
49
+ }
50
+ export type Api_Instrument_Dto = {
51
+ id: string
52
+ name: string
53
+ storage_id?: string
54
+ }
55
+ export type Api_Warehouse_Dto = {
56
+ id: string
57
+ invoice_ref_key: string
58
+ inventory_number: string
59
+ instrument: Api_Instrument_Dto[]
60
+ }
61
+
62
+ export type Api_ControlLogs_Dto = {
63
+ id: string
64
+ automatically: string
65
+ in_zone: string
66
+ uuid: string
67
+ controller_zone: string
68
+ controller: Api_User_Dto[]
69
+ user: Api_User_Dto[]
70
+ frame: Api_ControlZones_Dto[]
71
+ warehouse: Api_Warehouse_Dto[]
72
+ }
73
+ export type Api_New_Items = {
74
+ title: string
75
+ inventory_numbers: string
76
+ storage_id: string
77
+ }
78
+ export type Api_ManualEntry_Dto = {
79
+ user: string
80
+ items?: string[]
81
+ new_items?: Api_New_Items[]
82
+ }
83
+
84
+ export type Api_Instrument_Type_Search = {
85
+ id: string
86
+ icon: string
87
+ name: string
88
+ storages: {
89
+ id: string
90
+ title: string
91
+ }[]
92
+ warehouse_statuses: boolean
93
+ }
94
+
95
+ export type Api_Instrument_Category = {
96
+ id: string
97
+ title: string[]
98
+ }
99
+
100
+ export type Api_instrument_Type_Create = {
101
+ name: string
102
+ storage_id: string
103
+ }
104
+
105
+ export type Api_instrument_Type = {
106
+ id: string
107
+ name: string
108
+ storage_id: string
109
+ created_at: string
110
+ updated_at: string
111
+ }