flowrix 1.0.1-beta.8 → 1.0.1-beta.80

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 (192) hide show
  1. package/dist/module.d.mts +1 -6
  2. package/dist/module.json +1 -1
  3. package/dist/module.mjs +94 -29
  4. package/dist/runtime/composables/Blog/useBlogIndex.d.ts +2 -5
  5. package/dist/runtime/composables/Brand/brand.js +2 -0
  6. package/dist/runtime/composables/Cart/useCart.d.ts +40 -0
  7. package/dist/runtime/composables/Cart/useCart.js +10 -0
  8. package/dist/runtime/composables/Cart/useCartDetail.d.ts +15 -5
  9. package/dist/runtime/composables/Cart/useCartDetail.js +3 -0
  10. package/dist/runtime/composables/Checkout/PaymentMethods/useFlowrixpay.d.ts +40 -1
  11. package/dist/runtime/composables/Checkout/PaymentMethods/useFlowrixpay.js +2 -2
  12. package/dist/runtime/composables/Checkout/PaymentMethods/useOpayo.d.ts +40 -1
  13. package/dist/runtime/composables/Checkout/PaymentMethods/useOpayo.js +2 -2
  14. package/dist/runtime/composables/Checkout/PaymentMethods/usePaymentMethods.js +3 -14
  15. package/dist/runtime/composables/Checkout/PaymentMethods/useStripe.d.ts +2 -2
  16. package/dist/runtime/composables/Checkout/useCheckout.d.ts +84 -73
  17. package/dist/runtime/composables/Checkout/useCheckout.js +36 -28
  18. package/dist/runtime/composables/Checkout/{useBillingAddress.d.ts → useCheckoutBillingAddress.d.ts} +6 -6
  19. package/dist/runtime/composables/Checkout/{useBillingAddress.js → useCheckoutBillingAddress.js} +6 -1
  20. package/dist/runtime/composables/Checkout/{useShippingAddress.d.ts → useCheckoutShippingAddress.d.ts} +1 -1
  21. package/dist/runtime/composables/Checkout/{useShippingAddress.js → useCheckoutShippingAddress.js} +7 -2
  22. package/dist/runtime/composables/Checkout/useCreateAccount.d.ts +7 -7
  23. package/dist/runtime/composables/Checkout/useCreateAccount.js +3 -1
  24. package/dist/runtime/composables/Checkout/useDeliveryMethod.d.ts +2 -2
  25. package/dist/runtime/composables/Checkout/useDeliveryMethod.js +8 -7
  26. package/dist/runtime/composables/Customer/useBillingAddress.d.ts +112 -0
  27. package/dist/runtime/composables/Customer/useBillingAddress.js +93 -0
  28. package/dist/runtime/composables/Customer/useLogin.d.ts +9 -0
  29. package/dist/runtime/composables/Customer/useLogin.js +34 -0
  30. package/dist/runtime/composables/Customer/useOrders.d.ts +29 -0
  31. package/dist/runtime/composables/Customer/useOrders.js +56 -0
  32. package/dist/runtime/composables/Customer/usePasswordReset.d.ts +26 -0
  33. package/dist/runtime/composables/Customer/usePasswordReset.js +258 -0
  34. package/dist/runtime/composables/Customer/useProfile.d.ts +75 -0
  35. package/dist/runtime/composables/Customer/useProfile.js +106 -0
  36. package/dist/runtime/composables/Customer/useQuotations.d.ts +32 -0
  37. package/dist/runtime/composables/Customer/useQuotations.js +40 -0
  38. package/dist/runtime/composables/Customer/useRegister.d.ts +118 -11
  39. package/dist/runtime/composables/Customer/useRegister.js +236 -34
  40. package/dist/runtime/composables/Customer/useShippingAddress.d.ts +121 -0
  41. package/dist/runtime/composables/Customer/useShippingAddress.js +145 -0
  42. package/dist/runtime/composables/Customer/useUpdatePassword.d.ts +21 -0
  43. package/dist/runtime/composables/Customer/useUpdatePassword.js +94 -0
  44. package/dist/runtime/composables/Customer/useUserCards.d.ts +22 -0
  45. package/dist/runtime/composables/Customer/useUserCards.js +65 -0
  46. package/dist/runtime/composables/{useWishlists.d.ts → Customer/useWishlists.d.ts} +5 -18
  47. package/dist/runtime/composables/{useWishlists.js → Customer/useWishlists.js} +19 -28
  48. package/dist/runtime/composables/Extras/useCountry.d.ts +11 -6
  49. package/dist/runtime/composables/Extras/useCountry.js +5 -4
  50. package/dist/runtime/composables/Header/useHeader.d.ts +6 -20
  51. package/dist/runtime/composables/Header/useHeader.js +3 -2
  52. package/dist/runtime/composables/Product/CustomProduct/useSteps.d.ts +1 -1
  53. package/dist/runtime/composables/Product/useProductSlug.d.ts +8 -1
  54. package/dist/runtime/composables/Product/useQuickView.d.ts +8 -0
  55. package/dist/runtime/composables/Product/useQuickView.js +27 -0
  56. package/dist/runtime/composables/Product/useService.d.ts +1 -1
  57. package/dist/runtime/composables/Product/useService.js +0 -3
  58. package/dist/runtime/composables/SideBar/Filters/useFilters.d.ts +2 -2
  59. package/dist/runtime/composables/SideBar/Filters/useSorting.d.ts +2 -2
  60. package/dist/runtime/composables/index.d.ts +15 -12
  61. package/dist/runtime/composables/index.js +15 -12
  62. package/dist/runtime/composables/useAddresses.js +6 -6
  63. package/dist/runtime/composables/useCards.js +2 -2
  64. package/dist/runtime/composables/useLocation.d.ts +2 -12
  65. package/dist/runtime/composables/useQuotationCheckout.d.ts +78 -0
  66. package/dist/runtime/composables/useQuotationCheckout.js +138 -0
  67. package/dist/runtime/middleware/flowrix.d.ts +5 -4
  68. package/dist/runtime/middleware/flowrix.js +41 -21
  69. package/dist/runtime/plugin.d.ts +1 -1
  70. package/dist/runtime/server/api/albums.js +1 -1
  71. package/dist/runtime/server/api/auth/forgot.js +1 -1
  72. package/dist/runtime/server/api/auth/login.js +5 -6
  73. package/dist/runtime/server/api/auth/logout.js +1 -1
  74. package/dist/runtime/server/api/auth/register.js +1 -1
  75. package/dist/runtime/server/api/auth/session.get.js +1 -1
  76. package/dist/runtime/server/api/auth/user/reset-password.js +1 -1
  77. package/dist/runtime/server/api/auth/user/session.js +1 -1
  78. package/dist/runtime/server/api/auth/user/verify-token.js +1 -1
  79. package/dist/runtime/server/api/banners.js +2 -2
  80. package/dist/runtime/server/api/brand/{[slug].js → [...slug].js} +17 -17
  81. package/dist/runtime/server/api/brand/index.d.ts +2 -0
  82. package/dist/runtime/server/api/brand/index.js +23 -0
  83. package/dist/runtime/server/api/cache/[...slug].delete.d.ts +2 -0
  84. package/dist/runtime/server/api/cache/[...slug].delete.js +40 -0
  85. package/dist/runtime/server/api/cache/clean.get.d.ts +5 -0
  86. package/dist/runtime/server/api/cache/clean.get.js +16 -0
  87. package/dist/runtime/server/api/cart/[slug]/add.js +1 -1
  88. package/dist/runtime/server/api/cart/[slug]/update.js +1 -1
  89. package/dist/runtime/server/api/cart/related.d.ts +2 -0
  90. package/dist/runtime/server/api/cart/related.js +21 -0
  91. package/dist/runtime/server/api/cart/remove.js +1 -1
  92. package/dist/runtime/server/api/cart/service/[slug]/add.js +1 -1
  93. package/dist/runtime/server/api/catalog/categories.js +5 -4
  94. package/dist/runtime/server/api/catalog/categoriesall.d.ts +3 -0
  95. package/dist/runtime/server/api/catalog/categoriesall.js +44 -0
  96. package/dist/runtime/server/api/catalog/featured.js +5 -4
  97. package/dist/runtime/server/api/catalog/samples.js +5 -4
  98. package/dist/runtime/server/api/catalog/search.js +5 -4
  99. package/dist/runtime/server/api/category/[...slug].js +18 -14
  100. package/dist/runtime/server/api/checkout/applyCoupon.js +1 -1
  101. package/dist/runtime/server/api/checkout/configs.d.ts +1 -1
  102. package/dist/runtime/server/api/checkout/configs.js +10 -11
  103. package/dist/runtime/server/api/checkout/countries.js +1 -1
  104. package/dist/runtime/server/api/checkout/paymentmethod.js +7 -7
  105. package/dist/runtime/server/api/checkout/quotation/[slug].d.ts +2 -0
  106. package/dist/runtime/server/api/checkout/quotation/[slug].js +21 -0
  107. package/dist/runtime/server/api/checkout/quotation/guest/[slug].d.ts +2 -0
  108. package/dist/runtime/server/api/checkout/quotation/guest/[slug].js +37 -0
  109. package/dist/runtime/server/api/checkout/quotation/guest/customer.d.ts +2 -0
  110. package/dist/runtime/server/api/checkout/quotation/guest/customer.js +21 -0
  111. package/dist/runtime/server/api/checkout/quotation/submit/[slug].d.ts +2 -0
  112. package/dist/runtime/server/api/checkout/quotation/submit/[slug].js +23 -0
  113. package/dist/runtime/server/api/{blog/[slug].js → cmspost/[...slug].js} +7 -9
  114. package/dist/runtime/server/api/{blog/blog.js → cmspost/all.js} +2 -2
  115. package/dist/runtime/server/api/company/profile.d.ts +1 -1
  116. package/dist/runtime/server/api/company/profile.js +9 -9
  117. package/dist/runtime/server/api/contact-center/webforms/[id]/details.js +1 -1
  118. package/dist/runtime/server/api/contact-center/webforms/create.js +1 -1
  119. package/dist/runtime/server/api/countries.d.ts +2 -0
  120. package/dist/runtime/server/api/countries.js +35 -0
  121. package/dist/runtime/server/api/customer/address/add.js +1 -1
  122. package/dist/runtime/server/api/customer/address/delete.js +2 -2
  123. package/dist/runtime/server/api/customer/address/setshipping.js +1 -1
  124. package/dist/runtime/server/api/customer/address/update.js +1 -1
  125. package/dist/runtime/server/api/customer/cards/delete.js +2 -2
  126. package/dist/runtime/server/api/customer/cards/get.js +2 -2
  127. package/dist/runtime/server/api/customer/change-password.js +2 -2
  128. package/dist/runtime/server/api/customer/checkout.js +1 -1
  129. package/dist/runtime/server/api/customer/orders.js +2 -2
  130. package/dist/runtime/server/api/customer/profile/update.js +1 -1
  131. package/dist/runtime/server/api/customer/quotations.js +2 -2
  132. package/dist/runtime/server/api/customer/search.js +1 -1
  133. package/dist/runtime/server/api/customer/tax-invoice.js +1 -1
  134. package/dist/runtime/server/api/customer/wishlist/add.js +1 -1
  135. package/dist/runtime/server/api/customer/wishlist/createWishList.js +1 -1
  136. package/dist/runtime/server/api/customer/wishlist/deleteFromWishList.js +1 -1
  137. package/dist/runtime/server/api/customer/wishlist/deleteWishList.js +1 -1
  138. package/dist/runtime/server/api/customer/wishlist/get.js +2 -2
  139. package/dist/runtime/server/api/customer/wishlist/getWishListItems.js +1 -1
  140. package/dist/runtime/server/api/customer/wishlist/updateWishList.js +2 -2
  141. package/dist/runtime/server/api/featured.d.ts +2 -0
  142. package/dist/runtime/server/api/featured.js +16 -0
  143. package/dist/runtime/server/api/location.js +1 -1
  144. package/dist/runtime/server/api/nav/[id]/links.js +1 -1
  145. package/dist/runtime/server/api/page/{[slug].js → [...slug].js} +6 -8
  146. package/dist/runtime/server/api/product/[...slug].js +8 -5
  147. package/dist/runtime/server/api/quickview/[slug].d.ts +2 -0
  148. package/dist/runtime/server/api/quickview/[slug].js +16 -0
  149. package/dist/runtime/server/api/samples.d.ts +3 -0
  150. package/dist/runtime/server/api/samples.js +20 -0
  151. package/dist/runtime/server/api/search.d.ts +3 -0
  152. package/dist/runtime/server/api/search.js +15 -0
  153. package/dist/runtime/server/api/service/[slug].js +5 -4
  154. package/dist/runtime/server/api/service/availability.js +1 -1
  155. package/dist/runtime/server/api/service/getall.d.ts +3 -0
  156. package/dist/runtime/server/api/service/getall.js +52 -0
  157. package/dist/runtime/server/api/shop.d.ts +3 -0
  158. package/dist/runtime/server/api/shop.js +15 -0
  159. package/dist/runtime/server/api/subscribe.js +1 -1
  160. package/dist/runtime/server/api/v2/[...slug].js +3 -1
  161. package/dist/runtime/server/api/webform.d.ts +3 -0
  162. package/dist/runtime/server/api/webform.js +16 -0
  163. package/dist/runtime/stores/Cart.d.ts +12 -0
  164. package/dist/runtime/stores/Cart.js +50 -16
  165. package/dist/runtime/stores/Checkout.d.ts +9 -15
  166. package/dist/runtime/stores/Checkout.js +19 -5
  167. package/dist/runtime/stores/Search.d.ts +1 -1
  168. package/dist/runtime/stores/Services.js +2 -2
  169. package/dist/runtime/stores/auth.d.ts +8 -11
  170. package/dist/runtime/stores/auth.js +390 -8
  171. package/dist/runtime/stores/countries.d.ts +1 -3
  172. package/dist/runtime/stores/countries.js +4 -8
  173. package/dist/runtime/stores/product/slug.d.ts +1 -17
  174. package/dist/runtime/stores/wishlists.d.ts +105 -5
  175. package/dist/runtime/stores/wishlists.js +200 -9
  176. package/dist/runtime/utils/api.js +9 -13
  177. package/dist/runtime/utils/htmlCache.d.ts +5 -0
  178. package/dist/runtime/utils/htmlCache.js +60 -0
  179. package/dist/types.d.mts +6 -2
  180. package/package.json +32 -20
  181. package/dist/runtime/composables/useAuth.d.ts +0 -45
  182. package/dist/runtime/composables/useAuth.js +0 -180
  183. package/dist/runtime/composables/useCountries.d.ts +0 -12
  184. package/dist/runtime/composables/useCountries.js +0 -50
  185. package/dist/runtime/composables/useOrders.d.ts +0 -21
  186. package/dist/runtime/composables/useOrders.js +0 -82
  187. package/dist/runtime/composables/useQuotations.d.ts +0 -14
  188. package/dist/runtime/composables/useQuotations.js +0 -50
  189. /package/dist/runtime/server/api/brand/{[slug].d.ts → [...slug].d.ts} +0 -0
  190. /package/dist/runtime/server/api/{blog/[slug].d.ts → cmspost/[...slug].d.ts} +0 -0
  191. /package/dist/runtime/server/api/{blog/blog.d.ts → cmspost/all.d.ts} +0 -0
  192. /package/dist/runtime/server/api/page/{[slug].d.ts → [...slug].d.ts} +0 -0
