@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.
- package/package.json +1 -1
- package/src/shop.js +6 -1
package/package.json
CHANGED
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
|
})
|