@finema/finework-layer 1.0.60 → 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,11 @@
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
+
3
9
  ## [1.0.60](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.59...1.0.60) (2026-05-19)
4
10
 
5
11
  ### Features
@@ -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
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "1.0.60",
4
+ "version": "1.0.61",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",