Update an item
import { mkt } from './config' const listing = await mkt.update({ id: '<ITEM_MARKETPLACE_ID>', name: 'My Item', description: 'This is my item', category: 'Clothing', color: 'blue', tags: ['sale'] brand: 'brand', nftType: 'physical' status: 'listed', royalty: { royaltyAmount: 300, // 3% royalty receiver: '0x123' }, price: 100, // $1 quantityDiff: 1, images: ['image_url', File], primaryImageIndex: 0, })