flowrix 1.0.1-beta.6 → 1.0.1-beta.8

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "flowrix",
3
3
  "configKey": "flowrix",
4
- "version": "1.0.1-beta.6",
4
+ "version": "1.0.1-beta.8",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -1,6 +1,6 @@
1
1
  import { ref } from "vue";
2
2
  import { useRoute } from "#imports";
3
- import { useCartStore } from "../stores/cart";
3
+ import { useCartStore } from "../stores/Cart.js";
4
4
  export const useAddToCart = () => {
5
5
  const showError = ref(false);
6
6
  const ErrorMessage = ref("");
@@ -1,6 +1,6 @@
1
1
  import { ref, computed, watch, onMounted } from "vue";
2
2
  import { useRoute } from "#imports";
3
- import { useSearchStore } from "../stores/search";
3
+ import { useSearchStore } from "../stores/Search.js";
4
4
  export function useSearch() {
5
5
  const route = useRoute();
6
6
  const searchStore = useSearchStore();
@@ -0,0 +1,5 @@
1
+ export declare const useSearchStore: import("pinia").StoreDefinition<"SearchStore", {
2
+ data: any[];
3
+ }, {}, {
4
+ fetchSearchData(query: string): Promise<any[]>;
5
+ }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowrix",
3
- "version": "1.0.1-beta.6",
3
+ "version": "1.0.1-beta.8",
4
4
  "description": "lug-and-play Nuxt eCommerce cart powered by FLOWRiX. Subscription required.",
5
5
  "license": "MIT",
6
6
  "type": "module",