@gem-sdk/core 1.44.0-dev.62 → 1.44.0-dev.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/graphql/mutations/page-view-up.generated.js +2 -2
- package/dist/cjs/helpers/size.js +4 -0
- package/dist/cjs/index.js +1 -0
- package/dist/esm/graphql/mutations/page-view-up.generated.js +2 -2
- package/dist/esm/helpers/size.js +4 -1
- package/dist/esm/index.js +1 -1
- package/dist/types/index.d.ts +1247 -224
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -64,7 +64,7 @@ type Article$2 = {
|
|
|
64
64
|
author?: Maybe$1<Scalars$2['String']>;
|
|
65
65
|
baseID?: Maybe$1<Scalars$2['String']>;
|
|
66
66
|
blogs?: Maybe$1<BlogConnection$1>;
|
|
67
|
-
content?: Maybe$1<ArticleContent>;
|
|
67
|
+
content?: Maybe$1<ArticleContent$1>;
|
|
68
68
|
description?: Maybe$1<Scalars$2['String']>;
|
|
69
69
|
descriptionMeta?: Maybe$1<Scalars$2['String']>;
|
|
70
70
|
handle?: Maybe$1<Scalars$2['String']>;
|
|
@@ -136,7 +136,7 @@ type ArticleConnection$1 = {
|
|
|
136
136
|
pageInfo?: Maybe$1<PageInfo$1>;
|
|
137
137
|
totalCount?: Maybe$1<Scalars$2['Int']>;
|
|
138
138
|
};
|
|
139
|
-
type ArticleContent = {
|
|
139
|
+
type ArticleContent$1 = {
|
|
140
140
|
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
141
141
|
excerptHtml?: Maybe$1<Scalars$2['String']>;
|
|
142
142
|
id: Scalars$2['ID'];
|
|
@@ -146,8 +146,8 @@ type ArticleContent = {
|
|
|
146
146
|
* ArticleContentWhereInput is used for filtering ArticleContent objects.
|
|
147
147
|
* Input was generated by ent.
|
|
148
148
|
*/
|
|
149
|
-
type ArticleContentWhereInput = {
|
|
150
|
-
and?: InputMaybe$1<Array<ArticleContentWhereInput>>;
|
|
149
|
+
type ArticleContentWhereInput$1 = {
|
|
150
|
+
and?: InputMaybe$1<Array<ArticleContentWhereInput$1>>;
|
|
151
151
|
/** article_id field predicates */
|
|
152
152
|
articleID?: InputMaybe$1<Scalars$2['ID']>;
|
|
153
153
|
articleIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
@@ -201,8 +201,8 @@ type ArticleContentWhereInput = {
|
|
|
201
201
|
idLTE?: InputMaybe$1<Scalars$2['ID']>;
|
|
202
202
|
idNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
203
203
|
idNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
204
|
-
not?: InputMaybe$1<ArticleContentWhereInput>;
|
|
205
|
-
or?: InputMaybe$1<Array<ArticleContentWhereInput>>;
|
|
204
|
+
not?: InputMaybe$1<ArticleContentWhereInput$1>;
|
|
205
|
+
or?: InputMaybe$1<Array<ArticleContentWhereInput$1>>;
|
|
206
206
|
/** updated_at field predicates */
|
|
207
207
|
updatedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
208
208
|
updatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
@@ -351,7 +351,7 @@ type ArticleWhereInput$1 = {
|
|
|
351
351
|
hasArticleTagsWith?: InputMaybe$1<Array<ArticleTagWhereInput$1>>;
|
|
352
352
|
/** content edge predicates */
|
|
353
353
|
hasContent?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
354
|
-
hasContentWith?: InputMaybe$1<Array<ArticleContentWhereInput>>;
|
|
354
|
+
hasContentWith?: InputMaybe$1<Array<ArticleContentWhereInput$1>>;
|
|
355
355
|
/** media edge predicates */
|
|
356
356
|
hasMedia?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
357
357
|
hasMediaWith?: InputMaybe$1<Array<MediaWhereInput$1>>;
|
|
@@ -2320,9 +2320,10 @@ type EntitledPriceRuleWhereInput$1 = {
|
|
|
2320
2320
|
variantIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
2321
2321
|
};
|
|
2322
2322
|
type Entity = {
|
|
2323
|
+
findMetafieldByID: Metafield$1;
|
|
2323
2324
|
findProductByID: Product$1;
|
|
2324
2325
|
findPublishedCustomSectionByID: PublishedCustomSection$1;
|
|
2325
|
-
|
|
2326
|
+
findPublishedPageInteractionByID: PublishedPageInteraction$1;
|
|
2326
2327
|
findPublishedPageSectionByID: PublishedPageSection$1;
|
|
2327
2328
|
findPublishedPageSectionMetaByID: PublishedPageSectionMeta$1;
|
|
2328
2329
|
findPublishedShopMetaByID: PublishedShopMeta$1;
|
|
@@ -2333,13 +2334,16 @@ type Entity = {
|
|
|
2333
2334
|
findPublishedThemeSectionByID: PublishedThemeSection$1;
|
|
2334
2335
|
findPublishedThemeStyleByID: PublishedThemeStyle$1;
|
|
2335
2336
|
};
|
|
2337
|
+
type EntityFindMetafieldByIdArgs = {
|
|
2338
|
+
id: Scalars$2['ID'];
|
|
2339
|
+
};
|
|
2336
2340
|
type EntityFindProductByIdArgs = {
|
|
2337
2341
|
id: Scalars$2['ID'];
|
|
2338
2342
|
};
|
|
2339
2343
|
type EntityFindPublishedCustomSectionByIdArgs = {
|
|
2340
2344
|
id: Scalars$2['ID'];
|
|
2341
2345
|
};
|
|
2342
|
-
type
|
|
2346
|
+
type EntityFindPublishedPageInteractionByIdArgs = {
|
|
2343
2347
|
id: Scalars$2['ID'];
|
|
2344
2348
|
};
|
|
2345
2349
|
type EntityFindPublishedPageSectionByIdArgs = {
|
|
@@ -2643,11 +2647,11 @@ type Metafield$1 = {
|
|
|
2643
2647
|
key: Scalars$2['String'];
|
|
2644
2648
|
namespace: Scalars$2['String'];
|
|
2645
2649
|
objectID: Scalars$2['ID'];
|
|
2646
|
-
objectType: MetafieldObjectType;
|
|
2650
|
+
objectType: MetafieldObjectType$1;
|
|
2647
2651
|
shopID: Scalars$2['ID'];
|
|
2648
2652
|
value: Scalars$2['String'];
|
|
2649
2653
|
};
|
|
2650
|
-
type MetafieldObjectType = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'DISCOUNT' | 'PAGE' | 'PRODUCT' | 'PRODUCT_VARIANT' | 'SHOP';
|
|
2654
|
+
type MetafieldObjectType$1 = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'DISCOUNT' | 'PAGE' | 'PRODUCT' | 'PRODUCT_VARIANT' | 'SHOP';
|
|
2651
2655
|
/**
|
|
2652
2656
|
* MetafieldWhereInput is used for filtering Metafield objects.
|
|
2653
2657
|
* Input was generated by ent.
|
|
@@ -2752,10 +2756,10 @@ type MetafieldWhereInput$1 = {
|
|
|
2752
2756
|
objectIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
2753
2757
|
objectIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
2754
2758
|
/** object_type field predicates */
|
|
2755
|
-
objectType?: InputMaybe$1<MetafieldObjectType>;
|
|
2756
|
-
objectTypeIn?: InputMaybe$1<Array<MetafieldObjectType>>;
|
|
2757
|
-
objectTypeNEQ?: InputMaybe$1<MetafieldObjectType>;
|
|
2758
|
-
objectTypeNotIn?: InputMaybe$1<Array<MetafieldObjectType>>;
|
|
2759
|
+
objectType?: InputMaybe$1<MetafieldObjectType$1>;
|
|
2760
|
+
objectTypeIn?: InputMaybe$1<Array<MetafieldObjectType$1>>;
|
|
2761
|
+
objectTypeNEQ?: InputMaybe$1<MetafieldObjectType$1>;
|
|
2762
|
+
objectTypeNotIn?: InputMaybe$1<Array<MetafieldObjectType$1>>;
|
|
2759
2763
|
or?: InputMaybe$1<Array<MetafieldWhereInput$1>>;
|
|
2760
2764
|
/** updated_at field predicates */
|
|
2761
2765
|
updatedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
@@ -4742,30 +4746,68 @@ type PublishedCustomSectionWhereInput$1 = {
|
|
|
4742
4746
|
updatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
4743
4747
|
updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
4744
4748
|
};
|
|
4745
|
-
type
|
|
4746
|
-
component?: Maybe$1<Scalars$2['String']>;
|
|
4749
|
+
type PublishedPageInteraction$1 = {
|
|
4747
4750
|
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
4748
4751
|
deletedAt?: Maybe$1<Scalars$2['Time']>;
|
|
4749
|
-
display?: Maybe$1<Scalars$2['Boolean']>;
|
|
4750
4752
|
id: Scalars$2['ID'];
|
|
4751
|
-
isMobile?: Maybe$1<Scalars$2['Boolean']>;
|
|
4752
|
-
name?: Maybe$1<Scalars$2['String']>;
|
|
4753
4753
|
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
4754
|
+
value: Array<Scalars$2['Map']>;
|
|
4754
4755
|
};
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4756
|
+
/**
|
|
4757
|
+
* PublishedPageInteractionWhereInput is used for filtering PublishedPageInteraction objects.
|
|
4758
|
+
* Input was generated by ent.
|
|
4759
|
+
*/
|
|
4760
|
+
type PublishedPageInteractionWhereInput$1 = {
|
|
4761
|
+
and?: InputMaybe$1<Array<PublishedPageInteractionWhereInput$1>>;
|
|
4762
|
+
/** created_at field predicates */
|
|
4763
|
+
createdAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
4764
|
+
createdAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
4765
|
+
createdAtGTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
4766
|
+
createdAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
4767
|
+
createdAtLT?: InputMaybe$1<Scalars$2['Time']>;
|
|
4768
|
+
createdAtLTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
4769
|
+
createdAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
4770
|
+
createdAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
4771
|
+
/** deleted_at field predicates */
|
|
4772
|
+
deletedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
4773
|
+
deletedAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
4774
|
+
deletedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
4775
|
+
deletedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
4776
|
+
deletedAtIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4777
|
+
deletedAtLT?: InputMaybe$1<Scalars$2['Time']>;
|
|
4778
|
+
deletedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
4779
|
+
deletedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
4780
|
+
deletedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
4781
|
+
deletedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4782
|
+
/** page edge predicates */
|
|
4783
|
+
hasPage?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4784
|
+
hasPageWith?: InputMaybe$1<Array<PublishedThemePageWhereInput$1>>;
|
|
4785
|
+
/** id field predicates */
|
|
4786
|
+
id?: InputMaybe$1<Scalars$2['ID']>;
|
|
4787
|
+
idGT?: InputMaybe$1<Scalars$2['ID']>;
|
|
4788
|
+
idGTE?: InputMaybe$1<Scalars$2['ID']>;
|
|
4789
|
+
idIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
4790
|
+
idLT?: InputMaybe$1<Scalars$2['ID']>;
|
|
4791
|
+
idLTE?: InputMaybe$1<Scalars$2['ID']>;
|
|
4792
|
+
idNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
4793
|
+
idNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
4794
|
+
not?: InputMaybe$1<PublishedPageInteractionWhereInput$1>;
|
|
4795
|
+
or?: InputMaybe$1<Array<PublishedPageInteractionWhereInput$1>>;
|
|
4796
|
+
/** published_page_id field predicates */
|
|
4797
|
+
publishedPageID?: InputMaybe$1<Scalars$2['ID']>;
|
|
4798
|
+
publishedPageIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
4799
|
+
publishedPageIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
4800
|
+
publishedPageIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
4801
|
+
/** updated_at field predicates */
|
|
4802
|
+
updatedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
4803
|
+
updatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
4804
|
+
updatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
4805
|
+
updatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
4806
|
+
updatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
|
|
4807
|
+
updatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
4808
|
+
updatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
4809
|
+
updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
4767
4810
|
};
|
|
4768
|
-
type PublishedGlobalSectionOrderField$1 = 'CREATED_AT' | 'NAME' | 'POSITION' | 'UPDATED_AT';
|
|
4769
4811
|
type PublishedPageSection$1 = {
|
|
4770
4812
|
cid?: Maybe$1<Scalars$2['String']>;
|
|
4771
4813
|
component?: Maybe$1<Scalars$2['String']>;
|
|
@@ -5369,6 +5411,7 @@ type PublishedThemePage$1 = {
|
|
|
5369
5411
|
description?: Maybe$1<Scalars$2['String']>;
|
|
5370
5412
|
handle?: Maybe$1<Scalars$2['String']>;
|
|
5371
5413
|
id: Scalars$2['ID'];
|
|
5414
|
+
interaction?: Maybe$1<PublishedPageInteraction$1>;
|
|
5372
5415
|
isGlobal?: Maybe$1<Scalars$2['Boolean']>;
|
|
5373
5416
|
isMobile?: Maybe$1<Scalars$2['Boolean']>;
|
|
5374
5417
|
isSample?: Maybe$1<Scalars$2['Boolean']>;
|
|
@@ -5386,7 +5429,6 @@ type PublishedThemePage$1 = {
|
|
|
5386
5429
|
themePageOnlineStoreData?: Maybe$1<Array<Maybe$1<PublishedThemePageOnlineStoreData$1>>>;
|
|
5387
5430
|
type: PublishedThemePageType$1;
|
|
5388
5431
|
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
5389
|
-
publishedAt?: Maybe$1<Scalars$2['Time']>;
|
|
5390
5432
|
};
|
|
5391
5433
|
type PublishedThemePageCustomSection$1 = {
|
|
5392
5434
|
id: Scalars$2['ID'];
|
|
@@ -5628,6 +5670,9 @@ type PublishedThemePageWhereInput$1 = {
|
|
|
5628
5670
|
handleNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
5629
5671
|
handleNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
5630
5672
|
handleNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5673
|
+
/** interaction edge predicates */
|
|
5674
|
+
hasInteraction?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5675
|
+
hasInteractionWith?: InputMaybe$1<Array<PublishedPageInteractionWhereInput$1>>;
|
|
5631
5676
|
/** offer edge predicates */
|
|
5632
5677
|
hasOffer?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5633
5678
|
hasOfferWith?: InputMaybe$1<Array<PublishedSaleFunnelOfferWhereInput$1>>;
|
|
@@ -5664,6 +5709,9 @@ type PublishedThemePageWhereInput$1 = {
|
|
|
5664
5709
|
/** is_mobile field predicates */
|
|
5665
5710
|
isMobile?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5666
5711
|
isMobileNEQ?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5712
|
+
/** is_platform_default field predicates */
|
|
5713
|
+
isPlatformDefault?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5714
|
+
isPlatformDefaultNEQ?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5667
5715
|
/** is_sample field predicates */
|
|
5668
5716
|
isSample?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5669
5717
|
isSampleNEQ?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
@@ -5943,10 +5991,6 @@ type Query$1 = {
|
|
|
5943
5991
|
productOptionValues?: Maybe$1<ProductOptionValueConnection$1>;
|
|
5944
5992
|
productOptions?: Maybe$1<ProductOptionConnection$1>;
|
|
5945
5993
|
products?: Maybe$1<ProductConnection$1>;
|
|
5946
|
-
/** @deprecated Use `publishedThemeSection` instead. */
|
|
5947
|
-
publishedGlobalSection?: Maybe$1<PublishedGlobalSection$1>;
|
|
5948
|
-
/** @deprecated Use `publishedThemeSections` instead. */
|
|
5949
|
-
publishedGlobalSections?: Maybe$1<PublishedGlobalSectionConnection$1>;
|
|
5950
5994
|
publishedThemePages?: Maybe$1<Array<Maybe$1<PublishedThemePage$1>>>;
|
|
5951
5995
|
publishedThemeSection?: Maybe$1<PublishedThemeSection$1>;
|
|
5952
5996
|
publishedThemeSections?: Maybe$1<PublishedThemeSectionConnection$1>;
|
|
@@ -6060,17 +6104,6 @@ type QueryProductsArgs$1 = {
|
|
|
6060
6104
|
orderBy?: InputMaybe$1<ProductOrder$1>;
|
|
6061
6105
|
where?: InputMaybe$1<ProductWhereInput$1>;
|
|
6062
6106
|
};
|
|
6063
|
-
type QueryPublishedGlobalSectionArgs$1 = {
|
|
6064
|
-
id: Scalars$2['ID'];
|
|
6065
|
-
};
|
|
6066
|
-
type QueryPublishedGlobalSectionsArgs$1 = {
|
|
6067
|
-
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6068
|
-
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6069
|
-
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
6070
|
-
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
6071
|
-
orderBy?: InputMaybe$1<PublishedThemeSectionOrder$1>;
|
|
6072
|
-
where?: InputMaybe$1<PublishedThemeSectionWhereInput$1>;
|
|
6073
|
-
};
|
|
6074
6107
|
type QueryPublishedThemePagesArgs$1 = {
|
|
6075
6108
|
slug?: InputMaybe$1<Scalars$2['String']>;
|
|
6076
6109
|
slugType: PublishedThemePageType$1;
|
|
@@ -6416,17 +6449,16 @@ type VariantProductOptionWhereInput$1 = {
|
|
|
6416
6449
|
variantIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
6417
6450
|
variantIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
6418
6451
|
};
|
|
6419
|
-
type _Entity = Product$1 | PublishedCustomSection$1 |
|
|
6452
|
+
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;
|
|
6420
6453
|
type _Service = {
|
|
6421
6454
|
sdl?: Maybe$1<Scalars$2['String']>;
|
|
6422
6455
|
};
|
|
6423
6456
|
|
|
6424
|
-
type shop_ArticleContent = ArticleContent;
|
|
6425
|
-
type shop_ArticleContentWhereInput = ArticleContentWhereInput;
|
|
6426
6457
|
type shop_Entity = Entity;
|
|
6458
|
+
type shop_EntityFindMetafieldByIdArgs = EntityFindMetafieldByIdArgs;
|
|
6427
6459
|
type shop_EntityFindProductByIdArgs = EntityFindProductByIdArgs;
|
|
6428
6460
|
type shop_EntityFindPublishedCustomSectionByIdArgs = EntityFindPublishedCustomSectionByIdArgs;
|
|
6429
|
-
type
|
|
6461
|
+
type shop_EntityFindPublishedPageInteractionByIdArgs = EntityFindPublishedPageInteractionByIdArgs;
|
|
6430
6462
|
type shop_EntityFindPublishedPageSectionByIdArgs = EntityFindPublishedPageSectionByIdArgs;
|
|
6431
6463
|
type shop_EntityFindPublishedPageSectionMetaByIdArgs = EntityFindPublishedPageSectionMetaByIdArgs;
|
|
6432
6464
|
type shop_EntityFindPublishedShopMetaByIdArgs = EntityFindPublishedShopMetaByIdArgs;
|
|
@@ -6436,7 +6468,6 @@ type shop_EntityFindPublishedThemePageMetaByIdArgs = EntityFindPublishedThemePag
|
|
|
6436
6468
|
type shop_EntityFindPublishedThemePageOnlineStoreDataByIdArgs = EntityFindPublishedThemePageOnlineStoreDataByIdArgs;
|
|
6437
6469
|
type shop_EntityFindPublishedThemeSectionByIdArgs = EntityFindPublishedThemeSectionByIdArgs;
|
|
6438
6470
|
type shop_EntityFindPublishedThemeStyleByIdArgs = EntityFindPublishedThemeStyleByIdArgs;
|
|
6439
|
-
type shop_MetafieldObjectType = MetafieldObjectType;
|
|
6440
6471
|
type shop_Query_EntitiesArgs = Query_EntitiesArgs;
|
|
6441
6472
|
type shop__Entity = _Entity;
|
|
6442
6473
|
type shop__Service = _Service;
|
|
@@ -6447,8 +6478,8 @@ declare namespace shop {
|
|
|
6447
6478
|
ArticleBlogWhereInput$1 as ArticleBlogWhereInput,
|
|
6448
6479
|
ArticleBlogsArgs$1 as ArticleBlogsArgs,
|
|
6449
6480
|
ArticleConnection$1 as ArticleConnection,
|
|
6450
|
-
|
|
6451
|
-
|
|
6481
|
+
ArticleContent$1 as ArticleContent,
|
|
6482
|
+
ArticleContentWhereInput$1 as ArticleContentWhereInput,
|
|
6452
6483
|
ArticleEdge$1 as ArticleEdge,
|
|
6453
6484
|
ArticleMetafieldArgs$1 as ArticleMetafieldArgs,
|
|
6454
6485
|
ArticleOrder$1 as ArticleOrder,
|
|
@@ -6506,9 +6537,10 @@ declare namespace shop {
|
|
|
6506
6537
|
DiscountWhereInput$1 as DiscountWhereInput,
|
|
6507
6538
|
EntitledPriceRuleWhereInput$1 as EntitledPriceRuleWhereInput,
|
|
6508
6539
|
shop_Entity as Entity,
|
|
6540
|
+
shop_EntityFindMetafieldByIdArgs as EntityFindMetafieldByIdArgs,
|
|
6509
6541
|
shop_EntityFindProductByIdArgs as EntityFindProductByIdArgs,
|
|
6510
6542
|
shop_EntityFindPublishedCustomSectionByIdArgs as EntityFindPublishedCustomSectionByIdArgs,
|
|
6511
|
-
|
|
6543
|
+
shop_EntityFindPublishedPageInteractionByIdArgs as EntityFindPublishedPageInteractionByIdArgs,
|
|
6512
6544
|
shop_EntityFindPublishedPageSectionByIdArgs as EntityFindPublishedPageSectionByIdArgs,
|
|
6513
6545
|
shop_EntityFindPublishedPageSectionMetaByIdArgs as EntityFindPublishedPageSectionMetaByIdArgs,
|
|
6514
6546
|
shop_EntityFindPublishedShopMetaByIdArgs as EntityFindPublishedShopMetaByIdArgs,
|
|
@@ -6530,7 +6562,7 @@ declare namespace shop {
|
|
|
6530
6562
|
MediaOrderField$1 as MediaOrderField,
|
|
6531
6563
|
MediaWhereInput$1 as MediaWhereInput,
|
|
6532
6564
|
Metafield$1 as Metafield,
|
|
6533
|
-
|
|
6565
|
+
MetafieldObjectType$1 as MetafieldObjectType,
|
|
6534
6566
|
MetafieldWhereInput$1 as MetafieldWhereInput,
|
|
6535
6567
|
Mutation$1 as Mutation,
|
|
6536
6568
|
MutationCartCreateArgs$1 as MutationCartCreateArgs,
|
|
@@ -6594,11 +6626,8 @@ declare namespace shop {
|
|
|
6594
6626
|
PublishedCustomSection$1 as PublishedCustomSection,
|
|
6595
6627
|
PublishedCustomSectionType$1 as PublishedCustomSectionType,
|
|
6596
6628
|
PublishedCustomSectionWhereInput$1 as PublishedCustomSectionWhereInput,
|
|
6597
|
-
|
|
6598
|
-
|
|
6599
|
-
PublishedGlobalSectionEdge$1 as PublishedGlobalSectionEdge,
|
|
6600
|
-
PublishedGlobalSectionOrder$1 as PublishedGlobalSectionOrder,
|
|
6601
|
-
PublishedGlobalSectionOrderField$1 as PublishedGlobalSectionOrderField,
|
|
6629
|
+
PublishedPageInteraction$1 as PublishedPageInteraction,
|
|
6630
|
+
PublishedPageInteractionWhereInput$1 as PublishedPageInteractionWhereInput,
|
|
6602
6631
|
PublishedPageSection$1 as PublishedPageSection,
|
|
6603
6632
|
PublishedPageSectionMeta$1 as PublishedPageSectionMeta,
|
|
6604
6633
|
PublishedPageSectionMetaWhereInput$1 as PublishedPageSectionMetaWhereInput,
|
|
@@ -6650,8 +6679,6 @@ declare namespace shop {
|
|
|
6650
6679
|
QueryProductOptionValuesArgs$1 as QueryProductOptionValuesArgs,
|
|
6651
6680
|
QueryProductOptionsArgs$1 as QueryProductOptionsArgs,
|
|
6652
6681
|
QueryProductsArgs$1 as QueryProductsArgs,
|
|
6653
|
-
QueryPublishedGlobalSectionArgs$1 as QueryPublishedGlobalSectionArgs,
|
|
6654
|
-
QueryPublishedGlobalSectionsArgs$1 as QueryPublishedGlobalSectionsArgs,
|
|
6655
6682
|
QueryPublishedThemePagesArgs$1 as QueryPublishedThemePagesArgs,
|
|
6656
6683
|
QueryPublishedThemeSectionArgs$1 as QueryPublishedThemeSectionArgs,
|
|
6657
6684
|
QueryPublishedThemeSectionsArgs$1 as QueryPublishedThemeSectionsArgs,
|
|
@@ -8236,6 +8263,7 @@ type AnalyticsQueryParameter = {
|
|
|
8236
8263
|
campaignVersionIDs?: InputMaybe<Array<Scalars['ID']>>;
|
|
8237
8264
|
endDate?: InputMaybe<Scalars['Time']>;
|
|
8238
8265
|
first?: InputMaybe<Scalars['Int']>;
|
|
8266
|
+
groupBy?: InputMaybe<GroupByFields>;
|
|
8239
8267
|
isDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
8240
8268
|
offerIDs?: InputMaybe<Array<Scalars['ID']>>;
|
|
8241
8269
|
orderByDirection?: InputMaybe<OrderDirection>;
|
|
@@ -8246,15 +8274,20 @@ type AnalyticsQueryParameter = {
|
|
|
8246
8274
|
};
|
|
8247
8275
|
type AppType = 'CUSTOM' | 'GEMPAGES' | 'GEMPAGESV5' | 'GEMPAGESV7' | 'GEMX';
|
|
8248
8276
|
type Article$1 = {
|
|
8277
|
+
author?: Maybe<Scalars['String']>;
|
|
8249
8278
|
baseID?: Maybe<Scalars['String']>;
|
|
8250
8279
|
blogs?: Maybe<BlogConnection>;
|
|
8280
|
+
content?: Maybe<ArticleContent>;
|
|
8251
8281
|
description?: Maybe<Scalars['String']>;
|
|
8252
8282
|
descriptionMeta?: Maybe<Scalars['String']>;
|
|
8253
8283
|
handle?: Maybe<Scalars['String']>;
|
|
8254
8284
|
id: Scalars['ID'];
|
|
8255
8285
|
isSample?: Maybe<Scalars['Boolean']>;
|
|
8286
|
+
media?: Maybe<Media>;
|
|
8256
8287
|
metafield?: Maybe<Metafield>;
|
|
8257
8288
|
platform?: Maybe<ArticlePlatform>;
|
|
8289
|
+
platformCreatedAt?: Maybe<Scalars['Time']>;
|
|
8290
|
+
platformUpdatedAt?: Maybe<Scalars['Time']>;
|
|
8258
8291
|
tags: Array<Scalars['String']>;
|
|
8259
8292
|
templateSuffix?: Maybe<Scalars['String']>;
|
|
8260
8293
|
title?: Maybe<Scalars['String']>;
|
|
@@ -8316,6 +8349,83 @@ type ArticleConnection = {
|
|
|
8316
8349
|
pageInfo?: Maybe<PageInfo>;
|
|
8317
8350
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8318
8351
|
};
|
|
8352
|
+
type ArticleContent = {
|
|
8353
|
+
createdAt?: Maybe<Scalars['Time']>;
|
|
8354
|
+
excerptHtml?: Maybe<Scalars['String']>;
|
|
8355
|
+
id: Scalars['ID'];
|
|
8356
|
+
updatedAt?: Maybe<Scalars['Time']>;
|
|
8357
|
+
};
|
|
8358
|
+
/**
|
|
8359
|
+
* ArticleContentWhereInput is used for filtering ArticleContent objects.
|
|
8360
|
+
* Input was generated by ent.
|
|
8361
|
+
*/
|
|
8362
|
+
type ArticleContentWhereInput = {
|
|
8363
|
+
and?: InputMaybe<Array<ArticleContentWhereInput>>;
|
|
8364
|
+
/** article_id field predicates */
|
|
8365
|
+
articleID?: InputMaybe<Scalars['ID']>;
|
|
8366
|
+
articleIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
8367
|
+
articleIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
8368
|
+
articleIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
8369
|
+
/** created_at field predicates */
|
|
8370
|
+
createdAt?: InputMaybe<Scalars['Time']>;
|
|
8371
|
+
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
8372
|
+
createdAtGTE?: InputMaybe<Scalars['Time']>;
|
|
8373
|
+
createdAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
8374
|
+
createdAtLT?: InputMaybe<Scalars['Time']>;
|
|
8375
|
+
createdAtLTE?: InputMaybe<Scalars['Time']>;
|
|
8376
|
+
createdAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
8377
|
+
createdAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
8378
|
+
/** deleted_at field predicates */
|
|
8379
|
+
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
8380
|
+
deletedAtGT?: InputMaybe<Scalars['Time']>;
|
|
8381
|
+
deletedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
8382
|
+
deletedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
8383
|
+
deletedAtIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
8384
|
+
deletedAtLT?: InputMaybe<Scalars['Time']>;
|
|
8385
|
+
deletedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
8386
|
+
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
8387
|
+
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
8388
|
+
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
8389
|
+
/** excerpt_html field predicates */
|
|
8390
|
+
excerptHTML?: InputMaybe<Scalars['String']>;
|
|
8391
|
+
excerptHTMLContains?: InputMaybe<Scalars['String']>;
|
|
8392
|
+
excerptHTMLContainsFold?: InputMaybe<Scalars['String']>;
|
|
8393
|
+
excerptHTMLEqualFold?: InputMaybe<Scalars['String']>;
|
|
8394
|
+
excerptHTMLGT?: InputMaybe<Scalars['String']>;
|
|
8395
|
+
excerptHTMLGTE?: InputMaybe<Scalars['String']>;
|
|
8396
|
+
excerptHTMLHasPrefix?: InputMaybe<Scalars['String']>;
|
|
8397
|
+
excerptHTMLHasSuffix?: InputMaybe<Scalars['String']>;
|
|
8398
|
+
excerptHTMLIn?: InputMaybe<Array<Scalars['String']>>;
|
|
8399
|
+
excerptHTMLIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
8400
|
+
excerptHTMLLT?: InputMaybe<Scalars['String']>;
|
|
8401
|
+
excerptHTMLLTE?: InputMaybe<Scalars['String']>;
|
|
8402
|
+
excerptHTMLNEQ?: InputMaybe<Scalars['String']>;
|
|
8403
|
+
excerptHTMLNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
8404
|
+
excerptHTMLNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
8405
|
+
/** article edge predicates */
|
|
8406
|
+
hasArticle?: InputMaybe<Scalars['Boolean']>;
|
|
8407
|
+
hasArticleWith?: InputMaybe<Array<ArticleWhereInput>>;
|
|
8408
|
+
/** id field predicates */
|
|
8409
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
8410
|
+
idGT?: InputMaybe<Scalars['ID']>;
|
|
8411
|
+
idGTE?: InputMaybe<Scalars['ID']>;
|
|
8412
|
+
idIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
8413
|
+
idLT?: InputMaybe<Scalars['ID']>;
|
|
8414
|
+
idLTE?: InputMaybe<Scalars['ID']>;
|
|
8415
|
+
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
8416
|
+
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
8417
|
+
not?: InputMaybe<ArticleContentWhereInput>;
|
|
8418
|
+
or?: InputMaybe<Array<ArticleContentWhereInput>>;
|
|
8419
|
+
/** updated_at field predicates */
|
|
8420
|
+
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
8421
|
+
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
8422
|
+
updatedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
8423
|
+
updatedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
8424
|
+
updatedAtLT?: InputMaybe<Scalars['Time']>;
|
|
8425
|
+
updatedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
8426
|
+
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
8427
|
+
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
8428
|
+
};
|
|
8319
8429
|
type ArticleEdge = {
|
|
8320
8430
|
cursor?: Maybe<Scalars['Cursor']>;
|
|
8321
8431
|
node?: Maybe<Article$1>;
|
|
@@ -8324,7 +8434,7 @@ type ArticleOrder = {
|
|
|
8324
8434
|
direction: OrderDirection;
|
|
8325
8435
|
field?: InputMaybe<ArticleOrderField>;
|
|
8326
8436
|
};
|
|
8327
|
-
type ArticleOrderField = 'CREATED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
8437
|
+
type ArticleOrderField = 'CREATED_AT' | 'PLATFORM_CREATED_AT' | 'PLATFORM_UPDATED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
8328
8438
|
type ArticlePlatform = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
8329
8439
|
/**
|
|
8330
8440
|
* ArticleTagWhereInput is used for filtering ArticleTag objects.
|
|
@@ -8366,6 +8476,22 @@ type ArticleTagWhereInput = {
|
|
|
8366
8476
|
*/
|
|
8367
8477
|
type ArticleWhereInput = {
|
|
8368
8478
|
and?: InputMaybe<Array<ArticleWhereInput>>;
|
|
8479
|
+
/** author field predicates */
|
|
8480
|
+
author?: InputMaybe<Scalars['String']>;
|
|
8481
|
+
authorContains?: InputMaybe<Scalars['String']>;
|
|
8482
|
+
authorContainsFold?: InputMaybe<Scalars['String']>;
|
|
8483
|
+
authorEqualFold?: InputMaybe<Scalars['String']>;
|
|
8484
|
+
authorGT?: InputMaybe<Scalars['String']>;
|
|
8485
|
+
authorGTE?: InputMaybe<Scalars['String']>;
|
|
8486
|
+
authorHasPrefix?: InputMaybe<Scalars['String']>;
|
|
8487
|
+
authorHasSuffix?: InputMaybe<Scalars['String']>;
|
|
8488
|
+
authorIn?: InputMaybe<Array<Scalars['String']>>;
|
|
8489
|
+
authorIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
8490
|
+
authorLT?: InputMaybe<Scalars['String']>;
|
|
8491
|
+
authorLTE?: InputMaybe<Scalars['String']>;
|
|
8492
|
+
authorNEQ?: InputMaybe<Scalars['String']>;
|
|
8493
|
+
authorNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
8494
|
+
authorNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
8369
8495
|
/** base_id field predicates */
|
|
8370
8496
|
baseID?: InputMaybe<Scalars['String']>;
|
|
8371
8497
|
baseIDContains?: InputMaybe<Scalars['String']>;
|
|
@@ -8436,6 +8562,12 @@ type ArticleWhereInput = {
|
|
|
8436
8562
|
/** article_tags edge predicates */
|
|
8437
8563
|
hasArticleTags?: InputMaybe<Scalars['Boolean']>;
|
|
8438
8564
|
hasArticleTagsWith?: InputMaybe<Array<ArticleTagWhereInput>>;
|
|
8565
|
+
/** content edge predicates */
|
|
8566
|
+
hasContent?: InputMaybe<Scalars['Boolean']>;
|
|
8567
|
+
hasContentWith?: InputMaybe<Array<ArticleContentWhereInput>>;
|
|
8568
|
+
/** media edge predicates */
|
|
8569
|
+
hasMedia?: InputMaybe<Scalars['Boolean']>;
|
|
8570
|
+
hasMediaWith?: InputMaybe<Array<MediaWhereInput>>;
|
|
8439
8571
|
/** id field predicates */
|
|
8440
8572
|
id?: InputMaybe<Scalars['ID']>;
|
|
8441
8573
|
idGT?: InputMaybe<Scalars['ID']>;
|
|
@@ -8445,6 +8577,13 @@ type ArticleWhereInput = {
|
|
|
8445
8577
|
idLTE?: InputMaybe<Scalars['ID']>;
|
|
8446
8578
|
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
8447
8579
|
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
8580
|
+
/** image_id field predicates */
|
|
8581
|
+
imageID?: InputMaybe<Scalars['ID']>;
|
|
8582
|
+
imageIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
8583
|
+
imageIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
8584
|
+
imageIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
8585
|
+
imageIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
8586
|
+
imageIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
8448
8587
|
/** is_sample field predicates */
|
|
8449
8588
|
isSample?: InputMaybe<Scalars['Boolean']>;
|
|
8450
8589
|
isSampleNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -8739,6 +8878,8 @@ type Blog = {
|
|
|
8739
8878
|
isSample?: Maybe<Scalars['Boolean']>;
|
|
8740
8879
|
metafield?: Maybe<Metafield>;
|
|
8741
8880
|
platform?: Maybe<BlogPlatform>;
|
|
8881
|
+
platformCreatedAt?: Maybe<Scalars['Time']>;
|
|
8882
|
+
platformUpdatedAt?: Maybe<Scalars['Time']>;
|
|
8742
8883
|
tags: Array<Scalars['String']>;
|
|
8743
8884
|
templateSuffix?: Maybe<Scalars['String']>;
|
|
8744
8885
|
title?: Maybe<Scalars['String']>;
|
|
@@ -8769,7 +8910,7 @@ type BlogOrder = {
|
|
|
8769
8910
|
direction: OrderDirection;
|
|
8770
8911
|
field?: InputMaybe<BlogOrderField>;
|
|
8771
8912
|
};
|
|
8772
|
-
type BlogOrderField = 'CREATED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
8913
|
+
type BlogOrderField = 'CREATED_AT' | 'PLATFORM_CREATED_AT' | 'PLATFORM_UPDATED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
8773
8914
|
type BlogPlatform = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
8774
8915
|
/**
|
|
8775
8916
|
* BlogWhereInput is used for filtering Blog objects.
|
|
@@ -9098,9 +9239,12 @@ type CampaignOfferStatWhereInput = {
|
|
|
9098
9239
|
};
|
|
9099
9240
|
type CampaignVersion = {
|
|
9100
9241
|
campaignID?: Maybe<Scalars['ID']>;
|
|
9242
|
+
completedAt?: Maybe<Scalars['Time']>;
|
|
9243
|
+
createdAt?: Maybe<Scalars['Time']>;
|
|
9101
9244
|
id: Scalars['ID'];
|
|
9102
9245
|
saleFunnelID?: Maybe<Scalars['ID']>;
|
|
9103
9246
|
shopID?: Maybe<Scalars['ID']>;
|
|
9247
|
+
updatedAt?: Maybe<Scalars['Time']>;
|
|
9104
9248
|
version?: Maybe<Scalars['Int']>;
|
|
9105
9249
|
};
|
|
9106
9250
|
type CampaignVersionConnection = {
|
|
@@ -9134,6 +9278,17 @@ type CampaignVersionWhereInput = {
|
|
|
9134
9278
|
campaignIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
9135
9279
|
campaignIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
9136
9280
|
campaignIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
9281
|
+
/** completed_at field predicates */
|
|
9282
|
+
completedAt?: InputMaybe<Scalars['Time']>;
|
|
9283
|
+
completedAtGT?: InputMaybe<Scalars['Time']>;
|
|
9284
|
+
completedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
9285
|
+
completedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
9286
|
+
completedAtIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
9287
|
+
completedAtLT?: InputMaybe<Scalars['Time']>;
|
|
9288
|
+
completedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
9289
|
+
completedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
9290
|
+
completedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
9291
|
+
completedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
9137
9292
|
/** created_at field predicates */
|
|
9138
9293
|
createdAt?: InputMaybe<Scalars['Time']>;
|
|
9139
9294
|
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -10018,6 +10173,10 @@ type CreateLibraryTemplateTagInput = {
|
|
|
10018
10173
|
score?: InputMaybe<Scalars['Int']>;
|
|
10019
10174
|
tagID: Scalars['ID'];
|
|
10020
10175
|
};
|
|
10176
|
+
type CreatePageInteractionInput = {
|
|
10177
|
+
pageID: Scalars['ID'];
|
|
10178
|
+
value: Array<Scalars['Map']>;
|
|
10179
|
+
};
|
|
10021
10180
|
type CreatePageSectionInput = {
|
|
10022
10181
|
cid?: InputMaybe<Scalars['String']>;
|
|
10023
10182
|
component?: InputMaybe<Scalars['String']>;
|
|
@@ -10029,7 +10188,19 @@ type CreatePageSectionInput = {
|
|
|
10029
10188
|
name: Scalars['String'];
|
|
10030
10189
|
};
|
|
10031
10190
|
type CreatePlatformOriginalTemplateInput = {
|
|
10032
|
-
content: Scalars['
|
|
10191
|
+
content: Scalars['Map'];
|
|
10192
|
+
};
|
|
10193
|
+
type CreateProductDiscountInput = {
|
|
10194
|
+
details: Array<Scalars['Map']>;
|
|
10195
|
+
name: Scalars['String'];
|
|
10196
|
+
shopID: Scalars['ID'];
|
|
10197
|
+
type: ProductDiscountType;
|
|
10198
|
+
};
|
|
10199
|
+
type CreateProductDiscountObjectInput = {
|
|
10200
|
+
objectBaseID: Scalars['String'];
|
|
10201
|
+
objectID: Scalars['ID'];
|
|
10202
|
+
shopID: Scalars['ID'];
|
|
10203
|
+
type: ProductDiscountObjectType;
|
|
10033
10204
|
};
|
|
10034
10205
|
type CreateSaleFunnelDiscountInput = {
|
|
10035
10206
|
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -10105,6 +10276,7 @@ type CreateShopPlatformInput = {
|
|
|
10105
10276
|
appType: AppType;
|
|
10106
10277
|
platform: Platform;
|
|
10107
10278
|
platformDomain?: InputMaybe<Scalars['String']>;
|
|
10279
|
+
platformStoreID?: InputMaybe<Scalars['ID']>;
|
|
10108
10280
|
redirectURL?: InputMaybe<Scalars['String']>;
|
|
10109
10281
|
status?: InputMaybe<ShopPlatformStatus>;
|
|
10110
10282
|
token?: InputMaybe<Scalars['String']>;
|
|
@@ -11944,6 +12116,7 @@ type File = {
|
|
|
11944
12116
|
filePath?: Maybe<Scalars['String']>;
|
|
11945
12117
|
height?: Maybe<Scalars['Uint']>;
|
|
11946
12118
|
id: Scalars['ID'];
|
|
12119
|
+
isCompressed?: Maybe<Scalars['Boolean']>;
|
|
11947
12120
|
mimeType?: Maybe<Scalars['String']>;
|
|
11948
12121
|
shopifyFileKey: Scalars['String'];
|
|
11949
12122
|
size?: Maybe<Scalars['Int']>;
|
|
@@ -12118,6 +12291,11 @@ type FileWhereInput = {
|
|
|
12118
12291
|
idLTE?: InputMaybe<Scalars['ID']>;
|
|
12119
12292
|
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
12120
12293
|
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
12294
|
+
/** is_compressed field predicates */
|
|
12295
|
+
isCompressed?: InputMaybe<Scalars['Boolean']>;
|
|
12296
|
+
isCompressedIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
12297
|
+
isCompressedNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
12298
|
+
isCompressedNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
12121
12299
|
/** mime_type field predicates */
|
|
12122
12300
|
mimeType?: InputMaybe<Scalars['String']>;
|
|
12123
12301
|
mimeTypeContains?: InputMaybe<Scalars['String']>;
|
|
@@ -12463,6 +12641,11 @@ type FontWhereInput = {
|
|
|
12463
12641
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
12464
12642
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
12465
12643
|
};
|
|
12644
|
+
type GenerateContentLimitation = {
|
|
12645
|
+
generateCount?: Maybe<Scalars['Int']>;
|
|
12646
|
+
maxGenerateCount?: Maybe<Scalars['Int']>;
|
|
12647
|
+
shopID: Scalars['ID'];
|
|
12648
|
+
};
|
|
12466
12649
|
type GlobalComponent = {
|
|
12467
12650
|
createdAt?: Maybe<Scalars['Time']>;
|
|
12468
12651
|
currentVersion: Scalars['String'];
|
|
@@ -12814,6 +12997,7 @@ type GlobalStoreVersionWhereInput = {
|
|
|
12814
12997
|
versionNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
12815
12998
|
versionNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
12816
12999
|
};
|
|
13000
|
+
type GroupByFields = 'DATE' | 'SALE_FUNNEL_ID';
|
|
12817
13001
|
type Icon = {
|
|
12818
13002
|
createdAt?: Maybe<Scalars['Time']>;
|
|
12819
13003
|
createdBy?: Maybe<Scalars['ID']>;
|
|
@@ -12937,9 +13121,12 @@ type LibrarySaleFunnel = {
|
|
|
12937
13121
|
createdAt?: Maybe<Scalars['Time']>;
|
|
12938
13122
|
description?: Maybe<Scalars['String']>;
|
|
12939
13123
|
id: Scalars['ID'];
|
|
13124
|
+
metafields?: Maybe<Array<Maybe<LibrarySaleFunnelMeta>>>;
|
|
13125
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
12940
13126
|
metas?: Maybe<LibrarySaleFunnelMetaConnection>;
|
|
12941
13127
|
name?: Maybe<Scalars['String']>;
|
|
12942
13128
|
offers?: Maybe<Array<Maybe<LibrarySaleFunnelOffer>>>;
|
|
13129
|
+
position?: Maybe<Scalars['Int']>;
|
|
12943
13130
|
templates?: Maybe<Array<Maybe<LibraryTemplate>>>;
|
|
12944
13131
|
type?: Maybe<LibrarySaleFunnelType>;
|
|
12945
13132
|
updatedAt?: Maybe<Scalars['Time']>;
|
|
@@ -13142,7 +13329,7 @@ type LibrarySaleFunnelMetaWhereInput = {
|
|
|
13142
13329
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
13143
13330
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
13144
13331
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
13145
|
-
/**
|
|
13332
|
+
/** library_sale_funnel edge predicates */
|
|
13146
13333
|
hasLibrarySaleFunnel?: InputMaybe<Scalars['Boolean']>;
|
|
13147
13334
|
hasLibrarySaleFunnelWith?: InputMaybe<Array<LibrarySaleFunnelWhereInput>>;
|
|
13148
13335
|
/** id field predicates */
|
|
@@ -13310,7 +13497,7 @@ type LibrarySaleFunnelOrder = {
|
|
|
13310
13497
|
direction: OrderDirection;
|
|
13311
13498
|
field?: InputMaybe<LibrarySaleFunnelOrderField>;
|
|
13312
13499
|
};
|
|
13313
|
-
type LibrarySaleFunnelOrderField = 'CREATED_AT' | 'NAME' | 'TYPE' | 'UPDATED_AT';
|
|
13500
|
+
type LibrarySaleFunnelOrderField = 'CREATED_AT' | 'NAME' | 'POSITION' | 'TYPE' | 'UPDATED_AT';
|
|
13314
13501
|
type LibrarySaleFunnelType = 'AOV' | 'PRODUCT';
|
|
13315
13502
|
/**
|
|
13316
13503
|
* LibrarySaleFunnelWhereInput is used for filtering LibrarySaleFunnel objects.
|
|
@@ -13354,13 +13541,13 @@ type LibrarySaleFunnelWhereInput = {
|
|
|
13354
13541
|
descriptionNEQ?: InputMaybe<Scalars['String']>;
|
|
13355
13542
|
descriptionNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
13356
13543
|
descriptionNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
13357
|
-
/**
|
|
13358
|
-
|
|
13359
|
-
|
|
13544
|
+
/** metafields edge predicates */
|
|
13545
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
13546
|
+
hasMetafieldsWith?: InputMaybe<Array<LibrarySaleFunnelMetaWhereInput>>;
|
|
13360
13547
|
/** offers edge predicates */
|
|
13361
13548
|
hasOffers?: InputMaybe<Scalars['Boolean']>;
|
|
13362
13549
|
hasOffersWith?: InputMaybe<Array<LibrarySaleFunnelOfferWhereInput>>;
|
|
13363
|
-
/**
|
|
13550
|
+
/** sale_funnel edge predicates */
|
|
13364
13551
|
hasSaleFunnel?: InputMaybe<Scalars['Boolean']>;
|
|
13365
13552
|
hasSaleFunnelWith?: InputMaybe<Array<SaleFunnelWhereInput>>;
|
|
13366
13553
|
/** templates edge predicates */
|
|
@@ -13391,6 +13578,17 @@ type LibrarySaleFunnelWhereInput = {
|
|
|
13391
13578
|
nameNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
13392
13579
|
not?: InputMaybe<LibrarySaleFunnelWhereInput>;
|
|
13393
13580
|
or?: InputMaybe<Array<LibrarySaleFunnelWhereInput>>;
|
|
13581
|
+
/** position field predicates */
|
|
13582
|
+
position?: InputMaybe<Scalars['Int']>;
|
|
13583
|
+
positionGT?: InputMaybe<Scalars['Int']>;
|
|
13584
|
+
positionGTE?: InputMaybe<Scalars['Int']>;
|
|
13585
|
+
positionIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
13586
|
+
positionIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
13587
|
+
positionLT?: InputMaybe<Scalars['Int']>;
|
|
13588
|
+
positionLTE?: InputMaybe<Scalars['Int']>;
|
|
13589
|
+
positionNEQ?: InputMaybe<Scalars['Int']>;
|
|
13590
|
+
positionNotIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
13591
|
+
positionNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
13394
13592
|
/** type field predicates */
|
|
13395
13593
|
type?: InputMaybe<LibrarySaleFunnelType>;
|
|
13396
13594
|
typeIn?: InputMaybe<Array<LibrarySaleFunnelType>>;
|
|
@@ -13418,8 +13616,10 @@ type LibrarySection = {
|
|
|
13418
13616
|
id: Scalars['ID'];
|
|
13419
13617
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
13420
13618
|
libraryPosition?: Maybe<Scalars['Int']>;
|
|
13619
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
13421
13620
|
librarySectionMetas?: Maybe<LibrarySectionMetaConnection>;
|
|
13422
13621
|
librarySectionTags?: Maybe<Array<LibrarySectionTag>>;
|
|
13622
|
+
metafields?: Maybe<Array<LibrarySectionMeta>>;
|
|
13423
13623
|
name: Scalars['String'];
|
|
13424
13624
|
updatedAt?: Maybe<Scalars['Time']>;
|
|
13425
13625
|
};
|
|
@@ -13485,7 +13685,7 @@ type LibrarySectionMetaWhereInput = {
|
|
|
13485
13685
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
13486
13686
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
13487
13687
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
13488
|
-
/**
|
|
13688
|
+
/** library_section edge predicates */
|
|
13489
13689
|
hasLibrarySection?: InputMaybe<Scalars['Boolean']>;
|
|
13490
13690
|
hasLibrarySectionWith?: InputMaybe<Array<LibrarySectionWhereInput>>;
|
|
13491
13691
|
/** id field predicates */
|
|
@@ -13653,15 +13853,15 @@ type LibrarySectionWhereInput = {
|
|
|
13653
13853
|
/** categories edge predicates */
|
|
13654
13854
|
hasCategories?: InputMaybe<Scalars['Boolean']>;
|
|
13655
13855
|
hasCategoriesWith?: InputMaybe<Array<SectionCategoryWhereInput>>;
|
|
13656
|
-
/** librarySectionMeta edge predicates */
|
|
13657
|
-
hasLibrarySectionMeta?: InputMaybe<Scalars['Boolean']>;
|
|
13658
|
-
hasLibrarySectionMetaWith?: InputMaybe<Array<LibrarySectionMetaWhereInput>>;
|
|
13659
13856
|
/** librarySectionTags edge predicates */
|
|
13660
13857
|
hasLibrarySectionTags?: InputMaybe<Scalars['Boolean']>;
|
|
13661
13858
|
hasLibrarySectionTagsWith?: InputMaybe<Array<LibrarySectionTagWhereInput>>;
|
|
13662
13859
|
/** libraryTemplate edge predicates */
|
|
13663
13860
|
hasLibraryTemplate?: InputMaybe<Scalars['Boolean']>;
|
|
13664
13861
|
hasLibraryTemplateWith?: InputMaybe<Array<LibraryTemplateWhereInput>>;
|
|
13862
|
+
/** metafields edge predicates */
|
|
13863
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
13864
|
+
hasMetafieldsWith?: InputMaybe<Array<LibrarySectionMetaWhereInput>>;
|
|
13665
13865
|
/** pageSection edge predicates */
|
|
13666
13866
|
hasPageSection?: InputMaybe<Scalars['Boolean']>;
|
|
13667
13867
|
hasPageSectionWith?: InputMaybe<Array<PageSectionWhereInput>>;
|
|
@@ -13729,8 +13929,10 @@ type LibraryTemplate = {
|
|
|
13729
13929
|
id: Scalars['ID'];
|
|
13730
13930
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
13731
13931
|
libraryPosition?: Maybe<Scalars['Int']>;
|
|
13932
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
13732
13933
|
libraryTemplateMetas?: Maybe<LibraryTemplateMetaConnection>;
|
|
13733
13934
|
libraryTemplateTags?: Maybe<Array<LibraryTemplateTag>>;
|
|
13935
|
+
metafields?: Maybe<Array<LibraryTemplateMeta>>;
|
|
13734
13936
|
name: Scalars['String'];
|
|
13735
13937
|
sectionPosition?: Maybe<Array<Scalars['String']>>;
|
|
13736
13938
|
sections?: Maybe<Array<LibrarySection>>;
|
|
@@ -13795,7 +13997,7 @@ type LibraryTemplateMetaWhereInput = {
|
|
|
13795
13997
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
13796
13998
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
13797
13999
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
13798
|
-
/**
|
|
14000
|
+
/** library_template edge predicates */
|
|
13799
14001
|
hasLibraryTemplate?: InputMaybe<Scalars['Boolean']>;
|
|
13800
14002
|
hasLibraryTemplateWith?: InputMaybe<Array<LibraryTemplateWhereInput>>;
|
|
13801
14003
|
/** id field predicates */
|
|
@@ -13960,12 +14162,12 @@ type LibraryTemplateWhereInput = {
|
|
|
13960
14162
|
/** librarySaleFunnels edge predicates */
|
|
13961
14163
|
hasLibrarySaleFunnels?: InputMaybe<Scalars['Boolean']>;
|
|
13962
14164
|
hasLibrarySaleFunnelsWith?: InputMaybe<Array<LibrarySaleFunnelWhereInput>>;
|
|
13963
|
-
/** libraryTemplateMeta edge predicates */
|
|
13964
|
-
hasLibraryTemplateMeta?: InputMaybe<Scalars['Boolean']>;
|
|
13965
|
-
hasLibraryTemplateMetaWith?: InputMaybe<Array<LibraryTemplateMetaWhereInput>>;
|
|
13966
14165
|
/** libraryTemplateTags edge predicates */
|
|
13967
14166
|
hasLibraryTemplateTags?: InputMaybe<Scalars['Boolean']>;
|
|
13968
14167
|
hasLibraryTemplateTagsWith?: InputMaybe<Array<LibraryTemplateTagWhereInput>>;
|
|
14168
|
+
/** metafields edge predicates */
|
|
14169
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
14170
|
+
hasMetafieldsWith?: InputMaybe<Array<LibraryTemplateMetaWhereInput>>;
|
|
13969
14171
|
/** sections edge predicates */
|
|
13970
14172
|
hasSections?: InputMaybe<Scalars['Boolean']>;
|
|
13971
14173
|
hasSectionsWith?: InputMaybe<Array<LibrarySectionWhereInput>>;
|
|
@@ -14158,6 +14360,9 @@ type MediaWhereInput = {
|
|
|
14158
14360
|
embeddedURLNEQ?: InputMaybe<Scalars['String']>;
|
|
14159
14361
|
embeddedURLNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14160
14362
|
embeddedURLNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14363
|
+
/** article edge predicates */
|
|
14364
|
+
hasArticle?: InputMaybe<Scalars['Boolean']>;
|
|
14365
|
+
hasArticleWith?: InputMaybe<Array<ArticleWhereInput>>;
|
|
14161
14366
|
/** product edge predicates */
|
|
14162
14367
|
hasProduct?: InputMaybe<Scalars['Boolean']>;
|
|
14163
14368
|
hasProductWith?: InputMaybe<Array<ProductWhereInput>>;
|
|
@@ -14303,20 +14508,37 @@ type MediaWhereInput = {
|
|
|
14303
14508
|
widthNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14304
14509
|
};
|
|
14305
14510
|
type Metafield = {
|
|
14511
|
+
baseID: Scalars['String'];
|
|
14306
14512
|
description?: Maybe<Scalars['String']>;
|
|
14307
14513
|
id: Scalars['ID'];
|
|
14308
14514
|
key: Scalars['String'];
|
|
14309
14515
|
namespace: Scalars['String'];
|
|
14310
|
-
|
|
14311
|
-
objectType:
|
|
14312
|
-
|
|
14516
|
+
objectID: Scalars['ID'];
|
|
14517
|
+
objectType: MetafieldObjectType;
|
|
14518
|
+
shopID: Scalars['ID'];
|
|
14519
|
+
value: Scalars['String'];
|
|
14313
14520
|
};
|
|
14521
|
+
type MetafieldObjectType = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'DISCOUNT' | 'PAGE' | 'PRODUCT' | 'PRODUCT_VARIANT' | 'SHOP';
|
|
14314
14522
|
/**
|
|
14315
14523
|
* MetafieldWhereInput is used for filtering Metafield objects.
|
|
14316
14524
|
* Input was generated by ent.
|
|
14317
14525
|
*/
|
|
14318
14526
|
type MetafieldWhereInput = {
|
|
14319
14527
|
and?: InputMaybe<Array<MetafieldWhereInput>>;
|
|
14528
|
+
/** base_id field predicates */
|
|
14529
|
+
baseID?: InputMaybe<Scalars['String']>;
|
|
14530
|
+
baseIDContains?: InputMaybe<Scalars['String']>;
|
|
14531
|
+
baseIDContainsFold?: InputMaybe<Scalars['String']>;
|
|
14532
|
+
baseIDEqualFold?: InputMaybe<Scalars['String']>;
|
|
14533
|
+
baseIDGT?: InputMaybe<Scalars['String']>;
|
|
14534
|
+
baseIDGTE?: InputMaybe<Scalars['String']>;
|
|
14535
|
+
baseIDHasPrefix?: InputMaybe<Scalars['String']>;
|
|
14536
|
+
baseIDHasSuffix?: InputMaybe<Scalars['String']>;
|
|
14537
|
+
baseIDIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14538
|
+
baseIDLT?: InputMaybe<Scalars['String']>;
|
|
14539
|
+
baseIDLTE?: InputMaybe<Scalars['String']>;
|
|
14540
|
+
baseIDNEQ?: InputMaybe<Scalars['String']>;
|
|
14541
|
+
baseIDNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14320
14542
|
/** created_at field predicates */
|
|
14321
14543
|
createdAt?: InputMaybe<Scalars['Time']>;
|
|
14322
14544
|
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -14337,6 +14559,22 @@ type MetafieldWhereInput = {
|
|
|
14337
14559
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
14338
14560
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
14339
14561
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14562
|
+
/** description field predicates */
|
|
14563
|
+
description?: InputMaybe<Scalars['String']>;
|
|
14564
|
+
descriptionContains?: InputMaybe<Scalars['String']>;
|
|
14565
|
+
descriptionContainsFold?: InputMaybe<Scalars['String']>;
|
|
14566
|
+
descriptionEqualFold?: InputMaybe<Scalars['String']>;
|
|
14567
|
+
descriptionGT?: InputMaybe<Scalars['String']>;
|
|
14568
|
+
descriptionGTE?: InputMaybe<Scalars['String']>;
|
|
14569
|
+
descriptionHasPrefix?: InputMaybe<Scalars['String']>;
|
|
14570
|
+
descriptionHasSuffix?: InputMaybe<Scalars['String']>;
|
|
14571
|
+
descriptionIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14572
|
+
descriptionIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
14573
|
+
descriptionLT?: InputMaybe<Scalars['String']>;
|
|
14574
|
+
descriptionLTE?: InputMaybe<Scalars['String']>;
|
|
14575
|
+
descriptionNEQ?: InputMaybe<Scalars['String']>;
|
|
14576
|
+
descriptionNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14577
|
+
descriptionNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14340
14578
|
/** id field predicates */
|
|
14341
14579
|
id?: InputMaybe<Scalars['ID']>;
|
|
14342
14580
|
idGT?: InputMaybe<Scalars['ID']>;
|
|
@@ -14346,7 +14584,49 @@ type MetafieldWhereInput = {
|
|
|
14346
14584
|
idLTE?: InputMaybe<Scalars['ID']>;
|
|
14347
14585
|
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
14348
14586
|
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
14587
|
+
/** key field predicates */
|
|
14588
|
+
key?: InputMaybe<Scalars['String']>;
|
|
14589
|
+
keyContains?: InputMaybe<Scalars['String']>;
|
|
14590
|
+
keyContainsFold?: InputMaybe<Scalars['String']>;
|
|
14591
|
+
keyEqualFold?: InputMaybe<Scalars['String']>;
|
|
14592
|
+
keyGT?: InputMaybe<Scalars['String']>;
|
|
14593
|
+
keyGTE?: InputMaybe<Scalars['String']>;
|
|
14594
|
+
keyHasPrefix?: InputMaybe<Scalars['String']>;
|
|
14595
|
+
keyHasSuffix?: InputMaybe<Scalars['String']>;
|
|
14596
|
+
keyIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14597
|
+
keyLT?: InputMaybe<Scalars['String']>;
|
|
14598
|
+
keyLTE?: InputMaybe<Scalars['String']>;
|
|
14599
|
+
keyNEQ?: InputMaybe<Scalars['String']>;
|
|
14600
|
+
keyNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14601
|
+
/** namespace field predicates */
|
|
14602
|
+
namespace?: InputMaybe<Scalars['String']>;
|
|
14603
|
+
namespaceContains?: InputMaybe<Scalars['String']>;
|
|
14604
|
+
namespaceContainsFold?: InputMaybe<Scalars['String']>;
|
|
14605
|
+
namespaceEqualFold?: InputMaybe<Scalars['String']>;
|
|
14606
|
+
namespaceGT?: InputMaybe<Scalars['String']>;
|
|
14607
|
+
namespaceGTE?: InputMaybe<Scalars['String']>;
|
|
14608
|
+
namespaceHasPrefix?: InputMaybe<Scalars['String']>;
|
|
14609
|
+
namespaceHasSuffix?: InputMaybe<Scalars['String']>;
|
|
14610
|
+
namespaceIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14611
|
+
namespaceLT?: InputMaybe<Scalars['String']>;
|
|
14612
|
+
namespaceLTE?: InputMaybe<Scalars['String']>;
|
|
14613
|
+
namespaceNEQ?: InputMaybe<Scalars['String']>;
|
|
14614
|
+
namespaceNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14349
14615
|
not?: InputMaybe<MetafieldWhereInput>;
|
|
14616
|
+
/** object_id field predicates */
|
|
14617
|
+
objectID?: InputMaybe<Scalars['ID']>;
|
|
14618
|
+
objectIDGT?: InputMaybe<Scalars['ID']>;
|
|
14619
|
+
objectIDGTE?: InputMaybe<Scalars['ID']>;
|
|
14620
|
+
objectIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
14621
|
+
objectIDLT?: InputMaybe<Scalars['ID']>;
|
|
14622
|
+
objectIDLTE?: InputMaybe<Scalars['ID']>;
|
|
14623
|
+
objectIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
14624
|
+
objectIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
14625
|
+
/** object_type field predicates */
|
|
14626
|
+
objectType?: InputMaybe<MetafieldObjectType>;
|
|
14627
|
+
objectTypeIn?: InputMaybe<Array<MetafieldObjectType>>;
|
|
14628
|
+
objectTypeNEQ?: InputMaybe<MetafieldObjectType>;
|
|
14629
|
+
objectTypeNotIn?: InputMaybe<Array<MetafieldObjectType>>;
|
|
14350
14630
|
or?: InputMaybe<Array<MetafieldWhereInput>>;
|
|
14351
14631
|
/** updated_at field predicates */
|
|
14352
14632
|
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
@@ -14357,10 +14637,29 @@ type MetafieldWhereInput = {
|
|
|
14357
14637
|
updatedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
14358
14638
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
14359
14639
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
14640
|
+
/** value field predicates */
|
|
14641
|
+
value?: InputMaybe<Scalars['String']>;
|
|
14642
|
+
valueContains?: InputMaybe<Scalars['String']>;
|
|
14643
|
+
valueContainsFold?: InputMaybe<Scalars['String']>;
|
|
14644
|
+
valueEqualFold?: InputMaybe<Scalars['String']>;
|
|
14645
|
+
valueGT?: InputMaybe<Scalars['String']>;
|
|
14646
|
+
valueGTE?: InputMaybe<Scalars['String']>;
|
|
14647
|
+
valueHasPrefix?: InputMaybe<Scalars['String']>;
|
|
14648
|
+
valueHasSuffix?: InputMaybe<Scalars['String']>;
|
|
14649
|
+
valueIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14650
|
+
valueLT?: InputMaybe<Scalars['String']>;
|
|
14651
|
+
valueLTE?: InputMaybe<Scalars['String']>;
|
|
14652
|
+
valueNEQ?: InputMaybe<Scalars['String']>;
|
|
14653
|
+
valueNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14654
|
+
};
|
|
14655
|
+
type Money = {
|
|
14656
|
+
amount: Scalars['Float'];
|
|
14657
|
+
currencyCode: Scalars['String'];
|
|
14360
14658
|
};
|
|
14361
14659
|
type Mutation = {
|
|
14362
14660
|
assignObjectTriggerConditionCreate?: Maybe<TriggerCondition>;
|
|
14363
14661
|
assignObjectTriggerConditionUpdate?: Maybe<TriggerCondition>;
|
|
14662
|
+
/** @deprecated Will be removed after 31/06/2024. Use `themePageOnlineStoreDataUpsert` instead. */
|
|
14364
14663
|
assignObjectsToShopifyPage: Scalars['Boolean'];
|
|
14365
14664
|
cartCreate?: Maybe<CartPayload>;
|
|
14366
14665
|
cartDiscountCodesUpdate?: Maybe<CartPayload>;
|
|
@@ -14392,7 +14691,6 @@ type Mutation = {
|
|
|
14392
14691
|
fileDelete: Scalars['Boolean'];
|
|
14393
14692
|
fileRestore: File;
|
|
14394
14693
|
fileRestoreByBkFileKey: File;
|
|
14395
|
-
fileUpload: File;
|
|
14396
14694
|
fileUploadByURL: File;
|
|
14397
14695
|
fontDelete: Scalars['Boolean'];
|
|
14398
14696
|
globalComponentCreate: GlobalComponent;
|
|
@@ -14421,6 +14719,11 @@ type Mutation = {
|
|
|
14421
14719
|
libraryTemplateTagDelete: Scalars['Boolean'];
|
|
14422
14720
|
libraryTemplateUpdate?: Maybe<LibraryTemplate>;
|
|
14423
14721
|
makeStyleGlobal: ThemeStyle;
|
|
14722
|
+
pageInteractionCreate?: Maybe<PageInteraction>;
|
|
14723
|
+
pageInteractionDelete: Scalars['Boolean'];
|
|
14724
|
+
pageInteractionPreview: Scalars['Boolean'];
|
|
14725
|
+
pageInteractionPublish: Scalars['Boolean'];
|
|
14726
|
+
pageInteractionUpdate?: Maybe<PageInteraction>;
|
|
14424
14727
|
pageSectionBulkCreate?: Maybe<Array<Maybe<PageSection>>>;
|
|
14425
14728
|
/** @deprecated Will be removed after 15/02/2024. Use `pageSectionBulkCreate` instead. */
|
|
14426
14729
|
pageSectionCreate?: Maybe<Array<Maybe<PageSection>>>;
|
|
@@ -14432,8 +14735,17 @@ type Mutation = {
|
|
|
14432
14735
|
/** @deprecated Will be removed after 15/02/2023. Use `pageSectionUpdate` instead. */
|
|
14433
14736
|
pageSectionsBulkUpdate?: Maybe<Array<Maybe<PageSection>>>;
|
|
14434
14737
|
pageViewUp: Scalars['Boolean'];
|
|
14435
|
-
|
|
14436
|
-
|
|
14738
|
+
platformOriginalTemplateDelete: Scalars['Boolean'];
|
|
14739
|
+
platformOriginalTemplateReset: Scalars['Boolean'];
|
|
14740
|
+
platformOriginalTemplateSync?: Maybe<PlatformOriginalTemplate>;
|
|
14741
|
+
platformOriginalTemplateUpsert?: Maybe<PlatformOriginalTemplate>;
|
|
14742
|
+
productDiscountActivate?: Maybe<ProductDiscount>;
|
|
14743
|
+
productDiscountCreate?: Maybe<ProductDiscount>;
|
|
14744
|
+
productDiscountDeactivate?: Maybe<ProductDiscount>;
|
|
14745
|
+
productDiscountDelete: Scalars['Boolean'];
|
|
14746
|
+
productDiscountDuplicate?: Maybe<ProductDiscount>;
|
|
14747
|
+
productDiscountSync: Scalars['Boolean'];
|
|
14748
|
+
productDiscountUpdate?: Maybe<ProductDiscount>;
|
|
14437
14749
|
publicShopLibraryPageCreate: ShopLibraryPage;
|
|
14438
14750
|
publicShopLibraryPageDelete: Scalars['Boolean'];
|
|
14439
14751
|
publicShopLibraryPageForceDelete: Scalars['Boolean'];
|
|
@@ -14457,6 +14769,7 @@ type Mutation = {
|
|
|
14457
14769
|
saleFunnelDiscountCreateOrUpdate?: Maybe<SaleFunnelDiscount>;
|
|
14458
14770
|
saleFunnelDiscountDelete: Scalars['Boolean'];
|
|
14459
14771
|
saleFunnelDuplicate?: Maybe<SaleFunnel>;
|
|
14772
|
+
saleFunnelDuplicateTo?: Maybe<SaleFunnel>;
|
|
14460
14773
|
saleFunnelMetaCreateOrUpdate?: Maybe<SaleFunnelMeta>;
|
|
14461
14774
|
saleFunnelMetaDelete: Scalars['Boolean'];
|
|
14462
14775
|
saleFunnelOfferCreate?: Maybe<SaleFunnelOffer>;
|
|
@@ -14464,9 +14777,11 @@ type Mutation = {
|
|
|
14464
14777
|
saleFunnelOfferPublish: Scalars['Boolean'];
|
|
14465
14778
|
saleFunnelOfferUnPublish: Scalars['Boolean'];
|
|
14466
14779
|
saleFunnelOfferUpdate?: Maybe<SaleFunnelOffer>;
|
|
14780
|
+
saleFunnelPublish: Scalars['Boolean'];
|
|
14467
14781
|
saleFunnelRedirectCreate?: Maybe<SaleFunnelRedirect>;
|
|
14468
14782
|
saleFunnelRedirectDelete: Scalars['Boolean'];
|
|
14469
14783
|
saleFunnelRedirectUpdate?: Maybe<SaleFunnelRedirect>;
|
|
14784
|
+
saleFunnelReplaceComponentData: Scalars['Boolean'];
|
|
14470
14785
|
saleFunnelTriggerCreate?: Maybe<SaleFunnelTrigger>;
|
|
14471
14786
|
saleFunnelTriggerDelete: Scalars['Boolean'];
|
|
14472
14787
|
saleFunnelUpdate?: Maybe<SaleFunnel>;
|
|
@@ -14500,6 +14815,7 @@ type Mutation = {
|
|
|
14500
14815
|
shopLibraryThemeUpdate: ShopLibraryTheme;
|
|
14501
14816
|
shopMetaCreateOrUpdate?: Maybe<ShopMeta>;
|
|
14502
14817
|
shopMetaDelete: Scalars['Boolean'];
|
|
14818
|
+
shopMigrateGemPagesHelperExtension: Scalars['Boolean'];
|
|
14503
14819
|
shopPageCounterCreateOrUpdate: Scalars['Boolean'];
|
|
14504
14820
|
shopPlatformConnect?: Maybe<Scalars['String']>;
|
|
14505
14821
|
shopPlatformDisconnect: Scalars['Boolean'];
|
|
@@ -14550,6 +14866,7 @@ type Mutation = {
|
|
|
14550
14866
|
themePageMetaBatchUpsert: Scalars['Boolean'];
|
|
14551
14867
|
themePageMetaCreateOrUpdate?: Maybe<ThemePageMeta>;
|
|
14552
14868
|
themePageMetaDelete: Scalars['Boolean'];
|
|
14869
|
+
themePageOnlineStoreDataAppend?: Maybe<ThemePageOnlineStoreData>;
|
|
14553
14870
|
themePageOnlineStoreDataCreate?: Maybe<ThemePageOnlineStoreData>;
|
|
14554
14871
|
themePageOnlineStoreDataDelete: Scalars['Boolean'];
|
|
14555
14872
|
themePageOnlineStoreDataRemoveObjectBaseIDs: Scalars['Boolean'];
|
|
@@ -14715,17 +15032,9 @@ type MutationFileRestoreArgs = {
|
|
|
14715
15032
|
type MutationFileRestoreByBkFileKeyArgs = {
|
|
14716
15033
|
key: Scalars['String'];
|
|
14717
15034
|
plan: ShopifyPlan;
|
|
14718
|
-
shopID: Scalars['ID'];
|
|
14719
|
-
};
|
|
14720
|
-
type MutationFileUploadArgs = {
|
|
14721
|
-
background?: InputMaybe<Scalars['Boolean']>;
|
|
14722
|
-
file: Scalars['Upload'];
|
|
14723
|
-
shopID: Scalars['ID'];
|
|
14724
|
-
storage: FileStorage;
|
|
14725
15035
|
};
|
|
14726
15036
|
type MutationFileUploadByUrlArgs = {
|
|
14727
15037
|
plan: ShopifyPlan;
|
|
14728
|
-
shopID: Scalars['ID'];
|
|
14729
15038
|
url: Scalars['String'];
|
|
14730
15039
|
};
|
|
14731
15040
|
type MutationFontDeleteArgs = {
|
|
@@ -14815,6 +15124,22 @@ type MutationLibraryTemplateUpdateArgs = {
|
|
|
14815
15124
|
type MutationMakeStyleGlobalArgs = {
|
|
14816
15125
|
id: Scalars['ID'];
|
|
14817
15126
|
};
|
|
15127
|
+
type MutationPageInteractionCreateArgs = {
|
|
15128
|
+
input: CreatePageInteractionInput;
|
|
15129
|
+
};
|
|
15130
|
+
type MutationPageInteractionDeleteArgs = {
|
|
15131
|
+
id: Scalars['ID'];
|
|
15132
|
+
};
|
|
15133
|
+
type MutationPageInteractionPreviewArgs = {
|
|
15134
|
+
id: Scalars['ID'];
|
|
15135
|
+
};
|
|
15136
|
+
type MutationPageInteractionPublishArgs = {
|
|
15137
|
+
id: Scalars['ID'];
|
|
15138
|
+
};
|
|
15139
|
+
type MutationPageInteractionUpdateArgs = {
|
|
15140
|
+
id: Scalars['ID'];
|
|
15141
|
+
input: UpdatePageInteractionInput;
|
|
15142
|
+
};
|
|
14818
15143
|
type MutationPageSectionBulkCreateArgs = {
|
|
14819
15144
|
sections?: InputMaybe<Array<InputMaybe<CreatePageSectionInput>>>;
|
|
14820
15145
|
themePageID: Scalars['ID'];
|
|
@@ -14850,6 +15175,12 @@ type MutationPageSectionsBulkUpdateArgs = {
|
|
|
14850
15175
|
type MutationPageViewUpArgs = {
|
|
14851
15176
|
pageHandle: Scalars['String'];
|
|
14852
15177
|
};
|
|
15178
|
+
type MutationPlatformOriginalTemplateDeleteArgs = {
|
|
15179
|
+
themePageID: Scalars['ID'];
|
|
15180
|
+
};
|
|
15181
|
+
type MutationPlatformOriginalTemplateResetArgs = {
|
|
15182
|
+
themePageID: Scalars['ID'];
|
|
15183
|
+
};
|
|
14853
15184
|
type MutationPlatformOriginalTemplateSyncArgs = {
|
|
14854
15185
|
themePageID: Scalars['ID'];
|
|
14855
15186
|
};
|
|
@@ -14857,6 +15188,30 @@ type MutationPlatformOriginalTemplateUpsertArgs = {
|
|
|
14857
15188
|
input: CreatePlatformOriginalTemplateInput;
|
|
14858
15189
|
themePageID: Scalars['ID'];
|
|
14859
15190
|
};
|
|
15191
|
+
type MutationProductDiscountActivateArgs = {
|
|
15192
|
+
id: Scalars['ID'];
|
|
15193
|
+
};
|
|
15194
|
+
type MutationProductDiscountCreateArgs = {
|
|
15195
|
+
productDiscountInput: CreateProductDiscountInput;
|
|
15196
|
+
productDiscountObjectInputs: Array<CreateProductDiscountObjectInput>;
|
|
15197
|
+
};
|
|
15198
|
+
type MutationProductDiscountDeactivateArgs = {
|
|
15199
|
+
id: Scalars['ID'];
|
|
15200
|
+
};
|
|
15201
|
+
type MutationProductDiscountDeleteArgs = {
|
|
15202
|
+
id: Scalars['ID'];
|
|
15203
|
+
};
|
|
15204
|
+
type MutationProductDiscountDuplicateArgs = {
|
|
15205
|
+
id: Scalars['ID'];
|
|
15206
|
+
};
|
|
15207
|
+
type MutationProductDiscountSyncArgs = {
|
|
15208
|
+
id: Scalars['ID'];
|
|
15209
|
+
};
|
|
15210
|
+
type MutationProductDiscountUpdateArgs = {
|
|
15211
|
+
id: Scalars['ID'];
|
|
15212
|
+
productDiscountInput: UpdateProductDiscountInput;
|
|
15213
|
+
productDiscountObjectInputs?: InputMaybe<Array<CreateProductDiscountObjectInput>>;
|
|
15214
|
+
};
|
|
14860
15215
|
type MutationPublicShopLibraryPageCreateArgs = {
|
|
14861
15216
|
input: CreateShopLibraryPageInput;
|
|
14862
15217
|
};
|
|
@@ -14929,6 +15284,11 @@ type MutationSaleFunnelDuplicateArgs = {
|
|
|
14929
15284
|
id: Scalars['ID'];
|
|
14930
15285
|
name?: InputMaybe<Scalars['String']>;
|
|
14931
15286
|
};
|
|
15287
|
+
type MutationSaleFunnelDuplicateToArgs = {
|
|
15288
|
+
fromLibraryID: Scalars['ID'];
|
|
15289
|
+
name?: InputMaybe<Scalars['String']>;
|
|
15290
|
+
toID: Scalars['ID'];
|
|
15291
|
+
};
|
|
14932
15292
|
type MutationSaleFunnelMetaCreateOrUpdateArgs = {
|
|
14933
15293
|
SaleFunnelID: Scalars['ID'];
|
|
14934
15294
|
input: CreateSaleFunnelMetaInput;
|
|
@@ -14953,6 +15313,9 @@ type MutationSaleFunnelOfferUpdateArgs = {
|
|
|
14953
15313
|
id: Scalars['ID'];
|
|
14954
15314
|
input: UpdateSaleFunnelOfferInput;
|
|
14955
15315
|
};
|
|
15316
|
+
type MutationSaleFunnelPublishArgs = {
|
|
15317
|
+
id: Scalars['ID'];
|
|
15318
|
+
};
|
|
14956
15319
|
type MutationSaleFunnelRedirectCreateArgs = {
|
|
14957
15320
|
input: CreateSaleFunnelRedirectInput;
|
|
14958
15321
|
};
|
|
@@ -14963,6 +15326,9 @@ type MutationSaleFunnelRedirectUpdateArgs = {
|
|
|
14963
15326
|
id: Scalars['ID'];
|
|
14964
15327
|
input: UpdateSaleFunnelRedirectInput;
|
|
14965
15328
|
};
|
|
15329
|
+
type MutationSaleFunnelReplaceComponentDataArgs = {
|
|
15330
|
+
input: SaleFunnelReplaceComponentDataInput;
|
|
15331
|
+
};
|
|
14966
15332
|
type MutationSaleFunnelTriggerCreateArgs = {
|
|
14967
15333
|
input: CreateSaleFunnelTriggerInput;
|
|
14968
15334
|
};
|
|
@@ -15238,6 +15604,9 @@ type MutationThemePageMetaDeleteArgs = {
|
|
|
15238
15604
|
key: Array<Scalars['String']>;
|
|
15239
15605
|
themePageID: Scalars['ID'];
|
|
15240
15606
|
};
|
|
15607
|
+
type MutationThemePageOnlineStoreDataAppendArgs = {
|
|
15608
|
+
input: CreateThemePageOnlineStoreDataInput;
|
|
15609
|
+
};
|
|
15241
15610
|
type MutationThemePageOnlineStoreDataCreateArgs = {
|
|
15242
15611
|
input: CreateThemePageOnlineStoreDataInput;
|
|
15243
15612
|
};
|
|
@@ -15276,7 +15645,8 @@ type MutationThemePageUnPublishArgs = {
|
|
|
15276
15645
|
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
15277
15646
|
};
|
|
15278
15647
|
type MutationThemePageUnsetDefaultArgs = {
|
|
15279
|
-
|
|
15648
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
15649
|
+
type?: InputMaybe<ThemePageType>;
|
|
15280
15650
|
};
|
|
15281
15651
|
type MutationThemePageUpdateArgs = {
|
|
15282
15652
|
id: Scalars['ID'];
|
|
@@ -15385,7 +15755,6 @@ type MutationUserMetaCreateOrUpdateArgs = {
|
|
|
15385
15755
|
type MutationUserMetaDeleteArgs = {
|
|
15386
15756
|
key: Array<InputMaybe<Scalars['String']>>;
|
|
15387
15757
|
};
|
|
15388
|
-
type ObjectType = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'PAGE' | 'PRODUCT' | 'PRODUCT_VARIANT' | 'SHOP';
|
|
15389
15758
|
type OrderDirection = 'ASC' | 'DESC';
|
|
15390
15759
|
type OrderFields = 'ACCEPTED' | 'AOV' | 'AOV_INCREASE' | 'CHECKOUT_REVENUE' | 'CONVERSION_RATE' | 'OFFER_REVENUE' | 'REVENUE' | 'VIEW';
|
|
15391
15760
|
type OrderTriggerCondition = {
|
|
@@ -15421,6 +15790,79 @@ type PageInfo = {
|
|
|
15421
15790
|
hasPreviousPage: Scalars['Boolean'];
|
|
15422
15791
|
startCursor?: Maybe<Scalars['Cursor']>;
|
|
15423
15792
|
};
|
|
15793
|
+
type PageInteraction = {
|
|
15794
|
+
createdAt?: Maybe<Scalars['Time']>;
|
|
15795
|
+
deletedAt?: Maybe<Scalars['Time']>;
|
|
15796
|
+
id: Scalars['ID'];
|
|
15797
|
+
updatedAt?: Maybe<Scalars['Time']>;
|
|
15798
|
+
value: Array<Scalars['Map']>;
|
|
15799
|
+
};
|
|
15800
|
+
/**
|
|
15801
|
+
* PageInteractionWhereInput is used for filtering PageInteraction objects.
|
|
15802
|
+
* Input was generated by ent.
|
|
15803
|
+
*/
|
|
15804
|
+
type PageInteractionWhereInput = {
|
|
15805
|
+
and?: InputMaybe<Array<PageInteractionWhereInput>>;
|
|
15806
|
+
/** created_at field predicates */
|
|
15807
|
+
createdAt?: InputMaybe<Scalars['Time']>;
|
|
15808
|
+
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
15809
|
+
createdAtGTE?: InputMaybe<Scalars['Time']>;
|
|
15810
|
+
createdAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
15811
|
+
createdAtLT?: InputMaybe<Scalars['Time']>;
|
|
15812
|
+
createdAtLTE?: InputMaybe<Scalars['Time']>;
|
|
15813
|
+
createdAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
15814
|
+
createdAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
15815
|
+
/** deleted_at field predicates */
|
|
15816
|
+
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
15817
|
+
deletedAtGT?: InputMaybe<Scalars['Time']>;
|
|
15818
|
+
deletedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
15819
|
+
deletedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
15820
|
+
deletedAtIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
15821
|
+
deletedAtLT?: InputMaybe<Scalars['Time']>;
|
|
15822
|
+
deletedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
15823
|
+
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
15824
|
+
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
15825
|
+
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
15826
|
+
/** page edge predicates */
|
|
15827
|
+
hasPage?: InputMaybe<Scalars['Boolean']>;
|
|
15828
|
+
hasPageWith?: InputMaybe<Array<ThemePageWhereInput>>;
|
|
15829
|
+
/** id field predicates */
|
|
15830
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
15831
|
+
idGT?: InputMaybe<Scalars['ID']>;
|
|
15832
|
+
idGTE?: InputMaybe<Scalars['ID']>;
|
|
15833
|
+
idIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
15834
|
+
idLT?: InputMaybe<Scalars['ID']>;
|
|
15835
|
+
idLTE?: InputMaybe<Scalars['ID']>;
|
|
15836
|
+
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
15837
|
+
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
15838
|
+
not?: InputMaybe<PageInteractionWhereInput>;
|
|
15839
|
+
or?: InputMaybe<Array<PageInteractionWhereInput>>;
|
|
15840
|
+
/** page_id field predicates */
|
|
15841
|
+
pageID?: InputMaybe<Scalars['ID']>;
|
|
15842
|
+
pageIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
15843
|
+
pageIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
15844
|
+
pageIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
15845
|
+
/** shop_id field predicates */
|
|
15846
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
15847
|
+
shopIDGT?: InputMaybe<Scalars['ID']>;
|
|
15848
|
+
shopIDGTE?: InputMaybe<Scalars['ID']>;
|
|
15849
|
+
shopIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
15850
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
15851
|
+
shopIDLT?: InputMaybe<Scalars['ID']>;
|
|
15852
|
+
shopIDLTE?: InputMaybe<Scalars['ID']>;
|
|
15853
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
15854
|
+
shopIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
15855
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
15856
|
+
/** updated_at field predicates */
|
|
15857
|
+
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
15858
|
+
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
15859
|
+
updatedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
15860
|
+
updatedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
15861
|
+
updatedAtLT?: InputMaybe<Scalars['Time']>;
|
|
15862
|
+
updatedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
15863
|
+
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
15864
|
+
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
15865
|
+
};
|
|
15424
15866
|
type PageOrder = {
|
|
15425
15867
|
direction: OrderDirection;
|
|
15426
15868
|
field?: InputMaybe<PageOrderField>;
|
|
@@ -15445,7 +15887,9 @@ type PageSection = {
|
|
|
15445
15887
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
15446
15888
|
libraryPosition?: Maybe<Scalars['Int']>;
|
|
15447
15889
|
librarySection?: Maybe<LibrarySection>;
|
|
15890
|
+
metafields?: Maybe<Array<Maybe<PageSectionMeta>>>;
|
|
15448
15891
|
name: Scalars['String'];
|
|
15892
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
15449
15893
|
pageSectionMetas?: Maybe<PageSectionMetaConnection>;
|
|
15450
15894
|
shopLibrary?: Maybe<ShopLibrarySection>;
|
|
15451
15895
|
updatedAt?: Maybe<Scalars['Time']>;
|
|
@@ -15533,7 +15977,7 @@ type PageSectionMetaWhereInput = {
|
|
|
15533
15977
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
15534
15978
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
15535
15979
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
15536
|
-
/**
|
|
15980
|
+
/** page_section edge predicates */
|
|
15537
15981
|
hasPageSection?: InputMaybe<Scalars['Boolean']>;
|
|
15538
15982
|
hasPageSectionWith?: InputMaybe<Array<PageSectionWhereInput>>;
|
|
15539
15983
|
/** id field predicates */
|
|
@@ -15767,6 +16211,22 @@ type PageSectionWhereInput = {
|
|
|
15767
16211
|
appBlocksNEQ?: InputMaybe<Scalars['String']>;
|
|
15768
16212
|
appBlocksNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
15769
16213
|
appBlocksNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
16214
|
+
/** checksum field predicates */
|
|
16215
|
+
checksum?: InputMaybe<Scalars['String']>;
|
|
16216
|
+
checksumContains?: InputMaybe<Scalars['String']>;
|
|
16217
|
+
checksumContainsFold?: InputMaybe<Scalars['String']>;
|
|
16218
|
+
checksumEqualFold?: InputMaybe<Scalars['String']>;
|
|
16219
|
+
checksumGT?: InputMaybe<Scalars['String']>;
|
|
16220
|
+
checksumGTE?: InputMaybe<Scalars['String']>;
|
|
16221
|
+
checksumHasPrefix?: InputMaybe<Scalars['String']>;
|
|
16222
|
+
checksumHasSuffix?: InputMaybe<Scalars['String']>;
|
|
16223
|
+
checksumIn?: InputMaybe<Array<Scalars['String']>>;
|
|
16224
|
+
checksumIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
16225
|
+
checksumLT?: InputMaybe<Scalars['String']>;
|
|
16226
|
+
checksumLTE?: InputMaybe<Scalars['String']>;
|
|
16227
|
+
checksumNEQ?: InputMaybe<Scalars['String']>;
|
|
16228
|
+
checksumNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
16229
|
+
checksumNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
15770
16230
|
/** cid field predicates */
|
|
15771
16231
|
cid?: InputMaybe<Scalars['String']>;
|
|
15772
16232
|
cidContains?: InputMaybe<Scalars['String']>;
|
|
@@ -15850,9 +16310,9 @@ type PageSectionWhereInput = {
|
|
|
15850
16310
|
/** librarySection edge predicates */
|
|
15851
16311
|
hasLibrarySection?: InputMaybe<Scalars['Boolean']>;
|
|
15852
16312
|
hasLibrarySectionWith?: InputMaybe<Array<LibrarySectionWhereInput>>;
|
|
15853
|
-
/**
|
|
15854
|
-
|
|
15855
|
-
|
|
16313
|
+
/** metafields edge predicates */
|
|
16314
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
16315
|
+
hasMetafieldsWith?: InputMaybe<Array<PageSectionMetaWhereInput>>;
|
|
15856
16316
|
/** pageSectionVersions edge predicates */
|
|
15857
16317
|
hasPageSectionVersions?: InputMaybe<Scalars['Boolean']>;
|
|
15858
16318
|
hasPageSectionVersionsWith?: InputMaybe<Array<PageSectionVersionWhereInput>>;
|
|
@@ -16098,8 +16558,9 @@ type PayloadInfo = {
|
|
|
16098
16558
|
};
|
|
16099
16559
|
type Platform = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
16100
16560
|
type PlatformOriginalTemplate = {
|
|
16101
|
-
content: Scalars['
|
|
16561
|
+
content: Scalars['Map'];
|
|
16102
16562
|
id: Scalars['ID'];
|
|
16563
|
+
localesDefaultSchema?: Maybe<Scalars['Map']>;
|
|
16103
16564
|
themePage: ThemePage;
|
|
16104
16565
|
};
|
|
16105
16566
|
/**
|
|
@@ -16108,20 +16569,6 @@ type PlatformOriginalTemplate = {
|
|
|
16108
16569
|
*/
|
|
16109
16570
|
type PlatformOriginalTemplateWhereInput = {
|
|
16110
16571
|
and?: InputMaybe<Array<PlatformOriginalTemplateWhereInput>>;
|
|
16111
|
-
/** content field predicates */
|
|
16112
|
-
content?: InputMaybe<Scalars['String']>;
|
|
16113
|
-
contentContains?: InputMaybe<Scalars['String']>;
|
|
16114
|
-
contentContainsFold?: InputMaybe<Scalars['String']>;
|
|
16115
|
-
contentEqualFold?: InputMaybe<Scalars['String']>;
|
|
16116
|
-
contentGT?: InputMaybe<Scalars['String']>;
|
|
16117
|
-
contentGTE?: InputMaybe<Scalars['String']>;
|
|
16118
|
-
contentHasPrefix?: InputMaybe<Scalars['String']>;
|
|
16119
|
-
contentHasSuffix?: InputMaybe<Scalars['String']>;
|
|
16120
|
-
contentIn?: InputMaybe<Array<Scalars['String']>>;
|
|
16121
|
-
contentLT?: InputMaybe<Scalars['String']>;
|
|
16122
|
-
contentLTE?: InputMaybe<Scalars['String']>;
|
|
16123
|
-
contentNEQ?: InputMaybe<Scalars['String']>;
|
|
16124
|
-
contentNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
16125
16572
|
/** created_at field predicates */
|
|
16126
16573
|
createdAt?: InputMaybe<Scalars['Time']>;
|
|
16127
16574
|
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -16692,15 +17139,285 @@ type ProductVariantsArgs = {
|
|
|
16692
17139
|
orderBy?: InputMaybe<ProductVariantOrder>;
|
|
16693
17140
|
where?: InputMaybe<ProductVariantWhereInput>;
|
|
16694
17141
|
};
|
|
17142
|
+
type ProductComponent = {
|
|
17143
|
+
initialVariantBaseID?: InputMaybe<Scalars['String']>;
|
|
17144
|
+
productBaseID?: InputMaybe<Scalars['String']>;
|
|
17145
|
+
productHandle?: InputMaybe<Scalars['String']>;
|
|
17146
|
+
productStatus?: InputMaybe<Scalars['String']>;
|
|
17147
|
+
};
|
|
16695
17148
|
type ProductConnection = {
|
|
16696
17149
|
edges: Array<ProductEdge>;
|
|
16697
17150
|
pageInfo?: Maybe<PageInfo>;
|
|
16698
17151
|
totalCount?: Maybe<Scalars['Int']>;
|
|
16699
17152
|
};
|
|
17153
|
+
type ProductDiscount = {
|
|
17154
|
+
baseID?: Maybe<Scalars['String']>;
|
|
17155
|
+
createdAt?: Maybe<Scalars['Time']>;
|
|
17156
|
+
deletedAt?: Maybe<Scalars['Time']>;
|
|
17157
|
+
details: Array<Scalars['Map']>;
|
|
17158
|
+
id: Scalars['ID'];
|
|
17159
|
+
isPublished?: Maybe<Scalars['Boolean']>;
|
|
17160
|
+
name: Scalars['String'];
|
|
17161
|
+
productDiscountObjects?: Maybe<Array<ProductDiscountObject>>;
|
|
17162
|
+
publishedAt?: Maybe<Scalars['Time']>;
|
|
17163
|
+
type: ProductDiscountType;
|
|
17164
|
+
updatedAt?: Maybe<Scalars['Time']>;
|
|
17165
|
+
};
|
|
17166
|
+
type ProductDiscountConnection = {
|
|
17167
|
+
edges?: Maybe<Array<Maybe<ProductDiscountEdge>>>;
|
|
17168
|
+
pageInfo: PageInfo;
|
|
17169
|
+
totalCount: Scalars['Int'];
|
|
17170
|
+
};
|
|
17171
|
+
type ProductDiscountEdge = {
|
|
17172
|
+
cursor: Scalars['Cursor'];
|
|
17173
|
+
node?: Maybe<ProductDiscount>;
|
|
17174
|
+
};
|
|
17175
|
+
type ProductDiscountObject = {
|
|
17176
|
+
createdAt?: Maybe<Scalars['Time']>;
|
|
17177
|
+
deletedAt?: Maybe<Scalars['Time']>;
|
|
17178
|
+
id: Scalars['ID'];
|
|
17179
|
+
objectBaseID: Scalars['String'];
|
|
17180
|
+
objectID: Scalars['ID'];
|
|
17181
|
+
productDiscountID: Scalars['ID'];
|
|
17182
|
+
shopID: Scalars['ID'];
|
|
17183
|
+
type: ProductDiscountObjectType;
|
|
17184
|
+
updatedAt?: Maybe<Scalars['Time']>;
|
|
17185
|
+
};
|
|
17186
|
+
type ProductDiscountObjectConnection = {
|
|
17187
|
+
edges?: Maybe<Array<Maybe<ProductDiscountObjectEdge>>>;
|
|
17188
|
+
pageInfo: PageInfo;
|
|
17189
|
+
totalCount: Scalars['Int'];
|
|
17190
|
+
};
|
|
17191
|
+
type ProductDiscountObjectEdge = {
|
|
17192
|
+
cursor: Scalars['Cursor'];
|
|
17193
|
+
node?: Maybe<ProductDiscountObject>;
|
|
17194
|
+
};
|
|
17195
|
+
type ProductDiscountObjectOrder = {
|
|
17196
|
+
direction: OrderDirection;
|
|
17197
|
+
field?: InputMaybe<ProductDiscountObjectOrderField>;
|
|
17198
|
+
};
|
|
17199
|
+
type ProductDiscountObjectOrderField = 'CREATED_AT' | 'UPDATED_AT';
|
|
17200
|
+
type ProductDiscountObjectType = 'COLLECTION' | 'PRODUCT' | 'SHOP';
|
|
17201
|
+
/**
|
|
17202
|
+
* ProductDiscountObjectWhereInput is used for filtering ProductDiscountObject objects.
|
|
17203
|
+
* Input was generated by ent.
|
|
17204
|
+
*/
|
|
17205
|
+
type ProductDiscountObjectWhereInput = {
|
|
17206
|
+
and?: InputMaybe<Array<ProductDiscountObjectWhereInput>>;
|
|
17207
|
+
/** created_at field predicates */
|
|
17208
|
+
createdAt?: InputMaybe<Scalars['Time']>;
|
|
17209
|
+
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
17210
|
+
createdAtGTE?: InputMaybe<Scalars['Time']>;
|
|
17211
|
+
createdAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17212
|
+
createdAtLT?: InputMaybe<Scalars['Time']>;
|
|
17213
|
+
createdAtLTE?: InputMaybe<Scalars['Time']>;
|
|
17214
|
+
createdAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
17215
|
+
createdAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17216
|
+
/** deleted_at field predicates */
|
|
17217
|
+
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
17218
|
+
deletedAtGT?: InputMaybe<Scalars['Time']>;
|
|
17219
|
+
deletedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
17220
|
+
deletedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17221
|
+
deletedAtIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
17222
|
+
deletedAtLT?: InputMaybe<Scalars['Time']>;
|
|
17223
|
+
deletedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
17224
|
+
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
17225
|
+
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17226
|
+
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
17227
|
+
/** product_discount edge predicates */
|
|
17228
|
+
hasProductDiscount?: InputMaybe<Scalars['Boolean']>;
|
|
17229
|
+
hasProductDiscountWith?: InputMaybe<Array<ProductDiscountWhereInput>>;
|
|
17230
|
+
/** id field predicates */
|
|
17231
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
17232
|
+
idGT?: InputMaybe<Scalars['ID']>;
|
|
17233
|
+
idGTE?: InputMaybe<Scalars['ID']>;
|
|
17234
|
+
idIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17235
|
+
idLT?: InputMaybe<Scalars['ID']>;
|
|
17236
|
+
idLTE?: InputMaybe<Scalars['ID']>;
|
|
17237
|
+
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
17238
|
+
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17239
|
+
not?: InputMaybe<ProductDiscountObjectWhereInput>;
|
|
17240
|
+
/** object_base_id field predicates */
|
|
17241
|
+
objectBaseID?: InputMaybe<Scalars['String']>;
|
|
17242
|
+
objectBaseIDContains?: InputMaybe<Scalars['String']>;
|
|
17243
|
+
objectBaseIDContainsFold?: InputMaybe<Scalars['String']>;
|
|
17244
|
+
objectBaseIDEqualFold?: InputMaybe<Scalars['String']>;
|
|
17245
|
+
objectBaseIDGT?: InputMaybe<Scalars['String']>;
|
|
17246
|
+
objectBaseIDGTE?: InputMaybe<Scalars['String']>;
|
|
17247
|
+
objectBaseIDHasPrefix?: InputMaybe<Scalars['String']>;
|
|
17248
|
+
objectBaseIDHasSuffix?: InputMaybe<Scalars['String']>;
|
|
17249
|
+
objectBaseIDIn?: InputMaybe<Array<Scalars['String']>>;
|
|
17250
|
+
objectBaseIDLT?: InputMaybe<Scalars['String']>;
|
|
17251
|
+
objectBaseIDLTE?: InputMaybe<Scalars['String']>;
|
|
17252
|
+
objectBaseIDNEQ?: InputMaybe<Scalars['String']>;
|
|
17253
|
+
objectBaseIDNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
17254
|
+
/** object_id field predicates */
|
|
17255
|
+
objectID?: InputMaybe<Scalars['ID']>;
|
|
17256
|
+
objectIDGT?: InputMaybe<Scalars['ID']>;
|
|
17257
|
+
objectIDGTE?: InputMaybe<Scalars['ID']>;
|
|
17258
|
+
objectIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17259
|
+
objectIDLT?: InputMaybe<Scalars['ID']>;
|
|
17260
|
+
objectIDLTE?: InputMaybe<Scalars['ID']>;
|
|
17261
|
+
objectIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
17262
|
+
objectIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17263
|
+
or?: InputMaybe<Array<ProductDiscountObjectWhereInput>>;
|
|
17264
|
+
/** product_discount_id field predicates */
|
|
17265
|
+
productDiscountID?: InputMaybe<Scalars['ID']>;
|
|
17266
|
+
productDiscountIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17267
|
+
productDiscountIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
17268
|
+
productDiscountIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17269
|
+
/** shop_id field predicates */
|
|
17270
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
17271
|
+
shopIDGT?: InputMaybe<Scalars['ID']>;
|
|
17272
|
+
shopIDGTE?: InputMaybe<Scalars['ID']>;
|
|
17273
|
+
shopIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17274
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
17275
|
+
shopIDLT?: InputMaybe<Scalars['ID']>;
|
|
17276
|
+
shopIDLTE?: InputMaybe<Scalars['ID']>;
|
|
17277
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
17278
|
+
shopIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17279
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
17280
|
+
/** type field predicates */
|
|
17281
|
+
type?: InputMaybe<ProductDiscountObjectType>;
|
|
17282
|
+
typeIn?: InputMaybe<Array<ProductDiscountObjectType>>;
|
|
17283
|
+
typeNEQ?: InputMaybe<ProductDiscountObjectType>;
|
|
17284
|
+
typeNotIn?: InputMaybe<Array<ProductDiscountObjectType>>;
|
|
17285
|
+
/** updated_at field predicates */
|
|
17286
|
+
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
17287
|
+
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
17288
|
+
updatedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
17289
|
+
updatedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17290
|
+
updatedAtLT?: InputMaybe<Scalars['Time']>;
|
|
17291
|
+
updatedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
17292
|
+
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
17293
|
+
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17294
|
+
};
|
|
17295
|
+
type ProductDiscountOrder = {
|
|
17296
|
+
direction: OrderDirection;
|
|
17297
|
+
field?: InputMaybe<ProductDiscountOrderField>;
|
|
17298
|
+
};
|
|
17299
|
+
type ProductDiscountOrderField = 'CREATED_AT' | 'UPDATED_AT';
|
|
17300
|
+
type ProductDiscountType = 'ALL_PRODUCTS' | 'SELECTED_COLLECTIONS' | 'SELECTED_PRODUCTS';
|
|
17301
|
+
/**
|
|
17302
|
+
* ProductDiscountWhereInput is used for filtering ProductDiscount objects.
|
|
17303
|
+
* Input was generated by ent.
|
|
17304
|
+
*/
|
|
17305
|
+
type ProductDiscountWhereInput = {
|
|
17306
|
+
and?: InputMaybe<Array<ProductDiscountWhereInput>>;
|
|
17307
|
+
/** base_id field predicates */
|
|
17308
|
+
baseID?: InputMaybe<Scalars['String']>;
|
|
17309
|
+
baseIDContains?: InputMaybe<Scalars['String']>;
|
|
17310
|
+
baseIDContainsFold?: InputMaybe<Scalars['String']>;
|
|
17311
|
+
baseIDEqualFold?: InputMaybe<Scalars['String']>;
|
|
17312
|
+
baseIDGT?: InputMaybe<Scalars['String']>;
|
|
17313
|
+
baseIDGTE?: InputMaybe<Scalars['String']>;
|
|
17314
|
+
baseIDHasPrefix?: InputMaybe<Scalars['String']>;
|
|
17315
|
+
baseIDHasSuffix?: InputMaybe<Scalars['String']>;
|
|
17316
|
+
baseIDIn?: InputMaybe<Array<Scalars['String']>>;
|
|
17317
|
+
baseIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
17318
|
+
baseIDLT?: InputMaybe<Scalars['String']>;
|
|
17319
|
+
baseIDLTE?: InputMaybe<Scalars['String']>;
|
|
17320
|
+
baseIDNEQ?: InputMaybe<Scalars['String']>;
|
|
17321
|
+
baseIDNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
17322
|
+
baseIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
17323
|
+
/** created_at field predicates */
|
|
17324
|
+
createdAt?: InputMaybe<Scalars['Time']>;
|
|
17325
|
+
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
17326
|
+
createdAtGTE?: InputMaybe<Scalars['Time']>;
|
|
17327
|
+
createdAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17328
|
+
createdAtLT?: InputMaybe<Scalars['Time']>;
|
|
17329
|
+
createdAtLTE?: InputMaybe<Scalars['Time']>;
|
|
17330
|
+
createdAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
17331
|
+
createdAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17332
|
+
/** deleted_at field predicates */
|
|
17333
|
+
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
17334
|
+
deletedAtGT?: InputMaybe<Scalars['Time']>;
|
|
17335
|
+
deletedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
17336
|
+
deletedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17337
|
+
deletedAtIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
17338
|
+
deletedAtLT?: InputMaybe<Scalars['Time']>;
|
|
17339
|
+
deletedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
17340
|
+
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
17341
|
+
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17342
|
+
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
17343
|
+
/** product_discount_objects edge predicates */
|
|
17344
|
+
hasProductDiscountObjects?: InputMaybe<Scalars['Boolean']>;
|
|
17345
|
+
hasProductDiscountObjectsWith?: InputMaybe<Array<ProductDiscountObjectWhereInput>>;
|
|
17346
|
+
/** id field predicates */
|
|
17347
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
17348
|
+
idGT?: InputMaybe<Scalars['ID']>;
|
|
17349
|
+
idGTE?: InputMaybe<Scalars['ID']>;
|
|
17350
|
+
idIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17351
|
+
idLT?: InputMaybe<Scalars['ID']>;
|
|
17352
|
+
idLTE?: InputMaybe<Scalars['ID']>;
|
|
17353
|
+
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
17354
|
+
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17355
|
+
/** is_published field predicates */
|
|
17356
|
+
isPublished?: InputMaybe<Scalars['Boolean']>;
|
|
17357
|
+
isPublishedNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
17358
|
+
/** name field predicates */
|
|
17359
|
+
name?: InputMaybe<Scalars['String']>;
|
|
17360
|
+
nameContains?: InputMaybe<Scalars['String']>;
|
|
17361
|
+
nameContainsFold?: InputMaybe<Scalars['String']>;
|
|
17362
|
+
nameEqualFold?: InputMaybe<Scalars['String']>;
|
|
17363
|
+
nameGT?: InputMaybe<Scalars['String']>;
|
|
17364
|
+
nameGTE?: InputMaybe<Scalars['String']>;
|
|
17365
|
+
nameHasPrefix?: InputMaybe<Scalars['String']>;
|
|
17366
|
+
nameHasSuffix?: InputMaybe<Scalars['String']>;
|
|
17367
|
+
nameIn?: InputMaybe<Array<Scalars['String']>>;
|
|
17368
|
+
nameLT?: InputMaybe<Scalars['String']>;
|
|
17369
|
+
nameLTE?: InputMaybe<Scalars['String']>;
|
|
17370
|
+
nameNEQ?: InputMaybe<Scalars['String']>;
|
|
17371
|
+
nameNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
17372
|
+
not?: InputMaybe<ProductDiscountWhereInput>;
|
|
17373
|
+
or?: InputMaybe<Array<ProductDiscountWhereInput>>;
|
|
17374
|
+
/** published_at field predicates */
|
|
17375
|
+
publishedAt?: InputMaybe<Scalars['Time']>;
|
|
17376
|
+
publishedAtGT?: InputMaybe<Scalars['Time']>;
|
|
17377
|
+
publishedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
17378
|
+
publishedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17379
|
+
publishedAtIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
17380
|
+
publishedAtLT?: InputMaybe<Scalars['Time']>;
|
|
17381
|
+
publishedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
17382
|
+
publishedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
17383
|
+
publishedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17384
|
+
publishedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
17385
|
+
/** shop_id field predicates */
|
|
17386
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
17387
|
+
shopIDGT?: InputMaybe<Scalars['ID']>;
|
|
17388
|
+
shopIDGTE?: InputMaybe<Scalars['ID']>;
|
|
17389
|
+
shopIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17390
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
17391
|
+
shopIDLT?: InputMaybe<Scalars['ID']>;
|
|
17392
|
+
shopIDLTE?: InputMaybe<Scalars['ID']>;
|
|
17393
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
17394
|
+
shopIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
17395
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
17396
|
+
/** type field predicates */
|
|
17397
|
+
type?: InputMaybe<ProductDiscountType>;
|
|
17398
|
+
typeIn?: InputMaybe<Array<ProductDiscountType>>;
|
|
17399
|
+
typeNEQ?: InputMaybe<ProductDiscountType>;
|
|
17400
|
+
typeNotIn?: InputMaybe<Array<ProductDiscountType>>;
|
|
17401
|
+
/** updated_at field predicates */
|
|
17402
|
+
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
17403
|
+
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
17404
|
+
updatedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
17405
|
+
updatedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17406
|
+
updatedAtLT?: InputMaybe<Scalars['Time']>;
|
|
17407
|
+
updatedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
17408
|
+
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
17409
|
+
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17410
|
+
};
|
|
16700
17411
|
type ProductEdge = {
|
|
16701
17412
|
cursor: Scalars['Cursor'];
|
|
16702
17413
|
node?: Maybe<Product>;
|
|
16703
17414
|
};
|
|
17415
|
+
type ProductListComponent = {
|
|
17416
|
+
collectionBaseID?: InputMaybe<Scalars['String']>;
|
|
17417
|
+
productBaseIDs?: InputMaybe<Array<Scalars['String']>>;
|
|
17418
|
+
productHandles?: InputMaybe<Array<Scalars['String']>>;
|
|
17419
|
+
productSrc?: InputMaybe<Scalars['String']>;
|
|
17420
|
+
};
|
|
16704
17421
|
type ProductOption = {
|
|
16705
17422
|
baseID?: Maybe<Scalars['String']>;
|
|
16706
17423
|
id: Scalars['ID'];
|
|
@@ -17935,30 +18652,68 @@ type PublishedCustomSectionWhereInput = {
|
|
|
17935
18652
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
17936
18653
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17937
18654
|
};
|
|
17938
|
-
type
|
|
17939
|
-
component?: Maybe<Scalars['String']>;
|
|
18655
|
+
type PublishedPageInteraction = {
|
|
17940
18656
|
createdAt?: Maybe<Scalars['Time']>;
|
|
17941
18657
|
deletedAt?: Maybe<Scalars['Time']>;
|
|
17942
|
-
display?: Maybe<Scalars['Boolean']>;
|
|
17943
18658
|
id: Scalars['ID'];
|
|
17944
|
-
isMobile?: Maybe<Scalars['Boolean']>;
|
|
17945
|
-
name?: Maybe<Scalars['String']>;
|
|
17946
18659
|
updatedAt?: Maybe<Scalars['Time']>;
|
|
18660
|
+
value: Array<Scalars['Map']>;
|
|
17947
18661
|
};
|
|
17948
|
-
|
|
17949
|
-
|
|
17950
|
-
|
|
17951
|
-
|
|
17952
|
-
|
|
17953
|
-
|
|
17954
|
-
|
|
17955
|
-
|
|
17956
|
-
|
|
17957
|
-
|
|
17958
|
-
|
|
17959
|
-
|
|
18662
|
+
/**
|
|
18663
|
+
* PublishedPageInteractionWhereInput is used for filtering PublishedPageInteraction objects.
|
|
18664
|
+
* Input was generated by ent.
|
|
18665
|
+
*/
|
|
18666
|
+
type PublishedPageInteractionWhereInput = {
|
|
18667
|
+
and?: InputMaybe<Array<PublishedPageInteractionWhereInput>>;
|
|
18668
|
+
/** created_at field predicates */
|
|
18669
|
+
createdAt?: InputMaybe<Scalars['Time']>;
|
|
18670
|
+
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
18671
|
+
createdAtGTE?: InputMaybe<Scalars['Time']>;
|
|
18672
|
+
createdAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
18673
|
+
createdAtLT?: InputMaybe<Scalars['Time']>;
|
|
18674
|
+
createdAtLTE?: InputMaybe<Scalars['Time']>;
|
|
18675
|
+
createdAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
18676
|
+
createdAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
18677
|
+
/** deleted_at field predicates */
|
|
18678
|
+
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
18679
|
+
deletedAtGT?: InputMaybe<Scalars['Time']>;
|
|
18680
|
+
deletedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
18681
|
+
deletedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
18682
|
+
deletedAtIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
18683
|
+
deletedAtLT?: InputMaybe<Scalars['Time']>;
|
|
18684
|
+
deletedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
18685
|
+
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
18686
|
+
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
18687
|
+
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
18688
|
+
/** page edge predicates */
|
|
18689
|
+
hasPage?: InputMaybe<Scalars['Boolean']>;
|
|
18690
|
+
hasPageWith?: InputMaybe<Array<PublishedThemePageWhereInput>>;
|
|
18691
|
+
/** id field predicates */
|
|
18692
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
18693
|
+
idGT?: InputMaybe<Scalars['ID']>;
|
|
18694
|
+
idGTE?: InputMaybe<Scalars['ID']>;
|
|
18695
|
+
idIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
18696
|
+
idLT?: InputMaybe<Scalars['ID']>;
|
|
18697
|
+
idLTE?: InputMaybe<Scalars['ID']>;
|
|
18698
|
+
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
18699
|
+
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
18700
|
+
not?: InputMaybe<PublishedPageInteractionWhereInput>;
|
|
18701
|
+
or?: InputMaybe<Array<PublishedPageInteractionWhereInput>>;
|
|
18702
|
+
/** published_page_id field predicates */
|
|
18703
|
+
publishedPageID?: InputMaybe<Scalars['ID']>;
|
|
18704
|
+
publishedPageIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
18705
|
+
publishedPageIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
18706
|
+
publishedPageIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
18707
|
+
/** updated_at field predicates */
|
|
18708
|
+
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
18709
|
+
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
18710
|
+
updatedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
18711
|
+
updatedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
18712
|
+
updatedAtLT?: InputMaybe<Scalars['Time']>;
|
|
18713
|
+
updatedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
18714
|
+
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
18715
|
+
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17960
18716
|
};
|
|
17961
|
-
type PublishedGlobalSectionOrderField = 'CREATED_AT' | 'NAME' | 'POSITION' | 'UPDATED_AT';
|
|
17962
18717
|
type PublishedPageSection = {
|
|
17963
18718
|
cid?: Maybe<Scalars['String']>;
|
|
17964
18719
|
component?: Maybe<Scalars['String']>;
|
|
@@ -18563,6 +19318,7 @@ type PublishedThemePage = {
|
|
|
18563
19318
|
description?: Maybe<Scalars['String']>;
|
|
18564
19319
|
handle?: Maybe<Scalars['String']>;
|
|
18565
19320
|
id: Scalars['ID'];
|
|
19321
|
+
interaction?: Maybe<PublishedPageInteraction>;
|
|
18566
19322
|
isGlobal?: Maybe<Scalars['Boolean']>;
|
|
18567
19323
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
18568
19324
|
isSample?: Maybe<Scalars['Boolean']>;
|
|
@@ -18821,6 +19577,9 @@ type PublishedThemePageWhereInput = {
|
|
|
18821
19577
|
handleNEQ?: InputMaybe<Scalars['String']>;
|
|
18822
19578
|
handleNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
18823
19579
|
handleNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
19580
|
+
/** interaction edge predicates */
|
|
19581
|
+
hasInteraction?: InputMaybe<Scalars['Boolean']>;
|
|
19582
|
+
hasInteractionWith?: InputMaybe<Array<PublishedPageInteractionWhereInput>>;
|
|
18824
19583
|
/** offer edge predicates */
|
|
18825
19584
|
hasOffer?: InputMaybe<Scalars['Boolean']>;
|
|
18826
19585
|
hasOfferWith?: InputMaybe<Array<PublishedSaleFunnelOfferWhereInput>>;
|
|
@@ -18857,6 +19616,9 @@ type PublishedThemePageWhereInput = {
|
|
|
18857
19616
|
/** is_mobile field predicates */
|
|
18858
19617
|
isMobile?: InputMaybe<Scalars['Boolean']>;
|
|
18859
19618
|
isMobileNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
19619
|
+
/** is_platform_default field predicates */
|
|
19620
|
+
isPlatformDefault?: InputMaybe<Scalars['Boolean']>;
|
|
19621
|
+
isPlatformDefaultNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
18860
19622
|
/** is_sample field predicates */
|
|
18861
19623
|
isSample?: InputMaybe<Scalars['Boolean']>;
|
|
18862
19624
|
isSampleNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -19134,6 +19896,7 @@ type Query = {
|
|
|
19134
19896
|
blog?: Maybe<Blog>;
|
|
19135
19897
|
blogs?: Maybe<BlogConnection>;
|
|
19136
19898
|
campaignOfferStats?: Maybe<CampaignOfferStatConnection>;
|
|
19899
|
+
campaignOfferTotalStat?: Maybe<CampaignOfferStat>;
|
|
19137
19900
|
campaignVersions?: Maybe<CampaignVersionConnection>;
|
|
19138
19901
|
cart?: Maybe<Cart>;
|
|
19139
19902
|
collection?: Maybe<Collection>;
|
|
@@ -19173,9 +19936,14 @@ type Query = {
|
|
|
19173
19936
|
pageSections?: Maybe<Array<Maybe<PageSection>>>;
|
|
19174
19937
|
pageViews: Scalars['Int'];
|
|
19175
19938
|
pages?: Maybe<PageConnection>;
|
|
19939
|
+
platformOriginalTemplate?: Maybe<PlatformOriginalTemplate>;
|
|
19176
19940
|
platformPages: PlatformPageConnection;
|
|
19177
19941
|
previewPage?: Maybe<PublishedThemePage>;
|
|
19178
19942
|
product?: Maybe<Product>;
|
|
19943
|
+
productDiscount?: Maybe<ProductDiscount>;
|
|
19944
|
+
productDiscountObject?: Maybe<ProductDiscountObject>;
|
|
19945
|
+
productDiscountObjects?: Maybe<ProductDiscountObjectConnection>;
|
|
19946
|
+
productDiscounts?: Maybe<ProductDiscountConnection>;
|
|
19179
19947
|
productOptionName: Array<Scalars['String']>;
|
|
19180
19948
|
productOptionValueLabel: Array<Scalars['String']>;
|
|
19181
19949
|
productOptionValues?: Maybe<ProductOptionValueConnection>;
|
|
@@ -19187,10 +19955,6 @@ type Query = {
|
|
|
19187
19955
|
publicShopLibrarySections?: Maybe<ShopLibrarySectionConnection>;
|
|
19188
19956
|
publicShopLibraryTheme?: Maybe<ShopLibraryTheme>;
|
|
19189
19957
|
publicShopLibraryThemes?: Maybe<ShopLibraryThemeConnection>;
|
|
19190
|
-
/** @deprecated Use `publishedThemeSection` instead. */
|
|
19191
|
-
publishedGlobalSection?: Maybe<PublishedGlobalSection>;
|
|
19192
|
-
/** @deprecated Use `publishedThemeSections` instead. */
|
|
19193
|
-
publishedGlobalSections?: Maybe<PublishedGlobalSectionConnection>;
|
|
19194
19958
|
publishedThemePages?: Maybe<Array<Maybe<PublishedThemePage>>>;
|
|
19195
19959
|
publishedThemeSection?: Maybe<PublishedThemeSection>;
|
|
19196
19960
|
publishedThemeSections?: Maybe<PublishedThemeSectionConnection>;
|
|
@@ -19199,19 +19963,23 @@ type Query = {
|
|
|
19199
19963
|
saleFunnelCampaign?: Maybe<SaleFunnelCampaign>;
|
|
19200
19964
|
saleFunnelDiscount?: Maybe<SaleFunnelDiscount>;
|
|
19201
19965
|
saleFunnelDiscounts?: Maybe<SaleFunnelDiscountConnection>;
|
|
19966
|
+
saleFunnelLimitation?: Maybe<SaleFunnelLimitation>;
|
|
19202
19967
|
saleFunnelMetas?: Maybe<SaleFunnelMetaConnection>;
|
|
19203
19968
|
saleFunnelOffer?: Maybe<SaleFunnelOffer>;
|
|
19204
19969
|
saleFunnelOfferStats?: Maybe<SaleFunnelOfferStatConnection>;
|
|
19970
|
+
saleFunnelOfferTotalStat?: Maybe<SaleFunnelOfferStat>;
|
|
19205
19971
|
saleFunnelOffers?: Maybe<SaleFunnelOfferConnection>;
|
|
19206
19972
|
saleFunnelStats?: Maybe<SaleFunnelStatConnection>;
|
|
19207
19973
|
saleFunnelTotalStat?: Maybe<SaleFunnelStat>;
|
|
19208
19974
|
saleFunnels?: Maybe<SaleFunnelConnection>;
|
|
19209
19975
|
sectionCategories?: Maybe<Array<Maybe<SectionCategory>>>;
|
|
19976
|
+
shopCheckGemPagesHelperExtension: Scalars['Boolean'];
|
|
19210
19977
|
shopCurrentVersion?: Maybe<ShopCurrentVersion>;
|
|
19211
19978
|
shopDeploymentEvents?: Maybe<Array<Maybe<DeploymentEvent>>>;
|
|
19212
19979
|
shopDomain?: Maybe<ShopDomain>;
|
|
19213
19980
|
shopDomainVerify?: Maybe<ShopDomain>;
|
|
19214
19981
|
shopDomains?: Maybe<ShopDomainConnection>;
|
|
19982
|
+
shopGenerateContentLimitation: GenerateContentLimitation;
|
|
19215
19983
|
shopIsPostPurchaseAppInUse: Scalars['Boolean'];
|
|
19216
19984
|
shopLibraryPage?: Maybe<ShopLibraryPage>;
|
|
19217
19985
|
shopLibraryPages?: Maybe<ShopLibraryPageConnection>;
|
|
@@ -19304,6 +20072,9 @@ type QueryBlogsArgs = {
|
|
|
19304
20072
|
type QueryCampaignOfferStatsArgs = {
|
|
19305
20073
|
parameter?: InputMaybe<AnalyticsQueryParameter>;
|
|
19306
20074
|
};
|
|
20075
|
+
type QueryCampaignOfferTotalStatArgs = {
|
|
20076
|
+
parameter?: InputMaybe<AnalyticsQueryParameter>;
|
|
20077
|
+
};
|
|
19307
20078
|
type QueryCampaignVersionsArgs = {
|
|
19308
20079
|
after?: InputMaybe<Scalars['Cursor']>;
|
|
19309
20080
|
before?: InputMaybe<Scalars['Cursor']>;
|
|
@@ -19512,6 +20283,9 @@ type QueryPagesArgs = {
|
|
|
19512
20283
|
orderBy?: InputMaybe<PageOrder>;
|
|
19513
20284
|
where?: InputMaybe<PageWhereInput>;
|
|
19514
20285
|
};
|
|
20286
|
+
type QueryPlatformOriginalTemplateArgs = {
|
|
20287
|
+
themePageID: Scalars['ID'];
|
|
20288
|
+
};
|
|
19515
20289
|
type QueryPlatformPagesArgs = {
|
|
19516
20290
|
pageType: PlatformPageType;
|
|
19517
20291
|
parameter?: InputMaybe<QueryParameter>;
|
|
@@ -19525,6 +20299,28 @@ type QueryProductArgs = {
|
|
|
19525
20299
|
handle?: InputMaybe<Scalars['String']>;
|
|
19526
20300
|
id?: InputMaybe<Scalars['ID']>;
|
|
19527
20301
|
};
|
|
20302
|
+
type QueryProductDiscountArgs = {
|
|
20303
|
+
id: Scalars['ID'];
|
|
20304
|
+
};
|
|
20305
|
+
type QueryProductDiscountObjectArgs = {
|
|
20306
|
+
id: Scalars['ID'];
|
|
20307
|
+
};
|
|
20308
|
+
type QueryProductDiscountObjectsArgs = {
|
|
20309
|
+
after?: InputMaybe<Scalars['Cursor']>;
|
|
20310
|
+
before?: InputMaybe<Scalars['Cursor']>;
|
|
20311
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
20312
|
+
last?: InputMaybe<Scalars['Int']>;
|
|
20313
|
+
orderBy?: InputMaybe<ProductDiscountObjectOrder>;
|
|
20314
|
+
where?: InputMaybe<ProductDiscountObjectWhereInput>;
|
|
20315
|
+
};
|
|
20316
|
+
type QueryProductDiscountsArgs = {
|
|
20317
|
+
after?: InputMaybe<Scalars['Cursor']>;
|
|
20318
|
+
before?: InputMaybe<Scalars['Cursor']>;
|
|
20319
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
20320
|
+
last?: InputMaybe<Scalars['Int']>;
|
|
20321
|
+
orderBy?: InputMaybe<ProductDiscountOrder>;
|
|
20322
|
+
where?: InputMaybe<ProductDiscountWhereInput>;
|
|
20323
|
+
};
|
|
19528
20324
|
type QueryProductOptionNameArgs = {
|
|
19529
20325
|
limit?: InputMaybe<Scalars['Int']>;
|
|
19530
20326
|
offset?: InputMaybe<Scalars['Int']>;
|
|
@@ -19593,17 +20389,6 @@ type QueryPublicShopLibraryThemesArgs = {
|
|
|
19593
20389
|
orderBy?: InputMaybe<ShopLibraryThemeOrder>;
|
|
19594
20390
|
where?: InputMaybe<ShopLibraryThemeWhereInput>;
|
|
19595
20391
|
};
|
|
19596
|
-
type QueryPublishedGlobalSectionArgs = {
|
|
19597
|
-
id: Scalars['ID'];
|
|
19598
|
-
};
|
|
19599
|
-
type QueryPublishedGlobalSectionsArgs = {
|
|
19600
|
-
after?: InputMaybe<Scalars['Cursor']>;
|
|
19601
|
-
before?: InputMaybe<Scalars['Cursor']>;
|
|
19602
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
19603
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
19604
|
-
orderBy?: InputMaybe<PublishedThemeSectionOrder>;
|
|
19605
|
-
where?: InputMaybe<PublishedThemeSectionWhereInput>;
|
|
19606
|
-
};
|
|
19607
20392
|
type QueryPublishedThemePagesArgs = {
|
|
19608
20393
|
slug?: InputMaybe<Scalars['String']>;
|
|
19609
20394
|
slugType: PublishedThemePageType;
|
|
@@ -19650,6 +20435,9 @@ type QuerySaleFunnelOfferArgs = {
|
|
|
19650
20435
|
type QuerySaleFunnelOfferStatsArgs = {
|
|
19651
20436
|
parameter?: InputMaybe<AnalyticsQueryParameter>;
|
|
19652
20437
|
};
|
|
20438
|
+
type QuerySaleFunnelOfferTotalStatArgs = {
|
|
20439
|
+
parameter?: InputMaybe<AnalyticsQueryParameter>;
|
|
20440
|
+
};
|
|
19653
20441
|
type QuerySaleFunnelOffersArgs = {
|
|
19654
20442
|
after?: InputMaybe<Scalars['Cursor']>;
|
|
19655
20443
|
before?: InputMaybe<Scalars['Cursor']>;
|
|
@@ -19835,9 +20623,7 @@ type QueryThemePageMetaByKeyArgs = {
|
|
|
19835
20623
|
themePageID: Scalars['ID'];
|
|
19836
20624
|
};
|
|
19837
20625
|
type QueryThemePageOnlineStoresArgs = {
|
|
19838
|
-
|
|
19839
|
-
themePageStatus?: InputMaybe<ThemePageStatus>;
|
|
19840
|
-
type: ThemePageOnlineStoreDataType;
|
|
20626
|
+
where?: InputMaybe<ThemePageOnlineStoreDataWhereInput>;
|
|
19841
20627
|
};
|
|
19842
20628
|
type QueryThemePageValidateHandleArgs = {
|
|
19843
20629
|
handle: Scalars['String'];
|
|
@@ -19984,6 +20770,8 @@ type SaleFunnel = {
|
|
|
19984
20770
|
description?: Maybe<Scalars['String']>;
|
|
19985
20771
|
id: Scalars['ID'];
|
|
19986
20772
|
librarySaleFunnel?: Maybe<LibrarySaleFunnel>;
|
|
20773
|
+
metafields?: Maybe<Array<Maybe<SaleFunnelMeta>>>;
|
|
20774
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
19987
20775
|
metas?: Maybe<SaleFunnelMetaConnection>;
|
|
19988
20776
|
name?: Maybe<Scalars['String']>;
|
|
19989
20777
|
offers?: Maybe<SaleFunnelOfferConnection>;
|
|
@@ -20276,6 +21064,12 @@ type SaleFunnelEdge = {
|
|
|
20276
21064
|
cursor: Scalars['Cursor'];
|
|
20277
21065
|
node?: Maybe<SaleFunnel>;
|
|
20278
21066
|
};
|
|
21067
|
+
type SaleFunnelLimitation = {
|
|
21068
|
+
expirationDate?: Maybe<Scalars['Time']>;
|
|
21069
|
+
maximumRevenue?: Maybe<Money>;
|
|
21070
|
+
planName?: Maybe<Scalars['String']>;
|
|
21071
|
+
totalRevenue?: Maybe<Money>;
|
|
21072
|
+
};
|
|
20279
21073
|
type SaleFunnelMeta = {
|
|
20280
21074
|
createdAt?: Maybe<Scalars['Time']>;
|
|
20281
21075
|
id: Scalars['ID'];
|
|
@@ -20318,7 +21112,7 @@ type SaleFunnelMetaWhereInput = {
|
|
|
20318
21112
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
20319
21113
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
20320
21114
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
20321
|
-
/**
|
|
21115
|
+
/** sale_funnel edge predicates */
|
|
20322
21116
|
hasSaleFunnel?: InputMaybe<Scalars['Boolean']>;
|
|
20323
21117
|
hasSaleFunnelWith?: InputMaybe<Array<SaleFunnelWhereInput>>;
|
|
20324
21118
|
/** id field predicates */
|
|
@@ -20785,6 +21579,11 @@ type SaleFunnelRedirectWhereInput = {
|
|
|
20785
21579
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
20786
21580
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
20787
21581
|
};
|
|
21582
|
+
type SaleFunnelReplaceComponentDataInput = {
|
|
21583
|
+
product?: InputMaybe<ProductComponent>;
|
|
21584
|
+
productList?: InputMaybe<ProductListComponent>;
|
|
21585
|
+
saleFunnelID: Scalars['ID'];
|
|
21586
|
+
};
|
|
20788
21587
|
type SaleFunnelStat = {
|
|
20789
21588
|
accepted?: Maybe<Scalars['Int']>;
|
|
20790
21589
|
aov?: Maybe<Scalars['Float']>;
|
|
@@ -21016,7 +21815,7 @@ type SaleFunnelTriggerWhereInput = {
|
|
|
21016
21815
|
/** saleFunnel edge predicates */
|
|
21017
21816
|
hasSaleFunnel?: InputMaybe<Scalars['Boolean']>;
|
|
21018
21817
|
hasSaleFunnelWith?: InputMaybe<Array<SaleFunnelWhereInput>>;
|
|
21019
|
-
/**
|
|
21818
|
+
/** trigger_conditions edge predicates */
|
|
21020
21819
|
hasTriggerConditions?: InputMaybe<Scalars['Boolean']>;
|
|
21021
21820
|
hasTriggerConditionsWith?: InputMaybe<Array<TriggerConditionWhereInput>>;
|
|
21022
21821
|
/** id field predicates */
|
|
@@ -21120,12 +21919,12 @@ type SaleFunnelWhereInput = {
|
|
|
21120
21919
|
/** campaigns edge predicates */
|
|
21121
21920
|
hasCampaigns?: InputMaybe<Scalars['Boolean']>;
|
|
21122
21921
|
hasCampaignsWith?: InputMaybe<Array<SaleFunnelCampaignWhereInput>>;
|
|
21123
|
-
/**
|
|
21922
|
+
/** library_sale_funnel edge predicates */
|
|
21124
21923
|
hasLibrarySaleFunnel?: InputMaybe<Scalars['Boolean']>;
|
|
21125
21924
|
hasLibrarySaleFunnelWith?: InputMaybe<Array<LibrarySaleFunnelWhereInput>>;
|
|
21126
|
-
/**
|
|
21127
|
-
|
|
21128
|
-
|
|
21925
|
+
/** metafields edge predicates */
|
|
21926
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
21927
|
+
hasMetafieldsWith?: InputMaybe<Array<SaleFunnelMetaWhereInput>>;
|
|
21129
21928
|
/** offers edge predicates */
|
|
21130
21929
|
hasOffers?: InputMaybe<Scalars['Boolean']>;
|
|
21131
21930
|
hasOffersWith?: InputMaybe<Array<SaleFunnelOfferWhereInput>>;
|
|
@@ -21331,6 +22130,7 @@ type Shop = {
|
|
|
21331
22130
|
hasAppStoreReview?: Maybe<Scalars['Boolean']>;
|
|
21332
22131
|
id: Scalars['ID'];
|
|
21333
22132
|
isSample: Scalars['Boolean'];
|
|
22133
|
+
pricingPlan?: Maybe<Scalars['String']>;
|
|
21334
22134
|
publicToken: PublicToken;
|
|
21335
22135
|
shopMeta?: Maybe<Array<Maybe<ShopMeta>>>;
|
|
21336
22136
|
shopName: Scalars['String'];
|
|
@@ -21356,6 +22156,12 @@ type ShopConnection = {
|
|
|
21356
22156
|
pageInfo: PageInfo;
|
|
21357
22157
|
totalCount: Scalars['Int'];
|
|
21358
22158
|
};
|
|
22159
|
+
type ShopCurrentVersion = {
|
|
22160
|
+
changelogs?: Maybe<Array<Maybe<StoreVersionLog>>>;
|
|
22161
|
+
currentVersion: Scalars['String'];
|
|
22162
|
+
isUpgrade: Scalars['Boolean'];
|
|
22163
|
+
lastVersion: Scalars['String'];
|
|
22164
|
+
};
|
|
21359
22165
|
/**
|
|
21360
22166
|
* ShopDatabaseWhereInput is used for filtering ShopDatabase objects.
|
|
21361
22167
|
* Input was generated by ent.
|
|
@@ -22162,6 +22968,7 @@ type ShopPlatform = {
|
|
|
22162
22968
|
id: Scalars['ID'];
|
|
22163
22969
|
platform: Platform;
|
|
22164
22970
|
platformDomain: Scalars['String'];
|
|
22971
|
+
platformStoreID?: Maybe<Scalars['ID']>;
|
|
22165
22972
|
redirectURL: Scalars['String'];
|
|
22166
22973
|
shop?: Maybe<Shop>;
|
|
22167
22974
|
status?: Maybe<ShopPlatformStatus>;
|
|
@@ -22278,6 +23085,17 @@ type ShopPlatformWhereInput = {
|
|
|
22278
23085
|
platformIn?: InputMaybe<Array<Platform>>;
|
|
22279
23086
|
platformNEQ?: InputMaybe<Platform>;
|
|
22280
23087
|
platformNotIn?: InputMaybe<Array<Platform>>;
|
|
23088
|
+
/** platform_store_id field predicates */
|
|
23089
|
+
platformStoreID?: InputMaybe<Scalars['ID']>;
|
|
23090
|
+
platformStoreIDGT?: InputMaybe<Scalars['ID']>;
|
|
23091
|
+
platformStoreIDGTE?: InputMaybe<Scalars['ID']>;
|
|
23092
|
+
platformStoreIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
23093
|
+
platformStoreIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
23094
|
+
platformStoreIDLT?: InputMaybe<Scalars['ID']>;
|
|
23095
|
+
platformStoreIDLTE?: InputMaybe<Scalars['ID']>;
|
|
23096
|
+
platformStoreIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
23097
|
+
platformStoreIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
23098
|
+
platformStoreIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
22281
23099
|
/** redirect_url field predicates */
|
|
22282
23100
|
redirectURL?: InputMaybe<Scalars['String']>;
|
|
22283
23101
|
redirectURLContains?: InputMaybe<Scalars['String']>;
|
|
@@ -22554,46 +23372,49 @@ type ShopWhereInput = {
|
|
|
22554
23372
|
/** has_app_store_review field predicates */
|
|
22555
23373
|
hasAppStoreReview?: InputMaybe<Scalars['Boolean']>;
|
|
22556
23374
|
hasAppStoreReviewNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
22557
|
-
/**
|
|
23375
|
+
/** feature_request edge predicates */
|
|
22558
23376
|
hasFeatureRequest?: InputMaybe<Scalars['Boolean']>;
|
|
22559
23377
|
hasFeatureRequestWith?: InputMaybe<Array<FeatureRequestWhereInput>>;
|
|
22560
|
-
/**
|
|
23378
|
+
/** global_settings edge predicates */
|
|
22561
23379
|
hasGlobalSettings?: InputMaybe<Scalars['Boolean']>;
|
|
22562
23380
|
hasGlobalSettingsWith?: InputMaybe<Array<GlobalSettingWhereInput>>;
|
|
22563
|
-
/**
|
|
23381
|
+
/** library_pages edge predicates */
|
|
22564
23382
|
hasLibraryPages?: InputMaybe<Scalars['Boolean']>;
|
|
22565
23383
|
hasLibraryPagesWith?: InputMaybe<Array<ShopLibraryPageWhereInput>>;
|
|
22566
|
-
/**
|
|
23384
|
+
/** sale_funnels edge predicates */
|
|
22567
23385
|
hasSaleFunnels?: InputMaybe<Scalars['Boolean']>;
|
|
22568
23386
|
hasSaleFunnelsWith?: InputMaybe<Array<SaleFunnelWhereInput>>;
|
|
22569
|
-
/**
|
|
23387
|
+
/** shop_domains edge predicates */
|
|
22570
23388
|
hasShopDomains?: InputMaybe<Scalars['Boolean']>;
|
|
22571
23389
|
hasShopDomainsWith?: InputMaybe<Array<ShopDomainWhereInput>>;
|
|
22572
|
-
/**
|
|
23390
|
+
/** shop_meta edge predicates */
|
|
22573
23391
|
hasShopMeta?: InputMaybe<Scalars['Boolean']>;
|
|
22574
23392
|
hasShopMetaWith?: InputMaybe<Array<ShopMetaWhereInput>>;
|
|
22575
|
-
/**
|
|
23393
|
+
/** stat_convert_layout edge predicates */
|
|
22576
23394
|
hasStatConvertLayout?: InputMaybe<Scalars['Boolean']>;
|
|
22577
23395
|
hasStatConvertLayoutWith?: InputMaybe<Array<StatConvertLayoutWhereInput>>;
|
|
22578
|
-
/**
|
|
23396
|
+
/** stat_generate_content edge predicates */
|
|
23397
|
+
hasStatGenerateContent?: InputMaybe<Scalars['Boolean']>;
|
|
23398
|
+
hasStatGenerateContentWith?: InputMaybe<Array<StatGenerateContentWhereInput>>;
|
|
23399
|
+
/** stat_page_views edge predicates */
|
|
22579
23400
|
hasStatPageViews?: InputMaybe<Scalars['Boolean']>;
|
|
22580
23401
|
hasStatPageViewsWith?: InputMaybe<Array<StatPageViewWhereInput>>;
|
|
22581
|
-
/**
|
|
23402
|
+
/** survey_feedbacks edge predicates */
|
|
22582
23403
|
hasSurveyFeedbacks?: InputMaybe<Scalars['Boolean']>;
|
|
22583
23404
|
hasSurveyFeedbacksWith?: InputMaybe<Array<SurveyFeedbackWhereInput>>;
|
|
22584
|
-
/**
|
|
23405
|
+
/** theme_page_online_store_data edge predicates */
|
|
22585
23406
|
hasThemePageOnlineStoreData?: InputMaybe<Scalars['Boolean']>;
|
|
22586
23407
|
hasThemePageOnlineStoreDataWith?: InputMaybe<Array<ThemePageOnlineStoreDataWhereInput>>;
|
|
22587
|
-
/**
|
|
23408
|
+
/** theme_page_versions edge predicates */
|
|
22588
23409
|
hasThemePageVersions?: InputMaybe<Scalars['Boolean']>;
|
|
22589
23410
|
hasThemePageVersionsWith?: InputMaybe<Array<ThemePageVersionWhereInput>>;
|
|
22590
|
-
/**
|
|
23411
|
+
/** theme_pages edge predicates */
|
|
22591
23412
|
hasThemePages?: InputMaybe<Scalars['Boolean']>;
|
|
22592
23413
|
hasThemePagesWith?: InputMaybe<Array<ThemePageWhereInput>>;
|
|
22593
|
-
/**
|
|
23414
|
+
/** theme_sections edge predicates */
|
|
22594
23415
|
hasThemeSections?: InputMaybe<Scalars['Boolean']>;
|
|
22595
23416
|
hasThemeSectionsWith?: InputMaybe<Array<ThemeSectionWhereInput>>;
|
|
22596
|
-
/**
|
|
23417
|
+
/** theme_styles edge predicates */
|
|
22597
23418
|
hasThemeStyles?: InputMaybe<Scalars['Boolean']>;
|
|
22598
23419
|
hasThemeStylesWith?: InputMaybe<Array<ThemeStyleWhereInput>>;
|
|
22599
23420
|
/** themes edge predicates */
|
|
@@ -22613,6 +23434,22 @@ type ShopWhereInput = {
|
|
|
22613
23434
|
isSampleNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
22614
23435
|
not?: InputMaybe<ShopWhereInput>;
|
|
22615
23436
|
or?: InputMaybe<Array<ShopWhereInput>>;
|
|
23437
|
+
/** pricing_plan field predicates */
|
|
23438
|
+
pricingPlan?: InputMaybe<Scalars['String']>;
|
|
23439
|
+
pricingPlanContains?: InputMaybe<Scalars['String']>;
|
|
23440
|
+
pricingPlanContainsFold?: InputMaybe<Scalars['String']>;
|
|
23441
|
+
pricingPlanEqualFold?: InputMaybe<Scalars['String']>;
|
|
23442
|
+
pricingPlanGT?: InputMaybe<Scalars['String']>;
|
|
23443
|
+
pricingPlanGTE?: InputMaybe<Scalars['String']>;
|
|
23444
|
+
pricingPlanHasPrefix?: InputMaybe<Scalars['String']>;
|
|
23445
|
+
pricingPlanHasSuffix?: InputMaybe<Scalars['String']>;
|
|
23446
|
+
pricingPlanIn?: InputMaybe<Array<Scalars['String']>>;
|
|
23447
|
+
pricingPlanIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
23448
|
+
pricingPlanLT?: InputMaybe<Scalars['String']>;
|
|
23449
|
+
pricingPlanLTE?: InputMaybe<Scalars['String']>;
|
|
23450
|
+
pricingPlanNEQ?: InputMaybe<Scalars['String']>;
|
|
23451
|
+
pricingPlanNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
23452
|
+
pricingPlanNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
22616
23453
|
/** shop_name field predicates */
|
|
22617
23454
|
shopName?: InputMaybe<Scalars['String']>;
|
|
22618
23455
|
shopNameContains?: InputMaybe<Scalars['String']>;
|
|
@@ -22657,6 +23494,12 @@ type ShopifyTheme = {
|
|
|
22657
23494
|
themeStoreID?: Maybe<Scalars['ID']>;
|
|
22658
23495
|
};
|
|
22659
23496
|
type SocketStatus = 'ERROR' | 'PENDING' | 'SUCCESS';
|
|
23497
|
+
type StatConvertLayoutData = {
|
|
23498
|
+
convertToLayoutCount: Scalars['Int'];
|
|
23499
|
+
isConvertAllowed: Scalars['Boolean'];
|
|
23500
|
+
maxConvertToLayoutCount: Scalars['Int'];
|
|
23501
|
+
shopID: Scalars['ID'];
|
|
23502
|
+
};
|
|
22660
23503
|
/**
|
|
22661
23504
|
* StatConvertLayoutWhereInput is used for filtering StatConvertLayout objects.
|
|
22662
23505
|
* Input was generated by ent.
|
|
@@ -22732,6 +23575,81 @@ type StatConvertLayoutWhereInput = {
|
|
|
22732
23575
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
22733
23576
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
22734
23577
|
};
|
|
23578
|
+
/**
|
|
23579
|
+
* StatGenerateContentWhereInput is used for filtering StatGenerateContent objects.
|
|
23580
|
+
* Input was generated by ent.
|
|
23581
|
+
*/
|
|
23582
|
+
type StatGenerateContentWhereInput = {
|
|
23583
|
+
and?: InputMaybe<Array<StatGenerateContentWhereInput>>;
|
|
23584
|
+
/** count field predicates */
|
|
23585
|
+
count?: InputMaybe<Scalars['Int']>;
|
|
23586
|
+
countGT?: InputMaybe<Scalars['Int']>;
|
|
23587
|
+
countGTE?: InputMaybe<Scalars['Int']>;
|
|
23588
|
+
countIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
23589
|
+
countLT?: InputMaybe<Scalars['Int']>;
|
|
23590
|
+
countLTE?: InputMaybe<Scalars['Int']>;
|
|
23591
|
+
countNEQ?: InputMaybe<Scalars['Int']>;
|
|
23592
|
+
countNotIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
23593
|
+
/** created_at field predicates */
|
|
23594
|
+
createdAt?: InputMaybe<Scalars['Time']>;
|
|
23595
|
+
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
23596
|
+
createdAtGTE?: InputMaybe<Scalars['Time']>;
|
|
23597
|
+
createdAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
23598
|
+
createdAtLT?: InputMaybe<Scalars['Time']>;
|
|
23599
|
+
createdAtLTE?: InputMaybe<Scalars['Time']>;
|
|
23600
|
+
createdAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
23601
|
+
createdAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
23602
|
+
/** date field predicates */
|
|
23603
|
+
date?: InputMaybe<Scalars['Time']>;
|
|
23604
|
+
dateGT?: InputMaybe<Scalars['Time']>;
|
|
23605
|
+
dateGTE?: InputMaybe<Scalars['Time']>;
|
|
23606
|
+
dateIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
23607
|
+
dateLT?: InputMaybe<Scalars['Time']>;
|
|
23608
|
+
dateLTE?: InputMaybe<Scalars['Time']>;
|
|
23609
|
+
dateNEQ?: InputMaybe<Scalars['Time']>;
|
|
23610
|
+
dateNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
23611
|
+
/** deleted_at field predicates */
|
|
23612
|
+
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
23613
|
+
deletedAtGT?: InputMaybe<Scalars['Time']>;
|
|
23614
|
+
deletedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
23615
|
+
deletedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
23616
|
+
deletedAtIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
23617
|
+
deletedAtLT?: InputMaybe<Scalars['Time']>;
|
|
23618
|
+
deletedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
23619
|
+
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
23620
|
+
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
23621
|
+
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
23622
|
+
/** shop edge predicates */
|
|
23623
|
+
hasShop?: InputMaybe<Scalars['Boolean']>;
|
|
23624
|
+
hasShopWith?: InputMaybe<Array<ShopWhereInput>>;
|
|
23625
|
+
/** id field predicates */
|
|
23626
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
23627
|
+
idGT?: InputMaybe<Scalars['ID']>;
|
|
23628
|
+
idGTE?: InputMaybe<Scalars['ID']>;
|
|
23629
|
+
idIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
23630
|
+
idLT?: InputMaybe<Scalars['ID']>;
|
|
23631
|
+
idLTE?: InputMaybe<Scalars['ID']>;
|
|
23632
|
+
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
23633
|
+
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
23634
|
+
not?: InputMaybe<StatGenerateContentWhereInput>;
|
|
23635
|
+
or?: InputMaybe<Array<StatGenerateContentWhereInput>>;
|
|
23636
|
+
/** shop_id field predicates */
|
|
23637
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
23638
|
+
shopIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
23639
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
23640
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
23641
|
+
shopIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
23642
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
23643
|
+
/** updated_at field predicates */
|
|
23644
|
+
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
23645
|
+
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
23646
|
+
updatedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
23647
|
+
updatedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
23648
|
+
updatedAtLT?: InputMaybe<Scalars['Time']>;
|
|
23649
|
+
updatedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
23650
|
+
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
23651
|
+
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
23652
|
+
};
|
|
22735
23653
|
/**
|
|
22736
23654
|
* StatPageViewWhereInput is used for filtering StatPageView objects.
|
|
22737
23655
|
* Input was generated by ent.
|
|
@@ -22821,6 +23739,12 @@ type StoreProperty = {
|
|
|
22821
23739
|
primaryDomain?: Maybe<Scalars['String']>;
|
|
22822
23740
|
swatchesConfig: Scalars['String'];
|
|
22823
23741
|
};
|
|
23742
|
+
type StoreVersionLog = {
|
|
23743
|
+
githubReleaseID: Scalars['ID'];
|
|
23744
|
+
id: Scalars['ID'];
|
|
23745
|
+
note: Scalars['String'];
|
|
23746
|
+
version: Scalars['String'];
|
|
23747
|
+
};
|
|
22824
23748
|
type Survey = {
|
|
22825
23749
|
config: Scalars['String'];
|
|
22826
23750
|
description: Scalars['String'];
|
|
@@ -23407,12 +24331,14 @@ type ThemePage = {
|
|
|
23407
24331
|
description?: Maybe<Scalars['String']>;
|
|
23408
24332
|
handle?: Maybe<Scalars['String']>;
|
|
23409
24333
|
id: Scalars['ID'];
|
|
24334
|
+
interaction?: Maybe<PageInteraction>;
|
|
23410
24335
|
isGlobal?: Maybe<Scalars['Boolean']>;
|
|
23411
24336
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
23412
24337
|
isPlatformDefault?: Maybe<Scalars['Boolean']>;
|
|
23413
24338
|
isSample?: Maybe<Scalars['Boolean']>;
|
|
23414
24339
|
libraryPosition?: Maybe<Scalars['Int']>;
|
|
23415
24340
|
libraryTemplate?: Maybe<LibraryTemplate>;
|
|
24341
|
+
metafields?: Maybe<Array<Maybe<ThemePageMeta>>>;
|
|
23416
24342
|
name: Scalars['String'];
|
|
23417
24343
|
offer?: Maybe<SaleFunnelOffer>;
|
|
23418
24344
|
pageSections?: Maybe<Array<Maybe<PageSection>>>;
|
|
@@ -23421,13 +24347,12 @@ type ThemePage = {
|
|
|
23421
24347
|
publishedAt?: Maybe<Scalars['Time']>;
|
|
23422
24348
|
saleFunnels?: Maybe<Array<Maybe<SaleFunnel>>>;
|
|
23423
24349
|
sectionPosition?: Maybe<Array<Scalars['String']>>;
|
|
23424
|
-
/** @deprecated Use `platformOriginalTemplate` instead. */
|
|
23425
|
-
shopifyOriginalContent?: Maybe<Scalars['String']>;
|
|
23426
24350
|
splitPercentage?: Maybe<Scalars['Float']>;
|
|
23427
24351
|
status?: Maybe<ThemePageStatus>;
|
|
23428
24352
|
theme?: Maybe<Theme>;
|
|
23429
24353
|
themePageCustomSections?: Maybe<Array<Maybe<ThemePageCustomSection>>>;
|
|
23430
24354
|
themePageGlobalComponents?: Maybe<Array<Maybe<ThemePageGlobalComponent>>>;
|
|
24355
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
23431
24356
|
themePageMetas?: Maybe<ThemePageMetaConnection>;
|
|
23432
24357
|
themePageOnlineStoreData?: Maybe<ThemePageOnlineStoreData>;
|
|
23433
24358
|
themeSections?: Maybe<Array<Maybe<ThemeSection>>>;
|
|
@@ -23758,7 +24683,7 @@ type ThemePageOnlineStoreDataWhereInput = {
|
|
|
23758
24683
|
/** shop edge predicates */
|
|
23759
24684
|
hasShop?: InputMaybe<Scalars['Boolean']>;
|
|
23760
24685
|
hasShopWith?: InputMaybe<Array<ShopWhereInput>>;
|
|
23761
|
-
/**
|
|
24686
|
+
/** theme_page edge predicates */
|
|
23762
24687
|
hasThemePage?: InputMaybe<Scalars['Boolean']>;
|
|
23763
24688
|
hasThemePageWith?: InputMaybe<Array<ThemePageWhereInput>>;
|
|
23764
24689
|
/** id field predicates */
|
|
@@ -23771,6 +24696,7 @@ type ThemePageOnlineStoreDataWhereInput = {
|
|
|
23771
24696
|
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
23772
24697
|
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
23773
24698
|
not?: InputMaybe<ThemePageOnlineStoreDataWhereInput>;
|
|
24699
|
+
onlineStoreObjectBaseIDsContain?: InputMaybe<Array<Scalars['String']>>;
|
|
23774
24700
|
or?: InputMaybe<Array<ThemePageOnlineStoreDataWhereInput>>;
|
|
23775
24701
|
/** shop_id field predicates */
|
|
23776
24702
|
shopID?: InputMaybe<Scalars['ID']>;
|
|
@@ -23987,9 +24913,15 @@ type ThemePageWhereInput = {
|
|
|
23987
24913
|
handleNEQ?: InputMaybe<Scalars['String']>;
|
|
23988
24914
|
handleNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
23989
24915
|
handleNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
24916
|
+
/** interaction edge predicates */
|
|
24917
|
+
hasInteraction?: InputMaybe<Scalars['Boolean']>;
|
|
24918
|
+
hasInteractionWith?: InputMaybe<Array<PageInteractionWhereInput>>;
|
|
23990
24919
|
/** libraryTemplate edge predicates */
|
|
23991
24920
|
hasLibraryTemplate?: InputMaybe<Scalars['Boolean']>;
|
|
23992
24921
|
hasLibraryTemplateWith?: InputMaybe<Array<LibraryTemplateWhereInput>>;
|
|
24922
|
+
/** metafields edge predicates */
|
|
24923
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
24924
|
+
hasMetafieldsWith?: InputMaybe<Array<ThemePageMetaWhereInput>>;
|
|
23993
24925
|
/** offer edge predicates */
|
|
23994
24926
|
hasOffer?: InputMaybe<Scalars['Boolean']>;
|
|
23995
24927
|
hasOfferWith?: InputMaybe<Array<SaleFunnelOfferWhereInput>>;
|
|
@@ -24019,10 +24951,7 @@ type ThemePageWhereInput = {
|
|
|
24019
24951
|
/** themePageGlobalComponents edge predicates */
|
|
24020
24952
|
hasThemePageGlobalComponents?: InputMaybe<Scalars['Boolean']>;
|
|
24021
24953
|
hasThemePageGlobalComponentsWith?: InputMaybe<Array<ThemePageGlobalComponentWhereInput>>;
|
|
24022
|
-
/**
|
|
24023
|
-
hasThemePageMeta?: InputMaybe<Scalars['Boolean']>;
|
|
24024
|
-
hasThemePageMetaWith?: InputMaybe<Array<ThemePageMetaWhereInput>>;
|
|
24025
|
-
/** themePageOnlineStoreData edge predicates */
|
|
24954
|
+
/** theme_page_online_store_data edge predicates */
|
|
24026
24955
|
hasThemePageOnlineStoreData?: InputMaybe<Scalars['Boolean']>;
|
|
24027
24956
|
hasThemePageOnlineStoreDataWith?: InputMaybe<Array<ThemePageOnlineStoreDataWhereInput>>;
|
|
24028
24957
|
/** themePageVersions edge predicates */
|
|
@@ -24181,11 +25110,13 @@ type ThemeSection = {
|
|
|
24181
25110
|
display?: Maybe<Scalars['Boolean']>;
|
|
24182
25111
|
id: Scalars['ID'];
|
|
24183
25112
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
25113
|
+
metafields?: Maybe<Array<Maybe<ThemeSectionMeta>>>;
|
|
24184
25114
|
name: Scalars['String'];
|
|
24185
25115
|
/** @deprecated Will be removed after 01/03/2024. Use `status` instead. */
|
|
24186
25116
|
needPublishing?: Maybe<Scalars['Boolean']>;
|
|
24187
25117
|
publishedAt?: Maybe<Scalars['Time']>;
|
|
24188
25118
|
status?: Maybe<ThemeSectionStatus>;
|
|
25119
|
+
/** @deprecated Will be removed after 023/06/2024. Use `metafields` instead. */
|
|
24189
25120
|
themeSectionMetas?: Maybe<ThemeSectionMetaConnection>;
|
|
24190
25121
|
updatedAt?: Maybe<Scalars['Time']>;
|
|
24191
25122
|
};
|
|
@@ -24247,7 +25178,7 @@ type ThemeSectionMetaWhereInput = {
|
|
|
24247
25178
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
24248
25179
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
24249
25180
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
24250
|
-
/**
|
|
25181
|
+
/** theme_section edge predicates */
|
|
24251
25182
|
hasThemeSection?: InputMaybe<Scalars['Boolean']>;
|
|
24252
25183
|
hasThemeSectionWith?: InputMaybe<Array<ThemeSectionWhereInput>>;
|
|
24253
25184
|
/** id field predicates */
|
|
@@ -24366,6 +25297,9 @@ type ThemeSectionWhereInput = {
|
|
|
24366
25297
|
globalStoreReleaseIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
24367
25298
|
globalStoreReleaseIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
24368
25299
|
globalStoreReleaseIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
25300
|
+
/** metafields edge predicates */
|
|
25301
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
25302
|
+
hasMetafieldsWith?: InputMaybe<Array<ThemeSectionMetaWhereInput>>;
|
|
24369
25303
|
/** shop edge predicates */
|
|
24370
25304
|
hasShop?: InputMaybe<Scalars['Boolean']>;
|
|
24371
25305
|
hasShopWith?: InputMaybe<Array<ShopWhereInput>>;
|
|
@@ -24374,9 +25308,6 @@ type ThemeSectionWhereInput = {
|
|
|
24374
25308
|
/** themePages edge predicates */
|
|
24375
25309
|
hasThemePages?: InputMaybe<Scalars['Boolean']>;
|
|
24376
25310
|
hasThemePagesWith?: InputMaybe<Array<ThemePageWhereInput>>;
|
|
24377
|
-
/** themeSectionMeta edge predicates */
|
|
24378
|
-
hasThemeSectionMeta?: InputMaybe<Scalars['Boolean']>;
|
|
24379
|
-
hasThemeSectionMetaWith?: InputMaybe<Array<ThemeSectionMetaWhereInput>>;
|
|
24380
25311
|
hasThemeWith?: InputMaybe<Array<ThemeWhereInput>>;
|
|
24381
25312
|
/** id field predicates */
|
|
24382
25313
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -24930,6 +25861,7 @@ type UpdateIconInput = {
|
|
|
24930
25861
|
type UpdateLibrarySaleFunnelInput = {
|
|
24931
25862
|
clearDeletedAt?: InputMaybe<Scalars['Boolean']>;
|
|
24932
25863
|
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
25864
|
+
position?: InputMaybe<Scalars['Int']>;
|
|
24933
25865
|
};
|
|
24934
25866
|
/**
|
|
24935
25867
|
* Define an input type for the mutation below.
|
|
@@ -24955,6 +25887,9 @@ type UpdateLibraryTemplateInput = {
|
|
|
24955
25887
|
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
24956
25888
|
libraryPosition?: InputMaybe<Scalars['Int']>;
|
|
24957
25889
|
};
|
|
25890
|
+
type UpdatePageInteractionInput = {
|
|
25891
|
+
value?: InputMaybe<Array<Scalars['Map']>>;
|
|
25892
|
+
};
|
|
24958
25893
|
type UpdatePageSectionInput = {
|
|
24959
25894
|
appBlocks?: InputMaybe<Scalars['String']>;
|
|
24960
25895
|
cid?: InputMaybe<Scalars['String']>;
|
|
@@ -24968,6 +25903,11 @@ type UpdatePageSectionInput = {
|
|
|
24968
25903
|
libraryPosition?: InputMaybe<Scalars['Int']>;
|
|
24969
25904
|
name?: InputMaybe<Scalars['String']>;
|
|
24970
25905
|
};
|
|
25906
|
+
type UpdateProductDiscountInput = {
|
|
25907
|
+
details?: InputMaybe<Array<Scalars['Map']>>;
|
|
25908
|
+
name?: InputMaybe<Scalars['String']>;
|
|
25909
|
+
type?: InputMaybe<ProductDiscountType>;
|
|
25910
|
+
};
|
|
24971
25911
|
type UpdateSaleFunnelCampaignInput = {
|
|
24972
25912
|
status?: InputMaybe<SaleFunnelCampaignStatus>;
|
|
24973
25913
|
};
|
|
@@ -25267,24 +26207,6 @@ type VariantProductOptionWhereInput = {
|
|
|
25267
26207
|
variantIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
25268
26208
|
variantIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
25269
26209
|
};
|
|
25270
|
-
type ShopCurrentVersion = {
|
|
25271
|
-
changelogs?: Maybe<Array<Maybe<StoreVersionLog>>>;
|
|
25272
|
-
currentVersion: Scalars['String'];
|
|
25273
|
-
isUpgrade: Scalars['Boolean'];
|
|
25274
|
-
lastVersion: Scalars['String'];
|
|
25275
|
-
};
|
|
25276
|
-
type StatConvertLayoutData = {
|
|
25277
|
-
convertToLayoutCount: Scalars['Int'];
|
|
25278
|
-
isConvertAllowed: Scalars['Boolean'];
|
|
25279
|
-
maxConvertToLayoutCount: Scalars['Int'];
|
|
25280
|
-
shopID: Scalars['ID'];
|
|
25281
|
-
};
|
|
25282
|
-
type StoreVersionLog = {
|
|
25283
|
-
githubReleaseID: Scalars['ID'];
|
|
25284
|
-
id: Scalars['ID'];
|
|
25285
|
-
note: Scalars['String'];
|
|
25286
|
-
version: Scalars['String'];
|
|
25287
|
-
};
|
|
25288
26210
|
type ThemePageLimitation = {
|
|
25289
26211
|
currentUserAppliedLimitation?: Maybe<Scalars['Boolean']>;
|
|
25290
26212
|
maximumPageVersionsPerPage?: Maybe<Scalars['Int']>;
|
|
@@ -25300,6 +26222,7 @@ type ThemePageLimitation = {
|
|
|
25300
26222
|
publishedCollectionPagesCount?: Maybe<Scalars['Int']>;
|
|
25301
26223
|
publishedIndexPagesCount?: Maybe<Scalars['Int']>;
|
|
25302
26224
|
publishedPagesCount?: Maybe<Scalars['Int']>;
|
|
26225
|
+
publishedPlatformDefaultPagesCount?: Maybe<Scalars['Int']>;
|
|
25303
26226
|
publishedProductPagesCount?: Maybe<Scalars['Int']>;
|
|
25304
26227
|
publishedStaticPagesCount?: Maybe<Scalars['Int']>;
|
|
25305
26228
|
};
|
|
@@ -25312,6 +26235,8 @@ type appAPI_AppType = AppType;
|
|
|
25312
26235
|
type appAPI_ArticleBlogWhereInput = ArticleBlogWhereInput;
|
|
25313
26236
|
type appAPI_ArticleBlogsArgs = ArticleBlogsArgs;
|
|
25314
26237
|
type appAPI_ArticleConnection = ArticleConnection;
|
|
26238
|
+
type appAPI_ArticleContent = ArticleContent;
|
|
26239
|
+
type appAPI_ArticleContentWhereInput = ArticleContentWhereInput;
|
|
25315
26240
|
type appAPI_ArticleEdge = ArticleEdge;
|
|
25316
26241
|
type appAPI_ArticleMetafieldArgs = ArticleMetafieldArgs;
|
|
25317
26242
|
type appAPI_ArticleOrder = ArticleOrder;
|
|
@@ -25384,8 +26309,11 @@ type appAPI_CreateIconInput = CreateIconInput;
|
|
|
25384
26309
|
type appAPI_CreateLibrarySaleFunnelMetaInput = CreateLibrarySaleFunnelMetaInput;
|
|
25385
26310
|
type appAPI_CreateLibrarySectionTagInput = CreateLibrarySectionTagInput;
|
|
25386
26311
|
type appAPI_CreateLibraryTemplateTagInput = CreateLibraryTemplateTagInput;
|
|
26312
|
+
type appAPI_CreatePageInteractionInput = CreatePageInteractionInput;
|
|
25387
26313
|
type appAPI_CreatePageSectionInput = CreatePageSectionInput;
|
|
25388
26314
|
type appAPI_CreatePlatformOriginalTemplateInput = CreatePlatformOriginalTemplateInput;
|
|
26315
|
+
type appAPI_CreateProductDiscountInput = CreateProductDiscountInput;
|
|
26316
|
+
type appAPI_CreateProductDiscountObjectInput = CreateProductDiscountObjectInput;
|
|
25389
26317
|
type appAPI_CreateSaleFunnelDiscountInput = CreateSaleFunnelDiscountInput;
|
|
25390
26318
|
type appAPI_CreateSaleFunnelInput = CreateSaleFunnelInput;
|
|
25391
26319
|
type appAPI_CreateSaleFunnelMetaInput = CreateSaleFunnelMetaInput;
|
|
@@ -25483,6 +26411,7 @@ type appAPI_FontOrder = FontOrder;
|
|
|
25483
26411
|
type appAPI_FontOrderField = FontOrderField;
|
|
25484
26412
|
type appAPI_FontStorage = FontStorage;
|
|
25485
26413
|
type appAPI_FontWhereInput = FontWhereInput;
|
|
26414
|
+
type appAPI_GenerateContentLimitation = GenerateContentLimitation;
|
|
25486
26415
|
type appAPI_GlobalComponent = GlobalComponent;
|
|
25487
26416
|
type appAPI_GlobalComponentConnection = GlobalComponentConnection;
|
|
25488
26417
|
type appAPI_GlobalComponentEdge = GlobalComponentEdge;
|
|
@@ -25499,6 +26428,7 @@ type appAPI_GlobalStoreVersionEdge = GlobalStoreVersionEdge;
|
|
|
25499
26428
|
type appAPI_GlobalStoreVersionOrder = GlobalStoreVersionOrder;
|
|
25500
26429
|
type appAPI_GlobalStoreVersionOrderField = GlobalStoreVersionOrderField;
|
|
25501
26430
|
type appAPI_GlobalStoreVersionWhereInput = GlobalStoreVersionWhereInput;
|
|
26431
|
+
type appAPI_GroupByFields = GroupByFields;
|
|
25502
26432
|
type appAPI_Icon = Icon;
|
|
25503
26433
|
type appAPI_IconConnection = IconConnection;
|
|
25504
26434
|
type appAPI_IconEdge = IconEdge;
|
|
@@ -25565,7 +26495,9 @@ type appAPI_MediaOrder = MediaOrder;
|
|
|
25565
26495
|
type appAPI_MediaOrderField = MediaOrderField;
|
|
25566
26496
|
type appAPI_MediaWhereInput = MediaWhereInput;
|
|
25567
26497
|
type appAPI_Metafield = Metafield;
|
|
26498
|
+
type appAPI_MetafieldObjectType = MetafieldObjectType;
|
|
25568
26499
|
type appAPI_MetafieldWhereInput = MetafieldWhereInput;
|
|
26500
|
+
type appAPI_Money = Money;
|
|
25569
26501
|
type appAPI_Mutation = Mutation;
|
|
25570
26502
|
type appAPI_MutationAssignObjectTriggerConditionCreateArgs = MutationAssignObjectTriggerConditionCreateArgs;
|
|
25571
26503
|
type appAPI_MutationAssignObjectTriggerConditionUpdateArgs = MutationAssignObjectTriggerConditionUpdateArgs;
|
|
@@ -25600,7 +26532,6 @@ type appAPI_MutationFeatureSettingUpdateArgs = MutationFeatureSettingUpdateArgs;
|
|
|
25600
26532
|
type appAPI_MutationFileDeleteArgs = MutationFileDeleteArgs;
|
|
25601
26533
|
type appAPI_MutationFileRestoreArgs = MutationFileRestoreArgs;
|
|
25602
26534
|
type appAPI_MutationFileRestoreByBkFileKeyArgs = MutationFileRestoreByBkFileKeyArgs;
|
|
25603
|
-
type appAPI_MutationFileUploadArgs = MutationFileUploadArgs;
|
|
25604
26535
|
type appAPI_MutationFileUploadByUrlArgs = MutationFileUploadByUrlArgs;
|
|
25605
26536
|
type appAPI_MutationFontDeleteArgs = MutationFontDeleteArgs;
|
|
25606
26537
|
type appAPI_MutationGlobalComponentCreateArgs = MutationGlobalComponentCreateArgs;
|
|
@@ -25629,6 +26560,11 @@ type appAPI_MutationLibraryTemplateTagCreateArgs = MutationLibraryTemplateTagCre
|
|
|
25629
26560
|
type appAPI_MutationLibraryTemplateTagDeleteArgs = MutationLibraryTemplateTagDeleteArgs;
|
|
25630
26561
|
type appAPI_MutationLibraryTemplateUpdateArgs = MutationLibraryTemplateUpdateArgs;
|
|
25631
26562
|
type appAPI_MutationMakeStyleGlobalArgs = MutationMakeStyleGlobalArgs;
|
|
26563
|
+
type appAPI_MutationPageInteractionCreateArgs = MutationPageInteractionCreateArgs;
|
|
26564
|
+
type appAPI_MutationPageInteractionDeleteArgs = MutationPageInteractionDeleteArgs;
|
|
26565
|
+
type appAPI_MutationPageInteractionPreviewArgs = MutationPageInteractionPreviewArgs;
|
|
26566
|
+
type appAPI_MutationPageInteractionPublishArgs = MutationPageInteractionPublishArgs;
|
|
26567
|
+
type appAPI_MutationPageInteractionUpdateArgs = MutationPageInteractionUpdateArgs;
|
|
25632
26568
|
type appAPI_MutationPageSectionBulkCreateArgs = MutationPageSectionBulkCreateArgs;
|
|
25633
26569
|
type appAPI_MutationPageSectionCreateArgs = MutationPageSectionCreateArgs;
|
|
25634
26570
|
type appAPI_MutationPageSectionCreateFromThemeSectionArgs = MutationPageSectionCreateFromThemeSectionArgs;
|
|
@@ -25638,8 +26574,17 @@ type appAPI_MutationPageSectionUpdateArgs = MutationPageSectionUpdateArgs;
|
|
|
25638
26574
|
type appAPI_MutationPageSectionsBulkDeleteArgs = MutationPageSectionsBulkDeleteArgs;
|
|
25639
26575
|
type appAPI_MutationPageSectionsBulkUpdateArgs = MutationPageSectionsBulkUpdateArgs;
|
|
25640
26576
|
type appAPI_MutationPageViewUpArgs = MutationPageViewUpArgs;
|
|
26577
|
+
type appAPI_MutationPlatformOriginalTemplateDeleteArgs = MutationPlatformOriginalTemplateDeleteArgs;
|
|
26578
|
+
type appAPI_MutationPlatformOriginalTemplateResetArgs = MutationPlatformOriginalTemplateResetArgs;
|
|
25641
26579
|
type appAPI_MutationPlatformOriginalTemplateSyncArgs = MutationPlatformOriginalTemplateSyncArgs;
|
|
25642
26580
|
type appAPI_MutationPlatformOriginalTemplateUpsertArgs = MutationPlatformOriginalTemplateUpsertArgs;
|
|
26581
|
+
type appAPI_MutationProductDiscountActivateArgs = MutationProductDiscountActivateArgs;
|
|
26582
|
+
type appAPI_MutationProductDiscountCreateArgs = MutationProductDiscountCreateArgs;
|
|
26583
|
+
type appAPI_MutationProductDiscountDeactivateArgs = MutationProductDiscountDeactivateArgs;
|
|
26584
|
+
type appAPI_MutationProductDiscountDeleteArgs = MutationProductDiscountDeleteArgs;
|
|
26585
|
+
type appAPI_MutationProductDiscountDuplicateArgs = MutationProductDiscountDuplicateArgs;
|
|
26586
|
+
type appAPI_MutationProductDiscountSyncArgs = MutationProductDiscountSyncArgs;
|
|
26587
|
+
type appAPI_MutationProductDiscountUpdateArgs = MutationProductDiscountUpdateArgs;
|
|
25643
26588
|
type appAPI_MutationPublicShopLibraryPageCreateArgs = MutationPublicShopLibraryPageCreateArgs;
|
|
25644
26589
|
type appAPI_MutationPublicShopLibraryPageDeleteArgs = MutationPublicShopLibraryPageDeleteArgs;
|
|
25645
26590
|
type appAPI_MutationPublicShopLibraryPageForceDeleteArgs = MutationPublicShopLibraryPageForceDeleteArgs;
|
|
@@ -25663,6 +26608,7 @@ type appAPI_MutationSaleFunnelDeleteArgs = MutationSaleFunnelDeleteArgs;
|
|
|
25663
26608
|
type appAPI_MutationSaleFunnelDiscountCreateOrUpdateArgs = MutationSaleFunnelDiscountCreateOrUpdateArgs;
|
|
25664
26609
|
type appAPI_MutationSaleFunnelDiscountDeleteArgs = MutationSaleFunnelDiscountDeleteArgs;
|
|
25665
26610
|
type appAPI_MutationSaleFunnelDuplicateArgs = MutationSaleFunnelDuplicateArgs;
|
|
26611
|
+
type appAPI_MutationSaleFunnelDuplicateToArgs = MutationSaleFunnelDuplicateToArgs;
|
|
25666
26612
|
type appAPI_MutationSaleFunnelMetaCreateOrUpdateArgs = MutationSaleFunnelMetaCreateOrUpdateArgs;
|
|
25667
26613
|
type appAPI_MutationSaleFunnelMetaDeleteArgs = MutationSaleFunnelMetaDeleteArgs;
|
|
25668
26614
|
type appAPI_MutationSaleFunnelOfferCreateArgs = MutationSaleFunnelOfferCreateArgs;
|
|
@@ -25670,9 +26616,11 @@ type appAPI_MutationSaleFunnelOfferDeleteArgs = MutationSaleFunnelOfferDeleteArg
|
|
|
25670
26616
|
type appAPI_MutationSaleFunnelOfferPublishArgs = MutationSaleFunnelOfferPublishArgs;
|
|
25671
26617
|
type appAPI_MutationSaleFunnelOfferUnPublishArgs = MutationSaleFunnelOfferUnPublishArgs;
|
|
25672
26618
|
type appAPI_MutationSaleFunnelOfferUpdateArgs = MutationSaleFunnelOfferUpdateArgs;
|
|
26619
|
+
type appAPI_MutationSaleFunnelPublishArgs = MutationSaleFunnelPublishArgs;
|
|
25673
26620
|
type appAPI_MutationSaleFunnelRedirectCreateArgs = MutationSaleFunnelRedirectCreateArgs;
|
|
25674
26621
|
type appAPI_MutationSaleFunnelRedirectDeleteArgs = MutationSaleFunnelRedirectDeleteArgs;
|
|
25675
26622
|
type appAPI_MutationSaleFunnelRedirectUpdateArgs = MutationSaleFunnelRedirectUpdateArgs;
|
|
26623
|
+
type appAPI_MutationSaleFunnelReplaceComponentDataArgs = MutationSaleFunnelReplaceComponentDataArgs;
|
|
25676
26624
|
type appAPI_MutationSaleFunnelTriggerCreateArgs = MutationSaleFunnelTriggerCreateArgs;
|
|
25677
26625
|
type appAPI_MutationSaleFunnelTriggerDeleteArgs = MutationSaleFunnelTriggerDeleteArgs;
|
|
25678
26626
|
type appAPI_MutationSaleFunnelUpdateArgs = MutationSaleFunnelUpdateArgs;
|
|
@@ -25752,6 +26700,7 @@ type appAPI_MutationThemePageMakeFromPageVersionArgs = MutationThemePageMakeFrom
|
|
|
25752
26700
|
type appAPI_MutationThemePageMetaBatchUpsertArgs = MutationThemePageMetaBatchUpsertArgs;
|
|
25753
26701
|
type appAPI_MutationThemePageMetaCreateOrUpdateArgs = MutationThemePageMetaCreateOrUpdateArgs;
|
|
25754
26702
|
type appAPI_MutationThemePageMetaDeleteArgs = MutationThemePageMetaDeleteArgs;
|
|
26703
|
+
type appAPI_MutationThemePageOnlineStoreDataAppendArgs = MutationThemePageOnlineStoreDataAppendArgs;
|
|
25755
26704
|
type appAPI_MutationThemePageOnlineStoreDataCreateArgs = MutationThemePageOnlineStoreDataCreateArgs;
|
|
25756
26705
|
type appAPI_MutationThemePageOnlineStoreDataDeleteArgs = MutationThemePageOnlineStoreDataDeleteArgs;
|
|
25757
26706
|
type appAPI_MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs = MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs;
|
|
@@ -25795,7 +26744,6 @@ type appAPI_MutationTriggerConditionDeleteArgs = MutationTriggerConditionDeleteA
|
|
|
25795
26744
|
type appAPI_MutationUnsubscribeWebhooksArgs = MutationUnsubscribeWebhooksArgs;
|
|
25796
26745
|
type appAPI_MutationUserMetaCreateOrUpdateArgs = MutationUserMetaCreateOrUpdateArgs;
|
|
25797
26746
|
type appAPI_MutationUserMetaDeleteArgs = MutationUserMetaDeleteArgs;
|
|
25798
|
-
type appAPI_ObjectType = ObjectType;
|
|
25799
26747
|
type appAPI_OrderDirection = OrderDirection;
|
|
25800
26748
|
type appAPI_OrderFields = OrderFields;
|
|
25801
26749
|
type appAPI_OrderTriggerCondition = OrderTriggerCondition;
|
|
@@ -25803,6 +26751,8 @@ type appAPI_Page = Page;
|
|
|
25803
26751
|
type appAPI_PageConnection = PageConnection;
|
|
25804
26752
|
type appAPI_PageEdge = PageEdge;
|
|
25805
26753
|
type appAPI_PageInfo = PageInfo;
|
|
26754
|
+
type appAPI_PageInteraction = PageInteraction;
|
|
26755
|
+
type appAPI_PageInteractionWhereInput = PageInteractionWhereInput;
|
|
25806
26756
|
type appAPI_PageMetafieldArgs = PageMetafieldArgs;
|
|
25807
26757
|
type appAPI_PageOrder = PageOrder;
|
|
25808
26758
|
type appAPI_PageOrderField = PageOrderField;
|
|
@@ -25839,8 +26789,24 @@ type appAPI_PriceRulePlatform = PriceRulePlatform;
|
|
|
25839
26789
|
type appAPI_PriceRuleWhereInput = PriceRuleWhereInput;
|
|
25840
26790
|
type appAPI_Product = Product;
|
|
25841
26791
|
type appAPI_ProductCollectionsArgs = ProductCollectionsArgs;
|
|
26792
|
+
type appAPI_ProductComponent = ProductComponent;
|
|
25842
26793
|
type appAPI_ProductConnection = ProductConnection;
|
|
26794
|
+
type appAPI_ProductDiscount = ProductDiscount;
|
|
26795
|
+
type appAPI_ProductDiscountConnection = ProductDiscountConnection;
|
|
26796
|
+
type appAPI_ProductDiscountEdge = ProductDiscountEdge;
|
|
26797
|
+
type appAPI_ProductDiscountObject = ProductDiscountObject;
|
|
26798
|
+
type appAPI_ProductDiscountObjectConnection = ProductDiscountObjectConnection;
|
|
26799
|
+
type appAPI_ProductDiscountObjectEdge = ProductDiscountObjectEdge;
|
|
26800
|
+
type appAPI_ProductDiscountObjectOrder = ProductDiscountObjectOrder;
|
|
26801
|
+
type appAPI_ProductDiscountObjectOrderField = ProductDiscountObjectOrderField;
|
|
26802
|
+
type appAPI_ProductDiscountObjectType = ProductDiscountObjectType;
|
|
26803
|
+
type appAPI_ProductDiscountObjectWhereInput = ProductDiscountObjectWhereInput;
|
|
26804
|
+
type appAPI_ProductDiscountOrder = ProductDiscountOrder;
|
|
26805
|
+
type appAPI_ProductDiscountOrderField = ProductDiscountOrderField;
|
|
26806
|
+
type appAPI_ProductDiscountType = ProductDiscountType;
|
|
26807
|
+
type appAPI_ProductDiscountWhereInput = ProductDiscountWhereInput;
|
|
25843
26808
|
type appAPI_ProductEdge = ProductEdge;
|
|
26809
|
+
type appAPI_ProductListComponent = ProductListComponent;
|
|
25844
26810
|
type appAPI_ProductMediasArgs = ProductMediasArgs;
|
|
25845
26811
|
type appAPI_ProductMetafieldArgs = ProductMetafieldArgs;
|
|
25846
26812
|
type appAPI_ProductOption = ProductOption;
|
|
@@ -25876,11 +26842,8 @@ type appAPI_PublishStatus = PublishStatus;
|
|
|
25876
26842
|
type appAPI_PublishedCustomSection = PublishedCustomSection;
|
|
25877
26843
|
type appAPI_PublishedCustomSectionType = PublishedCustomSectionType;
|
|
25878
26844
|
type appAPI_PublishedCustomSectionWhereInput = PublishedCustomSectionWhereInput;
|
|
25879
|
-
type
|
|
25880
|
-
type
|
|
25881
|
-
type appAPI_PublishedGlobalSectionEdge = PublishedGlobalSectionEdge;
|
|
25882
|
-
type appAPI_PublishedGlobalSectionOrder = PublishedGlobalSectionOrder;
|
|
25883
|
-
type appAPI_PublishedGlobalSectionOrderField = PublishedGlobalSectionOrderField;
|
|
26845
|
+
type appAPI_PublishedPageInteraction = PublishedPageInteraction;
|
|
26846
|
+
type appAPI_PublishedPageInteractionWhereInput = PublishedPageInteractionWhereInput;
|
|
25884
26847
|
type appAPI_PublishedPageSection = PublishedPageSection;
|
|
25885
26848
|
type appAPI_PublishedPageSectionMeta = PublishedPageSectionMeta;
|
|
25886
26849
|
type appAPI_PublishedPageSectionMetaWhereInput = PublishedPageSectionMetaWhereInput;
|
|
@@ -25922,6 +26885,7 @@ type appAPI_QueryBackgroundTasksArgs = QueryBackgroundTasksArgs;
|
|
|
25922
26885
|
type appAPI_QueryBlogArgs = QueryBlogArgs;
|
|
25923
26886
|
type appAPI_QueryBlogsArgs = QueryBlogsArgs;
|
|
25924
26887
|
type appAPI_QueryCampaignOfferStatsArgs = QueryCampaignOfferStatsArgs;
|
|
26888
|
+
type appAPI_QueryCampaignOfferTotalStatArgs = QueryCampaignOfferTotalStatArgs;
|
|
25925
26889
|
type appAPI_QueryCampaignVersionsArgs = QueryCampaignVersionsArgs;
|
|
25926
26890
|
type appAPI_QueryCartArgs = QueryCartArgs;
|
|
25927
26891
|
type appAPI_QueryCollectionArgs = QueryCollectionArgs;
|
|
@@ -25960,9 +26924,14 @@ type appAPI_QueryPageSectionsArgs = QueryPageSectionsArgs;
|
|
|
25960
26924
|
type appAPI_QueryPageViewsArgs = QueryPageViewsArgs;
|
|
25961
26925
|
type appAPI_QueryPagesArgs = QueryPagesArgs;
|
|
25962
26926
|
type appAPI_QueryParameter = QueryParameter;
|
|
26927
|
+
type appAPI_QueryPlatformOriginalTemplateArgs = QueryPlatformOriginalTemplateArgs;
|
|
25963
26928
|
type appAPI_QueryPlatformPagesArgs = QueryPlatformPagesArgs;
|
|
25964
26929
|
type appAPI_QueryPreviewPageArgs = QueryPreviewPageArgs;
|
|
25965
26930
|
type appAPI_QueryProductArgs = QueryProductArgs;
|
|
26931
|
+
type appAPI_QueryProductDiscountArgs = QueryProductDiscountArgs;
|
|
26932
|
+
type appAPI_QueryProductDiscountObjectArgs = QueryProductDiscountObjectArgs;
|
|
26933
|
+
type appAPI_QueryProductDiscountObjectsArgs = QueryProductDiscountObjectsArgs;
|
|
26934
|
+
type appAPI_QueryProductDiscountsArgs = QueryProductDiscountsArgs;
|
|
25966
26935
|
type appAPI_QueryProductOptionNameArgs = QueryProductOptionNameArgs;
|
|
25967
26936
|
type appAPI_QueryProductOptionValueLabelArgs = QueryProductOptionValueLabelArgs;
|
|
25968
26937
|
type appAPI_QueryProductOptionValuesArgs = QueryProductOptionValuesArgs;
|
|
@@ -25974,8 +26943,6 @@ type appAPI_QueryPublicShopLibrarySectionArgs = QueryPublicShopLibrarySectionArg
|
|
|
25974
26943
|
type appAPI_QueryPublicShopLibrarySectionsArgs = QueryPublicShopLibrarySectionsArgs;
|
|
25975
26944
|
type appAPI_QueryPublicShopLibraryThemeArgs = QueryPublicShopLibraryThemeArgs;
|
|
25976
26945
|
type appAPI_QueryPublicShopLibraryThemesArgs = QueryPublicShopLibraryThemesArgs;
|
|
25977
|
-
type appAPI_QueryPublishedGlobalSectionArgs = QueryPublishedGlobalSectionArgs;
|
|
25978
|
-
type appAPI_QueryPublishedGlobalSectionsArgs = QueryPublishedGlobalSectionsArgs;
|
|
25979
26946
|
type appAPI_QueryPublishedThemePagesArgs = QueryPublishedThemePagesArgs;
|
|
25980
26947
|
type appAPI_QueryPublishedThemeSectionArgs = QueryPublishedThemeSectionArgs;
|
|
25981
26948
|
type appAPI_QueryPublishedThemeSectionsArgs = QueryPublishedThemeSectionsArgs;
|
|
@@ -25986,6 +26953,7 @@ type appAPI_QuerySaleFunnelDiscountsArgs = QuerySaleFunnelDiscountsArgs;
|
|
|
25986
26953
|
type appAPI_QuerySaleFunnelMetasArgs = QuerySaleFunnelMetasArgs;
|
|
25987
26954
|
type appAPI_QuerySaleFunnelOfferArgs = QuerySaleFunnelOfferArgs;
|
|
25988
26955
|
type appAPI_QuerySaleFunnelOfferStatsArgs = QuerySaleFunnelOfferStatsArgs;
|
|
26956
|
+
type appAPI_QuerySaleFunnelOfferTotalStatArgs = QuerySaleFunnelOfferTotalStatArgs;
|
|
25989
26957
|
type appAPI_QuerySaleFunnelOffersArgs = QuerySaleFunnelOffersArgs;
|
|
25990
26958
|
type appAPI_QuerySaleFunnelStatsArgs = QuerySaleFunnelStatsArgs;
|
|
25991
26959
|
type appAPI_QuerySaleFunnelTotalStatArgs = QuerySaleFunnelTotalStatArgs;
|
|
@@ -26061,6 +27029,7 @@ type appAPI_SaleFunnelDiscountType = SaleFunnelDiscountType;
|
|
|
26061
27029
|
type appAPI_SaleFunnelDiscountValueType = SaleFunnelDiscountValueType;
|
|
26062
27030
|
type appAPI_SaleFunnelDiscountWhereInput = SaleFunnelDiscountWhereInput;
|
|
26063
27031
|
type appAPI_SaleFunnelEdge = SaleFunnelEdge;
|
|
27032
|
+
type appAPI_SaleFunnelLimitation = SaleFunnelLimitation;
|
|
26064
27033
|
type appAPI_SaleFunnelMeta = SaleFunnelMeta;
|
|
26065
27034
|
type appAPI_SaleFunnelMetaConnection = SaleFunnelMetaConnection;
|
|
26066
27035
|
type appAPI_SaleFunnelMetaEdge = SaleFunnelMetaEdge;
|
|
@@ -26084,6 +27053,7 @@ type appAPI_SaleFunnelOrder = SaleFunnelOrder;
|
|
|
26084
27053
|
type appAPI_SaleFunnelOrderField = SaleFunnelOrderField;
|
|
26085
27054
|
type appAPI_SaleFunnelRedirect = SaleFunnelRedirect;
|
|
26086
27055
|
type appAPI_SaleFunnelRedirectWhereInput = SaleFunnelRedirectWhereInput;
|
|
27056
|
+
type appAPI_SaleFunnelReplaceComponentDataInput = SaleFunnelReplaceComponentDataInput;
|
|
26087
27057
|
type appAPI_SaleFunnelStat = SaleFunnelStat;
|
|
26088
27058
|
type appAPI_SaleFunnelStatConnection = SaleFunnelStatConnection;
|
|
26089
27059
|
type appAPI_SaleFunnelStatEdge = SaleFunnelStatEdge;
|
|
@@ -26157,6 +27127,7 @@ type appAPI_ShopifyTheme = ShopifyTheme;
|
|
|
26157
27127
|
type appAPI_SocketStatus = SocketStatus;
|
|
26158
27128
|
type appAPI_StatConvertLayoutData = StatConvertLayoutData;
|
|
26159
27129
|
type appAPI_StatConvertLayoutWhereInput = StatConvertLayoutWhereInput;
|
|
27130
|
+
type appAPI_StatGenerateContentWhereInput = StatGenerateContentWhereInput;
|
|
26160
27131
|
type appAPI_StatPageViewWhereInput = StatPageViewWhereInput;
|
|
26161
27132
|
type appAPI_Status = Status;
|
|
26162
27133
|
type appAPI_StoreProperty = StoreProperty;
|
|
@@ -26263,7 +27234,9 @@ type appAPI_UpdateIconInput = UpdateIconInput;
|
|
|
26263
27234
|
type appAPI_UpdateLibrarySaleFunnelInput = UpdateLibrarySaleFunnelInput;
|
|
26264
27235
|
type appAPI_UpdateLibrarySectionInput = UpdateLibrarySectionInput;
|
|
26265
27236
|
type appAPI_UpdateLibraryTemplateInput = UpdateLibraryTemplateInput;
|
|
27237
|
+
type appAPI_UpdatePageInteractionInput = UpdatePageInteractionInput;
|
|
26266
27238
|
type appAPI_UpdatePageSectionInput = UpdatePageSectionInput;
|
|
27239
|
+
type appAPI_UpdateProductDiscountInput = UpdateProductDiscountInput;
|
|
26267
27240
|
type appAPI_UpdateSaleFunnelCampaignInput = UpdateSaleFunnelCampaignInput;
|
|
26268
27241
|
type appAPI_UpdateSaleFunnelDiscountInput = UpdateSaleFunnelDiscountInput;
|
|
26269
27242
|
type appAPI_UpdateSaleFunnelInput = UpdateSaleFunnelInput;
|
|
@@ -26305,6 +27278,8 @@ declare namespace appAPI {
|
|
|
26305
27278
|
appAPI_ArticleBlogWhereInput as ArticleBlogWhereInput,
|
|
26306
27279
|
appAPI_ArticleBlogsArgs as ArticleBlogsArgs,
|
|
26307
27280
|
appAPI_ArticleConnection as ArticleConnection,
|
|
27281
|
+
appAPI_ArticleContent as ArticleContent,
|
|
27282
|
+
appAPI_ArticleContentWhereInput as ArticleContentWhereInput,
|
|
26308
27283
|
appAPI_ArticleEdge as ArticleEdge,
|
|
26309
27284
|
appAPI_ArticleMetafieldArgs as ArticleMetafieldArgs,
|
|
26310
27285
|
appAPI_ArticleOrder as ArticleOrder,
|
|
@@ -26377,8 +27352,11 @@ declare namespace appAPI {
|
|
|
26377
27352
|
appAPI_CreateLibrarySaleFunnelMetaInput as CreateLibrarySaleFunnelMetaInput,
|
|
26378
27353
|
appAPI_CreateLibrarySectionTagInput as CreateLibrarySectionTagInput,
|
|
26379
27354
|
appAPI_CreateLibraryTemplateTagInput as CreateLibraryTemplateTagInput,
|
|
27355
|
+
appAPI_CreatePageInteractionInput as CreatePageInteractionInput,
|
|
26380
27356
|
appAPI_CreatePageSectionInput as CreatePageSectionInput,
|
|
26381
27357
|
appAPI_CreatePlatformOriginalTemplateInput as CreatePlatformOriginalTemplateInput,
|
|
27358
|
+
appAPI_CreateProductDiscountInput as CreateProductDiscountInput,
|
|
27359
|
+
appAPI_CreateProductDiscountObjectInput as CreateProductDiscountObjectInput,
|
|
26382
27360
|
appAPI_CreateSaleFunnelDiscountInput as CreateSaleFunnelDiscountInput,
|
|
26383
27361
|
appAPI_CreateSaleFunnelInput as CreateSaleFunnelInput,
|
|
26384
27362
|
appAPI_CreateSaleFunnelMetaInput as CreateSaleFunnelMetaInput,
|
|
@@ -26474,6 +27452,7 @@ declare namespace appAPI {
|
|
|
26474
27452
|
appAPI_FontOrderField as FontOrderField,
|
|
26475
27453
|
appAPI_FontStorage as FontStorage,
|
|
26476
27454
|
appAPI_FontWhereInput as FontWhereInput,
|
|
27455
|
+
appAPI_GenerateContentLimitation as GenerateContentLimitation,
|
|
26477
27456
|
appAPI_GlobalComponent as GlobalComponent,
|
|
26478
27457
|
appAPI_GlobalComponentConnection as GlobalComponentConnection,
|
|
26479
27458
|
appAPI_GlobalComponentEdge as GlobalComponentEdge,
|
|
@@ -26490,6 +27469,7 @@ declare namespace appAPI {
|
|
|
26490
27469
|
appAPI_GlobalStoreVersionOrder as GlobalStoreVersionOrder,
|
|
26491
27470
|
appAPI_GlobalStoreVersionOrderField as GlobalStoreVersionOrderField,
|
|
26492
27471
|
appAPI_GlobalStoreVersionWhereInput as GlobalStoreVersionWhereInput,
|
|
27472
|
+
appAPI_GroupByFields as GroupByFields,
|
|
26493
27473
|
appAPI_Icon as Icon,
|
|
26494
27474
|
appAPI_IconConnection as IconConnection,
|
|
26495
27475
|
appAPI_IconEdge as IconEdge,
|
|
@@ -26556,7 +27536,9 @@ declare namespace appAPI {
|
|
|
26556
27536
|
appAPI_MediaOrderField as MediaOrderField,
|
|
26557
27537
|
appAPI_MediaWhereInput as MediaWhereInput,
|
|
26558
27538
|
appAPI_Metafield as Metafield,
|
|
27539
|
+
appAPI_MetafieldObjectType as MetafieldObjectType,
|
|
26559
27540
|
appAPI_MetafieldWhereInput as MetafieldWhereInput,
|
|
27541
|
+
appAPI_Money as Money,
|
|
26560
27542
|
appAPI_Mutation as Mutation,
|
|
26561
27543
|
appAPI_MutationAssignObjectTriggerConditionCreateArgs as MutationAssignObjectTriggerConditionCreateArgs,
|
|
26562
27544
|
appAPI_MutationAssignObjectTriggerConditionUpdateArgs as MutationAssignObjectTriggerConditionUpdateArgs,
|
|
@@ -26591,7 +27573,6 @@ declare namespace appAPI {
|
|
|
26591
27573
|
appAPI_MutationFileDeleteArgs as MutationFileDeleteArgs,
|
|
26592
27574
|
appAPI_MutationFileRestoreArgs as MutationFileRestoreArgs,
|
|
26593
27575
|
appAPI_MutationFileRestoreByBkFileKeyArgs as MutationFileRestoreByBkFileKeyArgs,
|
|
26594
|
-
appAPI_MutationFileUploadArgs as MutationFileUploadArgs,
|
|
26595
27576
|
appAPI_MutationFileUploadByUrlArgs as MutationFileUploadByUrlArgs,
|
|
26596
27577
|
appAPI_MutationFontDeleteArgs as MutationFontDeleteArgs,
|
|
26597
27578
|
appAPI_MutationGlobalComponentCreateArgs as MutationGlobalComponentCreateArgs,
|
|
@@ -26620,6 +27601,11 @@ declare namespace appAPI {
|
|
|
26620
27601
|
appAPI_MutationLibraryTemplateTagDeleteArgs as MutationLibraryTemplateTagDeleteArgs,
|
|
26621
27602
|
appAPI_MutationLibraryTemplateUpdateArgs as MutationLibraryTemplateUpdateArgs,
|
|
26622
27603
|
appAPI_MutationMakeStyleGlobalArgs as MutationMakeStyleGlobalArgs,
|
|
27604
|
+
appAPI_MutationPageInteractionCreateArgs as MutationPageInteractionCreateArgs,
|
|
27605
|
+
appAPI_MutationPageInteractionDeleteArgs as MutationPageInteractionDeleteArgs,
|
|
27606
|
+
appAPI_MutationPageInteractionPreviewArgs as MutationPageInteractionPreviewArgs,
|
|
27607
|
+
appAPI_MutationPageInteractionPublishArgs as MutationPageInteractionPublishArgs,
|
|
27608
|
+
appAPI_MutationPageInteractionUpdateArgs as MutationPageInteractionUpdateArgs,
|
|
26623
27609
|
appAPI_MutationPageSectionBulkCreateArgs as MutationPageSectionBulkCreateArgs,
|
|
26624
27610
|
appAPI_MutationPageSectionCreateArgs as MutationPageSectionCreateArgs,
|
|
26625
27611
|
appAPI_MutationPageSectionCreateFromThemeSectionArgs as MutationPageSectionCreateFromThemeSectionArgs,
|
|
@@ -26629,8 +27615,17 @@ declare namespace appAPI {
|
|
|
26629
27615
|
appAPI_MutationPageSectionsBulkDeleteArgs as MutationPageSectionsBulkDeleteArgs,
|
|
26630
27616
|
appAPI_MutationPageSectionsBulkUpdateArgs as MutationPageSectionsBulkUpdateArgs,
|
|
26631
27617
|
appAPI_MutationPageViewUpArgs as MutationPageViewUpArgs,
|
|
27618
|
+
appAPI_MutationPlatformOriginalTemplateDeleteArgs as MutationPlatformOriginalTemplateDeleteArgs,
|
|
27619
|
+
appAPI_MutationPlatformOriginalTemplateResetArgs as MutationPlatformOriginalTemplateResetArgs,
|
|
26632
27620
|
appAPI_MutationPlatformOriginalTemplateSyncArgs as MutationPlatformOriginalTemplateSyncArgs,
|
|
26633
27621
|
appAPI_MutationPlatformOriginalTemplateUpsertArgs as MutationPlatformOriginalTemplateUpsertArgs,
|
|
27622
|
+
appAPI_MutationProductDiscountActivateArgs as MutationProductDiscountActivateArgs,
|
|
27623
|
+
appAPI_MutationProductDiscountCreateArgs as MutationProductDiscountCreateArgs,
|
|
27624
|
+
appAPI_MutationProductDiscountDeactivateArgs as MutationProductDiscountDeactivateArgs,
|
|
27625
|
+
appAPI_MutationProductDiscountDeleteArgs as MutationProductDiscountDeleteArgs,
|
|
27626
|
+
appAPI_MutationProductDiscountDuplicateArgs as MutationProductDiscountDuplicateArgs,
|
|
27627
|
+
appAPI_MutationProductDiscountSyncArgs as MutationProductDiscountSyncArgs,
|
|
27628
|
+
appAPI_MutationProductDiscountUpdateArgs as MutationProductDiscountUpdateArgs,
|
|
26634
27629
|
appAPI_MutationPublicShopLibraryPageCreateArgs as MutationPublicShopLibraryPageCreateArgs,
|
|
26635
27630
|
appAPI_MutationPublicShopLibraryPageDeleteArgs as MutationPublicShopLibraryPageDeleteArgs,
|
|
26636
27631
|
appAPI_MutationPublicShopLibraryPageForceDeleteArgs as MutationPublicShopLibraryPageForceDeleteArgs,
|
|
@@ -26654,6 +27649,7 @@ declare namespace appAPI {
|
|
|
26654
27649
|
appAPI_MutationSaleFunnelDiscountCreateOrUpdateArgs as MutationSaleFunnelDiscountCreateOrUpdateArgs,
|
|
26655
27650
|
appAPI_MutationSaleFunnelDiscountDeleteArgs as MutationSaleFunnelDiscountDeleteArgs,
|
|
26656
27651
|
appAPI_MutationSaleFunnelDuplicateArgs as MutationSaleFunnelDuplicateArgs,
|
|
27652
|
+
appAPI_MutationSaleFunnelDuplicateToArgs as MutationSaleFunnelDuplicateToArgs,
|
|
26657
27653
|
appAPI_MutationSaleFunnelMetaCreateOrUpdateArgs as MutationSaleFunnelMetaCreateOrUpdateArgs,
|
|
26658
27654
|
appAPI_MutationSaleFunnelMetaDeleteArgs as MutationSaleFunnelMetaDeleteArgs,
|
|
26659
27655
|
appAPI_MutationSaleFunnelOfferCreateArgs as MutationSaleFunnelOfferCreateArgs,
|
|
@@ -26661,9 +27657,11 @@ declare namespace appAPI {
|
|
|
26661
27657
|
appAPI_MutationSaleFunnelOfferPublishArgs as MutationSaleFunnelOfferPublishArgs,
|
|
26662
27658
|
appAPI_MutationSaleFunnelOfferUnPublishArgs as MutationSaleFunnelOfferUnPublishArgs,
|
|
26663
27659
|
appAPI_MutationSaleFunnelOfferUpdateArgs as MutationSaleFunnelOfferUpdateArgs,
|
|
27660
|
+
appAPI_MutationSaleFunnelPublishArgs as MutationSaleFunnelPublishArgs,
|
|
26664
27661
|
appAPI_MutationSaleFunnelRedirectCreateArgs as MutationSaleFunnelRedirectCreateArgs,
|
|
26665
27662
|
appAPI_MutationSaleFunnelRedirectDeleteArgs as MutationSaleFunnelRedirectDeleteArgs,
|
|
26666
27663
|
appAPI_MutationSaleFunnelRedirectUpdateArgs as MutationSaleFunnelRedirectUpdateArgs,
|
|
27664
|
+
appAPI_MutationSaleFunnelReplaceComponentDataArgs as MutationSaleFunnelReplaceComponentDataArgs,
|
|
26667
27665
|
appAPI_MutationSaleFunnelTriggerCreateArgs as MutationSaleFunnelTriggerCreateArgs,
|
|
26668
27666
|
appAPI_MutationSaleFunnelTriggerDeleteArgs as MutationSaleFunnelTriggerDeleteArgs,
|
|
26669
27667
|
appAPI_MutationSaleFunnelUpdateArgs as MutationSaleFunnelUpdateArgs,
|
|
@@ -26743,6 +27741,7 @@ declare namespace appAPI {
|
|
|
26743
27741
|
appAPI_MutationThemePageMetaBatchUpsertArgs as MutationThemePageMetaBatchUpsertArgs,
|
|
26744
27742
|
appAPI_MutationThemePageMetaCreateOrUpdateArgs as MutationThemePageMetaCreateOrUpdateArgs,
|
|
26745
27743
|
appAPI_MutationThemePageMetaDeleteArgs as MutationThemePageMetaDeleteArgs,
|
|
27744
|
+
appAPI_MutationThemePageOnlineStoreDataAppendArgs as MutationThemePageOnlineStoreDataAppendArgs,
|
|
26746
27745
|
appAPI_MutationThemePageOnlineStoreDataCreateArgs as MutationThemePageOnlineStoreDataCreateArgs,
|
|
26747
27746
|
appAPI_MutationThemePageOnlineStoreDataDeleteArgs as MutationThemePageOnlineStoreDataDeleteArgs,
|
|
26748
27747
|
appAPI_MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs as MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs,
|
|
@@ -26786,7 +27785,6 @@ declare namespace appAPI {
|
|
|
26786
27785
|
appAPI_MutationUnsubscribeWebhooksArgs as MutationUnsubscribeWebhooksArgs,
|
|
26787
27786
|
appAPI_MutationUserMetaCreateOrUpdateArgs as MutationUserMetaCreateOrUpdateArgs,
|
|
26788
27787
|
appAPI_MutationUserMetaDeleteArgs as MutationUserMetaDeleteArgs,
|
|
26789
|
-
appAPI_ObjectType as ObjectType,
|
|
26790
27788
|
appAPI_OrderDirection as OrderDirection,
|
|
26791
27789
|
appAPI_OrderFields as OrderFields,
|
|
26792
27790
|
appAPI_OrderTriggerCondition as OrderTriggerCondition,
|
|
@@ -26794,6 +27792,8 @@ declare namespace appAPI {
|
|
|
26794
27792
|
appAPI_PageConnection as PageConnection,
|
|
26795
27793
|
appAPI_PageEdge as PageEdge,
|
|
26796
27794
|
appAPI_PageInfo as PageInfo,
|
|
27795
|
+
appAPI_PageInteraction as PageInteraction,
|
|
27796
|
+
appAPI_PageInteractionWhereInput as PageInteractionWhereInput,
|
|
26797
27797
|
appAPI_PageMetafieldArgs as PageMetafieldArgs,
|
|
26798
27798
|
appAPI_PageOrder as PageOrder,
|
|
26799
27799
|
appAPI_PageOrderField as PageOrderField,
|
|
@@ -26830,8 +27830,24 @@ declare namespace appAPI {
|
|
|
26830
27830
|
appAPI_PriceRuleWhereInput as PriceRuleWhereInput,
|
|
26831
27831
|
appAPI_Product as Product,
|
|
26832
27832
|
appAPI_ProductCollectionsArgs as ProductCollectionsArgs,
|
|
27833
|
+
appAPI_ProductComponent as ProductComponent,
|
|
26833
27834
|
appAPI_ProductConnection as ProductConnection,
|
|
27835
|
+
appAPI_ProductDiscount as ProductDiscount,
|
|
27836
|
+
appAPI_ProductDiscountConnection as ProductDiscountConnection,
|
|
27837
|
+
appAPI_ProductDiscountEdge as ProductDiscountEdge,
|
|
27838
|
+
appAPI_ProductDiscountObject as ProductDiscountObject,
|
|
27839
|
+
appAPI_ProductDiscountObjectConnection as ProductDiscountObjectConnection,
|
|
27840
|
+
appAPI_ProductDiscountObjectEdge as ProductDiscountObjectEdge,
|
|
27841
|
+
appAPI_ProductDiscountObjectOrder as ProductDiscountObjectOrder,
|
|
27842
|
+
appAPI_ProductDiscountObjectOrderField as ProductDiscountObjectOrderField,
|
|
27843
|
+
appAPI_ProductDiscountObjectType as ProductDiscountObjectType,
|
|
27844
|
+
appAPI_ProductDiscountObjectWhereInput as ProductDiscountObjectWhereInput,
|
|
27845
|
+
appAPI_ProductDiscountOrder as ProductDiscountOrder,
|
|
27846
|
+
appAPI_ProductDiscountOrderField as ProductDiscountOrderField,
|
|
27847
|
+
appAPI_ProductDiscountType as ProductDiscountType,
|
|
27848
|
+
appAPI_ProductDiscountWhereInput as ProductDiscountWhereInput,
|
|
26834
27849
|
appAPI_ProductEdge as ProductEdge,
|
|
27850
|
+
appAPI_ProductListComponent as ProductListComponent,
|
|
26835
27851
|
appAPI_ProductMediasArgs as ProductMediasArgs,
|
|
26836
27852
|
appAPI_ProductMetafieldArgs as ProductMetafieldArgs,
|
|
26837
27853
|
appAPI_ProductOption as ProductOption,
|
|
@@ -26867,11 +27883,8 @@ declare namespace appAPI {
|
|
|
26867
27883
|
appAPI_PublishedCustomSection as PublishedCustomSection,
|
|
26868
27884
|
appAPI_PublishedCustomSectionType as PublishedCustomSectionType,
|
|
26869
27885
|
appAPI_PublishedCustomSectionWhereInput as PublishedCustomSectionWhereInput,
|
|
26870
|
-
|
|
26871
|
-
|
|
26872
|
-
appAPI_PublishedGlobalSectionEdge as PublishedGlobalSectionEdge,
|
|
26873
|
-
appAPI_PublishedGlobalSectionOrder as PublishedGlobalSectionOrder,
|
|
26874
|
-
appAPI_PublishedGlobalSectionOrderField as PublishedGlobalSectionOrderField,
|
|
27886
|
+
appAPI_PublishedPageInteraction as PublishedPageInteraction,
|
|
27887
|
+
appAPI_PublishedPageInteractionWhereInput as PublishedPageInteractionWhereInput,
|
|
26875
27888
|
appAPI_PublishedPageSection as PublishedPageSection,
|
|
26876
27889
|
appAPI_PublishedPageSectionMeta as PublishedPageSectionMeta,
|
|
26877
27890
|
appAPI_PublishedPageSectionMetaWhereInput as PublishedPageSectionMetaWhereInput,
|
|
@@ -26913,6 +27926,7 @@ declare namespace appAPI {
|
|
|
26913
27926
|
appAPI_QueryBlogArgs as QueryBlogArgs,
|
|
26914
27927
|
appAPI_QueryBlogsArgs as QueryBlogsArgs,
|
|
26915
27928
|
appAPI_QueryCampaignOfferStatsArgs as QueryCampaignOfferStatsArgs,
|
|
27929
|
+
appAPI_QueryCampaignOfferTotalStatArgs as QueryCampaignOfferTotalStatArgs,
|
|
26916
27930
|
appAPI_QueryCampaignVersionsArgs as QueryCampaignVersionsArgs,
|
|
26917
27931
|
appAPI_QueryCartArgs as QueryCartArgs,
|
|
26918
27932
|
appAPI_QueryCollectionArgs as QueryCollectionArgs,
|
|
@@ -26951,9 +27965,14 @@ declare namespace appAPI {
|
|
|
26951
27965
|
appAPI_QueryPageViewsArgs as QueryPageViewsArgs,
|
|
26952
27966
|
appAPI_QueryPagesArgs as QueryPagesArgs,
|
|
26953
27967
|
appAPI_QueryParameter as QueryParameter,
|
|
27968
|
+
appAPI_QueryPlatformOriginalTemplateArgs as QueryPlatformOriginalTemplateArgs,
|
|
26954
27969
|
appAPI_QueryPlatformPagesArgs as QueryPlatformPagesArgs,
|
|
26955
27970
|
appAPI_QueryPreviewPageArgs as QueryPreviewPageArgs,
|
|
26956
27971
|
appAPI_QueryProductArgs as QueryProductArgs,
|
|
27972
|
+
appAPI_QueryProductDiscountArgs as QueryProductDiscountArgs,
|
|
27973
|
+
appAPI_QueryProductDiscountObjectArgs as QueryProductDiscountObjectArgs,
|
|
27974
|
+
appAPI_QueryProductDiscountObjectsArgs as QueryProductDiscountObjectsArgs,
|
|
27975
|
+
appAPI_QueryProductDiscountsArgs as QueryProductDiscountsArgs,
|
|
26957
27976
|
appAPI_QueryProductOptionNameArgs as QueryProductOptionNameArgs,
|
|
26958
27977
|
appAPI_QueryProductOptionValueLabelArgs as QueryProductOptionValueLabelArgs,
|
|
26959
27978
|
appAPI_QueryProductOptionValuesArgs as QueryProductOptionValuesArgs,
|
|
@@ -26965,8 +27984,6 @@ declare namespace appAPI {
|
|
|
26965
27984
|
appAPI_QueryPublicShopLibrarySectionsArgs as QueryPublicShopLibrarySectionsArgs,
|
|
26966
27985
|
appAPI_QueryPublicShopLibraryThemeArgs as QueryPublicShopLibraryThemeArgs,
|
|
26967
27986
|
appAPI_QueryPublicShopLibraryThemesArgs as QueryPublicShopLibraryThemesArgs,
|
|
26968
|
-
appAPI_QueryPublishedGlobalSectionArgs as QueryPublishedGlobalSectionArgs,
|
|
26969
|
-
appAPI_QueryPublishedGlobalSectionsArgs as QueryPublishedGlobalSectionsArgs,
|
|
26970
27987
|
appAPI_QueryPublishedThemePagesArgs as QueryPublishedThemePagesArgs,
|
|
26971
27988
|
appAPI_QueryPublishedThemeSectionArgs as QueryPublishedThemeSectionArgs,
|
|
26972
27989
|
appAPI_QueryPublishedThemeSectionsArgs as QueryPublishedThemeSectionsArgs,
|
|
@@ -26977,6 +27994,7 @@ declare namespace appAPI {
|
|
|
26977
27994
|
appAPI_QuerySaleFunnelMetasArgs as QuerySaleFunnelMetasArgs,
|
|
26978
27995
|
appAPI_QuerySaleFunnelOfferArgs as QuerySaleFunnelOfferArgs,
|
|
26979
27996
|
appAPI_QuerySaleFunnelOfferStatsArgs as QuerySaleFunnelOfferStatsArgs,
|
|
27997
|
+
appAPI_QuerySaleFunnelOfferTotalStatArgs as QuerySaleFunnelOfferTotalStatArgs,
|
|
26980
27998
|
appAPI_QuerySaleFunnelOffersArgs as QuerySaleFunnelOffersArgs,
|
|
26981
27999
|
appAPI_QuerySaleFunnelStatsArgs as QuerySaleFunnelStatsArgs,
|
|
26982
28000
|
appAPI_QuerySaleFunnelTotalStatArgs as QuerySaleFunnelTotalStatArgs,
|
|
@@ -27052,6 +28070,7 @@ declare namespace appAPI {
|
|
|
27052
28070
|
appAPI_SaleFunnelDiscountValueType as SaleFunnelDiscountValueType,
|
|
27053
28071
|
appAPI_SaleFunnelDiscountWhereInput as SaleFunnelDiscountWhereInput,
|
|
27054
28072
|
appAPI_SaleFunnelEdge as SaleFunnelEdge,
|
|
28073
|
+
appAPI_SaleFunnelLimitation as SaleFunnelLimitation,
|
|
27055
28074
|
appAPI_SaleFunnelMeta as SaleFunnelMeta,
|
|
27056
28075
|
appAPI_SaleFunnelMetaConnection as SaleFunnelMetaConnection,
|
|
27057
28076
|
appAPI_SaleFunnelMetaEdge as SaleFunnelMetaEdge,
|
|
@@ -27075,6 +28094,7 @@ declare namespace appAPI {
|
|
|
27075
28094
|
appAPI_SaleFunnelOrderField as SaleFunnelOrderField,
|
|
27076
28095
|
appAPI_SaleFunnelRedirect as SaleFunnelRedirect,
|
|
27077
28096
|
appAPI_SaleFunnelRedirectWhereInput as SaleFunnelRedirectWhereInput,
|
|
28097
|
+
appAPI_SaleFunnelReplaceComponentDataInput as SaleFunnelReplaceComponentDataInput,
|
|
27078
28098
|
appAPI_SaleFunnelStat as SaleFunnelStat,
|
|
27079
28099
|
appAPI_SaleFunnelStatConnection as SaleFunnelStatConnection,
|
|
27080
28100
|
appAPI_SaleFunnelStatEdge as SaleFunnelStatEdge,
|
|
@@ -27148,6 +28168,7 @@ declare namespace appAPI {
|
|
|
27148
28168
|
appAPI_SocketStatus as SocketStatus,
|
|
27149
28169
|
appAPI_StatConvertLayoutData as StatConvertLayoutData,
|
|
27150
28170
|
appAPI_StatConvertLayoutWhereInput as StatConvertLayoutWhereInput,
|
|
28171
|
+
appAPI_StatGenerateContentWhereInput as StatGenerateContentWhereInput,
|
|
27151
28172
|
appAPI_StatPageViewWhereInput as StatPageViewWhereInput,
|
|
27152
28173
|
appAPI_Status as Status,
|
|
27153
28174
|
appAPI_StoreProperty as StoreProperty,
|
|
@@ -27254,7 +28275,9 @@ declare namespace appAPI {
|
|
|
27254
28275
|
appAPI_UpdateLibrarySaleFunnelInput as UpdateLibrarySaleFunnelInput,
|
|
27255
28276
|
appAPI_UpdateLibrarySectionInput as UpdateLibrarySectionInput,
|
|
27256
28277
|
appAPI_UpdateLibraryTemplateInput as UpdateLibraryTemplateInput,
|
|
28278
|
+
appAPI_UpdatePageInteractionInput as UpdatePageInteractionInput,
|
|
27257
28279
|
appAPI_UpdatePageSectionInput as UpdatePageSectionInput,
|
|
28280
|
+
appAPI_UpdateProductDiscountInput as UpdateProductDiscountInput,
|
|
27258
28281
|
appAPI_UpdateSaleFunnelCampaignInput as UpdateSaleFunnelCampaignInput,
|
|
27259
28282
|
appAPI_UpdateSaleFunnelDiscountInput as UpdateSaleFunnelDiscountInput,
|
|
27260
28283
|
appAPI_UpdateSaleFunnelInput as UpdateSaleFunnelInput,
|
|
@@ -27950,10 +28973,9 @@ declare const useArticleStore: <U>(selector: (state: ExtractState<StoreApi<Artic
|
|
|
27950
28973
|
|
|
27951
28974
|
type PageViewUpMutationVariables = Exact$1<{
|
|
27952
28975
|
pageHandle: Scalars$2['String'];
|
|
27953
|
-
userAgent: Scalars$2['String'];
|
|
27954
28976
|
}>;
|
|
27955
28977
|
type PageViewUpMutationResponse = Pick<Mutation$1, 'pageViewUp'>;
|
|
27956
|
-
declare const PageViewUpDocument = "\n mutation pageViewUp($pageHandle: String
|
|
28978
|
+
declare const PageViewUpDocument = "\n mutation pageViewUp($pageHandle: String!) {\n pageViewUp(pageHandle: $pageHandle)\n}\n ";
|
|
27957
28979
|
|
|
27958
28980
|
type CollectionDetailFilterQueryVariables = Exact$1<{
|
|
27959
28981
|
firstProduct?: InputMaybe$1<Scalars$2['Int']>;
|
|
@@ -34577,6 +35599,7 @@ declare const getHeightByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSet
|
|
|
34577
35599
|
declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean) => Partial<Record<NameDevices$1, string>>;
|
|
34578
35600
|
declare const getAspectRatioGlobalSize: (shape?: ObjectDevices<SizeSettingGlobal>) => ObjectDevices<string>;
|
|
34579
35601
|
declare const getPaddingGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => React.CSSProperties;
|
|
35602
|
+
declare const getValueByDevice: <T>(value: any, device: NameDevices$1) => T;
|
|
34580
35603
|
|
|
34581
35604
|
type TypographyClass = `gp-g-${TypographyType}`;
|
|
34582
35605
|
declare const genTypoClass: (name: TypographyType) => TypographyClass;
|
|
@@ -36261,7 +37284,7 @@ type ArticlesQueryResponse = {
|
|
|
36261
37284
|
articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
|
|
36262
37285
|
edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
|
|
36263
37286
|
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isSample' | 'platformCreatedAt' | 'author'> & {
|
|
36264
|
-
content?: Maybe$1<Pick<ArticleContent, 'excerptHtml'>>;
|
|
37287
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
36265
37288
|
blogs?: Maybe$1<{
|
|
36266
37289
|
edges: Array<{
|
|
36267
37290
|
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
@@ -36385,4 +37408,4 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name'
|
|
|
36385
37408
|
|
|
36386
37409
|
declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
|
|
36387
37410
|
|
|
36388
|
-
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, 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, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, 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, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, 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, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, 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, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, 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, getAspectRatioGlobalSize, getBgImageByDevice, 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, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, 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, useInitialSwatchesOptions, 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 };
|
|
37411
|
+
export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, 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, BaseProps, BasePropsWrap, BlockEntity, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, 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, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetType, HSLAColorType, HSLColorType, HexColorType, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, 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, PreviewPageDocument, PreviewPageQueryResponse, PreviewPageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, 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, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, 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, getAspectRatioGlobalSize, getBgImageByDevice, 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, 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, useInitialSwatchesOptions, 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 };
|