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

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
  };
@@ -43548,6 +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'>>;
43546
+ metafields?: Maybe$1<Array<Pick<PreviewThemePageMeta$1, 'key' | 'value'>>>;
43551
43547
  }>;
43552
43548
  };
43553
43549
  declare class TypedDocumentString$d<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
@@ -43598,9 +43594,9 @@ type ArticlesQueryVariables = Exact$1<{
43598
43594
  where?: InputMaybe$1<ArticleWhereInput$1>;
43599
43595
  }>;
43600
43596
  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'> & {
43597
+ articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
43598
+ edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
43599
+ node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
43604
43600
  tags?: Maybe$1<Array<Maybe$1<Pick<OnlineStoreTag$1, 'name'>>>>;
43605
43601
  content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml' | 'html'>>;
43606
43602
  blogs?: Maybe$1<{
@@ -43609,10 +43605,10 @@ type ArticlesQueryResponse = {
43609
43605
  }>;
43610
43606
  }>;
43611
43607
  media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
43612
- }>;
43613
- }>;
43608
+ })>;
43609
+ })>;
43614
43610
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
43615
- }>;
43611
+ })>;
43616
43612
  };
43617
43613
  declare class TypedDocumentString$a<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43618
43614
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43633,22 +43629,22 @@ type BlogsQueryVariables = Exact$1<{
43633
43629
  articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
43634
43630
  }>;
43635
43631
  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'> & {
43632
+ blogs?: Maybe$1<(Pick<BlogConnection$1, 'totalCount'> & {
43633
+ edges: Array<(Pick<BlogEdge$1, 'cursor'> & {
43634
+ node?: Maybe$1<(Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
43635
+ articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
43636
+ edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
43637
+ node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
43642
43638
  tags?: Maybe$1<Array<Maybe$1<Pick<OnlineStoreTag$1, 'name'>>>>;
43643
43639
  content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml' | 'html'>>;
43644
43640
  media?: Maybe$1<Pick<Media$1, 'width' | 'src' | 'height'>>;
43645
- }>;
43646
- }>;
43647
- }>;
43648
- }>;
43649
- }>;
43641
+ })>;
43642
+ })>;
43643
+ })>;
43644
+ })>;
43645
+ })>;
43650
43646
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
43651
- }>;
43647
+ })>;
43652
43648
  };
43653
43649
  declare class TypedDocumentString$9<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43654
43650
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
@@ -43672,73 +43668,63 @@ type ProductsWithSellingPlansQueryVariables = Exact$1<{
43672
43668
  }>;
43673
43669
  type ProductsWithSellingPlansQueryResponse = {
43674
43670
  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'> & {
43671
+ edges: Array<(Pick<ProductEdge$1, 'cursor'> & {
43672
+ node?: Maybe$1<(Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
43673
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43678
43674
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43679
- }>>;
43675
+ })>>;
43680
43676
  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
43677
  sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'appID' | 'baseID' | 'id' | 'name'>>>>;
43687
43678
  medias?: Maybe$1<{
43688
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43679
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43689
43680
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43690
- }>;
43681
+ })>;
43691
43682
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43692
43683
  }>;
43693
43684
  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'> & {
43685
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
43686
+ 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
43687
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43697
43688
  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'> & {
43689
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43699
43690
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43700
- }>>>;
43701
- }>;
43702
- }>;
43691
+ })>>>;
43692
+ })>;
43693
+ })>;
43703
43694
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43704
43695
  }>;
43705
- }>;
43706
- }>;
43696
+ })>;
43697
+ })>;
43707
43698
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43708
43699
  }>;
43709
43700
  };
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'> & {
43701
+ type ProductWithSellingPlansSelectFragmentFragment = (Pick<ProductEdge$1, 'cursor'> & {
43702
+ node?: Maybe$1<(Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
43703
+ options?: Maybe$1<Array<(Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
43713
43704
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
43714
- }>>;
43705
+ })>>;
43715
43706
  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
43707
  sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup$1, 'appID' | 'baseID' | 'id' | 'name'>>>>;
43722
43708
  medias?: Maybe$1<{
43723
- edges: Array<Pick<MediaEdge$1, 'cursor'> & {
43709
+ edges: Array<(Pick<MediaEdge$1, 'cursor'> & {
43724
43710
  node?: Maybe$1<Pick<Media$1, 'id' | 'baseID' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
43725
- }>;
43711
+ })>;
43726
43712
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
43727
43713
  }>;
43728
43714
  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'> & {
43715
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
43716
+ 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
43717
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43732
43718
  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'> & {
43719
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43734
43720
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43735
- }>>>;
43736
- }>;
43737
- }>;
43721
+ })>>>;
43722
+ })>;
43723
+ })>;
43738
43724
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43739
43725
  }>;
