@gem-sdk/core 19.1.0-dev.2 → 19.1.0-dev.20

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.
@@ -42767,9 +42767,9 @@ type AddonProviderProps = Pick<AddonContextProps, 'components'> & {
42767
42767
 
42768
42768
  declare const AddonProvider: React.FC<AddonProviderProps>;
42769
42769
  declare const useAddons: () => Record<string, React.ComponentType<any>>;
42770
- declare const useAddon: (id?: string) => React.FC<BaseProps & {
42770
+ declare const useAddon: (id?: string) => React.ComponentType<any> | React.FC<BaseProps & {
42771
42771
  children?: React.ReactNode;
42772
- }> | React.ComponentType<any>;
42772
+ }>;
42773
42773
 
42774
42774
  type BuilderComponentProps = {
42775
42775
  components: Record<string, React.ComponentType<any>>;
@@ -42781,9 +42781,9 @@ type BuilderComponentProviderProps = Pick<BuilderComponentProps, 'components'> &
42781
42781
  };
42782
42782
 
42783
42783
  declare const BuilderComponentProvider: React.FC<BuilderComponentProviderProps>;
42784
- declare const useBuilderComponent: (id?: string) => React.ComponentType<BaseProps> | React.FC<BaseProps & {
42784
+ declare const useBuilderComponent: (id?: string) => React.FC<BaseProps & {
42785
42785
  children?: React.ReactNode;
42786
- }>;
42786
+ }> | React.ComponentType<BaseProps>;
42787
42787
 
42788
42788
  type BuilderContextProps = {
42789
42789
  state: BuilderState | SectionData;
@@ -42879,55 +42879,50 @@ type CartLineProviderProps = Pick<CartLineContextProps, 'line'> & {
42879
42879
  declare const CartLineProvider: React.FC<CartLineProviderProps>;
42880
42880
  declare const useCartLineStore: <U>(selector: (state: ExtractState<StoreApi<CartLineContextProps>>) => U, equalityFn?: (a: U, b: U) => boolean) => U;
42881
42881
 
42882
- type CollectionProductSelectFragment = Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
42882
+ type CollectionProductSelectFragment = (Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
42883
42883
  products?: Maybe$1<{
42884
- edges: Array<Pick<ProductEdge$1, 'cursor'> & {
42885
- node?: Maybe$1<Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
42886
- collections?: Maybe$1<{
42887
- edges: Array<{
42888
- node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
42889
- }>;
42890
- }>;
42884
+ edges: Array<(Pick<ProductEdge$1, 'cursor'> & {
42885
+ node?: Maybe$1<(Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor' | 'tags'> & {
42886
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
42887
+ values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
42888
+ })>>;
42889
+ featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42891
42890
  medias?: Maybe$1<{
42892
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
42891
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
42893
42892
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42894
- }>;
42893
+ })>;
42895
42894
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
42896
42895
  }>;
42897
42896
  variants?: Maybe$1<{
42898
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
42899
- node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
42897
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
42898
+ node?: Maybe$1<(Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
42900
42899
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
42901
42900
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42902
- }>;
42903
- }>;
42901
+ })>;
42902
+ })>;
42904
42903
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
42905
42904
  }>;
42906
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
42907
- values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
42908
- }>>;
42909
- featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42910
- }>;
42911
- }>;
42905
+ })>;
42906
+ })>;
42912
42907
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
42913
42908
  }>;
42914
42909
  collectionMedia?: Maybe$1<Pick<CollectionMedia$1, 'src'>>;
42915
- };
42910
+ });
42916
42911
 
42917
- type ProductQuickSelectFragment = Pick<Product$1, 'id' | 'title' | 'handle' | 'averageRating' | 'baseID' | 'description' | 'sku' | 'vendor'> & {
42912
+ type ProductQuickSelectFragment = (Pick<Product$1, 'id' | 'title' | 'handle' | 'averageRating' | 'baseID' | 'description' | 'sku' | 'vendor'> & {
42918
42913
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42919
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
42914
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
42920
42915
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
42921
- }>>;
42916
+ })>>;
42922
42917
  variants?: Maybe$1<{
42923
42918
  edges: Array<{
42924
- node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'costPrice' | 'height' | 'inventoryQuantity' | 'inventoryStatus' | 'length' | 'price' | 'salePrice' | 'sku' | 'baseID' | 'weight' | 'width'> & {
42919
+ node?: Maybe$1<(Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'costPrice' | 'height' | 'inventoryQuantity' | 'inventoryStatus' | 'length' | 'price' | 'salePrice' | 'sku' | 'baseID' | 'weight' | 'width'> & {
42925
42920
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
42926
42921
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42927
- }>;
42922
+ })>;
42928
42923
  }>;
42929
42924
  }>;
42930
- };
42925
+ });
42931
42926
 
42932
42927
  type ProductList = Maybe$1<ProductQuickSelectFragment>;
42933
42928
  type ProductListContextProps = {
@@ -42962,91 +42957,91 @@ type ProductListProviderProps = ProductListContextProps & {
42962
42957
  declare const ProductListProvider: React.FC<ProductListProviderProps>;
42963
42958
  declare const useProductListStore: <U>(selector: (state: ExtractState<StoreApi<ProductListContextProps>>) => U, equalityFn?: (a: U, b: U) => boolean) => U;
42964
42959
 
42965
- type VariantSelectFragment = Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
42960
+ type VariantSelectFragment = (Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
42966
42961
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
42967
42962
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42968
- };
42963
+ });
42969
42964
 
42970
- type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
42965
+ type ProductSelectFragment = (Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
42971
42966
  collections?: Maybe$1<{
42972
42967
  edges: Array<{
42973
42968
  node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
42974
42969
  }>;
42975
42970
  }>;
42976
42971
  medias?: Maybe$1<{
42977
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
42972
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
42978
42973
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42979
- }>;
42974
+ })>;
42980
42975
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
42981
42976
  }>;
