@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.
@@ -11,6 +11,9 @@
11
11
  handle
12
12
  description
13
13
  status
14
+ featuredImage {
15
+ src
16
+ }
14
17
  }
15
18
  }
16
19
  }
@@ -9,6 +9,9 @@
9
9
  handle
10
10
  description
11
11
  status
12
+ featuredImage {
13
+ src
14
+ }
12
15
  }
13
16
  }
14
17
  }
@@ -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' | 'floating_reviews_tab' | 'all_reviews_widget' | 'verified_reviews_count_badge' | 'medals' | 'media_grid' | 'all_reviews_text';
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'>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.8.33",
3
+ "version": "1.8.40",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",