43740
- }>;
43741
- };
43726
+ })>;
43727
+ });
43742
43728
  declare class TypedDocumentString$8<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
43743
43729
  __apiType?: NonNullable<DocumentTypeDecoration<TResult, TVariables>['__apiType']>;
43744
43730
  private value;
@@ -43760,20 +43746,20 @@ type ProductVariantsWithSellingPlansQueryVariables = Exact$1<{
43760
43746
  type ProductVariantsWithSellingPlansQueryResponse = {
43761
43747
  variants?: Maybe$1<{
43762
43748
  edges: Array<{
43763
- node?: Maybe$1<Pick<Product$1, 'id'> & {
43749
+ node?: Maybe$1<(Pick<Product$1, 'id'> & {
43764
43750
  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'> & {
43751
+ edges: Array<(Pick<ProductVariantEdge$1, 'cursor'> & {
43752
+ 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
43753
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
43768
43754
  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'> & {
43755
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, 'id' | 'appID'> & {
43770
43756
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, 'id' | 'name' | 'baseID' | 'billingPolicy' | 'deliveryPolicy' | 'pricingPolicies' | 'updatedAt'>>>>;
43771
- }>>>;
43772
- }>;
43773
- }>;
43757
+ })>>>;
43758
+ })>;
43759
+ })>;
43774
43760
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
43775
43761
  }>;
43776
- }>;
43762
+ })>;
43777
43763
  }>;
43778
43764
  }>;
43779
43765
  };
@@ -44028,6 +44014,23 @@ declare const composeSpacing: (spacingValue?: ObjectDevices<SpacingType>) => Rea
44028
44014
 
44029
44015
  declare const genVariable: (variableName: string) => string;
44030
44016
 
44017
+ type PickedProductStatus = 'ACTIVE' | 'UNLISTED';
44018
+ declare const PICKED_PRODUCT_STATUSES: PickedProductStatus[];
44019
+
44020
+ type FetchProductsParams = {
44021
+ ids: string[];
44022
+ isSample?: boolean;
44023
+ isStorefront?: boolean;
44024
+ defaultSelectedProductCount?: number;
44025
+ allStatus?: boolean;
44026
+ selectedStatus?: PickedProductStatus[];
44027
+ };
44028
+ declare const getProducts: (fetcher: FetchFunc, { ids, isSample, isStorefront, defaultSelectedProductCount, allStatus, selectedStatus }: FetchProductsParams) => Promise<ProductsQueryResponse>;
44029
+ type TFetchRelatedProductQueriesParams = ProductsQueryVariables['where'] & {
44030
+ first?: number;
44031
+ };
44032
+ declare const getProductQueryAll: (fetcher: FetchFunc, arg: Partial<TFetchRelatedProductQueriesParams>) => Promise<ProductsQueryResponse>;
44033
+
44031
44034
  declare const pageview$1: () => void;
44032
44035
  declare const event: (name: string, options?: {}) => void;
44033
44036
  declare const addToCart$2: (product: ProductInputAnalytic) => void;
@@ -44967,9 +44970,16 @@ type SettingUIGroup = {
44967
44970
  };
44968
44971
  };
44969
44972
 