42982
42977
  variants?: Maybe$1<{
42983
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
42984
- node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
42978
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
42979
+ node?: Maybe$1<(Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
42985
42980
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
42986
42981
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42987
- }>;
42988
- }>;
42982
+ })>;
42983
+ })>;
42989
42984
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
42990
42985
  }>;
42991
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
42986
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
42992
42987
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
42993
- }>>;
42988
+ })>>;
42994
42989
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42995
- };
42990
+ });
42996
42991
 
42997
- type CollectionSelectFragment = Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
42998
- products?: Maybe$1<Pick<ProductConnection$1, 'totalCount'> & {
42992
+ type CollectionSelectFragment = (Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
42993
+ products?: Maybe$1<(Pick<ProductConnection$1, 'totalCount'> & {
42999
42994
  edges: Array<{
43000
- node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
42995
+ node?: Maybe$1<(Pick<Product$1, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
43001
42996
  featuredImage?: Maybe$1<Pick<Media$1, 'src'>>;
43002
- }>;
42997
+ })>;
43003
42998
  }>;
43004
- }>;
42999
+ })>;
43005
43000
  collectionMedia?: Maybe$1<Pick<CollectionMedia$1, 'src'>>;
43006
- };
43001
+ });
43007
43002
 
43008
43003
  type MediaSelectFragment = Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>;
43009
43004
 
43010
- type ProductVariantsWithSellingPlansSelectFragment = Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43005
+ type ProductVariantsWithSellingPlansSelectFragment = (Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43011
43006
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43012
43007
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43013
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43008
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43014
43009
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43015
- }>>>;
43016
- };
43010
+ })>>>;
43011
+ });
43017
43012
 
43018
- type ProductsWithSellingPlansDetailFragment = Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
43019
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43013
+ type ProductsWithSellingPlansDetailFragment = (Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
43014
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43020
43015
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43021
- }>>;
43016
+ })>>;
43022
43017
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43023
43018
  collections?: Maybe$1<{
43024
43019
  edges: Array<{
43025
43020
  node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
43026
43021
  }>;
43027
43022
  }>;
43028
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'appID' | 'baseID' | 'id' | 'name'> & {
43023
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'appID' | 'baseID' | 'id' | 'name'> & {
43029
43024
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43030
- }>>>;
43025
+ })>>>;
43031
43026
  medias?: Maybe$1<{
43032
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43027
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43033
43028
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43034
- }>;
43029
+ })>;
43035
43030
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43036
43031
  }>;
43037
43032
  variants?: Maybe$1<{
43038
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43039
- node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43033
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
43034
+ node?: Maybe$1<(Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43040
43035
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43041
43036
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43042
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43037
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43043
43038
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43044
- }>>>;
43045
- }>;
43046
- }>;
43039
+ })>>>;
43040
+ })>;
43041
+ })>;
43047
43042
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43048
43043
  }>;
43049
- };
43044
+ });
43050
43045
 
43051
43046
  type AttributeProp = {
43052
43047
  key: string;
@@ -43325,37 +43320,37 @@ type CollectionDetailFilterQueryVariables = Exact$1<{
43325
43320
  }>;
43326
43321
  type CollectionDetailFilterQueryResponse = {
43327
43322
  collections?: Maybe$1<{
43328
- edges: Array<Pick<CollectionEdge$1, 'cursor'> & {
43329
- node?: Maybe$1<Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
43323
+ edges: Array<(Pick<CollectionEdge$1, 'cursor'> & {
43324
+ node?: Maybe$1<(Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
43330
43325
  products?: Maybe$1<{
43331
- edges: Array<Pick<ProductEdge$1, 'cursor'> & {
43332
- node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor' | 'tags'> & {
43333
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43326
+ edges: Array<(Pick<ProductEdge$1, 'cursor'> & {
43327
+ node?: Maybe$1<(Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor' | 'tags'> & {
43328
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43334
43329
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43335
- }>>;
43330
+ })>>;
43336
43331
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43337
43332
  medias?: Maybe$1<{
43338
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43333
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43339
43334
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43340
- }>;
43335
+ })>;
43341
43336
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43342
43337
  }>;
43343
43338
  variants?: Maybe$1<{
43344
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43345
- node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43339
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
43340
+ node?: Maybe$1<(Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43346
43341
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43347
43342
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43348
- }>;
43349
- }>;
43343
+ })>;
43344
+ })>;
43350
43345
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43351
43346
  }>;
43352
- }>;
43353
- }>;
43347
+ })>;
43348
+ })>;
43354
43349
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43355
43350
  }>;
43356
43351
  collectionMedia?: Maybe$1<Pick<CollectionMedia$1, 'src'>>;
43357
- }>;
43358
- }>;
43352
+ })>;
43353
+ })>;
43359
43354
  }>;
43360
43355
  };
43361
43356
  declare class TypedDocumentString$i<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
@@ -43378,39 +43373,39 @@ type CollectionQueryVariables = Exact$1<{
43378
43373
  id?: InputMaybe$1<Scalars$2['ID']['input']>;
43379
43374
  }>;
