@gem-sdk/core 19.1.0-dev.1 → 19.1.0-dev.15

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.
@@ -6822,8 +6822,6 @@ type Query$1 = {
6822
6822
  onlineStoreTags?: Maybe$1<OnlineStoreTagConnection$1>;
6823
6823
  page?: Maybe$1<Page$1>;
6824
6824
  pages?: Maybe$1<PageConnection$1>;
6825
- /** @deprecated Use previewThemePage instead */
6826
- previewPage?: Maybe$1<PublishedThemePage$1>;
6827
6825
  previewThemePage?: Maybe$1<PreviewThemePage$1>;
6828
6826
  product?: Maybe$1<Product$1>;
6829
6827
  productOptionName: Array<Scalars$2['String']['output']>;
@@ -27569,8 +27567,6 @@ type Query = {
27569
27567
  platformOriginalTemplate?: Maybe<PlatformOriginalTemplate>;
27570
27568
  platformPages: PlatformPageConnection;
27571
27569
  platformThemeFiles: PlatformThemeFileConnection;
27572
- /** @deprecated Use previewThemePage instead */
27573
- previewPage?: Maybe<PublishedThemePage>;
27574
27570
  previewThemePage?: Maybe<PreviewThemePage>;
27575
27571
  product?: Maybe<Product>;
27576
27572
  productDiscount?: Maybe<ProductDiscount>;
@@ -42771,9 +42767,9 @@ type AddonProviderProps = Pick<AddonContextProps, 'components'> & {
42771
42767
 
42772
42768
  declare const AddonProvider: React.FC<AddonProviderProps>;
42773
42769
  declare const useAddons: () => Record<string, React.ComponentType<any>>;
42774
- declare const useAddon: (id?: string) => React.ComponentType<any> | React.FC<BaseProps & {
42770
+ declare const useAddon: (id?: string) => React.FC<BaseProps & {
42775
42771
  children?: React.ReactNode;
42776
- }>;
42772
+ }> | React.ComponentType<any>;
42777
42773
 
42778
42774
  type BuilderComponentProps = {
42779
42775
  components: Record<string, React.ComponentType<any>>;
@@ -42785,9 +42781,9 @@ type BuilderComponentProviderProps = Pick<BuilderComponentProps, 'components'> &
42785
42781
  };
42786
42782
 
42787
42783
  declare const BuilderComponentProvider: React.FC<BuilderComponentProviderProps>;
42788
- declare const useBuilderComponent: (id?: string) => React.FC<BaseProps & {
42784
+ declare const useBuilderComponent: (id?: string) => React.ComponentType<BaseProps> | React.FC<BaseProps & {
42789
42785
  children?: React.ReactNode;
42790
- }> | React.ComponentType<BaseProps>;
42786
+ }>;
42791
42787
 
42792
42788
  type BuilderContextProps = {
42793
42789
  state: BuilderState | SectionData;
@@ -42883,55 +42879,50 @@ type CartLineProviderProps = Pick<CartLineContextProps, 'line'> & {
42883
42879
  declare const CartLineProvider: React.FC<CartLineProviderProps>;
42884
42880
  declare const useCartLineStore: <U>(selector: (state: ExtractState<StoreApi<CartLineContextProps>>) => U, equalityFn?: (a: U, b: U) => boolean) => U;
42885
42881
 
42886
- 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'> & {
42887
42883
  products?: Maybe$1<{
42888
- edges: Array<Pick<ProductEdge$1, 'cursor'> & {
42889
- node?: Maybe$1<Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
42890
- collections?: Maybe$1<{
42891
- edges: Array<{
42892
- node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
42893
- }>;
42894
- }>;
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'>>;
42895
42890
  medias?: Maybe$1<{
42896
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
42891
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
42897
42892
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42898
- }>;
42893
+ })>;
42899
42894
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
42900
42895
  }>;
42901
42896
  variants?: Maybe$1<{
42902
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
42903
- 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'> & {
42904
42899
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
42905
42900
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42906
- }>;
42907
- }>;
42901
+ })>;
42902
+ })>;
42908
42903
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
42909
42904
  }>;
