@moonbase.sh/vue 0.2.57 → 0.2.58

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/dist/index.cjs CHANGED
@@ -750,8 +750,9 @@ function useAuth(context) {
750
750
  }
751
751
 
752
752
  // src/index.ts
753
- function createStorefront(endpoint, stateFactory) {
753
+ function createStorefront(endpoint, stateFactory, config) {
754
754
  const configuration = {
755
+ ...config != null ? config : {},
755
756
  endpoint
756
757
  };
757
758
  return new StorefrontContextImpl(
package/dist/index.d.cts CHANGED
@@ -826,6 +826,6 @@ interface Cart {
826
826
  items: CartItem[];
827
827
  }
828
828
  type CartItem = LineItem;
829
- declare function createStorefront(endpoint: string, stateFactory?: StateFactory): StorefrontContext;
829
+ declare function createStorefront(endpoint: string, stateFactory?: StateFactory, config?: Omit<MoonbaseConfiguration, 'endpoint'>): StorefrontContext;
830
830
 
831
831
  export { type ActivationRequestComposable, type Cart, type CartItem, createStorefront, storefrontKey, useActivationRequest, useAuth, useBundle, useBundles, useCart, useInventory, useProduct, useProducts, useVoucher };
package/dist/index.d.ts CHANGED
@@ -826,6 +826,6 @@ interface Cart {
826
826
  items: CartItem[];
827
827
  }
828
828
  type CartItem = LineItem;
829
- declare function createStorefront(endpoint: string, stateFactory?: StateFactory): StorefrontContext;
829
+ declare function createStorefront(endpoint: string, stateFactory?: StateFactory, config?: Omit<MoonbaseConfiguration, 'endpoint'>): StorefrontContext;
830
830
 
831
831
  export { type ActivationRequestComposable, type Cart, type CartItem, createStorefront, storefrontKey, useActivationRequest, useAuth, useBundle, useBundles, useCart, useInventory, useProduct, useProducts, useVoucher };
package/dist/index.js CHANGED
@@ -715,8 +715,9 @@ function useAuth(context) {
715
715
  }
716
716
 
717
717
  // src/index.ts
718
- function createStorefront(endpoint, stateFactory) {
718
+ function createStorefront(endpoint, stateFactory, config) {
719
719
  const configuration = {
720
+ ...config != null ? config : {},
720
721
  endpoint
721
722
  };
722
723
  return new StorefrontContextImpl(
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@moonbase.sh/vue",
3
3
  "type": "module",
4
- "version": "0.2.57",
4
+ "version": "0.2.58",
5
5
  "description": "Package to let you build vue.js storefronts with Moonbase.sh as payment and delivery provider",
6
6
  "author": "Tobias Lønnerød Madsen <m@dsen.tv>",
7
7
  "license": "MIT",
@@ -19,7 +19,7 @@
19
19
  "@vue/devtools-api": "^6.6.3",
20
20
  "uuid": "^9.0.1",
21
21
  "zod": "^3.23.8",
22
- "@moonbase.sh/storefront-api": "0.2.57"
22
+ "@moonbase.sh/storefront-api": "0.2.58"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/uuid": "^9.0.8",