Assets to assign to the collection
Asset collection to put uploads into
import { buildClient } from '@datocms/cma-client-node';async function run() {const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });const result = await client.uploads.bulkSetUploadCollection({uploads: [{type: 'upload',id: 'q0VNpiNQSkG6z0lif_O1zg'}],upload_collection: null});console.log(result);}run();