@finema/finework-layer 2.0.66 → 2.0.67

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
+ ## [2.0.67](https://gitlab.finema.co/finema/internal/finework/compare/2.0.66...2.0.67) (2026-09-20)
4
+
5
+ ### Bug Fixes
6
+
7
+ * conditionally render HelpHub only for authenticated users ([67c7cf8](https://gitlab.finema.co/finema/internal/finework/commit/67c7cf8b91c47813780198698c88c07413c013cf))
8
+
3
9
  ## [2.0.66](https://gitlab.finema.co/finema/internal/finework/compare/2.0.65...2.0.66) (2026-09-15)
4
10
 
5
11
  ### Bug Fixes
package/app/app.vue CHANGED
@@ -6,6 +6,12 @@
6
6
  }"
7
7
  >
8
8
  <NuxtPage />
9
- <HelpHub />
9
+ <HelpHub v-if="isAuthenticated" />
10
10
  </App>
11
11
  </template>
12
+
13
+ <script lang="ts" setup>
14
+ const {
15
+ isAuthenticated,
16
+ } = useAuth()
17
+ </script>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@finema/finework-layer",
3
3
  "type": "module",
4
- "version": "2.0.66",
4
+ "version": "2.0.67",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "dev": "nuxi dev .playground -o",