@viur/shop-components 0.13.2-1 → 0.14.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/shop.js +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viur/shop-components",
3
- "version": "0.13.2-1",
3
+ "version": "0.14.0",
4
4
  "description": "Frontend Vue components for the shop module of ViUR",
5
5
  "repository": {
6
6
  "type": "git",
package/src/shop.js CHANGED
@@ -303,6 +303,11 @@ export const useViurShopStore = defineStore("viurshopStore", () => {
303
303
  checkoutStart,
304
304
  checkoutOrder,
305
305
  addTab,
306
- removeTab
306
+ removeTab,
307
+
308
+ /**
309
+ * @deprecated since version 0.14.0 - Use checkoutStart instead
310
+ */
311
+ checkout: checkoutStart, // TODO: Remove alias
307
312
  }
308
313
  })