@dcl/playground-assets 7.1.1-4386722558.commit-407b3a3 → 7.1.1-4387338275.commit-167a7e2

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.
package/dist/index.js CHANGED
@@ -13205,10 +13205,10 @@
13205
13205
  return {
13206
13206
  ...transformDef,
13207
13207
  create(entity, val) {
13208
- return transformDef.create(entity, val);
13208
+ return transformDef.create(entity, TransformSchema.extend(val));
13209
13209
  },
13210
13210
  createOrReplace(entity, val) {
13211
- return transformDef.createOrReplace(entity, val);
13211
+ return transformDef.createOrReplace(entity, TransformSchema.extend(val));
13212
13212
  }
13213
13213
  };
13214
13214
  }