@pascal-app/editor 0.7.0 → 0.9.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 (244) hide show
  1. package/package.json +12 -13
  2. package/src/components/editor/alignment-3d-guide-layer.tsx +160 -0
  3. package/src/components/editor/custom-camera-controls.tsx +755 -25
  4. package/src/components/editor/editor-layout-mobile.tsx +3 -3
  5. package/src/components/editor/editor-layout-v2.tsx +62 -54
  6. package/src/components/editor/export-manager.tsx +32 -3
  7. package/src/components/editor/first-person/build-collider-world.test.ts +149 -0
  8. package/src/components/editor/first-person/build-collider-world.ts +203 -87
  9. package/src/components/editor/first-person/bvh-ecctrl.tsx +127 -62
  10. package/src/components/editor/first-person-controls.tsx +836 -31
  11. package/src/components/editor/floating-action-menu.tsx +287 -196
  12. package/src/components/editor/floating-building-action-menu.tsx +1 -1
  13. package/src/components/editor/floorplan-panel.tsx +5837 -12006
  14. package/src/components/editor/grid.tsx +51 -17
  15. package/src/components/editor/group-move-handle.tsx +316 -0
  16. package/src/components/editor/group-rotate-handle.tsx +382 -0
  17. package/src/components/editor/group-transform-shared.test.ts +205 -0
  18. package/src/components/editor/group-transform-shared.ts +256 -0
  19. package/src/components/editor/handles/handle-arrow.tsx +523 -0
  20. package/src/components/editor/handles/use-handle-drag.ts +213 -0
  21. package/src/components/editor/index.tsx +234 -190
  22. package/src/components/editor/measurement-pill.tsx +75 -0
  23. package/src/components/editor/node-arrow-handles.tsx +1453 -0
  24. package/src/components/editor/selection-manager.tsx +435 -158
  25. package/src/components/editor/site-edge-labels.tsx +44 -20
  26. package/src/components/editor/slab-hole-highlights.tsx +466 -0
  27. package/src/components/editor/snapshot-capture-overlay.tsx +539 -0
  28. package/src/components/editor/thumbnail-generator.tsx +27 -64
  29. package/src/components/editor/use-floorplan-background-placement.ts +122 -35
  30. package/src/components/editor/use-floorplan-hit-testing.ts +24 -0
  31. package/src/components/editor/use-floorplan-scene-data.ts +14 -2
  32. package/src/components/editor/wall-measurement-label.tsx +11 -6
  33. package/src/components/editor/wall-move-side-handles.tsx +855 -0
  34. package/src/components/editor/wall-opening-highlights.tsx +181 -0
  35. package/src/components/editor/wall-snap-beacon-layer.tsx +150 -0
  36. package/src/components/editor-2d/floorplan-action-menu-layer.tsx +6 -1
  37. package/src/components/editor-2d/floorplan-alignment-guide-layer.tsx +142 -0
  38. package/src/components/editor-2d/floorplan-cursor-indicator-overlay.tsx +5 -3
  39. package/src/components/editor-2d/floorplan-registry-action-menu.tsx +227 -0
  40. package/src/components/editor-2d/floorplan-registry-move-overlay.tsx +616 -0
  41. package/src/components/editor-2d/floorplan-render-context.tsx +62 -0
  42. package/src/components/editor-2d/floorplan-snap-beacon-layer.tsx +75 -0
  43. package/src/components/editor-2d/floorplan-wall-move-ghost-layer.tsx +47 -0
  44. package/src/components/editor-2d/renderers/floorplan-draft-layer.tsx +6 -1
  45. package/src/components/editor-2d/renderers/floorplan-geometry-renderer.tsx +266 -0
  46. package/src/components/editor-2d/renderers/floorplan-measurements-layer.tsx +108 -61
  47. package/src/components/editor-2d/renderers/floorplan-placement-preview-layer.tsx +59 -0
  48. package/src/components/editor-2d/renderers/floorplan-registry-layer.tsx +1963 -0
  49. package/src/components/editor-2d/renderers/floorplan-stair-layer.tsx +29 -14
  50. package/src/components/editor-2d/svg-paths.ts +10 -2
  51. package/src/components/systems/ceiling/ceiling-selection-affordance-system.tsx +30 -9
  52. package/src/components/systems/ceiling/ceiling-system.tsx +12 -8
  53. package/src/components/systems/roof/roof-edit-system.tsx +86 -12
  54. package/src/components/systems/stair/stair-edit-system.tsx +2 -2
  55. package/src/components/systems/zone/zone-label-editor-system.tsx +0 -0
  56. package/src/components/systems/zone/zone-system.tsx +0 -0
  57. package/src/components/tools/elevator/elevator-defaults.ts +8 -0
  58. package/src/components/tools/elevator/elevator-tool.tsx +349 -0
  59. package/src/components/tools/elevator/move-elevator-tool.tsx +252 -0
  60. package/src/components/tools/fence/fence-drafting.ts +64 -22
  61. package/src/components/tools/item/move-tool.tsx +40 -107
  62. package/src/components/tools/item/placement-math.test.ts +10 -0
  63. package/src/components/tools/item/placement-math.ts +33 -9
  64. package/src/components/tools/item/placement-strategies.ts +201 -25
  65. package/src/components/tools/item/placement-types.ts +10 -1
  66. package/src/components/tools/item/use-draft-node.ts +20 -2
  67. package/src/components/tools/item/use-placement-coordinator.tsx +700 -299
  68. package/src/components/tools/registry/move-registry-node-tool.tsx +602 -0
  69. package/src/components/tools/roof/roof-tool.tsx +108 -12
  70. package/src/components/tools/select/box-select-state.ts +77 -0
  71. package/src/components/tools/select/box-select-tool.tsx +324 -543
  72. package/src/components/tools/select/plane-box-select-tool.tsx +577 -0
  73. package/src/components/tools/select/screen-rectangle-selection.ts +84 -0
  74. package/src/components/tools/select/select-candidates.test.ts +109 -0
  75. package/src/components/tools/select/select-candidates.ts +85 -0
  76. package/src/components/tools/shared/affordance-dispatch.ts +30 -0
  77. package/src/components/tools/shared/drag-bounding-box.tsx +171 -0
  78. package/src/components/tools/shared/floor-stack-preview.ts +25 -0
  79. package/src/components/tools/shared/fresh-placement-visibility.ts +61 -0
  80. package/src/components/tools/shared/placement-box-geometry.ts +123 -0
  81. package/src/components/tools/shared/placement-box.tsx +123 -0
  82. package/src/components/tools/shared/polygon-editor.tsx +617 -167
  83. package/src/components/tools/shared/segment-angle.ts +57 -1
  84. package/src/components/tools/site/site-boundary-editor.tsx +464 -12
  85. package/src/components/tools/site/site-flag-model.ts +18 -0
  86. package/src/components/tools/stair/stair-defaults.ts +1 -1
  87. package/src/components/tools/stair/stair-tool.tsx +269 -35
  88. package/src/components/tools/tool-manager.tsx +172 -56
  89. package/src/components/tools/wall/wall-drafting.ts +98 -98
  90. package/src/components/tools/wall/wall-snap-geometry.test.ts +79 -0
  91. package/src/components/tools/wall/wall-snap-geometry.ts +270 -0
  92. package/src/components/tools/zone/zone-tool.tsx +36 -11
  93. package/src/components/ui/action-menu/action-button.tsx +21 -1
  94. package/src/components/ui/action-menu/camera-actions.tsx +0 -0
  95. package/src/components/ui/action-menu/control-modes.tsx +5 -76
  96. package/src/components/ui/action-menu/furnish-tools.tsx +6 -92
  97. package/src/components/ui/action-menu/index.tsx +33 -196
  98. package/src/components/ui/action-menu/structure-tools.tsx +13 -88
  99. package/src/components/ui/action-menu/view-toggles.tsx +262 -37
  100. package/src/components/ui/command-palette/editor-commands.tsx +24 -17
  101. package/src/components/ui/command-palette/index.tsx +6 -256
  102. package/src/components/ui/controls/material-paint-panel.tsx +83 -0
  103. package/src/components/ui/controls/material-picker.tsx +17 -35
  104. package/src/components/ui/controls/metric-control.tsx +33 -11
  105. package/src/components/ui/floating-level-selector.tsx +48 -11
  106. package/src/components/ui/helpers/helper-manager.tsx +21 -17
  107. package/src/components/ui/helpers/registered-tool-helper.tsx +25 -0
  108. package/src/components/ui/item-catalog/catalog-items.tsx +1743 -315
  109. package/src/components/ui/item-catalog/item-catalog.tsx +91 -46
  110. package/src/components/ui/level-duplicate-dialog.tsx +5 -6
  111. package/src/components/ui/panels/node-display.ts +1 -0
  112. package/src/components/ui/panels/paint-panel.tsx +66 -41
  113. package/src/components/ui/panels/panel-manager.tsx +33 -74
  114. package/src/components/ui/panels/panel-wrapper.tsx +217 -12
  115. package/src/components/ui/panels/parametric-inspector.tsx +469 -0
  116. package/src/components/ui/panels/reference-panel.tsx +28 -13
  117. package/src/components/ui/primitives/dropdown-menu.tsx +12 -8
  118. package/src/components/ui/primitives/number-input.tsx +1 -1
  119. package/src/components/ui/primitives/sidebar.tsx +0 -0
  120. package/src/components/ui/scene-loader.tsx +1 -3
  121. package/src/components/ui/sidebar/app-sidebar.tsx +0 -0
  122. package/src/components/ui/sidebar/icon-rail.tsx +0 -0
  123. package/src/components/ui/sidebar/panels/items-panel/function-tree-panel.tsx +263 -0
  124. package/src/components/ui/sidebar/panels/items-panel/index.tsx +404 -0
  125. package/src/components/ui/sidebar/panels/settings-panel/index.tsx +59 -9
  126. package/src/components/ui/sidebar/panels/settings-panel/keyboard-shortcuts-dialog.tsx +6 -1
  127. package/src/components/ui/sidebar/panels/settings-panel/load-build-dialog.tsx +259 -0
  128. package/src/components/ui/sidebar/panels/site-panel/building-tree-node.tsx +3 -1
  129. package/src/components/ui/sidebar/panels/site-panel/ceiling-tree-node.tsx +5 -2
  130. package/src/components/ui/sidebar/panels/site-panel/chimney-tree-node.tsx +83 -0
  131. package/src/components/ui/sidebar/panels/site-panel/dormer-tree-node.tsx +89 -0
  132. package/src/components/ui/sidebar/panels/site-panel/elevator-tree-node.tsx +75 -0
  133. package/src/components/ui/sidebar/panels/site-panel/fence-tree-node.tsx +2 -2
  134. package/src/components/ui/sidebar/panels/site-panel/gutter-tree-node.tsx +83 -0
  135. package/src/components/ui/sidebar/panels/site-panel/index.tsx +8 -12
  136. package/src/components/ui/sidebar/panels/site-panel/level-tree-node.tsx +2 -1
  137. package/src/components/ui/sidebar/panels/site-panel/registry-tree-node.tsx +93 -0
  138. package/src/components/ui/sidebar/panels/site-panel/roof-tree-node.tsx +41 -5
  139. package/src/components/ui/sidebar/panels/site-panel/shelf-tree-node.tsx +128 -0
  140. package/src/components/ui/sidebar/panels/site-panel/slab-tree-node.tsx +5 -2
  141. package/src/components/ui/sidebar/panels/site-panel/solar-panel-tree-node.tsx +83 -0
  142. package/src/components/ui/sidebar/panels/site-panel/spawn-tree-node.tsx +1 -1
  143. package/src/components/ui/sidebar/panels/site-panel/tree-node.tsx +68 -34
  144. package/src/components/ui/sidebar/panels/site-panel/zone-tree-node.tsx +3 -1
  145. package/src/components/ui/sidebar/panels/zone-panel/index.tsx +52 -3
  146. package/src/components/ui/sidebar/tab-bar.tsx +61 -1
  147. package/src/components/ui/slider.tsx +1 -1
  148. package/src/components/viewer-overlay.tsx +169 -52
  149. package/src/components/viewer-zone-system.tsx +1 -1
  150. package/src/hooks/use-auto-save.ts +24 -3
  151. package/src/hooks/use-ceiling-events.ts +175 -0
  152. package/src/hooks/use-drag-action.ts +124 -0
  153. package/src/hooks/use-keyboard.ts +125 -62
  154. package/src/hooks/use-selection.ts +64 -0
  155. package/src/index.tsx +243 -4
  156. package/src/lib/constants.ts +6 -2
  157. package/src/lib/editor-api.ts +62 -0
  158. package/src/lib/elevator-support.ts +96 -0
  159. package/src/lib/floorplan/apply-alignment.ts +111 -0
  160. package/src/lib/floorplan/index.ts +7 -0
  161. package/src/lib/floorplan/selection-tool.ts +40 -0
  162. package/src/lib/floorplan/stairs.ts +12 -1
  163. package/src/lib/fresh-planar-placement.test.ts +102 -0
  164. package/src/lib/fresh-planar-placement.ts +63 -0
  165. package/src/lib/history.ts +2 -1
  166. package/src/lib/level-duplication.test.ts +0 -2
  167. package/src/lib/level-duplication.ts +55 -43
  168. package/src/lib/level-name.ts +11 -0
  169. package/src/lib/material-paint.ts +212 -20
  170. package/src/lib/placement-metadata.ts +29 -0
  171. package/src/lib/planar-cursor-placement.test.ts +43 -0
  172. package/src/lib/planar-cursor-placement.ts +42 -0
  173. package/src/lib/roof-duplication.ts +2 -2
  174. package/src/lib/scene-bounds.ts +1 -1
  175. package/src/lib/scene-clipboard.ts +267 -0
  176. package/src/lib/scene.ts +13 -4
  177. package/src/lib/sfx-bus.ts +25 -1
  178. package/src/lib/sfx-player.ts +75 -27
  179. package/src/lib/site-boundary.ts +1 -0
  180. package/src/lib/stair-duplication.ts +2 -2
  181. package/src/lib/stair-levels.test.ts +146 -0
  182. package/src/lib/stair-levels.ts +177 -0
  183. package/src/lib/world-grid-snap.ts +199 -0
  184. package/src/lib/zone-content.ts +130 -0
  185. package/src/store/use-alignment-guides.ts +21 -0
  186. package/src/store/use-editor.tsx +342 -91
  187. package/src/store/use-placement-preview.ts +31 -0
  188. package/src/store/use-wall-move-ghosts.ts +36 -0
  189. package/src/store/use-wall-snap-indicator.ts +32 -0
  190. package/tsconfig.json +2 -1
  191. package/src/components/editor/preset-thumbnail-generator.tsx +0 -125
  192. package/src/components/editor-2d/renderers/floorplan-roof-layer.tsx +0 -113
  193. package/src/components/feedback-dialog.tsx +0 -265
  194. package/src/components/pascal-radio.tsx +0 -280
  195. package/src/components/preview-button.tsx +0 -16
  196. package/src/components/tools/building/move-building-tool.tsx +0 -157
  197. package/src/components/tools/ceiling/ceiling-boundary-editor.tsx +0 -43
  198. package/src/components/tools/ceiling/ceiling-hole-editor.tsx +0 -49
  199. package/src/components/tools/ceiling/ceiling-tool.tsx +0 -465
  200. package/src/components/tools/ceiling/move-ceiling-tool.tsx +0 -257
  201. package/src/components/tools/column/column-tool.tsx +0 -97
  202. package/src/components/tools/column/move-column-tool.tsx +0 -105
  203. package/src/components/tools/door/door-math.ts +0 -110
  204. package/src/components/tools/door/door-tool.tsx +0 -324
  205. package/src/components/tools/door/move-door-tool.tsx +0 -412
  206. package/src/components/tools/fence/curve-fence-tool.tsx +0 -179
  207. package/src/components/tools/fence/fence-tool.tsx +0 -346
  208. package/src/components/tools/fence/move-fence-endpoint-tool.tsx +0 -438
  209. package/src/components/tools/fence/move-fence-tool.tsx +0 -298
  210. package/src/components/tools/item/item-tool.tsx +0 -26
  211. package/src/components/tools/roof/move-roof-tool.tsx +0 -359
  212. package/src/components/tools/slab/move-slab-tool.tsx +0 -182
  213. package/src/components/tools/slab/slab-boundary-editor.tsx +0 -43
  214. package/src/components/tools/slab/slab-hole-editor.tsx +0 -49
  215. package/src/components/tools/slab/slab-tool.tsx +0 -322
  216. package/src/components/tools/spawn/move-spawn-tool.tsx +0 -101
  217. package/src/components/tools/spawn/spawn-tool.tsx +0 -130
  218. package/src/components/tools/wall/curve-wall-tool.tsx +0 -176
  219. package/src/components/tools/wall/move-wall-endpoint-tool.tsx +0 -423
  220. package/src/components/tools/wall/move-wall-tool.tsx +0 -356
  221. package/src/components/tools/wall/wall-tool.tsx +0 -332
  222. package/src/components/tools/window/move-window-tool.tsx +0 -447
  223. package/src/components/tools/window/window-math.ts +0 -117
  224. package/src/components/tools/window/window-tool.tsx +0 -332
  225. package/src/components/ui/helpers/ceiling-helper.tsx +0 -20
  226. package/src/components/ui/helpers/slab-helper.tsx +0 -20
  227. package/src/components/ui/helpers/wall-helper.tsx +0 -20
  228. package/src/components/ui/panels/ceiling-panel.tsx +0 -250
  229. package/src/components/ui/panels/column-panel.tsx +0 -715
  230. package/src/components/ui/panels/door-panel.tsx +0 -1292
  231. package/src/components/ui/panels/fence-panel.tsx +0 -227
  232. package/src/components/ui/panels/item-panel.tsx +0 -306
  233. package/src/components/ui/panels/presets/presets-popover.tsx +0 -511
  234. package/src/components/ui/panels/roof-panel.tsx +0 -230
  235. package/src/components/ui/panels/roof-segment-panel.tsx +0 -311
  236. package/src/components/ui/panels/slab-panel.tsx +0 -250
  237. package/src/components/ui/panels/spawn-panel.tsx +0 -155
  238. package/src/components/ui/panels/stair-panel.tsx +0 -525
  239. package/src/components/ui/panels/stair-segment-panel.tsx +0 -325
  240. package/src/components/ui/panels/wall-panel.tsx +0 -177
  241. package/src/components/ui/panels/window-panel.tsx +0 -960
  242. package/src/components/ui/viewer-toolbar.tsx +0 -436
  243. package/src/contexts/presets-context.tsx +0 -121
  244. package/src/hooks/use-contextual-tools.ts +0 -61