43380
43375
  type CollectionQueryResponse = {
43381
- collection?: Maybe$1<Pick<Collection$1, 'baseID' | 'createdAt' | 'deletedAt' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta' | 'updatedAt'> & {
43382
- products?: Maybe$1<Pick<ProductConnection$1, 'totalCount'> & {
43383
- edges: Array<Pick<ProductEdge$1, 'cursor'> & {
43384
- node?: Maybe$1<Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
43376
+ collection?: Maybe$1<(Pick<Collection$1, 'baseID' | 'createdAt' | 'deletedAt' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta' | 'updatedAt'> & {
43377
+ products?: Maybe$1<(Pick<ProductConnection$1, 'totalCount'> & {
43378
+ edges: Array<(Pick<ProductEdge$1, 'cursor'> & {
43379
+ node?: Maybe$1<(Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
43385
43380
  collections?: Maybe$1<{
43386
43381
  edges: Array<{
43387
43382
  node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
43388
43383
  }>;
43389
43384
  }>;
43390
43385
  medias?: Maybe$1<{
43391
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43386
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43392
43387
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43393
- }>;
43388
+ })>;
43394
43389
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43395
43390
  }>;
43396
43391
  variants?: Maybe$1<{
43397
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43398
- node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43392
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
43393
+ node?: Maybe$1<(Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43399
43394
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43400
43395
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43401
- }>;
43402
- }>;
43396
+ })>;
43397
+ })>;
43403
43398
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43404
43399
  }>;
43405
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43400
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43406
43401
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43407
- }>>;
43402
+ })>>;
43408
43403
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43409
- }>;
43410
- }>;
43404
+ })>;
43405
+ })>;
43411
43406
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
43412
- }>;
43413
- }>;
43407
+ })>;
43408
+ })>;
43414
43409
  };
43415
43410
  declare class TypedDocumentString$h<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43416
43411
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43432,16 +43427,16 @@ type CollectionsQueryVariables = Exact$1<{
43432
43427
  type CollectionsQueryResponse = {
43433
43428
  collections?: Maybe$1<{
43434
43429
  edges: Array<{
43435
- node?: Maybe$1<Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
43436
- products?: Maybe$1<Pick<ProductConnection$1, 'totalCount'> & {
43430
+ node?: Maybe$1<(Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
43431
+ products?: Maybe$1<(Pick<ProductConnection$1, 'totalCount'> & {
43437
43432
  edges: Array<{
43438
- node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
43433
+ node?: Maybe$1<(Pick<Product$1, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
43439
43434
  featuredImage?: Maybe$1<Pick<Media$1, 'src'>>;
43440
- }>;
43435
+ })>;
43441
43436
  }>;
43442
- }>;
43437
+ })>;
43443
43438
  collectionMedia?: Maybe$1<Pick<CollectionMedia$1, 'src'>>;
43444
- }>;
43439
+ })>;
43445
43440
  }>;
43446
43441
  }>;
43447
43442
  };
@@ -43459,7 +43454,7 @@ type PublishedThemePagesQueryVariables = Exact$1<{
43459
43454
  slugType: PublishedThemePageType$1;
43460
43455
  }>;
43461
43456
  type PublishedThemePagesQueryResponse = {
43462
- publishedThemePages?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePage$1, 'id' | 'shopID' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
43457
+ publishedThemePages?: Maybe$1<Array<Maybe$1<(Pick<PublishedThemePage$1, 'id' | 'shopID' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
43463
43458
  pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
43464
43459
  themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
43465
43460
  themePageDataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
@@ -43469,7 +43464,7 @@ type PublishedThemePagesQueryResponse = {
43469
43464
  themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
43470
43465
  interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
43471
43466
  metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'key' | 'value'>>>>;
43472
- }>>>;
43467
+ })>>>;
43473
43468
  };
43474
43469
  declare class TypedDocumentString$f<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43475
43470
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43493,29 +43488,29 @@ type ProductsQueryVariables = Exact$1<{
43493
43488
  }>;
43494
43489
  type ProductsQueryResponse = {
43495
43490
  products?: Maybe$1<{
43496
- edges: Array<Pick<ProductEdge$1, 'cursor'> & {
43497
- node?: Maybe$1<Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor' | 'tags'> & {
43498
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43491
+ edges: Array<(Pick<ProductEdge$1, 'cursor'> & {
43492
+ node?: Maybe$1<(Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor' | 'tags'> & {
43493
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43499
43494
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43500
- }>>;
43495
+ })>>;
43501
43496
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43502
43497
  medias?: Maybe$1<{
43503
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43498
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43504
43499
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43505
- }>;
43500
+ })>;
43506
43501
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43507
43502
  }>;
43508
43503
  variants?: Maybe$1<{
43509
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43510
- node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43504
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
43505
+ node?: Maybe$1<(Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43511
43506
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43512
43507
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43513
- }>;
43514
- }>;
43508
+ })>;
43509
+ })>;
43515
43510
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43516
43511
  }>;
43517
- }>;
43518
- }>;
43512
+ })>;
43513
+ })>;
43519
43514
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43520
43515
  }>;
43521
43516
  };
@@ -43540,7 +43535,7 @@ type PreviewThemePageQueryVariables = Exact$1<{
43540
43535
  handleURL?: InputMaybe$1<Scalars$2['String']['input']>;
43541
43536
  }>;
43542
43537
  type PreviewThemePageQueryResponse = {
43543
- previewThemePage?: Maybe$1<Pick<PreviewThemePage$1, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
43538
+ previewThemePage?: Maybe$1<(Pick<PreviewThemePage$1, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
43544
43539
  pageSections?: Maybe$1<Array<Maybe$1<Pick<PreviewPageSection$1, 'cid' | 'component' | 'id'>>>>;
43545
43540
  dataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
43546
43541
  themeStyle?: Maybe$1<Pick<PreviewThemeStyle$1, 'id' | 'data' | 'name'>>;
@@ -43548,7 +43543,7 @@ type PreviewThemePageQueryResponse = {
43548
43543
  customCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
43549
43544
  customFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
43550
43545
  interaction?: Maybe$1<Pick<PreviewPageInteraction$1, 'id' | 'value'>>;
43551
- }>;
43546
+ })>;
43552
43547
  };
