rerobe-js-orm 4.2.0 → 4.2.1

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.
@@ -759,7 +759,7 @@ class ReRobeProductHelpers {
759
759
  return {
760
760
  id: productObj.documentId,
761
761
  title: productObj.metaDataTitle || productObj.title,
762
- description: productObj.description || '',
762
+ description: productObj.metaDataDescription || this.autoCreateMetaDescription(productObj),
763
763
  availability: availabilityMapper(productObj.status),
764
764
  condition: 'used',
765
765
  price: `${Number(productObj.price).toFixed(2)} ${currency}`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rerobe-js-orm",
3
- "version": "4.2.0",
3
+ "version": "4.2.1",
4
4
  "description": "ReRobe's Javascript ORM Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",