@finema/finework-layer 0.2.80 → 0.2.82
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.82](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.81...0.2.82) (2025-12-09)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* reorder and clean up FileAppType enum values ([77577a0](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/77577a0603b1223046e946d29cbcf64f8a4fc345))
|
|
8
|
+
|
|
9
|
+
## [0.2.81](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.80...0.2.81) (2025-12-08)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* move FileAppType enum to a separate constants file ([cc5dad8](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/cc5dad86f93876c6cecfd12715f10a0c62371b11))
|
|
14
|
+
|
|
3
15
|
## [0.2.80](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.79...0.2.80) (2025-12-08)
|
|
4
16
|
|
|
5
17
|
## [0.2.79](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.78...0.2.79) (2025-12-08)
|
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
import type { AxiosRequestConfig } from 'axios'
|
|
2
2
|
|
|
3
|
-
export enum FileAppType {
|
|
4
|
-
COMMON = 'COMMON',
|
|
5
|
-
PMO = 'PMO',
|
|
6
|
-
HR = 'HR',
|
|
7
|
-
FINANCE = 'FINANCE',
|
|
8
|
-
QUOTATION = 'QUOTATION',
|
|
9
|
-
TODO = 'TODO',
|
|
10
|
-
}
|
|
11
|
-
|
|
12
3
|
export const useRequestOptions = () => {
|
|
13
4
|
const config = useRuntimeConfig()
|
|
14
5
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export enum FileAppType {
|
|
2
|
+
PMO = 'PMO',
|
|
3
|
+
CLOCKIN = 'CLOCKIN',
|
|
4
|
+
TIMESHEET = 'TIMESHEET',
|
|
5
|
+
COMMON = 'COMMON',
|
|
6
|
+
NEWSLETTER = 'NEWSLETTER',
|
|
7
|
+
REQUEST = 'REQUEST',
|
|
8
|
+
TODO = 'TODO',
|
|
9
|
+
EVALUATION = 'EVALUATION',
|
|
10
|
+
EMPLOYEE = 'EMPLOYEE',
|
|
11
|
+
ASSET = 'ASSET',
|
|
12
|
+
RECRUIT = 'RECRUIT',
|
|
13
|
+
CONTRACT = 'CONTRACT',
|
|
14
|
+
QUOTATION = 'QUOTATION',
|
|
15
|
+
COSTSHEET = 'COSTSHEET',
|
|
16
|
+
BIDBOND = 'BIDBOND',
|
|
17
|
+
EFACTORING = 'EFACTORING',
|
|
18
|
+
}
|