@gem-sdk/core 1.58.0-dev.13 → 1.58.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.
Files changed (26) hide show
  1. package/dist/cjs/components/ComponentToolbarPreview.js +2 -2
  2. package/dist/cjs/components/InteractionSuffix.js +1 -1
  3. package/dist/cjs/components/ai-generator/AIContentGenerator.js +1 -1
  4. package/dist/cjs/components/theme-section/CreateThemeSection.js +1 -1
  5. package/dist/cjs/contexts/ProductContext.js +16 -1
  6. package/dist/cjs/graphql/fragments/preview-theme-page.generated.js +32 -0
  7. package/dist/cjs/graphql/fragments/published-theme-page.generated.js +0 -28
  8. package/dist/cjs/graphql/queries/preview-page.generated.js +6 -12
  9. package/dist/cjs/helpers/interaction/index.js +1 -1
  10. package/dist/cjs/helpers/third-party/getAppBlockConfig.js +8 -0
  11. package/dist/cjs/hooks/useProduct.js +10 -1
  12. package/dist/cjs/index.js +11 -10
  13. package/dist/esm/components/ComponentToolbarPreview.js +2 -2
  14. package/dist/esm/components/InteractionSuffix.js +1 -1
  15. package/dist/esm/components/ai-generator/AIContentGenerator.js +1 -1
  16. package/dist/esm/components/theme-section/CreateThemeSection.js +1 -1
  17. package/dist/esm/contexts/ProductContext.js +16 -1
  18. package/dist/esm/graphql/fragments/preview-theme-page.generated.js +30 -0
  19. package/dist/esm/graphql/fragments/published-theme-page.generated.js +1 -28
  20. package/dist/esm/graphql/queries/preview-page.generated.js +5 -11
  21. package/dist/esm/helpers/interaction/index.js +1 -1
  22. package/dist/esm/helpers/third-party/getAppBlockConfig.js +8 -0
  23. package/dist/esm/hooks/useProduct.js +10 -2
  24. package/dist/esm/index.js +5 -5
  25. package/dist/types/index.d.ts +413 -88
  26. package/package.json +1 -1
