The tags to add to the assets
Assets to tag
import { buildClient } from '@datocms/cma-client-node';async function run() {const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });const result = await client.uploads.bulkTag({tags: ['cats'],uploads: [{type: 'upload',id: 'q0VNpiNQSkG6z0lif_O1zg'}]});console.log(result);}run();