flowrix 1.0.1-beta.9 → 1.0.1-beta.92
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.d.mts +1 -6
- package/dist/module.json +1 -1
- package/dist/module.mjs +103 -34
- package/dist/runtime/composables/Blog/useBlogIndex.d.ts +2 -5
- package/dist/runtime/composables/Brand/brand.js +2 -0
- package/dist/runtime/composables/Cart/useCart.d.ts +40 -0
- package/dist/runtime/composables/Cart/useCart.js +10 -0
- package/dist/runtime/composables/Cart/useCartDetail.d.ts +15 -5
- package/dist/runtime/composables/Cart/useCartDetail.js +3 -0
- package/dist/runtime/composables/Checkout/PaymentMethods/useFlowrixpay.d.ts +40 -1
- package/dist/runtime/composables/Checkout/PaymentMethods/useFlowrixpay.js +2 -2
- package/dist/runtime/composables/Checkout/PaymentMethods/useOpayo.d.ts +40 -1
- package/dist/runtime/composables/Checkout/PaymentMethods/useOpayo.js +2 -2
- package/dist/runtime/composables/Checkout/PaymentMethods/usePaymentMethods.js +3 -14
- package/dist/runtime/composables/Checkout/PaymentMethods/useStripe.d.ts +2 -2
- package/dist/runtime/composables/Checkout/useCheckout.d.ts +84 -73
- package/dist/runtime/composables/Checkout/useCheckout.js +81 -34
- package/dist/runtime/composables/Checkout/useCheckoutBillingAddress.d.ts +43 -0
- package/dist/runtime/composables/Checkout/useCheckoutBillingAddress.js +84 -0
- package/dist/runtime/composables/Checkout/useCheckoutShippingAddress.d.ts +55 -0
- package/dist/runtime/composables/Checkout/useCheckoutShippingAddress.js +196 -0
- package/dist/runtime/composables/Checkout/useCreateAccount.d.ts +7 -7
- package/dist/runtime/composables/Checkout/useCreateAccount.js +3 -1
- package/dist/runtime/composables/Checkout/useDeliveryMethod.d.ts +2 -2
- package/dist/runtime/composables/Checkout/useDeliveryMethod.js +8 -7
- package/dist/runtime/composables/Customer/useBillingAddress.d.ts +112 -0
- package/dist/runtime/composables/Customer/useBillingAddress.js +93 -0
- package/dist/runtime/composables/Customer/useLogin.d.ts +9 -0
- package/dist/runtime/composables/Customer/useLogin.js +34 -0
- package/dist/runtime/composables/Customer/useOrders.d.ts +29 -0
- package/dist/runtime/composables/Customer/useOrders.js +56 -0
- package/dist/runtime/composables/Customer/usePasswordReset.d.ts +26 -0
- package/dist/runtime/composables/Customer/usePasswordReset.js +258 -0
- package/dist/runtime/composables/Customer/useProfile.d.ts +75 -0
- package/dist/runtime/composables/Customer/useProfile.js +106 -0
- package/dist/runtime/composables/Customer/useQuotations.d.ts +32 -0
- package/dist/runtime/composables/Customer/useQuotations.js +40 -0
- package/dist/runtime/composables/Customer/useRegister.d.ts +120 -11
- package/dist/runtime/composables/Customer/useRegister.js +311 -34
- package/dist/runtime/composables/Customer/useShippingAddress.d.ts +121 -0
- package/dist/runtime/composables/Customer/useShippingAddress.js +145 -0
- package/dist/runtime/composables/Customer/useUpdatePassword.d.ts +21 -0
- package/dist/runtime/composables/Customer/useUpdatePassword.js +94 -0
- package/dist/runtime/composables/Customer/useUserCards.d.ts +22 -0
- package/dist/runtime/composables/Customer/useUserCards.js +65 -0
- package/dist/runtime/composables/{useWishlists.d.ts → Customer/useWishlists.d.ts} +6 -19
- package/dist/runtime/composables/{useWishlists.js → Customer/useWishlists.js} +21 -29
- package/dist/runtime/composables/Extras/useCountry.d.ts +11 -6
- package/dist/runtime/composables/Extras/useCountry.js +5 -4
- package/dist/runtime/composables/Header/useHeader.d.ts +6 -20
- package/dist/runtime/composables/Header/useHeader.js +3 -2
- package/dist/runtime/composables/Product/CustomProduct/useCustomeScript.js +4 -4
- package/dist/runtime/composables/Product/CustomProduct/useSteps.d.ts +1 -1
- package/dist/runtime/composables/Product/useProductComponent.js +2 -0
- package/dist/runtime/composables/Product/useProductSlug.d.ts +8 -1
- package/dist/runtime/composables/Product/useQuickView.d.ts +8 -0
- package/dist/runtime/composables/Product/useQuickView.js +27 -0
- package/dist/runtime/composables/Product/useService.d.ts +1 -1
- package/dist/runtime/composables/Product/useService.js +0 -3
- package/dist/runtime/composables/SideBar/Filters/useFilters.d.ts +2 -2
- package/dist/runtime/composables/SideBar/Filters/useSorting.d.ts +2 -2
- package/dist/runtime/composables/index.d.ts +16 -12
- package/dist/runtime/composables/index.js +16 -12
- package/dist/runtime/composables/useAddresses.js +6 -6
- package/dist/runtime/composables/useCards.js +2 -2
- package/dist/runtime/composables/useDataLayer.js +2 -1
- package/dist/runtime/composables/useLocation.d.ts +2 -12
- package/dist/runtime/composables/useQuotationCheckout.d.ts +78 -0
- package/dist/runtime/composables/useQuotationCheckout.js +138 -0
- package/dist/runtime/middleware/flowrix.d.ts +5 -4
- package/dist/runtime/middleware/flowrix.js +41 -21
- package/dist/runtime/pages/flowrix-default.d.vue.ts +3 -0
- package/dist/runtime/pages/flowrix-default.vue +34 -0
- package/dist/runtime/pages/flowrix-default.vue.d.ts +3 -0
- package/dist/runtime/plugin.d.ts +1 -1
- package/dist/runtime/server/api/albums.d.ts +1 -0
- package/dist/runtime/server/api/albums.js +38 -12
- package/dist/runtime/server/api/auth/forgot.js +1 -1
- package/dist/runtime/server/api/auth/login.js +5 -6
- package/dist/runtime/server/api/auth/logout.js +1 -1
- package/dist/runtime/server/api/auth/register.js +1 -1
- package/dist/runtime/server/api/auth/session.get.js +1 -1
- package/dist/runtime/server/api/auth/user/reset-password.js +1 -1
- package/dist/runtime/server/api/auth/user/session.js +1 -1
- package/dist/runtime/server/api/auth/user/verify-token.js +1 -1
- package/dist/runtime/server/api/banners.js +15 -12
- package/dist/runtime/server/api/brand/[...slug].js +55 -0
- package/dist/runtime/server/api/brand/index.d.ts +3 -0
- package/dist/runtime/server/api/brand/index.js +49 -0
- package/dist/runtime/server/api/cache/[...slug].delete.d.ts +2 -0
- package/dist/runtime/server/api/cache/[...slug].delete.js +40 -0
- package/dist/runtime/server/api/cache/clean.get.d.ts +5 -0
- package/dist/runtime/server/api/cache/clean.get.js +16 -0
- package/dist/runtime/server/api/cart/[slug]/add.d.ts +1 -1
- package/dist/runtime/server/api/cart/[slug]/add.js +11 -11
- package/dist/runtime/server/api/cart/[slug]/update.d.ts +1 -1
- package/dist/runtime/server/api/cart/[slug]/update.js +11 -11
- package/dist/runtime/server/api/{blog/blog.d.ts → cart/related.d.ts} +0 -1
- package/dist/runtime/server/api/cart/related.js +21 -0
- package/dist/runtime/server/api/cart/remove.js +1 -1
- package/dist/runtime/server/api/cart/service/[slug]/add.d.ts +1 -1
- package/dist/runtime/server/api/cart/service/[slug]/add.js +12 -12
- package/dist/runtime/server/api/catalog/brands.d.ts +3 -0
- package/dist/runtime/server/api/catalog/brands.js +49 -0
- package/dist/runtime/server/api/catalog/categories.js +22 -16
- package/dist/runtime/server/api/catalog/categoriesall.d.ts +3 -0
- package/dist/runtime/server/api/catalog/categoriesall.js +49 -0
- package/dist/runtime/server/api/catalog/featured.js +22 -14
- package/dist/runtime/server/api/catalog/posts.d.ts +3 -0
- package/dist/runtime/server/api/catalog/posts.js +49 -0
- package/dist/runtime/server/api/catalog/samples.js +22 -16
- package/dist/runtime/server/api/catalog/search.js +21 -15
- package/dist/runtime/server/api/category/[...slug].js +22 -16
- package/dist/runtime/server/api/checkout/applyCoupon.d.ts +1 -1
- package/dist/runtime/server/api/checkout/applyCoupon.js +13 -13
- package/dist/runtime/server/api/checkout/configs.d.ts +1 -1
- package/dist/runtime/server/api/checkout/configs.js +11 -11
- package/dist/runtime/server/api/checkout/countries.d.ts +1 -1
- package/dist/runtime/server/api/checkout/countries.js +5 -9
- package/dist/runtime/server/api/checkout/paymentmethod.d.ts +1 -1
- package/dist/runtime/server/api/checkout/paymentmethod.js +16 -11
- package/dist/runtime/server/api/checkout/quotation/[slug].d.ts +2 -0
- package/dist/runtime/server/api/checkout/quotation/[slug].js +21 -0
- package/dist/runtime/server/api/checkout/quotation/guest/[slug].d.ts +2 -0
- package/dist/runtime/server/api/checkout/quotation/guest/[slug].js +37 -0
- package/dist/runtime/server/api/checkout/quotation/guest/customer.d.ts +2 -0
- package/dist/runtime/server/api/checkout/quotation/guest/customer.js +21 -0
- package/dist/runtime/server/api/checkout/quotation/submit/[slug].d.ts +2 -0
- package/dist/runtime/server/api/checkout/quotation/submit/[slug].js +23 -0
- package/dist/runtime/server/api/{blog/[slug].js → cmspost/[...slug].js} +19 -18
- package/dist/runtime/server/api/cmspost/all.d.ts +3 -0
- package/dist/runtime/server/api/cmspost/all.js +49 -0
- package/dist/runtime/server/api/company/profile.d.ts +1 -1
- package/dist/runtime/server/api/company/profile.js +9 -9
- package/dist/runtime/server/api/contact-center/webforms/[id]/details.d.ts +1 -1
- package/dist/runtime/server/api/contact-center/webforms/[id]/details.js +48 -15
- package/dist/runtime/server/api/contact-center/webforms/create.d.ts +1 -1
- package/dist/runtime/server/api/contact-center/webforms/create.js +10 -10
- package/dist/runtime/server/api/countries.d.ts +2 -0
- package/dist/runtime/server/api/countries.js +42 -0
- package/dist/runtime/server/api/customer/address/add.js +1 -1
- package/dist/runtime/server/api/customer/address/delete.js +2 -2
- package/dist/runtime/server/api/customer/address/setshipping.js +1 -1
- package/dist/runtime/server/api/customer/address/update.js +1 -1
- package/dist/runtime/server/api/customer/cards/delete.js +2 -2
- package/dist/runtime/server/api/customer/cards/get.js +2 -2
- package/dist/runtime/server/api/customer/change-password.js +2 -2
- package/dist/runtime/server/api/customer/checkout.js +1 -1
- package/dist/runtime/server/api/customer/orders.js +2 -2
- package/dist/runtime/server/api/customer/profile/update.js +1 -1
- package/dist/runtime/server/api/customer/quotations.js +2 -2
- package/dist/runtime/server/api/customer/search.js +1 -1
- package/dist/runtime/server/api/customer/tax-invoice.js +1 -1
- package/dist/runtime/server/api/customer/wishlist/add.js +1 -1
- package/dist/runtime/server/api/customer/wishlist/createWishList.js +1 -1
- package/dist/runtime/server/api/customer/wishlist/deleteFromWishList.js +1 -1
- package/dist/runtime/server/api/customer/wishlist/deleteWishList.js +1 -1
- package/dist/runtime/server/api/customer/wishlist/get.js +2 -2
- package/dist/runtime/server/api/customer/wishlist/getWishListItems.js +1 -1
- package/dist/runtime/server/api/customer/wishlist/updateWishList.js +2 -2
- package/dist/runtime/server/api/featured.d.ts +3 -0
- package/dist/runtime/server/api/featured.js +49 -0
- package/dist/runtime/server/api/generate/robots.get.d.ts +2 -0
- package/dist/runtime/server/api/generate/robots.get.js +20 -0
- package/dist/runtime/server/api/generate/sitemap.get.d.ts +2 -0
- package/dist/runtime/server/api/generate/sitemap.get.js +32 -0
- package/dist/runtime/server/api/location.d.ts +1 -1
- package/dist/runtime/server/api/location.js +20 -12
- package/dist/runtime/server/api/nav/[id]/links.d.ts +1 -0
- package/dist/runtime/server/api/nav/[id]/links.js +48 -14
- package/dist/runtime/server/api/page/{[slug].js → [...slug].js} +18 -17
- package/dist/runtime/server/api/product/[...slug].js +23 -9
- package/dist/runtime/server/api/{v2/[...slug].d.ts → quickview/[slug].d.ts} +0 -1
- package/dist/runtime/server/api/quickview/[slug].js +17 -0
- package/dist/runtime/server/api/reviews.d.ts +2 -0
- package/dist/runtime/server/api/reviews.js +18 -0
- package/dist/runtime/server/api/samples.d.ts +3 -0
- package/dist/runtime/server/api/samples.js +50 -0
- package/dist/runtime/server/api/search.d.ts +3 -0
- package/dist/runtime/server/api/search.js +50 -0
- package/dist/runtime/server/api/service/[slug].js +17 -13
- package/dist/runtime/server/api/service/availability.d.ts +1 -1
- package/dist/runtime/server/api/service/availability.js +11 -13
- package/dist/runtime/server/api/service/getall.d.ts +3 -0
- package/dist/runtime/server/api/service/getall.js +55 -0
- package/dist/runtime/server/api/shop.d.ts +3 -0
- package/dist/runtime/server/api/shop.js +50 -0
- package/dist/runtime/server/api/subscribe.d.ts +1 -1
- package/dist/runtime/server/api/subscribe.js +19 -14
- package/dist/runtime/server/api/v2/[...slug].get.d.ts +2 -0
- package/dist/runtime/server/api/v2/[...slug].get.js +16 -0
- package/dist/runtime/server/api/webform.d.ts +3 -0
- package/dist/runtime/server/api/webform.js +52 -0
- package/dist/runtime/server/tsconfig.json +3 -3
- package/dist/runtime/stores/Cart.d.ts +12 -0
- package/dist/runtime/stores/Cart.js +56 -19
- package/dist/runtime/stores/Checkout.d.ts +9 -15
- package/dist/runtime/stores/Checkout.js +19 -24
- package/dist/runtime/stores/Search.d.ts +1 -1
- package/dist/runtime/stores/Services.js +2 -2
- package/dist/runtime/stores/auth.d.ts +8 -11
- package/dist/runtime/stores/auth.js +390 -8
- package/dist/runtime/stores/countries.d.ts +1 -3
- package/dist/runtime/stores/countries.js +4 -8
- package/dist/runtime/stores/product/slug.d.ts +1 -17
- package/dist/runtime/stores/wishlists.d.ts +114 -6
- package/dist/runtime/stores/wishlists.js +209 -9
- package/dist/runtime/utils/api.js +9 -13
- package/dist/runtime/utils/htmlCache.d.ts +2 -2
- package/dist/runtime/utils/htmlCache.js +23 -13
- package/dist/types.d.mts +6 -2
- package/package.json +30 -20
- package/dist/runtime/composables/Checkout/useBillingAddress.d.ts +0 -19
- package/dist/runtime/composables/Checkout/useBillingAddress.js +0 -82
- package/dist/runtime/composables/Checkout/useShippingAddress.d.ts +0 -9
- package/dist/runtime/composables/Checkout/useShippingAddress.js +0 -121
- package/dist/runtime/composables/useAuth.d.ts +0 -45
- package/dist/runtime/composables/useAuth.js +0 -180
- package/dist/runtime/composables/useCountries.d.ts +0 -12
- package/dist/runtime/composables/useCountries.js +0 -50
- package/dist/runtime/composables/useOrders.d.ts +0 -21
- package/dist/runtime/composables/useOrders.js +0 -82
- package/dist/runtime/composables/useQuotations.d.ts +0 -14
- package/dist/runtime/composables/useQuotations.js +0 -50
- package/dist/runtime/plugins/fullReload.client.d.ts +0 -2
- package/dist/runtime/plugins/fullReload.client.js +0 -10
- package/dist/runtime/server/api/blog/blog.js +0 -17
- package/dist/runtime/server/api/brand/[slug].js +0 -58
- package/dist/runtime/server/api/v2/[...slug].js +0 -9
- /package/dist/runtime/server/api/brand/{[slug].d.ts → [...slug].d.ts} +0 -0
- /package/dist/runtime/server/api/{blog/[slug].d.ts → cmspost/[...slug].d.ts} +0 -0
- /package/dist/runtime/server/api/page/{[slug].d.ts → [...slug].d.ts} +0 -0
|
@@ -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/
|
|
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/
|
|
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,16 @@ 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 {
|
|
63
|
-
export { useDataLayer } from "./useDataLayer.js";
|
|
71
|
+
export { GTM_page_view, GTM_view_item, GTM_view_item_list, GTM_view_cart, GTM_add_to_cart, GTM_remove_from_cart, GTM_begin_checkout, GTM_add_shipping_info, GTM_add_payment_info, GTM_purchase, GTM_select_item_color, GTM_select_item_collection, GTM_Attribute_Content } from "./useDataLayer.js";
|
|
64
72
|
export { useDynamicHtmlRenderer } from "./useDynamicHtmlRenderer.js";
|
|
65
73
|
export { useLocation } from "./useLocation.js";
|
|
66
74
|
export { useLocations } from "./useLocations.js";
|
|
67
|
-
export {
|
|
68
|
-
export { useOrders } from "./useOrders.js";
|
|
69
|
-
export { useQuotations } from "./useQuotations.js";
|
|
75
|
+
export { useQuotationCheckout } from "./useQuotationCheckout.js";
|
|
70
76
|
export { useSearch } from "./useSearch.js";
|
|
71
77
|
export { useSubscriptions } from "./useSubscriptions.js";
|
|
72
|
-
export { useTikTokDatalayer } from "./useTikTokDatalayer.js";
|
|
73
78
|
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 {
|
|
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 } =
|
|
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;
|
|
@@ -9,7 +9,7 @@ const getDataLayer = () => {
|
|
|
9
9
|
};
|
|
10
10
|
const getCurrencyCode = () => {
|
|
11
11
|
const companyProfile = useCompanyProfile();
|
|
12
|
-
return companyProfile.profile?.currencyCode || "USD";
|
|
12
|
+
return companyProfile.profile?.data?.currencyCode || "USD";
|
|
13
13
|
};
|
|
14
14
|
export function GTM_page_view(to) {
|
|
15
15
|
const dataLayer = getDataLayer();
|
|
@@ -112,6 +112,7 @@ export function GTM_view_cart(cart = null) {
|
|
|
112
112
|
});
|
|
113
113
|
}
|
|
114
114
|
export function GTM_add_to_cart(lastitem = null) {
|
|
115
|
+
console.log(lastitem);
|
|
115
116
|
const dataLayer = getDataLayer();
|
|
116
117
|
if (!dataLayer || !lastitem) return;
|
|
117
118
|
let price = lastitem.pricefloat;
|
|
@@ -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
|
-
|
|
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,
|
|
3
|
-
post: (endpoint: any,
|
|
4
|
-
put: (endpoint: any,
|
|
5
|
-
|
|
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
|
|
3
|
-
if (
|
|
4
|
-
const
|
|
5
|
-
|
|
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
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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-
|
|
19
|
-
"x-
|
|
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,
|
|
37
|
-
post: (endpoint,
|
|
38
|
-
put: (endpoint,
|
|
39
|
-
|
|
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
|
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
const route = useRoute();
|
|
3
|
+
const { data, error } = await useAsyncData(
|
|
4
|
+
"flowrix-page",
|
|
5
|
+
() => $fetch(`/api/v2${route.fullPath}`, {
|
|
6
|
+
method: "GET"
|
|
7
|
+
})
|
|
8
|
+
);
|
|
9
|
+
if (error.value) {
|
|
10
|
+
throw createError({
|
|
11
|
+
statusCode: 404,
|
|
12
|
+
statusMessage: "Page Not Found"
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
const rediectpage = (async (data2) => {
|
|
16
|
+
return navigateTo(data2.target, { redirectCode: 302 });
|
|
17
|
+
});
|
|
18
|
+
if (data.value?.data?.type === "Redirect") {
|
|
19
|
+
}
|
|
20
|
+
const html = data.value?.data?.html || null;
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
<template>
|
|
24
|
+
{{ data }}
|
|
25
|
+
<div>
|
|
26
|
+
<!-- Render HTML page from API -->
|
|
27
|
+
<div v-if="html" v-html="html"></div>
|
|
28
|
+
|
|
29
|
+
<!-- Fallback for debugging -->
|
|
30
|
+
<div v-else>
|
|
31
|
+
<pre>{{ data }}</pre>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
</template>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|
package/dist/runtime/plugin.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: any;
|
|
2
2
|
export default _default;
|
|
@@ -1,18 +1,44 @@
|
|
|
1
|
-
import { defineEventHandler,
|
|
2
|
-
import {
|
|
1
|
+
import { defineEventHandler, createError } from "h3";
|
|
2
|
+
import { writeFile, mkdir, readFile } from "fs/promises";
|
|
3
|
+
import { join } from "path";
|
|
4
|
+
import { useRuntimeConfig } from "#imports";
|
|
5
|
+
import { flowrixApi } from "../../middleware/flowrix.js";
|
|
6
|
+
const CACHE_DIR = join("/tmp", ".cache", "nitro", "extra");
|
|
7
|
+
export const catelogCache = /* @__PURE__ */ new Map();
|
|
8
|
+
async function ensureCacheDir() {
|
|
9
|
+
try {
|
|
10
|
+
await mkdir(CACHE_DIR, { recursive: true });
|
|
11
|
+
} catch (error) {
|
|
12
|
+
console.error("Error creating cache directory:", error);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
3
15
|
export default defineEventHandler(async (event) => {
|
|
16
|
+
const fileName = "albums";
|
|
17
|
+
const filePath = join(CACHE_DIR, `${fileName}.json`);
|
|
4
18
|
try {
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
19
|
+
const fileContent = await readFile(filePath, "utf-8");
|
|
20
|
+
const catelog = JSON.parse(fileContent);
|
|
21
|
+
return catelog;
|
|
22
|
+
} catch (error) {
|
|
23
|
+
}
|
|
24
|
+
try {
|
|
25
|
+
const config = useRuntimeConfig();
|
|
26
|
+
const rawCookies = event.req.headers.cookie || "";
|
|
27
|
+
const apiConfig = {
|
|
28
|
+
...config,
|
|
29
|
+
cookies: rawCookies
|
|
30
|
+
};
|
|
31
|
+
const albums = await flowrixApi.get(`albums`, apiConfig);
|
|
32
|
+
if (config.public.FLOWRIX_CACHE == true) {
|
|
33
|
+
await ensureCacheDir();
|
|
34
|
+
await writeFile(filePath, JSON.stringify(albums, null, 2), "utf-8");
|
|
35
|
+
}
|
|
13
36
|
return albums;
|
|
14
37
|
} catch (error) {
|
|
15
|
-
|
|
16
|
-
|
|
38
|
+
throw createError({
|
|
39
|
+
statusCode: 500,
|
|
40
|
+
statusMessage: `Failed to fetch albums`,
|
|
41
|
+
data: error.message
|
|
42
|
+
});
|
|
17
43
|
}
|
|
18
44
|
});
|
|
@@ -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-
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
20
|
+
"x-public-key": apiKey,
|
|
21
21
|
"x-api-secret": apiSecret,
|
|
22
22
|
"Origin": apiOrigin || "",
|
|
23
23
|
"Authorization": `Bearer ${token}`,
|