@@ -3,10 +3,10 @@ import { Cart as Cart$2, addToCartOperation, getCartOperation, cartDiscountCodes
3
3
  import { SWRConfig, SWRConfiguration, MutatorOptions } from 'swr';
4
4
  import { ShortHandProperty } from '@gem-sdk/styles';
5
5
  import * as csstype from 'csstype';
6
+ import * as swr__internal from 'swr/_internal';
6
7
  import * as swr_mutation from 'swr/mutation';
7
8
  import { SWRMutationConfiguration } from 'swr/mutation';
8
9
  import * as _gem_sdk_adapter_common_dist_types_types_cart from '@gem-sdk/adapter-common/dist/types/types/cart';
9
- import * as swr__internal from 'swr/_internal';
10
10
  import { useLayoutEffect } from 'react';
11
11
  export { useId } from 'react';
12
12
 
@@ -2321,6 +2321,7 @@ type EntitledPriceRuleWhereInput$1 = {
2321
2321
  };
2322
2322
  type Entity = {
2323
2323
  findMetafieldByID: Metafield$1;
2324
+ findMetafieldDefinitionByID: MetafieldDefinition;
2324
2325
  findProductByID: Product$1;
2325
2326
  findPublishedCustomSectionByID: PublishedCustomSection$1;
2326
2327
  findPublishedPageInteractionByID: PublishedPageInteraction$1;
@@ -2338,6 +2339,9 @@ type Entity = {
2338
2339
  type EntityFindMetafieldByIdArgs = {
2339
2340
  id: Scalars$2['ID'];
2340
2341
  };
2342
+ type EntityFindMetafieldDefinitionByIdArgs = {
2343
+ id: Scalars$2['ID'];
2344
+ };
2341
2345
  type EntityFindProductByIdArgs = {
2342
2346
  id: Scalars$2['ID'];
2343
2347
  };
@@ -2655,7 +2659,185 @@ type Metafield$1 = {
2655
2659
  shopID: Scalars$2['ID'];
2656
2660
  value: Scalars$2['String'];
2657
2661
  };
2662
+ type MetafieldConnection = {
2663
+ edges: Array<MetafieldEdge>;
2664
+ pageInfo?: Maybe$1<PageInfo$1>;
2665
+ totalCount?: Maybe$1<Scalars$2['Int']>;
2666
+ };
2667
+ type MetafieldDefinition = {
2668
+ baseID: Scalars$2['String'];
2669
+ description?: Maybe$1<Scalars$2['String']>;
2670
+ id: Scalars$2['ID'];
2671
+ key: Scalars$2['String'];
2672
+ name: Scalars$2['String'];
2673
+ namespace: Scalars$2['String'];
2674
+ ownerType: MetafieldDefinitionOwnerType;
2675
+ shopID: Scalars$2['ID'];
2676
+ type: Scalars$2['String'];
2677
+ };
2678
+ type MetafieldDefinitionConnection = {
2679
+ edges: Array<MetafieldDefinitionEdge>;
2680
+ pageInfo?: Maybe$1<PageInfo$1>;
2681
+ totalCount?: Maybe$1<Scalars$2['Int']>;
2682
+ };
2683
+ type MetafieldDefinitionEdge = {
2684
+ cursor?: Maybe$1<Scalars$2['Cursor']>;
2685
+ node?: Maybe$1<MetafieldDefinition>;
2686
+ };
2687
+ type MetafieldDefinitionOrder = {
2688
+ direction: OrderDirection$1;
2689
+ field?: InputMaybe$1<MetafieldDefinitionOrderField>;
2690
+ };
2691
+ type MetafieldDefinitionOrderField = 'CREATED_AT' | 'UPDATED_AT';
2692
+ type MetafieldDefinitionOwnerType = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'MEDIA_IMAGE' | 'PAGE' | 'PRODUCT' | 'PRODUCTVARIANT';
2693
+ /**
2694
+ * MetafieldDefinitionWhereInput is used for filtering MetafieldDefinition objects.
2695
+ * Input was generated by ent.
2696
+ */
2697
+ type MetafieldDefinitionWhereInput = {
2698
+ and?: InputMaybe$1<Array<MetafieldDefinitionWhereInput>>;
2699
+ /** base_id field predicates */
2700
+ baseID?: InputMaybe$1<Scalars$2['String']>;
2701
+ baseIDContains?: InputMaybe$1<Scalars$2['String']>;
2702
+ baseIDContainsFold?: InputMaybe$1<Scalars$2['String']>;
2703
+ baseIDEqualFold?: InputMaybe$1<Scalars$2['String']>;
2704
+ baseIDGT?: InputMaybe$1<Scalars$2['String']>;
2705
+ baseIDGTE?: InputMaybe$1<Scalars$2['String']>;
2706
+ baseIDHasPrefix?: InputMaybe$1<Scalars$2['String']>;
2707
+ baseIDHasSuffix?: InputMaybe$1<Scalars$2['String']>;
2708
+ baseIDIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2709
+ baseIDLT?: InputMaybe$1<Scalars$2['String']>;
2710
+ baseIDLTE?: InputMaybe$1<Scalars$2['String']>;
2711
+ baseIDNEQ?: InputMaybe$1<Scalars$2['String']>;
2712
+ baseIDNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2713
+ /** created_at field predicates */
2714
+ createdAt?: InputMaybe$1<Scalars$2['Time']>;
2715
+ createdAtGT?: InputMaybe$1<Scalars$2['Time']>;
2716
+ createdAtGTE?: InputMaybe$1<Scalars$2['Time']>;
2717
+ createdAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
2718
+ createdAtLT?: InputMaybe$1<Scalars$2['Time']>;
2719
+ createdAtLTE?: InputMaybe$1<Scalars$2['Time']>;
2720
+ createdAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
2721
+ createdAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
2722
+ /** deleted_at field predicates */
2723
+ deletedAt?: InputMaybe$1<Scalars$2['Time']>;
2724
+ deletedAtGT?: InputMaybe$1<Scalars$2['Time']>;
2725
+ deletedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
2726
+ deletedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
2727
+ deletedAtIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
2728
+ deletedAtLT?: InputMaybe$1<Scalars$2['Time']>;
2729
+ deletedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
2730
+ deletedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
2731
+ deletedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
2732
+ deletedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
2733
+ /** description field predicates */
2734
+ description?: InputMaybe$1<Scalars$2['String']>;
2735
+ descriptionContains?: InputMaybe$1<Scalars$2['String']>;
2736
+ descriptionContainsFold?: InputMaybe$1<Scalars$2['String']>;
2737
+ descriptionEqualFold?: InputMaybe$1<Scalars$2['String']>;
2738
+ descriptionGT?: InputMaybe$1<Scalars$2['String']>;
2739
+ descriptionGTE?: InputMaybe$1<Scalars$2['String']>;
2740
+ descriptionHasPrefix?: InputMaybe$1<Scalars$2['String']>;
2741
+ descriptionHasSuffix?: InputMaybe$1<Scalars$2['String']>;
2742
+ descriptionIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2743
+ descriptionIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
2744
+ descriptionLT?: InputMaybe$1<Scalars$2['String']>;
2745
+ descriptionLTE?: InputMaybe$1<Scalars$2['String']>;
2746
+ descriptionNEQ?: InputMaybe$1<Scalars$2['String']>;
2747
+ descriptionNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2748
+ descriptionNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
2749
+ /** id field predicates */
2750
+ id?: InputMaybe$1<Scalars$2['ID']>;
2751
+ idGT?: InputMaybe$1<Scalars$2['ID']>;
2752
+ idGTE?: InputMaybe$1<Scalars$2['ID']>;
2753
+ idIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
2754
+ idLT?: InputMaybe$1<Scalars$2['ID']>;
2755
+ idLTE?: InputMaybe$1<Scalars$2['ID']>;
2756
+ idNEQ?: InputMaybe$1<Scalars$2['ID']>;
2757
+ idNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
2758
+ /** key field predicates */
2759
+ key?: InputMaybe$1<Scalars$2['String']>;
2760
+ keyContains?: InputMaybe$1<Scalars$2['String']>;
2761
+ keyContainsFold?: InputMaybe$1<Scalars$2['String']>;
2762
+ keyEqualFold?: InputMaybe$1<Scalars$2['String']>;
2763
+ keyGT?: InputMaybe$1<Scalars$2['String']>;
2764
+ keyGTE?: InputMaybe$1<Scalars$2['String']>;
2765
+ keyHasPrefix?: InputMaybe$1<Scalars$2['String']>;
2766
+ keyHasSuffix?: InputMaybe$1<Scalars$2['String']>;
2767
+ keyIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2768
+ keyLT?: InputMaybe$1<Scalars$2['String']>;
2769
+ keyLTE?: InputMaybe$1<Scalars$2['String']>;
2770
+ keyNEQ?: InputMaybe$1<Scalars$2['String']>;
2771
+ keyNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2772
+ /** name field predicates */
2773
+ name?: InputMaybe$1<Scalars$2['String']>;
2774
+ nameContains?: InputMaybe$1<Scalars$2['String']>;
2775
+ nameContainsFold?: InputMaybe$1<Scalars$2['String']>;
2776
+ nameEqualFold?: InputMaybe$1<Scalars$2['String']>;
2777
+ nameGT?: InputMaybe$1<Scalars$2['String']>;
2778
+ nameGTE?: InputMaybe$1<Scalars$2['String']>;
2779
+ nameHasPrefix?: InputMaybe$1<Scalars$2['String']>;
2780
+ nameHasSuffix?: InputMaybe$1<Scalars$2['String']>;
2781
+ nameIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2782
+ nameLT?: InputMaybe$1<Scalars$2['String']>;
2783
+ nameLTE?: InputMaybe$1<Scalars$2['String']>;
2784
+ nameNEQ?: InputMaybe$1<Scalars$2['String']>;
2785
+ nameNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2786
+ /** namespace field predicates */
2787
+ namespace?: InputMaybe$1<Scalars$2['String']>;
2788
+ namespaceContains?: InputMaybe$1<Scalars$2['String']>;
2789
+ namespaceContainsFold?: InputMaybe$1<Scalars$2['String']>;
2790
+ namespaceEqualFold?: InputMaybe$1<Scalars$2['String']>;
2791
+ namespaceGT?: InputMaybe$1<Scalars$2['String']>;
2792
+ namespaceGTE?: InputMaybe$1<Scalars$2['String']>;
2793
+ namespaceHasPrefix?: InputMaybe$1<Scalars$2['String']>;
2794
+ namespaceHasSuffix?: InputMaybe$1<Scalars$2['String']>;
2795
+ namespaceIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2796
+ namespaceLT?: InputMaybe$1<Scalars$2['String']>;
2797
+ namespaceLTE?: InputMaybe$1<Scalars$2['String']>;
2798
+ namespaceNEQ?: InputMaybe$1<Scalars$2['String']>;
2799
+ namespaceNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2800
+ not?: InputMaybe$1<MetafieldDefinitionWhereInput>;
2801
+ or?: InputMaybe$1<Array<MetafieldDefinitionWhereInput>>;
2802
+ /** owner_type field predicates */
2803
+ ownerType?: InputMaybe$1<MetafieldDefinitionOwnerType>;
2804
+ ownerTypeIn?: InputMaybe$1<Array<MetafieldDefinitionOwnerType>>;
2805
+ ownerTypeNEQ?: InputMaybe$1<MetafieldDefinitionOwnerType>;
2806
+ ownerTypeNotIn?: InputMaybe$1<Array<MetafieldDefinitionOwnerType>>;
2807
+ /** type field predicates */
2808
+ type?: InputMaybe$1<Scalars$2['String']>;
2809
+ typeContains?: InputMaybe$1<Scalars$2['String']>;
2810
+ typeContainsFold?: InputMaybe$1<Scalars$2['String']>;
2811
+ typeEqualFold?: InputMaybe$1<Scalars$2['String']>;
2812
+ typeGT?: InputMaybe$1<Scalars$2['String']>;
2813
+ typeGTE?: InputMaybe$1<Scalars$2['String']>;
2814
+ typeHasPrefix?: InputMaybe$1<Scalars$2['String']>;
2815
+ typeHasSuffix?: InputMaybe$1<Scalars$2['String']>;
2816
+ typeIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2817
+ typeLT?: InputMaybe$1<Scalars$2['String']>;
2818
+ typeLTE?: InputMaybe$1<Scalars$2['String']>;
2819
+ typeNEQ?: InputMaybe$1<Scalars$2['String']>;
2820
+ typeNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
2821
+ /** updated_at field predicates */
2822
+ updatedAt?: InputMaybe$1<Scalars$2['Time']>;
2823
+ updatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
2824
+ updatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
2825
+ updatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
2826
+ updatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
2827
+ updatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
2828
+ updatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
2829
+ updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
2830
+ };
2831
+ type MetafieldEdge = {
2832
+ cursor?: Maybe$1<Scalars$2['Cursor']>;
2833
+ node?: Maybe$1<Metafield$1>;
2834
+ };
2658
2835
  type MetafieldObjectType$1 = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'DISCOUNT' | 'PAGE' | 'PRODUCT' | 'PRODUCT_VARIANT' | 'SHOP';
2836
+ type MetafieldOrder = {
2837
+ direction: OrderDirection$1;
2838
+ field?: InputMaybe$1<MetafieldOrderField>;
2839
+ };
2840
+ type MetafieldOrderField = 'CREATED_AT' | 'UPDATED_AT';
2659
2841
  /**
2660
2842
  * MetafieldWhereInput is used for filtering Metafield objects.
2661
2843
  * Input was generated by ent.
@@ -3089,9 +3271,74 @@ type PrerequisitePriceRuleWhereInput$1 = {
3089
3271
  variantIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
3090
3272
  };
3091
3273
  type PreviewCustomSectionType$1 = 'FOOTER' | 'HEADER';
3274
+ type PreviewPageInteraction = {
3275
+ createdAt?: Maybe$1<Scalars$2['Time']>;
3276
+ deletedAt?: Maybe$1<Scalars$2['Time']>;
3277
+ id: Scalars$2['ID'];
3278
+ updatedAt?: Maybe$1<Scalars$2['Time']>;
3279
+ value: Array<Scalars$2['Map']>;
3280
+ };
3281
+ type PreviewPageSection = {
3282
+ cid?: Maybe$1<Scalars$2['String']>;
3283
+ component?: Maybe$1<Scalars$2['String']>;
3284
+ createdAt?: Maybe$1<Scalars$2['Time']>;
3285
+ deletedAt?: Maybe$1<Scalars$2['Time']>;
3286
+ display?: Maybe$1<Scalars$2['Boolean']>;
3287
+ id: Scalars$2['ID'];
3288
+ isGlobal?: Maybe$1<Scalars$2['Boolean']>;
3289
+ isMobile?: Maybe$1<Scalars$2['Boolean']>;
3290
+ metafields?: Maybe$1<Array<Maybe$1<PreviewPageSectionMeta>>>;
3291
+ name: Scalars$2['String'];
3292
+ updatedAt?: Maybe$1<Scalars$2['Time']>;
3293
+ };
3294
+ type PreviewPageSectionMeta = {
3295
+ createdAt?: Maybe$1<Scalars$2['Time']>;
3296
+ id: Scalars$2['ID'];
3297
+ key?: Maybe$1<Scalars$2['String']>;
3298
+ updatedAt?: Maybe$1<Scalars$2['Time']>;
3299
+ value?: Maybe$1<Scalars$2['String']>;
3300
+ };
3301
+ type PreviewThemePage = {
3302
+ analytic?: Maybe$1<Analytic$1>;
3303
+ createdAt?: Maybe$1<Scalars$2['Time']>;
3304
+ customCode?: Maybe$1<CustomCode$1>;
3305
+ customFonts?: Maybe$1<Array<Maybe$1<CustomFont$1>>>;
3306
+ dataSEO?: Maybe$1<Array<Maybe$1<DataSeo$1>>>;
3307
+ default: Scalars$2['Boolean'];
3308
+ description?: Maybe$1<Scalars$2['String']>;
3309
+ handle?: Maybe$1<Scalars$2['String']>;
3310
+ id: Scalars$2['ID'];
3311
+ interaction?: Maybe$1<PreviewPageInteraction>;
3312
+ isGlobal?: Maybe$1<Scalars$2['Boolean']>;
3313
+ isMobile?: Maybe$1<Scalars$2['Boolean']>;
3314
+ isSample?: Maybe$1<Scalars$2['Boolean']>;
3315
+ name: Scalars$2['String'];
3316
+ pageSections?: Maybe$1<Array<Maybe$1<PreviewPageSection>>>;
3317
+ sectionPosition?: Maybe$1<Array<Scalars$2['String']>>;
3318
+ splitPercentage?: Maybe$1<Scalars$2['Float']>;
3319
+ status?: Maybe$1<PreviewThemePageStatus$1>;
3320
+ themePageOnlineStoreData?: Maybe$1<Array<Maybe$1<PreviewThemePageOnlineStoreData>>>;
3321
+ themeStyle?: Maybe$1<PreviewThemeStyle>;
3322
+ type: PreviewThemePageType$1;
3323
+ updatedAt?: Maybe$1<Scalars$2['Time']>;
3324
+ };
3325
+ type PreviewThemePageOnlineStoreData = {
3326
+ id: Scalars$2['ID'];
3327
+ onlineStoreObjectBaseIDs?: Maybe$1<Array<Scalars$2['String']>>;
3328
+ type: PreviewThemePageOnlineStoreDataType$1;
3329
+ };
3092
3330
  type PreviewThemePageOnlineStoreDataType$1 = 'ARTICLES' | 'BLOGS' | 'COLLECTIONS' | 'PRODUCTS';
3093
3331
  type PreviewThemePageStatus$1 = 'DRAFT' | 'PUBLISHED';
3094
3332
  type PreviewThemePageType$1 = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'PRODUCT' | 'STATIC';
3333
+ type PreviewThemeStyle = {
3334
+ createdAt?: Maybe$1<Scalars$2['Time']>;
3335
+ data: Scalars$2['String'];
3336
+ default?: Maybe$1<Scalars$2['Boolean']>;
3337
+ id: Scalars$2['ID'];
3338
+ isGlobal: Scalars$2['Boolean'];
3339
+ name: Scalars$2['String'];
3340
+ updatedAt?: Maybe$1<Scalars$2['Time']>;
3341
+ };
3095
3342
  type PriceRulePlatform$1 = 'BIG' | 'SHOPIFY' | 'WOO';
3096
3343
  /**
3097
3344
  * PriceRuleWhereInput is used for filtering PriceRule objects.
@@ -5006,6 +5253,13 @@ type PublishedPageSectionWhereInput$1 = {
5006
5253
  nameNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
5007
5254
  not?: InputMaybe$1<PublishedPageSectionWhereInput$1>;
5008
5255
  or?: InputMaybe$1<Array<PublishedPageSectionWhereInput$1>>;
5256
+ /** published_theme_page_id field predicates */
5257
+ publishedThemePageID?: InputMaybe$1<Scalars$2['ID']>;
5258
+ publishedThemePageIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
5259
+ publishedThemePageIDIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
5260
+ publishedThemePageIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
5261
+ publishedThemePageIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
5262
+ publishedThemePageIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
5009
5263
  /** updated_at field predicates */
5010
5264
  updatedAt?: InputMaybe$1<Scalars$2['Time']>;
5011
5265
  updatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
@@ -5437,9 +5691,6 @@ type PublishedThemePage$1 = {
5437
5691
  themePageOnlineStoreData?: Maybe$1<Array<Maybe$1<PublishedThemePageOnlineStoreData$1>>>;
5438
5692
  type: PublishedThemePageType$1;
5439
5693
  updatedAt?: Maybe$1<Scalars$2['Time']>;
5440
- publishedAt?: Maybe$1<Scalars$2['Time']>;
5441
- isPlatformDefault?: boolean;
5442
- platformOriginalTemplateContent?: string;
5443
5694
  };
5444
5695
  type PublishedThemePageCustomSection$1 = {
5445
5696
  id: Scalars$2['ID'];
@@ -6006,9 +6257,13 @@ type Query$1 = {
6006
6257
  collections?: Maybe$1<CollectionConnection$1>;
6007
6258
  media?: Maybe$1<Media$1>;
6008
6259
  medias?: Maybe$1<MediaConnection$1>;
6260
+ metafieldDefinitions?: Maybe$1<MetafieldDefinitionConnection>;
6261
+ metafields?: Maybe$1<MetafieldConnection>;
6009
6262
  page?: Maybe$1<Page$1>;
6010
6263
  pages?: Maybe$1<PageConnection$1>;
6264
+ /** @deprecated Use previewThemePage instead */
6011
6265
  previewPage?: Maybe$1<PublishedThemePage$1>;
6266
+ previewThemePage?: Maybe$1<PreviewThemePage>;
6012
6267
  product?: Maybe$1<Product$1>;
6013
6268
  productOptionName: Array<Scalars$2['String']>;
6014
6269
  productOptionValueLabel: Array<Scalars$2['String']>;
@@ -6076,6 +6331,22 @@ type QueryMediasArgs$1 = {
6076
6331
  orderBy?: InputMaybe$1<MediaOrder$1>;
6077
6332
  where?: InputMaybe$1<MediaWhereInput$1>;
6078
6333
  };
6334
+ type QueryMetafieldDefinitionsArgs = {
6335
+ after?: InputMaybe$1<Scalars$2['Cursor']>;
6336
+ before?: InputMaybe$1<Scalars$2['Cursor']>;
6337
+ first?: InputMaybe$1<Scalars$2['Int']>;
6338
+ last?: InputMaybe$1<Scalars$2['Int']>;
6339
+ orderBy?: InputMaybe$1<MetafieldDefinitionOrder>;
6340
+ where?: InputMaybe$1<MetafieldDefinitionWhereInput>;
6341
+ };
6342
+ type QueryMetafieldsArgs = {
6343
+ after?: InputMaybe$1<Scalars$2['Cursor']>;
6344
+ before?: InputMaybe$1<Scalars$2['Cursor']>;
6345
+ first?: InputMaybe$1<Scalars$2['Int']>;
6346
+ last?: InputMaybe$1<Scalars$2['Int']>;
6347
+ orderBy?: InputMaybe$1<MetafieldOrder>;
6348
+ where?: InputMaybe$1<MetafieldWhereInput$1>;
6349
+ };
6079
6350
  type QueryPageArgs$1 = {
6080
6351
  handle?: InputMaybe$1<Scalars$2['String']>;
6081
6352
  id?: InputMaybe$1<Scalars$2['ID']>;
@@ -6092,6 +6363,10 @@ type QueryPreviewPageArgs$1 = {
6092
6363
  handleURL?: InputMaybe$1<Scalars$2['String']>;
6093
6364
  pageType: PublishedThemePageType$1;
6094
6365
  };
6366
+ type QueryPreviewThemePageArgs = {
6367
+ handleURL?: InputMaybe$1<Scalars$2['String']>;
6368
+ pageType: PreviewThemePageType$1;
6369
+ };
6095
6370
  type QueryProductArgs$1 = {
6096
6371
  handle?: InputMaybe$1<Scalars$2['String']>;
6097
6372
  id?: InputMaybe$1<Scalars$2['ID']>;
@@ -6483,13 +6758,14 @@ type VariantProductOptionWhereInput$1 = {
6483
6758
  variantIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
6484
6759
  variantIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
6485
6760
  };
6486
- type _Entity = Metafield$1 | Product$1 | PublishedCustomSection$1 | PublishedPageInteraction$1 | PublishedPageSection$1 | PublishedPageSectionMeta$1 | PublishedShopMeta$1 | PublishedThemePage$1 | PublishedThemePageCustomSection$1 | PublishedThemePageMeta$1 | PublishedThemePageOnlineStoreData$1 | PublishedThemeSection$1 | PublishedThemeStyle$1 | Tag$1;
6761
+ type _Entity = Metafield$1 | MetafieldDefinition | Product$1 | PublishedCustomSection$1 | PublishedPageInteraction$1 | PublishedPageSection$1 | PublishedPageSectionMeta$1 | PublishedShopMeta$1 | PublishedThemePage$1 | PublishedThemePageCustomSection$1 | PublishedThemePageMeta$1 | PublishedThemePageOnlineStoreData$1 | PublishedThemeSection$1 | PublishedThemeStyle$1 | Tag$1;
6487
6762
  type _Service = {
6488
6763
  sdl?: Maybe$1<Scalars$2['String']>;
6489
6764
  };
6490
6765
 
6491
6766
  type shop_Entity = Entity;
6492
6767
  type shop_EntityFindMetafieldByIdArgs = EntityFindMetafieldByIdArgs;
6768
+ type shop_EntityFindMetafieldDefinitionByIdArgs = EntityFindMetafieldDefinitionByIdArgs;
6493
6769
  type shop_EntityFindProductByIdArgs = EntityFindProductByIdArgs;
6494
6770
  type shop_EntityFindPublishedCustomSectionByIdArgs = EntityFindPublishedCustomSectionByIdArgs;
6495
6771
  type shop_EntityFindPublishedPageInteractionByIdArgs = EntityFindPublishedPageInteractionByIdArgs;
@@ -6503,6 +6779,26 @@ type shop_EntityFindPublishedThemePageOnlineStoreDataByIdArgs = EntityFindPublis
6503
6779
  type shop_EntityFindPublishedThemeSectionByIdArgs = EntityFindPublishedThemeSectionByIdArgs;
6504
6780
  type shop_EntityFindPublishedThemeStyleByIdArgs = EntityFindPublishedThemeStyleByIdArgs;
6505
6781
  type shop_EntityFindTagByIdArgs = EntityFindTagByIdArgs;
6782
+ type shop_MetafieldConnection = MetafieldConnection;
6783
+ type shop_MetafieldDefinition = MetafieldDefinition;
6784
+ type shop_MetafieldDefinitionConnection = MetafieldDefinitionConnection;
6785
+ type shop_MetafieldDefinitionEdge = MetafieldDefinitionEdge;
6786
+ type shop_MetafieldDefinitionOrder = MetafieldDefinitionOrder;
6787
+ type shop_MetafieldDefinitionOrderField = MetafieldDefinitionOrderField;
6788
+ type shop_MetafieldDefinitionOwnerType = MetafieldDefinitionOwnerType;
6789
+ type shop_MetafieldDefinitionWhereInput = MetafieldDefinitionWhereInput;
6790
+ type shop_MetafieldEdge = MetafieldEdge;
6791
+ type shop_MetafieldOrder = MetafieldOrder;
6792
+ type shop_MetafieldOrderField = MetafieldOrderField;
6793
+ type shop_PreviewPageInteraction = PreviewPageInteraction;
6794
+ type shop_PreviewPageSection = PreviewPageSection;
6795
+ type shop_PreviewPageSectionMeta = PreviewPageSectionMeta;
6796
+ type shop_PreviewThemePage = PreviewThemePage;
6797
+ type shop_PreviewThemePageOnlineStoreData = PreviewThemePageOnlineStoreData;
6798
+ type shop_PreviewThemeStyle = PreviewThemeStyle;
6799
+ type shop_QueryMetafieldDefinitionsArgs = QueryMetafieldDefinitionsArgs;
6800
+ type shop_QueryMetafieldsArgs = QueryMetafieldsArgs;
6801
+ type shop_QueryPreviewThemePageArgs = QueryPreviewThemePageArgs;
6506
6802
  type shop_QueryPublishedShopMetasArgs = QueryPublishedShopMetasArgs;
6507
6803
  type shop_Query_EntitiesArgs = Query_EntitiesArgs;
6508
6804
  type shop__Entity = _Entity;
@@ -6574,6 +6870,7 @@ declare namespace shop {
6574
6870
  EntitledPriceRuleWhereInput$1 as EntitledPriceRuleWhereInput,
6575
6871
  shop_Entity as Entity,
6576
6872
  shop_EntityFindMetafieldByIdArgs as EntityFindMetafieldByIdArgs,
6873
+ shop_EntityFindMetafieldDefinitionByIdArgs as EntityFindMetafieldDefinitionByIdArgs,
6577
6874
  shop_EntityFindProductByIdArgs as EntityFindProductByIdArgs,
6578
6875
  shop_EntityFindPublishedCustomSectionByIdArgs as EntityFindPublishedCustomSectionByIdArgs,
6579
6876
  shop_EntityFindPublishedPageInteractionByIdArgs as EntityFindPublishedPageInteractionByIdArgs,
@@ -6599,7 +6896,18 @@ declare namespace shop {
6599
6896
  MediaOrderField$1 as MediaOrderField,
6600
6897
  MediaWhereInput$1 as MediaWhereInput,
6601
6898
  Metafield$1 as Metafield,
6899
+ shop_MetafieldConnection as MetafieldConnection,
6900
+ shop_MetafieldDefinition as MetafieldDefinition,
6901
+ shop_MetafieldDefinitionConnection as MetafieldDefinitionConnection,
6902
+ shop_MetafieldDefinitionEdge as MetafieldDefinitionEdge,
6903
+ shop_MetafieldDefinitionOrder as MetafieldDefinitionOrder,
6904
+ shop_MetafieldDefinitionOrderField as MetafieldDefinitionOrderField,
6905
+ shop_MetafieldDefinitionOwnerType as MetafieldDefinitionOwnerType,
6906
+ shop_MetafieldDefinitionWhereInput as MetafieldDefinitionWhereInput,
6907
+ shop_MetafieldEdge as MetafieldEdge,
6602
6908
  MetafieldObjectType$1 as MetafieldObjectType,
6909
+ shop_MetafieldOrder as MetafieldOrder,
6910
+ shop_MetafieldOrderField as MetafieldOrderField,
6603
6911
  MetafieldWhereInput$1 as MetafieldWhereInput,
6604
6912
  Mutation$1 as Mutation,
6605
6913
  MutationCartCreateArgs$1 as MutationCartCreateArgs,
@@ -6621,9 +6929,15 @@ declare namespace shop {
6621
6929
  PageWhereInput$1 as PageWhereInput,
6622
6930
  PrerequisitePriceRuleWhereInput$1 as PrerequisitePriceRuleWhereInput,
6623
6931
  PreviewCustomSectionType$1 as PreviewCustomSectionType,
6932
+ shop_PreviewPageInteraction as PreviewPageInteraction,
6933
+ shop_PreviewPageSection as PreviewPageSection,
6934
+ shop_PreviewPageSectionMeta as PreviewPageSectionMeta,
6935
+ shop_PreviewThemePage as PreviewThemePage,
6936
+ shop_PreviewThemePageOnlineStoreData as PreviewThemePageOnlineStoreData,
6624
6937
  PreviewThemePageOnlineStoreDataType$1 as PreviewThemePageOnlineStoreDataType,
6625
6938
  PreviewThemePageStatus$1 as PreviewThemePageStatus,
6626
6939
  PreviewThemePageType$1 as PreviewThemePageType,
6940
+ shop_PreviewThemeStyle as PreviewThemeStyle,
6627
6941
  PriceRulePlatform$1 as PriceRulePlatform,
6628
6942
  PriceRuleWhereInput$1 as PriceRuleWhereInput,
6629
6943
  Product$1 as Product,
@@ -6707,9 +7021,12 @@ declare namespace shop {
6707
7021
  QueryCollectionsArgs$1 as QueryCollectionsArgs,
6708
7022
  QueryMediaArgs$1 as QueryMediaArgs,
6709
7023
  QueryMediasArgs$1 as QueryMediasArgs,
7024
+ shop_QueryMetafieldDefinitionsArgs as QueryMetafieldDefinitionsArgs,
7025
+ shop_QueryMetafieldsArgs as QueryMetafieldsArgs,
6710
7026
  QueryPageArgs$1 as QueryPageArgs,
6711
7027
  QueryPagesArgs$1 as QueryPagesArgs,
6712
7028
  QueryPreviewPageArgs$1 as QueryPreviewPageArgs,
7029
+ shop_QueryPreviewThemePageArgs as QueryPreviewThemePageArgs,
6713
7030
  QueryProductArgs$1 as QueryProductArgs,
6714
7031
  QueryProductOptionNameArgs$1 as QueryProductOptionNameArgs,
6715
7032
  QueryProductOptionValueLabelArgs$1 as QueryProductOptionValueLabelArgs,
@@ -31416,6 +31733,8 @@ type ProductListProviderProps = ProductListContextProps & {
31416
31733
  declare const ProductListProvider: React.FC<ProductListProviderProps>;
31417
31734
  declare const useProductListStore: <U>(selector: (state: ExtractState<StoreApi<ProductListContextProps>>) => U, equalityFn?: ((a: U, b: U) => boolean) | undefined) => U;
31418
31735
 
31736
+ type MediaSelectFragment = Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>;
31737
+
31419
31738
  type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
31420
31739
  collections?: Maybe$1<{
31421
31740
  edges: Array<{
@@ -31443,8 +31762,6 @@ type ProductSelectFragment = Pick<Product$1, 'tags' | 'id' | 'title' | 'createdA
31443
31762
  featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
31444
31763
  };
31445
31764
 
31446
- type MediaSelectFragment = Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>;
31447
-
31448
31765
  type AttributeProp = {
31449
31766
  key: string;
31450
31767
  value?: string;
@@ -31473,6 +31790,12 @@ type ProductContextProps = {
31473
31790
  updatePrice?: boolean;
31474
31791
  hasPreSelected?: boolean;
31475
31792
  setHasPreSelected: (value: boolean) => void;
31793
+ requireUpload?: boolean;
31794
+ setRequireUpload: (value: boolean) => void;
31795
+ shouldRequireUploadMessage?: boolean;
31796
+ setShouldRequireUploadMessage: (value: boolean) => void;
31797
+ useProductCompareAtPrice?: boolean;
31798
+ setUseProductCompareAtPrice: (value?: boolean) => void;
31476
31799
  };
31477
31800
  type ProductProviderProps = Pick<ProductContextProps, 'product' | 'quantity' | 'selectedOptions' | 'isSyncProduct'> & {
31478
31801
  initialVariantId?: string;
@@ -31867,22 +32190,20 @@ type StorePropertyQueryResponse = {
31867
32190
  };
31868
32191
  declare const StorePropertyDocument = "\n query storeProperty {\n storeProperty {\n favicon\n swatchesConfig\n primaryDomain\n }\n}\n ";
31869
32192
 
31870
- type PreviewPageQueryVariables = Exact$1<{
32193
+ type PreviewThemePageQueryVariables = Exact$1<{
32194
+ pageType: PreviewThemePageType$1;
31871
32195
  handleURL?: InputMaybe$1<Scalars$2['String']>;
31872
- pageType: PublishedThemePageType$1;
31873
32196
  }>;
31874
- type PreviewPageQueryResponse = {
31875
- previewPage?: Maybe$1<Pick<PublishedThemePage$1, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
31876
- pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
31877
- themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
31878
- themePageDataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
31879
- pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
31880
- themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
31881
- themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
31882
- interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
32197
+ type PreviewThemePageQueryResponse = {
32198
+ previewThemePage?: Maybe$1<Pick<PreviewThemePage, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
32199
+ pageSections?: Maybe$1<Array<Maybe$1<Pick<PreviewPageSection, 'cid' | 'component' | 'id'>>>>;
32200
+ dataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
32201
+ themeStyle?: Maybe$1<Pick<PreviewThemeStyle, 'id' | 'data' | 'name'>>;
32202
+ analytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
32203
+ customCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
31883
32204
  }>;
31884
32205
  };
31885
- declare const PreviewPageDocument: string;
32206
+ declare const PreviewThemePageDocument: string;
31886
32207
 
31887
32208
  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'> & {
31888
32209
  selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
@@ -41474,6 +41795,68 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
41474
41795
  vectorEffect?: csstype.Property.VectorEffect | undefined;
41475
41796
  };
41476
41797
 
41798
+ type ArticlesQueryVariables = Exact$1<{
41799
+ after?: InputMaybe$1<Scalars$2['Cursor']>;
41800
+ before?: InputMaybe$1<Scalars$2['Cursor']>;
41801
+ first?: InputMaybe$1<Scalars$2['Int']>;
41802
+ last?: InputMaybe$1<Scalars$2['Int']>;
41803
+ orderBy?: InputMaybe$1<ArticleOrder$1>;
41804
+ where?: InputMaybe$1<ArticleWhereInput$1>;
41805
+ }>;
41806
+ type ArticlesQueryResponse = {
41807
+ articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
41808
+ edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
41809
+ node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
41810
+ tags: Array<never>;
41811
+ content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
41812
+ blogs?: Maybe$1<{
41813
+ edges: Array<{
41814
+ node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
41815
+ }>;
41816
+ }>;
41817
+ media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
41818
+ })>;
41819
+ })>;
41820
+ pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
41821
+ })>;
41822
+ };
41823
+
41824
+ type BlogsQueryVariables = Exact$1<{
41825
+ after?: InputMaybe$1<Scalars$2['Cursor']>;
41826
+ before?: InputMaybe$1<Scalars$2['Cursor']>;
41827
+ first?: InputMaybe$1<Scalars$2['Int']>;
41828
+ last?: InputMaybe$1<Scalars$2['Int']>;
41829
+ orderBy?: InputMaybe$1<BlogOrder$1>;
41830
+ where?: InputMaybe$1<BlogWhereInput$1>;
41831
+ articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
41832
+ }>;
41833
+ type BlogsQueryResponse = {
41834
+ blogs?: Maybe$1<(Pick<BlogConnection$1, 'totalCount'> & {
41835
+ edges: Array<(Pick<BlogEdge$1, 'cursor'> & {
41836
+ node?: Maybe$1<(Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
41837
+ articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
41838
+ edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
41839
+ node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
41840
+ tags: Array<never>;
41841
+ content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
41842
+ blogs?: Maybe$1<{
41843
+ edges: Array<{
41844
+ node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
41845
+ }>;
41846
+ }>;
41847
+ media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
41848
+ })>;
41849
+ })>;
41850
+ })>;
41851
+ })>;
41852
+ })>;
41853
+ pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
41854
+ })>;
41855
+ };
41856
+
41857
+ declare const useArticlesQuery: (variables: ArticlesQueryVariables | null, options?: SWRConfiguration<ArticlesQueryResponse>) => swr__internal.SWRResponse<ArticlesQueryResponse, any, Partial<swr__internal.PublicConfiguration<ArticlesQueryResponse, any, (arg: ["query/articles", any]) => swr__internal.FetcherResponse<ArticlesQueryResponse>>> | undefined>;
41858
+ declare const useBlogsQuery: (variables: BlogsQueryVariables | null, options?: SWRConfiguration<BlogsQueryResponse>) => swr__internal.SWRResponse<BlogsQueryResponse, any, Partial<swr__internal.PublicConfiguration<BlogsQueryResponse, any, (arg: ["query/blogs", any]) => swr__internal.FetcherResponse<BlogsQueryResponse>>> | undefined>;
41859
+
41477
41860
  type Func$6 = ReturnType<typeof addToCartOperation>;
41478
41861
  type Response$6 = Awaited<ReturnType<Func$6>>;
41479
41862
  type Args$5 = Parameters<Func$6>[0];
@@ -41561,10 +41944,6 @@ declare const useProductsQueryAll: (variable?: VariableRelatedStyles | undefined
41561
41944
 
41562
41945
  declare const useCurrentDevice: () => NameDevices$1;
41563
41946
 
41564
- declare const shopifyPriceRounding: (amount: number | string, precision?: number) => string;
41565
- declare const formatMoney: (cents: string, format: any) => string;
41566
- declare const useFormatMoney: (amount: number, withCurrency: boolean) => string;
41567
-
41568
41947
  declare const useLazyVideo: () => void;
41569
41948
 
41570
41949
  declare const useCartId: () => {
@@ -41583,6 +41962,12 @@ declare function useCartUI(): {
41583
41962
 
41584
41963
  declare const useCollection: () => CollectionSelectFragment | undefined;
41585
41964
 
41965
+ declare const shopifyPriceRounding: (amount: number | string, precision?: number) => string;
41966
+ declare const formatMoney: (cents: string, format: any) => string;
41967
+ declare const useFormatMoney: (amount: number, withCurrency: boolean) => string;
41968
+
41969
+ declare const useInitialSwatchesOptions: (options?: ProductOption$1[]) => never[] | undefined;
41970
+
41586
41971
  declare const useIsomorphicLayoutEffect: typeof useLayoutEffect;
41587
41972
 
41588
41973
  type LoadScriptParams = Parameters<typeof loadScript>;
@@ -41639,68 +42024,6 @@ declare const useMoney: (amount: number) => UseMoneyValue;
41639
42024
 
41640
42025
  declare const usePrevious: <T>(value: T) => T | undefined;
41641
42026
 
41642
- type ArticlesQueryVariables = Exact$1<{
41643
- after?: InputMaybe$1<Scalars$2['Cursor']>;
41644
- before?: InputMaybe$1<Scalars$2['Cursor']>;
41645
- first?: InputMaybe$1<Scalars$2['Int']>;
41646
- last?: InputMaybe$1<Scalars$2['Int']>;
41647
- orderBy?: InputMaybe$1<ArticleOrder$1>;
41648
- where?: InputMaybe$1<ArticleWhereInput$1>;
41649
- }>;
41650
- type ArticlesQueryResponse = {
41651
- articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
41652
- edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
41653
- node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
41654
- tags: Array<never>;
41655
- content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
41656
- blogs?: Maybe$1<{
41657
- edges: Array<{
41658
- node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
41659
- }>;
41660
- }>;
41661
- media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
41662
- })>;
41663
- })>;
41664
- pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
41665
- })>;
41666
- };
41667
-
41668
- type BlogsQueryVariables = Exact$1<{
41669
- after?: InputMaybe$1<Scalars$2['Cursor']>;
41670
- before?: InputMaybe$1<Scalars$2['Cursor']>;
41671
- first?: InputMaybe$1<Scalars$2['Int']>;
41672
- last?: InputMaybe$1<Scalars$2['Int']>;
41673
- orderBy?: InputMaybe$1<BlogOrder$1>;
41674
- where?: InputMaybe$1<BlogWhereInput$1>;
41675
- articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
41676
- }>;
41677
- type BlogsQueryResponse = {
41678
- blogs?: Maybe$1<(Pick<BlogConnection$1, 'totalCount'> & {
41679
- edges: Array<(Pick<BlogEdge$1, 'cursor'> & {
41680
- node?: Maybe$1<(Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
41681
- articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
41682
- edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
41683
- node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
41684
- tags: Array<never>;
41685
- content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
41686
- blogs?: Maybe$1<{
41687
- edges: Array<{
41688
- node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
41689
- }>;
41690
- }>;
41691
- media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
41692
- })>;
41693
- })>;
41694
- })>;
41695
- })>;
41696
- })>;
41697
- pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
41698
- })>;
41699
- };
41700
-
41701
- declare const useArticlesQuery: (variables: ArticlesQueryVariables | null, options?: SWRConfiguration<ArticlesQueryResponse>) => swr__internal.SWRResponse<ArticlesQueryResponse, any, Partial<swr__internal.PublicConfiguration<ArticlesQueryResponse, any, (arg: ["query/articles", any]) => swr__internal.FetcherResponse<ArticlesQueryResponse>>> | undefined>;
41702
- declare const useBlogsQuery: (variables: BlogsQueryVariables | null, options?: SWRConfiguration<BlogsQueryResponse>) => swr__internal.SWRResponse<BlogsQueryResponse, any, Partial<swr__internal.PublicConfiguration<BlogsQueryResponse, any, (arg: ["query/blogs", any]) => swr__internal.FetcherResponse<BlogsQueryResponse>>> | undefined>;
41703
-
41704
42027
  declare const useUniqProductID: () => string;
