From f3a96bcd8916998b5dccf3a6373dce9f0e5d5ccf Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Tue, 22 Oct 2024 16:16:58 +0530 Subject: [PATCH 1/8] PRESS0-2231 products & services page fix --- build/index.asset.php | 2 +- src/configs/ProductsAndServices.config.js | 34 +++++++++++++++++++++-- 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/build/index.asset.php b/build/index.asset.php index 13749327..d0c3a48a 100644 --- a/build/index.asset.php +++ b/build/index.asset.php @@ -1 +1 @@ - array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '857fc5b5930751df9c71'); + array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '647c4c37a5948977f495'); diff --git a/src/configs/ProductsAndServices.config.js b/src/configs/ProductsAndServices.config.js index e0f23a13..7ecc53a5 100644 --- a/src/configs/ProductsAndServices.config.js +++ b/src/configs/ProductsAndServices.config.js @@ -21,6 +21,8 @@ import { wcPluginStatusParser, wcProductsParser, } from "./selectors"; +import apiFetch from '@wordpress/api-fetch'; + const getUrl = (href) => { let [page, qs] = href.split("?"); @@ -39,11 +41,37 @@ function defineFeatureState() { isUpsellNeeded: () => !(NewfoldRuntime.hasCapability("hasYithExtended") && NewfoldRuntime.hasCapability("hasSolution")), featureUrl: (data) => data?.products.length > 0 ? data.plugins?.pluginUrl : null, + purchasedSolution: () => getPurchasedSolution(), upsellOptions: (data) => data?.upsellOptions, }; } -export const ProductsAndServicesDefinition = (props) => ({ +async function getPurchasedSolution() { + const url = NewfoldRuntime.createApiUrl("/newfold-solutions/v1/entitlements") + let purchasedSolution; + + // apiFetch( { url: `${ url }` } ).then( + // ( result ) => { + // console.log(result['solution'], result, "result") + // purchasedSolution = result['solution'] + // }, + // ( error ) => console.log(error) + // ); + // console.log(purchasedSolution, "purchasedSolution") + // return purchasedSolution !== "WP_SOLUTION_COMMERCE"; + + + const res = await apiFetch( { url: `${ url }` } ) + + purchasedSolution = await res.json(); + + console.log( purchasedSolution, "*******") + + return purchasedSolution +} + +export const ProductsAndServicesDefinition = (props) => ( + { dataDependencies: { plugins: async () => PluginsSdk.queries.status( @@ -155,7 +183,7 @@ export const ProductsAndServicesDefinition = (props) => ({ }, { Card: FeatureCard, - shouldRender: () => NewfoldRuntime.hasCapability("hasSolution"), + shouldRender: (state) => NewfoldRuntime.hasCapability("hasSolution") && state.purchasedSolution, name: "booking", assets: ({ isActive }) => ({ Image: CalendarIcon, @@ -207,7 +235,7 @@ export const ProductsAndServicesDefinition = (props) => ({ }, { Card: FeatureCard, - shouldRender: () => NewfoldRuntime.hasCapability("hasSolution"), + shouldRender: (state) => NewfoldRuntime.hasCapability("hasSolution") && state.purchasedSolution, name: "gifts", assets: ({ isActive }) => ({ Image: GiftIcon, From f900ce865b4f9c6ab7b873f7205a88895f160410 Mon Sep 17 00:00:00 2001 From: Ramya krishna Date: Tue, 22 Oct 2024 16:43:33 +0530 Subject: [PATCH 2/8] hide bookking & giftcards if it is ecommecre solution --- src/configs/ProductsAndServices.config.js | 31 ++++++++--------------- 1 file changed, 11 insertions(+), 20 deletions(-) diff --git a/src/configs/ProductsAndServices.config.js b/src/configs/ProductsAndServices.config.js index 7ecc53a5..0bd9051e 100644 --- a/src/configs/ProductsAndServices.config.js +++ b/src/configs/ProductsAndServices.config.js @@ -41,33 +41,15 @@ function defineFeatureState() { isUpsellNeeded: () => !(NewfoldRuntime.hasCapability("hasYithExtended") && NewfoldRuntime.hasCapability("hasSolution")), featureUrl: (data) => data?.products.length > 0 ? data.plugins?.pluginUrl : null, - purchasedSolution: () => getPurchasedSolution(), + purchasedSolution: ( data ) => data.isEcomSolution !== 'WP_SOLUTION_COMMERCE', upsellOptions: (data) => data?.upsellOptions, }; } async function getPurchasedSolution() { const url = NewfoldRuntime.createApiUrl("/newfold-solutions/v1/entitlements") - let purchasedSolution; - - // apiFetch( { url: `${ url }` } ).then( - // ( result ) => { - // console.log(result['solution'], result, "result") - // purchasedSolution = result['solution'] - // }, - // ( error ) => console.log(error) - // ); - // console.log(purchasedSolution, "purchasedSolution") - // return purchasedSolution !== "WP_SOLUTION_COMMERCE"; - - const res = await apiFetch( { url: `${ url }` } ) - - purchasedSolution = await res.json(); - - console.log( purchasedSolution, "*******") - - return purchasedSolution + return res } export const ProductsAndServicesDefinition = (props) => ( @@ -81,6 +63,7 @@ export const ProductsAndServicesDefinition = (props) => ( ), products: WooCommerceSdk.products.list, upsellOptions: MarketplaceSdk.eCommerceOptions, + isEcomSolution: () => getPurchasedSolution() }, cards: [ { @@ -231,6 +214,10 @@ export const ProductsAndServicesDefinition = (props) => ( "YITH Booking and Appointment for WooCommerce" ), }, + { + key: "isEcomSolution", + selector: (data) => data?.solution + } ], }, { @@ -279,6 +266,10 @@ export const ProductsAndServicesDefinition = (props) => ( key: "upsellOptions", selector: findUpsellWithName("YITH WooCommerce Gift Cards"), }, + { + key: "isEcomSolution", + selector: (data) => data?.solution + } ], }, ], From 4ce65b4bc1e42152d7db812bf558000cf9c18833 Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Tue, 22 Oct 2024 16:46:38 +0530 Subject: [PATCH 3/8] Slugs corrected --- build/index.asset.php | 2 +- includes/Data/Plugins.php | 10 +++++----- src/components/WPSolutionsBanner.js | 10 +++++++++- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/build/index.asset.php b/build/index.asset.php index d0c3a48a..ffa9a019 100644 --- a/build/index.asset.php +++ b/build/index.asset.php @@ -1 +1 @@ - array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '647c4c37a5948977f495'); + array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '701ea23537e638f89c97'); diff --git a/includes/Data/Plugins.php b/includes/Data/Plugins.php index 83b71a56..75483d10 100644 --- a/includes/Data/Plugins.php +++ b/includes/Data/Plugins.php @@ -60,27 +60,27 @@ final class Plugins { 'file' => 'sensei-lms/sensei-lms.php' ), //Add An Affiliate Program - 'yith-woocommerce-affiliates-premium' => array( + 'yith-woocommerce-affiliates' => array( 'url' => 'admin.php?page=yith_wcaf_panel&tab=settings&sub_tab=settings-general', 'file' => 'yith-woocommerce-affiliates-premium/init.php' ), //Setup Bookings - 'yith-woocommerce-booking-premium' => array( + 'yith-woocommerce-booking' => array( 'url' => 'edit.php?post_type=yith_booking&yith-plugin-fw-panel-skip-redirect=1', 'file' => 'yith-woocommerce-booking-premium/init.php' ), //Setup A Loyalty Program - 'yith-woocommerce-points-and-rewards-premium' => array( + 'yith-woocommerce-points-and-rewards' => array( 'url' => 'admin.php?page=yith_woocommerce_points_and_rewards&tab=points&sub_tab=points-standard', 'file' => 'yith-woocommerce-points-and-rewards-premium/init.php' ), //Setup WishList - 'yith-woocommerce-wishlist-premium' => array( + 'yith-woocommerce-wishlist' => array( 'url' => 'admin.php?page=yith_wcwl_panel&tab=settings&sub_tab=settings-general', 'file' => 'yith-woocommerce-wishlist-premium/init.php' ), //Enable Product Reviews - 'yith-woocommerce-advanced-reviews-premium' => array( + 'yith-woocommerce-advanced-reviews' => array( 'url' => 'admin.php?page=yith_ywar_panel', 'file' => 'yith-woocommerce-advanced-reviews-premium/init.php' ), diff --git a/src/components/WPSolutionsBanner.js b/src/components/WPSolutionsBanner.js index ecce3704..5d7db629 100644 --- a/src/components/WPSolutionsBanner.js +++ b/src/components/WPSolutionsBanner.js @@ -29,7 +29,15 @@ export function WPSolutionsBanner() { "nfd_slug_wonder_cart", () => PluginsSdk.queries - .status("nfd_slug_wonder_cart", "sensei-lms", "wp-seo", "yith-woocommerce-affiliates-premium", "yith-woocommerce-booking-premium", "yith-woocommerce-points-and-rewards-premium", "yith-woocommerce-wishlist-premium", "yith-woocommerce-advanced-reviews-premium", "yith-woocommerce-dynamic-pricing-and-discounts") + .status("nfd_slug_wonder_cart", + "sensei-lms", + "wp-seo", + "yith-woocommerce-affiliates", + "yith-woocommerce-booking", + "yith-woocommerce-points-and-rewards", + "yith-woocommerce-wishlist", + "yith-woocommerce-advanced-reviews", + "yith-woocommerce-dynamic-pricing-and-discounts") .then(res => { setPluginActiveStatusArray(res?.details) }), From d9ab6105a44dc5fa15b04b95c1931052cfb9e50d Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Tue, 22 Oct 2024 16:50:28 +0530 Subject: [PATCH 4/8] index.asset.php updated --- build/index.asset.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/index.asset.php b/build/index.asset.php index ffa9a019..4dbc3753 100644 --- a/build/index.asset.php +++ b/build/index.asset.php @@ -1 +1 @@ - array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '701ea23537e638f89c97'); + array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '98a730d52c375a0c63c5'); From 3015ec112be362f9f713a8b2b9193eda0c3f0c14 Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Tue, 22 Oct 2024 17:09:03 +0530 Subject: [PATCH 5/8] Display logic for no existing plan section --- build/index.asset.php | 2 +- src/components/WPSolutionsBanner.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/index.asset.php b/build/index.asset.php index 4dbc3753..6aeb8a54 100644 --- a/build/index.asset.php +++ b/build/index.asset.php @@ -1 +1 @@ - array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '98a730d52c375a0c63c5'); + array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '0007a755d8c8e72a7585'); diff --git a/src/components/WPSolutionsBanner.js b/src/components/WPSolutionsBanner.js index 5d7db629..b191837c 100644 --- a/src/components/WPSolutionsBanner.js +++ b/src/components/WPSolutionsBanner.js @@ -81,7 +81,7 @@ export function WPSolutionsBanner() { ); } else if (apiResponse) { - if (purchasedSolution === null) { + if (purchasedSolution === null || !hasSolution) { return (); } else{ From bd238f648d5d670eeca7fd2eaaea53fc2c407771 Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Tue, 22 Oct 2024 17:33:33 +0530 Subject: [PATCH 6/8] update constants.js as per entitlement API --- build/index.asset.php | 2 +- src/components/WPSolutionsBanner.js | 12 ++--- src/constants.js | 77 ++++++++++++++++++++--------- 3 files changed, 60 insertions(+), 31 deletions(-) diff --git a/build/index.asset.php b/build/index.asset.php index 6aeb8a54..db61cd37 100644 --- a/build/index.asset.php +++ b/build/index.asset.php @@ -1 +1 @@ - array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '0007a755d8c8e72a7585'); + array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => 'e024a46ed8e782d45697'); diff --git a/src/components/WPSolutionsBanner.js b/src/components/WPSolutionsBanner.js index b191837c..44b9a90d 100644 --- a/src/components/WPSolutionsBanner.js +++ b/src/components/WPSolutionsBanner.js @@ -120,7 +120,7 @@ export function WPSolutionsBanner() { status === "active" ? ( ) @@ -129,7 +129,7 @@ export function WPSolutionsBanner() { status === "need_to_activate" ? ( ) @@ -150,7 +150,7 @@ export function WPSolutionsBanner() { data-nfd-installer-plugin-url={url} isLoading={status==="installing"} > - { __(`${details['buttonText']}`,"wp-module-ecommerce") } + { __(`${details['cta']['text']}`,"wp-module-ecommerce") } ) @@ -168,7 +168,7 @@ export function WPSolutionsBanner() { data-nfd-installer-plugin-url={url} isLoading={status==="installing"} > - { __(`${details['buttonText']}`,"wp-module-ecommerce") } + { __(`${details['cta']['text']}`,"wp-module-ecommerce") } ) : null @@ -179,8 +179,8 @@ export function WPSolutionsBanner() { )) : //For type not plugin - () diff --git a/src/constants.js b/src/constants.js index 89b0fc84..927c4ff3 100644 --- a/src/constants.js +++ b/src/constants.js @@ -51,92 +51,112 @@ export const wpSolutionsPromotedPluginsList = [ { title: "WEBPAGE CREATION", description: "Build webpages fast with tailored block patterns and page templates included in your hosting package.", - buttonText: "Add a Page to Your Site", name: "Webpage Creation", plsSlug: "", plsProviderName: "", download: null, basename: "", - url: "post-new.php?post_type=page" + cta: { + "text": "Add a Page to Your Site", + "url" : "post-new.php?post_type=page" + } + }, { title: "SEARCH ENGINE OPTIMIZATION", description: "Start increasing your search result rankings today.", - buttonText: "Improve Your Search Ranking", name:"Yoast SEO", plsSlug: "wp-seo", plsProviderName: "yoast", download: "https://downloads.wordpress.org/plugin/wordpress-seo.latest-stable.zip", basename: "wordpress-seo/wp-seo.php", - url: "admin.php?page=wpseo_dashboard#top#first-time-configuration" + cta: { + "text": "Improve Your Search Ranking", + "url": "admin.php?page=wpseo_dashboard#top#first-time-configuration" + }, }, { title: "OFFER CONTENT COURSES", description: "Create beautiful and engaging online courses, lessons, and quizzes.", - buttonText: "Create a Course", name: "Offer Content Courses", plsSlug: "sensei-lms", plsProviderName: "automattic", download: "https://downloads.wordpress.org/plugin/sensei-lms.latest-stable.zip", basename: "sensei-lms/sensei-lms.php", - url: "post-new.php?post_type=course" + cta: { + "text": "Create a Course", + "url": "post-new.php?post_type=course" + }, }, { title: "ADD AN AFFILIATE PROGRAM", description: "Grant your affiliates earnings each time someone purchases from their link.", - buttonText: "Create an Affiliate Program", name: "Affiliate Programs", plsSlug: "yith-woocommerce-affiliates", plsProviderName: "yith", download: null, basename: "yith-woocommerce-affiliates-premium/init.php", - url: "admin.php?page=yith_wcaf_panel&tab=settings&sub_tab=settings-general" + cta: { + "text": "Create an Affiliate Program", + "url": "admin.php?page=yith_wcaf_panel&tab=settings&sub_tab=settings-general" + } } ], "WP_SOLUTION_SERVICE": [ { title: "SETUP BOOKINGS", description: "Manage the renting or booking of services and items that you offer your customers.", - buttonText: "Setup Bookings", name: "Bookings & Appointments", plsSlug: "yith-woocommerce-booking", plsProviderName: "yith", download: null, basename: "yith-woocommerce-booking-premium/init.php", - url: "edit.php?post_type=yith_booking&yith-plugin-fw-panel-skip-redirect=1" + cta: { + "text": "Setup Bookings", + "url": "edit.php?post_type=yith_booking&yith-plugin-fw-panel-skip-redirect=1" + } + }, { title: "WEBPAGE CREATION", description: "Build webpages fast with tailored block patterns and page templates.", - buttonText: "Add a Page to Your Site", name: "Webpage Creation", plsSlug: "", plsProviderName: "", download: null, basename: "", - url: "post-new.php?post_type=page" + cta: { + "text": "Add a Page to Your Site", + "url": "post-new.php?post_type=page" + } + }, { title: "SEARCH ENGINE OPTIMIZATION", description: "Start increasing your search result rankings today.", - buttonText: "Improve Your Search Ranking", name: "Yoast SEO", plsSlug: "wp-seo", plsProviderName: "yoast", download: "https://downloads.wordpress.org/plugin/wordpress-seo.latest-stable.zip", basename: "wordpress-seo/wp-seo.php", - url: "admin.php?page=wpseo_dashboard#top#first-time-configuration" + cta: { + "text": "Improve Your Search Ranking", + "url": "admin.php?page=wpseo_dashboard#top#first-time-configuration" + } + }, { title: "SETUP A LOYALTY PROGRAM", description: "Reward customer loyalty with an effective points program.", - buttonText: "Configure Points & Rewards", name: "Loyalty Program", plsSlug: "yith-woocommerce-points-and-rewards", plsProviderName: "yith", download: null, basename: "yith-woocommerce-points-and-rewards-premium/init.php", - url:"admin.php?page=yith_woocommerce_points_and_rewards&tab=points&sub_tab=points-standard" + cta: { + "text": "Configure Points & Rewards", + "url":"admin.php?page=yith_woocommerce_points_and_rewards&tab=points&sub_tab=points-standard" + } }, ], @@ -144,46 +164,55 @@ export const wpSolutionsPromotedPluginsList = [ { title: "ENABLE PRODUCT REVIEWS", description: "Get positive product reviews and use social proof to drive more sales.", - buttonText: "Enable Product Reviews", name: "Advanced Reviews", plsSlug: "yith-woocommerce-advanced-reviews", plsProviderName: "yith", download: null, basename: "yith-woocommerce-advanced-reviews-premium/init.php", - url: "admin.php?page=yith_ywar_panel" + cta: { + "text": "Enable Product Reviews", + "url": "admin.php?page=yith_ywar_panel" + } + }, { title: "SETUP WISHLISTS", description: "Let customers add products to lists and share them with family and friends.", - buttonText: "Setup Wishilsts", name: "Wishlists", plsSlug: "yith-woocommerce-wishlist", plsProviderName: "yith", download: null, basename: "yith-woocommerce-wishlist-premium/init.php", - url: "admin.php?page=yith_wcwl_panel&tab=settings&sub_tab=settings-general" + cta: { + "text": "Setup Wishilsts", + "url": "admin.php?page=yith_wcwl_panel&tab=settings&sub_tab=settings-general" + } }, { title: "SEARCH ENGINE OPTIMIZATION", description: "Start increasing your search result rankings today.", - buttonText: "Improve Your Search Ranking", name: "Yoast SEO", plsSlug: "wp-seo", plsProviderName: "yoast", download: "https://downloads.wordpress.org/plugin/wordpress-seo.latest-stable.zip", basename: "wordpress-seo/wp-seo.php", - url: "admin.php?page=wpseo_dashboard#top#first-time-configuration" + cta: { + "text": "Improve Your Search Ranking", + "url": "admin.php?page=wpseo_dashboard#top#first-time-configuration" + }, }, { title: "CREATE A SALES CAMPAIGN", description: "Create custom upsell, cross-sell and other promotional campaigns to generate more sales.", - buttonText: "Create a Campaign", name: "SALES CAMPAIGN", plsSlug: "yith-woocommerce-dynamic-pricing-and-discounts", plsProviderName: "yith", download: null, basename: "yith-woocommerce-dynamic-pricing-and-discounts/init.php", - url: "edit.php?post_type=ywdpd_discount&yith-plugin-fw-panel-skip-redirect=1" + cta: { + "text": "Create a Campaign", + "url": "edit.php?post_type=ywdpd_discount&yith-plugin-fw-panel-skip-redirect=1" + } } ], } From 2d4cd3f5bd70e5e91504a17813db50426b98714c Mon Sep 17 00:00:00 2001 From: Ramya krishna Date: Tue, 22 Oct 2024 18:04:38 +0530 Subject: [PATCH 7/8] added data attributes --- build/index.asset.php | 2 +- src/components/WPSolutionsBanner.js | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/build/index.asset.php b/build/index.asset.php index db61cd37..eb55938c 100644 --- a/build/index.asset.php +++ b/build/index.asset.php @@ -1 +1 @@ - array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => 'e024a46ed8e782d45697'); + array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '06f7324e4a155909e837'); diff --git a/src/components/WPSolutionsBanner.js b/src/components/WPSolutionsBanner.js index 44b9a90d..17a7215f 100644 --- a/src/components/WPSolutionsBanner.js +++ b/src/components/WPSolutionsBanner.js @@ -128,7 +128,15 @@ export function WPSolutionsBanner() { //installed but not active status === "need_to_activate" ? ( - From 83defdb714be12d5e24e05d8d63014100f1e8212 Mon Sep 17 00:00:00 2001 From: aratidgr8 Date: Tue, 22 Oct 2024 18:08:04 +0530 Subject: [PATCH 8/8] Version Upgrade to 1.4.0-beta.9 --- bootstrap.php | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bootstrap.php b/bootstrap.php index 7a34378f..9c0cbe7b 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -5,7 +5,7 @@ use function NewfoldLabs\WP\ModuleLoader\register; -define( 'NFD_ECOMMERCE_MODULE_VERSION', '1.4.0-beta.8' ); +define( 'NFD_ECOMMERCE_MODULE_VERSION', '1.4.0-beta.9' ); if ( function_exists( 'is_admin' ) && is_admin() ) { $old_woocommerce_module_version = get_option( 'nfd_ecommerce_module_version' ); diff --git a/package-lock.json b/package-lock.json index 923fbdb3..e10e65d9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@newfold-labs/wp-module-ecommerce", - "version": "1.4.0-beta.8", + "version": "1.4.0-beta.9", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@newfold-labs/wp-module-ecommerce", - "version": "1.4.0-beta.8", + "version": "1.4.0-beta.9", "license": "GPL-2.0-or-later", "dependencies": { "@faizaanceg/pandora": "^1.1.1", diff --git a/package.json b/package.json index 7befb609..ce3a7fea 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@newfold-labs/wp-module-ecommerce", "description": "Brand Agnostic eCommerce Experience", "license": "GPL-2.0-or-later", - "version": "1.4.0-beta.8", + "version": "1.4.0-beta.9", "main": "build/index.js", "files": [ "build/",