@@ -5,10 +5,26 @@ export const CATALOG_ITEMS: AssetInput[] = [
5
5
  id: 'cactus',
6
6
  category: 'furniture',
7
7
  name: 'Cactus',
8
- tags: ['cactus', 'rack', 'stand', 'hanger', 'sculpture', 'decor', 'modern', 'contemporary', 'pop', 'green', 'organizer', 'storage', 'sculptural'],
9
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/cactus/thumbnail.png',
8
+ tags: [
9
+ 'cactus',
10
+ 'rack',
11
+ 'stand',
12
+ 'hanger',
13
+ 'sculpture',
14
+ 'decor',
15
+ 'modern',
16
+ 'contemporary',
17
+ 'pop',
18
+ 'green',
19
+ 'organizer',
20
+ 'storage',
21
+ 'sculptural',
22
+ ],
23
+ thumbnail:
24
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/cactus/thumbnail.png',
10
25
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/cactus/model.glb',
11
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/cactus/floor-plan.png',
26
+ floorPlanUrl:
27
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/cactus/floor-plan.png',
12
28
  dimensions: [0.34, 0.39, 0.27],
13
29
  offset: [-0.0039, 0, 0],
14
30
  rotation: [0, 0, 0],
@@ -19,9 +35,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
19
35
  category: 'furniture',
20
36
  name: 'TV Stand',
21
37
  tags: ['floor', 'storage'],
22
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tv-stand/thumbnail.png',
38
+ thumbnail:
39
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tv-stand/thumbnail.png',
23
40
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tv-stand/model.glb',
24
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tv-stand/floor-plan.png',
41
+ floorPlanUrl:
42
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tv-stand/floor-plan.png',
25
43
  dimensions: [1.86, 0.35, 0.32],
26
44
  offset: [0, 0.2066, 0],
27
45
  rotation: [0, 0, 0],
@@ -32,10 +50,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
32
50
  id: 'dining-table-mo9ms5yh',
33
51
  category: 'furniture',
34
52
  name: 'Dining table',
35
- tags: ['dining', 'table', 'dinette', 'wood', 'oak', 'modern', 'minimalist', 'scandinavian', 'rectangular', 'kitchen', 'mealtime', 'entertaining'],
36
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-table-mo9ms5yh/thumbnail.png',
53
+ tags: [
54
+ 'dining',
55
+ 'table',
56
+ 'dinette',
57
+ 'wood',
58
+ 'oak',
59
+ 'modern',
60
+ 'minimalist',
61
+ 'scandinavian',
62
+ 'rectangular',
63
+ 'kitchen',
64
+ 'mealtime',
65
+ 'entertaining',
66
+ ],
67
+ thumbnail:
68
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-table-mo9ms5yh/thumbnail.png',
37
69
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-table-mo9ms5yh/models/item_model_Sffq4hIGw8R3keLh.glb',
38
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-table-mo9ms5yh/floor-plan.png',
70
+ floorPlanUrl:
71
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-table-mo9ms5yh/floor-plan.png',
39
72
  dimensions: [2, 0.77, 0.91],
40
73
  offset: [0.0002, 0.3793, -0.0026],
41
74
  rotation: [0, 0, 0],
@@ -47,9 +80,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
47
80
  category: 'furniture',
48
81
  name: 'Single Bed',
49
82
  tags: ['floor', 'bedroom'],
50
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/single-bed/thumbnail.png',
83
+ thumbnail:
84
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/single-bed/thumbnail.png',
51
85
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/single-bed/model.glb',
52
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/single-bed/floor-plan.png',
86
+ floorPlanUrl:
87
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/single-bed/floor-plan.png',
53
88
  dimensions: [1.08, 0.6, 2.14],
54
89
  offset: [-0.0024, 0, -0.013],
55
90
  rotation: [0, 0, 0],
@@ -59,10 +94,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
59
94
  id: 'livingroom-chair',
60
95
  category: 'furniture',
61
96
  name: 'Livingroom Chair',
62
- tags: ['chair', 'armchair', 'seating', 'lounge', 'upholstered', 'modern', 'fabric', 'furniture', 'minimalist', 'comfort', 'accent', 'lounger'],
63
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/livingroom-chair/thumbnail.png',
97
+ tags: [
98
+ 'chair',
99
+ 'armchair',
100
+ 'seating',
101
+ 'lounge',
102
+ 'upholstered',
103
+ 'modern',
104
+ 'fabric',
105
+ 'furniture',
106
+ 'minimalist',
107
+ 'comfort',
108
+ 'accent',
109
+ 'lounger',
110
+ ],
111
+ thumbnail:
112
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/livingroom-chair/thumbnail.png',
64
113
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/livingroom-chair/model.glb',
65
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/livingroom-chair/floor-plan.png',
114
+ floorPlanUrl:
115
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/livingroom-chair/floor-plan.png',
66
116
  dimensions: [1.1, 0.75, 1.07],
67
117
  offset: [0, 0.0001, 0.0053],
68
118
  rotation: [0, 0, 0],
@@ -73,9 +123,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
73
123
  category: 'furniture',
74
124
  name: 'Small Plant',
75
125
  tags: ['countertop', 'decor', 'vegetation'],
76
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/small-indoor-plant/thumbnail.png',
126
+ thumbnail:
127
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/small-indoor-plant/thumbnail.png',
77
128
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/small-indoor-plant/model.glb',
78
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/small-indoor-plant/floor-plan.png',
129
+ floorPlanUrl:
130
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/small-indoor-plant/floor-plan.png',
79
131
  dimensions: [0.4, 0.67, 0.38],
80
132
  offset: [-0.0106, 0, 0.0067],
81
133
  rotation: [0, 0, 0],
@@ -85,10 +137,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
85
137
  id: 'column',
86
138
  category: 'furniture',
87
139
  name: 'Column',
88
- tags: ['column', 'pillar', 'pedestal', 'plinth', 'stand', 'marble', 'stone', 'classical', 'roman', 'greek', 'decorative', 'architectural', 'antique', 'support', 'base'],
89
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/column/thumbnail.png',
140
+ tags: [
141
+ 'column',
142
+ 'pillar',
143
+ 'pedestal',
144
+ 'plinth',
145
+ 'stand',
146
+ 'marble',
147
+ 'stone',
148
+ 'classical',
149
+ 'roman',
150
+ 'greek',
151
+ 'decorative',
152
+ 'architectural',
153
+ 'antique',
154
+ 'support',
155
+ 'base',
156
+ ],
157
+ thumbnail:
158
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/column/thumbnail.png',
90
159
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/column/model.glb',
91
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/column/floor-plan.png',
160
+ floorPlanUrl:
161
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/column/floor-plan.png',
92
162
  dimensions: [0.5, 2.5, 0.5],
93
163
  offset: [0, 1.25, 0],
94
164
  rotation: [0, 0, 0],
@@ -98,10 +168,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
98
168
  id: 'barbell',
99
169
  category: 'furniture',
100
170
  name: 'Barbell',
101
- tags: ['barbell', 'weight', 'steel', 'iron', 'metal', 'gym', 'fitness', 'industrial', 'workout', 'strength', 'training', 'lifting', 'chrome', 'exercise'],
102
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/barbell/thumbnail.png',
171
+ tags: [
172
+ 'barbell',
173
+ 'weight',
174
+ 'steel',
175
+ 'iron',
176
+ 'metal',
177
+ 'gym',
178
+ 'fitness',
179
+ 'industrial',
180
+ 'workout',
181
+ 'strength',
182
+ 'training',
183
+ 'lifting',
184
+ 'chrome',
185
+ 'exercise',
186
+ ],
187
+ thumbnail:
188
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/barbell/thumbnail.png',
103
189
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/barbell/model.glb',
104
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/barbell/floor-plan.png',
190
+ floorPlanUrl:
191
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/barbell/floor-plan.png',
105
192
  dimensions: [0.38, 0.38, 1.72],
106
193
  offset: [0, 0, 0],
107
194
  rotation: [0, 0, 0],
@@ -112,9 +199,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
112
199
  category: 'furniture',
113
200
  name: 'Toy',
114
201
  tags: ['floor', 'kids', 'decor'],
115
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toy/thumbnail.png',
202
+ thumbnail:
203
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toy/thumbnail.png',
116
204
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toy/model.glb',
117
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toy/floor-plan.png',
205
+ floorPlanUrl:
206
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toy/floor-plan.png',
118
207
  dimensions: [0.29, 0.49, 0.34],
119
208
  offset: [0, 0, 0],
120
209
  rotation: [0, 0, 0],
@@ -124,10 +213,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
124
213
  id: 'barbell-stand',
125
214
  category: 'furniture',
126
215
  name: 'Barbell Stand',
127
- tags: ['rack', 'stand', 'holder', 'storage', 'metal', 'steel', 'industrial', 'fitness', 'gym', 'weightlifting', 'training', 'minimalist', 'black', 'organizer'],
128
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/barbell-stand/thumbnail.png',
216
+ tags: [
217
+ 'rack',
218
+ 'stand',
219
+ 'holder',
220
+ 'storage',
221
+ 'metal',
222
+ 'steel',
223
+ 'industrial',
224
+ 'fitness',
225
+ 'gym',
226
+ 'weightlifting',
227
+ 'training',
228
+ 'minimalist',
229
+ 'black',
230
+ 'organizer',
231
+ ],
232
+ thumbnail:
233
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/barbell-stand/thumbnail.png',
129
234
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/barbell-stand/model.glb',
130
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/barbell-stand/floor-plan.png',
235
+ floorPlanUrl:
236
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/barbell-stand/floor-plan.png',
131
237
  dimensions: [1.34, 1.22, 1.72],
132
238
  offset: [-0.0173, 0, 0],
133
239
  rotation: [0, 0, 0],
@@ -137,10 +243,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
137
243
  id: 'books',
138
244
  category: 'furniture',
139
245
  name: 'Books',
140
- tags: ['books', 'novels', 'literature', 'reading', 'vintage', 'classic', 'decorative', 'paper', 'leather', 'library', 'study', 'office', 'decor', 'shelf', 'antique'],
141
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/books/thumbnail.png',
246
+ tags: [
247
+ 'books',
248
+ 'novels',
249
+ 'literature',
250
+ 'reading',
251
+ 'vintage',
252
+ 'classic',
253
+ 'decorative',
254
+ 'paper',
255
+ 'leather',
256
+ 'library',
257
+ 'study',
258
+ 'office',
259
+ 'decor',
260
+ 'shelf',
261
+ 'antique',
262
+ ],
263
+ thumbnail:
264
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/books/thumbnail.png',
142
265
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/books/model.glb',
143
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/books/floor-plan.png',
266
+ floorPlanUrl:
267
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/books/floor-plan.png',
144
268
  dimensions: [0.22, 0.22, 0.18],
145
269
  offset: [-0.0851, 0.003, 0.0209],
146
270
  rotation: [0, 0, 0],
@@ -151,9 +275,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
151
275
  category: 'furniture',
152
276
  name: 'Stool',
153
277
  tags: ['floor', 'seating'],
154
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stool/thumbnail.png',
278
+ thumbnail:
279
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stool/thumbnail.png',
155
280
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stool/model.glb',
156
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stool/floor-plan.png',
281
+ floorPlanUrl:
282
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stool/floor-plan.png',
157
283
  dimensions: [0.52, 1.16, 0.55],
158
284
  offset: [0, 0, 0],
159
285
  rotation: [0, 0, 0],
@@ -163,10 +289,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
163
289
  id: 'pool-table',
164
290
  category: 'furniture',
165
291
  name: 'Pool table',
166
- tags: ['pool', 'billiards', 'snooker', 'table', 'recreation', 'leisure', 'entertainment', 'wood', 'felt', 'gaming', 'traditional', 'luxury', 'classic', 'hobby', 'furniture'],
167
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/pool-table/thumbnail.png',
292
+ tags: [
293
+ 'pool',
294
+ 'billiards',
295
+ 'snooker',
296
+ 'table',
297
+ 'recreation',
298
+ 'leisure',
299
+ 'entertainment',
300
+ 'wood',
301
+ 'felt',
302
+ 'gaming',
303
+ 'traditional',
304
+ 'luxury',
305
+ 'classic',
306
+ 'hobby',
307
+ 'furniture',
308
+ ],
309
+ thumbnail:
310
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/pool-table/thumbnail.png',
168
311
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/pool-table/model.glb',
169
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/pool-table/floor-plan.png',
312
+ floorPlanUrl:
313
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/pool-table/floor-plan.png',
170
314
  dimensions: [2.11, 0.98, 3.5],
171
315
  offset: [0, 0, 0],
172
316
  rotation: [0, 0, 0],
@@ -176,10 +320,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
176
320
  id: 'bookshelf',
177
321
  category: 'furniture',
178
322
  name: 'Bookshelf',
179
- tags: ['bookshelf', 'bookcase', 'shelving', 'storage', 'organizer', 'modern', 'minimalist', 'wood', 'metal', 'industrial', 'library', 'office', 'furniture', 'display', 'timber'],
180
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bookshelf/thumbnail.png',
323
+ tags: [
324
+ 'bookshelf',
325
+ 'bookcase',
326
+ 'shelving',
327
+ 'storage',
328
+ 'organizer',
329
+ 'modern',
330
+ 'minimalist',
331
+ 'wood',
332
+ 'metal',
333
+ 'industrial',
334
+ 'library',
335
+ 'office',
336
+ 'furniture',
337
+ 'display',
338
+ 'timber',
339
+ ],
340
+ thumbnail:
341
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bookshelf/thumbnail.png',
181
342
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bookshelf/model.glb',
182
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bookshelf/floor-plan.png',
343
+ floorPlanUrl:
344
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bookshelf/floor-plan.png',
183
345
  dimensions: [0.93, 1.99, 0.33],
184
346
  offset: [0, 0, 0.0032],
185
347
  rotation: [0, 0, 0],
@@ -189,10 +351,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
189
351
  id: 'coat-rack',
190
352
  category: 'furniture',
191
353
  name: 'Coat Rack',
192
- tags: ['coatrack', 'rack', 'hanger', 'valet', 'organizer', 'storage', 'entryway', 'hallway', 'minimalist', 'metal', 'wood', 'mudroom', 'hooks', 'clothes'],
193
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coat-rack/thumbnail.png',
354
+ tags: [
355
+ 'coatrack',
356
+ 'rack',
357
+ 'hanger',
358
+ 'valet',
359
+ 'organizer',
360
+ 'storage',
361
+ 'entryway',
362
+ 'hallway',
363
+ 'minimalist',
364
+ 'metal',
365
+ 'wood',
366
+ 'mudroom',
367
+ 'hooks',
368
+ 'clothes',
369
+ ],
370
+ thumbnail:
371
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coat-rack/thumbnail.png',
194
372
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coat-rack/model.glb',
195
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coat-rack/floor-plan.png',
373
+ floorPlanUrl:
374
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coat-rack/floor-plan.png',
196
375
  dimensions: [0.33, 1.76, 0.33],
197
376
  offset: [0, 0, 0],
198
377
  rotation: [0, 0, 0],
@@ -202,10 +381,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
202
381
  id: 'car-toy',
203
382
  category: 'furniture',
204
383
  name: 'Car Toy',
205
- tags: ['car', 'toy', 'vehicle', 'racer', 'play', 'nursery', 'playroom', 'wooden', 'vintage', 'decor', 'kids', 'child', 'classic', 'miniature', 'hobby'],
206
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/car-toy/thumbnail.png',
384
+ tags: [
385
+ 'car',
386
+ 'toy',
387
+ 'vehicle',
388
+ 'racer',
389
+ 'play',
390
+ 'nursery',
391
+ 'playroom',
392
+ 'wooden',
393
+ 'vintage',
394
+ 'decor',
395
+ 'kids',
396
+ 'child',
397
+ 'classic',
398
+ 'miniature',
399
+ 'hobby',
400
+ ],
401
+ thumbnail:
402
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/car-toy/thumbnail.png',
207
403
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/car-toy/model.glb',
208
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/car-toy/floor-plan.png',
404
+ floorPlanUrl:
405
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/car-toy/floor-plan.png',
209
406
  dimensions: [0.31, 0.38, 0.6],
210
407
  offset: [0.0005, 0.0005, -0.0075],
211
408
  rotation: [0, 0, 0],
@@ -215,10 +412,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
215
412
  id: 'bedside-table',
216
413
  category: 'furniture',
217
414
  name: 'Bedside Table',
218
- tags: ['nightstand', 'table', 'bedroom', 'storage', 'wood', 'modern', 'minimalist', 'stand', 'drawer', 'furniture', 'cabinet', 'bedside'],
219
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bedside-table/thumbnail.png',
415
+ tags: [
416
+ 'nightstand',
417
+ 'table',
418
+ 'bedroom',
419
+ 'storage',
420
+ 'wood',
421
+ 'modern',
422
+ 'minimalist',
423
+ 'stand',
424
+ 'drawer',
425
+ 'furniture',
426
+ 'cabinet',
427
+ 'bedside',
428
+ ],
429
+ thumbnail:
430
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bedside-table/thumbnail.png',
220
431
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bedside-table/model.glb',
221
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bedside-table/floor-plan.png',
432
+ floorPlanUrl:
433
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bedside-table/floor-plan.png',
222
434
  dimensions: [0.45, 0.48, 0.46],
223
435
  offset: [0.0005, 0, -0.0062],
224
436
  rotation: [0, 0, 0],
@@ -230,9 +442,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
230
442
  category: 'furniture',
231
443
  name: 'Sofa',
232
444
  tags: ['floor', 'seating'],
233
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sofa/thumbnail.png',
445
+ thumbnail:
446
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sofa/thumbnail.png',
234
447
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sofa/model.glb',
235
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sofa/floor-plan.png',
448
+ floorPlanUrl:
449
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sofa/floor-plan.png',
236
450
  dimensions: [2.06, 0.74, 1.01],
237
451
  offset: [-0.0023, 0.009, 0.0459],
238
452
  rotation: [0, 0, 0],
@@ -242,10 +456,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
242
456
  id: 'bunkbed',
243
457
  category: 'furniture',
244
458
  name: 'Bunkbed',
245
- tags: ['bunkbed', 'bed', 'sleeper', 'loft', 'bedroom', 'kids', 'wood', 'metal', 'modern', 'sleeping', 'ladder', 'rustic', 'dormitory', 'furniture'],
246
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bunkbed/thumbnail.png',
459
+ tags: [
460
+ 'bunkbed',
461
+ 'bed',
462
+ 'sleeper',
463
+ 'loft',
464
+ 'bedroom',
465
+ 'kids',
466
+ 'wood',
467
+ 'metal',
468
+ 'modern',
469
+ 'sleeping',
470
+ 'ladder',
471
+ 'rustic',
472
+ 'dormitory',
473
+ 'furniture',
474
+ ],
475
+ thumbnail:
476
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bunkbed/thumbnail.png',
247
477
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bunkbed/model.glb',
248
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bunkbed/floor-plan.png',
478
+ floorPlanUrl:
479
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bunkbed/floor-plan.png',
249
480
  dimensions: [1.65, 1.55, 0.99],
250
481
  offset: [0, 0, -0.0886],
251
482
  rotation: [0, 0, 0],
@@ -255,9 +486,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
255
486
  id: 'my-leather-couch-modp80ha',
256
487
  category: 'furniture',
257
488
  name: 'My leather couch',
258
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/my-leather-couch-modp80ha/thumbnail.png',
489
+ thumbnail:
490
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/my-leather-couch-modp80ha/thumbnail.png',
259
491
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/my-leather-couch-modp80ha/models/item_model_kgORhH5vwFK8xub0.glb',
260
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/my-leather-couch-modp80ha/floor-plan.png',
492
+ floorPlanUrl:
493
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/my-leather-couch-modp80ha/floor-plan.png',
261
494
  dimensions: [2, 0.67, 0.61],
262
495
  offset: [-0.0005, 0.3228, -0.004],
263
496
  rotation: [0, 0, 0],
@@ -267,10 +500,26 @@ export const CATALOG_ITEMS: AssetInput[] = [
267
500
  id: 'office-table',
268
501
  category: 'furniture',
269
502
  name: 'Office Table',
270
- tags: ['desk', 'table', 'workstation', 'furniture', 'office', 'work', 'study', 'writing', 'modern', 'minimalist', 'industrial', 'wood', 'metal'],
271
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/office-table/thumbnail.png',
503
+ tags: [
504
+ 'desk',
505
+ 'table',
506
+ 'workstation',
507
+ 'furniture',
508
+ 'office',
509
+ 'work',
510
+ 'study',
511
+ 'writing',
512
+ 'modern',
513
+ 'minimalist',
514
+ 'industrial',
515
+ 'wood',
516
+ 'metal',
517
+ ],
518
+ thumbnail:
519
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/office-table/thumbnail.png',
272
520
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/office-table/model.glb',
273
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/office-table/floor-plan.png',
521
+ floorPlanUrl:
522
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/office-table/floor-plan.png',
274
523
  dimensions: [1.51, 0.76, 0.62],
275
524
  offset: [-0.0001, 0, -0.0052],
276
525
  rotation: [0, 0, 0],
@@ -281,10 +530,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
281
530
  id: 'dining-table',
282
531
  category: 'furniture',
283
532
  name: 'Dining Table',
284
- tags: ['table', 'dining', 'furniture', 'wood', 'modern', 'minimalist', 'kitchen', 'eating', 'surface', 'contemporary', 'gathering', 'walnut'],
285
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-table/thumbnail.png',
533
+ tags: [
534
+ 'table',
535
+ 'dining',
536
+ 'furniture',
537
+ 'wood',
538
+ 'modern',
539
+ 'minimalist',
540
+ 'kitchen',
541
+ 'eating',
542
+ 'surface',
543
+ 'contemporary',
544
+ 'gathering',
545
+ 'walnut',
546
+ ],
547
+ thumbnail:
548
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-table/thumbnail.png',
286
549
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-table/model.glb',
287
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-table/floor-plan.png',
550
+ floorPlanUrl:
551
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-table/floor-plan.png',
288
552
  dimensions: [2.16, 0.7, 0.95],
289
553
  offset: [0, 0, -0.0077],
290
554
  rotation: [0, 0, 0],
@@ -295,10 +559,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
295
559
  id: 'guitar',
296
560
  category: 'furniture',
297
561
  name: 'Guitar',
298
- tags: ['guitar', 'instrument', 'musical', 'wood', 'acoustic', 'vintage', 'classic', 'decor', 'mahogany', 'string', 'art', 'hobby'],
299
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/guitar/thumbnail.png',
562
+ tags: [
563
+ 'guitar',
564
+ 'instrument',
565
+ 'musical',
566
+ 'wood',
567
+ 'acoustic',
568
+ 'vintage',
569
+ 'classic',
570
+ 'decor',
571
+ 'mahogany',
572
+ 'string',
573
+ 'art',
574
+ 'hobby',
575
+ ],
576
+ thumbnail:
577
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/guitar/thumbnail.png',
300
578
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/guitar/model.glb',
301
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/guitar/floor-plan.png',
579
+ floorPlanUrl:
580
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/guitar/floor-plan.png',
302
581
  dimensions: [0.4, 1.18, 0.09],
303
582
  offset: [-0.0009, 0.3197, -0.0129],
304
583
  rotation: [0, 0, 0],
@@ -309,9 +588,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
309
588
  category: 'furniture',
310
589
  name: 'Trash Bin',
311
590
  tags: ['floor'],
312
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/trash-bin/thumbnail.png',
591
+ thumbnail:
592
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/trash-bin/thumbnail.png',
313
593
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/trash-bin/model.glb',
314
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/trash-bin/floor-plan.png',
594
+ floorPlanUrl:
595
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/trash-bin/floor-plan.png',
315
596
  dimensions: [0.35, 0.59, 0.42],
316
597
  offset: [0, 0, 0],
317
598
  rotation: [0, 0, 0],
@@ -321,33 +602,73 @@ export const CATALOG_ITEMS: AssetInput[] = [
321
602
  id: 'recessed-light',
322
603
  category: 'furniture',
323
604
  name: 'Recessed Light',
324
- tags: ['recessed', 'downlight', 'spotlight', 'lighting', 'fixture', 'modern', 'minimalist', 'metal', 'aluminum', 'luminaire', 'ambient', 'illumination', 'architectural', 'can'],
325
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/recessed-light/thumbnail.png',
605
+ tags: [
606
+ 'recessed',
607
+ 'downlight',
608
+ 'spotlight',
609
+ 'lighting',
610
+ 'fixture',
611
+ 'modern',
612
+ 'minimalist',
613
+ 'metal',
614
+ 'aluminum',
615
+ 'luminaire',
616
+ 'ambient',
617
+ 'illumination',
618
+ 'architectural',
619
+ 'can',
620
+ ],
621
+ thumbnail:
622
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/recessed-light/thumbnail.png',
326
623
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/recessed-light/model.glb',
327
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/recessed-light/floor-plan.png',
624
+ floorPlanUrl:
625
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/recessed-light/floor-plan.png',
328
626
  dimensions: [0.23, 0.06, 0.23],
329
627
  offset: [0, 0.0057, 0],
330
628
  rotation: [0, 0, 0],
331
629
  scale: [1, 1, 1],
332
630
  attachTo: 'ceiling',
631
+ recessed: true,
333
632
  interactive: {
334
633
  controls: [
335
634
  { kind: 'toggle' },
336
- { kind: 'slider', label: 'Intensity', min: 0, max: 100, unit: '%', displayMode: 'dial', default: 100 },
337
- ],
338
- effects: [
339
- { kind: 'light', intensityRange: [0, 2], color: '#ffffff', offset: [0, -0.1, 0] },
635
+ {
636
+ kind: 'slider',
637
+ label: 'Intensity',
638
+ min: 0,
639
+ max: 100,
640
+ unit: '%',
641
+ displayMode: 'dial',
642
+ default: 100,
643
+ },
340
644
  ],
645
+ effects: [{ kind: 'light', intensityRange: [0, 2], color: '#ffffff', offset: [0, -0.1, 0] }],
341
646
  },
342
647
  },
343
648
  {
344
649
  id: 'shelf',
345
650
  category: 'furniture',
346
651
  name: 'Shelf',
347
- tags: ['shelf', 'shelving', 'rack', 'ledge', 'storage', 'organization', 'display', 'bookshelf', 'modern', 'minimalist', 'furniture', 'decor', 'contemporary'],
348
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shelf/thumbnail.png',
652
+ tags: [
653
+ 'shelf',
654
+ 'shelving',
655
+ 'rack',
656
+ 'ledge',
657
+ 'storage',
658
+ 'organization',
659
+ 'display',
660
+ 'bookshelf',
661
+ 'modern',
662
+ 'minimalist',
663
+ 'furniture',
664
+ 'decor',
665
+ 'contemporary',
666
+ ],
667
+ thumbnail:
668
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shelf/thumbnail.png',
349
669
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shelf/model.glb',
350
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shelf/floor-plan.png',
670
+ floorPlanUrl:
671
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shelf/floor-plan.png',
351
672
  dimensions: [0.74, 0.04, 0.32],
352
673
  offset: [0, 0.02, 0],
353
674
  rotation: [0, 0, 0],
@@ -360,9 +681,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
360
681
  category: 'furniture',
361
682
  name: 'Table Lamp',
362
683
  tags: ['countertop', 'lighting'],
363
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/table-lamp/thumbnail.png',
684
+ thumbnail:
685
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/table-lamp/thumbnail.png',
364
686
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/table-lamp/model.glb',
365
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/table-lamp/floor-plan.png',
687
+ floorPlanUrl:
688
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/table-lamp/floor-plan.png',
366
689
  dimensions: [0.29, 0.74, 0.67],
367
690
  offset: [0, 0, 0],
368
691
  rotation: [0, 0, 0],
@@ -372,10 +695,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
372
695
  id: 'ceiling-lamp',
373
696
  category: 'furniture',
374
697
  name: 'Ceiling Lamp',
375
- tags: ['lamp', 'light', 'chandelier', 'pendant', 'luminaire', 'fixture', 'lighting', 'modern', 'minimalist', 'glass', 'metal', 'indoor', 'illumination', 'interior'],
376
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ceiling-lamp/thumbnail.png',
698
+ tags: [
699
+ 'lamp',
700
+ 'light',
701
+ 'chandelier',
702
+ 'pendant',
703
+ 'luminaire',
704
+ 'fixture',
705
+ 'lighting',
706
+ 'modern',
707
+ 'minimalist',
708
+ 'glass',
709
+ 'metal',
710
+ 'indoor',
711
+ 'illumination',
712
+ 'interior',
713
+ ],
714
+ thumbnail:
715
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ceiling-lamp/thumbnail.png',
377
716
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ceiling-lamp/model.glb',
378
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ceiling-lamp/floor-plan.png',
717
+ floorPlanUrl:
718
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ceiling-lamp/floor-plan.png',
379
719
  dimensions: [0.55, 0.86, 0.55],
380
720
  offset: [0, 0.8545, 0],
381
721
  rotation: [0, 0, 0],
@@ -384,21 +724,44 @@ export const CATALOG_ITEMS: AssetInput[] = [
384
724
  interactive: {
385
725
  controls: [
386
726
  { kind: 'toggle' },
387
- { kind: 'slider', label: 'Intensity', min: 0, max: 100, unit: '%', displayMode: 'dial', default: 100 },
388
- ],
389
- effects: [
390
- { kind: 'light', intensityRange: [0, 2], color: '#ffffff', offset: [0, -0.3, 0] },
727
+ {
728
+ kind: 'slider',
729
+ label: 'Intensity',
730
+ min: 0,
731
+ max: 100,
732
+ unit: '%',
733
+ displayMode: 'dial',
734
+ default: 100,
735
+ },
391
736
  ],
737
+ effects: [{ kind: 'light', intensityRange: [0, 2], color: '#ffffff', offset: [0, -0.3, 0] }],
392
738
  },
393
739
  },
394
740
  {
395
741
  id: 'closet',
396
742
  category: 'furniture',
397
743
  name: 'Closet',
398
- tags: ['closet', 'wardrobe', 'armoire', 'cabinet', 'storage', 'organization', 'wood', 'bedroom', 'modern', 'minimalist', 'clothing', 'apparel', 'cupboard', 'locker'],
399
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/closet/thumbnail.png',
744
+ tags: [
745
+ 'closet',
746
+ 'wardrobe',
747
+ 'armoire',
748
+ 'cabinet',
749
+ 'storage',
750
+ 'organization',
751
+ 'wood',
752
+ 'bedroom',
753
+ 'modern',
754
+ 'minimalist',
755
+ 'clothing',
756
+ 'apparel',
757
+ 'cupboard',
758
+ 'locker',
759
+ ],
760
+ thumbnail:
761
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/closet/thumbnail.png',
400
762
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/closet/model.glb',
401
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/closet/floor-plan.png',
763
+ floorPlanUrl:
764
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/closet/floor-plan.png',
402
765
  dimensions: [1.95, 2.26, 0.6],
403
766
  offset: [0, 0, -0.0141],
404
767
  rotation: [0, 0, 0],
@@ -408,10 +771,26 @@ export const CATALOG_ITEMS: AssetInput[] = [
408
771
  id: 'coffee-table',
409
772
  category: 'furniture',
410
773
  name: 'Coffee Table',
411
- tags: ['table', 'cocktail', 'wood', 'modern', 'minimalist', 'furniture', 'living', 'lounge', 'walnut', 'metal', 'glass', 'surface', 'decor'],
412
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coffee-table/thumbnail.png',
774
+ tags: [
775
+ 'table',
776
+ 'cocktail',
777
+ 'wood',
778
+ 'modern',
779
+ 'minimalist',
780
+ 'furniture',
781
+ 'living',
782
+ 'lounge',
783
+ 'walnut',
784
+ 'metal',
785
+ 'glass',
786
+ 'surface',
787
+ 'decor',
788
+ ],
789
+ thumbnail:
790
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coffee-table/thumbnail.png',
413
791
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coffee-table/model.glb',
414
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coffee-table/floor-plan.png',
792
+ floorPlanUrl:
793
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coffee-table/floor-plan.png',
415
794
  dimensions: [1.72, 0.3, 1.04],
416
795
  offset: [0, 0, 0.0089],
417
796
  rotation: [0, 0, 0],
@@ -422,10 +801,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
422
801
  id: 'dining-chair',
423
802
  category: 'furniture',
424
803
  name: 'Dining Chair',
425
- tags: ['chair', 'seating', 'dining', 'furniture', 'modern', 'wood', 'upholstered', 'kitchen', 'seat', 'minimalist', 'timber', 'bistro'],
426
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-chair/thumbnail.png',
804
+ tags: [
805
+ 'chair',
806
+ 'seating',
807
+ 'dining',
808
+ 'furniture',
809
+ 'modern',
810
+ 'wood',
811
+ 'upholstered',
812
+ 'kitchen',
813
+ 'seat',
814
+ 'minimalist',
815
+ 'timber',
816
+ 'bistro',
817
+ ],
818
+ thumbnail:
819
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-chair/thumbnail.png',
427
820
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-chair/model.glb',
428
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-chair/floor-plan.png',
821
+ floorPlanUrl:
822
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dining-chair/floor-plan.png',
429
823
  dimensions: [0.47, 0.87, 0.5],
430
824
  offset: [0, 0, 0.0016],
431
825
  rotation: [0, 0, 0],
@@ -435,10 +829,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
435
829
  id: 'dresser',
436
830
  category: 'furniture',
437
831
  name: 'Dresser',
438
- tags: ['dresser', 'chest', 'bureau', 'storage', 'bedroom', 'drawers', 'wood', 'modern', 'organization', 'cabinet', 'rustic', 'minimalist'],
439
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dresser/thumbnail.png',
832
+ tags: [
833
+ 'dresser',
834
+ 'chest',
835
+ 'bureau',
836
+ 'storage',
837
+ 'bedroom',
838
+ 'drawers',
839
+ 'wood',
840
+ 'modern',
841
+ 'organization',
842
+ 'cabinet',
843
+ 'rustic',
844
+ 'minimalist',
845
+ ],
846
+ thumbnail:
847
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dresser/thumbnail.png',
440
848
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dresser/model.glb',
441
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dresser/floor-plan.png',
849
+ floorPlanUrl:
850
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/dresser/floor-plan.png',
442
851
  dimensions: [1.23, 0.73, 0.61],
443
852
  offset: [0, 0, -0.0066],
444
853
  rotation: [0, 0, 0],
@@ -449,10 +858,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
449
858
  id: 'ikea-kallax-1x4-moa2y49n',
450
859
  category: 'furniture',
451
860
  name: 'Ikea Kallax 2x4',
452
- tags: ['shelf', 'bookcase', 'shelving', 'storage', 'organizer', 'cubby', 'cube', 'scandinavian', 'modern', 'minimalist', 'wood', 'laminate', 'display', 'modular'],
453
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ikea-kallax-1x4-moa2y49n/thumbnail.png',
861
+ tags: [
862
+ 'shelf',
863
+ 'bookcase',
864
+ 'shelving',
865
+ 'storage',
866
+ 'organizer',
867
+ 'cubby',
868
+ 'cube',
869
+ 'scandinavian',
870
+ 'modern',
871
+ 'minimalist',
872
+ 'wood',
873
+ 'laminate',
874
+ 'display',
875
+ 'modular',
876
+ ],
877
+ thumbnail:
878
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ikea-kallax-1x4-moa2y49n/thumbnail.png',
454
879
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ikea-kallax-1x4-moa2y49n/models/item_model_ocVHS1SWDex5DeYc.glb',
455
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ikea-kallax-1x4-moa2y49n/floor-plan.png',
880
+ floorPlanUrl:
881
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ikea-kallax-1x4-moa2y49n/floor-plan.png',
456
882
  dimensions: [1.09, 2.06, 0.55],
457
883
  offset: [0, -0.0053, 0],
458
884
  rotation: [0, 0, 0],
@@ -462,10 +888,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
462
888
  id: 'indoor-plant',
463
889
  category: 'furniture',
464
890
  name: 'Indoor Plant',
465
- tags: ['plant', 'greenery', 'botanical', 'foliage', 'houseplant', 'organic', 'natural', 'modern', 'minimalist', 'tropical', 'decor', 'accent', 'green', 'ceramic'],
466
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/indoor-plant/thumbnail.png',
891
+ tags: [
892
+ 'plant',
893
+ 'greenery',
894
+ 'botanical',
895
+ 'foliage',
896
+ 'houseplant',
897
+ 'organic',
898
+ 'natural',
899
+ 'modern',
900
+ 'minimalist',
901
+ 'tropical',
902
+ 'decor',
903
+ 'accent',
904
+ 'green',
905
+ 'ceramic',
906
+ ],
907
+ thumbnail:
908
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/indoor-plant/thumbnail.png',
467
909
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/indoor-plant/model.glb',
468
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/indoor-plant/floor-plan.png',
910
+ floorPlanUrl:
911
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/indoor-plant/floor-plan.png',
469
912
  dimensions: [0.69, 1.63, 0.83],
470
913
  offset: [-0.0506, 0, 0.0664],
471
914
  rotation: [0, 0, 0],
@@ -475,10 +918,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
475
918
  id: 'ironing-board',
476
919
  category: 'furniture',
477
920
  name: 'Ironing Board',
478
- tags: ['ironing', 'board', 'laundry', 'foldable', 'metal', 'utility', 'pressing', 'collapsible', 'stand', 'table', 'organization', 'industrial'],
479
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ironing-board/thumbnail.png',
921
+ tags: [
922
+ 'ironing',
923
+ 'board',
924
+ 'laundry',
925
+ 'foldable',
926
+ 'metal',
927
+ 'utility',
928
+ 'pressing',
929
+ 'collapsible',
930
+ 'stand',
931
+ 'table',
932
+ 'organization',
933
+ 'industrial',
934
+ ],
935
+ thumbnail:
936
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ironing-board/thumbnail.png',
480
937
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ironing-board/model.glb',
481
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ironing-board/floor-plan.png',
938
+ floorPlanUrl:
939
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ironing-board/floor-plan.png',
482
940
  dimensions: [1.31, 0.96, 0.48],
483
941
  offset: [0, 0, 0],
484
942
  rotation: [0, 0, 0],
@@ -488,10 +946,26 @@ export const CATALOG_ITEMS: AssetInput[] = [
488
946
  id: 'double-bed',
489
947
  category: 'furniture',
490
948
  name: 'Double Bed',
491
- tags: ['bed', 'bedstead', 'double', 'frame', 'bedroom', 'sleeping', 'modern', 'minimalist', 'upholstered', 'wood', 'sleep', 'furniture', 'contemporary'],
492
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/double-bed/thumbnail.png',
949
+ tags: [
950
+ 'bed',
951
+ 'bedstead',
952
+ 'double',
953
+ 'frame',
954
+ 'bedroom',
955
+ 'sleeping',
956
+ 'modern',
957
+ 'minimalist',
958
+ 'upholstered',
959
+ 'wood',
960
+ 'sleep',
961
+ 'furniture',
962
+ 'contemporary',
963
+ ],
964
+ thumbnail:
965
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/double-bed/thumbnail.png',
493
966
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/double-bed/model.glb',
494
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/double-bed/floor-plan.png',
967
+ floorPlanUrl:
968
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/double-bed/floor-plan.png',
495
969
  dimensions: [1.52, 0.71, 2],
496
970
  offset: [0.0042, 0, -0.0277],
497
971
  rotation: [0, 0, 0],
@@ -501,10 +975,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
501
975
  id: 'floor-lamp',
502
976
  category: 'furniture',
503
977
  name: 'Floor Lamp',
504
- tags: ['lamp', 'luminaire', 'light', 'torchere', 'lighting', 'illumination', 'metal', 'brass', 'modern', 'minimalist', 'industrial', 'decor', 'ambient', 'reading', 'sleek'],
505
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/floor-lamp/thumbnail.png',
978
+ tags: [
979
+ 'lamp',
980
+ 'luminaire',
981
+ 'light',
982
+ 'torchere',
983
+ 'lighting',
984
+ 'illumination',
985
+ 'metal',
986
+ 'brass',
987
+ 'modern',
988
+ 'minimalist',
989
+ 'industrial',
990
+ 'decor',
991
+ 'ambient',
992
+ 'reading',
993
+ 'sleek',
994
+ ],
995
+ thumbnail:
996
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/floor-lamp/thumbnail.png',
506
997
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/floor-lamp/model.glb',
507
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/floor-lamp/floor-plan.png',
998
+ floorPlanUrl:
999
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/floor-lamp/floor-plan.png',
508
1000
  dimensions: [0.7, 1.86, 0.69],
509
1001
  offset: [0.0341, 0.0045, 0.0219],
510
1002
  rotation: [0, 0, 0],
@@ -512,11 +1004,17 @@ export const CATALOG_ITEMS: AssetInput[] = [
512
1004
  interactive: {
513
1005
  controls: [
514
1006
  { kind: 'toggle' },
515
- { kind: 'slider', label: 'Intensity', min: 0, max: 100, unit: '%', displayMode: 'dial', default: 100 },
516
- ],
517
- effects: [
518
- { kind: 'light', intensityRange: [0, 2], color: '#ffffff', offset: [0, 1.4, 0] },
1007
+ {
1008
+ kind: 'slider',
1009
+ label: 'Intensity',
1010
+ min: 0,
1011
+ max: 100,
1012
+ unit: '%',
1013
+ displayMode: 'dial',
1014
+ default: 100,
1015
+ },
519
1016
  ],
1017
+ effects: [{ kind: 'light', intensityRange: [0, 2], color: '#ffffff', offset: [0, 1.4, 0] }],
520
1018
  },
521
1019
  },
522
1020
  {
@@ -524,9 +1022,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
524
1022
  category: 'furniture',
525
1023
  name: 'Herman Miller Aeron',
526
1024
  tags: ['office'],
527
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/herman-miller-aeron-mo8x36k9/thumbnail.png',
1025
+ thumbnail:
1026
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/herman-miller-aeron-mo8x36k9/thumbnail.png',
528
1027
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/herman-miller-aeron-mo8x36k9/models/item_model_YshL4maC8cHtry5c.glb',
529
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/herman-miller-aeron-mo8x36k9/floor-plan.png',
1028
+ floorPlanUrl:
1029
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/herman-miller-aeron-mo8x36k9/floor-plan.png',
530
1030
  dimensions: [0.67, 1.06, 0.66],
531
1031
  offset: [-0.0013, 0.5256, 0.0028],
532
1032
  rotation: [0, 0, 0],
@@ -536,10 +1036,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
536
1036
  id: 'easel',
537
1037
  category: 'furniture',
538
1038
  name: 'Easel',
539
- tags: ['easel', 'stand', 'tripod', 'art', 'studio', 'wood', 'display', 'canvas', 'atelier', 'presentation', 'wooden', 'sketching', 'painting', 'decor'],
540
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/easel/thumbnail.png',
1039
+ tags: [
1040
+ 'easel',
1041
+ 'stand',
1042
+ 'tripod',
1043
+ 'art',
1044
+ 'studio',
1045
+ 'wood',
1046
+ 'display',
1047
+ 'canvas',
1048
+ 'atelier',
1049
+ 'presentation',
1050
+ 'wooden',
1051
+ 'sketching',
1052
+ 'painting',
1053
+ 'decor',
1054
+ ],
1055
+ thumbnail:
1056
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/easel/thumbnail.png',
541
1057
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/easel/model.glb',
542
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/easel/floor-plan.png',
1058
+ floorPlanUrl:
1059
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/easel/floor-plan.png',
543
1060
  dimensions: [0.99, 2.32, 0.55],
544
1061
  offset: [0, 0.0402, 0.0116],
545
1062
  rotation: [0, 0, 0],
@@ -549,10 +1066,26 @@ export const CATALOG_ITEMS: AssetInput[] = [
549
1066
  id: 'lounge-chair',
550
1067
  category: 'furniture',
551
1068
  name: 'Lounge Chair',
552
- tags: ['chair', 'armchair', 'seating', 'lounge', 'seat', 'modern', 'contemporary', 'minimalist', 'comfort', 'relaxation', 'upholstered', 'interior', 'furniture'],
553
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/lounge-chair/thumbnail.png',
1069
+ tags: [
1070
+ 'chair',
1071
+ 'armchair',
1072
+ 'seating',
1073
+ 'lounge',
1074
+ 'seat',
1075
+ 'modern',
1076
+ 'contemporary',
1077
+ 'minimalist',
1078
+ 'comfort',
1079
+ 'relaxation',
1080
+ 'upholstered',
1081
+ 'interior',
1082
+ 'furniture',
1083
+ ],
1084
+ thumbnail:
1085
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/lounge-chair/thumbnail.png',
554
1086
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/lounge-chair/model.glb',
555
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/lounge-chair/floor-plan.png',
1087
+ floorPlanUrl:
1088
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/lounge-chair/floor-plan.png',
556
1089
  dimensions: [0.68, 1.03, 1.26],
557
1090
  offset: [0, 0.0034, 0.0894],
558
1091
  rotation: [0, 0, 0],
@@ -562,10 +1095,26 @@ export const CATALOG_ITEMS: AssetInput[] = [
562
1095
  id: 'office-chair',
563
1096
  category: 'furniture',
564
1097
  name: 'Office Chair',
565
- tags: ['chair', 'seating', 'ergonomic', 'swivel', 'office', 'desk', 'mesh', 'leather', 'modern', 'task', 'workspace', 'professional', 'computer'],
566
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/office-chair/thumbnail.png',
1098
+ tags: [
1099
+ 'chair',
1100
+ 'seating',
1101
+ 'ergonomic',
1102
+ 'swivel',
1103
+ 'office',
1104
+ 'desk',
1105
+ 'mesh',
1106
+ 'leather',
1107
+ 'modern',
1108
+ 'task',
1109
+ 'workspace',
1110
+ 'professional',
1111
+ 'computer',
1112
+ ],
1113
+ thumbnail:
1114
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/office-chair/thumbnail.png',
567
1115
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/office-chair/model.glb',
568
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/office-chair/floor-plan.png',
1116
+ floorPlanUrl:
1117
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/office-chair/floor-plan.png',
569
1118
  dimensions: [0.66, 1.16, 0.69],
570
1119
  offset: [0.0024, 0.0015, 0.0332],
571
1120
  rotation: [0, 0, 0],
@@ -575,10 +1124,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
575
1124
  id: 'piano',
576
1125
  category: 'furniture',
577
1126
  name: 'Piano',
578
- tags: ['piano', 'instrument', 'musical', 'grand', 'upright', 'keyboard', 'wood', 'polished', 'lacquer', 'ebony', 'classic', 'traditional', 'music', 'entertainment', 'luxury'],
579
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/piano/thumbnail.png',
1127
+ tags: [
1128
+ 'piano',
1129
+ 'instrument',
1130
+ 'musical',
1131
+ 'grand',
1132
+ 'upright',
1133
+ 'keyboard',
1134
+ 'wood',
1135
+ 'polished',
1136
+ 'lacquer',
1137
+ 'ebony',
1138
+ 'classic',
1139
+ 'traditional',
1140
+ 'music',
1141
+ 'entertainment',
1142
+ 'luxury',
1143
+ ],
1144
+ thumbnail:
1145
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/piano/thumbnail.png',
580
1146
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/piano/model.glb',
581
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/piano/floor-plan.png',
1147
+ floorPlanUrl:
1148
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/piano/floor-plan.png',
582
1149
  dimensions: [1.54, 1.44, 0.69],
583
1150
  offset: [0, 0, 0.0162],
584
1151
  rotation: [0, 0, 0],
@@ -588,10 +1155,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
588
1155
  id: 'picture',
589
1156
  category: 'furniture',
590
1157
  name: 'Picture',
591
- tags: ['picture', 'frame', 'art', 'artwork', 'print', 'canvas', 'decor', 'modern', 'abstract', 'minimalist', 'decorative', 'glass', 'wood', 'illustration', 'portrait'],
592
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/picture/thumbnail.png',
1158
+ tags: [
1159
+ 'picture',
1160
+ 'frame',
1161
+ 'art',
1162
+ 'artwork',
1163
+ 'print',
1164
+ 'canvas',
1165
+ 'decor',
1166
+ 'modern',
1167
+ 'abstract',
1168
+ 'minimalist',
1169
+ 'decorative',
1170
+ 'glass',
1171
+ 'wood',
1172
+ 'illustration',
1173
+ 'portrait',
1174
+ ],
1175
+ thumbnail:
1176
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/picture/thumbnail.png',
593
1177
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/picture/model.glb',
594
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/picture/floor-plan.png',
1178
+ floorPlanUrl:
1179
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/picture/floor-plan.png',
595
1180
  dimensions: [1.47, 0.82, 0.06],
596
1181
  offset: [0, 0.41, 0],
597
1182
  rotation: [0, 0, 0],
@@ -602,10 +1187,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
602
1187
  id: 'rectangular-carpet',
603
1188
  category: 'furniture',
604
1189
  name: 'Rectangular Carpet',
605
- tags: ['carpet', 'rug', 'mat', 'textile', 'woven', 'rectangular', 'modern', 'wool', 'cotton', 'minimalist', 'decor', 'plush'],
606
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/rectangular-carpet/thumbnail.png',
1190
+ tags: [
1191
+ 'carpet',
1192
+ 'rug',
1193
+ 'mat',
1194
+ 'textile',
1195
+ 'woven',
1196
+ 'rectangular',
1197
+ 'modern',
1198
+ 'wool',
1199
+ 'cotton',
1200
+ 'minimalist',
1201
+ 'decor',
1202
+ 'plush',
1203
+ ],
1204
+ thumbnail:
1205
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/rectangular-carpet/thumbnail.png',
607
1206
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/rectangular-carpet/model.glb',
608
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/rectangular-carpet/floor-plan.png',
1207
+ floorPlanUrl:
1208
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/rectangular-carpet/floor-plan.png',
609
1209
  dimensions: [2.78, 0.04, 1.81],
610
1210
  offset: [0, 0, 0],
611
1211
  rotation: [0, 0, 0],
@@ -616,10 +1216,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
616
1216
  id: 'round-mirror',
617
1217
  category: 'furniture',
618
1218
  name: 'Rounded Mirror',
619
- tags: ['mirror', 'glass', 'reflective', 'circular', 'oval', 'modern', 'minimalist', 'contemporary', 'scandinavian', 'vanity', 'decor', 'curved', 'reflection', 'grooming'],
620
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/round-mirror/thumbnail.png',
1219
+ tags: [
1220
+ 'mirror',
1221
+ 'glass',
1222
+ 'reflective',
1223
+ 'circular',
1224
+ 'oval',
1225
+ 'modern',
1226
+ 'minimalist',
1227
+ 'contemporary',
1228
+ 'scandinavian',
1229
+ 'vanity',
1230
+ 'decor',
1231
+ 'curved',
1232
+ 'reflection',
1233
+ 'grooming',
1234
+ ],
1235
+ thumbnail:
1236
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/round-mirror/thumbnail.png',
621
1237
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/round-mirror/model.glb',
622
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/round-mirror/floor-plan.png',
1238
+ floorPlanUrl:
1239
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/round-mirror/floor-plan.png',
623
1240
  dimensions: [0.57, 0.57, 0.05],
624
1241
  offset: [0, 0.2848, 0],
625
1242
  rotation: [0, 0, 0],
@@ -630,10 +1247,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
630
1247
  id: 'round-carpet',
631
1248
  category: 'furniture',
632
1249
  name: 'Round Carpet',
633
- tags: ['carpet', 'rug', 'mat', 'circular', 'modern', 'minimalist', 'scandinavian', 'textile', 'woven', 'decor', 'accent', 'wool', 'fiber', 'interior'],
634
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/round-carpet/thumbnail.png',
1250
+ tags: [
1251
+ 'carpet',
1252
+ 'rug',
1253
+ 'mat',
1254
+ 'circular',
1255
+ 'modern',
1256
+ 'minimalist',
1257
+ 'scandinavian',
1258
+ 'textile',
1259
+ 'woven',
1260
+ 'decor',
1261
+ 'accent',
1262
+ 'wool',
1263
+ 'fiber',
1264
+ 'interior',
1265
+ ],
1266
+ thumbnail:
1267
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/round-carpet/thumbnail.png',
635
1268
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/round-carpet/model.glb',
636
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/round-carpet/floor-plan.png',
1269
+ floorPlanUrl:
1270
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/round-carpet/floor-plan.png',
637
1271
  dimensions: [1.99, 0.05, 1.99],
638
1272
  offset: [0, 0, 0],
639
1273
  rotation: [0, 0, 0],
@@ -645,9 +1279,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
645
1279
  category: 'furniture',
646
1280
  name: 'Threadmill',
647
1281
  tags: ['floor', 'fitness'],
648
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/threadmill/thumbnail.png',
1282
+ thumbnail:
1283
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/threadmill/thumbnail.png',
649
1284
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/threadmill/model.glb',
650
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/threadmill/floor-plan.png',
1285
+ floorPlanUrl:
1286
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/threadmill/floor-plan.png',
651
1287
  dimensions: [2.1, 1.45, 0.9],
652
1288
  offset: [0, 0, 0],
653
1289
  rotation: [0, 0, 0],
@@ -658,9 +1294,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
658
1294
  category: 'furniture',
659
1295
  name: 'Standing Desk',
660
1296
  tags: ['office'],
661
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/standing-desk-mo8wgz95/thumbnail.png',
1297
+ thumbnail:
1298
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/standing-desk-mo8wgz95/thumbnail.png',
662
1299
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/standing-desk-mo8wgz95/models/item_model_zzZ58018waP8VY6Z.glb',
663
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/standing-desk-mo8wgz95/floor-plan.png',
1300
+ floorPlanUrl:
1301
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/standing-desk-mo8wgz95/floor-plan.png',
664
1302
  dimensions: [1.41, 0.85, 0.68],
665
1303
  offset: [0, 0.4203, 0.0019],
666
1304
  rotation: [0, 0, 0],
@@ -671,12 +1309,14 @@ export const CATALOG_ITEMS: AssetInput[] = [
671
1309
  category: 'appliance',
672
1310
  name: 'Sprinkler',
673
1311
  tags: ['ceiling', 'safety'],
674
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sprinkler/thumbnail.png',
1312
+ thumbnail:
1313
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sprinkler/thumbnail.png',
675
1314
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sprinkler/model.glb',
676
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sprinkler/floor-plan.png',
1315
+ floorPlanUrl:
1316
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sprinkler/floor-plan.png',
677
1317
  dimensions: [0.09, 0.04, 0.09],
678
1318
  offset: [0, 0.0386, 0],
679
- rotation: [3.1416, 0, 0],
1319
+ rotation: [Math.PI, 0, 0],
680
1320
  scale: [1, 1, 1],
681
1321
  attachTo: 'ceiling',
682
1322
  },
@@ -684,10 +1324,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
684
1324
  id: 'exit-sign',
685
1325
  category: 'appliance',
686
1326
  name: 'Exit Sign',
687
- tags: ['sign', 'signage', 'exit', 'emergency', 'safety', 'wayfinding', 'directional', 'lighting', 'led', 'commercial', 'industrial', 'marker', 'egress', 'appliance'],
688
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/exit-sign/thumbnail.png',
1327
+ tags: [
1328
+ 'sign',
1329
+ 'signage',
1330
+ 'exit',
1331
+ 'emergency',
1332
+ 'safety',
1333
+ 'wayfinding',
1334
+ 'directional',
1335
+ 'lighting',
1336
+ 'led',
1337
+ 'commercial',
1338
+ 'industrial',
1339
+ 'marker',
1340
+ 'egress',
1341
+ 'appliance',
1342
+ ],
1343
+ thumbnail:
1344
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/exit-sign/thumbnail.png',
689
1345
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/exit-sign/model.glb',
690
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/exit-sign/floor-plan.png',
1346
+ floorPlanUrl:
1347
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/exit-sign/floor-plan.png',
691
1348
  dimensions: [0.54, 0.27, 0.1],
692
1349
  offset: [0, 0.0036, 0.0452],
693
1350
  rotation: [0, 0, 0],
@@ -698,10 +1355,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
698
1355
  id: 'sewing-machine',
699
1356
  category: 'appliance',
700
1357
  name: 'Sewing Machine',
701
- tags: ['sewing', 'machine', 'appliance', 'tailor', 'craft', 'hobby', 'textile', 'metal', 'plastic', 'vintage', 'modern', 'industrial', 'mending', 'stitching'],
702
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sewing-machine/thumbnail.png',
1358
+ tags: [
1359
+ 'sewing',
1360
+ 'machine',
1361
+ 'appliance',
1362
+ 'tailor',
1363
+ 'craft',
1364
+ 'hobby',
1365
+ 'textile',
1366
+ 'metal',
1367
+ 'plastic',
1368
+ 'vintage',
1369
+ 'modern',
1370
+ 'industrial',
1371
+ 'mending',
1372
+ 'stitching',
1373
+ ],
1374
+ thumbnail:
1375
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sewing-machine/thumbnail.png',
703
1376
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sewing-machine/model.glb',
704
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sewing-machine/floor-plan.png',
1377
+ floorPlanUrl:
1378
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sewing-machine/floor-plan.png',
705
1379
  dimensions: [0.83, 0.68, 0.32],
706
1380
  offset: [0, 0, 0],
707
1381
  rotation: [0, 0, 0],
@@ -712,9 +1386,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
712
1386
  category: 'appliance',
713
1387
  name: 'Television',
714
1388
  tags: ['floor', 'electronics'],
715
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/television/thumbnail.png',
1389
+ thumbnail:
1390
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/television/thumbnail.png',
716
1391
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/television/model.glb',
717
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/television/floor-plan.png',
1392
+ floorPlanUrl:
1393
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/television/floor-plan.png',
718
1394
  dimensions: [1.62, 1.07, 0.38],
719
1395
  offset: [0, 0, 0],
720
1396
  rotation: [0, 0, 0],
@@ -725,9 +1401,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
725
1401
  category: 'appliance',
726
1402
  name: 'Power Outlet',
727
1403
  tags: ['electric'],
728
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/power-outlet-moa09g0o/thumbnail.png',
1404
+ thumbnail:
1405
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/power-outlet-moa09g0o/thumbnail.png',
729
1406
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/power-outlet-moa09g0o/models/item_model_PTDhACPTrrrtLLeI.glb',
730
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/power-outlet-moa09g0o/floor-plan.png',
1407
+ floorPlanUrl:
1408
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/power-outlet-moa09g0o/floor-plan.png',
731
1409
  dimensions: [0.09, 0.09, 0.03],
732
1410
  offset: [0, 0.045, 0.0117],
733
1411
  rotation: [0, 0, 0],
@@ -738,10 +1416,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
738
1416
  id: 'ac-block',
739
1417
  category: 'appliance',
740
1418
  name: 'AC block',
741
- tags: ['conditioner', 'cooler', 'hvac', 'cooling', 'appliance', 'vent', 'modern', 'minimalist', 'metal', 'industrial', 'white', 'utility', 'ventilation', 'unit', 'climate'],
742
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ac-block/thumbnail.png',
1419
+ tags: [
1420
+ 'conditioner',
1421
+ 'cooler',
1422
+ 'hvac',
1423
+ 'cooling',
1424
+ 'appliance',
1425
+ 'vent',
1426
+ 'modern',
1427
+ 'minimalist',
1428
+ 'metal',
1429
+ 'industrial',
1430
+ 'white',
1431
+ 'utility',
1432
+ 'ventilation',
1433
+ 'unit',
1434
+ 'climate',
1435
+ ],
1436
+ thumbnail:
1437
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ac-block/thumbnail.png',
743
1438
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ac-block/model.glb',
744
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ac-block/floor-plan.png',
1439
+ floorPlanUrl:
1440
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ac-block/floor-plan.png',
745
1441
  dimensions: [1.06, 0.95, 1.06],
746
1442
  offset: [0, 0, 0],
747
1443
  rotation: [0, 0, 0],
@@ -752,9 +1448,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
752
1448
  category: 'appliance',
753
1449
  name: 'Stereo Speaker',
754
1450
  tags: ['floor', 'electronics'],
755
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stereo-speaker/thumbnail.png',
1451
+ thumbnail:
1452
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stereo-speaker/thumbnail.png',
756
1453
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stereo-speaker/model.glb',
757
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stereo-speaker/floor-plan.png',
1454
+ floorPlanUrl:
1455
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stereo-speaker/floor-plan.png',
758
1456
  dimensions: [0.23, 1, 0.34],
759
1457
  offset: [0, 0, -0.0129],
760
1458
  rotation: [0, 0, 0],
@@ -765,9 +1463,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
765
1463
  category: 'appliance',
766
1464
  name: 'Thermostat',
767
1465
  tags: ['wall', 'climate', 'electrical'],
768
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/thermostat/thumbnail.png',
1466
+ thumbnail:
1467
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/thermostat/thumbnail.png',
769
1468
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/thermostat/model.glb',
770
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/thermostat/floor-plan.png',
1469
+ floorPlanUrl:
1470
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/thermostat/floor-plan.png',
771
1471
  dimensions: [0.1, 0.1, 0.01],
772
1472
  offset: [0, 0.0013, 0.0022],
773
1473
  rotation: [0, 0, 0],
@@ -779,9 +1479,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
779
1479
  category: 'appliance',
780
1480
  name: 'Toaster',
781
1481
  tags: ['countertop', 'electronics'],
782
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toaster/thumbnail.png',
1482
+ thumbnail:
1483
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toaster/thumbnail.png',
783
1484
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toaster/model.glb',
784
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toaster/floor-plan.png',
1485
+ floorPlanUrl:
1486
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toaster/floor-plan.png',
785
1487
  dimensions: [0.28, 0.23, 0.17],
786
1488
  offset: [-0.0057, 0, 0],
787
1489
  rotation: [0, 0, 0],
@@ -791,10 +1493,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
791
1493
  id: 'kettle',
792
1494
  category: 'appliance',
793
1495
  name: 'Kettle',
794
- tags: ['kettle', 'teapot', 'boiler', 'electric', 'kitchen', 'appliance', 'metal', 'steel', 'modern', 'tea', 'coffee', 'boiling', 'beverage', 'breakfast'],
795
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kettle/thumbnail.png',
1496
+ tags: [
1497
+ 'kettle',
1498
+ 'teapot',
1499
+ 'boiler',
1500
+ 'electric',
1501
+ 'kitchen',
1502
+ 'appliance',
1503
+ 'metal',
1504
+ 'steel',
1505
+ 'modern',
1506
+ 'tea',
1507
+ 'coffee',
1508
+ 'boiling',
1509
+ 'beverage',
1510
+ 'breakfast',
1511
+ ],
1512
+ thumbnail:
1513
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kettle/thumbnail.png',
796
1514
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kettle/model.glb',
797
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kettle/floor-plan.png',
1515
+ floorPlanUrl:
1516
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kettle/floor-plan.png',
798
1517
  dimensions: [0.24, 0.25, 0.18],
799
1518
  offset: [-0.026, 0, 0],
800
1519
  rotation: [0, 0, 0],
@@ -804,10 +1523,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
804
1523
  id: 'hydrant',
805
1524
  category: 'appliance',
806
1525
  name: 'Hydrant',
807
- tags: ['hydrant', 'faucet', 'spigot', 'valve', 'metal', 'iron', 'industrial', 'vintage', 'retro', 'plumbing', 'water', 'utility', 'outdoor', 'garden', 'red'],
808
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/hydrant/thumbnail.png',
1526
+ tags: [
1527
+ 'hydrant',
1528
+ 'faucet',
1529
+ 'spigot',
1530
+ 'valve',
1531
+ 'metal',
1532
+ 'iron',
1533
+ 'industrial',
1534
+ 'vintage',
1535
+ 'retro',
1536
+ 'plumbing',
1537
+ 'water',
1538
+ 'utility',
1539
+ 'outdoor',
1540
+ 'garden',
1541
+ 'red',
1542
+ ],
1543
+ thumbnail:
1544
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/hydrant/thumbnail.png',
809
1545
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/hydrant/model.glb',
810
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/hydrant/floor-plan.png',
1546
+ floorPlanUrl:
1547
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/hydrant/floor-plan.png',
811
1548
  dimensions: [0.64, 0.88, 0.64],
812
1549
  offset: [-0.0046, 0, -0.0008],
813
1550
  rotation: [0, 0, 0],
@@ -817,10 +1554,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
817
1554
  id: 'fire-detector',
818
1555
  category: 'appliance',
819
1556
  name: 'Fire Detector',
820
- tags: ['detector', 'alarm', 'sensor', 'smoke', 'alert', 'safety', 'security', 'protection', 'appliance', 'white', 'plastic', 'minimalist', 'modern', 'warning', 'electronic'],
821
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fire-detector/thumbnail.png',
1557
+ tags: [
1558
+ 'detector',
1559
+ 'alarm',
1560
+ 'sensor',
1561
+ 'smoke',
1562
+ 'alert',
1563
+ 'safety',
1564
+ 'security',
1565
+ 'protection',
1566
+ 'appliance',
1567
+ 'white',
1568
+ 'plastic',
1569
+ 'minimalist',
1570
+ 'modern',
1571
+ 'warning',
1572
+ 'electronic',
1573
+ ],
1574
+ thumbnail:
1575
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fire-detector/thumbnail.png',
822
1576
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fire-detector/model.glb',
823
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fire-detector/floor-plan.png',
1577
+ floorPlanUrl:
1578
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fire-detector/floor-plan.png',
824
1579
  dimensions: [0.12, 0.19, 0.07],
825
1580
  offset: [0.0281, 0.012, 0.0015],
826
1581
  rotation: [0, 0, 0],
@@ -832,12 +1587,14 @@ export const CATALOG_ITEMS: AssetInput[] = [
832
1587
  category: 'appliance',
833
1588
  name: 'Smoke Detector',
834
1589
  tags: ['ceiling', 'safety'],
835
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/smoke-detector/thumbnail.png',
1590
+ thumbnail:
1591
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/smoke-detector/thumbnail.png',
836
1592
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/smoke-detector/model.glb',
837
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/smoke-detector/floor-plan.png',
1593
+ floorPlanUrl:
1594
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/smoke-detector/floor-plan.png',
838
1595
  dimensions: [0.16, 0.05, 0.16],
839
1596
  offset: [0, 0.0492, 0],
840
- rotation: [3.1416, 0, 0],
1597
+ rotation: [Math.PI, 0, 0],
841
1598
  scale: [1, 1, 1],
842
1599
  attachTo: 'ceiling',
843
1600
  },
@@ -845,10 +1602,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
845
1602
  id: 'coffee-machine',
846
1603
  category: 'appliance',
847
1604
  name: 'Coffee Machine',
848
- tags: ['coffee', 'machine', 'maker', 'espresso', 'brewer', 'kitchen', 'appliance', 'modern', 'metal', 'sleek', 'black', 'silver', 'beverage', 'brewing'],
849
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coffee-machine/thumbnail.png',
1605
+ tags: [
1606
+ 'coffee',
1607
+ 'machine',
1608
+ 'maker',
1609
+ 'espresso',
1610
+ 'brewer',
1611
+ 'kitchen',
1612
+ 'appliance',
1613
+ 'modern',
1614
+ 'metal',
1615
+ 'sleek',
1616
+ 'black',
1617
+ 'silver',
1618
+ 'beverage',
1619
+ 'brewing',
1620
+ ],
1621
+ thumbnail:
1622
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coffee-machine/thumbnail.png',
850
1623
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coffee-machine/model.glb',
851
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coffee-machine/floor-plan.png',
1624
+ floorPlanUrl:
1625
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/coffee-machine/floor-plan.png',
852
1626
  dimensions: [0.16, 0.24, 0.23],
853
1627
  offset: [0.0003, 0.0003, -0.0366],
854
1628
  rotation: [0, 0, 0],
@@ -858,32 +1632,62 @@ export const CATALOG_ITEMS: AssetInput[] = [
858
1632
  id: 'ceiling-fan',
859
1633
  category: 'appliance',
860
1634
  name: 'Ceiling fan',
861
- tags: ['fan', 'ventilator', 'cooling', 'airflow', 'blades', 'modern', 'industrial', 'metal', 'wood', 'appliance', 'ventilation', 'breeze', 'climate', 'circulation'],
862
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ceiling-fan/thumbnail.png',
1635
+ tags: [
1636
+ 'fan',
1637
+ 'ventilator',
1638
+ 'cooling',
1639
+ 'airflow',
1640
+ 'blades',
1641
+ 'modern',
1642
+ 'industrial',
1643
+ 'metal',
1644
+ 'wood',
1645
+ 'appliance',
1646
+ 'ventilation',
1647
+ 'breeze',
1648
+ 'climate',
1649
+ 'circulation',
1650
+ ],
1651
+ thumbnail:
1652
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ceiling-fan/thumbnail.png',
863
1653
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ceiling-fan/model.glb',
864
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ceiling-fan/floor-plan.png',
1654
+ floorPlanUrl:
1655
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ceiling-fan/floor-plan.png',
865
1656
  dimensions: [0.92, 0.35, 1.04],
866
1657
  offset: [-0.1371, 0.3448, 0],
867
1658
  rotation: [0, 0, 0],
868
1659
  scale: [1, 1, 1],
869
1660
  attachTo: 'ceiling',
870
1661
  interactive: {
871
- controls: [
872
- { kind: 'toggle' },
873
- ],
874
- effects: [
875
- { kind: 'animation', clips: {"on":"On"} },
876
- ],
1662
+ controls: [{ kind: 'toggle' }],
1663
+ effects: [{ kind: 'animation', clips: { on: 'On' } }],
877
1664
  },
878
1665
  },
879
1666
  {
880
1667
  id: 'iron',
881
1668
  category: 'appliance',
882
1669
  name: 'Iron',
883
- tags: ['iron', 'steamer', 'laundry', 'clothing', 'modern', 'metal', 'plastic', 'ceramic', 'garment', 'pressing', 'household', 'utility', 'appliance', 'sleek'],
884
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/iron/thumbnail.png',
1670
+ tags: [
1671
+ 'iron',
1672
+ 'steamer',
1673
+ 'laundry',
1674
+ 'clothing',
1675
+ 'modern',
1676
+ 'metal',
1677
+ 'plastic',
1678
+ 'ceramic',
1679
+ 'garment',
1680
+ 'pressing',
1681
+ 'household',
1682
+ 'utility',
1683
+ 'appliance',
1684
+ 'sleek',
1685
+ ],
1686
+ thumbnail:
1687
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/iron/thumbnail.png',
885
1688
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/iron/model.glb',
886
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/iron/floor-plan.png',
1689
+ floorPlanUrl:
1690
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/iron/floor-plan.png',
887
1691
  dimensions: [0.36, 0.24, 0.21],
888
1692
  offset: [0.026, 0, 0],
889
1693
  rotation: [0, 0, 0],
@@ -893,10 +1697,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
893
1697
  id: 'air-conditioning',
894
1698
  category: 'appliance',
895
1699
  name: 'Air Conditioning',
896
- tags: ['conditioner', 'cooling', 'hvac', 'appliance', 'electronic', 'modern', 'minimalist', 'white', 'climate', 'temperature', 'ventilation', 'airflow', 'comfort', 'sleek'],
897
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/air-conditioning/thumbnail.png',
1700
+ tags: [
1701
+ 'conditioner',
1702
+ 'cooling',
1703
+ 'hvac',
1704
+ 'appliance',
1705
+ 'electronic',
1706
+ 'modern',
1707
+ 'minimalist',
1708
+ 'white',
1709
+ 'climate',
1710
+ 'temperature',
1711
+ 'ventilation',
1712
+ 'airflow',
1713
+ 'comfort',
1714
+ 'sleek',
1715
+ ],
1716
+ thumbnail:
1717
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/air-conditioning/thumbnail.png',
898
1718
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/air-conditioning/model.glb',
899
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/air-conditioning/floor-plan.png',
1719
+ floorPlanUrl:
1720
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/air-conditioning/floor-plan.png',
900
1721
  dimensions: [1.56, 0.6, 0.41],
901
1722
  offset: [0, 0.3, 0.2018],
902
1723
  rotation: [0, 0, 0],
@@ -907,10 +1728,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
907
1728
  id: 'computer',
908
1729
  category: 'appliance',
909
1730
  name: 'Computer',
910
- tags: ['computer', 'desktop', 'workstation', 'monitor', 'technology', 'office', 'electronics', 'modern', 'sleek', 'metal', 'silver', 'minimalist', 'hardware', 'productivity'],
911
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/computer/thumbnail.png',
1731
+ tags: [
1732
+ 'computer',
1733
+ 'desktop',
1734
+ 'workstation',
1735
+ 'monitor',
1736
+ 'technology',
1737
+ 'office',
1738
+ 'electronics',
1739
+ 'modern',
1740
+ 'sleek',
1741
+ 'metal',
1742
+ 'silver',
1743
+ 'minimalist',
1744
+ 'hardware',
1745
+ 'productivity',
1746
+ ],
1747
+ thumbnail:
1748
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/computer/thumbnail.png',
912
1749
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/computer/model.glb',
913
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/computer/floor-plan.png',
1750
+ floorPlanUrl:
1751
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/computer/floor-plan.png',
914
1752
  dimensions: [0.68, 0.48, 0.19],
915
1753
  offset: [0, 0, 0],
916
1754
  rotation: [0, 0, 0],
@@ -920,10 +1758,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
920
1758
  id: 'alarm-keypad',
921
1759
  category: 'appliance',
922
1760
  name: 'Alarm Keypad',
923
- tags: ['alarm', 'keypad', 'panel', 'security', 'interface', 'controller', 'modern', 'minimalist', 'digital', 'plastic', 'white', 'electronic', 'safety', 'automation', 'smart'],
924
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/alarm-keypad/thumbnail.png',
1761
+ tags: [
1762
+ 'alarm',
1763
+ 'keypad',
1764
+ 'panel',
1765
+ 'security',
1766
+ 'interface',
1767
+ 'controller',
1768
+ 'modern',
1769
+ 'minimalist',
1770
+ 'digital',
1771
+ 'plastic',
1772
+ 'white',
1773
+ 'electronic',
1774
+ 'safety',
1775
+ 'automation',
1776
+ 'smart',
1777
+ ],
1778
+ thumbnail:
1779
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/alarm-keypad/thumbnail.png',
925
1780
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/alarm-keypad/model.glb',
926
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/alarm-keypad/floor-plan.png',
1781
+ floorPlanUrl:
1782
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/alarm-keypad/floor-plan.png',
927
1783
  dimensions: [0.18, 0.13, 0.03],
928
1784
  offset: [0, 0.0671, -0.0002],
929
1785
  rotation: [1.5708, 0, 0],
@@ -934,10 +1790,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
934
1790
  id: 'ev-wall-charger',
935
1791
  category: 'appliance',
936
1792
  name: 'Ev-wall-charger',
937
- tags: ['charger', 'station', 'electric', 'vehicle', 'automotive', 'garage', 'modern', 'minimalist', 'power', 'energy', 'appliance', 'tech', 'sleek', 'plastic', 'black'],
938
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ev-wall-charger/thumbnail.png',
1793
+ tags: [
1794
+ 'charger',
1795
+ 'station',
1796
+ 'electric',
1797
+ 'vehicle',
1798
+ 'automotive',
1799
+ 'garage',
1800
+ 'modern',
1801
+ 'minimalist',
1802
+ 'power',
1803
+ 'energy',
1804
+ 'appliance',
1805
+ 'tech',
1806
+ 'sleek',
1807
+ 'plastic',
1808
+ 'black',
1809
+ ],
1810
+ thumbnail:
1811
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ev-wall-charger/thumbnail.png',
939
1812
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ev-wall-charger/model.glb',
940
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ev-wall-charger/floor-plan.png',
1813
+ floorPlanUrl:
1814
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ev-wall-charger/floor-plan.png',
941
1815
  dimensions: [0.29, 0.65, 0.17],
942
1816
  offset: [-0.0677, 0.2979, 0.1503],
943
1817
  rotation: [0, 0, 0],
@@ -948,10 +1822,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
948
1822
  id: 'electric-panel',
949
1823
  category: 'appliance',
950
1824
  name: 'Electric Panel',
951
- tags: ['breaker', 'box', 'fusebox', 'electrical', 'utility', 'industrial', 'metal', 'steel', 'power', 'circuit', 'technical', 'maintenance', 'energy', 'appliance'],
952
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/electric-panel/thumbnail.png',
1825
+ tags: [
1826
+ 'breaker',
1827
+ 'box',
1828
+ 'fusebox',
1829
+ 'electrical',
1830
+ 'utility',
1831
+ 'industrial',
1832
+ 'metal',
1833
+ 'steel',
1834
+ 'power',
1835
+ 'circuit',
1836
+ 'technical',
1837
+ 'maintenance',
1838
+ 'energy',
1839
+ 'appliance',
1840
+ ],
1841
+ thumbnail:
1842
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/electric-panel/thumbnail.png',
953
1843
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/electric-panel/model.glb',
954
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/electric-panel/floor-plan.png',
1844
+ floorPlanUrl:
1845
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/electric-panel/floor-plan.png',
955
1846
  dimensions: [0.4, 0.98, 0.11],
956
1847
  offset: [0, 0.0036, 0.0611],
957
1848
  rotation: [0, 0, 0],
@@ -962,10 +1853,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
962
1853
  id: 'bathroom-sink',
963
1854
  category: 'bathroom',
964
1855
  name: 'Bathroom Sink',
965
- tags: ['sink', 'basin', 'lavatory', 'washbasin', 'vanity', 'modern', 'minimalist', 'ceramic', 'porcelain', 'white', 'plumbing', 'washing', 'bathroom', 'hygiene'],
966
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bathroom-sink/thumbnail.png',
1856
+ tags: [
1857
+ 'sink',
1858
+ 'basin',
1859
+ 'lavatory',
1860
+ 'washbasin',
1861
+ 'vanity',
1862
+ 'modern',
1863
+ 'minimalist',
1864
+ 'ceramic',
1865
+ 'porcelain',
1866
+ 'white',
1867
+ 'plumbing',
1868
+ 'washing',
1869
+ 'bathroom',
1870
+ 'hygiene',
1871
+ ],
1872
+ thumbnail:
1873
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bathroom-sink/thumbnail.png',
967
1874
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bathroom-sink/model.glb',
968
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bathroom-sink/floor-plan.png',
1875
+ floorPlanUrl:
1876
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bathroom-sink/floor-plan.png',
969
1877
  dimensions: [1.83, 0.97, 0.63],
970
1878
  offset: [0.1037, 0, 0.0221],
971
1879
  rotation: [0, 0, 0],
@@ -975,10 +1883,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
975
1883
  id: 'shower-angle',
976
1884
  category: 'bathroom',
977
1885
  name: 'Angle Shower',
978
- tags: ['shower', 'enclosure', 'cubicle', 'modern', 'glass', 'corner', 'bathroom', 'chrome', 'minimalist', 'washing', 'hygiene', 'plumbing', 'stall', 'sleek'],
979
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-angle/thumbnail.png',
1886
+ tags: [
1887
+ 'shower',
1888
+ 'enclosure',
1889
+ 'cubicle',
1890
+ 'modern',
1891
+ 'glass',
1892
+ 'corner',
1893
+ 'bathroom',
1894
+ 'chrome',
1895
+ 'minimalist',
1896
+ 'washing',
1897
+ 'hygiene',
1898
+ 'plumbing',
1899
+ 'stall',
1900
+ 'sleek',
1901
+ ],
1902
+ thumbnail:
1903
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-angle/thumbnail.png',
980
1904
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-angle/model.glb',
981
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-angle/floor-plan.png',
1905
+ floorPlanUrl:
1906
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-angle/floor-plan.png',
982
1907
  dimensions: [0.83, 1.81, 0.83],
983
1908
  offset: [0.4102, 0, -0.4102],
984
1909
  rotation: [0, 0, 0],
@@ -989,9 +1914,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
989
1914
  category: 'bathroom',
990
1915
  name: 'Toilet Paper',
991
1916
  tags: ['wall', 'decor'],
992
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toilet-paper/thumbnail.png',
1917
+ thumbnail:
1918
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toilet-paper/thumbnail.png',
993
1919
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toilet-paper/model.glb',
994
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toilet-paper/floor-plan.png',
1920
+ floorPlanUrl:
1921
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toilet-paper/floor-plan.png',
995
1922
  dimensions: [0.26, 0.27, 0.24],
996
1923
  offset: [0, 0.145, 0.1147],
997
1924
  rotation: [0, 0, 0],
@@ -1003,9 +1930,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
1003
1930
  category: 'bathroom',
1004
1931
  name: 'Washing Machine',
1005
1932
  tags: ['floor', 'large', 'electronics'],
1006
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/washing-machine/thumbnail.png',
1933
+ thumbnail:
1934
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/washing-machine/thumbnail.png',
1007
1935
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/washing-machine/model.glb',
1008
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/washing-machine/floor-plan.png',
1936
+ floorPlanUrl:
1937
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/washing-machine/floor-plan.png',
1009
1938
  dimensions: [0.6, 0.86, 0.53],
1010
1939
  offset: [0, 0, -0.0114],
1011
1940
  rotation: [0, 0, 0],
@@ -1015,10 +1944,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
1015
1944
  id: 'shower-rug',
1016
1945
  category: 'bathroom',
1017
1946
  name: 'Shower Rug',
1018
- tags: ['rug', 'mat', 'bathmat', 'absorbent', 'cotton', 'chenille', 'modern', 'soft', 'minimalist', 'spa', 'bathroom', 'hygiene', 'plush', 'microfiber', 'woven'],
1019
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-rug/thumbnail.png',
1947
+ tags: [
1948
+ 'rug',
1949
+ 'mat',
1950
+ 'bathmat',
1951
+ 'absorbent',
1952
+ 'cotton',
1953
+ 'chenille',
1954
+ 'modern',
1955
+ 'soft',
1956
+ 'minimalist',
1957
+ 'spa',
1958
+ 'bathroom',
1959
+ 'hygiene',
1960
+ 'plush',
1961
+ 'microfiber',
1962
+ 'woven',
1963
+ ],
1964
+ thumbnail:
1965
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-rug/thumbnail.png',
1020
1966
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-rug/model.glb',
1021
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-rug/floor-plan.png',
1967
+ floorPlanUrl:
1968
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-rug/floor-plan.png',
1022
1969
  dimensions: [0.77, 0.03, 0.48],
1023
1970
  offset: [0, 0, 0],
1024
1971
  rotation: [0, 0, 0],
@@ -1029,10 +1976,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
1029
1976
  id: 'bathtub',
1030
1977
  category: 'bathroom',
1031
1978
  name: 'Bathtub',
1032
- tags: ['bathtub', 'tub', 'bath', 'soaking', 'modern', 'minimalist', 'porcelain', 'acrylic', 'ceramic', 'bathroom', 'relaxation', 'spa'],
1033
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bathtub/thumbnail.png',
1979
+ tags: [
1980
+ 'bathtub',
1981
+ 'tub',
1982
+ 'bath',
1983
+ 'soaking',
1984
+ 'modern',
1985
+ 'minimalist',
1986
+ 'porcelain',
1987
+ 'acrylic',
1988
+ 'ceramic',
1989
+ 'bathroom',
1990
+ 'relaxation',
1991
+ 'spa',
1992
+ ],
1993
+ thumbnail:
1994
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bathtub/thumbnail.png',
1034
1995
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bathtub/model.glb',
1035
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bathtub/floor-plan.png',
1996
+ floorPlanUrl:
1997
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bathtub/floor-plan.png',
1036
1998
  dimensions: [2.34, 0.79, 1.11],
1037
1999
  offset: [0, 0, 0],
1038
2000
  rotation: [0, 0, 0],
@@ -1042,10 +2004,26 @@ export const CATALOG_ITEMS: AssetInput[] = [
1042
2004
  id: 'laundry-bag',
1043
2005
  category: 'bathroom',
1044
2006
  name: 'Laundry Bag',
1045
- tags: ['laundry', 'bag', 'hamper', 'basket', 'canvas', 'fabric', 'storage', 'organization', 'modern', 'minimalist', 'utility', 'cleaning', 'linen'],
1046
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/laundry-bag/thumbnail.png',
2007
+ tags: [
2008
+ 'laundry',
2009
+ 'bag',
2010
+ 'hamper',
2011
+ 'basket',
2012
+ 'canvas',
2013
+ 'fabric',
2014
+ 'storage',
2015
+ 'organization',
2016
+ 'modern',
2017
+ 'minimalist',
2018
+ 'utility',
2019
+ 'cleaning',
2020
+ 'linen',
2021
+ ],
2022
+ thumbnail:
2023
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/laundry-bag/thumbnail.png',
1047
2024
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/laundry-bag/model.glb',
1048
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/laundry-bag/floor-plan.png',
2025
+ floorPlanUrl:
2026
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/laundry-bag/floor-plan.png',
1049
2027
  dimensions: [0.46, 0.78, 0.48],
1050
2028
  offset: [0, 0, -0.0006],
1051
2029
  rotation: [0, 0, 0],
@@ -1056,9 +2034,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
1056
2034
  category: 'bathroom',
1057
2035
  name: 'Squared Shower',
1058
2036
  tags: ['floor', 'large'],
1059
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-square/thumbnail.png',
2037
+ thumbnail:
2038
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-square/thumbnail.png',
1060
2039
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-square/model.glb',
1061
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-square/floor-plan.png',
2040
+ floorPlanUrl:
2041
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/shower-square/floor-plan.png',
1062
2042
  dimensions: [0.81, 1.8, 0.81],
1063
2043
  offset: [0.4, 0, -0.3995],
1064
2044
  rotation: [0, 0, 0],
@@ -1068,10 +2048,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
1068
2048
  id: 'drying-rack',
1069
2049
  category: 'bathroom',
1070
2050
  name: 'Drying Rack',
1071
- tags: ['dryer', 'rack', 'airer', 'laundry', 'hanging', 'organizer', 'metal', 'steel', 'modern', 'minimalist', 'storage', 'bathroom'],
1072
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/drying-rack/thumbnail.png',
2051
+ tags: [
2052
+ 'dryer',
2053
+ 'rack',
2054
+ 'airer',
2055
+ 'laundry',
2056
+ 'hanging',
2057
+ 'organizer',
2058
+ 'metal',
2059
+ 'steel',
2060
+ 'modern',
2061
+ 'minimalist',
2062
+ 'storage',
2063
+ 'bathroom',
2064
+ ],
2065
+ thumbnail:
2066
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/drying-rack/thumbnail.png',
1073
2067
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/drying-rack/model.glb',
1074
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/drying-rack/floor-plan.png',
2068
+ floorPlanUrl:
2069
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/drying-rack/floor-plan.png',
1075
2070
  dimensions: [1.79, 1.05, 0.58],
1076
2071
  offset: [0, -0.0058, 0],
1077
2072
  rotation: [0, 0, 0],
@@ -1082,9 +2077,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
1082
2077
  category: 'bathroom',
1083
2078
  name: 'Toilet',
1084
2079
  tags: ['floor', 'large'],
1085
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toilet/thumbnail.png',
2080
+ thumbnail:
2081
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toilet/thumbnail.png',
1086
2082
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toilet/model.glb',
1087
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toilet/floor-plan.png',
2083
+ floorPlanUrl:
2084
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/toilet/floor-plan.png',
1088
2085
  dimensions: [0.42, 0.82, 0.72],
1089
2086
  offset: [0, 0, -0.2393],
1090
2087
  rotation: [0, 0, 0],
@@ -1094,10 +2091,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
1094
2091
  id: 'microwave',
1095
2092
  category: 'kitchen',
1096
2093
  name: 'Microwave',
1097
- tags: ['microwave', 'oven', 'appliance', 'kitchen', 'cooking', 'heating', 'metal', 'steel', 'modern', 'sleek', 'black', 'silver', 'electronics', 'glass', 'contemporary'],
1098
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/microwave/thumbnail.png',
2094
+ tags: [
2095
+ 'microwave',
2096
+ 'oven',
2097
+ 'appliance',
2098
+ 'kitchen',
2099
+ 'cooking',
2100
+ 'heating',
2101
+ 'metal',
2102
+ 'steel',
2103
+ 'modern',
2104
+ 'sleek',
2105
+ 'black',
2106
+ 'silver',
2107
+ 'electronics',
2108
+ 'glass',
2109
+ 'contemporary',
2110
+ ],
2111
+ thumbnail:
2112
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/microwave/thumbnail.png',
1099
2113
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/microwave/model.glb',
1100
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/microwave/floor-plan.png',
2114
+ floorPlanUrl:
2115
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/microwave/floor-plan.png',
1101
2116
  dimensions: [0.52, 0.27, 0.41],
1102
2117
  offset: [0, 0, -0.0225],
1103
2118
  rotation: [0, 0, 0],
@@ -1107,10 +2122,26 @@ export const CATALOG_ITEMS: AssetInput[] = [
1107
2122
  id: 'cutting-board',
1108
2123
  category: 'kitchen',
1109
2124
  name: 'Cutting Board',
1110
- tags: ['board', 'wood', 'kitchen', 'prep', 'chopping', 'serving', 'block', 'rustic', 'culinary', 'timber', 'natural', 'chef', 'cooking'],
1111
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/cutting-board/thumbnail.png',
2125
+ tags: [
2126
+ 'board',
2127
+ 'wood',
2128
+ 'kitchen',
2129
+ 'prep',
2130
+ 'chopping',
2131
+ 'serving',
2132
+ 'block',
2133
+ 'rustic',
2134
+ 'culinary',
2135
+ 'timber',
2136
+ 'natural',
2137
+ 'chef',
2138
+ 'cooking',
2139
+ ],
2140
+ thumbnail:
2141
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/cutting-board/thumbnail.png',
1112
2142
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/cutting-board/model.glb',
1113
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/cutting-board/floor-plan.png',
2143
+ floorPlanUrl:
2144
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/cutting-board/floor-plan.png',
1114
2145
  dimensions: [0.27, 0.07, 0.41],
1115
2146
  offset: [0, 0, 0],
1116
2147
  rotation: [0, 0, 0],
@@ -1120,10 +2151,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
1120
2151
  id: 'kitchen-utensils',
1121
2152
  category: 'kitchen',
1122
2153
  name: 'Kitchen Utensils',
1123
- tags: ['utensils', 'tools', 'kitchenware', 'cooking', 'prep', 'steel', 'silicone', 'wood', 'modern', 'gadgets', 'accessories', 'silverware', 'chef', 'serving', 'baking'],
1124
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-utensils/thumbnail.png',
2154
+ tags: [
2155
+ 'utensils',
2156
+ 'tools',
2157
+ 'kitchenware',
2158
+ 'cooking',
2159
+ 'prep',
2160
+ 'steel',
2161
+ 'silicone',
2162
+ 'wood',
2163
+ 'modern',
2164
+ 'gadgets',
2165
+ 'accessories',
2166
+ 'silverware',
2167
+ 'chef',
2168
+ 'serving',
2169
+ 'baking',
2170
+ ],
2171
+ thumbnail:
2172
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-utensils/thumbnail.png',
1125
2173
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-utensils/model.glb',
1126
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-utensils/floor-plan.png',
2174
+ floorPlanUrl:
2175
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-utensils/floor-plan.png',
1127
2176
  dimensions: [0.23, 0.49, 0.21],
1128
2177
  offset: [0.0184, 0, 0.0165],
1129
2178
  rotation: [0, 0, 0],
@@ -1133,10 +2182,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
1133
2182
  id: 'kitchen-counter',
1134
2183
  category: 'kitchen',
1135
2184
  name: 'Kitchen Counter',
1136
- tags: ['counter', 'countertop', 'island', 'surface', 'workspace', 'stone', 'granite', 'marble', 'modern', 'kitchen', 'cooking', 'prep', 'sleek', 'polished'],
1137
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-counter/thumbnail.png',
2185
+ tags: [
2186
+ 'counter',
2187
+ 'countertop',
2188
+ 'island',
2189
+ 'surface',
2190
+ 'workspace',
2191
+ 'stone',
2192
+ 'granite',
2193
+ 'marble',
2194
+ 'modern',
2195
+ 'kitchen',
2196
+ 'cooking',
2197
+ 'prep',
2198
+ 'sleek',
2199
+ 'polished',
2200
+ ],
2201
+ thumbnail:
2202
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-counter/thumbnail.png',
1138
2203
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-counter/model.glb',
1139
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-counter/floor-plan.png',
2204
+ floorPlanUrl:
2205
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-counter/floor-plan.png',
1140
2206
  dimensions: [1.96, 0.73, 0.63],
1141
2207
  offset: [0.0012, 0, -0.0004],
1142
2208
  rotation: [0, 0, 0],
@@ -1147,10 +2213,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
1147
2213
  id: 'hood',
1148
2214
  category: 'kitchen',
1149
2215
  name: 'Hood',
1150
- tags: ['hood', 'vent', 'extractor', 'ventilation', 'kitchen', 'cooking', 'appliance', 'metal', 'steel', 'stainless', 'modern', 'sleek', 'industrial', 'minimalist'],
1151
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/hood/thumbnail.png',
2216
+ tags: [
2217
+ 'hood',
2218
+ 'vent',
2219
+ 'extractor',
2220
+ 'ventilation',
2221
+ 'kitchen',
2222
+ 'cooking',
2223
+ 'appliance',
2224
+ 'metal',
2225
+ 'steel',
2226
+ 'stainless',
2227
+ 'modern',
2228
+ 'sleek',
2229
+ 'industrial',
2230
+ 'minimalist',
2231
+ ],
2232
+ thumbnail:
2233
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/hood/thumbnail.png',
1152
2234
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/hood/model.glb',
1153
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/hood/floor-plan.png',
2235
+ floorPlanUrl:
2236
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/hood/floor-plan.png',
1154
2237
  dimensions: [1.21, 0.52, 0.51],
1155
2238
  offset: [0, 0.2718, 0],
1156
2239
  rotation: [0, 0, 0],
@@ -1161,10 +2244,26 @@ export const CATALOG_ITEMS: AssetInput[] = [
1161
2244
  id: 'wooden-kitchen-bar-moa2hhh4',
1162
2245
  category: 'kitchen',
1163
2246
  name: 'Kitchen Bar',
1164
- tags: ['bar', 'counter', 'island', 'breakfast', 'modern', 'contemporary', 'wood', 'stone', 'quartz', 'seating', 'dining', 'prep', 'entertaining'],
1165
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/wooden-kitchen-bar-moa2hhh4/thumbnail.png',
2247
+ tags: [
2248
+ 'bar',
2249
+ 'counter',
2250
+ 'island',
2251
+ 'breakfast',
2252
+ 'modern',
2253
+ 'contemporary',
2254
+ 'wood',
2255
+ 'stone',
2256
+ 'quartz',
2257
+ 'seating',
2258
+ 'dining',
2259
+ 'prep',
2260
+ 'entertaining',
2261
+ ],
2262
+ thumbnail:
2263
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/wooden-kitchen-bar-moa2hhh4/thumbnail.png',
1166
2264
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/wooden-kitchen-bar-moa2hhh4/models/item_model_c6iR1M2eE2I8k5M3.glb',
1167
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/wooden-kitchen-bar-moa2hhh4/floor-plan.png',
2265
+ floorPlanUrl:
2266
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/wooden-kitchen-bar-moa2hhh4/floor-plan.png',
1168
2267
  dimensions: [2.5, 1.06, 0.96],
1169
2268
  offset: [0.0003, 0.5322, -0.0024],
1170
2269
  rotation: [0, 0, 0],
@@ -1175,10 +2274,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
1175
2274
  id: 'kitchen-cabinet',
1176
2275
  category: 'kitchen',
1177
2276
  name: 'Kitchen Cabinet',
1178
- tags: ['cabinet', 'cupboard', 'storage', 'kitchen', 'shaker', 'pantry', 'wood', 'timber', 'modern', 'contemporary', 'minimalist', 'organization'],
1179
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-cabinet/thumbnail.png',
2277
+ tags: [
2278
+ 'cabinet',
2279
+ 'cupboard',
2280
+ 'storage',
2281
+ 'kitchen',
2282
+ 'shaker',
2283
+ 'pantry',
2284
+ 'wood',
2285
+ 'timber',
2286
+ 'modern',
2287
+ 'contemporary',
2288
+ 'minimalist',
2289
+ 'organization',
2290
+ ],
2291
+ thumbnail:
2292
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-cabinet/thumbnail.png',
1180
2293
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-cabinet/model.glb',
1181
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-cabinet/floor-plan.png',
2294
+ floorPlanUrl:
2295
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-cabinet/floor-plan.png',
1182
2296
  dimensions: [1.65, 1.09, 0.77],
1183
2297
  offset: [0, 0.0004, 0],
1184
2298
  rotation: [0, 0, 0],
@@ -1189,10 +2303,26 @@ export const CATALOG_ITEMS: AssetInput[] = [
1189
2303
  id: 'kitchen',
1190
2304
  category: 'kitchen',
1191
2305
  name: 'Kitchen',
1192
- tags: ['kitchen', 'cabinetry', 'cabinet', 'island', 'cooking', 'storage', 'modern', 'contemporary', 'minimalist', 'wood', 'marble', 'culinary', 'pantry'],
1193
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen/thumbnail.png',
2306
+ tags: [
2307
+ 'kitchen',
2308
+ 'cabinetry',
2309
+ 'cabinet',
2310
+ 'island',
2311
+ 'cooking',
2312
+ 'storage',
2313
+ 'modern',
2314
+ 'contemporary',
2315
+ 'minimalist',
2316
+ 'wood',
2317
+ 'marble',
2318
+ 'culinary',
2319
+ 'pantry',
2320
+ ],
2321
+ thumbnail:
2322
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen/thumbnail.png',
1194
2323
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen/model.glb',
1195
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen/floor-plan.png',
2324
+ floorPlanUrl:
2325
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen/floor-plan.png',
1196
2326
  dimensions: [2.38, 1.03, 0.84],
1197
2327
  offset: [0, 0, 0],
1198
2328
  rotation: [0, 0, 0],
@@ -1203,10 +2333,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
1203
2333
  id: 'frying-pan',
1204
2334
  category: 'kitchen',
1205
2335
  name: 'Frying Pan',
1206
- tags: ['frying', 'pan', 'skillet', 'cookware', 'kitchen', 'cooking', 'metal', 'steel', 'nonstick', 'culinary', 'modern', 'chef', 'stove', 'utensil'],
1207
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/frying-pan/thumbnail.png',
2336
+ tags: [
2337
+ 'frying',
2338
+ 'pan',
2339
+ 'skillet',
2340
+ 'cookware',
2341
+ 'kitchen',
2342
+ 'cooking',
2343
+ 'metal',
2344
+ 'steel',
2345
+ 'nonstick',
2346
+ 'culinary',
2347
+ 'modern',
2348
+ 'chef',
2349
+ 'stove',
2350
+ 'utensil',
2351
+ ],
2352
+ thumbnail:
2353
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/frying-pan/thumbnail.png',
1208
2354
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/frying-pan/model.glb',
1209
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/frying-pan/floor-plan.png',
2355
+ floorPlanUrl:
2356
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/frying-pan/floor-plan.png',
1210
2357
  dimensions: [0.36, 0.09, 0.64],
1211
2358
  offset: [0, 0, 0],
1212
2359
  rotation: [0, 0, 0],
@@ -1216,10 +2363,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
1216
2363
  id: 'fruits',
1217
2364
  category: 'kitchen',
1218
2365
  name: 'Fruits',
1219
- tags: ['fruit', 'produce', 'food', 'kitchen', 'dining', 'centerpiece', 'tabletop', 'vibrant', 'fresh', 'organic', 'natural', 'accessory', 'decor', 'colorful'],
1220
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fruits/thumbnail.png',
2366
+ tags: [
2367
+ 'fruit',
2368
+ 'produce',
2369
+ 'food',
2370
+ 'kitchen',
2371
+ 'dining',
2372
+ 'centerpiece',
2373
+ 'tabletop',
2374
+ 'vibrant',
2375
+ 'fresh',
2376
+ 'organic',
2377
+ 'natural',
2378
+ 'accessory',
2379
+ 'decor',
2380
+ 'colorful',
2381
+ ],
2382
+ thumbnail:
2383
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fruits/thumbnail.png',
1221
2384
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fruits/model.glb',
1222
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fruits/floor-plan.png',
2385
+ floorPlanUrl:
2386
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fruits/floor-plan.png',
1223
2387
  dimensions: [0.39, 0.27, 0.39],
1224
2388
  offset: [0, 0, 0],
1225
2389
  rotation: [0, 0, 0],
@@ -1229,10 +2393,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
1229
2393
  id: 'fridge',
1230
2394
  category: 'kitchen',
1231
2395
  name: 'Fridge',
1232
- tags: ['fridge', 'refrigerator', 'freezer', 'appliance', 'kitchen', 'storage', 'cooling', 'metal', 'steel', 'modern', 'industrial', 'minimalist', 'silver', 'sleek'],
1233
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fridge/thumbnail.png',
2396
+ tags: [
2397
+ 'fridge',
2398
+ 'refrigerator',
2399
+ 'freezer',
2400
+ 'appliance',
2401
+ 'kitchen',
2402
+ 'storage',
2403
+ 'cooling',
2404
+ 'metal',
2405
+ 'steel',
2406
+ 'modern',
2407
+ 'industrial',
2408
+ 'minimalist',
2409
+ 'silver',
2410
+ 'sleek',
2411
+ ],
2412
+ thumbnail:
2413
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fridge/thumbnail.png',
1234
2414
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fridge/model.glb',
1235
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fridge/floor-plan.png',
2415
+ floorPlanUrl:
2416
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fridge/floor-plan.png',
1236
2417
  dimensions: [0.7, 1.92, 0.72],
1237
2418
  offset: [0, 0, -0.0507],
1238
2419
  rotation: [0, 0, 0],
@@ -1242,10 +2423,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
1242
2423
  id: 'kitchen-shelf',
1243
2424
  category: 'kitchen',
1244
2425
  name: 'Kitchen Shelf',
1245
- tags: ['shelf', 'shelving', 'rack', 'ledge', 'storage', 'organizer', 'kitchen', 'pantry', 'modern', 'minimalist', 'industrial', 'wood', 'metal', 'utility'],
1246
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-shelf/thumbnail.png',
2426
+ tags: [
2427
+ 'shelf',
2428
+ 'shelving',
2429
+ 'rack',
2430
+ 'ledge',
2431
+ 'storage',
2432
+ 'organizer',
2433
+ 'kitchen',
2434
+ 'pantry',
2435
+ 'modern',
2436
+ 'minimalist',
2437
+ 'industrial',
2438
+ 'wood',
2439
+ 'metal',
2440
+ 'utility',
2441
+ ],
2442
+ thumbnail:
2443
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-shelf/thumbnail.png',
1247
2444
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-shelf/model.glb',
1248
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-shelf/floor-plan.png',
2445
+ floorPlanUrl:
2446
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/kitchen-shelf/floor-plan.png',
1249
2447
  dimensions: [2.21, 0.89, 0.52],
1250
2448
  offset: [-0.0009, 0.4478, 0],
1251
2449
  rotation: [0, 0, 0],
@@ -1257,9 +2455,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
1257
2455
  category: 'kitchen',
1258
2456
  name: 'Wine Bottle',
1259
2457
  tags: ['countertop', 'decor'],
1260
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/wine-bottle/thumbnail.png',
2458
+ thumbnail:
2459
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/wine-bottle/thumbnail.png',
1261
2460
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/wine-bottle/model.glb',
1262
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/wine-bottle/floor-plan.png',
2461
+ floorPlanUrl:
2462
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/wine-bottle/floor-plan.png',
1263
2463
  dimensions: [0.38, 0.35, 0.17],
1264
2464
  offset: [-0.0461, 0, 0.0135],
1265
2465
  rotation: [0, 0, 0],
@@ -1270,9 +2470,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
1270
2470
  category: 'kitchen',
1271
2471
  name: 'Stove',
1272
2472
  tags: ['floor', 'large'],
1273
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stove/thumbnail.png',
2473
+ thumbnail:
2474
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stove/thumbnail.png',
1274
2475
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stove/model.glb',
1275
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stove/floor-plan.png',
2476
+ floorPlanUrl:
2477
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/stove/floor-plan.png',
1276
2478
  dimensions: [0.92, 0.85, 0.76],
1277
2479
  offset: [0.0043, 0, -0.0505],
1278
2480
  rotation: [0, 0, 0],
@@ -1282,10 +2484,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
1282
2484
  id: 'ball',
1283
2485
  category: 'outdoor',
1284
2486
  name: 'Ball',
1285
- tags: ['ball', 'sphere', 'orb', 'globe', 'round', 'modern', 'minimalist', 'decor', 'garden', 'patio', 'sculpture', 'ornament', 'accent', 'circular', 'contemporary'],
1286
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ball/thumbnail.png',
2487
+ tags: [
2488
+ 'ball',
2489
+ 'sphere',
2490
+ 'orb',
2491
+ 'globe',
2492
+ 'round',
2493
+ 'modern',
2494
+ 'minimalist',
2495
+ 'decor',
2496
+ 'garden',
2497
+ 'patio',
2498
+ 'sculpture',
2499
+ 'ornament',
2500
+ 'accent',
2501
+ 'circular',
2502
+ 'contemporary',
2503
+ ],
2504
+ thumbnail:
2505
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ball/thumbnail.png',
1287
2506
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ball/model.glb',
1288
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ball/floor-plan.png',
2507
+ floorPlanUrl:
2508
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/ball/floor-plan.png',
1289
2509
  dimensions: [0.24, 0.24, 0.24],
1290
2510
  offset: [-0.0001, 0.1194, -0.0001],
1291
2511
  rotation: [0, 0, 0],
@@ -1295,10 +2515,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
1295
2515
  id: 'bush',
1296
2516
  category: 'outdoor',
1297
2517
  name: 'Bush',
1298
- tags: ['bush', 'shrub', 'plant', 'greenery', 'foliage', 'hedge', 'natural', 'organic', 'lush', 'landscaping', 'garden', 'yard', 'botanical', 'outdoor', 'decorative'],
1299
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bush/thumbnail.png',
2518
+ tags: [
2519
+ 'bush',
2520
+ 'shrub',
2521
+ 'plant',
2522
+ 'greenery',
2523
+ 'foliage',
2524
+ 'hedge',
2525
+ 'natural',
2526
+ 'organic',
2527
+ 'lush',
2528
+ 'landscaping',
2529
+ 'garden',
2530
+ 'yard',
2531
+ 'botanical',
2532
+ 'outdoor',
2533
+ 'decorative',
2534
+ ],
2535
+ thumbnail:
2536
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bush/thumbnail.png',
1300
2537
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bush/model.glb',
1301
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bush/floor-plan.png',
2538
+ floorPlanUrl:
2539
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/bush/floor-plan.png',
1302
2540
  dimensions: [3, 1.04, 1.01],
1303
2541
  offset: [-0.1463, 0.0094, -0.113],
1304
2542
  rotation: [0, 0, 0],
@@ -1308,10 +2546,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
1308
2546
  id: 'basket-hoop',
1309
2547
  category: 'outdoor',
1310
2548
  name: 'Basket Hoop',
1311
- tags: ['hoop', 'basketball', 'rim', 'net', 'goal', 'sporty', 'recreation', 'outdoor', 'metal', 'steel', 'athletic', 'game', 'play', 'leisure', 'activity'],
1312
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/basket-hoop/thumbnail.png',
2549
+ tags: [
2550
+ 'hoop',
2551
+ 'basketball',
2552
+ 'rim',
2553
+ 'net',
2554
+ 'goal',
2555
+ 'sporty',
2556
+ 'recreation',
2557
+ 'outdoor',
2558
+ 'metal',
2559
+ 'steel',
2560
+ 'athletic',
2561
+ 'game',
2562
+ 'play',
2563
+ 'leisure',
2564
+ 'activity',
2565
+ ],
2566
+ thumbnail:
2567
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/basket-hoop/thumbnail.png',
1313
2568
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/basket-hoop/model.glb',
1314
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/basket-hoop/floor-plan.png',
2569
+ floorPlanUrl:
2570
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/basket-hoop/floor-plan.png',
1315
2571
  dimensions: [0.58, 1.78, 0.56],
1316
2572
  offset: [0, 0, 0],
1317
2573
  rotation: [0, 0, 0],
@@ -1321,10 +2577,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
1321
2577
  id: 'parking-spot',
1322
2578
  category: 'outdoor',
1323
2579
  name: 'Parking Spot',
1324
- tags: ['parking', 'space', 'stall', 'driveway', 'pavement', 'asphalt', 'concrete', 'urban', 'industrial', 'utility', 'vehicle', 'outdoor'],
1325
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/parking-spot/thumbnail.png',
2580
+ tags: [
2581
+ 'parking',
2582
+ 'space',
2583
+ 'stall',
2584
+ 'driveway',
2585
+ 'pavement',
2586
+ 'asphalt',
2587
+ 'concrete',
2588
+ 'urban',
2589
+ 'industrial',
2590
+ 'utility',
2591
+ 'vehicle',
2592
+ 'outdoor',
2593
+ ],
2594
+ thumbnail:
2595
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/parking-spot/thumbnail.png',
1326
2596
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/parking-spot/model.glb',
1327
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/parking-spot/floor-plan.png',
2597
+ floorPlanUrl:
2598
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/parking-spot/floor-plan.png',
1328
2599
  dimensions: [4.95, 0.12, 2.28],
1329
2600
  offset: [0, 0.0121, 0.015],
1330
2601
  rotation: [0, 0, 0],
@@ -1335,10 +2606,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
1335
2606
  id: 'palm',
1336
2607
  category: 'outdoor',
1337
2608
  name: 'Palm',
1338
- tags: ['palm', 'tree', 'plant', 'tropical', 'exotic', 'foliage', 'greenery', 'botanical', 'garden', 'patio', 'outdoor', 'lush', 'organic', 'nature'],
1339
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/palm/thumbnail.png',
2609
+ tags: [
2610
+ 'palm',
2611
+ 'tree',
2612
+ 'plant',
2613
+ 'tropical',
2614
+ 'exotic',
2615
+ 'foliage',
2616
+ 'greenery',
2617
+ 'botanical',
2618
+ 'garden',
2619
+ 'patio',
2620
+ 'outdoor',
2621
+ 'lush',
2622
+ 'organic',
2623
+ 'nature',
2624
+ ],
2625
+ thumbnail:
2626
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/palm/thumbnail.png',
1340
2627
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/palm/model.glb',
1341
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/palm/floor-plan.png',
2628
+ floorPlanUrl:
2629
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/palm/floor-plan.png',
1342
2630
  dimensions: [0.525, 4.5, 0.496],
1343
2631
  offset: [0, 0.08, 0],
1344
2632
  rotation: [0, 0, 0],
@@ -1349,9 +2637,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
1349
2637
  category: 'outdoor',
1350
2638
  name: 'Sunbed',
1351
2639
  tags: ['leisure', 'seating', 'floor'],
1352
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sunbed/thumbnail.png',
2640
+ thumbnail:
2641
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sunbed/thumbnail.png',
1353
2642
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sunbed/model.glb',
1354
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sunbed/floor-plan.png',
2643
+ floorPlanUrl:
2644
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/sunbed/floor-plan.png',
1355
2645
  dimensions: [0.86, 1.13, 1.01],
1356
2646
  offset: [0, 0.0516, 0.0137],
1357
2647
  rotation: [0, 0, 0],
@@ -1361,10 +2651,27 @@ export const CATALOG_ITEMS: AssetInput[] = [
1361
2651
  id: 'fir-tree',
1362
2652
  category: 'outdoor',
1363
2653
  name: 'Fir',
1364
- tags: ['fir', 'tree', 'plant', 'evergreen', 'conifer', 'foliage', 'greenery', 'natural', 'garden', 'outdoor', 'botanical', 'rustic', 'alpine', 'woodland'],
1365
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fir-tree/thumbnail.png',
2654
+ tags: [
2655
+ 'fir',
2656
+ 'tree',
2657
+ 'plant',
2658
+ 'evergreen',
2659
+ 'conifer',
2660
+ 'foliage',
2661
+ 'greenery',
2662
+ 'natural',
2663
+ 'garden',
2664
+ 'outdoor',
2665
+ 'botanical',
2666
+ 'rustic',
2667
+ 'alpine',
2668
+ 'woodland',
2669
+ ],
2670
+ thumbnail:
2671
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fir-tree/thumbnail.png',
1366
2672
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fir-tree/model.glb',
1367
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fir-tree/floor-plan.png',
2673
+ floorPlanUrl:
2674
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/fir-tree/floor-plan.png',
1368
2675
  dimensions: [0.27, 3, 0.23],
1369
2676
  offset: [0.02, 0.05, -0.06],
1370
2677
  rotation: [0, 0, 0],
@@ -1375,9 +2682,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
1375
2682
  category: 'outdoor',
1376
2683
  name: 'Tree',
1377
2684
  tags: ['vegetation'],
1378
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tree/thumbnail.png',
2685
+ thumbnail:
2686
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tree/thumbnail.png',
1379
2687
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tree/model.glb',
1380
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tree/floor-plan.png',
2688
+ floorPlanUrl:
2689
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tree/floor-plan.png',
1381
2690
  dimensions: [0.79, 5, 0.85],
1382
2691
  offset: [-0.02, 0.17, -0.04],
1383
2692
  rotation: [0, 0, 0],
@@ -1388,9 +2697,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
1388
2697
  category: 'outdoor',
1389
2698
  name: 'Skate',
1390
2699
  tags: ['leisure', 'kids', 'floor'],
1391
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/skate/thumbnail.png',
2700
+ thumbnail:
2701
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/skate/thumbnail.png',
1392
2702
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/skate/model.glb',
1393
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/skate/floor-plan.png',
2703
+ floorPlanUrl:
2704
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/skate/floor-plan.png',
1394
2705
  dimensions: [0.86, 0.11, 0.2],
1395
2706
  offset: [0, 0, 0],
1396
2707
  rotation: [0, 0, 0],
@@ -1401,9 +2712,11 @@ export const CATALOG_ITEMS: AssetInput[] = [
1401
2712
  category: 'outdoor',
1402
2713
  name: '1967 Chevrolet Camaro',
1403
2714
  tags: ['car'],
1404
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/1967-chevrolet-camaro-moa24wsf/thumbnail.png',
2715
+ thumbnail:
2716
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/1967-chevrolet-camaro-moa24wsf/thumbnail.png',
1405
2717
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/1967-chevrolet-camaro-moa24wsf/models/item_model_vUIp1N69V9RXLqoJ.glb',
1406
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/1967-chevrolet-camaro-moa24wsf/floor-plan.png',
2718
+ floorPlanUrl:
2719
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/1967-chevrolet-camaro-moa24wsf/floor-plan.png',
1407
2720
  dimensions: [4.09, 1.22, 1.89],
1408
2721
  offset: [-0.0018, 0.5987, 0.0205],
1409
2722
  rotation: [0, 0, 0],
@@ -1413,10 +2726,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
1413
2726
  id: 'outdoor-playhouse',
1414
2727
  category: 'outdoor',
1415
2728
  name: 'Outdoor Playhouse',
1416
- tags: ['playhouse', 'cottage', 'cabin', 'fort', 'wood', 'cedar', 'garden', 'backyard', 'kids', 'children', 'play', 'recreation', 'outdoor', 'rustic', 'timber'],
1417
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/outdoor-playhouse/thumbnail.png',
2729
+ tags: [
2730
+ 'playhouse',
2731
+ 'cottage',
2732
+ 'cabin',
2733
+ 'fort',
2734
+ 'wood',
2735
+ 'cedar',
2736
+ 'garden',
2737
+ 'backyard',
2738
+ 'kids',
2739
+ 'children',
2740
+ 'play',
2741
+ 'recreation',
2742
+ 'outdoor',
2743
+ 'rustic',
2744
+ 'timber',
2745
+ ],
2746
+ thumbnail:
2747
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/outdoor-playhouse/thumbnail.png',
1418
2748
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/outdoor-playhouse/model.glb',
1419
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/outdoor-playhouse/floor-plan.png',
2749
+ floorPlanUrl:
2750
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/outdoor-playhouse/floor-plan.png',
1420
2751
  dimensions: [0.3, 0.47, 0.72],
1421
2752
  offset: [-0.0062, 0, -0.0268],
1422
2753
  rotation: [0, 0, 0],
@@ -1426,10 +2757,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
1426
2757
  id: 'patio-umbrella',
1427
2758
  category: 'outdoor',
1428
2759
  name: 'Patio Umbrella',
1429
- tags: ['umbrella', 'parasol', 'shade', 'canopy', 'sunshade', 'outdoor', 'patio', 'garden', 'modern', 'polyester', 'fabric', 'aluminum', 'poolside', 'protection', 'summer'],
1430
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/patio-umbrella/thumbnail.png',
2760
+ tags: [
2761
+ 'umbrella',
2762
+ 'parasol',
2763
+ 'shade',
2764
+ 'canopy',
2765
+ 'sunshade',
2766
+ 'outdoor',
2767
+ 'patio',
2768
+ 'garden',
2769
+ 'modern',
2770
+ 'polyester',
2771
+ 'fabric',
2772
+ 'aluminum',
2773
+ 'poolside',
2774
+ 'protection',
2775
+ 'summer',
2776
+ ],
2777
+ thumbnail:
2778
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/patio-umbrella/thumbnail.png',
1431
2779
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/patio-umbrella/model.glb',
1432
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/patio-umbrella/floor-plan.png',
2780
+ floorPlanUrl:
2781
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/patio-umbrella/floor-plan.png',
1433
2782
  dimensions: [0.139, 3.603, 0.15],
1434
2783
  offset: [0, 0, 0],
1435
2784
  rotation: [0, 0, 0],
@@ -1439,10 +2788,25 @@ export const CATALOG_ITEMS: AssetInput[] = [
1439
2788
  id: 'pillar',
1440
2789
  category: 'outdoor',
1441
2790
  name: 'Pillar',
1442
- tags: ['pillar', 'column', 'pedestal', 'plinth', 'stone', 'concrete', 'classical', 'architectural', 'garden', 'ornament', 'decoration', 'support'],
1443
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/pillar/thumbnail.png',
2791
+ tags: [
2792
+ 'pillar',
2793
+ 'column',
2794
+ 'pedestal',
2795
+ 'plinth',
2796
+ 'stone',
2797
+ 'concrete',
2798
+ 'classical',
2799
+ 'architectural',
2800
+ 'garden',
2801
+ 'ornament',
2802
+ 'decoration',
2803
+ 'support',
2804
+ ],
2805
+ thumbnail:
2806
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/pillar/thumbnail.png',
1444
2807
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/pillar/model.glb',
1445
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/pillar/floor-plan.png',
2808
+ floorPlanUrl:
2809
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/pillar/floor-plan.png',
1446
2810
  dimensions: [0.34, 1.26, 0.3],
1447
2811
  offset: [0, 0, 0],
1448
2812
  rotation: [0, 0, 0],
@@ -1452,10 +2816,28 @@ export const CATALOG_ITEMS: AssetInput[] = [
1452
2816
  id: 'scooter',
1453
2817
  category: 'outdoor',
1454
2818
  name: 'Scooter',
1455
- tags: ['scooter', 'kickscooter', 'transport', 'mobility', 'outdoor', 'wheels', 'metal', 'aluminum', 'modern', 'sleek', 'urban', 'active', 'travel', 'ride', 'commute'],
1456
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/scooter/thumbnail.png',
2819
+ tags: [
2820
+ 'scooter',
2821
+ 'kickscooter',
2822
+ 'transport',
2823
+ 'mobility',
2824
+ 'outdoor',
2825
+ 'wheels',
2826
+ 'metal',
2827
+ 'aluminum',
2828
+ 'modern',
2829
+ 'sleek',
2830
+ 'urban',
2831
+ 'active',
2832
+ 'travel',
2833
+ 'ride',
2834
+ 'commute',
2835
+ ],
2836
+ thumbnail:
2837
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/scooter/thumbnail.png',
1457
2838
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/scooter/model.glb',
1458
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/scooter/floor-plan.png',
2839
+ floorPlanUrl:
2840
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/scooter/floor-plan.png',
1459
2841
  dimensions: [0.85, 0.85, 0.45],
1460
2842
  offset: [0.1127, 0.0017, 0.1744],
1461
2843
  rotation: [0, 0, 0],
@@ -1465,15 +2847,61 @@ export const CATALOG_ITEMS: AssetInput[] = [
1465
2847
  id: 'tesla',
1466
2848
  category: 'outdoor',
1467
2849
  name: 'Tesla Model Y',
1468
- tags: ['tesla', 'car', 'vehicle', 'automobile', 'electric', 'modern', 'minimalist', 'sleek', 'metal', 'glass', 'luxury', 'transportation', 'commuting'],
1469
- thumbnail: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tesla/thumbnail.png',
2850
+ tags: [
2851
+ 'tesla',
2852
+ 'car',
2853
+ 'vehicle',
2854
+ 'automobile',
2855
+ 'electric',
2856
+ 'modern',
2857
+ 'minimalist',
2858
+ 'sleek',
2859
+ 'metal',
2860
+ 'glass',
2861
+ 'luxury',
2862
+ 'transportation',
2863
+ 'commuting',
2864
+ ],
2865
+ thumbnail:
2866
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tesla/thumbnail.png',
1470
2867
  src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tesla/model.glb',
1471
- floorPlanUrl: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tesla/floor-plan.png',
2868
+ floorPlanUrl:
2869
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/system/tesla/floor-plan.png',
1472
2870
  dimensions: [1.98, 1.62, 4.76],
1473
2871
  offset: [0.0039, -0.0102, -0.0148],
1474
2872
  rotation: [0, 0, 0],
1475
2873
  scale: [1, 1, 1],
1476
2874
  },
2875
+ {
2876
+ id: 'dishwasher-movn72ls',
2877
+ category: 'appliance',
2878
+ name: 'Dishwasher',
2879
+ tags: ['dishwasher', 'appliance', 'kitchen', 'floor'],
2880
+ thumbnail:
2881
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/users/user_7hUFMrlrAX1vtIwT/dishwasher-movn72ls/thumbnail.png',
2882
+ src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/users/user_7hUFMrlrAX1vtIwT/dishwasher-movn72ls/models/item_model_fFvQuIjpPISAraGN.glb',
2883
+ floorPlanUrl:
2884
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/users/user_7hUFMrlrAX1vtIwT/dishwasher-movn72ls/floor-plan.png',
2885
+ dimensions: [0.79, 1.01, 0.76],
2886
+ offset: [0.0026, 0.5004, 0.0011],
2887
+ rotation: [0, -0.0349, 0],
2888
+ scale: [1, 1, 1],
2889
+ },
2890
+ {
2891
+ id: 'fireplace-movn1fnn',
2892
+ category: 'furniture',
2893
+ name: 'Fireplace',
2894
+ tags: ['fireplace', 'hearth', 'mantel', 'wall'],
2895
+ thumbnail:
2896
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/users/user_7hUFMrlrAX1vtIwT/fireplace-movn1fnn/thumbnail.png',
2897
+ src: 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/users/user_7hUFMrlrAX1vtIwT/fireplace-movn1fnn/models/item_model_vNBpPC3gCrIIqFUS.glb',
2898
+ floorPlanUrl:
2899
+ 'https://byrpxoiotywskoojsrzd.supabase.co/storage/v1/object/public/items/users/user_7hUFMrlrAX1vtIwT/fireplace-movn1fnn/floor-plan.png',
2900
+ dimensions: [1, 0.83, 0.18],
2901
+ offset: [-0.0001, 0.4116, -0.0015],
2902
+ rotation: [0, 0, 0],
2903
+ scale: [1, 1, 1],
2904
+ },
1477
2905
  ]
1478
2906
 
1479
2907
  export function getDefaultCatalogItem(category: string | null | undefined): AssetInput | null {