@@ -1,5 +1,5 @@
1
1
  export default function (): {
2
- route: import("vue-router").RouteLocationNormalizedLoadedGeneric;
3
- router: import("vue-router").Router;
2
+ route: any;
3
+ router: any;
4
4
  SortingOrderChange: (order: any) => void;
5
5
  };
@@ -10,14 +10,12 @@ export * from './Cart/useCartDetail.js';
10
10
  export * from './Category/useCategoryContent.js';
11
11
  export * from './Category/useCategoryGrid.js';
12
12
  export * from './Category/useCategoryIndex.js';
13
- export * from './Category/useCategoryTemplate2.js';
14
- export * from './Category/useCategoryTemplate3.js';
15
13
  export * from './Category/useCategoryTop.js';
16
- export * from './Checkout/useBillingAddress.js';
14
+ export * from './Checkout/useCheckoutBillingAddress.js';
17
15
  export * from './Checkout/useCheckout.js';
18
16
  export * from './Checkout/useCreateAccount.js';
19
17
  export * from './Checkout/useDeliveryMethod.js';
20
- export * from './Checkout/useShippingAddress.js';
18
+ export * from './Checkout/useCheckoutShippingAddress.js';
21
19
  export * from './Checkout/PaymentMethods/useDirectDeposit.js';
