@gem-sdk/core 1.14.0-next.59 → 1.14.0-next.62

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.
@@ -32,7 +32,8 @@ const disableWrap = [
32
32
  'TextField',
33
33
  'FormTextarea',
34
34
  'ProductPrice',
35
- 'Product'
35
+ 'Product',
36
+ 'ProductImages'
36
37
  ];
37
38
 
38
39
  exports.disableWrap = disableWrap;
@@ -16,6 +16,7 @@
16
16
  }
17
17
  }
18
18
  }
19
+ totalCount
19
20
  }
20
21
  }
21
22
  `;
@@ -30,7 +30,8 @@ const disableWrap = [
30
30
  'TextField',
31
31
  'FormTextarea',
32
32
  'ProductPrice',
33
- 'Product'
33
+ 'Product',
34
+ 'ProductImages'
34
35
  ];
35
36
 
36
37
  export { disableWrap };
@@ -14,6 +14,7 @@
14
14
  }
15
15
  }
16
16
  }
17
+ totalCount
17
18
  }
18
19
  }
19
20
  `;
@@ -7464,7 +7464,7 @@ declare const ShopProvider: React.FC<ShopProviderProps>;
7464
7464
  declare const useShopStore: <U>(selector: (state: ExtractState<StoreApi<ShopContextProps>>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined) => U;
7465
7465
 
7466
7466
  type CollectionSelectFragment = Pick<Collection, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
7467
- products?: Maybe<{
7467
+ products?: Maybe<Pick<ProductConnection, 'totalCount'> & {
7468
7468
  edges: Array<{
7469
7469
  node?: Maybe<Pick<Product, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
7470
7470
  featuredImage?: Maybe<Pick<Media, 'src'>>;
@@ -7610,7 +7610,7 @@ type CollectionsQueryResponse = {
7610
7610
  collections?: Maybe<{
7611
7611
  edges: Array<{
7612
7612
  node?: Maybe<Pick<Collection, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
7613
- products?: Maybe<{
7613
+ products?: Maybe<Pick<ProductConnection, 'totalCount'> & {
7614
7614
  edges: Array<{
7615
7615
  node?: Maybe<Pick<Product, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
7616
7616
  featuredImage?: Maybe<Pick<Media, 'src'>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.14.0-next.59",
3
+ "version": "1.14.0-next.62",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",