@vctrl/hooks 0.9.5 → 0.16.2

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.
Files changed (71) hide show
  1. package/CHANGELOG.md +380 -0
  2. package/README.md +202 -383
  3. package/package.json +66 -55
  4. package/project.json +55 -0
  5. package/src/index.ts +38 -0
  6. package/src/use-export-model/use-export-model.ts +113 -0
  7. package/src/use-load-model/event-system.ts +46 -0
  8. package/src/use-load-model/index.ts +15 -0
  9. package/src/use-load-model/model-context.tsx +174 -0
  10. package/src/use-load-model/state.ts +75 -0
  11. package/src/use-load-model/types.ts +284 -0
  12. package/src/use-load-model/use-load-model.ts +682 -0
  13. package/src/use-load-model/utils/calculate-referenced-bytes.ts +123 -0
  14. package/src/use-load-model/utils/index.ts +7 -0
  15. package/src/use-load-model/utils/read-directory.ts +35 -0
  16. package/src/use-load-model/utils/reconstruct-files.ts +85 -0
  17. package/src/use-load-model/utils/resolve-scene-payload.ts +151 -0
  18. package/{use-optimize-model/index.d.ts → src/use-optimize-model/index.ts} +2 -1
  19. package/src/use-optimize-model/state.ts +40 -0
  20. package/src/use-optimize-model/types.ts +37 -0
  21. package/src/use-optimize-model/use-calc-optimization-info.ts +101 -0
  22. package/src/use-optimize-model/use-optimize-model.ts +467 -0
  23. package/src/use-optimize-model/utils/index.ts +29 -0
  24. package/src/use-optimize-model/utils/texture-optimization.ts +292 -0
  25. package/src/use-optimize-model/utils/validation.ts +62 -0
  26. package/src/utils/server-communication.ts +351 -0
  27. package/tsconfig.json +21 -0
  28. package/tsconfig.lib.json +16 -0
  29. package/vite.config.ts +77 -0
  30. package/GLTFExporter-BmLF430n.cjs +0 -18
  31. package/GLTFExporter-C4hCeb4H.js +0 -1263
  32. package/index.cjs.js +0 -1
  33. package/index.d.ts +0 -3
  34. package/index.es.js +0 -12
  35. package/model-context-CQJta_vi.cjs +0 -9
  36. package/model-context-D1Q8WdpT.js +0 -3431
  37. package/use-export-model/types.d.ts +0 -19
  38. package/use-export-model/use-export-model.d.ts +0 -14
  39. package/use-export-model/utils/data-uri-to-blob.d.ts +0 -9
  40. package/use-export-model/utils/export-handlers.d.ts +0 -23
  41. package/use-export-model/utils/file-helpers.d.ts +0 -17
  42. package/use-export-model/utils/index.d.ts +0 -3
  43. package/use-export-model-AFharGg5.js +0 -77
  44. package/use-export-model-CWcKp4A3.cjs +0 -1
  45. package/use-export-model.cjs.js +0 -1
  46. package/use-export-model.es.js +0 -4
  47. package/use-load-model/event-system.d.ts +0 -7
  48. package/use-load-model/file-type-hooks/index.d.ts +0 -2
  49. package/use-load-model/file-type-hooks/use-load-binary.d.ts +0 -11
  50. package/use-load-model/file-type-hooks/use-load-gltf.d.ts +0 -5
  51. package/use-load-model/index.d.ts +0 -3
  52. package/use-load-model/loaders/create-gltf-loader.d.ts +0 -3
  53. package/use-load-model/loaders/create-usdz-loader.d.ts +0 -3
  54. package/use-load-model/loaders/index.d.ts +0 -2
  55. package/use-load-model/model-context.d.ts +0 -78
  56. package/use-load-model/state.d.ts +0 -19
  57. package/use-load-model/types.d.ts +0 -51
  58. package/use-load-model/use-load-model.d.ts +0 -74
  59. package/use-load-model/utils/array-buffer-to-base64.d.ts +0 -2
  60. package/use-load-model/utils/index.d.ts +0 -2
  61. package/use-load-model/utils/read-directory.d.ts +0 -8
  62. package/use-load-model.cjs.js +0 -1
  63. package/use-load-model.es.js +0 -8
  64. package/use-optimize-model/state.d.ts +0 -13
  65. package/use-optimize-model/types.d.ts +0 -37
  66. package/use-optimize-model/use-optimize-model.d.ts +0 -29
  67. package/use-optimize-model-Cqkp__Vi.cjs +0 -1
  68. package/use-optimize-model-DZWIb_40.js +0 -127
  69. package/use-optimize-model.cjs.js +0 -1
  70. package/use-optimize-model.es.js +0 -4
  71. /package/{use-export-model/index.d.ts → src/use-export-model/index.ts} +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,380 @@