22
20
  export * from './Checkout/PaymentMethods/useEway.js';
23
21
  export * from './Checkout/PaymentMethods/useFlowrixpay.js';
@@ -27,6 +25,16 @@ export * from './Checkout/PaymentMethods/usePaypal.js';
27
25
  export * from './Checkout/PaymentMethods/useStripe.js';
28
26
  export * from './Checkout/PaymentMethods/useZippay.js';
29
27
  export * from './Customer/useRegister.js';
28
+ export * from './Customer/useLogin.js';
29
+ export * from './Customer/useProfile.js';
30
+ export * from './Customer/useOrders.js';
31
+ export * from './Customer/useQuotations.js';
32
+ export * from './Customer/useBillingAddress.js';
33
+ export * from './Customer/useShippingAddress.js';
34
+ export * from './Customer/useUpdatePassword.js';
35
+ export * from './Customer/useUserCards.js';
36
+ export * from './Customer/useWishlists.js';
37
+ export * from './Customer/usePasswordReset.js';
30
38
  export * from './Extras/useCountry.js';
31
39
  export * from './Extras/useDateFormatter.js';
32
40
  export * from './Extras/useNumberOnly.js';
@@ -55,20 +63,15 @@ export * from './SideBar/useSideBar.js';
55
63
  export * from './SideBar/Filters/useFilters.js';
