@gem-sdk/core 1.58.0-dev.25 → 1.58.0-dev.30
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 +6 -0
- 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 +6 -0
- package/dist/esm/helpers/third-party/constant.js +3 -2
- package/package.json +1 -1
|
@@ -186,8 +186,15 @@ const KachingBundlesConfig = {
|
|
|
186
186
|
appId: '6c637362-a106-4a32-94ac-94dcfd68cdb8'
|
|
187
187
|
}
|
|
188
188
|
};
|
|
189
|
+
const BestBuyFulfillmentConfig = {
|
|
190
|
+
BestBuyFulfillment: {
|
|
191
|
+
appName: 'best-buy-fulfillment',
|
|
192
|
+
appId: 'd9839db8-b94c-4590-ac73-3469abe7ed9b'
|
|
193
|
+
}
|
|
194
|
+
};
|
|
189
195
|
|
|
190
196
|
exports.AppointmentBookingCowlendarConfig = AppointmentBookingCowlendarConfig;
|
|
197
|
+
exports.BestBuyFulfillmentConfig = BestBuyFulfillmentConfig;
|
|
191
198
|
exports.BoldSubscriptionsConfig = BoldSubscriptionsConfig;
|
|
192
199
|
exports.BonLoyaltyRewardsReferralsConfig = BonLoyaltyRewardsReferralsConfig;
|
|
193
200
|
exports.EasyBundleBuilderSkailamaConfig = EasyBundleBuilderSkailamaConfig;
|
|
@@ -443,7 +443,13 @@ const GloboProductOptionsVariant = {
|
|
|
443
443
|
'app-block': null
|
|
444
444
|
}
|
|
445
445
|
};
|
|
446
|
+
const BestBuyFulfillment = {
|
|
447
|
+
BestBuyFulfillment: {
|
|
448
|
+
'pickup-selector': null
|
|
449
|
+
}
|
|
450
|
+
};
|
|
446
451
|
const composeSettingsByWidgetType = {
|
|
452
|
+
...BestBuyFulfillment,
|
|
447
453
|
...GloboProductOptionsVariant,
|
|
448
454
|
...WishlistKing,
|
|
449
455
|
...LoloyalLoyaltyReferrals,
|
|
@@ -33,7 +33,8 @@ const mapShopifyAppMeta = {
|
|
|
33
33
|
...appConfig.PowerfulContactFormBuilderConfig,
|
|
34
34
|
...appConfig.WishlistKingConfig,
|
|
35
35
|
...appConfig.GloboProductOptionsVariantConfig,
|
|
36
|
-
...appConfig.KachingBundlesConfig
|
|
36
|
+
...appConfig.KachingBundlesConfig,
|
|
37
|
+
...appConfig.BestBuyFulfillmentConfig
|
|
37
38
|
};
|
|
38
39
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
39
40
|
|
|
@@ -184,5 +184,11 @@ const KachingBundlesConfig = {
|
|
|
184
184
|
appId: '6c637362-a106-4a32-94ac-94dcfd68cdb8'
|
|
185
185
|
}
|
|
186
186
|
};
|
|
187
|
+
const BestBuyFulfillmentConfig = {
|
|
188
|
+
BestBuyFulfillment: {
|
|
189
|
+
appName: 'best-buy-fulfillment',
|
|
190
|
+
appId: 'd9839db8-b94c-4590-ac73-3469abe7ed9b'
|
|
191
|
+
}
|
|
192
|
+
};
|
|
187
193
|
|
|
188
|
-
export { AppointmentBookingCowlendarConfig, BoldSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, GloboProductOptionsVariantConfig, GrowaveConfig, InstasellShoppableInstagramConfig, JunipProductReviewsUgcConfig, KachingBundlesConfig, KiteFreeGiftDiscountConfig, LoloyalLoyaltyReferralsConfig, LoopSubscriptionsConfig, PowerfulContactFormBuilderConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, ProductOptionsCustomizerConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SelleasyConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SproutPlantTreesGrowSalesConfig, SubifySubscriptionsConfig, UnlimitedBundlesDiscountsConfig, WhatmoreShoppableVideosreelConfig, WishlistKingConfig, YotpoReviewsV3UgcConfig };
|
|
194
|
+
export { AppointmentBookingCowlendarConfig, BestBuyFulfillmentConfig, BoldSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, GloboProductOptionsVariantConfig, GrowaveConfig, InstasellShoppableInstagramConfig, JunipProductReviewsUgcConfig, KachingBundlesConfig, KiteFreeGiftDiscountConfig, LoloyalLoyaltyReferralsConfig, LoopSubscriptionsConfig, PowerfulContactFormBuilderConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, ProductOptionsCustomizerConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SelleasyConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SproutPlantTreesGrowSalesConfig, SubifySubscriptionsConfig, UnlimitedBundlesDiscountsConfig, WhatmoreShoppableVideosreelConfig, WishlistKingConfig, YotpoReviewsV3UgcConfig };
|
|
@@ -441,7 +441,13 @@ const GloboProductOptionsVariant = {
|
|
|
441
441
|
'app-block': null
|
|
442
442
|
}
|
|
443
443
|
};
|
|
444
|
+
const BestBuyFulfillment = {
|
|
445
|
+
BestBuyFulfillment: {
|
|
446
|
+
'pickup-selector': null
|
|
447
|
+
}
|
|
448
|
+
};
|
|
444
449
|
const composeSettingsByWidgetType = {
|
|
450
|
+
...BestBuyFulfillment,
|
|
445
451
|
...GloboProductOptionsVariant,
|
|
446
452
|
...WishlistKing,
|
|
447
453
|
...LoloyalLoyaltyReferrals,
|
|
@@ -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 } 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 } from './appConfig.js';
|
|
2
2
|
|
|
3
3
|
const mapShopifyAppMeta = {
|
|
4
4
|
...RechargeSubscriptionsConfig,
|
|
@@ -31,7 +31,8 @@ const mapShopifyAppMeta = {
|
|
|
31
31
|
...PowerfulContactFormBuilderConfig,
|
|
32
32
|
...WishlistKingConfig,
|
|
33
33
|
...GloboProductOptionsVariantConfig,
|
|
34
|
-
...KachingBundlesConfig
|
|
34
|
+
...KachingBundlesConfig,
|
|
35
|
+
...BestBuyFulfillmentConfig
|
|
35
36
|
};
|
|
36
37
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
37
38
|
|