@gem-sdk/core 2.0.0-dev.680 → 2.0.0-dev.693
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/types/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -34239,7 +34239,7 @@ type StampedWidgetTypeV2 = 'main-widget' | 'product-rating-image' | 'badge-doubl
|
|
|
34239
34239
|
type LaiProductReviewsWidgetType = 'reviews_widget' | 'star_ratings' | 'homepage_reviews' | 'happy_customer_reviews' | 'star_ratings_in_list' | 'advanced_widget';
|
|
34240
34240
|
type LaiProductReviewsAdvancedWidgetType = 'cardCarousel' | 'testimonialCarousel' | 'mediaGallery' | 'cardGrid';
|
|
34241
34241
|
type YotpoReviewsWidgetType = 'reviews' | 'star-rating' | 'reviewHighlights';
|
|
34242
|
-
type BogosWidgetType = 'icon' | 'thumnail' | 'slider' | 'message' | 'classic-bundle' | 'quantity-break' | 'mix-match' | 'classic-bundle';
|
|
34242
|
+
type BogosWidgetType = 'icon' | 'thumnail' | 'slider' | 'message' | 'classic-bundle' | 'quantity-break' | 'mix-match' | 'classic-bundle' | 'fbt';
|
|
34243
34243
|
type PreOrderNowWodWidgetType = 'app-block' | 'popups-block';
|
|
34244
34244
|
type TagShopWidgetType = 'homeLandingGalleries' | 'productGalleries' | 'tagGalleries';
|
|
34245
34245
|
type AirProductReview = 'review_box' | 'star_rating' | 'review_carousel';
|
|
@@ -35616,6 +35616,8 @@ type Mapped$b<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
35616
35616
|
showVideo?: boolean;
|
|
35617
35617
|
hideImage?: boolean;
|
|
35618
35618
|
disableGetDefault?: boolean;
|
|
35619
|
+
fallbackValueRule?: 'empty' | 'fixed-value' | 'init-value';
|
|
35620
|
+
fallbackValue?: string | number;
|
|
35619
35621
|
} : {
|
|
35620
35622
|
id: K;
|
|
35621
35623
|
label?: string;
|
|
@@ -35655,6 +35657,8 @@ type Mapped$b<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? {
|
|
|
35655
35657
|
default?: T;
|
|
35656
35658
|
compoDefaultValue?: T;
|
|
35657
35659
|
disableGetDefault?: boolean;
|
|
35660
|
+
fallbackValueRule?: 'empty' | 'number' | 'init-value';
|
|
35661
|
+
fallbackValue?: string | number;
|
|
35658
35662
|
};
|
|
35659
35663
|
type SharedControlType<T> = {
|
|
35660
35664
|
[K in keyof T]-?: Mapped$b<K, T[K]>;
|