56
64
  export * from './SideBar/Filters/useSorting.js';
57
65
  export { useAddresses } from './useAddresses.js';
66
+ export { useQuickView } from './Product/useQuickView.js';
67
+ export { useSendQuickValues } from './Product/useQuickView.js';
58
68
  export { useAddToCart } from './useAddToCart.js';
59
- export { useAuth } from './useAuth.js';
60
69
  export { useCards } from './useCards.js';
61
70
  export { useClientApi } from './useClientApi.js';
62
- export { useCountries } from './useCountries.js';
63
- export { useDataLayer } from './useDataLayer.js';
64
71
  export { useDynamicHtmlRenderer } from './useDynamicHtmlRenderer.js';
65
72
  export { useLocation } from './useLocation.js';
66
73
  export { useLocations } from './useLocations.js';
67
- export { useMetaLayer } from './useMetaLayer.js';
68
- export { useOrders } from './useOrders.js';
69
- export { useQuotations } from './useQuotations.js';
74
+ export { useQuotationCheckout } from './useQuotationCheckout.js';
70
75
  export { useSearch } from './useSearch.js';
71
76
  export { useSubscriptions } from './useSubscriptions.js';
72
- export { useTikTokDatalayer } from './useTikTokDatalayer.js';
73
77
  export { useWebforms } from './useWebforms.js';
74
- export { useWishlists } from './useWishlists.js';
@@ -10,14 +10,12 @@ export * from "./Cart/useCartDetail.js";
10
10
  export * from "./Category/useCategoryContent.js";
11
11
  export * from "./Category/useCategoryGrid.js";
12
12
  export * from "./Category/useCategoryIndex.js";
13
- export * from "./Category/useCategoryTemplate2";
14
- export * from "./Category/useCategoryTemplate3";
15
13
  export * from "./Category/useCategoryTop.js";
16
- export * from "./Checkout/useBillingAddress.js";
14
+ export * from "./Checkout/useCheckoutBillingAddress.js";
17
15
  export * from "./Checkout/useCheckout.js";
18
16
  export * from "./Checkout/useCreateAccount.js";
19
17
  export * from "./Checkout/useDeliveryMethod.js";
20
- export * from "./Checkout/useShippingAddress.js";
18
+ export * from "./Checkout/useCheckoutShippingAddress.js";
21
19
  export * from "./Checkout/PaymentMethods/useDirectDeposit.js";
22
20
  export * from "./Checkout/PaymentMethods/useEway.js";
23
21
  export * from "./Checkout/PaymentMethods/useFlowrixpay.js";
@@ -27,6 +25,16 @@ export * from "./Checkout/PaymentMethods/usePaypal.js";
27
25
  export * from "./Checkout/PaymentMethods/useStripe.js";
28
26
  export * from "./Checkout/PaymentMethods/useZippay.js";
29
27
  export * from "./Customer/useRegister.js";
28
+ export * from "./Customer/useLogin.js";
29
+ export * from "./Customer/useProfile.js";
30
+ export * from "./Customer/useOrders.js";
31
+ export * from "./Customer/useQuotations.js";
32
+ export * from "./Customer/useBillingAddress.js";
33
+ export * from "./Customer/useShippingAddress.js";
34
+ export * from "./Customer/useUpdatePassword.js";
35
+ export * from "./Customer/useUserCards.js";
36
+ export * from "./Customer/useWishlists.js";
37
+ export * from "./Customer/usePasswordReset.js";
30
38
  export * from "./Extras/useCountry.js";
31
39
  export * from "./Extras/useDateFormatter.js";
32
40
  export * from "./Extras/useNumberOnly.js";
@@ -55,20 +63,15 @@ export * from "./SideBar/useSideBar.js";
55
63
  export * from "./SideBar/Filters/useFilters.js";
56
64
  export * from "./SideBar/Filters/useSorting.js";
57
65
  export { useAddresses } from "./useAddresses.js";
66
+ export { useQuickView } from "./Product/useQuickView.js";
67
+ export { useSendQuickValues } from "./Product/useQuickView.js";
58
68
  export { useAddToCart } from "./useAddToCart.js";
59
- export { useAuth } from "./useAuth.js";
60
69
  export { useCards } from "./useCards.js";
61
70
  export { useClientApi } from "./useClientApi.js";
62
- export { useCountries } from "./useCountries.js";
63
- export { useDataLayer } from "./useDataLayer.js";
64
71
  export { useDynamicHtmlRenderer } from "./useDynamicHtmlRenderer.js";
65
72
  export { useLocation } from "./useLocation.js";
66
73
  export { useLocations } from "./useLocations.js";
67
- export { useMetaLayer } from "./useMetaLayer.js";
68
- export { useOrders } from "./useOrders.js";
69
- export { useQuotations } from "./useQuotations.js";
74
+ export { useQuotationCheckout } from "./useQuotationCheckout.js";
70
75
  export { useSearch } from "./useSearch.js";
71
76
  export { useSubscriptions } from "./useSubscriptions.js";
72
- export { useTikTokDatalayer } from "./useTikTokDatalayer.js";
73
77
  export { useWebforms } from "./useWebforms.js";
74
- export { useWishlists } from "./useWishlists.js";
@@ -1,6 +1,6 @@
1
1
  import { computed } from "vue";
2
2
  import { useAddressesStore } from "../stores/addresses.js";
3
- import { useAuth } from "./useAuth.js";
3
+ import { useAuthStore } from "../stores/auth.js";
4
4
  import { useApi } from "../utils/api.js";
