@vctrl/hooks 0.9.4 → 0.11.1

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 +210 -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 +97 -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-Q5UJ5eb1.js +0 -1265
  31. package/GLTFExporter-ltc8rmzz.cjs +0 -18
  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-Du5WQddA.cjs +0 -9
  36. package/model-context-fEKN9ymq.js +0 -3443
  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-BfzYIkcD.cjs +0 -1
  44. package/use-export-model-ccF7tK6m.js +0 -76
  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-BXWR9d6e.js +0 -127
  68. package/use-optimize-model-EEn8K4nu.cjs +0 -1
  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,210 @@
1
+ # Changelog
2
+
3
+ ## [0.11.1](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.11.0...hooks-v0.11.1) (2026-04-02)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * Update repository URLs in package.json files to point to vectreal-platform ([07e2864](https://github.com/Vectreal/vectreal-platform/commit/07e28644fd331a3c85ce2bbde2dd8bac446546bf))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @vctrl/core bumped to 0.11.1
16
+
17
+ ## [0.11.0](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.10.1...hooks-v0.11.0) (2026-04-02)
18
+
19
+
20
+ ### Features
21
+
22
+ * Update package publishing process to use 'publish' target and add preflight checks ([ccfe373](https://github.com/Vectreal/vectreal-platform/commit/ccfe3736521555e3fd6f23334248dbc3251cbf98))
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @vctrl/core bumped to 0.11.0
30
+
31
+ ## [0.10.1](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.10.0...hooks-v0.10.1) (2026-04-02)
32
+
33
+
34
+ ### Dependencies
35
+
36
+ * The following workspace dependencies were updated
37
+ * dependencies
38
+ * @vctrl/core bumped to 0.10.1
39
+
40
+ ## [0.10.0](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.9.5...hooks-v0.10.0) (2026-04-02)
41
+
42
+
43
+ ### Features
44
+
45
+ * add advanced optimization panel with toggle settings for quantization, deduplication, and normals optimization ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
46
+ * Add authentication callback route for handling OAuth code exchange ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
47
+ * Add Google logo SVG asset ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
48
+ * add model exporter, loader, and optimizer modules as core package ([3725193](https://github.com/Vectreal/vectreal-platform/commit/372519345f5cd6d3d0be4011e7addd23e947202e))
49
+ * add new texture size option and enhance optimization panel ([f67f823](https://github.com/Vectreal/vectreal-platform/commit/f67f8237507b9caeb5dc0c9e1c25cfab2c6742a4))
50
+ * add platform app ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
51
+ * add publish sidebar components for embedding, saving, and sharing scenes ([c846642](https://github.com/Vectreal/vectreal-platform/commit/c846642585db690738d5a8a11a29981750ff9d23))
52
+ * Add publisher buttons for 3D model processing ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
53
+ * add scene asset utilities for URI normalization, MIME type detection, and base64 handling ([d81826d](https://github.com/Vectreal/vectreal-platform/commit/d81826d4c8d416ac4e187d3300c5aa6d4eae4a0a))
54
+ * add scene metadata update functionality and enhance scene details UI ([58d0187](https://github.com/Vectreal/vectreal-platform/commit/58d01876a43c6dee1c087317873678083080d651))
55
+ * Add social sign-in route for Google and GitHub authentication ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
56
+ * add UI components ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
57
+ * add various asset files including icons, manifest, and browser config for improved web app support ([a53bc24](https://github.com/Vectreal/vectreal-platform/commit/a53bc2417c05626b25ffbfbc338bf824b5c62981))
58
+ * Create a basic dashboard page component ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
59
+ * Create logout route to handle user sign-out ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
60
+ * Create sign-in layout with social login options ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
61
+ * Create sign-up page with username, email, and password registration ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
62
+ * Create Supabase client for server-side requests ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
63
+ * enhance asset handling by integrating asset normalization and lookup functionality ([571eabf](https://github.com/Vectreal/vectreal-platform/commit/571eabf01865afb0d1a86014119bdc06ca9a32ec))
64
+ * enhance asset handling by integrating asset normalization and lookup functionality ([a802fee](https://github.com/Vectreal/vectreal-platform/commit/a802fee7fb28b8624928fe0bdf124852fb2e476b))
65
+ * enhance CI/CD workflows with quality gate and build steps ([b5ad615](https://github.com/Vectreal/vectreal-platform/commit/b5ad6156cb051d9b623f98a2b6ca589dbf5a89f2))
66
+ * enhance CI/CD workflows with quality gate and build steps ([1b7030b](https://github.com/Vectreal/vectreal-platform/commit/1b7030be629b5bffdf5a95ae05893950f76fac68))
67
+ * enhance deployment workflows and configurations for Cloud Run services, add caching and access control improvements ([249da35](https://github.com/Vectreal/vectreal-platform/commit/249da3514d827c1268fd52ef9989b22743f42b8a))
68
+ * enhance model optimization and texture handling ([089f27a](https://github.com/Vectreal/vectreal-platform/commit/089f27a29a7f4160d1c2fd6b7c3c8e0a14941033))
69
+ * enhance model optimization and texture handling ([a98bb0c](https://github.com/Vectreal/vectreal-platform/commit/a98bb0c2fa6cfdf123835be7c093175b2ba1ae5b))
70
+ * enhance model optimization hooks and UI components ([e90bb5d](https://github.com/Vectreal/vectreal-platform/commit/e90bb5d009ed7f3559427f604d3096867a4cce90))
71
+ * enhance project and scene management with new folder creation and content actions ([93df463](https://github.com/Vectreal/vectreal-platform/commit/93df463fbd4c615d6c5e19bb3c9188b689654bb2))
72
+ * 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))
73
+ * enhance scene data handling with base64 encoding and optimize request management ([880007f](https://github.com/Vectreal/vectreal-platform/commit/880007feb3685b5849916dafe3aac2743b8123f2))
74
+ * enhance scene metadata handling and settings management ([8ffc99b](https://github.com/Vectreal/vectreal-platform/commit/8ffc99b2eabd7fd83c78c0b581c6cf8c7f7e1073))
75
+ * enhance shared components and utils, add mobile navigation for docs ([b424033](https://github.com/Vectreal/vectreal-platform/commit/b4240331d005009a424be6058fe4db152775b950))
76
+ * enhance texture optimization API with new request structure and error handling ([6ac4d16](https://github.com/Vectreal/vectreal-platform/commit/6ac4d16b120c2178b22528d4d7045615e468982d))
77
+ * first-run onboarding wizard + /docs site with Edit on GitHub ([15c48d9](https://github.com/Vectreal/vectreal-platform/commit/15c48d94eec13df39ee2077745e6e8f3d2aaa3e4))
78
+ * implement apply optimizations button in the sidebar with loading state ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
79
+ * Implement Asset Storage Service for managing GLTF scene assets in Google Cloud Storage ([d0761bc](https://github.com/Vectreal/vectreal-platform/commit/d0761bc689fd74d3ffdf9d29ec606a6264237e61))
80
+ * Implement authentication context and hooks for user management ([267f546](https://github.com/Vectreal/vectreal-platform/commit/267f54655f12ddeb9bf1dadcba911f40b85e46fa))
81
+ * Implement authentication layout with user redirection ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
82
+ * Implement email OTP confirmation route for user sign-up ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
83
+ * Implement hook for capturing scene screenshots in 3D environment ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
84
+ * Implement sign-in page with email and password authentication ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
85
+ * Implement theme session management with cookie storage ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
86
+ * implement utility functions for API responses and styling ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
87
+ * Optimize GLTF loading and model transformation processes for improved performance ([8060d9d](https://github.com/Vectreal/vectreal-platform/commit/8060d9ddd24651a0bac11058b5df563228f4a9bd))
88
+ * **packages/hooks:** add tetxure compression optimization ([41555ad](https://github.com/Vectreal/vectreal-platform/commit/41555ad10d6a25d01b02ea943e57eaaeafd7d90c))
89
+ * **packages/hooks:** advance on `use-optimize-model` hook ([0c0b57e](https://github.com/Vectreal/vectreal-platform/commit/0c0b57e8009026ea96c53a50e848b8a937cf2c5d))
90
+ * **packages/hooks:** optimize model and add normals optimization ([6f0bde1](https://github.com/Vectreal/vectreal-platform/commit/6f0bde1c5a47b9be555405f547cc186749c581fc))
91
+ * **packages/hooks:** rework optimizations hook integration ([2121bb5](https://github.com/Vectreal/vectreal-platform/commit/2121bb55edf0b2ac2f5ff7a16e1c166edfde0e6a))
92
+ * **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))
93
+ * Refactor and enhance publisher settings components ([2a1eb68](https://github.com/Vectreal/vectreal-platform/commit/2a1eb687e157637d346a89f9ae97333e7265efcc))
94
+ * refactor authentication handling to use loadAuthenticatedSession and improve session management across dashboard routes ([e787c5d](https://github.com/Vectreal/vectreal-platform/commit/e787c5dd89f8855ff7af64289448f8e3763018b3))
95
+ * Refactor publisher layout and sidebar components ([2c43273](https://github.com/Vectreal/vectreal-platform/commit/2c43273b239a5d3f60de1d6b79cc417bea8154bf))
96
+ * refactor scene and asset handling with improved type definitions and payload resolution ([99e743b](https://github.com/Vectreal/vectreal-platform/commit/99e743b574c158c79af151c1465eb957df7a350a))
97
+ * refactor scene and asset handling, improve loading logic and UI components ([31e02bc](https://github.com/Vectreal/vectreal-platform/commit/31e02bc3914666c714c2e8af07d8e816e72cd817))
98
+ * Remove official-website in favor of vectreal-platform app ([e805770](https://github.com/Vectreal/vectreal-platform/commit/e805770e672100cb5c026e55f914587d543c3a27))
99
+ * 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))
100
+
101
+
102
+ ### Bug Fixes
103
+
104
+ * adjust ESLint configuration to ignore Storybook files and update Storybook main configuration ([a53bc24](https://github.com/Vectreal/vectreal-platform/commit/a53bc2417c05626b25ffbfbc338bf824b5c62981))
105
+ * Adjust routing for publisher layout to include optional sceneId parameter ([d0761bc](https://github.com/Vectreal/vectreal-platform/commit/d0761bc689fd74d3ffdf9d29ec606a6264237e61))
106
+ * **packages/hooks:** dependency externalization ([6364c5d](https://github.com/Vectreal/vectreal-platform/commit/6364c5d3a66461494e6c137815c5eaabebb831c4))
107
+ * **packages/hooks:** ensure buffers are converted to Uint8Array before adding to zip file ([4e1f99d](https://github.com/Vectreal/vectreal-platform/commit/4e1f99dcd54e45e2549df3ee6c0b3bda25b18a74))
108
+ * **packages/hooks:** export `use-export-model` from hooks package ([f00e75f](https://github.com/Vectreal/vectreal-platform/commit/f00e75ffd973137e137c0af9058967c004939a25))
109
+ * **packages/hooks:** loading of model buffer failed because of wrong types in development ([1c4e734](https://github.com/Vectreal/vectreal-platform/commit/1c4e7345984f1c751a04ea28b44d8151945dcafd))
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:** dependency management on build ([e25cade](https://github.com/Vectreal/vectreal-platform/commit/e25cade6e63e6a89b9913613eeeccc92c7b5ff6c))
113
+ * **packages:** update dependencies in `package.json` with eslint nx plugin ([1eab9b7](https://github.com/Vectreal/vectreal-platform/commit/1eab9b718b821d3292d90e8b0e6ee1c3f72175b2))
114
+ * update decodeBase64ToUint8Array return type and improve asset data handling in reconstructGltfFiles ([3aa7170](https://github.com/Vectreal/vectreal-platform/commit/3aa71709268f386fd3b49f966fc4f88a15647a2c))
115
+ * update sidebar layout and add close button for better user experience ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
116
+ * update types for optimization presets and ensure consistent prop usage ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
117
+
118
+
119
+ ### Dependencies
120
+
121
+ * The following workspace dependencies were updated
122
+ * dependencies
123
+ * @vctrl/core bumped to 0.10.0
124
+
125
+ ## [0.10.0](https://github.com/Vectreal/vectreal-platform/compare/hooks-v0.9.5...hooks-v0.10.0) (2026-04-02)
126
+
127
+
128
+ ### Features
129
+
130
+ * add advanced optimization panel with toggle settings for quantization, deduplication, and normals optimization ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
131
+ * Add authentication callback route for handling OAuth code exchange ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
132
+ * Add Google logo SVG asset ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
133
+ * add model exporter, loader, and optimizer modules as core package ([3725193](https://github.com/Vectreal/vectreal-platform/commit/372519345f5cd6d3d0be4011e7addd23e947202e))
134
+ * add new texture size option and enhance optimization panel ([f67f823](https://github.com/Vectreal/vectreal-platform/commit/f67f8237507b9caeb5dc0c9e1c25cfab2c6742a4))
135
+ * add platform app ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
136
+ * add publish sidebar components for embedding, saving, and sharing scenes ([c846642](https://github.com/Vectreal/vectreal-platform/commit/c846642585db690738d5a8a11a29981750ff9d23))
137
+ * Add publisher buttons for 3D model processing ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
138
+ * add scene asset utilities for URI normalization, MIME type detection, and base64 handling ([d81826d](https://github.com/Vectreal/vectreal-platform/commit/d81826d4c8d416ac4e187d3300c5aa6d4eae4a0a))
139
+ * add scene metadata update functionality and enhance scene details UI ([58d0187](https://github.com/Vectreal/vectreal-platform/commit/58d01876a43c6dee1c087317873678083080d651))
140
+ * Add social sign-in route for Google and GitHub authentication ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
141
+ * add UI components ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
142
+ * add various asset files including icons, manifest, and browser config for improved web app support ([a53bc24](https://github.com/Vectreal/vectreal-platform/commit/a53bc2417c05626b25ffbfbc338bf824b5c62981))
143
+ * Create a basic dashboard page component ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
144
+ * Create logout route to handle user sign-out ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
145
+ * Create sign-in layout with social login options ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
146
+ * Create sign-up page with username, email, and password registration ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
147
+ * Create Supabase client for server-side requests ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
148
+ * enhance asset handling by integrating asset normalization and lookup functionality ([571eabf](https://github.com/Vectreal/vectreal-platform/commit/571eabf01865afb0d1a86014119bdc06ca9a32ec))
149
+ * enhance asset handling by integrating asset normalization and lookup functionality ([a802fee](https://github.com/Vectreal/vectreal-platform/commit/a802fee7fb28b8624928fe0bdf124852fb2e476b))
150
+ * enhance CI/CD workflows with quality gate and build steps ([b5ad615](https://github.com/Vectreal/vectreal-platform/commit/b5ad6156cb051d9b623f98a2b6ca589dbf5a89f2))
151
+ * enhance CI/CD workflows with quality gate and build steps ([1b7030b](https://github.com/Vectreal/vectreal-platform/commit/1b7030be629b5bffdf5a95ae05893950f76fac68))
152
+ * enhance deployment workflows and configurations for Cloud Run services, add caching and access control improvements ([249da35](https://github.com/Vectreal/vectreal-platform/commit/249da3514d827c1268fd52ef9989b22743f42b8a))
153
+ * enhance model optimization and texture handling ([089f27a](https://github.com/Vectreal/vectreal-platform/commit/089f27a29a7f4160d1c2fd6b7c3c8e0a14941033))
154
+ * enhance model optimization and texture handling ([a98bb0c](https://github.com/Vectreal/vectreal-platform/commit/a98bb0c2fa6cfdf123835be7c093175b2ba1ae5b))
155
+ * enhance model optimization hooks and UI components ([e90bb5d](https://github.com/Vectreal/vectreal-platform/commit/e90bb5d009ed7f3559427f604d3096867a4cce90))
156
+ * enhance project and scene management with new folder creation and content actions ([93df463](https://github.com/Vectreal/vectreal-platform/commit/93df463fbd4c615d6c5e19bb3c9188b689654bb2))
157
+ * 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))
158
+ * enhance scene data handling with base64 encoding and optimize request management ([880007f](https://github.com/Vectreal/vectreal-platform/commit/880007feb3685b5849916dafe3aac2743b8123f2))
159
+ * enhance scene metadata handling and settings management ([8ffc99b](https://github.com/Vectreal/vectreal-platform/commit/8ffc99b2eabd7fd83c78c0b581c6cf8c7f7e1073))
160
+ * enhance shared components and utils, add mobile navigation for docs ([b424033](https://github.com/Vectreal/vectreal-platform/commit/b4240331d005009a424be6058fe4db152775b950))
161
+ * enhance texture optimization API with new request structure and error handling ([6ac4d16](https://github.com/Vectreal/vectreal-platform/commit/6ac4d16b120c2178b22528d4d7045615e468982d))
162
+ * first-run onboarding wizard + /docs site with Edit on GitHub ([15c48d9](https://github.com/Vectreal/vectreal-platform/commit/15c48d94eec13df39ee2077745e6e8f3d2aaa3e4))
163
+ * implement apply optimizations button in the sidebar with loading state ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
164
+ * Implement Asset Storage Service for managing GLTF scene assets in Google Cloud Storage ([d0761bc](https://github.com/Vectreal/vectreal-platform/commit/d0761bc689fd74d3ffdf9d29ec606a6264237e61))
165
+ * Implement authentication context and hooks for user management ([267f546](https://github.com/Vectreal/vectreal-platform/commit/267f54655f12ddeb9bf1dadcba911f40b85e46fa))
166
+ * Implement authentication layout with user redirection ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
167
+ * Implement email OTP confirmation route for user sign-up ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
168
+ * Implement hook for capturing scene screenshots in 3D environment ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
169
+ * Implement sign-in page with email and password authentication ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
170
+ * Implement theme session management with cookie storage ([64bd29c](https://github.com/Vectreal/vectreal-platform/commit/64bd29cc0ad178ddf4057e6b5da7fde5a2af504a))
171
+ * implement utility functions for API responses and styling ([5a42716](https://github.com/Vectreal/vectreal-platform/commit/5a427161eb1757187ced8f4e590abe373fb131ea))
172
+ * Optimize GLTF loading and model transformation processes for improved performance ([8060d9d](https://github.com/Vectreal/vectreal-platform/commit/8060d9ddd24651a0bac11058b5df563228f4a9bd))
173
+ * **packages/hooks:** add tetxure compression optimization ([41555ad](https://github.com/Vectreal/vectreal-platform/commit/41555ad10d6a25d01b02ea943e57eaaeafd7d90c))
174
+ * **packages/hooks:** advance on `use-optimize-model` hook ([0c0b57e](https://github.com/Vectreal/vectreal-platform/commit/0c0b57e8009026ea96c53a50e848b8a937cf2c5d))
175
+ * **packages/hooks:** optimize model and add normals optimization ([6f0bde1](https://github.com/Vectreal/vectreal-platform/commit/6f0bde1c5a47b9be555405f547cc186749c581fc))
176
+ * **packages/hooks:** rework optimizations hook integration ([2121bb5](https://github.com/Vectreal/vectreal-platform/commit/2121bb55edf0b2ac2f5ff7a16e1c166edfde0e6a))
177
+ * **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))
178
+ * Refactor and enhance publisher settings components ([2a1eb68](https://github.com/Vectreal/vectreal-platform/commit/2a1eb687e157637d346a89f9ae97333e7265efcc))
179
+ * refactor authentication handling to use loadAuthenticatedSession and improve session management across dashboard routes ([e787c5d](https://github.com/Vectreal/vectreal-platform/commit/e787c5dd89f8855ff7af64289448f8e3763018b3))
180
+ * Refactor publisher layout and sidebar components ([2c43273](https://github.com/Vectreal/vectreal-platform/commit/2c43273b239a5d3f60de1d6b79cc417bea8154bf))
181
+ * refactor scene and asset handling with improved type definitions and payload resolution ([99e743b](https://github.com/Vectreal/vectreal-platform/commit/99e743b574c158c79af151c1465eb957df7a350a))
182
+ * refactor scene and asset handling, improve loading logic and UI components ([31e02bc](https://github.com/Vectreal/vectreal-platform/commit/31e02bc3914666c714c2e8af07d8e816e72cd817))
183
+ * Remove official-website in favor of vectreal-platform app ([e805770](https://github.com/Vectreal/vectreal-platform/commit/e805770e672100cb5c026e55f914587d543c3a27))
184
+ * 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))
185
+
186
+
187
+ ### Bug Fixes
188
+
189
+ * adjust ESLint configuration to ignore Storybook files and update Storybook main configuration ([a53bc24](https://github.com/Vectreal/vectreal-platform/commit/a53bc2417c05626b25ffbfbc338bf824b5c62981))
190
+ * Adjust routing for publisher layout to include optional sceneId parameter ([d0761bc](https://github.com/Vectreal/vectreal-platform/commit/d0761bc689fd74d3ffdf9d29ec606a6264237e61))
191
+ * **packages/hooks:** dependency externalization ([6364c5d](https://github.com/Vectreal/vectreal-platform/commit/6364c5d3a66461494e6c137815c5eaabebb831c4))
192
+ * **packages/hooks:** ensure buffers are converted to Uint8Array before adding to zip file ([4e1f99d](https://github.com/Vectreal/vectreal-platform/commit/4e1f99dcd54e45e2549df3ee6c0b3bda25b18a74))
193
+ * **packages/hooks:** export `use-export-model` from hooks package ([f00e75f](https://github.com/Vectreal/vectreal-platform/commit/f00e75ffd973137e137c0af9058967c004939a25))
194
+ * **packages/hooks:** loading of model buffer failed because of wrong types in development ([1c4e734](https://github.com/Vectreal/vectreal-platform/commit/1c4e7345984f1c751a04ea28b44d8151945dcafd))
195
+ * **packages/hooks:** optimize hook volumne + emission material extension registration ([6ec7915](https://github.com/Vectreal/vectreal-platform/commit/6ec79153d07d097df608d064ff0a16473a1fb1e7))
196
+ * **packages/hooks:** use `saveAs` instead of custom utils function for saving file ([30d78c1](https://github.com/Vectreal/vectreal-platform/commit/30d78c1749551b13407af95ac231dff144d4d960))
197
+ * **packages/viewer:** change tailwind styling to css modules styling ([273ec59](https://github.com/Vectreal/vectreal-platform/commit/273ec59d928e7f9018a36727860fa9d362e0cece))
198
+ * **packages:** cross dependencies ([4fbe8b3](https://github.com/Vectreal/vectreal-platform/commit/4fbe8b3e07c09976758d7906a23a8780127b7479))
199
+ * **packages:** dependency management on build ([e25cade](https://github.com/Vectreal/vectreal-platform/commit/e25cade6e63e6a89b9913613eeeccc92c7b5ff6c))
200
+ * **packages:** update dependencies in `package.json` with eslint nx plugin ([1eab9b7](https://github.com/Vectreal/vectreal-platform/commit/1eab9b718b821d3292d90e8b0e6ee1c3f72175b2))
201
+ * update decodeBase64ToUint8Array return type and improve asset data handling in reconstructGltfFiles ([3aa7170](https://github.com/Vectreal/vectreal-platform/commit/3aa71709268f386fd3b49f966fc4f88a15647a2c))
202
+ * update sidebar layout and add close button for better user experience ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
203
+ * update types for optimization presets and ensure consistent prop usage ([75d004e](https://github.com/Vectreal/vectreal-platform/commit/75d004e1b71009e1a8cffbf5e846d56d8d3d6ddc))
204
+
205
+
206
+ ### Dependencies
207
+
208
+ * The following workspace dependencies were updated
209
+ * dependencies
210
+ * @vctrl/core bumped to 0.10.0