@gem-sdk/core 1.8.33 → 1.8.40
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
CHANGED
|
@@ -123,7 +123,7 @@ type StateType = 'normal' | 'hover' | 'focus' | 'active';
|
|
|
123
123
|
type StateProp<T> = Partial<Record<StateType, T>>;
|
|
124
124
|
type ResponsiveStateProp<T> = ObjectDevices<StateProp<T>>;
|
|
125
125
|
type AlignItemProp = 'left' | 'center' | 'right';
|
|
126
|
-
type JudgeMeReviewsWidgetType = 'single_product_preview_badge' | 'review_widget' | 'reviews_carousel' | '
|
|
126
|
+
type JudgeMeReviewsWidgetType = 'single_product_preview_badge' | 'review_widget' | 'reviews_carousel' | 'all_reviews_widget' | 'verified_reviews_count_badge' | 'all_reviews_text';
|
|
127
127
|
type LooxReviewsWidgetType = 'reviews_widget' | 'rating_widget' | 'carousel_widget';
|
|
128
128
|
type KlaviyoWidgetType = 'popup_widget' | 'flyout_widget' | 'embed_widget' | 'full_page_widget';
|
|
129
129
|
|
|
@@ -7028,7 +7028,9 @@ declare const useShopStore: <U>(selector: (state: ExtractState<StoreApi<ShopCont
|
|
|
7028
7028
|
type CollectionSelectFragment = Pick<Collection, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
|
|
7029
7029
|
products?: Maybe<{
|
|
7030
7030
|
edges: Array<{
|
|
7031
|
-
node?: Maybe<Pick<Product, 'id' | 'title' | 'handle' | 'description' | 'status'
|
|
7031
|
+
node?: Maybe<Pick<Product, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
|
|
7032
|
+
featuredImage?: Maybe<Pick<Media, 'src'>>;
|
|
7033
|
+
}>;
|
|
7032
7034
|
}>;
|
|
7033
7035
|
}>;
|
|
7034
7036
|
collectionMedia?: Maybe<Pick<CollectionMedia, 'src'>>;
|