5
5
  function formatErrorMessage(message) {
6
6
  if (!message) return "An error occurred";
@@ -19,14 +19,14 @@ function formatErrorMessage(message) {
19
19
  }
20
20
  export function useAddresses() {
21
21
  const store = useAddressesStore();
22
- const { fetchProfile } = useAuth();
22
+ const { fetchProfile } = useAuthStore();
23
23
  const { post, patch, delete: deleteRequest } = useApi();
24
24
  async function addAddress(userData) {
25
25
  store.setLoading(true);
26
26
  store.setError(null);
27
27
  try {
28
28
  userData.shipping = 1;
29
- const response = await post("/customer/address/add", userData);
29
+ const response = await post("/mystore/customer/address/add", userData);
30
30
  if (response.status === "Success" && response.data) {
31
31
  await fetchProfile();
32
32
  return response;
@@ -48,7 +48,7 @@ export function useAddresses() {
48
48
  store.setLoading(true);
49
49
  store.setError(null);
50
50
  try {
51
- const response = await patch(`/customer/address/${userData.id}/update`, userData);
51
+ const response = await patch(`/mystore/customer/address/${userData.id}/update`, userData);
52
52
  if (response.status === "Success" && response.data) {
53
53
  await fetchProfile();
54
54
  return response;
@@ -70,7 +70,7 @@ export function useAddresses() {
70
70
  store.setLoading(true);
71
71
  store.setError(null);
72
72
  try {
73
- const response = await patch(`/customer/address/${id}/delete`, {});
73
+ const response = await patch(`/mystore/customer/address/${id}/delete`, {});
74
74
  if (response.status === "Success") {
75
75
  await fetchProfile();
76
76
  return response;
@@ -92,7 +92,7 @@ export function useAddresses() {
92
92
  store.setLoading(true);
93
93
  store.setError(null);
94
94
  try {
95
- const response = await post(`/customer/address/${addressId}/setshipping`, {});
95
+ const response = await post(`/mystore/customer/address/${addressId}/setshipping`, {});
96
96
  if (response.status === "Success") {
97
97
  await fetchProfile();
98
98
  return response;
@@ -23,7 +23,7 @@ export function useCards() {
23
23
  store.setLoading(true);
24
24
  store.setError(null);
25
25
  try {
26
- const response = await get("/customer/cards");
26
+ const response = await get("/mystore/customer/cards");
27
27
  if (response.status === "Success" && response.data) {
28
28
  store.setCards(response.data.data);
29
29
  return response;
@@ -45,7 +45,7 @@ export function useCards() {
45
45
  store.setLoading(true);
46
46
  store.setError(null);
47
47
  try {
48
- const response = await del(`/customer/cards/${cardId}`);
48
+ const response = await del(`/mystore/customer/cards/${cardId}`);
49
49
  if (response.status === "Success") {
50
50
  store.removeCard(cardId);
51
51
  return response;
@@ -5,18 +5,8 @@ export interface LocationData {
5
5
  city?: string;
6
6
  }
7
7
  export declare const useLocation: () => {
8
- location: Readonly<import("vue").Ref<{
9
- readonly country: string;
10
- readonly countryCode?: string | undefined;
11
- readonly state?: string | undefined;
12
- readonly city?: string | undefined;
13
- }, {
14
- readonly country: string;
15
- readonly countryCode?: string | undefined;
16
- readonly state?: string | undefined;
17
- readonly city?: string | undefined;
18
- }>>;
19
- shippingCountry: Readonly<import("vue").Ref<string, string>>;
8
+ location: Readonly<import("vue").Ref<any, any>>;
9
+ shippingCountry: Readonly<import("vue").Ref<any, any>>;
20
10
  updateLocation: (newLocation: Partial<LocationData>) => void;
21
11
  updateCountry: (country: string, countryCode?: string) => void;
22
12
  resetLocation: () => void;
@@ -0,0 +1,78 @@
1
+ export declare const useQuotationCheckout: () => {
2
+ inputData: import("vue").Ref<{
3
+ paymentmethod: string;
4
+ customertoken: string;
5
+ authoritytoleave: undefined;
6
+ register: string;
7
+ password: string;
8
+ password_confirmation: string;
9
+ passwordStrengthValue: string;
10
+ customernotes: string;
11
+ ewayKey: string;
12
+ eway_cardname: string;
13
+ eway_cardnumber: string;
14
+ eway_expirymonth: string;
15
+ eway_expiryyear: string;
16
+ eway_cvn: string;
17
+ till_cardname: string;
18
+ till_cardnumber: string;
19
+ till_cvn: string;
20
+ till_expirymonth: string;
21
+ till_expiryyear: string;
22
+ save_card_details: number;
23
+ }, {
24
+ paymentmethod: string;
25
+ customertoken: string;
26
+ authoritytoleave: undefined;
27
+ register: string;
28
+ password: string;
29
+ password_confirmation: string;
30
+ passwordStrengthValue: string;
31
+ customernotes: string;
32
+ ewayKey: string;
33
+ eway_cardname: string;
34
+ eway_cardnumber: string;
35
+ eway_expirymonth: string;
36
+ eway_expiryyear: string;
37
+ eway_cvn: string;
38
+ till_cardname: string;
39
+ till_cardnumber: string;
40
+ till_cvn: string;
41
+ till_expirymonth: string;
42
+ till_expiryyear: string;
43
+ save_card_details: number;
44
+ } | {
45
+ paymentmethod: string;
46
+ customertoken: string;
47
+ authoritytoleave: undefined;
48
+ register: string;
49
+ password: string;
50
+ password_confirmation: string;
51
+ passwordStrengthValue: string;
52
+ customernotes: string;
53
+ ewayKey: string;
54
+ eway_cardname: string;
55
+ eway_cardnumber: string;
56
+ eway_expirymonth: string;
57
+ eway_expiryyear: string;
58
+ eway_cvn: string;
59
+ till_cardname: string;
60
+ till_cardnumber: string;
61
+ till_cvn: string;
62
+ till_expirymonth: string;
63
+ till_expiryyear: string;
64
+ save_card_details: number;
65
+ }>;
66
+ publishableKey: import("vue").Ref<any, any>;
67
+ responseData: import("vue").Ref<any, any>;
68
+ QuotationData: import("vue").Ref<any, any>;
69
+ checkoutSession: import("vue").Ref<any, any>;
70
+ preference: import("vue").Ref<any, any>;
71
+ errorResponseData: import("vue").Ref<any, any>;
72
+ resetState: () => void;
73
+ getQuotation: (slug: string) => Promise<any>;
74
+ getGuestQuotation: (slug: string, query?: any) => Promise<any>;
75
+ GuestCheckoutQuotation: (slug: string, quotationData: any, query?: any) => Promise<any>;
76
+ paymentMethods: (formData: any) => Promise<any>;
77
+ submitCheckout: (slug: string, quotationData: any) => Promise<unknown>;
78
+ };
@@ -0,0 +1,138 @@
1
+ import { ref } from "vue";
2
+ export const useQuotationCheckout = () => {
3
+ const publishableKey = ref({});
4
+ const responseData = ref([]);
5
+ const QuotationData = ref([]);
6
+ const checkoutSession = ref([]);
7
+ const preference = ref({ data: { fields: {} } });
8
+ const errorResponseData = ref([]);
9
+ const inputData = ref({
10
+ paymentmethod: "",
11
+ customertoken: "",
12
+ authoritytoleave: void 0,
13
+ register: "",
14
+ password: "",
15
+ password_confirmation: "",
16
+ passwordStrengthValue: "",
17
+ customernotes: "",
18
+ ewayKey: "",
19
+ eway_cardname: "",
20
+ eway_cardnumber: "",
21
+ eway_expirymonth: "",
22
+ eway_expiryyear: "",
23
+ eway_cvn: "",
24
+ till_cardname: "",
25
+ till_cardnumber: "",
26
+ till_cvn: "",
27
+ till_expirymonth: "",
28
+ till_expiryyear: "",
29
+ save_card_details: 0
30
+ });
31
+ const resetState = () => {
32
+ publishableKey.value = {};
33
+ responseData.value = [];
34
+ checkoutSession.value = [];
35
+ preference.value = [];
36
+ errorResponseData.value = [];
37
+ };
38
+ const getQuotation = async (slug) => {
39
+ try {
40
+ const response = await $fetch(`/api/checkout/quotation/${slug}`, {
41
+ method: "GET"
42
+ });
43
+ if (response) {
44
+ publishableKey.value = response.data;
45
+ QuotationData.value = response;
46
+ }
47
+ return response;
48
+ } catch (error) {
49
+ errorResponseData.value = error.data || error;
50
+ throw error;
51
+ }
52
+ };
53
+ const getGuestQuotation = async (slug, query) => {
54
+ try {
55
+ const response = await $fetch(`/api/checkout/quotation/guest/${slug}`, {
56
+ method: "GET",
57
+ query
58
+ });
59
+ if (response) {
60
+ publishableKey.value = response.data;
61
+ QuotationData.value = response;
62
+ responseData.value = response;
63
+ }
64
+ return response;
65
+ } catch (error) {
66
+ errorResponseData.value = error.data || error;
67
+ throw error;
68
+ }
69
+ };
70
+ const GuestCheckoutQuotation = async (slug, quotationData, query) => {
71
+ try {
72
+ responseData.value = [];
73
+ errorResponseData.value = [];
74
+ const FormData = quotationData.fields;
75
+ const response = await $fetch(`/api/checkout/quotation/guest/${slug}`, {
76
+ method: "POST",
77
+ body: FormData,
78
+ query
79
+ });
80
+ if (response) {
81
+ publishableKey.value = response.data;
82
+ responseData.value = response;
83
+ }
84
+ return response;
85
+ } catch (error) {
86
+ errorResponseData.value = error.data || error;
87
+ throw error;
88
+ }
89
+ };
90
+ const paymentMethods = async (formData) => {
91
+ try {
92
+ const response = await $fetch("/api/checkout/paymentmethod", {
93
+ method: "POST",
94
+ body: formData
95
+ });
96
+ if (response) {
97
+ publishableKey.value = response.data;
98
+ }
99
+ return response;
100
+ } catch (error) {
101
+ errorResponseData.value = error.data || error;
102
+ throw error;
103
+ }
104
+ };
105
+ const submitCheckout = async (slug, quotationData) => {
106
+ try {
107
+ responseData.value = [];
108
+ errorResponseData.value = [];
109
+ console.log("Data", slug, quotationData);
110
+ const response = await $fetch(`/api/checkout/quotation/submit/${slug}`, {
111
+ method: "POST",
112
+ body: quotationData
113
+ });
114
+ if (response.status == "Success") {
115
+ responseData.value = response.data;
116
+ }
117
+ return response;
118
+ } catch (error) {
119
+ errorResponseData.value = error.data || error;
120
+ throw error;
121
+ }
122
+ };
123
+ return {
124
+ inputData,
125
+ publishableKey,
126
+ responseData,
127
+ QuotationData,
128
+ checkoutSession,
129
+ preference,
130
+ errorResponseData,
131
+ resetState,
132
+ getQuotation,
133
+ getGuestQuotation,
134
+ GuestCheckoutQuotation,
135
+ paymentMethods,
136
+ submitCheckout
137
+ };
138
+ };
@@ -1,6 +1,7 @@
1
1
  export declare const flowrixApi: {
2
- get: (endpoint: any, options?: {}, apiversion?: string) => Promise<unknown>;
3
- post: (endpoint: any, options?: {}, apiversion?: string) => Promise<unknown>;
4
- put: (endpoint: any, options?: {}, apiversion?: string) => Promise<unknown>;
5
- delete: (endpoint: any, options?: {}, apiversion?: string) => Promise<unknown>;
2
+ get: (endpoint: any, config?: {}, options?: {}) => Promise<unknown>;
3
+ post: (endpoint: any, config?: {}, options?: {}) => Promise<unknown>;
4
+ put: (endpoint: any, config?: {}, options?: {}) => Promise<unknown>;
5
+ patch: (endpoint: any, config?: {}, options?: {}) => Promise<unknown>;
6
+ delete: (endpoint: any, config?: {}, options?: {}) => Promise<unknown>;
6
7
  };
@@ -1,22 +1,34 @@
1
1
  const isServer = typeof process !== "undefined" && process.server;
2
- function getEnv(key) {
3
- if (typeof useRuntimeConfig === "function") {
4
- const config = useRuntimeConfig();
5
- return config.public?.[key] || config[key];
2
+ function getCookie(name) {
3
+ if (process.client) {
4
+ const value = `; ${document.cookie}`;
5
+ const parts = value.split(`; ${name}=`);
6
+ if (parts.length === 2) return parts.pop().split(";").shift();
7
+ return null;
8
+ } else {
9
+ return null;
6
10
  }
7
- return process.env[key];
8
11
  }
9
- async function request(method, endpoint, options = {}, apiversion) {
10
- const FLOWRIX_API_KEY = getEnv("FLOWRIX_API_KEY");
11
- const FLOWRIX_API_SECRET = getEnv("FLOWRIX_API_SECRET");
12
- const FLOWRIX_API_ORIGIN = getEnv("FLOWRIX_API_ORIGIN");
13
- let FLOWRIX_API_BASE = getEnv("FLOWRIX_API_BASE");
14
- if (apiversion == "v2") {
15
- FLOWRIX_API_BASE = getEnv("FLOWRIX_API_BASE_V2");
16
- }
12
+ const parseCookies = (cookieString) => {
13
+ return Object.fromEntries(
14
+ cookieString.split(";").map((c) => {
15
+ const [key, ...v] = c.trim().split("=");
16
+ return [key, decodeURIComponent(v.join("="))];
17
+ })
18
+ );
19
+ };
20
+ async function request(method, config = {}, endpoint, options = {}) {
21
+ const FLOWRIX_API_KEY = config.public?.FLOWRIX_API_KEY || "";
22
+ const FLOWRIX_API_SECRET = config.public?.FLOWRIX_API_SECRET || "";
23
+ const FLOWRIX_API_ORIGIN = config.public?.FLOWRIX_API_ORIGIN || "";
24
+ let FLOWRIX_API_BASE = config.public?.FLOWRIX_API_BASE_V2 || "";
25
+ const cookiesObj = parseCookies(config.cookies || "");
26
+ const authToken = cookiesObj["authToken"];
17
27
  const headers = {
18
- "x-api-key": FLOWRIX_API_KEY,
19
- "x-api-secret": FLOWRIX_API_SECRET,
28
+ "x-public-key": FLOWRIX_API_KEY,
29
+ "x-session-token": getCookie("x-session-token"),
30
+ "Access-Control-Expose-Headers": "x-session-token",
31
+ "authorization": `Bearer ${authToken}`,
20
32
  "Origin": FLOWRIX_API_ORIGIN,
21
33
  ...options.headers
22
34
  };
@@ -24,17 +36,25 @@ async function request(method, endpoint, options = {}, apiversion) {
24
36
  const response = await $fetch(`${FLOWRIX_API_BASE}${endpoint}`, {
25
37
  method,
26
38
  ...options,
27
- headers
39
+ headers,
40
+ onResponse({ response: response2 }) {
41
+ const token = response2.headers.get("x-session-token");
42
+ if (token) {
43
+ if (process.client) {
44
+ document.cookie = `x-session-token=${token}; path=/; max-age=3600; secure; SameSite=Lax`;
45
+ }
46
+ }
47
+ }
28
48
  });
29
49
  return response;
30
50
  } catch (error) {
31
- console.error(`[FLOWRIX ERROR] ${method.toUpperCase()} ${FLOWRIX_API_BASE}${endpoint}`, error);
32
51
  throw error;
33
52
  }
34
53
  }
35
54
  export const flowrixApi = {
36
- get: (endpoint, options = {}, apiversion = "v1") => request("get", endpoint, options, apiversion),
37
- post: (endpoint, options = {}, apiversion = "v1") => request("post", endpoint, options, apiversion),
38
- put: (endpoint, options = {}, apiversion = "v1") => request("put", endpoint, options, apiversion),
39
- delete: (endpoint, options = {}, apiversion = "v1") => request("delete", endpoint, options, apiversion)
55
+ get: (endpoint, config = {}, options = {}) => request("get", config, endpoint, options),
56
+ post: (endpoint, config = {}, options = {}) => request("post", config, endpoint, options),
57
+ put: (endpoint, config = {}, options = {}) => request("put", config, endpoint, options),
58
+ patch: (endpoint, config = {}, options = {}) => request("patch", config, endpoint, options),
59
+ delete: (endpoint, config = {}, options = {}) => request("delete", config, endpoint, options)
40
60
  };
@@ -1,2 +1,2 @@
1
- declare const _default: import("#app").Plugin<Record<string, unknown>> & import("#app").ObjectPlugin<Record<string, unknown>>;
1
+ declare const _default: any;
2
2
  export default _default;
@@ -5,7 +5,7 @@ export default defineEventHandler(async (event) => {
5
5
  const albums = await $fetch(`${process.env.FLOWRIX_API_BASE}albums`, {
6
6
  method: "GET",
7
7
  headers: {
8
- "x-api-key": process.env.FLOWRIX_API_KEY,
8
+ "x-public-key": process.env.FLOWRIX_API_KEY,
9
9
  "x-api-secret": process.env.FLOWRIX_API_SECRET,
10
10
  "Origin": process.env.FLOWRIX_API_ORIGIN
11
11
  }
@@ -6,7 +6,7 @@ export default defineEventHandler(async (event) => {
6
6
  const response = await fetch(`${process.env.FLOWRIX_API_BASE}verify-email/`, {
7
7
  method: "POST",
8
8
  headers: {
9
- "x-api-key": process.env.FLOWRIX_API_KEY,
9
+ "x-public-key": process.env.FLOWRIX_API_KEY,
10
10
  "x-api-secret": process.env.FLOWRIX_API_SECRET,
11
11
  "Origin": process.env.FLOWRIX_API_ORIGIN,
12
12
  "Content-Type": "application/json"
@@ -9,15 +9,14 @@ export default defineEventHandler(async (event) => {
9
9
  statusMessage: "Email and password are required"
10
10
  });
11
11
  }
12
- const config = useRuntimeConfig();
13
- const apiBase = config.apiBase;
14
- const apiKey = config.apiKey;
15
- const apiSecret = config.apiSecret;
16
- const apiOrigin = config.apiOrigin;
12
+ console.log("Environment check:");
13
+ console.log("API_BASE:", process.env.FLOWRIX_API_KEY);
14
+ console.log("API_KEY present:", process.env.FLOWRIX_API_SECRET);
15
+ console.log("API_SECRET present:", process.env.FLOWRIX_API_ORIGIN);
17
16
  const response = await fetch(`${process.env.FLOWRIX_API_BASE}login/`, {
18
17
  method: "POST",
19
18
  headers: {
20
- "x-api-key": process.env.FLOWRIX_API_KEY,
19
+ "x-public-key": process.env.FLOWRIX_API_KEY,
21
20
  "x-api-secret": process.env.FLOWRIX_API_SECRET,
22
21
  "Origin": process.env.FLOWRIX_API_ORIGIN,
23
22
  "Content-Type": "application/json"
@@ -5,7 +5,7 @@ export default defineEventHandler(async (event) => {
5
5
  await $fetch(`${process.env.FLOWRIX_API_BASE}customer/logout`, {
6
6
  method: "POST",
7
7
  headers: {
8
- "x-api-key": process.env.FLOWRIX_API_KEY,
8
+ "x-public-key": process.env.FLOWRIX_API_KEY,
9
9
  "x-api-secret": process.env.FLOWRIX_API_SECRET,
10
10
  "Origin": process.env.FLOWRIX_API_ORIGIN,
11
11
  "Authorization": `Bearer ${accessTok || ""}`
@@ -6,7 +6,7 @@ export default defineEventHandler(async (event) => {
6
6
  const response = await fetch(`${process.env.FLOWRIX_API_BASE}customer/create`, {
7
7
  method: "POST",
8
8
  headers: {
9
- "x-api-key": process.env.FLOWRIX_API_KEY,
9
+ "x-public-key": process.env.FLOWRIX_API_KEY,
10
10
  "x-api-secret": process.env.FLOWRIX_API_SECRET,
11
11
  "Origin": process.env.FLOWRIX_API_ORIGIN,
12
12
  "Content-Type": "application/json"
@@ -17,7 +17,7 @@ export default defineEventHandler(async (event) => {
17
17
  const response = await fetch(`${apiBase}user/session`, {
18
18
  method: "GET",
19
19
  headers: {
20
- "x-api-key": apiKey,
20
+ "x-public-key": apiKey,
21
21
  "x-api-secret": apiSecret,
22
22
  "Origin": apiOrigin || "",
23
23
  "Authorization": `Bearer ${token}`,
@@ -7,7 +7,7 @@ export default defineEventHandler(async (event) => {
7
7
  const response = await fetch(`${process.env.FLOWRIX_API_BASE}reset-password/`, {
8
8
  method: "POST",
9
9
  headers: {
10
- "x-api-key": process.env.FLOWRIX_API_KEY,
10
+ "x-public-key": process.env.FLOWRIX_API_KEY,
11
11
  "x-api-secret": process.env.FLOWRIX_API_SECRET,
12
12
  "Origin": process.env.FLOWRIX_API_ORIGIN,
13
13
  "Content-Type": "application/json",
@@ -5,7 +5,7 @@ export default defineEventHandler(async (event) => {
5
5
  const response = await fetch(`${process.env.FLOWRIX_API_BASE}customer/profile`, {
6
6
  method: "GET",
7
7
  headers: {
8
- "x-api-key": process.env.FLOWRIX_API_KEY,
8
+ "x-public-key": process.env.FLOWRIX_API_KEY,
9
9
  "x-api-secret": process.env.FLOWRIX_API_SECRET,
10
10
  "Origin": process.env.FLOWRIX_API_ORIGIN,
11
11
  Authorization: authHeader
@@ -6,7 +6,7 @@ export default defineEventHandler(async (event) => {
6
6
  const response = await fetch(`${process.env.FLOWRIX_API_BASE}verify-token/`, {
7
7
  method: "POST",
8
8
  headers: {
9
- "x-api-key": process.env.FLOWRIX_API_KEY,
9
+ "x-public-key": process.env.FLOWRIX_API_KEY,
10
10
  "x-api-secret": process.env.FLOWRIX_API_SECRET,
11
11
  "Origin": process.env.FLOWRIX_API_ORIGIN,
12
12
  "Content-Type": "application/json"
@@ -2,7 +2,7 @@ import { defineEventHandler, createError } from "h3";
2
2
  import { $fetch } from "ofetch";
3
3
  import { writeFile, mkdir, readFile } from "fs/promises";
4
4
  import { join } from "path";
5
- const CACHE_DIR = join(process.cwd(), ".nuxt", "cache", "nitro", "extra");
5
+ const CACHE_DIR = join("/tmp", ".cache", "nitro", "extra");
6
6
  export const catelogCache = /* @__PURE__ */ new Map();
7
7
  async function ensureCacheDir() {
8
8
  try {
@@ -23,7 +23,7 @@ export default defineEventHandler(async (event) => {
23
23
  try {
24
24
  const banners = await $fetch(`${process.env.FLOWRIX_API_BASE}banners`, {
25
25
  headers: {
26
- "x-api-key": process.env.FLOWRIX_API_KEY,
26
+ "x-public-key": process.env.FLOWRIX_API_KEY,
27
27
  "x-api-secret": process.env.FLOWRIX_API_SECRET,
28
28
  "Origin": process.env.FLOWRIX_API_ORIGIN
29
29
  }