44973
+ type PickLinkOptionType = 'stay-on-page' | 'open-page' | 'scroll-to' | 'open-popup' | 'send-email' | 'call-phone' | 'go-to-sales-page';
44974
+ type PickLinkOptionConfig = {
44975
+ title?: string;
44976
+ popoverLabel?: string;
44977
+ hideScrollToTop?: boolean;
44978
+ };
44970
44979
  type PickLinkControlType<T> = SharedControlType<T> & {
44971
44980
  type: 'pick-link';
44972
44981
  pickLinkLabel?: string;
44982
+ optionConfig?: Partial<Record<PickLinkOptionType, PickLinkOptionConfig>>;
44973
44983
  isHiddenInsertLink?: boolean;
44974
44984
  isHiddenOpenLinkSelect?: boolean;
44975
44985
  hiddenOptions?: {
@@ -51552,14 +51562,6 @@ declare const fetchMedias: (fetcher: FetchFunc, { id, isSample, isStorefront }:
51552
51562
  node?: Maybe$1<Pick<Media$1, "id" | "baseID" | "contentType" | "previewImage" | "src" | "width" | "height" | "alt">>;
51553
51563
  })[]>;
51554
51564
 
51555
- type FetchProductsParams = {
51556
- ids: string[];
51557
- isSample?: boolean;
51558
- isStorefront?: boolean;
51559
- defaultSelectedProductCount?: number;
51560
- allStatus?: boolean;
51561
- };
51562
-
51563
51565
  declare const generateProductQueryKey: (args: FetchProductParams) => ["query/product", FetchProductParams];
51564
51566
  declare const generateCollectionQueryKey: (args: FetchCollectionArgs) => ["query/collection", FetchCollectionArgs];
51565
51567
  declare const generateProductsQueryKey: (args: FetchProductsParams) => ["query/products", FetchProductsParams];
@@ -55086,6 +55088,7 @@ declare const useFetchHandle: () => FetchFunc;
55086
55088
  declare const useProductsQuery: (ids?: string[], options?: SWRConfiguration<ProductsQueryResponse>, params?: {
55087
55089
  defaultSelectedProductCount?: number;
55088
55090
  allStatus?: boolean;
55091
+ selectedStatus?: PickedProductStatus[];
55089
55092
  fetcher?: FetchFunc;
55090
55093
  }) => swr.SWRResponse<ProductsQueryResponse, any, SWRConfiguration<ProductsQueryResponse, any, (arg: ["query/products", FetchProductsParams]) => swr__internal.FetcherResponse<ProductsQueryResponse>> | undefined>;
55091
55094
  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 +55246,16 @@ declare const useSelectedOption: () => {
55243
55246
  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
55247
  selectedOptions: Array<Pick<SelectedOption$1, "name" | "value" | "optionType">>;
55245
55248
  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"> & {
55249
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, "id" | "appID"> & {
55247
55250
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, "id" | "name" | "baseID" | "billingPolicy" | "deliveryPolicy" | "pricingPolicies" | "updatedAt">>>>;
55248
- }>>>;
55251
+ })>>>;
55249
55252
  }>[];
55250
55253
  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
55254
  selectedOptions: Array<Pick<SelectedOption$1, "name" | "value" | "optionType">>;
55252
55255
  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"> & {
55256
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<(Pick<SellingPlanGroup$1, "id" | "appID"> & {
55254
55257
  sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan$1, "id" | "name" | "baseID" | "billingPolicy" | "deliveryPolicy" | "pricingPolicies" | "updatedAt">>>>;
55255
- }>>>;
55258
+ })>>>;
55256
55259
  }>;
55257
55260
  declare const useCurrentVariant: () => Maybe$1<VariantSelectFragment>;
55258
55261
  declare const useCurrentVariantInStock: () => boolean;
@@ -55273,45 +55276,6 @@ declare const useShopifyLink: ({ productId, articleId }: ShopifyLinkParam) => {
55273
55276
  linkEditArticle: string;
55274
55277
  };
55275
55278
 
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
55279
  declare const useSuspenseFetch: <T>(key: string | any[], promise: () => Promise<T>) => {
55316
55280
  data: T;
55317
55281
  };
@@ -55329,7 +55293,23 @@ declare const usePreviewSharePage: () => {
55329
55293
  disableExternalLinks: () => void;
55330
55294
  };
55331
55295
 
55332
- type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'shopID' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
55296
+ declare const useSafeGetProductListSettings: () => {
55297
+ settings: {
55298
+ loop?: ObjectDevices<boolean>;
55299
+ scrollMode?: ObjectDevices<"snap" | "free" | "free-snap">;
55300
+ slidesToShow?: ObjectDevices<number | "auto">;
55301
+ spacing?: ObjectDevices<number>;
55302
+ layout?: "grid" | "slider";
55303
+ dot?: ObjectDevices<boolean>;
55304
+ dotStyle?: ObjectDevices<"none" | "inside" | "outside">;
55305
+ arrow?: ObjectDevices<boolean>;
55306
+ controlOverContent?: ObjectDevices<boolean>;
55307
+ speed?: number;
55308
+ sameHeight?: boolean;
55309
+ } | null | undefined;
55310
+ };
55311
+
55312
+ type PublishedThemePageSelectFragment = (Pick<PublishedThemePage$1, 'id' | 'shopID' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
55333
55313
  pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
55334
55314
  themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
55335
55315
  themePageDataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
@@ -55339,7 +55319,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'shopI
55339
55319
  themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
55340
55320
  interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
55341
55321
  metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'key' | 'value'>>>>;
55342
- };
55322
+ });
55343
55323
 
55344
55324
  declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
55345
55325
 
@@ -55396,5 +55376,5 @@ declare const EMPTY_DEVICE_VALUE: undefined;
55396
55376
 
55397
55377
  declare const BLACKLIST_TAGS: Set<string>;
55398
55378
 
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 };
55379
+ 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 };
55380
+ 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 };