43553
43548
  declare class TypedDocumentString$d<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43554
43549
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43598,9 +43593,9 @@ type ArticlesQueryVariables = Exact$1<{
43598
43593
  where?: InputMaybe$1<ArticleWhereInput$1>;
43599
43594
  }>;
43600
43595
  type ArticlesQueryResponse = {
43601
- articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
43602
- edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
43603
- node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
43596
+ articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
43597
+ edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
43598
+ node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
43604
43599
  tags?: Maybe$1<Array<Maybe$1<Pick<OnlineStoreTag$1, 'name'>>>>;
43605
43600
  content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml' | 'html'>>;
43606
43601
  blogs?: Maybe$1<{
@@ -43609,10 +43604,10 @@ type ArticlesQueryResponse = {
43609
43604
  }>;
43610
43605
  }>;
43611
43606
  media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
43612
- }>;
43613
- }>;
43607
+ })>;
43608
+ })>;
43614
43609
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
43615
- }>;
43610
+ })>;
43616
43611
  };
43617
43612
  declare class TypedDocumentString$a<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43618
43613
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43633,22 +43628,22 @@ type BlogsQueryVariables = Exact$1<{
43633
43628
  articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
43634
43629
  }>;
43635
43630
  type BlogsQueryResponse = {
43636
- blogs?: Maybe$1<Pick<BlogConnection$1, 'totalCount'> & {
43637
- edges: Array<Pick<BlogEdge$1, 'cursor'> & {
43638
- node?: Maybe$1<Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
43639
- articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
43640
- edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
43641
- node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
43631
+ blogs?: Maybe$1<(Pick<BlogConnection$1, 'totalCount'> & {
43632
+ edges: Array<(Pick<BlogEdge$1, 'cursor'> & {
43633
+ node?: Maybe$1<(Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
43634
+ articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
43635
+ edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
43636
+ node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
43642
43637
  tags?: Maybe$1<Array<Maybe$1<Pick<OnlineStoreTag$1, 'name'>>>>;
43643
43638
  content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml' | 'html'>>;
43644
43639
  media?: Maybe$1<Pick<Media$1, 'width' | 'src' | 'height'>>;
43645
- }>;
43646
- }>;
43647
- }>;
43648
- }>;
43649
- }>;
43640
+ })>;
43641
+ })>;
43642
+ })>;
43643
+ })>;
43644
+ })>;
43650
43645
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
43651
- }>;
43646
+ })>;
43652
43647
  };
43653
43648
  declare class TypedDocumentString$9<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43654
43649
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43672,73 +43667,63 @@ type ProductsWithSellingPlansQueryVariables = Exact$1<{
43672
43667
  }>;
43673
43668
  type ProductsWithSellingPlansQueryResponse = {
43674
43669
  products?: Maybe$1<{
43675
- edges: Array<Pick<ProductEdge$1, 'cursor'> & {
43676
- node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
43677
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43670
+ edges: Array<(Pick<ProductEdge$1, 'cursor'> & {
43671
+ node?: Maybe$1<(Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
43672
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43678
43673
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43679
- }>>;
43674
+ })>>;
43680
43675
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43681
- collections?: Maybe$1<{
43682
- edges: Array<{
43683
- node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
43684
- }>;
43685
- }>;
43686
43676
  sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'appID' | 'baseID' | 'id' | 'name'>>>>;
43687
43677
  medias?: Maybe$1<{
43688
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43678
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43689
43679
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43690
- }>;
43680
+ })>;
43691
43681
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43692
43682
  }>;
43693
43683
  variants?: Maybe$1<{
43694
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43695
- node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43684
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
43685
+ node?: Maybe$1<(Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43696
43686
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43697
43687
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43698
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43688
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43699
43689
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43700
- }>>>;
43701
- }>;
43702
- }>;
43690
+ })>>>;
43691
+ })>;
43692
+ })>;
43703
43693
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43704
43694
  }>;
43705
- }>;
43706
- }>;
43695
+ })>;
43696
+ })>;
43707
43697
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43708
43698
  }>;
43709
43699
  };
43710
- type ProductWithSellingPlansSelectFragmentFragment = Pick<ProductEdge$1, 'cursor'> & {
43711
- node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
43712
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43700
+ type ProductWithSellingPlansSelectFragmentFragment = (Pick<ProductEdge$1, 'cursor'> & {
43701
+ node?: Maybe$1<(Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
43702
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43713
43703
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43714
- }>>;
43704
+ })>>;
43715
43705
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43716
- collections?: Maybe$1<{
43717
- edges: Array<{
43718
- node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
43719
- }>;
43720
- }>;
43721
43706
  sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'appID' | 'baseID' | 'id' | 'name'>>>>;
43722
43707
  medias?: Maybe$1<{
43723
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43708
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43724
43709
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43725
- }>;
43710
+ })>;
43726
43711
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43727
43712
  }>;
43728
43713
  variants?: Maybe$1<{
43729
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43730
- node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43714
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
43715
+ node?: Maybe$1<(Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43731
43716
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43732
43717
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43733
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43718
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43734
43719
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43735
- }>>>;
43736
- }>;
43737
- }>;
43720
+ })>>>;
43721
+ })>;
43722
+ })>;
43738
43723
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43739
43724
  }>;
43740
- }>;
43741
- };
43725
+ })>;
43726
+ });
43742
43727
  declare class TypedDocumentString$8<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43743
43728
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
43744
43729
  private value;