42910
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
42911
- values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
42912
- }>>;
42913
- featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42914
- }>;
42915
- }>;
42905
+ })>;
42906
+ })>;
42916
42907
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
42917
42908
  }>;
42918
42909
  collectionMedia?: Maybe$1<Pick<CollectionMedia$1, 'src'>>;
42919
- };
42910
+ });
42920
42911
 
42921
- 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'> & {
42922
42913
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42923
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
42914
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
42924
42915
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
42925
- }>>;
42916
+ })>>;
42926
42917
  variants?: Maybe$1<{
42927
42918
  edges: Array<{
42928
- 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'> & {
42929
42920
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
42930
42921
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42931
- }>;
42922
+ })>;
42932
42923
  }>;
42933
42924
  }>;
42934
- };
42925
+ });
42935
42926
 
42936
42927
  type ProductList = Maybe$1<ProductQuickSelectFragment>;
42937
42928
  type ProductListContextProps = {
@@ -42966,91 +42957,91 @@ type ProductListProviderProps = ProductListContextProps & {
42966
42957
  declare const ProductListProvider: React.FC<ProductListProviderProps>;
42967
42958
  declare const useProductListStore: <U>(selector: (state: ExtractState<StoreApi<ProductListContextProps>>) => U, equalityFn?: (a: U, b: U) => boolean) => U;
42968
42959
 
42969
- 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'> & {
42970
42961
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
42971
42962
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42972
- };
42963
+ });
42973
42964
 
42974
- 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'> & {
42975
42966
  collections?: Maybe$1<{
42976
42967
  edges: Array<{
42977
42968
  node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
42978
42969
  }>;
42979
42970
  }>;
42980
42971
  medias?: Maybe$1<{
42981
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
42972
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
42982
42973
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42983
- }>;
42974
+ })>;
42984
42975
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
42985
42976
  }>;
42986
42977
  variants?: Maybe$1<{
42987
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
42988
- 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'> & {
42989
42980
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
42990
42981
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42991
- }>;
42992
- }>;
42982
+ })>;
42983
+ })>;
42993
42984
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
42994
42985
  }>;
42995
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
42986
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
42996
42987
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
42997
- }>>;
42988
+ })>>;
42998
42989
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
42999
- };
42990
+ });
43000
42991
 
43001
- type CollectionSelectFragment = Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
43002
- 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'> & {
43003
42994
  edges: Array<{
43004
- node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
42995
+ node?: Maybe$1<(Pick<Product$1, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
43005
42996
  featuredImage?: Maybe$1<Pick<Media$1, 'src'>>;
43006
- }>;
42997
+ })>;
43007
42998
  }>;
43008
- }>;
42999
+ })>;
43009
43000
  collectionMedia?: Maybe$1<Pick<CollectionMedia$1, 'src'>>;
43010
- };
43001
+ });
43011
43002
 
43012
43003
  type MediaSelectFragment = Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>;
43013
43004
 
43014
- 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'> & {
43015
43006
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43016
43007
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43017
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43008
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43018
43009
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43019
- }>>>;
43020
- };
43010
+ })>>>;
43011
+ });
43021
43012
 
43022
- type ProductsWithSellingPlansDetailFragment = Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
43023
- 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'> & {
43024
43015
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43025
- }>>;
43016
+ })>>;
43026
43017
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43027
43018
  collections?: Maybe$1<{
43028
43019
  edges: Array<{
43029
43020
  node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
43030
43021
  }>;
43031
43022
  }>;
43032
- 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'> & {
43033
43024
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43034
- }>>>;
43025
+ })>>>;
43035
43026
  medias?: Maybe$1<{
43036
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43027
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43037
43028
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43038
- }>;
43029
+ })>;
43039
43030
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43040
43031
  }>;
43041
43032
  variants?: Maybe$1<{
43042
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43043
- 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'> & {
43044
43035
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43045
43036
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43046
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43037
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43047
43038
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43048
- }>>>;
43049
- }>;
43050
- }>;
43039
+ })>>>;
43040
+ })>;
43041
+ })>;
43051
43042
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43052
43043
  }>;
43053
- };
43044
+ });
43054
43045
 