1
+ # Changelog
2
+
3
+ ## [0.16.2](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.16.1...hooks-v0.16.2) (2026-04-12)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **hooks:** Synchronize vectreal-monorepo versions
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @vctrl/core bumped to 0.16.2
16
+
17
+ ## [0.16.1](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.16.0...hooks-v0.16.1) (2026-04-11)
18
+
19
+
20
+ ### Miscellaneous Chores
21
+
22
+ * **hooks:** Synchronize vectreal-monorepo versions
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @vctrl/core bumped to 0.16.1
30
+
31
+ ## [0.16.0](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.15.0...hooks-v0.16.0) (2026-04-11)
32
+
33
+
34
+ ### Miscellaneous Chores
35
+
36
+ * **hooks:** Synchronize vectreal-monorepo versions
37
+
38
+
39
+ ### Dependencies
40
+
41
+ * The following workspace dependencies were updated
42
+ * dependencies
43
+ * @vctrl/core bumped to 0.16.0
44
+
45
+ ## [0.15.0](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.14.0...hooks-v0.15.0) (2026-04-08)
46
+
47
+
48
+ ### Features
49
+
50
+ * add advanced optimization panel with toggle settings for quantization, deduplication, and normals optimization ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
51
+ * Add authentication callback route for handling OAuth code exchange ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
52
+ * Add Google logo SVG asset ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
53
+ * add model exporter, loader, and optimizer modules as core package ([3725193](https://github.com/Vectreal/vectreal-platform/commit/372519345f5cd6d3d0be4011e7addd23e947202e))
54
+ * add new texture size option and enhance optimization panel ([f67f823](https://github.com/Vectreal/vectreal-platform/commit/f67f8237507b9caeb5dc0c9e1c25cfab2c6742a4))
55
+ * add platform app ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
56
+ * add publish sidebar components for embedding, saving, and sharing scenes ([c846642](https://github.com/Vectreal/vectreal-platform/commit/c846642585db690738d5a8a11a29981750ff9d23))
57
+ * Add publisher buttons for 3D model processing ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
58
+ * add scene asset utilities for URI normalization, MIME type detection, and base64 handling ([d81826d](https://github.com/Vectreal/vectreal-platform/commit/d81826d4c8d416ac4e187d3300c5aa6d4eae4a0a))
59
+ * add scene metadata update functionality and enhance scene details UI ([58d0187](https://github.com/Vectreal/vectreal-platform/commit/58d01876a43c6dee1c087317873678083080d651))
60
+ * Add social sign-in route for Google and GitHub authentication ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
61
+ * add UI components ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
62
+ * add various asset files including icons, manifest, and browser config for improved web app support ([a53bc24](https://github.com/Vectreal/vectreal-platform/commit/a53bc2417c05626b25ffbfbc338bf824b5c62981))
63
+ * Create a basic dashboard page component ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
64
+ * Create logout route to handle user sign-out ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
65
+ * Create sign-in layout with social login options ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
66
+ * Create sign-up page with username, email, and password registration ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
67
+ * Create Supabase client for server-side requests ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
68
+ * enhance asset handling by integrating asset normalization and lookup functionality ([571eabf](https://github.com/Vectreal/vectreal-platform/commit/571eabf01865afb0d1a86014119bdc06ca9a32ec))
69
+ * enhance asset handling by integrating asset normalization and lookup functionality ([a802fee](https://github.com/Vectreal/vectreal-platform/commit/a802fee7fb28b8624928fe0bdf124852fb2e476b))
70
+ * enhance CI/CD workflows with quality gate and build steps ([b5ad615](https://github.com/Vectreal/vectreal-platform/commit/b5ad6156cb051d9b623f98a2b6ca589dbf5a89f2))
71
+ * enhance CI/CD workflows with quality gate and build steps ([1b7030b](https://github.com/Vectreal/vectreal-platform/commit/1b7030be629b5bffdf5a95ae05893950f76fac68))
72
+ * enhance deployment workflows and configurations for Cloud Run services, add caching and access control improvements ([249da35](https://github.com/Vectreal/vectreal-platform/commit/249da3514d827c1268fd52ef9989b22743f42b8a))
73
+ * enhance model optimization and texture handling ([089f27a](https://github.com/Vectreal/vectreal-platform/commit/089f27a29a7f4160d1c2fd6b7c3c8e0a14941033))
74
+ * enhance model optimization and texture handling ([a98bb0c](https://github.com/Vectreal/vectreal-platform/commit/a98bb0c2fa6cfdf123835be7c093175b2ba1ae5b))
75
+ * enhance model optimization hooks and UI components ([e90bb5d](https://github.com/Vectreal/vectreal-platform/commit/e90bb5d009ed7f3559427f604d3096867a4cce90))
76
+ * enhance project and scene management with new folder creation and content actions ([93df463](https://github.com/Vectreal/vectreal-platform/commit/93df463fbd4c615d6c5e19bb3c9188b689654bb2))
77
+ * enhance publish sidebar with scene and project ID handling, improve embed options, and add validation for saving and publishing ([a7146fe](https://github.com/Vectreal/vectreal-platform/commit/a7146febdd7adf49714add09f9b367bcaffcf315))
78
+ * enhance scene data handling with base64 encoding and optimize request management ([880007f](https://github.com/Vectreal/vectreal-platform/commit/880007feb3685b5849916dafe3aac2743b8123f2))
79
+ * enhance scene metadata handling and settings management ([8ffc99b](https://github.com/Vectreal/vectreal-platform/commit/8ffc99b2eabd7fd83c78c0b581c6cf8c7f7e1073))
80
+ * enhance shared components and utils, add mobile navigation for docs ([b424033](https://github.com/Vectreal/vectreal-platform/commit/b4240331d005009a424be6058fe4db152775b950))
81
+ * enhance texture optimization API with new request structure and error handling ([6ac4d16](https://github.com/Vectreal/vectreal-platform/commit/6ac4d16b120c2178b22528d4d7045615e468982d))
82
+ * first-run onboarding wizard + /docs site with Edit on GitHub ([15c48d9](https://github.com/Vectreal/vectreal-platform/commit/15c48d94eec13df39ee2077745e6e8f3d2aaa3e4))
83
+ * implement apply optimizations button in the sidebar with loading state ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
84
+ * Implement Asset Storage Service for managing GLTF scene assets in Google Cloud Storage ([d0761bc](https://github.com/Vectreal/vectreal-platform/commit/d0761bc689fd74d3ffdf9d29ec606a6264237e61))
85
+ * Implement authentication context and hooks for user management ([267f546](https://github.com/Vectreal/vectreal-platform/commit/267f54655f12ddeb9bf1dadcba911f40b85e46fa))
86
+ * Implement authentication layout with user redirection ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
87
+ * Implement email OTP confirmation route for user sign-up ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
88
+ * Implement hook for capturing scene screenshots in 3D environment ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
89
+ * Implement sign-in page with email and password authentication ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
90
+ * Implement theme session management with cookie storage ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
91
+ * implement utility functions for API responses and styling ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
92
+ * Optimize GLTF loading and model transformation processes for improved performance ([8060d9d](https://github.com/Vectreal/vectreal-platform/commit/8060d9ddd24651a0bac11058b5df563228f4a9bd))
93
+ * **packages/hooks:** optimize model and add normals optimization ([6f0bde1](https://github.com/Vectreal/vectreal-platform/commit/6f0bde1c5a47b9be555405f547cc186749c581fc))
94
+ * **packages/viewer:** update peer dependencies, add Storybook configuration, implement robust styling and remove postcss config files ([df8359a](https://github.com/Vectreal/vectreal-platform/commit/df8359a4824d265282634267683e8e4b007f423d))
95
+ * Refactor and enhance publisher settings components ([2a1eb68](https://github.com/Vectreal/vectreal-platform/commit/2a1eb687e157637d346a89f9ae97333e7265efcc))
96
+ * refactor authentication handling to use loadAuthenticatedSession and improve session management across dashboard routes ([e787c5d](https://github.com/Vectreal/vectreal-platform/commit/e787c5dd89f8855ff7af64289448f8e3763018b3))
97
+ * Refactor publisher layout and sidebar components ([2c43273](https://github.com/Vectreal/vectreal-platform/commit/2c43273b239a5d3f60de1d6b79cc417bea8154bf))
98
+ * refactor scene and asset handling with improved type definitions and payload resolution ([99e743b](https://github.com/Vectreal/vectreal-platform/commit/99e743b574c158c79af151c1465eb957df7a350a))
99
+ * refactor scene and asset handling, improve loading logic and UI components ([31e02bc](https://github.com/Vectreal/vectreal-platform/commit/31e02bc3914666c714c2e8af07d8e816e72cd817))
100
+ * Remove official-website in favor of vectreal-platform app ([e805770](https://github.com/Vectreal/vectreal-platform/commit/e805770e672100cb5c026e55f914587d543c3a27))
101
+ * Remove official-website in favor of vectreal-platform app ([#198](https://github.com/Vectreal/vectreal-platform/issues/198)) ([3c1019e](https://github.com/Vectreal/vectreal-platform/commit/3c1019ea1950ce1c99247c957e983078b563ce80))
102
+ * Update package publishing process to use 'publish' target and add preflight checks ([ccfe373](https://github.com/Vectreal/vectreal-platform/commit/ccfe3736521555e3fd6f23334248dbc3251cbf98))
103
+
104
+
105
+ ### Bug Fixes
106
+
107
+ * adjust ESLint configuration to ignore Storybook files and update Storybook main configuration ([a53bc24](https://github.com/Vectreal/vectreal-platform/commit/a53bc2417c05626b25ffbfbc338bf824b5c62981))
108
+ * Adjust routing for publisher layout to include optional sceneId parameter ([d0761bc](https://github.com/Vectreal/vectreal-platform/commit/d0761bc689fd74d3ffdf9d29ec606a6264237e61))
109
+ * **packages/hooks:** ensure buffers are converted to Uint8Array before adding to zip file ([4e1f99d](https://github.com/Vectreal/vectreal-platform/commit/4e1f99dcd54e45e2549df3ee6c0b3bda25b18a74))
110
+ * **packages/hooks:** optimize hook volumne + emission material extension registration ([6ec7915](https://github.com/Vectreal/vectreal-platform/commit/6ec79153d07d097df608d064ff0a16473a1fb1e7))
111
+ * **packages:** cross dependencies ([4fbe8b3](https://github.com/Vectreal/vectreal-platform/commit/4fbe8b3e07c09976758d7906a23a8780127b7479))
112
+ * **packages:** update dependencies in `package.json` with eslint nx plugin ([1eab9b7](https://github.com/Vectreal/vectreal-platform/commit/1eab9b718b821d3292d90e8b0e6ee1c3f72175b2))
113
+ * update decodeBase64ToUint8Array return type and improve asset data handling in reconstructGltfFiles ([3aa7170](https://github.com/Vectreal/vectreal-platform/commit/3aa71709268f386fd3b49f966fc4f88a15647a2c))
114
+ * update homepage URLs and repository type in package.json files ([#343](https://github.com/Vectreal/vectreal-platform/issues/343)) ([b8d8c69](https://github.com/Vectreal/vectreal-platform/commit/b8d8c691cd632ee95e54708b76630d6194f4a06f))
115
+ * Update repository URLs in package.json files to point to vectreal-platform ([07e2864](https://github.com/Vectreal/vectreal-platform/commit/07e28644fd331a3c85ce2bbde2dd8bac446546bf))
116
+ * update sidebar layout and add close button for better user experience ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
117
+ * update types for optimization presets and ensure consistent prop usage ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
118
+
119
+
120
+ ### Reverts
121
+
122
+ * remove release-please generated v0.14.0 changelog entry ([#366](https://github.com/Vectreal/vectreal-platform/issues/366)) ([4ef3b61](https://github.com/Vectreal/vectreal-platform/commit/4ef3b617e7b0a14fe5001b5371f67f2d65cdf819))
123
+
124
+
125
+ ### Dependencies
126
+
127
+ * The following workspace dependencies were updated
128
+ * dependencies
129
+ * @vctrl/core bumped to 0.15.0
130
+
131
+ ## [0.12.2](https://github.com/Vectreal/vectreal-platform/compare/workspace-v0.12.1...hooks-v0.12.2) (2026-04-07)
132
+
133
+
134
+ ### Reverts
135
+
136
+ * remove release-please generated v0.14.0 changelog entry ([#366](https://github.com/Vectreal/vectreal-platform/issues/366)) ([4ef3b61](https://github.com/Vectreal/vectreal-platform/commit/4ef3b617e7b0a14fe5001b5371f67f2d65cdf819))
137
+
138
+
139
+ ### Dependencies
140
+
141
+ * The following workspace dependencies were updated
142
+ * dependencies
143
+ * @vctrl/core bumped to 0.12.2
144
+
145
+ ## [0.12.1](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.12.0...hooks-v0.12.1) (2026-04-07)
146
+
147
+
148
+ ### Reverts
149
+
150
+ * remove release-please generated v0.14.0 changelog entry ([#366](https://github.com/Vectreal/vectreal-platform/issues/366)) ([4ef3b61](https://github.com/Vectreal/vectreal-platform/commit/4ef3b617e7b0a14fe5001b5371f67f2d65cdf819))
151
+
152
+
153
+ ### Dependencies
154
+
155
+ * The following workspace dependencies were updated
156
+ * dependencies
157
+ * @vctrl/core bumped to 0.12.1
158
+
159
+ ## [0.12.0](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.11.1...hooks-v0.12.0) (2026-04-04)
160
+
161
+
162
+ ### Bug Fixes
163
+
164
+ * update homepage URLs and repository type in package.json files ([#343](https://github.com/Vectreal/vectreal-platform/issues/343)) ([b8d8c69](https://github.com/Vectreal/vectreal-platform/commit/b8d8c691cd632ee95e54708b76630d6194f4a06f))
165
+
166
+
167
+ ### Dependencies
168
+
169
+ * The following workspace dependencies were updated
170
+ * dependencies
171
+ * @vctrl/core bumped to 0.12.0
172
+
173
+ ## [0.11.1](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.11.0...hooks-v0.11.1) (2026-04-02)
174
+
175
+
176
+ ### Bug Fixes
177
+
178
+ * Update repository URLs in package.json files to point to vectreal-platform ([07e2864](https://github.com/Vectreal/vectreal-platform/commit/07e28644fd331a3c85ce2bbde2dd8bac446546bf))
179
+
180
+
181
+ ### Dependencies
182
+
183
+ * The following workspace dependencies were updated
184
+ * dependencies
185
+ * @vctrl/core bumped to 0.11.1
186
+
187
+ ## [0.11.0](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.10.1...hooks-v0.11.0) (2026-04-02)
188
+
189
+
190
+ ### Features
191
+
192
+ * Update package publishing process to use 'publish' target and add preflight checks ([ccfe373](https://github.com/Vectreal/vectreal-platform/commit/ccfe3736521555e3fd6f23334248dbc3251cbf98))
193
+
194
+
195
+ ### Dependencies
196
+
197
+ * The following workspace dependencies were updated
198
+ * dependencies
199
+ * @vctrl/core bumped to 0.11.0
200
+
201
+ ## [0.10.1](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.10.0...hooks-v0.10.1) (2026-04-02)
202
+
203
+
204
+ ### Dependencies
205
+
206
+ * The following workspace dependencies were updated
207
+ * dependencies
208
+ * @vctrl/core bumped to 0.10.1
209
+
210
+ ## [0.10.0](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.9.5...hooks-v0.10.0) (2026-04-02)
211
+
212
+
213
+ ### Features
214
+
215
+ * add advanced optimization panel with toggle settings for quantization, deduplication, and normals optimization ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
216
+ * Add authentication callback route for handling OAuth code exchange ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
217
+ * Add Google logo SVG asset ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
218
+ * add model exporter, loader, and optimizer modules as core package ([3725193](https://github.com/Vectreal/vectreal-platform/commit/372519345f5cd6d3d0be4011e7addd23e947202e))
219
+ * add new texture size option and enhance optimization panel ([f67f823](https://github.com/Vectreal/vectreal-platform/commit/f67f8237507b9caeb5dc0c9e1c25cfab2c6742a4))
220
+ * add platform app ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
221
+ * add publish sidebar components for embedding, saving, and sharing scenes ([c846642](https://github.com/Vectreal/vectreal-platform/commit/c846642585db690738d5a8a11a29981750ff9d23))
222
+ * Add publisher buttons for 3D model processing ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
223
+ * add scene asset utilities for URI normalization, MIME type detection, and base64 handling ([d81826d](https://github.com/Vectreal/vectreal-platform/commit/d81826d4c8d416ac4e187d3300c5aa6d4eae4a0a))
224
+ * add scene metadata update functionality and enhance scene details UI ([58d0187](https://github.com/Vectreal/vectreal-platform/commit/58d01876a43c6dee1c087317873678083080d651))
225
+ * Add social sign-in route for Google and GitHub authentication ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
226
+ * add UI components ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
227
+ * add various asset files including icons, manifest, and browser config for improved web app support ([a53bc24](https://github.com/Vectreal/vectreal-platform/commit/a53bc2417c05626b25ffbfbc338bf824b5c62981))
228
+ * Create a basic dashboard page component ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
229
+ * Create logout route to handle user sign-out ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
230
+ * Create sign-in layout with social login options ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
231
+ * Create sign-up page with username, email, and password registration ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
232
+ * Create Supabase client for server-side requests ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
233
+ * enhance asset handling by integrating asset normalization and lookup functionality ([571eabf](https://github.com/Vectreal/vectreal-platform/commit/571eabf01865afb0d1a86014119bdc06ca9a32ec))
234
+ * enhance asset handling by integrating asset normalization and lookup functionality ([a802fee](https://github.com/Vectreal/vectreal-platform/commit/a802fee7fb28b8624928fe0bdf124852fb2e476b))
235
+ * enhance CI/CD workflows with quality gate and build steps ([b5ad615](https://github.com/Vectreal/vectreal-platform/commit/b5ad6156cb051d9b623f98a2b6ca589dbf5a89f2))
236
+ * enhance CI/CD workflows with quality gate and build steps ([1b7030b](https://github.com/Vectreal/vectreal-platform/commit/1b7030be629b5bffdf5a95ae05893950f76fac68))
237
+ * enhance deployment workflows and configurations for Cloud Run services, add caching and access control improvements ([249da35](https://github.com/Vectreal/vectreal-platform/commit/249da3514d827c1268fd52ef9989b22743f42b8a))
238
+ * enhance model optimization and texture handling ([089f27a](https://github.com/Vectreal/vectreal-platform/commit/089f27a29a7f4160d1c2fd6b7c3c8e0a14941033))
239
+ * enhance model optimization and texture handling ([a98bb0c](https://github.com/Vectreal/vectreal-platform/commit/a98bb0c2fa6cfdf123835be7c093175b2ba1ae5b))
240
+ * enhance model optimization hooks and UI components ([e90bb5d](https://github.com/Vectreal/vectreal-platform/commit/e90bb5d009ed7f3559427f604d3096867a4cce90))
241
+ * enhance project and scene management with new folder creation and content actions ([93df463](https://github.com/Vectreal/vectreal-platform/commit/93df463fbd4c615d6c5e19bb3c9188b689654bb2))
242
+ * enhance publish sidebar with scene and project ID handling, improve embed options, and add validation for saving and publishing ([a7146fe](https://github.com/Vectreal/vectreal-platform/commit/a7146febdd7adf49714add09f9b367bcaffcf315))
243
+ * enhance scene data handling with base64 encoding and optimize request management ([880007f](https://github.com/Vectreal/vectreal-platform/commit/880007feb3685b5849916dafe3aac2743b8123f2))
244
+ * enhance scene metadata handling and settings management ([8ffc99b](https://github.com/Vectreal/vectreal-platform/commit/8ffc99b2eabd7fd83c78c0b581c6cf8c7f7e1073))
245
+ * enhance shared components and utils, add mobile navigation for docs ([b424033](https://github.com/Vectreal/vectreal-platform/commit/b4240331d005009a424be6058fe4db152775b950))
246
+ * enhance texture optimization API with new request structure and error handling ([6ac4d16](https://github.com/Vectreal/vectreal-platform/commit/6ac4d16b120c2178b22528d4d7045615e468982d))
247
+ * first-run onboarding wizard + /docs site with Edit on GitHub ([15c48d9](https://github.com/Vectreal/vectreal-platform/commit/15c48d94eec13df39ee2077745e6e8f3d2aaa3e4))
248
+ * implement apply optimizations button in the sidebar with loading state ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
249
+ * Implement Asset Storage Service for managing GLTF scene assets in Google Cloud Storage ([d0761bc](https://github.com/Vectreal/vectreal-platform/commit/d0761bc689fd74d3ffdf9d29ec606a6264237e61))
250
+ * Implement authentication context and hooks for user management ([267f546](https://github.com/Vectreal/vectreal-platform/commit/267f54655f12ddeb9bf1dadcba911f40b85e46fa))
251
+ * Implement authentication layout with user redirection ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
252
+ * Implement email OTP confirmation route for user sign-up ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
253
+ * Implement hook for capturing scene screenshots in 3D environment ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
254
+ * Implement sign-in page with email and password authentication ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
255
+ * Implement theme session management with cookie storage ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
256
+ * implement utility functions for API responses and styling ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
257
+ * Optimize GLTF loading and model transformation processes for improved performance ([8060d9d](https://github.com/Vectreal/vectreal-platform/commit/8060d9ddd24651a0bac11058b5df563228f4a9bd))
258
+ * **packages/hooks:** add tetxure compression optimization ([41555ad](https://github.com/Vectreal/vectreal-platform/commit/41555ad10d6a25d01b02ea943e57eaaeafd7d90c))
259
+ * **packages/hooks:** advance on `use-optimize-model` hook ([0c0b57e](https://github.com/Vectreal/vectreal-platform/commit/0c0b57e8009026ea96c53a50e848b8a937cf2c5d))
260
+ * **packages/hooks:** optimize model and add normals optimization ([6f0bde1](https://github.com/Vectreal/vectreal-platform/commit/6f0bde1c5a47b9be555405f547cc186749c581fc))
261
+ * **packages/hooks:** rework optimizations hook integration ([2121bb5](https://github.com/Vectreal/vectreal-platform/commit/2121bb55edf0b2ac2f5ff7a16e1c166edfde0e6a))
262
+ * **packages/viewer:** update peer dependencies, add Storybook configuration, implement robust styling and remove postcss config files ([df8359a](https://github.com/Vectreal/vectreal-platform/commit/df8359a4824d265282634267683e8e4b007f423d))
263
+ * Refactor and enhance publisher settings components ([2a1eb68](https://github.com/Vectreal/vectreal-platform/commit/2a1eb687e157637d346a89f9ae97333e7265efcc))
264
+ * refactor authentication handling to use loadAuthenticatedSession and improve session management across dashboard routes ([e787c5d](https://github.com/Vectreal/vectreal-platform/commit/e787c5dd89f8855ff7af64289448f8e3763018b3))
265
+ * Refactor publisher layout and sidebar components ([2c43273](https://github.com/Vectreal/vectreal-platform/commit/2c43273b239a5d3f60de1d6b79cc417bea8154bf))
266
+ * refactor scene and asset handling with improved type definitions and payload resolution ([99e743b](https://github.com/Vectreal/vectreal-platform/commit/99e743b574c158c79af151c1465eb957df7a350a))
267
+ * refactor scene and asset handling, improve loading logic and UI components ([31e02bc](https://github.com/Vectreal/vectreal-platform/commit/31e02bc3914666c714c2e8af07d8e816e72cd817))
268
+ * Remove official-website in favor of vectreal-platform app ([e805770](https://github.com/Vectreal/vectreal-platform/commit/e805770e672100cb5c026e55f914587d543c3a27))
269
+ * Remove official-website in favor of vectreal-platform app ([#198](https://github.com/Vectreal/vectreal-platform/issues/198)) ([3c1019e](https://github.com/Vectreal/vectreal-platform/commit/3c1019ea1950ce1c99247c957e983078b563ce80))
270
+
271
+
272
+ ### Bug Fixes
273
+
274
+ * adjust ESLint configuration to ignore Storybook files and update Storybook main configuration ([a53bc24](https://github.com/Vectreal/vectreal-platform/commit/a53bc2417c05626b25ffbfbc338bf824b5c62981))
275
+ * Adjust routing for publisher layout to include optional sceneId parameter ([d0761bc](https://github.com/Vectreal/vectreal-platform/commit/d0761bc689fd74d3ffdf9d29ec606a6264237e61))
276
+ * **packages/hooks:** dependency externalization ([6364c5d](https://github.com/Vectreal/vectreal-platform/commit/6364c5d3a66461494e6c137815c5eaabebb831c4))
277
+ * **packages/hooks:** ensure buffers are converted to Uint8Array before adding to zip file ([4e1f99d](https://github.com/Vectreal/vectreal-platform/commit/4e1f99dcd54e45e2549df3ee6c0b3bda25b18a74))
278
+ * **packages/hooks:** export `use-export-model` from hooks package ([f00e75f](https://github.com/Vectreal/vectreal-platform/commit/f00e75ffd973137e137c0af9058967c004939a25))
279
+ * **packages/hooks:** loading of model buffer failed because of wrong types in development ([1c4e734](https://github.com/Vectreal/vectreal-platform/commit/1c4e7345984f1c751a04ea28b44d8151945dcafd))
280
+ * **packages/hooks:** optimize hook volumne + emission material extension registration ([6ec7915](https://github.com/Vectreal/vectreal-platform/commit/6ec79153d07d097df608d064ff0a16473a1fb1e7))
281
+ * **packages:** cross dependencies ([4fbe8b3](https://github.com/Vectreal/vectreal-platform/commit/4fbe8b3e07c09976758d7906a23a8780127b7479))
282
+ * **packages:** dependency management on build ([e25cade](https://github.com/Vectreal/vectreal-platform/commit/e25cade6e63e6a89b9913613eeeccc92c7b5ff6c))
283
+ * **packages:** update dependencies in `package.json` with eslint nx plugin ([1eab9b7](https://github.com/Vectreal/vectreal-platform/commit/1eab9b718b821d3292d90e8b0e6ee1c3f72175b2))
284
+ * update decodeBase64ToUint8Array return type and improve asset data handling in reconstructGltfFiles ([3aa7170](https://github.com/Vectreal/vectreal-platform/commit/3aa71709268f386fd3b49f966fc4f88a15647a2c))
285
+ * update sidebar layout and add close button for better user experience ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
286
+ * update types for optimization presets and ensure consistent prop usage ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
287
+
288
+
289
+ ### Dependencies
290
+
291
+ * The following workspace dependencies were updated
292
+ * dependencies
293
+ * @vctrl/core bumped to 0.10.0
294
+
295
+ ## [0.10.0](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.9.5...hooks-v0.10.0) (2026-04-02)
296
+
297
+
298
+ ### Features
299
+
300
+ * add advanced optimization panel with toggle settings for quantization, deduplication, and normals optimization ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
301
+ * Add authentication callback route for handling OAuth code exchange ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
302
+ * Add Google logo SVG asset ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
303
+ * add model exporter, loader, and optimizer modules as core package ([3725193](https://github.com/Vectreal/vectreal-platform/commit/372519345f5cd6d3d0be4011e7addd23e947202e))
304
+ * add new texture size option and enhance optimization panel ([f67f823](https://github.com/Vectreal/vectreal-platform/commit/f67f8237507b9caeb5dc0c9e1c25cfab2c6742a4))
305
+ * add platform app ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
306
+ * add publish sidebar components for embedding, saving, and sharing scenes ([c846642](https://github.com/Vectreal/vectreal-platform/commit/c846642585db690738d5a8a11a29981750ff9d23))
307
+ * Add publisher buttons for 3D model processing ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
308
+ * add scene asset utilities for URI normalization, MIME type detection, and base64 handling ([d81826d](https://github.com/Vectreal/vectreal-platform/commit/d81826d4c8d416ac4e187d3300c5aa6d4eae4a0a))
309
+ * add scene metadata update functionality and enhance scene details UI ([58d0187](https://github.com/Vectreal/vectreal-platform/commit/58d01876a43c6dee1c087317873678083080d651))
310
+ * Add social sign-in route for Google and GitHub authentication ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
311
+ * add UI components ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
312
+ * add various asset files including icons, manifest, and browser config for improved web app support ([a53bc24](https://github.com/Vectreal/vectreal-platform/commit/a53bc2417c05626b25ffbfbc338bf824b5c62981))
313
+ * Create a basic dashboard page component ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
314
+ * Create logout route to handle user sign-out ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
315
+ * Create sign-in layout with social login options ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
316
+ * Create sign-up page with username, email, and password registration ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
317
+ * Create Supabase client for server-side requests ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
318
+ * enhance asset handling by integrating asset normalization and lookup functionality ([571eabf](https://github.com/Vectreal/vectreal-platform/commit/571eabf01865afb0d1a86014119bdc06ca9a32ec))
319
+ * enhance asset handling by integrating asset normalization and lookup functionality ([a802fee](https://github.com/Vectreal/vectreal-platform/commit/a802fee7fb28b8624928fe0bdf124852fb2e476b))
320
+ * enhance CI/CD workflows with quality gate and build steps ([b5ad615](https://github.com/Vectreal/vectreal-platform/commit/b5ad6156cb051d9b623f98a2b6ca589dbf5a89f2))
321
+ * enhance CI/CD workflows with quality gate and build steps ([1b7030b](https://github.com/Vectreal/vectreal-platform/commit/1b7030be629b5bffdf5a95ae05893950f76fac68))
322
+ * enhance deployment workflows and configurations for Cloud Run services, add caching and access control improvements ([249da35](https://github.com/Vectreal/vectreal-platform/commit/249da3514d827c1268fd52ef9989b22743f42b8a))
323
+ * enhance model optimization and texture handling ([089f27a](https://github.com/Vectreal/vectreal-platform/commit/089f27a29a7f4160d1c2fd6b7c3c8e0a14941033))
324
+ * enhance model optimization and texture handling ([a98bb0c](https://github.com/Vectreal/vectreal-platform/commit/a98bb0c2fa6cfdf123835be7c093175b2ba1ae5b))
325
+ * enhance model optimization hooks and UI components ([e90bb5d](https://github.com/Vectreal/vectreal-platform/commit/e90bb5d009ed7f3559427f604d3096867a4cce90))
326
+ * enhance project and scene management with new folder creation and content actions ([93df463](https://github.com/Vectreal/vectreal-platform/commit/93df463fbd4c615d6c5e19bb3c9188b689654bb2))
327
+ * enhance publish sidebar with scene and project ID handling, improve embed options, and add validation for saving and publishing ([a7146fe](https://github.com/Vectreal/vectreal-platform/commit/a7146febdd7adf49714add09f9b367bcaffcf315))
328
+ * enhance scene data handling with base64 encoding and optimize request management ([880007f](https://github.com/Vectreal/vectreal-platform/commit/880007feb3685b5849916dafe3aac2743b8123f2))
329
+ * enhance scene metadata handling and settings management ([8ffc99b](https://github.com/Vectreal/vectreal-platform/commit/8ffc99b2eabd7fd83c78c0b581c6cf8c7f7e1073))
330
+ * enhance shared components and utils, add mobile navigation for docs ([b424033](https://github.com/Vectreal/vectreal-platform/commit/b4240331d005009a424be6058fe4db152775b950))
331
+ * enhance texture optimization API with new request structure and error handling ([6ac4d16](https://github.com/Vectreal/vectreal-platform/commit/6ac4d16b120c2178b22528d4d7045615e468982d))
332
+ * first-run onboarding wizard + /docs site with Edit on GitHub ([15c48d9](https://github.com/Vectreal/vectreal-platform/commit/15c48d94eec13df39ee2077745e6e8f3d2aaa3e4))
333
+ * implement apply optimizations button in the sidebar with loading state ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
334
+ * Implement Asset Storage Service for managing GLTF scene assets in Google Cloud Storage ([d0761bc](https://github.com/Vectreal/vectreal-platform/commit/d0761bc689fd74d3ffdf9d29ec606a6264237e61))
335
+ * Implement authentication context and hooks for user management ([267f546](https://github.com/Vectreal/vectreal-platform/commit/267f54655f12ddeb9bf1dadcba911f40b85e46fa))
336
+ * Implement authentication layout with user redirection ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
337
+ * Implement email OTP confirmation route for user sign-up ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
338
+ * Implement hook for capturing scene screenshots in 3D environment ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
339
+ * Implement sign-in page with email and password authentication ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
340
+ * Implement theme session management with cookie storage ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
341
+ * implement utility functions for API responses and styling ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
342
+ * Optimize GLTF loading and model transformation processes for improved performance ([8060d9d](https://github.com/Vectreal/vectreal-platform/commit/8060d9ddd24651a0bac11058b5df563228f4a9bd))
343
+ * **packages/hooks:** add tetxure compression optimization ([41555ad](https://github.com/Vectreal/vectreal-platform/commit/41555ad10d6a25d01b02ea943e57eaaeafd7d90c))
344
+ * **packages/hooks:** advance on `use-optimize-model` hook ([0c0b57e](https://github.com/Vectreal/vectreal-platform/commit/0c0b57e8009026ea96c53a50e848b8a937cf2c5d))
345
+ * **packages/hooks:** optimize model and add normals optimization ([6f0bde1](https://github.com/Vectreal/vectreal-platform/commit/6f0bde1c5a47b9be555405f547cc186749c581fc))
346
+ * **packages/hooks:** rework optimizations hook integration ([2121bb5](https://github.com/Vectreal/vectreal-platform/commit/2121bb55edf0b2ac2f5ff7a16e1c166edfde0e6a))
347
+ * **packages/viewer:** update peer dependencies, add Storybook configuration, implement robust styling and remove postcss config files ([df8359a](https://github.com/Vectreal/vectreal-platform/commit/df8359a4824d265282634267683e8e4b007f423d))
348
+ * Refactor and enhance publisher settings components ([2a1eb68](https://github.com/Vectreal/vectreal-platform/commit/2a1eb687e157637d346a89f9ae97333e7265efcc))
349
+ * refactor authentication handling to use loadAuthenticatedSession and improve session management across dashboard routes ([e787c5d](https://github.com/Vectreal/vectreal-platform/commit/e787c5dd89f8855ff7af64289448f8e3763018b3))
350
+ * Refactor publisher layout and sidebar components ([2c43273](https://github.com/Vectreal/vectreal-platform/commit/2c43273b239a5d3f60de1d6b79cc417bea8154bf))
351
+ * refactor scene and asset handling with improved type definitions and payload resolution ([99e743b](https://github.com/Vectreal/vectreal-platform/commit/99e743b574c158c79af151c1465eb957df7a350a))
352
+ * refactor scene and asset handling, improve loading logic and UI components ([31e02bc](https://github.com/Vectreal/vectreal-platform/commit/31e02bc3914666c714c2e8af07d8e816e72cd817))
353
+ * Remove official-website in favor of vectreal-platform app ([e805770](https://github.com/Vectreal/vectreal-platform/commit/e805770e672100cb5c026e55f914587d543c3a27))
354
+ * Remove official-website in favor of vectreal-platform app ([#198](https://github.com/Vectreal/vectreal-platform/issues/198)) ([3c1019e](https://github.com/Vectreal/vectreal-platform/commit/3c1019ea1950ce1c99247c957e983078b563ce80))
355
+
356
+
357
+ ### Bug Fixes
358
+
359
+ * adjust ESLint configuration to ignore Storybook files and update Storybook main configuration ([a53bc24](https://github.com/Vectreal/vectreal-platform/commit/a53bc2417c05626b25ffbfbc338bf824b5c62981))
360
+ * Adjust routing for publisher layout to include optional sceneId parameter ([d0761bc](https://github.com/Vectreal/vectreal-platform/commit/d0761bc689fd74d3ffdf9d29ec606a6264237e61))
361
+ * **packages/hooks:** dependency externalization ([6364c5d](https://github.com/Vectreal/vectreal-platform/commit/6364c5d3a66461494e6c137815c5eaabebb831c4))
362
+ * **packages/hooks:** ensure buffers are converted to Uint8Array before adding to zip file ([4e1f99d](https://github.com/Vectreal/vectreal-platform/commit/4e1f99dcd54e45e2549df3ee6c0b3bda25b18a74))
363
+ * **packages/hooks:** export `use-export-model` from hooks package ([f00e75f](https://github.com/Vectreal/vectreal-platform/commit/f00e75ffd973137e137c0af9058967c004939a25))
364
+ * **packages/hooks:** loading of model buffer failed because of wrong types in development ([1c4e734](https://github.com/Vectreal/vectreal-platform/commit/1c4e7345984f1c751a04ea28b44d8151945dcafd))
365
+ * **packages/hooks:** optimize hook volumne + emission material extension registration ([6ec7915](https://github.com/Vectreal/vectreal-platform/commit/6ec79153d07d097df608d064ff0a16473a1fb1e7))
366
+ * **packages/hooks:** use `saveAs` instead of custom utils function for saving file ([30d78c1](https://github.com/Vectreal/vectreal-platform/commit/30d78c1749551b13407af95ac231dff144d4d960))
367
+ * **packages/viewer:** change tailwind styling to css modules styling ([273ec59](https://github.com/Vectreal/vectreal-platform/commit/273ec59d928e7f9018a36727860fa9d362e0cece))
368
+ * **packages:** cross dependencies ([4fbe8b3](https://github.com/Vectreal/vectreal-platform/commit/4fbe8b3e07c09976758d7906a23a8780127b7479))
369
+ * **packages:** dependency management on build ([e25cade](https://github.com/Vectreal/vectreal-platform/commit/e25cade6e63e6a89b9913613eeeccc92c7b5ff6c))
370
+ * **packages:** update dependencies in `package.json` with eslint nx plugin ([1eab9b7](https://github.com/Vectreal/vectreal-platform/commit/1eab9b718b821d3292d90e8b0e6ee1c3f72175b2))
371
+ * update decodeBase64ToUint8Array return type and improve asset data handling in reconstructGltfFiles ([3aa7170](https://github.com/Vectreal/vectreal-platform/commit/3aa71709268f386fd3b49f966fc4f88a15647a2c))
372
+ * update sidebar layout and add close button for better user experience ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
373
+ * update types for optimization presets and ensure consistent prop usage ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
374
+
375
+
376
+ ### Dependencies
377
+
378
+ * The following workspace dependencies were updated
379
+ * dependencies
380
+ * @vctrl/core bumped to 0.10.0