@@ -43760,20 +43745,20 @@ type ProductVariantsWithSellingPlansQueryVariables = Exact$1<{
43760
43745
  type ProductVariantsWithSellingPlansQueryResponse = {
43761
43746
  variants?: Maybe$1<{
43762
43747
  edges: Array<{
43763
- node?: Maybe$1<Pick<Product$1, 'id'> & {
43748
+ node?: Maybe$1<(Pick<Product$1, 'id'> & {
43764
43749
  variants?: Maybe$1<{
43765
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43766
- node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43750
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
43751
+ node?: Maybe$1<(Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
43767
43752
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43768
43753
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43769
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43754
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43770
43755
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43771
- }>>>;
43772
- }>;
43773
- }>;
43756
+ })>>>;
43757
+ })>;
43758
+ })>;
43774
43759
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43775
43760
  }>;
43776
- }>;
43761
+ })>;
43777
43762
  }>;
43778
43763
  }>;
43779
43764
  };
@@ -44028,6 +44013,23 @@ declare const composeSpacing: (spacingValue?: ObjectDevices<SpacingType>) => Rea
44028
44013
 
44029
44014
  declare const genVariable: (variableName: string) => string;
44030
44015
 
44016
+ type PickedProductStatus = 'ACTIVE' | 'UNLISTED';
44017
+ declare const PICKED_PRODUCT_STATUSES: PickedProductStatus[];
44018
+
44019
+ type FetchProductsParams = {
44020
+ ids: string[];
44021
+ isSample?: boolean;
44022
+ isStorefront?: boolean;
44023
+ defaultSelectedProductCount?: number;
44024
+ allStatus?: boolean;
44025
+ selectedStatus?: PickedProductStatus[];
44026
+ };
44027
+ declare const getProducts: (fetcher: FetchFunc, { ids, isSample, isStorefront, defaultSelectedProductCount, allStatus, selectedStatus }: FetchProductsParams) => Promise<ProductsQueryResponse>;
44028
+ type TFetchRelatedProductQueriesParams = ProductsQueryVariables['where'] & {
44029
+ first?: number;
44030
+ };
44031
+ declare const getProductQueryAll: (fetcher: FetchFunc, arg: Partial<TFetchRelatedProductQueriesParams>) => Promise<ProductsQueryResponse>;
44032
+
44031
44033
  declare const pageview$1: () => void;
44032
44034
  declare const event: (name: string, options?: {}) => void;
44033
44035
  declare const addToCart$2: (product: ProductInputAnalytic) => void;
@@ -44967,9 +44969,16 @@ type SettingUIGroup = {
44967
44969
  };
44968
44970
  };
44969
44971
 
44972
+ type PickLinkOptionType = 'stay-on-page' | 'open-page' | 'scroll-to' | 'open-popup' | 'send-email' | 'call-phone' | 'go-to-sales-page';
44973
+ type PickLinkOptionConfig = {
44974
+ title?: string;
44975
+ popoverLabel?: string;
44976
+ hideScrollToTop?: boolean;
44977
+ };
44970
44978
  type PickLinkControlType<T> = SharedControlType<T> & {
44971
44979
  type: 'pick-link';
44972
44980
  pickLinkLabel?: string;
44981
+ optionConfig?: Partial<Record<PickLinkOptionType, PickLinkOptionConfig>>;
44973
44982
  isHiddenInsertLink?: boolean;
44974
44983
  isHiddenOpenLinkSelect?: boolean;
44975
44984
  hiddenOptions?: {
@@ -51552,14 +51561,6 @@ declare const fetchMedias: (fetcher: FetchFunc, { id, isSample, isStorefront }:
51552
51561
  node?: Maybe$1<Pick<Media$1, "id" | "baseID" | "contentType" | "previewImage" | "src" | "width" | "height" | "alt">>;
51553
51562
  })[]>;
51554
51563
 
51555
- type FetchProductsParams = {
51556
- ids: string[];
51557
- isSample?: boolean;
51558
- isStorefront?: boolean;
51559
- defaultSelectedProductCount?: number;
51560
- allStatus?: boolean;
51561
- };
51562
-
51563
51564
  declare const generateProductQueryKey: (args: FetchProductParams) => ["query/product", FetchProductParams];
51564
51565
  declare const generateCollectionQueryKey: (args: FetchCollectionArgs) => ["query/collection", FetchCollectionArgs];
51565
51566
  declare const generateProductsQueryKey: (args: FetchProductsParams) => ["query/products", FetchProductsParams];
@@ -55086,6 +55087,7 @@ declare const useFetchHandle: () => FetchFunc;
55086
55087
  declare const useProductsQuery: (ids?: string[], options?: SWRConfiguration<ProductsQueryResponse>, params?: {
55087
55088
  defaultSelectedProductCount?: number;
55088
55089
  allStatus?: boolean;
55090
+ selectedStatus?: PickedProductStatus[];
55089
55091
  fetcher?: FetchFunc;
55090
55092
  }) => swr.SWRResponse<ProductsQueryResponse, any, SWRConfiguration<ProductsQueryResponse, any, (arg: ["query/products", FetchProductsParams]) => swr__internal.FetcherResponse<ProductsQueryResponse>> | undefined>;
55091
55093
  declare const useProductsQueryAll: (variable?: ProductsQueryVariables, options?: SWRConfiguration<ProductsQueryResponse>, customFetcher?: FetchFunc) => swr.SWRResponse<ProductsQueryResponse, any, SWRConfiguration<ProductsQueryResponse, any, (arg: ["query/products", any]) => swr__internal.FetcherResponse<ProductsQueryResponse>> | undefined>;
@@ -55243,16 +55245,16 @@ declare const useSelectedOption: () => {
55243
55245
  declare const useVariants: () => Maybe$1<Pick<ProductVariant$1, "id" | "title" | "baseID" | "sku" | "barcode" | "costPrice" | "height" | "inventoryPolicy" | "inventoryQuantity" | "inventoryStatus" | "isDigital" | "length" | "lowInventoryAmount" | "manageInventory" | "mediaId" | "platform" | "price" | "salePrice" | "soldIndividually" | "weight" | "width"> & {
55244
55246
  selectedOptions: Array<Pick<SelectedOption$1, "name" | "value" | "optionType">>;
55245
55247
  media?: Maybe$1<Pick<Media$1, "id" | "baseID" | "contentType" | "previewImage" | "src" | "width" | "height" | "alt">>;
55246
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, "id" | "appID"> & {
55248
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, "id" | "appID"> & {
55247
55249
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, "id" | "name" | "baseID" | "billingPolicy" | "deliveryPolicy" | "pricingPolicies" | "updatedAt">>>>;
55248
- }>>>;
55250
+ })>>>;
55249
55251
  }>[];
55250
55252
  declare const useVariant: (id: string) => Maybe$1<Pick<ProductVariant$1, "id" | "title" | "baseID" | "sku" | "barcode" | "costPrice" | "height" | "inventoryPolicy" | "inventoryQuantity" | "inventoryStatus" | "isDigital" | "length" | "lowInventoryAmount" | "manageInventory" | "mediaId" | "platform" | "price" | "salePrice" | "soldIndividually" | "weight" | "width"> & {
55251
55253
  selectedOptions: Array<Pick<SelectedOption$1, "name" | "value" | "optionType">>;
55252
55254
  media?: Maybe$1<Pick<Media$1, "id" | "baseID" | "contentType" | "previewImage" | "src" | "width" | "height" | "alt">>;
55253
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, "id" | "appID"> & {
55255
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, "id" | "appID"> & {
55254
55256
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, "id" | "name" | "baseID" | "billingPolicy" | "deliveryPolicy" | "pricingPolicies" | "updatedAt">>>>;
55255
- }>>>;
55257
+ })>>>;
55256
55258
  }>;