43055
43046
  type AttributeProp = {
43056
43047
  key: string;
@@ -43329,37 +43320,37 @@ type CollectionDetailFilterQueryVariables = Exact$1<{
43329
43320
  }>;
43330
43321
  type CollectionDetailFilterQueryResponse = {
43331
43322
  collections?: Maybe$1<{
43332
- edges: Array<Pick<CollectionEdge$1, 'cursor'> & {
43333
- 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'> & {
43334
43325
  products?: Maybe$1<{
43335
- edges: Array<Pick<ProductEdge$1, 'cursor'> & {
43336
- node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor' | 'tags'> & {
43337
- 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'> & {
43338
43329
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43339
- }>>;
43330
+ })>>;
43340
43331
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43341
43332
  medias?: Maybe$1<{
43342
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43333
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43343
43334
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43344
- }>;
43335
+ })>;
43345
43336
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43346
43337
  }>;
43347
43338
  variants?: Maybe$1<{
43348
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43349
- 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'> & {
43350
43341
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43351
43342
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43352
- }>;
43353
- }>;
43343
+ })>;
43344
+ })>;
43354
43345
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43355
43346
  }>;
43356
- }>;
43357
- }>;
43347
+ })>;
43348
+ })>;
43358
43349
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43359
43350
  }>;
43360
43351
  collectionMedia?: Maybe$1<Pick<CollectionMedia$1, 'src'>>;
43361
- }>;
43362
- }>;
43352
+ })>;
43353
+ })>;
43363
43354
  }>;
43364
43355
  };
43365
43356
  declare class TypedDocumentString$i<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
@@ -43382,39 +43373,39 @@ type CollectionQueryVariables = Exact$1<{
43382
43373
  id?: InputMaybe$1<Scalars$2['ID']['input']>;
43383
43374
  }>;
43384
43375
  type CollectionQueryResponse = {
43385
- collection?: Maybe$1<Pick<Collection$1, 'baseID' | 'createdAt' | 'deletedAt' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta' | 'updatedAt'> & {
43386
- products?: Maybe$1<Pick<ProductConnection$1, 'totalCount'> & {
43387
- edges: Array<Pick<ProductEdge$1, 'cursor'> & {
43388
- 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'> & {
43389
43380
  collections?: Maybe$1<{
43390
43381
  edges: Array<{
43391
43382
  node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
43392
43383
  }>;
43393
43384
  }>;
43394
43385
  medias?: Maybe$1<{
43395
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43386
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43396
43387
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43397
- }>;
43388
+ })>;
43398
43389
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43399
43390
  }>;
43400
43391
  variants?: Maybe$1<{
43401
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43402
- 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'> & {
43403
43394
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43404
43395
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43405
- }>;
43406
- }>;
43396
+ })>;
43397
+ })>;
43407
43398
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43408
43399
  }>;
43409
- options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43400
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43410
43401
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43411
- }>>;
43402
+ })>>;
43412
43403
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43413
- }>;
43414
- }>;
43404
+ })>;
43405
+ })>;
43415
43406
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
43416
- }>;
43417
- }>;
43407
+ })>;
43408
+ })>;
43418
43409
  };
43419
43410
  declare class TypedDocumentString$h<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43420
43411
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43436,16 +43427,16 @@ type CollectionsQueryVariables = Exact$1<{
43436
43427
  type CollectionsQueryResponse = {
43437
43428
  collections?: Maybe$1<{
43438
43429
  edges: Array<{
43439
- node?: Maybe$1<Pick<Collection$1, 'id' | 'createdAt' | 'updatedAt' | 'deletedAt' | 'title' | 'handle' | 'description' | 'descriptionHtml' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isStorefront' | 'isSample'> & {
43440
- 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'> & {
43441
43432
  edges: Array<{
43442
- node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
43433
+ node?: Maybe$1<(Pick<Product$1, 'id' | 'title' | 'handle' | 'description' | 'status'> & {
43443
43434
  featuredImage?: Maybe$1<Pick<Media$1, 'src'>>;
43444
- }>;
43435
+ })>;
43445
43436
  }>;
43446
- }>;
43437
+ })>;
43447
43438
  collectionMedia?: Maybe$1<Pick<CollectionMedia$1, 'src'>>;
43448
- }>;
43439
+ })>;
43449
43440
  }>;
