shared-ritm 1.3.90 → 1.3.91
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.
- package/dist/index.css +1 -1
- package/dist/shared-ritm.es.js +17 -17
- package/dist/shared-ritm.umd.js +3 -3
- package/dist/types/api/settings/ApiService.d.ts +1 -1
- package/package.json +70 -70
- package/src/App.vue +2461 -2461
- package/src/api/services/AuthService.ts +67 -67
- package/src/api/services/ControlsService.ts +100 -100
- package/src/api/services/EquipmentService.ts +52 -52
- package/src/api/services/MetricsService.ts +143 -143
- package/src/api/services/RepairsService.ts +111 -111
- package/src/api/services/UserIssueService.ts +32 -32
- package/src/api/services/UserService.ts +129 -129
- package/src/api/services/VideoService.ts +118 -118
- package/src/api/settings/ApiService.ts +185 -184
- package/src/api/types/Api_Auth.ts +121 -121
- package/src/api/types/Api_Equipment.ts +13 -13
- package/src/api/types/Api_Metrics.ts +51 -51
- package/src/api/types/Api_Repairs.ts +187 -187
- package/src/api/types/Api_Search.ts +81 -81
- package/src/api/types/Api_Tasks.ts +376 -376
- package/src/api/types/Api_User.ts +160 -160
- package/src/api/types/Api_User_Issue.ts +36 -36
- package/src/api/types/Api_Video.ts +244 -244
- package/src/common/app-button/Button.stories.ts +369 -369
- package/src/common/app-checkbox/AppCheckbox.vue +31 -31
- package/src/common/app-checkbox/Checkbox.stories.ts +252 -252
- package/src/common/app-date-picker/DatePicker.stories.ts +66 -66
- package/src/common/app-datepicker/Datepicker.stories.ts +145 -145
- package/src/common/app-dialogs/AppConfirmDialog.vue +109 -109
- package/src/common/app-dialogs/Confirm.stories.ts +93 -93
- package/src/common/app-dropdown/Dropdown.stories.ts +94 -94
- package/src/common/app-file/File.stories.ts +104 -104
- package/src/common/app-icon/AppIcon.vue +110 -110
- package/src/common/app-icon/Icon.stories.ts +91 -91
- package/src/common/app-input/Input.stories.ts +160 -160
- package/src/common/app-input-new/AppInputNew.vue +181 -181
- package/src/common/app-input-new/InputNew.stories.ts +240 -240
- package/src/common/app-input-search/InputSearch.stories.ts +149 -149
- package/src/common/app-layout/components/AppLayoutHeader.vue +289 -289
- package/src/common/app-loader/Loader.stories.ts +114 -114
- package/src/common/app-modal/index.vue +101 -101
- package/src/common/app-select/AppSelect.vue +159 -159
- package/src/common/app-select/Select.stories.ts +155 -155
- package/src/common/app-sidebar/AppSidebar.vue +174 -174
- package/src/common/app-table/AppTable.vue +313 -313
- package/src/common/app-table/components/ModalSelect.stories.ts +323 -323
- package/src/common/app-table/components/ModalSelect.vue +302 -302
- package/src/common/app-table/components/TableModal.vue +369 -369
- package/src/common/app-table/controllers/useColumnSelector.ts +45 -45
- package/src/common/app-table/controllers/useTableModel.ts +97 -97
- package/src/common/app-toggle/AppToggle.vue +12 -12
- package/src/common/app-toggle/Toggle.stories.ts +245 -245
- package/src/common/app-wrapper/AppWrapper.vue +31 -31
- package/src/configs/storybook.ts +14 -14
- package/src/icons/sidebar/user-requests-icon.vue +23 -23
- package/src/index.ts +134 -134
- package/src/shared/styles/general.css +140 -140
- package/src/styles/variables.sass +12 -12
- package/src/utils/files.ts +38 -38
- package/src/utils/helpers.ts +59 -59
- package/dist/types/api/services/PhotoService.d.ts +0 -40
- package/dist/types/stories/Button.stories.d.ts +0 -13
- package/dist/types/stories/Checkbox.stories.d.ts +0 -7
- package/dist/types/stories/Confirm.stories.d.ts +0 -8
- package/dist/types/stories/DatePicker.stories.d.ts +0 -8
- package/dist/types/stories/Dropdown.stories.d.ts +0 -8
- package/dist/types/stories/File.stories.d.ts +0 -8
- package/dist/types/stories/Icon.stories.d.ts +0 -7
- package/dist/types/stories/Input.stories.d.ts +0 -11
- package/dist/types/stories/InputNew.stories.d.ts +0 -12
- package/dist/types/stories/InputSearch.stories.d.ts +0 -10
- package/dist/types/stories/Loader.stories.d.ts +0 -8
- package/dist/types/stories/Select.stories.d.ts +0 -7
- package/dist/types/stories/Toggle.stories.d.ts +0 -8
|
@@ -1,184 +1,185 @@
|
|
|
1
|
-
import axios, { AxiosError, AxiosInstance, AxiosRequestConfig, AxiosResponse, InternalAxiosRequestConfig } from 'axios'
|
|
2
|
-
import { Api_Auth_Login } from '@/api/types/Api_Auth'
|
|
3
|
-
|
|
4
|
-
// eslint-disable-next-line
|
|
5
|
-
var isRefreshing = false
|
|
6
|
-
// eslint-disable-next-line
|
|
7
|
-
var refreshSubscribers: any[] = []
|
|
8
|
-
|
|
9
|
-
interface Api_Auth_Refresh {
|
|
10
|
-
accessToken: string
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export enum ApiServiceType {
|
|
14
|
-
SERVICE_AUTH = 'SERVICE_AUTH',
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export default class ApiService {
|
|
18
|
-
private axiosInstance: AxiosInstance
|
|
19
|
-
|
|
20
|
-
constructor() {
|
|
21
|
-
this.axiosInstance = axios.create({
|
|
22
|
-
baseURL: process.env.VUE_APP_BACKEND,
|
|
23
|
-
headers: {
|
|
24
|
-
'Content-Type': 'application/json',
|
|
25
|
-
Accept: 'application/json',
|
|
26
|
-
},
|
|
27
|
-
withCredentials: true,
|
|
28
|
-
})
|
|
29
|
-
|
|
30
|
-
this.axiosInstance.interceptors.request.use(
|
|
31
|
-
(config: InternalAxiosRequestConfig) => {
|
|
32
|
-
config.headers.Authorization = `Bearer ${this.getAccessToken()}`
|
|
33
|
-
return config
|
|
34
|
-
},
|
|
35
|
-
(error: AxiosError) => {
|
|
36
|
-
return Promise.reject(error)
|
|
37
|
-
},
|
|
38
|
-
)
|
|
39
|
-
|
|
40
|
-
this.axiosInstance.interceptors.response.use(
|
|
41
|
-
(response: AxiosResponse) => {
|
|
42
|
-
return response.data
|
|
43
|
-
},
|
|
44
|
-
async error => {
|
|
45
|
-
const originalRequest = error.config
|
|
46
|
-
|
|
47
|
-
if (
|
|
48
|
-
error.response?.status !== 401 ||
|
|
49
|
-
originalRequest.url === '/v2/auth/refresh' ||
|
|
50
|
-
originalRequest.url === '/v2/login' ||
|
|
51
|
-
originalRequest.
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
this.
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
refreshSubscribers
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
this.
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
}
|
|
1
|
+
import axios, { AxiosError, AxiosInstance, AxiosRequestConfig, AxiosResponse, InternalAxiosRequestConfig } from 'axios'
|
|
2
|
+
import { Api_Auth_Login } from '@/api/types/Api_Auth'
|
|
3
|
+
|
|
4
|
+
// eslint-disable-next-line
|
|
5
|
+
var isRefreshing = false
|
|
6
|
+
// eslint-disable-next-line
|
|
7
|
+
var refreshSubscribers: any[] = []
|
|
8
|
+
|
|
9
|
+
interface Api_Auth_Refresh {
|
|
10
|
+
accessToken: string
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export enum ApiServiceType {
|
|
14
|
+
SERVICE_AUTH = 'SERVICE_AUTH',
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export default class ApiService {
|
|
18
|
+
private axiosInstance: AxiosInstance
|
|
19
|
+
|
|
20
|
+
constructor() {
|
|
21
|
+
this.axiosInstance = axios.create({
|
|
22
|
+
baseURL: process.env.VUE_APP_BACKEND,
|
|
23
|
+
headers: {
|
|
24
|
+
'Content-Type': 'application/json',
|
|
25
|
+
Accept: 'application/json',
|
|
26
|
+
},
|
|
27
|
+
withCredentials: true,
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
this.axiosInstance.interceptors.request.use(
|
|
31
|
+
(config: InternalAxiosRequestConfig) => {
|
|
32
|
+
config.headers.Authorization = `Bearer ${this.getAccessToken()}`
|
|
33
|
+
return config
|
|
34
|
+
},
|
|
35
|
+
(error: AxiosError) => {
|
|
36
|
+
return Promise.reject(error)
|
|
37
|
+
},
|
|
38
|
+
)
|
|
39
|
+
|
|
40
|
+
this.axiosInstance.interceptors.response.use(
|
|
41
|
+
(response: AxiosResponse) => {
|
|
42
|
+
return response.data
|
|
43
|
+
},
|
|
44
|
+
async error => {
|
|
45
|
+
const originalRequest = error.config
|
|
46
|
+
|
|
47
|
+
if (
|
|
48
|
+
error.response?.status !== 401 ||
|
|
49
|
+
originalRequest.url === '/v2/auth/refresh' ||
|
|
50
|
+
originalRequest.url === '/v2/login' ||
|
|
51
|
+
originalRequest.url === '/v2/auth/refresh' ||
|
|
52
|
+
originalRequest._retry
|
|
53
|
+
) {
|
|
54
|
+
return Promise.reject(error)
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
originalRequest._retry = true
|
|
58
|
+
|
|
59
|
+
if (isRefreshing) {
|
|
60
|
+
return new Promise(resolve => {
|
|
61
|
+
this.subscribeTokenRefresh(() => resolve(this.axiosInstance(originalRequest)))
|
|
62
|
+
})
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
isRefreshing = true
|
|
66
|
+
|
|
67
|
+
try {
|
|
68
|
+
const response = await this.refresh()
|
|
69
|
+
|
|
70
|
+
const newToken = response.accessToken
|
|
71
|
+
if (!newToken) {
|
|
72
|
+
await this.logoutUser()
|
|
73
|
+
return Promise.reject(error)
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
this.setAccessToken(newToken)
|
|
77
|
+
this.onRefreshed()
|
|
78
|
+
isRefreshing = false
|
|
79
|
+
return this.axiosInstance(originalRequest)
|
|
80
|
+
} catch (e) {
|
|
81
|
+
await this.logoutUser()
|
|
82
|
+
return Promise.reject(e)
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
)
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
private setAccessToken(token: string) {
|
|
89
|
+
localStorage.setItem('token', token)
|
|
90
|
+
}
|
|
91
|
+
private getAccessToken() {
|
|
92
|
+
return localStorage.getItem('token')
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
private removeToken() {
|
|
96
|
+
localStorage.removeItem('token')
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
private subscribeTokenRefresh(cb: any) {
|
|
100
|
+
refreshSubscribers.push(cb)
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
private refresh(): Promise<Api_Auth_Refresh> {
|
|
104
|
+
return this.post<null, Api_Auth_Login>(`/v2/auth/refresh`, null)
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
private onRefreshed() {
|
|
108
|
+
refreshSubscribers.forEach(cb => cb())
|
|
109
|
+
refreshSubscribers = []
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
public async logoutUser(): Promise<any> {
|
|
113
|
+
isRefreshing = false
|
|
114
|
+
await this.post<any, any>(`/v2/logout`, null)
|
|
115
|
+
this.removeToken()
|
|
116
|
+
window.location.href = '/sign-in'
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
private handleError(error: AxiosError): void {
|
|
120
|
+
if (error.response) {
|
|
121
|
+
console.error('API Error:', error.response.status, error.response.data)
|
|
122
|
+
} else if (error.request) {
|
|
123
|
+
console.error('No response received:', error.request)
|
|
124
|
+
} else {
|
|
125
|
+
console.error('Error during request setup:', error.message)
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
protected async get<T>(url: string, options?: AxiosRequestConfig) {
|
|
130
|
+
try {
|
|
131
|
+
const response: AxiosResponse<T> = await this.axiosInstance.get<T>(url, options)
|
|
132
|
+
if (response?.data === false) return false as unknown as T
|
|
133
|
+
|
|
134
|
+
return response?.data ?? (response as unknown as T)
|
|
135
|
+
} catch (error) {
|
|
136
|
+
const axiosError = error as AxiosError
|
|
137
|
+
this.handleError(axiosError)
|
|
138
|
+
throw error
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
protected async delete<T>(url: string, options?: AxiosRequestConfig) {
|
|
143
|
+
try {
|
|
144
|
+
return await this.axiosInstance.delete<T>(url, options)
|
|
145
|
+
} catch (error) {
|
|
146
|
+
const axiosError = error as AxiosError
|
|
147
|
+
this.handleError(axiosError)
|
|
148
|
+
throw error
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
protected async post<T1, T2>(url: string, payload: T1, options?: AxiosRequestConfig) {
|
|
153
|
+
try {
|
|
154
|
+
const response: AxiosResponse<T2> = await this.axiosInstance.post<T1, AxiosResponse<T2>>(url, payload, options)
|
|
155
|
+
if (response?.data === false) return false
|
|
156
|
+
return response?.data || (response as any)
|
|
157
|
+
} catch (error) {
|
|
158
|
+
const axiosError = error as AxiosError
|
|
159
|
+
this.handleError(axiosError)
|
|
160
|
+
throw error
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
protected async patch<T1, T2>(url: string, payload: T1, options?: AxiosRequestConfig): Promise<T2> {
|
|
165
|
+
try {
|
|
166
|
+
const response: AxiosResponse<T2> = await this.axiosInstance.patch<T1, AxiosResponse<T2>>(url, payload, options)
|
|
167
|
+
return response.data
|
|
168
|
+
} catch (error) {
|
|
169
|
+
const axiosError = error as AxiosError
|
|
170
|
+
this.handleError(axiosError)
|
|
171
|
+
throw error
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
protected async put<T1, T2>(url: string, payload: T1, options?: AxiosRequestConfig) {
|
|
176
|
+
try {
|
|
177
|
+
const response: AxiosResponse<T2> = await this.axiosInstance.put<T1, AxiosResponse<T2>>(url, payload, options)
|
|
178
|
+
return response.data
|
|
179
|
+
} catch (error) {
|
|
180
|
+
const axiosError = error as AxiosError
|
|
181
|
+
this.handleError(axiosError)
|
|
182
|
+
throw error
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
@@ -1,121 +1,121 @@
|
|
|
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
|
-
avatar: null
|
|
76
|
-
change_password: null
|
|
77
|
-
created_at: string
|
|
78
|
-
deleted_at: null
|
|
79
|
-
face_recognition_id: null
|
|
80
|
-
password_change_available_at: string
|
|
81
|
-
password_change_due_at: string
|
|
82
|
-
password_last_changed_at: string
|
|
83
|
-
updated_at: string
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
export type Api_Auth_Login = {
|
|
87
|
-
token: string
|
|
88
|
-
user: Api_Auth_User
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
export type ChangePasswordPayload = {
|
|
92
|
-
password: string
|
|
93
|
-
password_confirmation: string
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
export type ChangePasswordAndActivatePayload = {
|
|
97
|
-
email: string
|
|
98
|
-
currentPassword: string
|
|
99
|
-
password: string
|
|
100
|
-
passwordConfirmation: string
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
export type ChangePasswordResponse = Pick<
|
|
104
|
-
Api_User,
|
|
105
|
-
| 'id'
|
|
106
|
-
| 'archiveHistory'
|
|
107
|
-
| 'assigned_tasks'
|
|
108
|
-
| 'divisions'
|
|
109
|
-
| 'email'
|
|
110
|
-
| 'full_name'
|
|
111
|
-
| 'passes'
|
|
112
|
-
| 'personnel_number'
|
|
113
|
-
| 'phone'
|
|
114
|
-
| 'photos'
|
|
115
|
-
| 'positions'
|
|
116
|
-
| 'responsible_tasks'
|
|
117
|
-
| 'teams'
|
|
118
|
-
| 'warehouses'
|
|
119
|
-
>
|
|
120
|
-
|
|
121
|
-
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
|
+
avatar: null
|
|
76
|
+
change_password: null
|
|
77
|
+
created_at: string
|
|
78
|
+
deleted_at: null
|
|
79
|
+
face_recognition_id: null
|
|
80
|
+
password_change_available_at: string
|
|
81
|
+
password_change_due_at: string
|
|
82
|
+
password_last_changed_at: string
|
|
83
|
+
updated_at: string
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export type Api_Auth_Login = {
|
|
87
|
+
token: string
|
|
88
|
+
user: Api_Auth_User
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export type ChangePasswordPayload = {
|
|
92
|
+
password: string
|
|
93
|
+
password_confirmation: string
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export type ChangePasswordAndActivatePayload = {
|
|
97
|
+
email: string
|
|
98
|
+
currentPassword: string
|
|
99
|
+
password: string
|
|
100
|
+
passwordConfirmation: string
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export type ChangePasswordResponse = Pick<
|
|
104
|
+
Api_User,
|
|
105
|
+
| 'id'
|
|
106
|
+
| 'archiveHistory'
|
|
107
|
+
| 'assigned_tasks'
|
|
108
|
+
| 'divisions'
|
|
109
|
+
| 'email'
|
|
110
|
+
| 'full_name'
|
|
111
|
+
| 'passes'
|
|
112
|
+
| 'personnel_number'
|
|
113
|
+
| 'phone'
|
|
114
|
+
| 'photos'
|
|
115
|
+
| 'positions'
|
|
116
|
+
| 'responsible_tasks'
|
|
117
|
+
| 'teams'
|
|
118
|
+
| 'warehouses'
|
|
119
|
+
>
|
|
120
|
+
|
|
121
|
+
export type ConfigResponse = any
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { Api_Equipment_Full_Dto } from '@/api/types/Api_Repairs'
|
|
2
|
-
|
|
3
|
-
export type Api_Equipment_Create = Omit<Api_Equipment_Full_Dto, 'id'>
|
|
4
|
-
|
|
5
|
-
export type Api_Equipment_Type = {
|
|
6
|
-
id: string
|
|
7
|
-
name: string
|
|
8
|
-
model?: string | null
|
|
9
|
-
description?: string | null
|
|
10
|
-
updated_at: string
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export type Api_Equipment_Type_Body = Omit<Api_Equipment_Type, 'id' | 'updated_at'>
|
|
1
|
+
import { Api_Equipment_Full_Dto } from '@/api/types/Api_Repairs'
|
|
2
|
+
|
|
3
|
+
export type Api_Equipment_Create = Omit<Api_Equipment_Full_Dto, 'id'>
|
|
4
|
+
|
|
5
|
+
export type Api_Equipment_Type = {
|
|
6
|
+
id: string
|
|
7
|
+
name: string
|
|
8
|
+
model?: string | null
|
|
9
|
+
description?: string | null
|
|
10
|
+
updated_at: string
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export type Api_Equipment_Type_Body = Omit<Api_Equipment_Type, 'id' | 'updated_at'>
|