@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.
package/dist/types/index.d.ts
CHANGED
|
@@ -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'>>;
|