@gem-sdk/core 1.48.0-dev.5 → 1.48.0-dev.8

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.
@@ -66,8 +66,15 @@ const KiteFreeGiftDiscountConfig = {
66
66
  appId: '2c7302c4-455d-4078-a829-48563ba26089'
67
67
  }
68
68
  };
69
+ const FastBundleBundlesDiscountsConfig = {
70
+ FastBundleBundlesDiscounts: {
71
+ appName: 'fast-bundle',
72
+ appId: '9e87fbe2-9041-4c23-acf5-322413994cef'
73
+ }
74
+ };
69
75
 
70
76
  exports.BonLoyaltyRewardsReferralsConfig = BonLoyaltyRewardsReferralsConfig;
77
+ exports.FastBundleBundlesDiscountsConfig = FastBundleBundlesDiscountsConfig;
71
78
  exports.KiteFreeGiftDiscountConfig = KiteFreeGiftDiscountConfig;
72
79
  exports.LoopSubscriptionsConfig = LoopSubscriptionsConfig;
73
80
  exports.PumperBundlesVolumeDiscountConfig = PumperBundlesVolumeDiscountConfig;
@@ -115,7 +115,17 @@ const KiteFreeGiftDiscount = {
115
115
  'app-block': null
116
116
  }
117
117
  };
118
+ const FastBundleBundlesDiscounts = {
119
+ FastBundleBundlesDiscounts: {
120
+ all_bundles: null,
121
+ fbt_position: null,
122
+ product_bundles: null,
123
+ product_bundle_with_ids: null,
124
+ volume_position: null
125
+ }
126
+ };
118
127
  const composeSettingsByWidgetType = {
128
+ ...FastBundleBundlesDiscounts,
119
129
  ...KiteFreeGiftDiscount,
120
130
  ...UnlimitedBundlesDiscounts,
121
131
  ...PumperBundlesVolumeDiscount,
@@ -13,7 +13,8 @@ const mapShopifyAppMeta = {
13
13
  ...appConfig.ReviewxpoProductReviewsAppConfig,
14
14
  ...appConfig.PumperBundlesVolumeDiscountConfig,
15
15
  ...appConfig.UnlimitedBundlesDiscountsConfig,
16
- ...appConfig.KiteFreeGiftDiscountConfig
16
+ ...appConfig.KiteFreeGiftDiscountConfig,
17
+ ...appConfig.FastBundleBundlesDiscountsConfig
17
18
  };
18
19
  const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
19
20
 
@@ -64,5 +64,11 @@ const KiteFreeGiftDiscountConfig = {
64
64
  appId: '2c7302c4-455d-4078-a829-48563ba26089'
65
65
  }
66
66
  };
67
+ const FastBundleBundlesDiscountsConfig = {
68
+ FastBundleBundlesDiscounts: {
69
+ appName: 'fast-bundle',
70
+ appId: '9e87fbe2-9041-4c23-acf5-322413994cef'
71
+ }
72
+ };
67
73
 
68
- export { BonLoyaltyRewardsReferralsConfig, KiteFreeGiftDiscountConfig, LoopSubscriptionsConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SelleasyConfig, ShopifyFormsConfig, SkioSubscriptionsYcS20Config, SubifySubscriptionsConfig, UnlimitedBundlesDiscountsConfig };
74
+ export { BonLoyaltyRewardsReferralsConfig, FastBundleBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, LoopSubscriptionsConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SelleasyConfig, ShopifyFormsConfig, SkioSubscriptionsYcS20Config, SubifySubscriptionsConfig, UnlimitedBundlesDiscountsConfig };
@@ -113,7 +113,17 @@ const KiteFreeGiftDiscount = {
113
113
  'app-block': null
114
114
  }
115
115
  };
116
+ const FastBundleBundlesDiscounts = {
117
+ FastBundleBundlesDiscounts: {
118
+ all_bundles: null,
119
+ fbt_position: null,
120
+ product_bundles: null,
121
+ product_bundle_with_ids: null,
122
+ volume_position: null
123
+ }
124
+ };
116
125
  const composeSettingsByWidgetType = {
126
+ ...FastBundleBundlesDiscounts,
117
127
  ...KiteFreeGiftDiscount,
118
128
  ...UnlimitedBundlesDiscounts,
119
129
  ...PumperBundlesVolumeDiscount,
@@ -1,4 +1,4 @@
1
- import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig } from './appConfig.js';
1
+ import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, FastBundleBundlesDiscountsConfig } from './appConfig.js';
2
2
 
3
3
  const mapShopifyAppMeta = {
4
4
  ...RechargeSubscriptionsConfig,
@@ -11,7 +11,8 @@ const mapShopifyAppMeta = {
11
11
  ...ReviewxpoProductReviewsAppConfig,
12
12
  ...PumperBundlesVolumeDiscountConfig,
13
13
  ...UnlimitedBundlesDiscountsConfig,
14
- ...KiteFreeGiftDiscountConfig
14
+ ...KiteFreeGiftDiscountConfig,
15
+ ...FastBundleBundlesDiscountsConfig
15
16
  };
16
17
  const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
17
18
 
@@ -7383,6 +7383,7 @@ type TextareaControlType<T> = SharedControlType<T> & {
7383
7383
  readonly?: boolean;
7384
7384
  minHeight?: number;
7385
7385
  maxWidth?: number;
7386
+ inputClass?: string;
7386
7387
  autoHeight?: boolean;
7387
7388
  defaultRows?: number;
7388
7389
  showPlusBtn?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.48.0-dev.5",
3
+ "version": "1.48.0-dev.8",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",