55257
55259
  declare const useCurrentVariant: () => Maybe$1<VariantSelectFragment>;
55258
55260
  declare const useCurrentVariantInStock: () => boolean;
@@ -55273,45 +55275,6 @@ declare const useShopifyLink: ({ productId, articleId }: ShopifyLinkParam) => {
55273
55275
  linkEditArticle: string;
55274
55276
  };
55275
55277
 
55276
- declare const useProductList: () => CollectionProductSelectFragment | undefined;
55277
- declare const useProductListProducts: () => (ProductQuickSelectFragment | undefined)[] | undefined;
55278
- declare const useProductListSettings: () => {
55279
- loop?: ObjectDevices<boolean>;
55280
- scrollMode?: ObjectDevices<"snap" | "free" | "free-snap">;
55281
- slidesToShow?: ObjectDevices<number | "auto">;
55282
- spacing?: ObjectDevices<number>;
55283
- layout?: "grid" | "slider";
55284
- dot?: ObjectDevices<boolean>;
55285
- dotStyle?: ObjectDevices<"none" | "inside" | "outside">;
55286
- arrow?: ObjectDevices<boolean>;
55287
- controlOverContent?: ObjectDevices<boolean>;
55288
- speed?: number;
55289
- sameHeight?: boolean;
55290
- } | undefined;
55291
- declare const useProductListStyles: () => {
55292
- horizontalGutter?: ObjectDevices<string>;
55293
- verticalGutter?: ObjectDevices<string>;
55294
- fullWidth?: ObjectDevices<boolean>;
55295
- spacing?: ObjectDevices<number>;
55296
- width?: ObjectDevices<string>;
55297
- height?: ObjectDevices<string>;
55298
- } | undefined;
55299
- declare const useSafeGetProductListSettings: () => {
55300
- settings: {
55301
- loop?: ObjectDevices<boolean>;
55302
- scrollMode?: ObjectDevices<"snap" | "free" | "free-snap">;
55303
- slidesToShow?: ObjectDevices<number | "auto">;
55304
- spacing?: ObjectDevices<number>;
55305
- layout?: "grid" | "slider";
55306
- dot?: ObjectDevices<boolean>;
55307
- dotStyle?: ObjectDevices<"none" | "inside" | "outside">;
55308
- arrow?: ObjectDevices<boolean>;
55309
- controlOverContent?: ObjectDevices<boolean>;
55310
- speed?: number;
55311
- sameHeight?: boolean;
55312
- } | null | undefined;
55313
- };
55314
-
55315
55278
  declare const useSuspenseFetch: <T>(key: string | any[], promise: () => Promise<T>) => {
55316
55279
  data: T;
55317
55280
  };
@@ -55329,7 +55292,23 @@ declare const usePreviewSharePage: () => {
55329
55292
  disableExternalLinks: () => void;
55330
55293
  };
55331
55294
 
55332
- type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'shopID' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
55295
+ declare const useSafeGetProductListSettings: () => {
55296
+ settings: {
55297
+ loop?: ObjectDevices<boolean>;
55298
+ scrollMode?: ObjectDevices<"snap" | "free" | "free-snap">;
55299
+ slidesToShow?: ObjectDevices<number | "auto">;
55300
+ spacing?: ObjectDevices<number>;
55301
+ layout?: "grid" | "slider";
55302
+ dot?: ObjectDevices<boolean>;
55303
+ dotStyle?: ObjectDevices<"none" | "inside" | "outside">;
55304
+ arrow?: ObjectDevices<boolean>;
55305
+ controlOverContent?: ObjectDevices<boolean>;
55306
+ speed?: number;
55307
+ sameHeight?: boolean;
55308
+ } | null | undefined;
55309
+ };
55310
+
55311
+ type PublishedThemePageSelectFragment = (Pick<PublishedThemePage$1, 'id' | 'shopID' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
55333
55312
  pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
55334
55313
  themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
55335
55314
  themePageDataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
@@ -55339,7 +55318,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'shopI
55339
55318
  themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
55340
55319
  interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
55341
55320
  metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'key' | 'value'>>>>;
55342
- };
55321
+ });
55343
55322
 