43450
43441
  }>;
43451
43442
  };
@@ -43463,7 +43454,7 @@ type PublishedThemePagesQueryVariables = Exact$1<{
43463
43454
  slugType: PublishedThemePageType$1;
43464
43455
  }>;
43465
43456
  type PublishedThemePagesQueryResponse = {
43466
- 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'> & {
43467
43458
  pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
43468
43459
  themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
43469
43460
  themePageDataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
@@ -43473,7 +43464,7 @@ type PublishedThemePagesQueryResponse = {
43473
43464
  themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
43474
43465
  interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
43475
43466
  metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'key' | 'value'>>>>;
43476
- }>>>;
43467
+ })>>>;
43477
43468
  };
43478
43469
  declare class TypedDocumentString$f<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43479
43470
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43497,29 +43488,29 @@ type ProductsQueryVariables = Exact$1<{
43497
43488
  }>;
43498
43489
  type ProductsQueryResponse = {
43499
43490
  products?: Maybe$1<{
43500
- edges: Array<Pick<ProductEdge$1, 'cursor'> & {
43501
- node?: Maybe$1<Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor' | 'tags'> & {
43502
- 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'> & {
43503
43494
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43504
- }>>;
43495
+ })>>;
43505
43496
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43506
43497
  medias?: Maybe$1<{
43507
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43498
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43508
43499
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43509
- }>;
43500
+ })>;
43510
43501
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43511
43502
  }>;
43512
43503
  variants?: Maybe$1<{
43513
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43514
- 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'> & {
43515
43506
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43516
43507
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43517
- }>;
43518
- }>;
43508
+ })>;
43509
+ })>;
43519
43510
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43520
43511
  }>;
43521
- }>;
43522
- }>;
43512
+ })>;
43513
+ })>;
43523
43514
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43524
43515
  }>;
43525
43516
  };
@@ -43544,7 +43535,7 @@ type PreviewThemePageQueryVariables = Exact$1<{
43544
43535
  handleURL?: InputMaybe$1<Scalars$2['String']['input']>;
43545
43536
  }>;
43546
43537
  type PreviewThemePageQueryResponse = {
43547
- previewThemePage?: Maybe$1<Pick<PreviewThemePage$1, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
43538
+ previewThemePage?: Maybe$1<(Pick<PreviewThemePage$1, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
43548
43539
  pageSections?: Maybe$1<Array<Maybe$1<Pick<PreviewPageSection$1, 'cid' | 'component' | 'id'>>>>;
43549
43540
  dataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
43550
43541
  themeStyle?: Maybe$1<Pick<PreviewThemeStyle$1, 'id' | 'data' | 'name'>>;
@@ -43552,7 +43543,7 @@ type PreviewThemePageQueryResponse = {
43552
43543
  customCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
43553
43544
  customFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
43554
43545
  interaction?: Maybe$1<Pick<PreviewPageInteraction$1, 'id' | 'value'>>;
43555
- }>;
43546
+ })>;
43556
43547
  };
43557
43548
  declare class TypedDocumentString$d<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43558
43549
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43602,9 +43593,9 @@ type ArticlesQueryVariables = Exact$1<{
43602
43593
  where?: InputMaybe$1<ArticleWhereInput$1>;
43603
43594
  }>;
43604
43595
  type ArticlesQueryResponse = {
43605
- articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
43606
- edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
43607
- 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'> & {
43608
43599
  tags?: Maybe$1<Array<Maybe$1<Pick<OnlineStoreTag$1, 'name'>>>>;
43609
43600
  content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml' | 'html'>>;
43610
43601
  blogs?: Maybe$1<{
@@ -43613,10 +43604,10 @@ type ArticlesQueryResponse = {
43613
43604
  }>;
43614
43605
  }>;
43615
43606
  media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
43616
- }>;
43617
- }>;
43607
+ })>;
43608
+ })>;
43618
43609
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
43619
- }>;
43610
+ })>;
43620
43611
  };
43621
43612
  declare class TypedDocumentString$a<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43622
43613
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43637,22 +43628,22 @@ type BlogsQueryVariables = Exact$1<{
43637
43628
  articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
43638
43629
  }>;