41705
42028
  declare const useProduct: () => ProductSelectFragment | undefined;
41706
42029
  declare const useFeaturedImageGlobal: () => MediaSelectFragment | undefined;
@@ -41710,6 +42033,10 @@ declare const useProductProperties: () => {
41710
42033
  required?: boolean | undefined;
41711
42034
  }[] | undefined;
41712
42035
  declare const useIsSyncProduct: () => boolean | undefined;
42036
+ declare const useProductBundleDiscount: () => {
42037
+ useProductCompareAtPrice: boolean | undefined;
42038
+ seUseProductCompareAtPrice: (value?: boolean | undefined) => void;
42039
+ };
41713
42040
  declare const useQuantity: () => {
41714
42041
  quantity: number | undefined;
41715
42042
  hasUpdatePrice: boolean | undefined;
@@ -41774,8 +42101,6 @@ declare const useSuspenseFetch: <T>(key: string | any[], promise: () => Promise<
41774
42101
 
41775
42102
  declare const useSwatchesOptions: (options?: ProductOption$1[]) => ProductOption$1[];
41776
42103
 
41777
- declare const useInitialSwatchesOptions: (options?: ProductOption$1[]) => never[] | undefined;
41778
-
41779
42104
  type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
41780
42105
  pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
41781
42106
  themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
@@ -41833,4 +42158,4 @@ declare const useInteraction: () => {
41833
42158
  interactionListenerLoaded: (callback: () => void) => void;
41834
42159
  };
41835
42160
 
41836
- export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeBorderResponsive, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStyleShadow, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, 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, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
42161
+ export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeBorderResponsive, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStyleShadow, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, shopifyPriceRounding, splitStyle, styles, 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, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };