@gem-sdk/core 1.58.0-dev.114 → 1.58.0-dev.115
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/cjs/helpers/third-party/appConfig.js +7 -0
- package/dist/cjs/helpers/third-party/appSetting.js +42 -1
- package/dist/cjs/helpers/third-party/constant.js +2 -1
- package/dist/esm/helpers/third-party/appConfig.js +7 -1
- package/dist/esm/helpers/third-party/appSetting.js +42 -1
- package/dist/esm/helpers/third-party/constant.js +3 -2
- package/package.json +1 -1
|
@@ -228,6 +228,12 @@ const PowrContactFormBuilderConfig = {
|
|
|
228
228
|
appId: '1412fe37-d89c-4706-a797-6e2b53cb4a69'
|
|
229
229
|
}
|
|
230
230
|
};
|
|
231
|
+
const MyappgurusProductReviewsConfig = {
|
|
232
|
+
MyappgurusProductReviews: {
|
|
233
|
+
appName: 'mag-product-reviews',
|
|
234
|
+
appId: '0cf5caa0-e138-46b8-999b-520d16633e4c'
|
|
235
|
+
}
|
|
236
|
+
};
|
|
231
237
|
|
|
232
238
|
exports.AftershipEmailMarketingsmsConfig = AftershipEmailMarketingsmsConfig;
|
|
233
239
|
exports.AppointmentBookingCowlendarConfig = AppointmentBookingCowlendarConfig;
|
|
@@ -246,6 +252,7 @@ exports.KiteFreeGiftDiscountConfig = KiteFreeGiftDiscountConfig;
|
|
|
246
252
|
exports.LoloyalLoyaltyReferralsConfig = LoloyalLoyaltyReferralsConfig;
|
|
247
253
|
exports.LoopSubscriptionsConfig = LoopSubscriptionsConfig;
|
|
248
254
|
exports.LooxReviewsConfig = LooxReviewsConfig;
|
|
255
|
+
exports.MyappgurusProductReviewsConfig = MyappgurusProductReviewsConfig;
|
|
249
256
|
exports.PowerfulContactFormBuilderConfig = PowerfulContactFormBuilderConfig;
|
|
250
257
|
exports.PowrContactFormBuilderConfig = PowrContactFormBuilderConfig;
|
|
251
258
|
exports.PreorderNowPreOrderPqConfig = PreorderNowPreOrderPqConfig;
|
|
@@ -702,11 +702,52 @@ const SeoantTrustBadgesIcon = {
|
|
|
702
702
|
const PowrContactFormBuilder = {
|
|
703
703
|
PowrContactFormBuilder: {
|
|
704
704
|
'app-block': {
|
|
705
|
-
|
|
705
|
+
app_id: ''
|
|
706
706
|
}
|
|
707
707
|
}
|
|
708
708
|
};
|
|
709
|
+
const MyappgurusProductReviews = {
|
|
710
|
+
MyappgurusProductReviews: {
|
|
711
|
+
allReviews: {
|
|
712
|
+
Show_by_label: ''
|
|
713
|
+
},
|
|
714
|
+
allReviewsCounter: {
|
|
715
|
+
out_of_label: '',
|
|
716
|
+
stars_based_on_label: '',
|
|
717
|
+
reviews_label: ''
|
|
718
|
+
},
|
|
719
|
+
form: {
|
|
720
|
+
block_heading: '',
|
|
721
|
+
no_rating: '',
|
|
722
|
+
subtitle2: '',
|
|
723
|
+
review_btn: '',
|
|
724
|
+
see_all_reviews_label: '',
|
|
725
|
+
form_heading: '',
|
|
726
|
+
name_label: '',
|
|
727
|
+
email_label: '',
|
|
728
|
+
review_title_label: '',
|
|
729
|
+
review_description_label: '',
|
|
730
|
+
ratings_label: '',
|
|
731
|
+
delivery_ratings_label: '',
|
|
732
|
+
payment_ratings_label: '',
|
|
733
|
+
price_ratings_label: '',
|
|
734
|
+
review_image_label: '',
|
|
735
|
+
submit_btn_label: '',
|
|
736
|
+
cancel_btn_label: '',
|
|
737
|
+
sort_label: '',
|
|
738
|
+
sort1_label: '',
|
|
739
|
+
sort2_label: '',
|
|
740
|
+
sort3_label: '',
|
|
741
|
+
showing_label: '',
|
|
742
|
+
to_label: '',
|
|
743
|
+
of_label: '',
|
|
744
|
+
results_label: ''
|
|
745
|
+
},
|
|
746
|
+
star: null
|
|
747
|
+
}
|
|
748
|
+
};
|
|
709
749
|
const composeSettingsByWidgetType = {
|
|
750
|
+
...MyappgurusProductReviews,
|
|
710
751
|
...PowrContactFormBuilder,
|
|
711
752
|
...SeoantTrustBadgesIcon,
|
|
712
753
|
...SegunoEmailMarketing,
|
|
@@ -40,7 +40,8 @@ const mapShopifyAppMeta = {
|
|
|
40
40
|
...appConfig.TrustooConfig,
|
|
41
41
|
...appConfig.LooxReviewsConfig,
|
|
42
42
|
...appConfig.SeoantTrustBadgesIconConfig,
|
|
43
|
-
...appConfig.PowrContactFormBuilderConfig
|
|
43
|
+
...appConfig.PowrContactFormBuilderConfig,
|
|
44
|
+
...appConfig.MyappgurusProductReviewsConfig
|
|
44
45
|
};
|
|
45
46
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
46
47
|
|
|
@@ -226,5 +226,11 @@ const PowrContactFormBuilderConfig = {
|
|
|
226
226
|
appId: '1412fe37-d89c-4706-a797-6e2b53cb4a69'
|
|
227
227
|
}
|
|
228
228
|
};
|
|
229
|
+
const MyappgurusProductReviewsConfig = {
|
|
230
|
+
MyappgurusProductReviews: {
|
|
231
|
+
appName: 'mag-product-reviews',
|
|
232
|
+
appId: '0cf5caa0-e138-46b8-999b-520d16633e4c'
|
|
233
|
+
}
|
|
234
|
+
};
|
|
229
235
|
|
|
230
|
-
export { AftershipEmailMarketingsmsConfig, AppointmentBookingCowlendarConfig, BestBuyFulfillmentConfig, BoldSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, GloboProductOptionsVariantConfig, GrowaveConfig, InstasellShoppableInstagramConfig, JunipProductReviewsUgcConfig, KachingBundlesConfig, KiteFreeGiftDiscountConfig, LoloyalLoyaltyReferralsConfig, LoopSubscriptionsConfig, LooxReviewsConfig, PowerfulContactFormBuilderConfig, PowrContactFormBuilderConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, ProductOptionsCustomizerConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SegunoEmailMarketingConfig, SelleasyConfig, SeoantTrustBadgesIconConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SproutPlantTreesGrowSalesConfig, SubifySubscriptionsConfig, TrustooConfig, UnlimitedBundlesDiscountsConfig, WhatmoreShoppableVideosreelConfig, WishlistKingConfig, YotpoReviewsV3UgcConfig };
|
|
236
|
+
export { AftershipEmailMarketingsmsConfig, AppointmentBookingCowlendarConfig, BestBuyFulfillmentConfig, BoldSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, GloboProductOptionsVariantConfig, GrowaveConfig, InstasellShoppableInstagramConfig, JunipProductReviewsUgcConfig, KachingBundlesConfig, KiteFreeGiftDiscountConfig, LoloyalLoyaltyReferralsConfig, LoopSubscriptionsConfig, LooxReviewsConfig, MyappgurusProductReviewsConfig, PowerfulContactFormBuilderConfig, PowrContactFormBuilderConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, ProductOptionsCustomizerConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SegunoEmailMarketingConfig, SelleasyConfig, SeoantTrustBadgesIconConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SproutPlantTreesGrowSalesConfig, SubifySubscriptionsConfig, TrustooConfig, UnlimitedBundlesDiscountsConfig, WhatmoreShoppableVideosreelConfig, WishlistKingConfig, YotpoReviewsV3UgcConfig };
|
|
@@ -700,11 +700,52 @@ const SeoantTrustBadgesIcon = {
|
|
|
700
700
|
const PowrContactFormBuilder = {
|
|
701
701
|
PowrContactFormBuilder: {
|
|
702
702
|
'app-block': {
|
|
703
|
-
|
|
703
|
+
app_id: ''
|
|
704
704
|
}
|
|
705
705
|
}
|
|
706
706
|
};
|
|
707
|
+
const MyappgurusProductReviews = {
|
|
708
|
+
MyappgurusProductReviews: {
|
|
709
|
+
allReviews: {
|
|
710
|
+
Show_by_label: ''
|
|
711
|
+
},
|
|
712
|
+
allReviewsCounter: {
|
|
713
|
+
out_of_label: '',
|
|
714
|
+
stars_based_on_label: '',
|
|
715
|
+
reviews_label: ''
|
|
716
|
+
},
|
|
717
|
+
form: {
|
|
718
|
+
block_heading: '',
|
|
719
|
+
no_rating: '',
|
|
720
|
+
subtitle2: '',
|
|
721
|
+
review_btn: '',
|
|
722
|
+
see_all_reviews_label: '',
|
|
723
|
+
form_heading: '',
|
|
724
|
+
name_label: '',
|
|
725
|
+
email_label: '',
|
|
726
|
+
review_title_label: '',
|
|
727
|
+
review_description_label: '',
|
|
728
|
+
ratings_label: '',
|
|
729
|
+
delivery_ratings_label: '',
|
|
730
|
+
payment_ratings_label: '',
|
|
731
|
+
price_ratings_label: '',
|
|
732
|
+
review_image_label: '',
|
|
733
|
+
submit_btn_label: '',
|
|
734
|
+
cancel_btn_label: '',
|
|
735
|
+
sort_label: '',
|
|
736
|
+
sort1_label: '',
|
|
737
|
+
sort2_label: '',
|
|
738
|
+
sort3_label: '',
|
|
739
|
+
showing_label: '',
|
|
740
|
+
to_label: '',
|
|
741
|
+
of_label: '',
|
|
742
|
+
results_label: ''
|
|
743
|
+
},
|
|
744
|
+
star: null
|
|
745
|
+
}
|
|
746
|
+
};
|
|
707
747
|
const composeSettingsByWidgetType = {
|
|
748
|
+
...MyappgurusProductReviews,
|
|
708
749
|
...PowrContactFormBuilder,
|
|
709
750
|
...SeoantTrustBadgesIcon,
|
|
710
751
|
...SegunoEmailMarketing,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, FastBundleBundlesDiscountsConfig, SimpleBundlesKitsConfig, EasyBundleBuilderSkailamaConfig, PreorderNowPreOrderPqConfig, FlyBundlesUpsellsFbtConfig, JunipProductReviewsUgcConfig, PreorderNowWodPresaleConfig, YotpoReviewsV3UgcConfig, WhatmoreShoppableVideosreelConfig, ProductOptionsCustomizerConfig, AppointmentBookingCowlendarConfig, BoldSubscriptionsConfig, SproutPlantTreesGrowSalesConfig, InstasellShoppableInstagramConfig, GrowaveConfig, LoloyalLoyaltyReferralsConfig, PowerfulContactFormBuilderConfig, WishlistKingConfig, GloboProductOptionsVariantConfig, KachingBundlesConfig, BestBuyFulfillmentConfig, AftershipEmailMarketingsmsConfig, SegunoEmailMarketingConfig, TrustooConfig, LooxReviewsConfig, SeoantTrustBadgesIconConfig, PowrContactFormBuilderConfig } from './appConfig.js';
|
|
1
|
+
import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, FastBundleBundlesDiscountsConfig, SimpleBundlesKitsConfig, EasyBundleBuilderSkailamaConfig, PreorderNowPreOrderPqConfig, FlyBundlesUpsellsFbtConfig, JunipProductReviewsUgcConfig, PreorderNowWodPresaleConfig, YotpoReviewsV3UgcConfig, WhatmoreShoppableVideosreelConfig, ProductOptionsCustomizerConfig, AppointmentBookingCowlendarConfig, BoldSubscriptionsConfig, SproutPlantTreesGrowSalesConfig, InstasellShoppableInstagramConfig, GrowaveConfig, LoloyalLoyaltyReferralsConfig, PowerfulContactFormBuilderConfig, WishlistKingConfig, GloboProductOptionsVariantConfig, KachingBundlesConfig, BestBuyFulfillmentConfig, AftershipEmailMarketingsmsConfig, SegunoEmailMarketingConfig, TrustooConfig, LooxReviewsConfig, SeoantTrustBadgesIconConfig, PowrContactFormBuilderConfig, MyappgurusProductReviewsConfig } from './appConfig.js';
|
|
2
2
|
|
|
3
3
|
const mapShopifyAppMeta = {
|
|
4
4
|
...RechargeSubscriptionsConfig,
|
|
@@ -38,7 +38,8 @@ const mapShopifyAppMeta = {
|
|
|
38
38
|
...TrustooConfig,
|
|
39
39
|
...LooxReviewsConfig,
|
|
40
40
|
...SeoantTrustBadgesIconConfig,
|
|
41
|
-
...PowrContactFormBuilderConfig
|
|
41
|
+
...PowrContactFormBuilderConfig,
|
|
42
|
+
...MyappgurusProductReviewsConfig
|
|
42
43
|
};
|
|
43
44
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
44
45
|
|