43639
43630
  type BlogsQueryResponse = {
43640
- blogs?: Maybe$1<Pick<BlogConnection$1, 'totalCount'> & {
43641
- edges: Array<Pick<BlogEdge$1, 'cursor'> & {
43642
- node?: Maybe$1<Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
43643
- articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
43644
- edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
43645
- 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'> & {
43646
43637
  tags?: Maybe$1<Array<Maybe$1<Pick<OnlineStoreTag$1, 'name'>>>>;
43647
43638
  content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml' | 'html'>>;
43648
43639
  media?: Maybe$1<Pick<Media$1, 'width' | 'src' | 'height'>>;
43649
- }>;
43650
- }>;
43651
- }>;
43652
- }>;
43653
- }>;
43640
+ })>;
43641
+ })>;
43642
+ })>;
43643
+ })>;
43644
+ })>;
43654
43645
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
43655
- }>;
43646
+ })>;
43656
43647
  };
43657
43648
  declare class TypedDocumentString$9<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43658
43649
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43676,73 +43667,63 @@ type ProductsWithSellingPlansQueryVariables = Exact$1<{
43676
43667
  }>;
43677
43668
  type ProductsWithSellingPlansQueryResponse = {
43678
43669
  products?: Maybe$1<{
43679
- edges: Array<Pick<ProductEdge$1, 'cursor'> & {
43680
- node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
43681
- 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'> & {
43682
43673
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43683
- }>>;
43674
+ })>>;
43684
43675
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43685
- collections?: Maybe$1<{
43686
- edges: Array<{
43687
- node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
43688
- }>;
43689
- }>;
43690
43676
  sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'appID' | 'baseID' | 'id' | 'name'>>>>;
43691
43677
  medias?: Maybe$1<{
43692
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43678
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43693
43679
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43694
- }>;
43680
+ })>;
43695
43681
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43696
43682
  }>;
43697
43683
  variants?: Maybe$1<{
43698
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43699
- 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'> & {
43700
43686
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43701
43687
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43702
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43688
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43703
43689
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43704
- }>>>;
43705
- }>;
43706
- }>;
43690
+ })>>>;
43691
+ })>;
43692
+ })>;
43707
43693
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43708
43694
  }>;
43709
- }>;
43710
- }>;
43695
+ })>;
43696
+ })>;
43711
43697
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43712
43698
  }>;
43713
43699
  };
43714
- type ProductWithSellingPlansSelectFragmentFragment = Pick<ProductEdge$1, 'cursor'> & {
43715
- node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
43716
- 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'> & {
43717
43703
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43718
- }>>;
43704
+ })>>;
43719
43705
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43720
- collections?: Maybe$1<{
43721
- edges: Array<{
43722
- node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
43723
- }>;
43724
- }>;
43725
43706
  sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'appID' | 'baseID' | 'id' | 'name'>>>>;
43726
43707
  medias?: Maybe$1<{
43727
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43708
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43728
43709
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43729
- }>;
43710
+ })>;
43730
43711
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43731
43712
  }>;
43732
43713
  variants?: Maybe$1<{
43733
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43734
- 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'> & {
43735
43716
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43736
43717
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43737
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43718
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43738
43719
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43739
- }>>>;
43740
- }>;
43741
- }>;
43720
+ })>>>;
43721
+ })>;
43722
+ })>;
43742
43723
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43743
43724
  }>;
43744
- }>;
43745
- };
43725
+ })>;
43726
+ });
43746
43727
  declare class TypedDocumentString$8<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43747
43728
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
43748
43729
  private value;
@@ -43764,20 +43745,20 @@ type ProductVariantsWithSellingPlansQueryVariables = Exact$1<{
43764
43745
  type ProductVariantsWithSellingPlansQueryResponse = {
43765
43746
  variants?: Maybe$1<{
43766
43747
  edges: Array<{
43767
- node?: Maybe$1<Pick<Product$1, 'id'> & {
43748
+ node?: Maybe$1<(Pick<Product$1, 'id'> & {
43768
43749
  variants?: Maybe$1<{
43769
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
43770
- 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'> & {
43771
43752
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43772
43753
  media?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43773
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43754
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43774
43755
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43775
- }>>>;
43776
- }>;
43777
- }>;
43756
+ })>>>;
43757
+ })>;
43758
+ })>;
43778
43759
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43779
43760
  }>;
