Uploads all specified expression values each asset specified in the specified collection
export type UpdateCollectionAssetsProps = {
collectionId: string;
value: string; // b64 of ZIP data
}
const asset= await assetlayer.assets.update({
properties: {key1:value1, key2:value2},
collectionId: 'collectionId'
});
type ReturnType = BulkExpressionValueLog[];