@finema/finework-layer 1.0.59 → 1.0.61

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
+ ## [1.0.61](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.60...1.0.61) (2026-05-19)
4
+
5
+ ### Features
6
+
7
+ * add navigation link for REQUEST_WAITING_REVIEW notification type ([91d1091](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/91d1091e5b3311ec23c9a50ed817f94b13e4d194))
8
+
9
+ ## [1.0.60](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.59...1.0.60) (2026-05-19)
10
+
11
+ ### Features
12
+
13
+ * add new file application types (RESOURCE, LOAN, LG) to enum ([a6f7e37](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/a6f7e376fda7ddc3fab2e27e7f4f74f6d870b92f))
14
+
3
15
  ## [1.0.59](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.58...1.0.59) (2026-05-18)
4
16
 
5
17
  ### Bug Fixes
@@ -143,7 +143,8 @@ const getLink = (item: INotificationItem) => {
143
143
  case 'REQUEST_APPROVED':
144
144
  case 'REQUEST_REJECTED':
145
145
  return `/request/${item.data?.request_slug}`
146
-
146
+ case 'REQUEST_WAITING_REVIEW':
147
+ return `/request-admin/request/${item.data?.request_slug}`
147
148
  default:
148
149
  return '#'
149
150
  }
@@ -15,4 +15,7 @@ export enum FileAppType {
15
15
  COSTSHEET = 'COSTSHEET',
16
16
  BIDBOND = 'BIDBOND',
17
17
  EFACTORING = 'EFACTORING',
18
+ RESOURCE = 'RESOURCE',
19
+ LOAN = 'LOAN',
20
+ LG = 'LG',
18
21
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "1.0.59",
4
+ "version": "1.0.61",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",