43780
- }>;
43761
+ })>;
43781
43762
  }>;
43782
43763
  }>;
43783
43764
  };
@@ -44032,6 +44013,23 @@ declare const composeSpacing: (spacingValue?: ObjectDevices<SpacingType>) => Rea
44032
44013
 
44033
44014
  declare const genVariable: (variableName: string) => string;
44034
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
+
44035
44033
  declare const pageview$1: () => void;
44036
44034
  declare const event: (name: string, options?: {}) => void;
44037
44035
  declare const addToCart$2: (product: ProductInputAnalytic) => void;
@@ -51556,14 +51554,6 @@ declare const fetchMedias: (fetcher: FetchFunc, { id, isSample, isStorefront }:
51556
51554
  node?: Maybe$1<Pick<Media$1, "id" | "baseID" | "contentType" | "previewImage" | "src" | "width" | "height" | "alt">>;
51557
51555
  })[]>;
51558
51556
 
51559
- type FetchProductsParams = {
51560
- ids: string[];
51561
- isSample?: boolean;
51562
- isStorefront?: boolean;
51563
- defaultSelectedProductCount?: number;
51564
- allStatus?: boolean;
51565
- };
51566
-
51567
51557
  declare const generateProductQueryKey: (args: FetchProductParams) => ["query/product", FetchProductParams];
51568
51558
  declare const generateCollectionQueryKey: (args: FetchCollectionArgs) => ["query/collection", FetchCollectionArgs];
51569
51559
  declare const generateProductsQueryKey: (args: FetchProductsParams) => ["query/products", FetchProductsParams];
@@ -55090,6 +55080,7 @@ declare const useFetchHandle: () => FetchFunc;
55090
55080
  declare const useProductsQuery: (ids?: string[], options?: SWRConfiguration<ProductsQueryResponse>, params?: {
55091
55081
  defaultSelectedProductCount?: number;
55092
55082
  allStatus?: boolean;
55083
+ selectedStatus?: PickedProductStatus[];
55093
55084
  fetcher?: FetchFunc;
55094
55085
  }) => swr.SWRResponse<ProductsQueryResponse, any, SWRConfiguration<ProductsQueryResponse, any, (arg: ["query/products", FetchProductsParams]) => swr__internal.FetcherResponse<ProductsQueryResponse>> | undefined>;
55095
55086
  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>;
@@ -55247,16 +55238,16 @@ declare const useSelectedOption: () => {
55247
55238
  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"> & {
55248
55239
  selectedOptions: Array<Pick<SelectedOption$1, "name" | "value" | "optionType">>;
55249
55240
  media?: Maybe$1<Pick<Media$1, "id" | "baseID" | "contentType" | "previewImage" | "src" | "width" | "height" | "alt">>;
55250
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, "id" | "appID"> & {
55241
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, "id" | "appID"> & {
55251
55242
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, "id" | "name" | "baseID" | "billingPolicy" | "deliveryPolicy" | "pricingPolicies" | "updatedAt">>>>;
55252
- }>>>;
55243
+ })>>>;
55253
55244
  }>[];
55254
55245
  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"> & {
55255
55246
  selectedOptions: Array<Pick<SelectedOption$1, "name" | "value" | "optionType">>;
55256
55247
  media?: Maybe$1<Pick<Media$1, "id" | "baseID" | "contentType" | "previewImage" | "src" | "width" | "height" | "alt">>;
55257
- sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, "id" | "appID"> & {
55248
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, "id" | "appID"> & {
55258
55249
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, "id" | "name" | "baseID" | "billingPolicy" | "deliveryPolicy" | "pricingPolicies" | "updatedAt">>>>;
55259
- }>>>;
55250
+ })>>>;
55260
55251
  }>;
55261
55252
  declare const useCurrentVariant: () => Maybe$1<VariantSelectFragment>;
55262
55253
  declare const useCurrentVariantInStock: () => boolean;
@@ -55277,45 +55268,6 @@ declare const useShopifyLink: ({ productId, articleId }: ShopifyLinkParam) => {
55277
55268
  linkEditArticle: string;
55278
55269
  };
