@eluvio/elv-client-js 3.1.73 → 3.1.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -208,6 +208,10 @@ const MarketplaceSpec = {
208
208
  "name": "collections",
209
209
  "type": "list",
210
210
  "fields": [
211
+ {
212
+ "name": "name",
213
+ "type": "text"
214
+ },
211
215
  {
212
216
  "name": "collection_header",
213
217
  "type": "text"
@@ -126,7 +126,7 @@ class MezzanineCreate extends Utility {
126
126
 
127
127
  if(!existingPublicMetadata.asset_metadata) existingPublicMetadata.asset_metadata = {};
128
128
 
129
- const mergedExistingAndArgMetadata = R.mergeRight(
129
+ const mergedExistingAndArgMetadata = R.mergeDeepRight(
130
130
  {public: existingPublicMetadata},
131
131
  metadataFromArg
132
132
  );
@@ -248,4 +248,4 @@ if(require.main === module) {
248
248
  Utility.cmdLineInvoke(MezzanineCreate);
249
249
  } else {
250
250
  module.exports = MezzanineCreate;
251
- }
251
+ }