@saooti/octopus-sdk 32.0.26 → 32.0.27

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/README.md CHANGED
@@ -670,4 +670,5 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
670
670
  * 32.0.23 Popover encore
671
671
  * 32.0.24 CDI podcastmaker
672
672
  * 32.0.25 #11391
673
- * 32.0.26 Image Proxy
673
+ * 32.0.26 Image Proxy
674
+ * 32.0.27 Image Proxy -> webp
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "32.0.26",
3
+ "version": "32.0.27",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -14,7 +14,7 @@ export const imageProxy ={
14
14
  return "";
15
15
  }
16
16
  if(state.octopusApi.imageUrl){
17
- return state.octopusApi.imageUrl+"image/"+btoa(url)+"?width="+width;
17
+ return state.octopusApi.imageUrl+"image/"+btoa(url)+"?width="+width+"&useWebp=true";
18
18
  }
19
19
  return url;
20
20
  },