55279
55270
 
55280
- declare const useProductList: () => CollectionProductSelectFragment | undefined;
55281
- declare const useProductListProducts: () => (ProductQuickSelectFragment | undefined)[] | undefined;
55282
- declare const useProductListSettings: () => {
55283
- loop?: ObjectDevices<boolean>;
55284
- scrollMode?: ObjectDevices<"snap" | "free" | "free-snap">;
55285
- slidesToShow?: ObjectDevices<number | "auto">;
55286
- spacing?: ObjectDevices<number>;
55287
- layout?: "grid" | "slider";
55288
- dot?: ObjectDevices<boolean>;
55289
- dotStyle?: ObjectDevices<"none" | "inside" | "outside">;
55290
- arrow?: ObjectDevices<boolean>;
55291
- controlOverContent?: ObjectDevices<boolean>;
55292
- speed?: number;
55293
- sameHeight?: boolean;
55294
- } | undefined;
55295
- declare const useProductListStyles: () => {
55296
- horizontalGutter?: ObjectDevices<string>;
55297
- verticalGutter?: ObjectDevices<string>;
55298
- fullWidth?: ObjectDevices<boolean>;
55299
- spacing?: ObjectDevices<number>;
55300
- width?: ObjectDevices<string>;
55301
- height?: ObjectDevices<string>;
55302
- } | undefined;
55303
- declare const useSafeGetProductListSettings: () => {
55304
- settings: {
55305
- loop?: ObjectDevices<boolean>;
55306
- scrollMode?: ObjectDevices<"snap" | "free" | "free-snap">;
55307
- slidesToShow?: ObjectDevices<number | "auto">;
55308
- spacing?: ObjectDevices<number>;
55309
- layout?: "grid" | "slider";
55310
- dot?: ObjectDevices<boolean>;
55311
- dotStyle?: ObjectDevices<"none" | "inside" | "outside">;
55312
- arrow?: ObjectDevices<boolean>;
55313
- controlOverContent?: ObjectDevices<boolean>;
55314
- speed?: number;
55315
- sameHeight?: boolean;
55316
- } | null | undefined;
55317
- };
55318
-
55319
55271
  declare const useSuspenseFetch: <T>(key: string | any[], promise: () => Promise<T>) => {
55320
55272
  data: T;
55321
55273
  };
@@ -55333,7 +55285,23 @@ declare const usePreviewSharePage: () => {
55333
55285
  disableExternalLinks: () => void;
55334
55286
  };
55335
55287
 
55336
- type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'shopID' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
55288
+ declare const useSafeGetProductListSettings: () => {
55289
+ settings: {
55290
+ loop?: ObjectDevices<boolean>;
55291
+ scrollMode?: ObjectDevices<"snap" | "free" | "free-snap">;
55292
+ slidesToShow?: ObjectDevices<number | "auto">;
55293
+ spacing?: ObjectDevices<number>;
55294
+ layout?: "grid" | "slider";
55295
+ dot?: ObjectDevices<boolean>;
55296
+ dotStyle?: ObjectDevices<"none" | "inside" | "outside">;
55297
+ arrow?: ObjectDevices<boolean>;
55298
+ controlOverContent?: ObjectDevices<boolean>;
55299
+ speed?: number;
55300
+ sameHeight?: boolean;
55301
+ } | null | undefined;
55302
+ };
55303
+
55304
+ type PublishedThemePageSelectFragment = (Pick<PublishedThemePage$1, 'id' | 'shopID' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
55337
55305
  pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
55338
55306
  themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
55339
55307
  themePageDataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
@@ -55343,7 +55311,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'shopI
55343
55311
  themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
55344
55312
  interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
55345
55313
  metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'key' | 'value'>>>>;
55346
- };
55314
+ });
55347
55315
 
55348
55316
  declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
55349
55317
 
@@ -55400,5 +55368,5 @@ declare const EMPTY_DEVICE_VALUE: undefined;
55400
55368
 
55401
55369
  declare const BLACKLIST_TAGS: Set<string>;
55402
55370
 
55403
- 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 };
55404
- 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 };
55371
+ 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 };
55372
+ 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 };