@gem-sdk/core 1.50.0-staging.14 → 1.50.0-staging.17

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.
@@ -78,8 +78,15 @@ const SimpleBundlesKitsConfig = {
78
78
  appId: 'e553276b-36b2-446d-b80a-aa47fe5f96ac'
79
79
  }
80
80
  };
81
+ const EasyBundleBuilderSkailamaConfig = {
82
+ EasyBundleBuilderSkailama: {
83
+ appName: 'easy-bundles',
84
+ appId: '05b1325c-6303-4da5-8e2f-b13ab2a50e1a'
85
+ }
86
+ };
81
87
 
82
88
  exports.BonLoyaltyRewardsReferralsConfig = BonLoyaltyRewardsReferralsConfig;
89
+ exports.EasyBundleBuilderSkailamaConfig = EasyBundleBuilderSkailamaConfig;
83
90
  exports.FastBundleBundlesDiscountsConfig = FastBundleBundlesDiscountsConfig;
84
91
  exports.KiteFreeGiftDiscountConfig = KiteFreeGiftDiscountConfig;
85
92
  exports.LoopSubscriptionsConfig = LoopSubscriptionsConfig;
@@ -129,7 +129,13 @@ const SimpleBundlesKits = {
129
129
  'infinite-options-selector': null
130
130
  }
131
131
  };
132
+ const EasyBundleBuilderSkailama = {
133
+ EasyBundleBuilderSkailama: {
134
+ 'app-block-bundlePage': null
135
+ }
136
+ };
132
137
  const composeSettingsByWidgetType = {
138
+ ...EasyBundleBuilderSkailama,
133
139
  ...FastBundleBundlesDiscounts,
134
140
  ...KiteFreeGiftDiscount,
135
141
  ...UnlimitedBundlesDiscounts,
@@ -15,7 +15,8 @@ const mapShopifyAppMeta = {
15
15
  ...appConfig.UnlimitedBundlesDiscountsConfig,
16
16
  ...appConfig.KiteFreeGiftDiscountConfig,
17
17
  ...appConfig.FastBundleBundlesDiscountsConfig,
18
- ...appConfig.SimpleBundlesKitsConfig
18
+ ...appConfig.SimpleBundlesKitsConfig,
19
+ ...appConfig.EasyBundleBuilderSkailamaConfig
19
20
  };
20
21
  const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
21
22
 
@@ -76,5 +76,11 @@ const SimpleBundlesKitsConfig = {
76
76
  appId: 'e553276b-36b2-446d-b80a-aa47fe5f96ac'
77
77
  }
78
78
  };
79
+ const EasyBundleBuilderSkailamaConfig = {
80
+ EasyBundleBuilderSkailama: {
81
+ appName: 'easy-bundles',
82
+ appId: '05b1325c-6303-4da5-8e2f-b13ab2a50e1a'
83
+ }
84
+ };
79
85
 
80
- export { BonLoyaltyRewardsReferralsConfig, FastBundleBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, LoopSubscriptionsConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SelleasyConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SubifySubscriptionsConfig, UnlimitedBundlesDiscountsConfig };
86
+ export { BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, LoopSubscriptionsConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SelleasyConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SubifySubscriptionsConfig, UnlimitedBundlesDiscountsConfig };
@@ -127,7 +127,13 @@ const SimpleBundlesKits = {
127
127
  'infinite-options-selector': null
128
128
  }
129
129
  };
130
+ const EasyBundleBuilderSkailama = {
131
+ EasyBundleBuilderSkailama: {
132
+ 'app-block-bundlePage': null
133
+ }
134
+ };
130
135
  const composeSettingsByWidgetType = {
136
+ ...EasyBundleBuilderSkailama,
131
137
  ...FastBundleBundlesDiscounts,
132
138
  ...KiteFreeGiftDiscount,
133
139
  ...UnlimitedBundlesDiscounts,
@@ -1,4 +1,4 @@
1
- import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, FastBundleBundlesDiscountsConfig, SimpleBundlesKitsConfig } from './appConfig.js';
1
+ import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, FastBundleBundlesDiscountsConfig, SimpleBundlesKitsConfig, EasyBundleBuilderSkailamaConfig } from './appConfig.js';
2
2
 
3
3
  const mapShopifyAppMeta = {
4
4
  ...RechargeSubscriptionsConfig,
@@ -13,7 +13,8 @@ const mapShopifyAppMeta = {
13
13
  ...UnlimitedBundlesDiscountsConfig,
14
14
  ...KiteFreeGiftDiscountConfig,
15
15
  ...FastBundleBundlesDiscountsConfig,
16
- ...SimpleBundlesKitsConfig
16
+ ...SimpleBundlesKitsConfig,
17
+ ...EasyBundleBuilderSkailamaConfig
17
18
  };
18
19
  const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
19
20
 
@@ -7333,6 +7333,7 @@ type Option$2<T> = {
7333
7333
  tooltip?: string;
7334
7334
  type?: string;
7335
7335
  note?: string;
7336
+ maxOption?: number;
7336
7337
  };
7337
7338
  type Mapped$3<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
7338
7339
  id: K;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.50.0-staging.14",
3
+ "version": "1.50.0-staging.17",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",