Categories
Organize assets and materials into categories.
List Categories
const categories = await client.getCategories('3d');Create Category
const category = await client.createCategory({
name: 'Furniture',
type: '3d'
});Update Category
await client.updateCategory('cat_123', { name: 'Updated' });Delete Category
await client.deleteCategory('cat_123');