@pascal-app/editor 0.7.0 → 0.8.0

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