@viur/shop-components 0.0.1-dev.13 → 0.0.1-dev.15

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viur/shop-components",
3
- "version": "0.0.1-dev.13",
3
+ "version": "0.0.1-dev.15",
4
4
  "description": "Frontend Vue components for the shop module of ViUR",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,8 +25,9 @@ export const useCartStore = defineStore("cartstore", () => {
25
25
  }
26
26
 
27
27
  async function getChildren(parentKey) {
28
+ console.log("debug getChildren parentKey: ", parentKey)
28
29
  let resp = await shopClient.cart_list({ cart_key: parentKey });
29
-
30
+ console.log("debug getChildren: ", resp)
30
31
  return resp
31
32
  }
32
33
 
@@ -112,5 +113,6 @@ export const useCartStore = defineStore("cartstore", () => {
112
113
  updateItem,
113
114
  init,
114
115
  getAdressStructure,
116
+ getChildren,
115
117
  };
116
118
  });