@gem-sdk/core 1.48.0-dev.75 → 1.48.0-dev.79
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 +34 -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 +34 -0
- package/dist/esm/helpers/third-party/constant.js +3 -2
- package/package.json +1 -1
|
@@ -114,12 +114,19 @@ const PreorderNowWodPresaleConfig = {
|
|
|
114
114
|
appId: 'fdf17d17-ef12-4a7b-8383-20cc1fc2a4b6'
|
|
115
115
|
}
|
|
116
116
|
};
|
|
117
|
+
const JunipProductReviewsUgcConfig = {
|
|
118
|
+
JunipProductReviewsUgc: {
|
|
119
|
+
appName: 'junip-product-reviews-ugc',
|
|
120
|
+
appId: 'dc14f5a8-ed15-41b1-ad08-cfba23f9789b'
|
|
121
|
+
}
|
|
122
|
+
};
|
|
117
123
|
|
|
118
124
|
exports.AssortionUpsellBundlesConfig = AssortionUpsellBundlesConfig;
|
|
119
125
|
exports.BonLoyaltyRewardsReferralsConfig = BonLoyaltyRewardsReferralsConfig;
|
|
120
126
|
exports.EasyBundleBuilderSkailamaConfig = EasyBundleBuilderSkailamaConfig;
|
|
121
127
|
exports.FastBundleBundlesDiscountsConfig = FastBundleBundlesDiscountsConfig;
|
|
122
128
|
exports.FlyBundlesUpsellsFbtConfig = FlyBundlesUpsellsFbtConfig;
|
|
129
|
+
exports.JunipProductReviewsUgcConfig = JunipProductReviewsUgcConfig;
|
|
123
130
|
exports.KPreorderNowPartialPaymentConfig = KPreorderNowPartialPaymentConfig;
|
|
124
131
|
exports.KiteFreeGiftDiscountConfig = KiteFreeGiftDiscountConfig;
|
|
125
132
|
exports.LoopSubscriptionsConfig = LoopSubscriptionsConfig;
|
|
@@ -177,7 +177,41 @@ const PreorderNowWodPresale = {
|
|
|
177
177
|
'popups-block': null
|
|
178
178
|
}
|
|
179
179
|
};
|
|
180
|
+
const JunipProductReviewsUgc = {
|
|
181
|
+
JunipProductReviewsUgc: {
|
|
182
|
+
'junip-review-carousel': {
|
|
183
|
+
reviewsType: 'product_reviews',
|
|
184
|
+
showSummary: true,
|
|
185
|
+
title: 'Reviews',
|
|
186
|
+
paddingTop: 48,
|
|
187
|
+
paddingBottom: 48,
|
|
188
|
+
containerClass: ''
|
|
189
|
+
},
|
|
190
|
+
'junip-ugc-gallery': {
|
|
191
|
+
layout: 'scroll',
|
|
192
|
+
title: '',
|
|
193
|
+
product: '{{product}}',
|
|
194
|
+
paddingTop: 48,
|
|
195
|
+
paddingBottom: 48,
|
|
196
|
+
containerClass: ''
|
|
197
|
+
},
|
|
198
|
+
'junip-product-review': {
|
|
199
|
+
product: '{{product}}'
|
|
200
|
+
},
|
|
201
|
+
'junip-product-summary': {
|
|
202
|
+
product: '{{product}}'
|
|
203
|
+
},
|
|
204
|
+
'junip-reviews': {
|
|
205
|
+
layout: 'list',
|
|
206
|
+
reviewsType: 'all',
|
|
207
|
+
showSummary: true,
|
|
208
|
+
reviewsCount: 10,
|
|
209
|
+
containerClass: ''
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
};
|
|
180
213
|
const composeSettingsByWidgetType = {
|
|
214
|
+
...JunipProductReviewsUgc,
|
|
181
215
|
...FlyBundlesUpsellsFbt,
|
|
182
216
|
...PreorderNowWodPresale,
|
|
183
217
|
...KPreorderNowPartialPayment,
|
|
@@ -21,7 +21,8 @@ const mapShopifyAppMeta = {
|
|
|
21
21
|
...appConfig.PreorderNowPreOrderPqConfig,
|
|
22
22
|
...appConfig.KPreorderNowPartialPaymentConfig,
|
|
23
23
|
...appConfig.FlyBundlesUpsellsFbtConfig,
|
|
24
|
-
...appConfig.PreorderNowWodPresaleConfig
|
|
24
|
+
...appConfig.PreorderNowWodPresaleConfig,
|
|
25
|
+
...appConfig.JunipProductReviewsUgcConfig
|
|
25
26
|
};
|
|
26
27
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
27
28
|
|
|
@@ -112,5 +112,11 @@ const PreorderNowWodPresaleConfig = {
|
|
|
112
112
|
appId: 'fdf17d17-ef12-4a7b-8383-20cc1fc2a4b6'
|
|
113
113
|
}
|
|
114
114
|
};
|
|
115
|
+
const JunipProductReviewsUgcConfig = {
|
|
116
|
+
JunipProductReviewsUgc: {
|
|
117
|
+
appName: 'junip-product-reviews-ugc',
|
|
118
|
+
appId: 'dc14f5a8-ed15-41b1-ad08-cfba23f9789b'
|
|
119
|
+
}
|
|
120
|
+
};
|
|
115
121
|
|
|
116
|
-
export { AssortionUpsellBundlesConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, KPreorderNowPartialPaymentConfig, KiteFreeGiftDiscountConfig, LoopSubscriptionsConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SelleasyConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SubifySubscriptionsConfig, UnlimitedBundlesDiscountsConfig };
|
|
122
|
+
export { AssortionUpsellBundlesConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, JunipProductReviewsUgcConfig, KPreorderNowPartialPaymentConfig, KiteFreeGiftDiscountConfig, LoopSubscriptionsConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SelleasyConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SubifySubscriptionsConfig, UnlimitedBundlesDiscountsConfig };
|
|
@@ -175,7 +175,41 @@ const PreorderNowWodPresale = {
|
|
|
175
175
|
'popups-block': null
|
|
176
176
|
}
|
|
177
177
|
};
|
|
178
|
+
const JunipProductReviewsUgc = {
|
|
179
|
+
JunipProductReviewsUgc: {
|
|
180
|
+
'junip-review-carousel': {
|
|
181
|
+
reviewsType: 'product_reviews',
|
|
182
|
+
showSummary: true,
|
|
183
|
+
title: 'Reviews',
|
|
184
|
+
paddingTop: 48,
|
|
185
|
+
paddingBottom: 48,
|
|
186
|
+
containerClass: ''
|
|
187
|
+
},
|
|
188
|
+
'junip-ugc-gallery': {
|
|
189
|
+
layout: 'scroll',
|
|
190
|
+
title: '',
|
|
191
|
+
product: '{{product}}',
|
|
192
|
+
paddingTop: 48,
|
|
193
|
+
paddingBottom: 48,
|
|
194
|
+
containerClass: ''
|
|
195
|
+
},
|
|
196
|
+
'junip-product-review': {
|
|
197
|
+
product: '{{product}}'
|
|
198
|
+
},
|
|
199
|
+
'junip-product-summary': {
|
|
200
|
+
product: '{{product}}'
|
|
201
|
+
},
|
|
202
|
+
'junip-reviews': {
|
|
203
|
+
layout: 'list',
|
|
204
|
+
reviewsType: 'all',
|
|
205
|
+
showSummary: true,
|
|
206
|
+
reviewsCount: 10,
|
|
207
|
+
containerClass: ''
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
};
|
|
178
211
|
const composeSettingsByWidgetType = {
|
|
212
|
+
...JunipProductReviewsUgc,
|
|
179
213
|
...FlyBundlesUpsellsFbt,
|
|
180
214
|
...PreorderNowWodPresale,
|
|
181
215
|
...KPreorderNowPartialPayment,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, FastBundleBundlesDiscountsConfig, SimpleBundlesKitsConfig, EasyBundleBuilderSkailamaConfig, AssortionUpsellBundlesConfig, PreorderNowPreOrderPqConfig, KPreorderNowPartialPaymentConfig, FlyBundlesUpsellsFbtConfig, PreorderNowWodPresaleConfig } from './appConfig.js';
|
|
1
|
+
import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, FastBundleBundlesDiscountsConfig, SimpleBundlesKitsConfig, EasyBundleBuilderSkailamaConfig, AssortionUpsellBundlesConfig, PreorderNowPreOrderPqConfig, KPreorderNowPartialPaymentConfig, FlyBundlesUpsellsFbtConfig, PreorderNowWodPresaleConfig, JunipProductReviewsUgcConfig } from './appConfig.js';
|
|
2
2
|
|
|
3
3
|
const mapShopifyAppMeta = {
|
|
4
4
|
...RechargeSubscriptionsConfig,
|
|
@@ -19,7 +19,8 @@ const mapShopifyAppMeta = {
|
|
|
19
19
|
...PreorderNowPreOrderPqConfig,
|
|
20
20
|
...KPreorderNowPartialPaymentConfig,
|
|
21
21
|
...FlyBundlesUpsellsFbtConfig,
|
|
22
|
-
...PreorderNowWodPresaleConfig
|
|
22
|
+
...PreorderNowWodPresaleConfig,
|
|
23
|
+
...JunipProductReviewsUgcConfig
|
|
23
24
|
};
|
|
24
25
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
25
26
|
|