55344
55323
  declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
55345
55324
 
@@ -55396,5 +55375,5 @@ declare const EMPTY_DEVICE_VALUE: undefined;
55396
55375
 
55397
55376
  declare const BLACKLIST_TAGS: Set<string>;
55398
55377
 
55399
- export { AddOn, AddonProvider, AnimationDirectionType, AnimationEasingType, AnimationSetting, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, appAPI as AppAPIType, ArticleListProvider, ArticleProvider, ArticlesDocument, BLACKLIST_TAGS, BlogsDocument, BuilderComponentProvider, BuilderPreviewProvider, BuilderProvider, CartLineProvider, CollectionDetailFilterDocument, CollectionDocument, CollectionProvider, CollectionsDocument, DEVICES, EMPTY_DEVICE_VALUE, GRADIENT_BGR_KEY, I18nProvider, InteractionTargetEvent, InteractionTriggerEvent, LibrarySaleFunnelDocument, LibraryTemplateDocument, ModalProvider, OptionNormalStyle, OptionSpecialStyle, PageProvider, PreviewThemePageDocument, ProductListProvider, ProductProvider, ProductVariantsWithSellingPlansDocument, ProductWithSellingPlansSelectFragment, ProductsWithSellingPlansDocument, PublishedShopMetasDocument, PublishedThemePagesDocument, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderModeEnv, RenderPreviewMemo as RenderPreview, SaleFunnelDiscountsDocument, SaleFunnelOfferDocument, SectionMode, SectionProvider, ShopLibraryPageDocument, ShopProvider, ShopShopifyDocument, shop as ShopType, StorePropertyDocument, ThemePageDocument, ThemePageMetaDocument, WrapRenderChildren, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkHasChangeContent, checkInStock, cloneDeep, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, composeClasses, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadow, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertBoxShadowV1ToV2, convertDecimalToNumber, convertHTML, convertOldLayout, convertTextAlignToJustify, createStoreFrontFetcher, createTranslateKey, dataStringify, extractOuterTagContent, fetchMedias, fetchVariants, filterAttrInStyle, filterHoverVariables, filterToolbarPreview, filterTruthyStyles, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgByDevice, getBgImageByDevice, getBgImageSourceByDevice, getBgVideoByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getColor, getCombinedBackgroundImage, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getFlexGrowClassByShapeGlobalSize, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getGradientImageBgrStyleByDevice, getHashCode, getHeightByShapeGlobalSize, getLayoutClasses, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImage, getStyleBgColor, getStyleBgImageSource, getStyleShadow, getStyleShadowState, getThemeSectionTranslateKey, getValueByDevice, getValueSettingFromSchema, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, handleConvertInputBorderColor, hasPublicStoreFrontData, hasTranslatedLiquid, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleResponsiveWidth, makeStyleResponsiveWidthWithoutAuto, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, replaceOuterTagContent, sanitizeLiquid, shopifyPriceRounding, splitStyle, styles, tGlobal as t, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFetchHandle, useFormatMoney, useHasPreSelected, useI18n, useI18nStore, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePreviewSharePage, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductOffersQuery, useProductProperties, useProductQuery, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useRenderMode, useSafeGetProductListSettings, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStickyStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
55400
- export type { AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationFadeSettingType, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationZoomSettingType, AppstleLoyaltyRewardProgramWidgetType, ArticleListProviderProps, ArticleProviderProps, ArticlesQueryResponse, ArticlesQueryVariables, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BlogsQueryResponse, BlogsQueryVariables, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProviderProps, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProviderProps, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DotStyle, Dropdown, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, FontStyleType, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, I18nProviderProps, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEventObject, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibrarySection, LibraryTemplate, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, LooxReviewsWidgetTypeV2, MediaSelectFragment, ModalProviderProps, NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, Option$4 as Option, Options$1 as Options, PaddingType, PageContext, PageProviderProps, PageSection, PageType, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProviderProps, ProductOffer, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductVariantsWithSellingPlansQueryResponse, ProductVariantsWithSellingPlansQueryVariables, ProductVariantsWithSellingPlansSelectFragment, ProductsQueryResponse, ProductsQueryVariables, ProductsWithSellingPlansDetailFragment, ProductsWithSellingPlansQueryResponse, ProductsWithSellingPlansQueryVariables, PublicStoreFrontData, PublishErrorSectionListEventDetail, PublishedShopMetasQueryResponse, PublishedShopMetasQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMode, ResponsiveKey, ResponsiveStateProp, ResultOldElementWithSectionId, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, SaleFunnelOffer, SaleFunnelOfferQueryResponse, SaleFunnelOfferQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionCategory, SectionData, SectionEntity, SectionProviderProps, Setting, SettingByAnimationType, SettingByAnimationValues, SettingUIControl, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, Shop, ShopLibraryPage, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopLibrarySection, ShopProviderProps, ShopShopifyQueryResponse, ShopShopifyQueryVariables, SizeProps, SizeSetting$1 as SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StampedWidgetTypeV2, StateProp, StateSelector, StateType, StoreConfig, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, TemplateCategory, TemplatePackage, Theme, ThemePage, ThemePageMetaQueryResponse, ThemePageMetaQueryVariables, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSection, ThemeSectionStatus$1 as ThemeSectionStatus, ThemeStyle, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Family, TypographyV2FontFamilyType, TypographyV2Props, UltimateSalesBoostWidgetType, UpdatableItemAttr, ValidateType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, YotpoReviewsWidgetType };
55378
+ export { AddOn, AddonProvider, AnimationDirectionType, AnimationEasingType, AnimationSetting, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, appAPI as AppAPIType, ArticleListProvider, ArticleProvider, ArticlesDocument, BLACKLIST_TAGS, BlogsDocument, BuilderComponentProvider, BuilderPreviewProvider, BuilderProvider, CartLineProvider, CollectionDetailFilterDocument, CollectionDocument, CollectionProvider, CollectionsDocument, DEVICES, EMPTY_DEVICE_VALUE, GRADIENT_BGR_KEY, I18nProvider, InteractionTargetEvent, InteractionTriggerEvent, LibrarySaleFunnelDocument, LibraryTemplateDocument, ModalProvider, OptionNormalStyle, OptionSpecialStyle, PICKED_PRODUCT_STATUSES, PageProvider, PreviewThemePageDocument, ProductListProvider, ProductProvider, ProductVariantsWithSellingPlansDocument, ProductWithSellingPlansSelectFragment, ProductsWithSellingPlansDocument, PublishedShopMetasDocument, PublishedThemePagesDocument, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderModeEnv, RenderPreviewMemo as RenderPreview, SaleFunnelDiscountsDocument, SaleFunnelOfferDocument, SectionMode, SectionProvider, ShopLibraryPageDocument, ShopProvider, ShopShopifyDocument, shop as ShopType, StorePropertyDocument, ThemePageDocument, ThemePageMetaDocument, WrapRenderChildren, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkHasChangeContent, checkInStock, cloneDeep, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, composeClasses, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadow, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertBoxShadowV1ToV2, convertDecimalToNumber, convertHTML, convertOldLayout, convertTextAlignToJustify, createStoreFrontFetcher, createTranslateKey, dataStringify, extractOuterTagContent, fetchMedias, fetchVariants, filterAttrInStyle, filterHoverVariables, filterToolbarPreview, filterTruthyStyles, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgByDevice, getBgImageByDevice, getBgImageSourceByDevice, getBgVideoByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getColor, getCombinedBackgroundImage, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getFlexGrowClassByShapeGlobalSize, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getGradientImageBgrStyleByDevice, getHashCode, getHeightByShapeGlobalSize, getLayoutClasses, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getProductQueryAll, getProducts, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImage, getStyleBgColor, getStyleBgImageSource, getStyleShadow, getStyleShadowState, getThemeSectionTranslateKey, getValueByDevice, getValueSettingFromSchema, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, handleConvertInputBorderColor, hasPublicStoreFrontData, hasTranslatedLiquid, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleResponsiveWidth, makeStyleResponsiveWidthWithoutAuto, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, replaceOuterTagContent, sanitizeLiquid, shopifyPriceRounding, splitStyle, styles, tGlobal as t, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFetchHandle, useFormatMoney, useHasPreSelected, useI18n, useI18nStore, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePreviewSharePage, usePrevious, useProduct, useProductBundleDiscount, useProductListStore, useProductOfferDiscount, useProductOffersQuery, useProductProperties, useProductQuery, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useRenderMode, useSafeGetProductListSettings, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStickyStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
55379
+ export type { AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationFadeSettingType, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationZoomSettingType, AppstleLoyaltyRewardProgramWidgetType, ArticleListProviderProps, ArticleProviderProps, ArticlesQueryResponse, ArticlesQueryVariables, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BlogsQueryResponse, BlogsQueryVariables, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProviderProps, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProviderProps, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DotStyle, Dropdown, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FetchProductsParams, FlexDirectionProp, FontName, FontStyleType, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, I18nProviderProps, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEventObject, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibrarySection, LibraryTemplate, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, LooxReviewsWidgetTypeV2, MediaSelectFragment, ModalProviderProps, NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, Option$4 as Option, Options$1 as Options, PaddingType, PageContext, PageProviderProps, PageSection, PageType, PickedProductStatus, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProviderProps, ProductOffer, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductVariantsWithSellingPlansQueryResponse, ProductVariantsWithSellingPlansQueryVariables, ProductVariantsWithSellingPlansSelectFragment, ProductsQueryResponse, ProductsQueryVariables, ProductsWithSellingPlansDetailFragment, ProductsWithSellingPlansQueryResponse, ProductsWithSellingPlansQueryVariables, PublicStoreFrontData, PublishErrorSectionListEventDetail, PublishedShopMetasQueryResponse, PublishedShopMetasQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMode, ResponsiveKey, ResponsiveStateProp, ResultOldElementWithSectionId, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, SaleFunnelOffer, SaleFunnelOfferQueryResponse, SaleFunnelOfferQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionCategory, SectionData, SectionEntity, SectionProviderProps, Setting, SettingByAnimationType, SettingByAnimationValues, SettingUIControl, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, Shop, ShopLibraryPage, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopLibrarySection, ShopProviderProps, ShopShopifyQueryResponse, ShopShopifyQueryVariables, SizeProps, SizeSetting$1 as SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StampedWidgetTypeV2, StateProp, StateSelector, StateType, StoreConfig, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TFetchRelatedProductQueriesParams, TagShopWidgetType, TemplateCategory, TemplatePackage, Theme, ThemePage, ThemePageMetaQueryResponse, ThemePageMetaQueryVariables, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSection, ThemeSectionStatus$1 as ThemeSectionStatus, ThemeStyle, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Family, TypographyV2FontFamilyType, TypographyV2Props, UltimateSalesBoostWidgetType, UpdatableItemAttr, ValidateType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, YotpoReviewsWidgetType };