@storefront-x/catalog-magento-px
Advanced tools
Comparing version 1.1.0 to 1.4.0
import MAGENTO_URL from '#ioc/config/MAGENTO_URL' | ||
import Extension from '#ioc/types/base/Extension' | ||
interface ToCategoryType { | ||
interface ThumbnailUrl { | ||
thumbnailUrl: string | ||
} | ||
const ToCategory: Extension<ToCategoryType> = (ToCategory) => (data) => ({ | ||
...ToCategory(data), | ||
thumbnailUrl: data.thumbnail ? MAGENTO_URL + '/media/catalog/category/' + data.thumbnail : null, | ||
}) | ||
const ToCategory: Extension<ThumbnailUrl> = (ToCategory) => (data) => { | ||
const self = ToCategory(data) | ||
self.thumbnailUrl = data.thumbnail ? MAGENTO_URL + '/media/catalog/category/' + data.thumbnail : null | ||
return self | ||
} | ||
export default ToCategory |
{ | ||
"name": "@storefront-x/catalog-magento-px", | ||
"version": "1.1.0", | ||
"version": "1.4.0", | ||
"license": "MIT", | ||
@@ -9,3 +9,3 @@ "type": "module", | ||
}, | ||
"gitHead": "1c213a2443f9c12ad47ba4d2139717ce09bac8a7" | ||
"gitHead": "f855472354b103ade9a679fa27fc0bf87ab64c45" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2762
6
46