@gem-sdk/core 1.44.0-dev.60 → 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 +1248 -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,
|
|
@@ -7779,6 +7806,7 @@ type SizeSetting$1<T> = SharedControlType<T> & {
|
|
|
7779
7806
|
hiddenShowMore?: boolean;
|
|
7780
7807
|
sizePaddingInput?: 'normal' | 'small';
|
|
7781
7808
|
lockShapeValue?: boolean;
|
|
7809
|
+
isShowResponsive?: boolean;
|
|
7782
7810
|
};
|
|
7783
7811
|
|
|
7784
7812
|
type ChildIconType<T> = SharedControlType<T> & {
|
|
@@ -8235,6 +8263,7 @@ type AnalyticsQueryParameter = {
|
|
|
8235
8263
|
campaignVersionIDs?: InputMaybe<Array<Scalars['ID']>>;
|
|
8236
8264
|
endDate?: InputMaybe<Scalars['Time']>;
|
|
8237
8265
|
first?: InputMaybe<Scalars['Int']>;
|
|
8266
|
+
groupBy?: InputMaybe<GroupByFields>;
|
|
8238
8267
|
isDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
8239
8268
|
offerIDs?: InputMaybe<Array<Scalars['ID']>>;
|
|
8240
8269
|
orderByDirection?: InputMaybe<OrderDirection>;
|
|
@@ -8245,15 +8274,20 @@ type AnalyticsQueryParameter = {
|
|
|
8245
8274
|
};
|
|
8246
8275
|
type AppType = 'CUSTOM' | 'GEMPAGES' | 'GEMPAGESV5' | 'GEMPAGESV7' | 'GEMX';
|
|
8247
8276
|
type Article$1 = {
|
|
8277
|
+
author?: Maybe<Scalars['String']>;
|
|
8248
8278
|
baseID?: Maybe<Scalars['String']>;
|
|
8249
8279
|
blogs?: Maybe<BlogConnection>;
|
|
8280
|
+
content?: Maybe<ArticleContent>;
|
|
8250
8281
|
description?: Maybe<Scalars['String']>;
|
|
8251
8282
|
descriptionMeta?: Maybe<Scalars['String']>;
|
|
8252
8283
|
handle?: Maybe<Scalars['String']>;
|
|
8253
8284
|
id: Scalars['ID'];
|
|
8254
8285
|
isSample?: Maybe<Scalars['Boolean']>;
|
|
8286
|
+
media?: Maybe<Media>;
|
|
8255
8287
|
metafield?: Maybe<Metafield>;
|
|
8256
8288
|
platform?: Maybe<ArticlePlatform>;
|
|
8289
|
+
platformCreatedAt?: Maybe<Scalars['Time']>;
|
|
8290
|
+
platformUpdatedAt?: Maybe<Scalars['Time']>;
|
|
8257
8291
|
tags: Array<Scalars['String']>;
|
|
8258
8292
|
templateSuffix?: Maybe<Scalars['String']>;
|
|
8259
8293
|
title?: Maybe<Scalars['String']>;
|
|
@@ -8315,6 +8349,83 @@ type ArticleConnection = {
|
|
|
8315
8349
|
pageInfo?: Maybe<PageInfo>;
|
|
8316
8350
|
totalCount?: Maybe<Scalars['Int']>;
|
|
8317
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
|
+
};
|
|
8318
8429
|
type ArticleEdge = {
|
|
8319
8430
|
cursor?: Maybe<Scalars['Cursor']>;
|
|
8320
8431
|
node?: Maybe<Article$1>;
|
|
@@ -8323,7 +8434,7 @@ type ArticleOrder = {
|
|
|
8323
8434
|
direction: OrderDirection;
|
|
8324
8435
|
field?: InputMaybe<ArticleOrderField>;
|
|
8325
8436
|
};
|
|
8326
|
-
type ArticleOrderField = 'CREATED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
8437
|
+
type ArticleOrderField = 'CREATED_AT' | 'PLATFORM_CREATED_AT' | 'PLATFORM_UPDATED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
8327
8438
|
type ArticlePlatform = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
8328
8439
|
/**
|
|
8329
8440
|
* ArticleTagWhereInput is used for filtering ArticleTag objects.
|
|
@@ -8365,6 +8476,22 @@ type ArticleTagWhereInput = {
|
|
|
8365
8476
|
*/
|
|
8366
8477
|
type ArticleWhereInput = {
|
|
8367
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']>;
|
|
8368
8495
|
/** base_id field predicates */
|
|
8369
8496
|
baseID?: InputMaybe<Scalars['String']>;
|
|
8370
8497
|
baseIDContains?: InputMaybe<Scalars['String']>;
|
|
@@ -8435,6 +8562,12 @@ type ArticleWhereInput = {
|
|
|
8435
8562
|
/** article_tags edge predicates */
|
|
8436
8563
|
hasArticleTags?: InputMaybe<Scalars['Boolean']>;
|
|
8437
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>>;
|
|
8438
8571
|
/** id field predicates */
|
|
8439
8572
|
id?: InputMaybe<Scalars['ID']>;
|
|
8440
8573
|
idGT?: InputMaybe<Scalars['ID']>;
|
|
@@ -8444,6 +8577,13 @@ type ArticleWhereInput = {
|
|
|
8444
8577
|
idLTE?: InputMaybe<Scalars['ID']>;
|
|
8445
8578
|
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
8446
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']>;
|
|
8447
8587
|
/** is_sample field predicates */
|
|
8448
8588
|
isSample?: InputMaybe<Scalars['Boolean']>;
|
|
8449
8589
|
isSampleNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -8738,6 +8878,8 @@ type Blog = {
|
|
|
8738
8878
|
isSample?: Maybe<Scalars['Boolean']>;
|
|
8739
8879
|
metafield?: Maybe<Metafield>;
|
|
8740
8880
|
platform?: Maybe<BlogPlatform>;
|
|
8881
|
+
platformCreatedAt?: Maybe<Scalars['Time']>;
|
|
8882
|
+
platformUpdatedAt?: Maybe<Scalars['Time']>;
|
|
8741
8883
|
tags: Array<Scalars['String']>;
|
|
8742
8884
|
templateSuffix?: Maybe<Scalars['String']>;
|
|
8743
8885
|
title?: Maybe<Scalars['String']>;
|
|
@@ -8768,7 +8910,7 @@ type BlogOrder = {
|
|
|
8768
8910
|
direction: OrderDirection;
|
|
8769
8911
|
field?: InputMaybe<BlogOrderField>;
|
|
8770
8912
|
};
|
|
8771
|
-
type BlogOrderField = 'CREATED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
8913
|
+
type BlogOrderField = 'CREATED_AT' | 'PLATFORM_CREATED_AT' | 'PLATFORM_UPDATED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
8772
8914
|
type BlogPlatform = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
8773
8915
|
/**
|
|
8774
8916
|
* BlogWhereInput is used for filtering Blog objects.
|
|
@@ -9097,9 +9239,12 @@ type CampaignOfferStatWhereInput = {
|
|
|
9097
9239
|
};
|
|
9098
9240
|
type CampaignVersion = {
|
|
9099
9241
|
campaignID?: Maybe<Scalars['ID']>;
|
|
9242
|
+
completedAt?: Maybe<Scalars['Time']>;
|
|
9243
|
+
createdAt?: Maybe<Scalars['Time']>;
|
|
9100
9244
|
id: Scalars['ID'];
|
|
9101
9245
|
saleFunnelID?: Maybe<Scalars['ID']>;
|
|
9102
9246
|
shopID?: Maybe<Scalars['ID']>;
|
|
9247
|
+
updatedAt?: Maybe<Scalars['Time']>;
|
|
9103
9248
|
version?: Maybe<Scalars['Int']>;
|
|
9104
9249
|
};
|
|
9105
9250
|
type CampaignVersionConnection = {
|
|
@@ -9133,6 +9278,17 @@ type CampaignVersionWhereInput = {
|
|
|
9133
9278
|
campaignIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
9134
9279
|
campaignIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
9135
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']>;
|
|
9136
9292
|
/** created_at field predicates */
|
|
9137
9293
|
createdAt?: InputMaybe<Scalars['Time']>;
|
|
9138
9294
|
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -10017,6 +10173,10 @@ type CreateLibraryTemplateTagInput = {
|
|
|
10017
10173
|
score?: InputMaybe<Scalars['Int']>;
|
|
10018
10174
|
tagID: Scalars['ID'];
|
|
10019
10175
|
};
|
|
10176
|
+
type CreatePageInteractionInput = {
|
|
10177
|
+
pageID: Scalars['ID'];
|
|
10178
|
+
value: Array<Scalars['Map']>;
|
|
10179
|
+
};
|
|
10020
10180
|
type CreatePageSectionInput = {
|
|
10021
10181
|
cid?: InputMaybe<Scalars['String']>;
|
|
10022
10182
|
component?: InputMaybe<Scalars['String']>;
|
|
@@ -10028,7 +10188,19 @@ type CreatePageSectionInput = {
|
|
|
10028
10188
|
name: Scalars['String'];
|
|
10029
10189
|
};
|
|
10030
10190
|
type CreatePlatformOriginalTemplateInput = {
|
|
10031
|
-
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;
|
|
10032
10204
|
};
|
|
10033
10205
|
type CreateSaleFunnelDiscountInput = {
|
|
10034
10206
|
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -10104,6 +10276,7 @@ type CreateShopPlatformInput = {
|
|
|
10104
10276
|
appType: AppType;
|
|
10105
10277
|
platform: Platform;
|
|
10106
10278
|
platformDomain?: InputMaybe<Scalars['String']>;
|
|
10279
|
+
platformStoreID?: InputMaybe<Scalars['ID']>;
|
|
10107
10280
|
redirectURL?: InputMaybe<Scalars['String']>;
|
|
10108
10281
|
status?: InputMaybe<ShopPlatformStatus>;
|
|
10109
10282
|
token?: InputMaybe<Scalars['String']>;
|
|
@@ -11943,6 +12116,7 @@ type File = {
|
|
|
11943
12116
|
filePath?: Maybe<Scalars['String']>;
|
|
11944
12117
|
height?: Maybe<Scalars['Uint']>;
|
|
11945
12118
|
id: Scalars['ID'];
|
|
12119
|
+
isCompressed?: Maybe<Scalars['Boolean']>;
|
|
11946
12120
|
mimeType?: Maybe<Scalars['String']>;
|
|
11947
12121
|
shopifyFileKey: Scalars['String'];
|
|
11948
12122
|
size?: Maybe<Scalars['Int']>;
|
|
@@ -12117,6 +12291,11 @@ type FileWhereInput = {
|
|
|
12117
12291
|
idLTE?: InputMaybe<Scalars['ID']>;
|
|
12118
12292
|
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
12119
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']>;
|
|
12120
12299
|
/** mime_type field predicates */
|
|
12121
12300
|
mimeType?: InputMaybe<Scalars['String']>;
|
|
12122
12301
|
mimeTypeContains?: InputMaybe<Scalars['String']>;
|
|
@@ -12462,6 +12641,11 @@ type FontWhereInput = {
|
|
|
12462
12641
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
12463
12642
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
12464
12643
|
};
|
|
12644
|
+
type GenerateContentLimitation = {
|
|
12645
|
+
generateCount?: Maybe<Scalars['Int']>;
|
|
12646
|
+
maxGenerateCount?: Maybe<Scalars['Int']>;
|
|
12647
|
+
shopID: Scalars['ID'];
|
|
12648
|
+
};
|
|
12465
12649
|
type GlobalComponent = {
|
|
12466
12650
|
createdAt?: Maybe<Scalars['Time']>;
|
|
12467
12651
|
currentVersion: Scalars['String'];
|
|
@@ -12813,6 +12997,7 @@ type GlobalStoreVersionWhereInput = {
|
|
|
12813
12997
|
versionNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
12814
12998
|
versionNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
12815
12999
|
};
|
|
13000
|
+
type GroupByFields = 'DATE' | 'SALE_FUNNEL_ID';
|
|
12816
13001
|
type Icon = {
|
|
12817
13002
|
createdAt?: Maybe<Scalars['Time']>;
|
|
12818
13003
|
createdBy?: Maybe<Scalars['ID']>;
|
|
@@ -12936,9 +13121,12 @@ type LibrarySaleFunnel = {
|
|
|
12936
13121
|
createdAt?: Maybe<Scalars['Time']>;
|
|
12937
13122
|
description?: Maybe<Scalars['String']>;
|
|
12938
13123
|
id: Scalars['ID'];
|
|
13124
|
+
metafields?: Maybe<Array<Maybe<LibrarySaleFunnelMeta>>>;
|
|
13125
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
12939
13126
|
metas?: Maybe<LibrarySaleFunnelMetaConnection>;
|
|
12940
13127
|
name?: Maybe<Scalars['String']>;
|
|
12941
13128
|
offers?: Maybe<Array<Maybe<LibrarySaleFunnelOffer>>>;
|
|
13129
|
+
position?: Maybe<Scalars['Int']>;
|
|
12942
13130
|
templates?: Maybe<Array<Maybe<LibraryTemplate>>>;
|
|
12943
13131
|
type?: Maybe<LibrarySaleFunnelType>;
|
|
12944
13132
|
updatedAt?: Maybe<Scalars['Time']>;
|
|
@@ -13141,7 +13329,7 @@ type LibrarySaleFunnelMetaWhereInput = {
|
|
|
13141
13329
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
13142
13330
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
13143
13331
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
13144
|
-
/**
|
|
13332
|
+
/** library_sale_funnel edge predicates */
|
|
13145
13333
|
hasLibrarySaleFunnel?: InputMaybe<Scalars['Boolean']>;
|
|
13146
13334
|
hasLibrarySaleFunnelWith?: InputMaybe<Array<LibrarySaleFunnelWhereInput>>;
|
|
13147
13335
|
/** id field predicates */
|
|
@@ -13309,7 +13497,7 @@ type LibrarySaleFunnelOrder = {
|
|
|
13309
13497
|
direction: OrderDirection;
|
|
13310
13498
|
field?: InputMaybe<LibrarySaleFunnelOrderField>;
|
|
13311
13499
|
};
|
|
13312
|
-
type LibrarySaleFunnelOrderField = 'CREATED_AT' | 'NAME' | 'TYPE' | 'UPDATED_AT';
|
|
13500
|
+
type LibrarySaleFunnelOrderField = 'CREATED_AT' | 'NAME' | 'POSITION' | 'TYPE' | 'UPDATED_AT';
|
|
13313
13501
|
type LibrarySaleFunnelType = 'AOV' | 'PRODUCT';
|
|
13314
13502
|
/**
|
|
13315
13503
|
* LibrarySaleFunnelWhereInput is used for filtering LibrarySaleFunnel objects.
|
|
@@ -13353,13 +13541,13 @@ type LibrarySaleFunnelWhereInput = {
|
|
|
13353
13541
|
descriptionNEQ?: InputMaybe<Scalars['String']>;
|
|
13354
13542
|
descriptionNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
13355
13543
|
descriptionNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
13356
|
-
/**
|
|
13357
|
-
|
|
13358
|
-
|
|
13544
|
+
/** metafields edge predicates */
|
|
13545
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
13546
|
+
hasMetafieldsWith?: InputMaybe<Array<LibrarySaleFunnelMetaWhereInput>>;
|
|
13359
13547
|
/** offers edge predicates */
|
|
13360
13548
|
hasOffers?: InputMaybe<Scalars['Boolean']>;
|
|
13361
13549
|
hasOffersWith?: InputMaybe<Array<LibrarySaleFunnelOfferWhereInput>>;
|
|
13362
|
-
/**
|
|
13550
|
+
/** sale_funnel edge predicates */
|
|
13363
13551
|
hasSaleFunnel?: InputMaybe<Scalars['Boolean']>;
|
|
13364
13552
|
hasSaleFunnelWith?: InputMaybe<Array<SaleFunnelWhereInput>>;
|
|
13365
13553
|
/** templates edge predicates */
|
|
@@ -13390,6 +13578,17 @@ type LibrarySaleFunnelWhereInput = {
|
|
|
13390
13578
|
nameNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
13391
13579
|
not?: InputMaybe<LibrarySaleFunnelWhereInput>;
|
|
13392
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']>;
|
|
13393
13592
|
/** type field predicates */
|
|
13394
13593
|
type?: InputMaybe<LibrarySaleFunnelType>;
|
|
13395
13594
|
typeIn?: InputMaybe<Array<LibrarySaleFunnelType>>;
|
|
@@ -13417,8 +13616,10 @@ type LibrarySection = {
|
|
|
13417
13616
|
id: Scalars['ID'];
|
|
13418
13617
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
13419
13618
|
libraryPosition?: Maybe<Scalars['Int']>;
|
|
13619
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
13420
13620
|
librarySectionMetas?: Maybe<LibrarySectionMetaConnection>;
|
|
13421
13621
|
librarySectionTags?: Maybe<Array<LibrarySectionTag>>;
|
|
13622
|
+
metafields?: Maybe<Array<LibrarySectionMeta>>;
|
|
13422
13623
|
name: Scalars['String'];
|
|
13423
13624
|
updatedAt?: Maybe<Scalars['Time']>;
|
|
13424
13625
|
};
|
|
@@ -13484,7 +13685,7 @@ type LibrarySectionMetaWhereInput = {
|
|
|
13484
13685
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
13485
13686
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
13486
13687
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
13487
|
-
/**
|
|
13688
|
+
/** library_section edge predicates */
|
|
13488
13689
|
hasLibrarySection?: InputMaybe<Scalars['Boolean']>;
|
|
13489
13690
|
hasLibrarySectionWith?: InputMaybe<Array<LibrarySectionWhereInput>>;
|
|
13490
13691
|
/** id field predicates */
|
|
@@ -13652,15 +13853,15 @@ type LibrarySectionWhereInput = {
|
|
|
13652
13853
|
/** categories edge predicates */
|
|
13653
13854
|
hasCategories?: InputMaybe<Scalars['Boolean']>;
|
|
13654
13855
|
hasCategoriesWith?: InputMaybe<Array<SectionCategoryWhereInput>>;
|
|
13655
|
-
/** librarySectionMeta edge predicates */
|
|
13656
|
-
hasLibrarySectionMeta?: InputMaybe<Scalars['Boolean']>;
|
|
13657
|
-
hasLibrarySectionMetaWith?: InputMaybe<Array<LibrarySectionMetaWhereInput>>;
|
|
13658
13856
|
/** librarySectionTags edge predicates */
|
|
13659
13857
|
hasLibrarySectionTags?: InputMaybe<Scalars['Boolean']>;
|
|
13660
13858
|
hasLibrarySectionTagsWith?: InputMaybe<Array<LibrarySectionTagWhereInput>>;
|
|
13661
13859
|
/** libraryTemplate edge predicates */
|
|
13662
13860
|
hasLibraryTemplate?: InputMaybe<Scalars['Boolean']>;
|
|
13663
13861
|
hasLibraryTemplateWith?: InputMaybe<Array<LibraryTemplateWhereInput>>;
|
|
13862
|
+
/** metafields edge predicates */
|
|
13863
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
13864
|
+
hasMetafieldsWith?: InputMaybe<Array<LibrarySectionMetaWhereInput>>;
|
|
13664
13865
|
/** pageSection edge predicates */
|
|
13665
13866
|
hasPageSection?: InputMaybe<Scalars['Boolean']>;
|
|
13666
13867
|
hasPageSectionWith?: InputMaybe<Array<PageSectionWhereInput>>;
|
|
@@ -13728,8 +13929,10 @@ type LibraryTemplate = {
|
|
|
13728
13929
|
id: Scalars['ID'];
|
|
13729
13930
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
13730
13931
|
libraryPosition?: Maybe<Scalars['Int']>;
|
|
13932
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
13731
13933
|
libraryTemplateMetas?: Maybe<LibraryTemplateMetaConnection>;
|
|
13732
13934
|
libraryTemplateTags?: Maybe<Array<LibraryTemplateTag>>;
|
|
13935
|
+
metafields?: Maybe<Array<LibraryTemplateMeta>>;
|
|
13733
13936
|
name: Scalars['String'];
|
|
13734
13937
|
sectionPosition?: Maybe<Array<Scalars['String']>>;
|
|
13735
13938
|
sections?: Maybe<Array<LibrarySection>>;
|
|
@@ -13794,7 +13997,7 @@ type LibraryTemplateMetaWhereInput = {
|
|
|
13794
13997
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
13795
13998
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
13796
13999
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
13797
|
-
/**
|
|
14000
|
+
/** library_template edge predicates */
|
|
13798
14001
|
hasLibraryTemplate?: InputMaybe<Scalars['Boolean']>;
|
|
13799
14002
|
hasLibraryTemplateWith?: InputMaybe<Array<LibraryTemplateWhereInput>>;
|
|
13800
14003
|
/** id field predicates */
|
|
@@ -13959,12 +14162,12 @@ type LibraryTemplateWhereInput = {
|
|
|
13959
14162
|
/** librarySaleFunnels edge predicates */
|
|
13960
14163
|
hasLibrarySaleFunnels?: InputMaybe<Scalars['Boolean']>;
|
|
13961
14164
|
hasLibrarySaleFunnelsWith?: InputMaybe<Array<LibrarySaleFunnelWhereInput>>;
|
|
13962
|
-
/** libraryTemplateMeta edge predicates */
|
|
13963
|
-
hasLibraryTemplateMeta?: InputMaybe<Scalars['Boolean']>;
|
|
13964
|
-
hasLibraryTemplateMetaWith?: InputMaybe<Array<LibraryTemplateMetaWhereInput>>;
|
|
13965
14165
|
/** libraryTemplateTags edge predicates */
|
|
13966
14166
|
hasLibraryTemplateTags?: InputMaybe<Scalars['Boolean']>;
|
|
13967
14167
|
hasLibraryTemplateTagsWith?: InputMaybe<Array<LibraryTemplateTagWhereInput>>;
|
|
14168
|
+
/** metafields edge predicates */
|
|
14169
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
14170
|
+
hasMetafieldsWith?: InputMaybe<Array<LibraryTemplateMetaWhereInput>>;
|
|
13968
14171
|
/** sections edge predicates */
|
|
13969
14172
|
hasSections?: InputMaybe<Scalars['Boolean']>;
|
|
13970
14173
|
hasSectionsWith?: InputMaybe<Array<LibrarySectionWhereInput>>;
|
|
@@ -14157,6 +14360,9 @@ type MediaWhereInput = {
|
|
|
14157
14360
|
embeddedURLNEQ?: InputMaybe<Scalars['String']>;
|
|
14158
14361
|
embeddedURLNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14159
14362
|
embeddedURLNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14363
|
+
/** article edge predicates */
|
|
14364
|
+
hasArticle?: InputMaybe<Scalars['Boolean']>;
|
|
14365
|
+
hasArticleWith?: InputMaybe<Array<ArticleWhereInput>>;
|
|
14160
14366
|
/** product edge predicates */
|
|
14161
14367
|
hasProduct?: InputMaybe<Scalars['Boolean']>;
|
|
14162
14368
|
hasProductWith?: InputMaybe<Array<ProductWhereInput>>;
|
|
@@ -14302,20 +14508,37 @@ type MediaWhereInput = {
|
|
|
14302
14508
|
widthNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14303
14509
|
};
|
|
14304
14510
|
type Metafield = {
|
|
14511
|
+
baseID: Scalars['String'];
|
|
14305
14512
|
description?: Maybe<Scalars['String']>;
|
|
14306
14513
|
id: Scalars['ID'];
|
|
14307
14514
|
key: Scalars['String'];
|
|
14308
14515
|
namespace: Scalars['String'];
|
|
14309
|
-
|
|
14310
|
-
objectType:
|
|
14311
|
-
|
|
14516
|
+
objectID: Scalars['ID'];
|
|
14517
|
+
objectType: MetafieldObjectType;
|
|
14518
|
+
shopID: Scalars['ID'];
|
|
14519
|
+
value: Scalars['String'];
|
|
14312
14520
|
};
|
|
14521
|
+
type MetafieldObjectType = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'DISCOUNT' | 'PAGE' | 'PRODUCT' | 'PRODUCT_VARIANT' | 'SHOP';
|
|
14313
14522
|
/**
|
|
14314
14523
|
* MetafieldWhereInput is used for filtering Metafield objects.
|
|
14315
14524
|
* Input was generated by ent.
|
|
14316
14525
|
*/
|
|
14317
14526
|
type MetafieldWhereInput = {
|
|
14318
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']>>;
|
|
14319
14542
|
/** created_at field predicates */
|
|
14320
14543
|
createdAt?: InputMaybe<Scalars['Time']>;
|
|
14321
14544
|
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -14336,6 +14559,22 @@ type MetafieldWhereInput = {
|
|
|
14336
14559
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
14337
14560
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
14338
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']>;
|
|
14339
14578
|
/** id field predicates */
|
|
14340
14579
|
id?: InputMaybe<Scalars['ID']>;
|
|
14341
14580
|
idGT?: InputMaybe<Scalars['ID']>;
|
|
@@ -14345,7 +14584,49 @@ type MetafieldWhereInput = {
|
|
|
14345
14584
|
idLTE?: InputMaybe<Scalars['ID']>;
|
|
14346
14585
|
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
14347
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']>>;
|
|
14348
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>>;
|
|
14349
14630
|
or?: InputMaybe<Array<MetafieldWhereInput>>;
|
|
14350
14631
|
/** updated_at field predicates */
|
|
14351
14632
|
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
@@ -14356,10 +14637,29 @@ type MetafieldWhereInput = {
|
|
|
14356
14637
|
updatedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
14357
14638
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
14358
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'];
|
|
14359
14658
|
};
|
|
14360
14659
|
type Mutation = {
|
|
14361
14660
|
assignObjectTriggerConditionCreate?: Maybe<TriggerCondition>;
|
|
14362
14661
|
assignObjectTriggerConditionUpdate?: Maybe<TriggerCondition>;
|
|
14662
|
+
/** @deprecated Will be removed after 31/06/2024. Use `themePageOnlineStoreDataUpsert` instead. */
|
|
14363
14663
|
assignObjectsToShopifyPage: Scalars['Boolean'];
|
|
14364
14664
|
cartCreate?: Maybe<CartPayload>;
|
|
14365
14665
|
cartDiscountCodesUpdate?: Maybe<CartPayload>;
|
|
@@ -14391,7 +14691,6 @@ type Mutation = {
|
|
|
14391
14691
|
fileDelete: Scalars['Boolean'];
|
|
14392
14692
|
fileRestore: File;
|
|
14393
14693
|
fileRestoreByBkFileKey: File;
|
|
14394
|
-
fileUpload: File;
|
|
14395
14694
|
fileUploadByURL: File;
|
|
14396
14695
|
fontDelete: Scalars['Boolean'];
|
|
14397
14696
|
globalComponentCreate: GlobalComponent;
|
|
@@ -14420,6 +14719,11 @@ type Mutation = {
|
|
|
14420
14719
|
libraryTemplateTagDelete: Scalars['Boolean'];
|
|
14421
14720
|
libraryTemplateUpdate?: Maybe<LibraryTemplate>;
|
|
14422
14721
|
makeStyleGlobal: ThemeStyle;
|
|
14722
|
+
pageInteractionCreate?: Maybe<PageInteraction>;
|
|
14723
|
+
pageInteractionDelete: Scalars['Boolean'];
|
|
14724
|
+
pageInteractionPreview: Scalars['Boolean'];
|
|
14725
|
+
pageInteractionPublish: Scalars['Boolean'];
|
|
14726
|
+
pageInteractionUpdate?: Maybe<PageInteraction>;
|
|
14423
14727
|
pageSectionBulkCreate?: Maybe<Array<Maybe<PageSection>>>;
|
|
14424
14728
|
/** @deprecated Will be removed after 15/02/2024. Use `pageSectionBulkCreate` instead. */
|
|
14425
14729
|
pageSectionCreate?: Maybe<Array<Maybe<PageSection>>>;
|
|
@@ -14431,8 +14735,17 @@ type Mutation = {
|
|
|
14431
14735
|
/** @deprecated Will be removed after 15/02/2023. Use `pageSectionUpdate` instead. */
|
|
14432
14736
|
pageSectionsBulkUpdate?: Maybe<Array<Maybe<PageSection>>>;
|
|
14433
14737
|
pageViewUp: Scalars['Boolean'];
|
|
14434
|
-
|
|
14435
|
-
|
|
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>;
|
|
14436
14749
|
publicShopLibraryPageCreate: ShopLibraryPage;
|
|
14437
14750
|
publicShopLibraryPageDelete: Scalars['Boolean'];
|
|
14438
14751
|
publicShopLibraryPageForceDelete: Scalars['Boolean'];
|
|
@@ -14456,6 +14769,7 @@ type Mutation = {
|
|
|
14456
14769
|
saleFunnelDiscountCreateOrUpdate?: Maybe<SaleFunnelDiscount>;
|
|
14457
14770
|
saleFunnelDiscountDelete: Scalars['Boolean'];
|
|
14458
14771
|
saleFunnelDuplicate?: Maybe<SaleFunnel>;
|
|
14772
|
+
saleFunnelDuplicateTo?: Maybe<SaleFunnel>;
|
|
14459
14773
|
saleFunnelMetaCreateOrUpdate?: Maybe<SaleFunnelMeta>;
|
|
14460
14774
|
saleFunnelMetaDelete: Scalars['Boolean'];
|
|
14461
14775
|
saleFunnelOfferCreate?: Maybe<SaleFunnelOffer>;
|
|
@@ -14463,9 +14777,11 @@ type Mutation = {
|
|
|
14463
14777
|
saleFunnelOfferPublish: Scalars['Boolean'];
|
|
14464
14778
|
saleFunnelOfferUnPublish: Scalars['Boolean'];
|
|
14465
14779
|
saleFunnelOfferUpdate?: Maybe<SaleFunnelOffer>;
|
|
14780
|
+
saleFunnelPublish: Scalars['Boolean'];
|
|
14466
14781
|
saleFunnelRedirectCreate?: Maybe<SaleFunnelRedirect>;
|
|
14467
14782
|
saleFunnelRedirectDelete: Scalars['Boolean'];
|
|
14468
14783
|
saleFunnelRedirectUpdate?: Maybe<SaleFunnelRedirect>;
|
|
14784
|
+
saleFunnelReplaceComponentData: Scalars['Boolean'];
|
|
14469
14785
|
saleFunnelTriggerCreate?: Maybe<SaleFunnelTrigger>;
|
|
14470
14786
|
saleFunnelTriggerDelete: Scalars['Boolean'];
|
|
14471
14787
|
saleFunnelUpdate?: Maybe<SaleFunnel>;
|
|
@@ -14499,6 +14815,7 @@ type Mutation = {
|
|
|
14499
14815
|
shopLibraryThemeUpdate: ShopLibraryTheme;
|
|
14500
14816
|
shopMetaCreateOrUpdate?: Maybe<ShopMeta>;
|
|
14501
14817
|
shopMetaDelete: Scalars['Boolean'];
|
|
14818
|
+
shopMigrateGemPagesHelperExtension: Scalars['Boolean'];
|
|
14502
14819
|
shopPageCounterCreateOrUpdate: Scalars['Boolean'];
|
|
14503
14820
|
shopPlatformConnect?: Maybe<Scalars['String']>;
|
|
14504
14821
|
shopPlatformDisconnect: Scalars['Boolean'];
|
|
@@ -14549,6 +14866,7 @@ type Mutation = {
|
|
|
14549
14866
|
themePageMetaBatchUpsert: Scalars['Boolean'];
|
|
14550
14867
|
themePageMetaCreateOrUpdate?: Maybe<ThemePageMeta>;
|
|
14551
14868
|
themePageMetaDelete: Scalars['Boolean'];
|
|
14869
|
+
themePageOnlineStoreDataAppend?: Maybe<ThemePageOnlineStoreData>;
|
|
14552
14870
|
themePageOnlineStoreDataCreate?: Maybe<ThemePageOnlineStoreData>;
|
|
14553
14871
|
themePageOnlineStoreDataDelete: Scalars['Boolean'];
|
|
14554
14872
|
themePageOnlineStoreDataRemoveObjectBaseIDs: Scalars['Boolean'];
|
|
@@ -14714,17 +15032,9 @@ type MutationFileRestoreArgs = {
|
|
|
14714
15032
|
type MutationFileRestoreByBkFileKeyArgs = {
|
|
14715
15033
|
key: Scalars['String'];
|
|
14716
15034
|
plan: ShopifyPlan;
|
|
14717
|
-
shopID: Scalars['ID'];
|
|
14718
|
-
};
|
|
14719
|
-
type MutationFileUploadArgs = {
|
|
14720
|
-
background?: InputMaybe<Scalars['Boolean']>;
|
|
14721
|
-
file: Scalars['Upload'];
|
|
14722
|
-
shopID: Scalars['ID'];
|
|
14723
|
-
storage: FileStorage;
|
|
14724
15035
|
};
|
|
14725
15036
|
type MutationFileUploadByUrlArgs = {
|
|
14726
15037
|
plan: ShopifyPlan;
|
|
14727
|
-
shopID: Scalars['ID'];
|
|
14728
15038
|
url: Scalars['String'];
|
|
14729
15039
|
};
|
|
14730
15040
|
type MutationFontDeleteArgs = {
|
|
@@ -14814,6 +15124,22 @@ type MutationLibraryTemplateUpdateArgs = {
|
|
|
14814
15124
|
type MutationMakeStyleGlobalArgs = {
|
|
14815
15125
|
id: Scalars['ID'];
|
|
14816
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
|
+
};
|
|
14817
15143
|
type MutationPageSectionBulkCreateArgs = {
|
|
14818
15144
|
sections?: InputMaybe<Array<InputMaybe<CreatePageSectionInput>>>;
|
|
14819
15145
|
themePageID: Scalars['ID'];
|
|
@@ -14849,6 +15175,12 @@ type MutationPageSectionsBulkUpdateArgs = {
|
|
|
14849
15175
|
type MutationPageViewUpArgs = {
|
|
14850
15176
|
pageHandle: Scalars['String'];
|
|
14851
15177
|
};
|
|
15178
|
+
type MutationPlatformOriginalTemplateDeleteArgs = {
|
|
15179
|
+
themePageID: Scalars['ID'];
|
|
15180
|
+
};
|
|
15181
|
+
type MutationPlatformOriginalTemplateResetArgs = {
|
|
15182
|
+
themePageID: Scalars['ID'];
|
|
15183
|
+
};
|
|
14852
15184
|
type MutationPlatformOriginalTemplateSyncArgs = {
|
|
14853
15185
|
themePageID: Scalars['ID'];
|
|
14854
15186
|
};
|
|
@@ -14856,6 +15188,30 @@ type MutationPlatformOriginalTemplateUpsertArgs = {
|
|
|
14856
15188
|
input: CreatePlatformOriginalTemplateInput;
|
|
14857
15189
|
themePageID: Scalars['ID'];
|
|
14858
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
|
+
};
|
|
14859
15215
|
type MutationPublicShopLibraryPageCreateArgs = {
|
|
14860
15216
|
input: CreateShopLibraryPageInput;
|
|
14861
15217
|
};
|
|
@@ -14928,6 +15284,11 @@ type MutationSaleFunnelDuplicateArgs = {
|
|
|
14928
15284
|
id: Scalars['ID'];
|
|
14929
15285
|
name?: InputMaybe<Scalars['String']>;
|
|
14930
15286
|
};
|
|
15287
|
+
type MutationSaleFunnelDuplicateToArgs = {
|
|
15288
|
+
fromLibraryID: Scalars['ID'];
|
|
15289
|
+
name?: InputMaybe<Scalars['String']>;
|
|
15290
|
+
toID: Scalars['ID'];
|
|
15291
|
+
};
|
|
14931
15292
|
type MutationSaleFunnelMetaCreateOrUpdateArgs = {
|
|
14932
15293
|
SaleFunnelID: Scalars['ID'];
|
|
14933
15294
|
input: CreateSaleFunnelMetaInput;
|
|
@@ -14952,6 +15313,9 @@ type MutationSaleFunnelOfferUpdateArgs = {
|
|
|
14952
15313
|
id: Scalars['ID'];
|
|
14953
15314
|
input: UpdateSaleFunnelOfferInput;
|
|
14954
15315
|
};
|
|
15316
|
+
type MutationSaleFunnelPublishArgs = {
|
|
15317
|
+
id: Scalars['ID'];
|
|
15318
|
+
};
|
|
14955
15319
|
type MutationSaleFunnelRedirectCreateArgs = {
|
|
14956
15320
|
input: CreateSaleFunnelRedirectInput;
|
|
14957
15321
|
};
|
|
@@ -14962,6 +15326,9 @@ type MutationSaleFunnelRedirectUpdateArgs = {
|
|
|
14962
15326
|
id: Scalars['ID'];
|
|
14963
15327
|
input: UpdateSaleFunnelRedirectInput;
|
|
14964
15328
|
};
|
|
15329
|
+
type MutationSaleFunnelReplaceComponentDataArgs = {
|
|
15330
|
+
input: SaleFunnelReplaceComponentDataInput;
|
|
15331
|
+
};
|
|
14965
15332
|
type MutationSaleFunnelTriggerCreateArgs = {
|
|
14966
15333
|
input: CreateSaleFunnelTriggerInput;
|
|
14967
15334
|
};
|
|
@@ -15237,6 +15604,9 @@ type MutationThemePageMetaDeleteArgs = {
|
|
|
15237
15604
|
key: Array<Scalars['String']>;
|
|
15238
15605
|
themePageID: Scalars['ID'];
|
|
15239
15606
|
};
|
|
15607
|
+
type MutationThemePageOnlineStoreDataAppendArgs = {
|
|
15608
|
+
input: CreateThemePageOnlineStoreDataInput;
|
|
15609
|
+
};
|
|
15240
15610
|
type MutationThemePageOnlineStoreDataCreateArgs = {
|
|
15241
15611
|
input: CreateThemePageOnlineStoreDataInput;
|
|
15242
15612
|
};
|
|
@@ -15275,7 +15645,8 @@ type MutationThemePageUnPublishArgs = {
|
|
|
15275
15645
|
ids?: InputMaybe<Array<Scalars['ID']>>;
|
|
15276
15646
|
};
|
|
15277
15647
|
type MutationThemePageUnsetDefaultArgs = {
|
|
15278
|
-
|
|
15648
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
15649
|
+
type?: InputMaybe<ThemePageType>;
|
|
15279
15650
|
};
|
|
15280
15651
|
type MutationThemePageUpdateArgs = {
|
|
15281
15652
|
id: Scalars['ID'];
|
|
@@ -15384,7 +15755,6 @@ type MutationUserMetaCreateOrUpdateArgs = {
|
|
|
15384
15755
|
type MutationUserMetaDeleteArgs = {
|
|
15385
15756
|
key: Array<InputMaybe<Scalars['String']>>;
|
|
15386
15757
|
};
|
|
15387
|
-
type ObjectType = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'PAGE' | 'PRODUCT' | 'PRODUCT_VARIANT' | 'SHOP';
|
|
15388
15758
|
type OrderDirection = 'ASC' | 'DESC';
|
|
15389
15759
|
type OrderFields = 'ACCEPTED' | 'AOV' | 'AOV_INCREASE' | 'CHECKOUT_REVENUE' | 'CONVERSION_RATE' | 'OFFER_REVENUE' | 'REVENUE' | 'VIEW';
|
|
15390
15760
|
type OrderTriggerCondition = {
|
|
@@ -15420,6 +15790,79 @@ type PageInfo = {
|
|
|
15420
15790
|
hasPreviousPage: Scalars['Boolean'];
|
|
15421
15791
|
startCursor?: Maybe<Scalars['Cursor']>;
|
|
15422
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
|
+
};
|
|
15423
15866
|
type PageOrder = {
|
|
15424
15867
|
direction: OrderDirection;
|
|
15425
15868
|
field?: InputMaybe<PageOrderField>;
|
|
@@ -15444,7 +15887,9 @@ type PageSection = {
|
|
|
15444
15887
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
15445
15888
|
libraryPosition?: Maybe<Scalars['Int']>;
|
|
15446
15889
|
librarySection?: Maybe<LibrarySection>;
|
|
15890
|
+
metafields?: Maybe<Array<Maybe<PageSectionMeta>>>;
|
|
15447
15891
|
name: Scalars['String'];
|
|
15892
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
15448
15893
|
pageSectionMetas?: Maybe<PageSectionMetaConnection>;
|
|
15449
15894
|
shopLibrary?: Maybe<ShopLibrarySection>;
|
|
15450
15895
|
updatedAt?: Maybe<Scalars['Time']>;
|
|
@@ -15532,7 +15977,7 @@ type PageSectionMetaWhereInput = {
|
|
|
15532
15977
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
15533
15978
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
15534
15979
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
15535
|
-
/**
|
|
15980
|
+
/** page_section edge predicates */
|
|
15536
15981
|
hasPageSection?: InputMaybe<Scalars['Boolean']>;
|
|
15537
15982
|
hasPageSectionWith?: InputMaybe<Array<PageSectionWhereInput>>;
|
|
15538
15983
|
/** id field predicates */
|
|
@@ -15766,6 +16211,22 @@ type PageSectionWhereInput = {
|
|
|
15766
16211
|
appBlocksNEQ?: InputMaybe<Scalars['String']>;
|
|
15767
16212
|
appBlocksNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
15768
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']>;
|
|
15769
16230
|
/** cid field predicates */
|
|
15770
16231
|
cid?: InputMaybe<Scalars['String']>;
|
|
15771
16232
|
cidContains?: InputMaybe<Scalars['String']>;
|
|
@@ -15849,9 +16310,9 @@ type PageSectionWhereInput = {
|
|
|
15849
16310
|
/** librarySection edge predicates */
|
|
15850
16311
|
hasLibrarySection?: InputMaybe<Scalars['Boolean']>;
|
|
15851
16312
|
hasLibrarySectionWith?: InputMaybe<Array<LibrarySectionWhereInput>>;
|
|
15852
|
-
/**
|
|
15853
|
-
|
|
15854
|
-
|
|
16313
|
+
/** metafields edge predicates */
|
|
16314
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
16315
|
+
hasMetafieldsWith?: InputMaybe<Array<PageSectionMetaWhereInput>>;
|
|
15855
16316
|
/** pageSectionVersions edge predicates */
|
|
15856
16317
|
hasPageSectionVersions?: InputMaybe<Scalars['Boolean']>;
|
|
15857
16318
|
hasPageSectionVersionsWith?: InputMaybe<Array<PageSectionVersionWhereInput>>;
|
|
@@ -16097,8 +16558,9 @@ type PayloadInfo = {
|
|
|
16097
16558
|
};
|
|
16098
16559
|
type Platform = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
16099
16560
|
type PlatformOriginalTemplate = {
|
|
16100
|
-
content: Scalars['
|
|
16561
|
+
content: Scalars['Map'];
|
|
16101
16562
|
id: Scalars['ID'];
|
|
16563
|
+
localesDefaultSchema?: Maybe<Scalars['Map']>;
|
|
16102
16564
|
themePage: ThemePage;
|
|
16103
16565
|
};
|
|
16104
16566
|
/**
|
|
@@ -16107,20 +16569,6 @@ type PlatformOriginalTemplate = {
|
|
|
16107
16569
|
*/
|
|
16108
16570
|
type PlatformOriginalTemplateWhereInput = {
|
|
16109
16571
|
and?: InputMaybe<Array<PlatformOriginalTemplateWhereInput>>;
|
|
16110
|
-
/** content field predicates */
|
|
16111
|
-
content?: InputMaybe<Scalars['String']>;
|
|
16112
|
-
contentContains?: InputMaybe<Scalars['String']>;
|
|
16113
|
-
contentContainsFold?: InputMaybe<Scalars['String']>;
|
|
16114
|
-
contentEqualFold?: InputMaybe<Scalars['String']>;
|
|
16115
|
-
contentGT?: InputMaybe<Scalars['String']>;
|
|
16116
|
-
contentGTE?: InputMaybe<Scalars['String']>;
|
|
16117
|
-
contentHasPrefix?: InputMaybe<Scalars['String']>;
|
|
16118
|
-
contentHasSuffix?: InputMaybe<Scalars['String']>;
|
|
16119
|
-
contentIn?: InputMaybe<Array<Scalars['String']>>;
|
|
16120
|
-
contentLT?: InputMaybe<Scalars['String']>;
|
|
16121
|
-
contentLTE?: InputMaybe<Scalars['String']>;
|
|
16122
|
-
contentNEQ?: InputMaybe<Scalars['String']>;
|
|
16123
|
-
contentNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
16124
16572
|
/** created_at field predicates */
|
|
16125
16573
|
createdAt?: InputMaybe<Scalars['Time']>;
|
|
16126
16574
|
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -16691,15 +17139,285 @@ type ProductVariantsArgs = {
|
|
|
16691
17139
|
orderBy?: InputMaybe<ProductVariantOrder>;
|
|
16692
17140
|
where?: InputMaybe<ProductVariantWhereInput>;
|
|
16693
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
|
+
};
|
|
16694
17148
|
type ProductConnection = {
|
|
16695
17149
|
edges: Array<ProductEdge>;
|
|
16696
17150
|
pageInfo?: Maybe<PageInfo>;
|
|
16697
17151
|
totalCount?: Maybe<Scalars['Int']>;
|
|
16698
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
|
+
};
|
|
16699
17411
|
type ProductEdge = {
|
|
16700
17412
|
cursor: Scalars['Cursor'];
|
|
16701
17413
|
node?: Maybe<Product>;
|
|
16702
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
|
+
};
|
|
16703
17421
|
type ProductOption = {
|
|
16704
17422
|
baseID?: Maybe<Scalars['String']>;
|
|
16705
17423
|
id: Scalars['ID'];
|
|
@@ -17934,30 +18652,68 @@ type PublishedCustomSectionWhereInput = {
|
|
|
17934
18652
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
17935
18653
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
17936
18654
|
};
|
|
17937
|
-
type
|
|
17938
|
-
component?: Maybe<Scalars['String']>;
|
|
18655
|
+
type PublishedPageInteraction = {
|
|
17939
18656
|
createdAt?: Maybe<Scalars['Time']>;
|
|
17940
18657
|
deletedAt?: Maybe<Scalars['Time']>;
|
|
17941
|
-
display?: Maybe<Scalars['Boolean']>;
|
|
17942
18658
|
id: Scalars['ID'];
|
|
17943
|
-
isMobile?: Maybe<Scalars['Boolean']>;
|
|
17944
|
-
name?: Maybe<Scalars['String']>;
|
|
17945
18659
|
updatedAt?: Maybe<Scalars['Time']>;
|
|
18660
|
+
value: Array<Scalars['Map']>;
|
|
17946
18661
|
};
|
|
17947
|
-
|
|
17948
|
-
|
|
17949
|
-
|
|
17950
|
-
|
|
17951
|
-
|
|
17952
|
-
|
|
17953
|
-
|
|
17954
|
-
|
|
17955
|
-
|
|
17956
|
-
|
|
17957
|
-
|
|
17958
|
-
|
|
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']>>;
|
|
17959
18716
|
};
|
|
17960
|
-
type PublishedGlobalSectionOrderField = 'CREATED_AT' | 'NAME' | 'POSITION' | 'UPDATED_AT';
|
|
17961
18717
|
type PublishedPageSection = {
|
|
17962
18718
|
cid?: Maybe<Scalars['String']>;
|
|
17963
18719
|
component?: Maybe<Scalars['String']>;
|
|
@@ -18562,6 +19318,7 @@ type PublishedThemePage = {
|
|
|
18562
19318
|
description?: Maybe<Scalars['String']>;
|
|
18563
19319
|
handle?: Maybe<Scalars['String']>;
|
|
18564
19320
|
id: Scalars['ID'];
|
|
19321
|
+
interaction?: Maybe<PublishedPageInteraction>;
|
|
18565
19322
|
isGlobal?: Maybe<Scalars['Boolean']>;
|
|
18566
19323
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
18567
19324
|
isSample?: Maybe<Scalars['Boolean']>;
|
|
@@ -18820,6 +19577,9 @@ type PublishedThemePageWhereInput = {
|
|
|
18820
19577
|
handleNEQ?: InputMaybe<Scalars['String']>;
|
|
18821
19578
|
handleNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
18822
19579
|
handleNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
19580
|
+
/** interaction edge predicates */
|
|
19581
|
+
hasInteraction?: InputMaybe<Scalars['Boolean']>;
|
|
19582
|
+
hasInteractionWith?: InputMaybe<Array<PublishedPageInteractionWhereInput>>;
|
|
18823
19583
|
/** offer edge predicates */
|
|
18824
19584
|
hasOffer?: InputMaybe<Scalars['Boolean']>;
|
|
18825
19585
|
hasOfferWith?: InputMaybe<Array<PublishedSaleFunnelOfferWhereInput>>;
|
|
@@ -18856,6 +19616,9 @@ type PublishedThemePageWhereInput = {
|
|
|
18856
19616
|
/** is_mobile field predicates */
|
|
18857
19617
|
isMobile?: InputMaybe<Scalars['Boolean']>;
|
|
18858
19618
|
isMobileNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
19619
|
+
/** is_platform_default field predicates */
|
|
19620
|
+
isPlatformDefault?: InputMaybe<Scalars['Boolean']>;
|
|
19621
|
+
isPlatformDefaultNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
18859
19622
|
/** is_sample field predicates */
|
|
18860
19623
|
isSample?: InputMaybe<Scalars['Boolean']>;
|
|
18861
19624
|
isSampleNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -19133,6 +19896,7 @@ type Query = {
|
|
|
19133
19896
|
blog?: Maybe<Blog>;
|
|
19134
19897
|
blogs?: Maybe<BlogConnection>;
|
|
19135
19898
|
campaignOfferStats?: Maybe<CampaignOfferStatConnection>;
|
|
19899
|
+
campaignOfferTotalStat?: Maybe<CampaignOfferStat>;
|
|
19136
19900
|
campaignVersions?: Maybe<CampaignVersionConnection>;
|
|
19137
19901
|
cart?: Maybe<Cart>;
|
|
19138
19902
|
collection?: Maybe<Collection>;
|
|
@@ -19172,9 +19936,14 @@ type Query = {
|
|
|
19172
19936
|
pageSections?: Maybe<Array<Maybe<PageSection>>>;
|
|
19173
19937
|
pageViews: Scalars['Int'];
|
|
19174
19938
|
pages?: Maybe<PageConnection>;
|
|
19939
|
+
platformOriginalTemplate?: Maybe<PlatformOriginalTemplate>;
|
|
19175
19940
|
platformPages: PlatformPageConnection;
|
|
19176
19941
|
previewPage?: Maybe<PublishedThemePage>;
|
|
19177
19942
|
product?: Maybe<Product>;
|
|
19943
|
+
productDiscount?: Maybe<ProductDiscount>;
|
|
19944
|
+
productDiscountObject?: Maybe<ProductDiscountObject>;
|
|
19945
|
+
productDiscountObjects?: Maybe<ProductDiscountObjectConnection>;
|
|
19946
|
+
productDiscounts?: Maybe<ProductDiscountConnection>;
|
|
19178
19947
|
productOptionName: Array<Scalars['String']>;
|
|
19179
19948
|
productOptionValueLabel: Array<Scalars['String']>;
|
|
19180
19949
|
productOptionValues?: Maybe<ProductOptionValueConnection>;
|
|
@@ -19186,10 +19955,6 @@ type Query = {
|
|
|
19186
19955
|
publicShopLibrarySections?: Maybe<ShopLibrarySectionConnection>;
|
|
19187
19956
|
publicShopLibraryTheme?: Maybe<ShopLibraryTheme>;
|
|
19188
19957
|
publicShopLibraryThemes?: Maybe<ShopLibraryThemeConnection>;
|
|
19189
|
-
/** @deprecated Use `publishedThemeSection` instead. */
|
|
19190
|
-
publishedGlobalSection?: Maybe<PublishedGlobalSection>;
|
|
19191
|
-
/** @deprecated Use `publishedThemeSections` instead. */
|
|
19192
|
-
publishedGlobalSections?: Maybe<PublishedGlobalSectionConnection>;
|
|
19193
19958
|
publishedThemePages?: Maybe<Array<Maybe<PublishedThemePage>>>;
|
|
19194
19959
|
publishedThemeSection?: Maybe<PublishedThemeSection>;
|
|
19195
19960
|
publishedThemeSections?: Maybe<PublishedThemeSectionConnection>;
|
|
@@ -19198,19 +19963,23 @@ type Query = {
|
|
|
19198
19963
|
saleFunnelCampaign?: Maybe<SaleFunnelCampaign>;
|
|
19199
19964
|
saleFunnelDiscount?: Maybe<SaleFunnelDiscount>;
|
|
19200
19965
|
saleFunnelDiscounts?: Maybe<SaleFunnelDiscountConnection>;
|
|
19966
|
+
saleFunnelLimitation?: Maybe<SaleFunnelLimitation>;
|
|
19201
19967
|
saleFunnelMetas?: Maybe<SaleFunnelMetaConnection>;
|
|
19202
19968
|
saleFunnelOffer?: Maybe<SaleFunnelOffer>;
|
|
19203
19969
|
saleFunnelOfferStats?: Maybe<SaleFunnelOfferStatConnection>;
|
|
19970
|
+
saleFunnelOfferTotalStat?: Maybe<SaleFunnelOfferStat>;
|
|
19204
19971
|
saleFunnelOffers?: Maybe<SaleFunnelOfferConnection>;
|
|
19205
19972
|
saleFunnelStats?: Maybe<SaleFunnelStatConnection>;
|
|
19206
19973
|
saleFunnelTotalStat?: Maybe<SaleFunnelStat>;
|
|
19207
19974
|
saleFunnels?: Maybe<SaleFunnelConnection>;
|
|
19208
19975
|
sectionCategories?: Maybe<Array<Maybe<SectionCategory>>>;
|
|
19976
|
+
shopCheckGemPagesHelperExtension: Scalars['Boolean'];
|
|
19209
19977
|
shopCurrentVersion?: Maybe<ShopCurrentVersion>;
|
|
19210
19978
|
shopDeploymentEvents?: Maybe<Array<Maybe<DeploymentEvent>>>;
|
|
19211
19979
|
shopDomain?: Maybe<ShopDomain>;
|
|
19212
19980
|
shopDomainVerify?: Maybe<ShopDomain>;
|
|
19213
19981
|
shopDomains?: Maybe<ShopDomainConnection>;
|
|
19982
|
+
shopGenerateContentLimitation: GenerateContentLimitation;
|
|
19214
19983
|
shopIsPostPurchaseAppInUse: Scalars['Boolean'];
|
|
19215
19984
|
shopLibraryPage?: Maybe<ShopLibraryPage>;
|
|
19216
19985
|
shopLibraryPages?: Maybe<ShopLibraryPageConnection>;
|
|
@@ -19303,6 +20072,9 @@ type QueryBlogsArgs = {
|
|
|
19303
20072
|
type QueryCampaignOfferStatsArgs = {
|
|
19304
20073
|
parameter?: InputMaybe<AnalyticsQueryParameter>;
|
|
19305
20074
|
};
|
|
20075
|
+
type QueryCampaignOfferTotalStatArgs = {
|
|
20076
|
+
parameter?: InputMaybe<AnalyticsQueryParameter>;
|
|
20077
|
+
};
|
|
19306
20078
|
type QueryCampaignVersionsArgs = {
|
|
19307
20079
|
after?: InputMaybe<Scalars['Cursor']>;
|
|
19308
20080
|
before?: InputMaybe<Scalars['Cursor']>;
|
|
@@ -19511,6 +20283,9 @@ type QueryPagesArgs = {
|
|
|
19511
20283
|
orderBy?: InputMaybe<PageOrder>;
|
|
19512
20284
|
where?: InputMaybe<PageWhereInput>;
|
|
19513
20285
|
};
|
|
20286
|
+
type QueryPlatformOriginalTemplateArgs = {
|
|
20287
|
+
themePageID: Scalars['ID'];
|
|
20288
|
+
};
|
|
19514
20289
|
type QueryPlatformPagesArgs = {
|
|
19515
20290
|
pageType: PlatformPageType;
|
|
19516
20291
|
parameter?: InputMaybe<QueryParameter>;
|
|
@@ -19524,6 +20299,28 @@ type QueryProductArgs = {
|
|
|
19524
20299
|
handle?: InputMaybe<Scalars['String']>;
|
|
19525
20300
|
id?: InputMaybe<Scalars['ID']>;
|
|
19526
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
|
+
};
|
|
19527
20324
|
type QueryProductOptionNameArgs = {
|
|
19528
20325
|
limit?: InputMaybe<Scalars['Int']>;
|
|
19529
20326
|
offset?: InputMaybe<Scalars['Int']>;
|
|
@@ -19592,17 +20389,6 @@ type QueryPublicShopLibraryThemesArgs = {
|
|
|
19592
20389
|
orderBy?: InputMaybe<ShopLibraryThemeOrder>;
|
|
19593
20390
|
where?: InputMaybe<ShopLibraryThemeWhereInput>;
|
|
19594
20391
|
};
|
|
19595
|
-
type QueryPublishedGlobalSectionArgs = {
|
|
19596
|
-
id: Scalars['ID'];
|
|
19597
|
-
};
|
|
19598
|
-
type QueryPublishedGlobalSectionsArgs = {
|
|
19599
|
-
after?: InputMaybe<Scalars['Cursor']>;
|
|
19600
|
-
before?: InputMaybe<Scalars['Cursor']>;
|
|
19601
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
19602
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
19603
|
-
orderBy?: InputMaybe<PublishedThemeSectionOrder>;
|
|
19604
|
-
where?: InputMaybe<PublishedThemeSectionWhereInput>;
|
|
19605
|
-
};
|
|
19606
20392
|
type QueryPublishedThemePagesArgs = {
|
|
19607
20393
|
slug?: InputMaybe<Scalars['String']>;
|
|
19608
20394
|
slugType: PublishedThemePageType;
|
|
@@ -19649,6 +20435,9 @@ type QuerySaleFunnelOfferArgs = {
|
|
|
19649
20435
|
type QuerySaleFunnelOfferStatsArgs = {
|
|
19650
20436
|
parameter?: InputMaybe<AnalyticsQueryParameter>;
|
|
19651
20437
|
};
|
|
20438
|
+
type QuerySaleFunnelOfferTotalStatArgs = {
|
|
20439
|
+
parameter?: InputMaybe<AnalyticsQueryParameter>;
|
|
20440
|
+
};
|
|
19652
20441
|
type QuerySaleFunnelOffersArgs = {
|
|
19653
20442
|
after?: InputMaybe<Scalars['Cursor']>;
|
|
19654
20443
|
before?: InputMaybe<Scalars['Cursor']>;
|
|
@@ -19834,9 +20623,7 @@ type QueryThemePageMetaByKeyArgs = {
|
|
|
19834
20623
|
themePageID: Scalars['ID'];
|
|
19835
20624
|
};
|
|
19836
20625
|
type QueryThemePageOnlineStoresArgs = {
|
|
19837
|
-
|
|
19838
|
-
themePageStatus?: InputMaybe<ThemePageStatus>;
|
|
19839
|
-
type: ThemePageOnlineStoreDataType;
|
|
20626
|
+
where?: InputMaybe<ThemePageOnlineStoreDataWhereInput>;
|
|
19840
20627
|
};
|
|
19841
20628
|
type QueryThemePageValidateHandleArgs = {
|
|
19842
20629
|
handle: Scalars['String'];
|
|
@@ -19983,6 +20770,8 @@ type SaleFunnel = {
|
|
|
19983
20770
|
description?: Maybe<Scalars['String']>;
|
|
19984
20771
|
id: Scalars['ID'];
|
|
19985
20772
|
librarySaleFunnel?: Maybe<LibrarySaleFunnel>;
|
|
20773
|
+
metafields?: Maybe<Array<Maybe<SaleFunnelMeta>>>;
|
|
20774
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
19986
20775
|
metas?: Maybe<SaleFunnelMetaConnection>;
|
|
19987
20776
|
name?: Maybe<Scalars['String']>;
|
|
19988
20777
|
offers?: Maybe<SaleFunnelOfferConnection>;
|
|
@@ -20275,6 +21064,12 @@ type SaleFunnelEdge = {
|
|
|
20275
21064
|
cursor: Scalars['Cursor'];
|
|
20276
21065
|
node?: Maybe<SaleFunnel>;
|
|
20277
21066
|
};
|
|
21067
|
+
type SaleFunnelLimitation = {
|
|
21068
|
+
expirationDate?: Maybe<Scalars['Time']>;
|
|
21069
|
+
maximumRevenue?: Maybe<Money>;
|
|
21070
|
+
planName?: Maybe<Scalars['String']>;
|
|
21071
|
+
totalRevenue?: Maybe<Money>;
|
|
21072
|
+
};
|
|
20278
21073
|
type SaleFunnelMeta = {
|
|
20279
21074
|
createdAt?: Maybe<Scalars['Time']>;
|
|
20280
21075
|
id: Scalars['ID'];
|
|
@@ -20317,7 +21112,7 @@ type SaleFunnelMetaWhereInput = {
|
|
|
20317
21112
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
20318
21113
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
20319
21114
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
20320
|
-
/**
|
|
21115
|
+
/** sale_funnel edge predicates */
|
|
20321
21116
|
hasSaleFunnel?: InputMaybe<Scalars['Boolean']>;
|
|
20322
21117
|
hasSaleFunnelWith?: InputMaybe<Array<SaleFunnelWhereInput>>;
|
|
20323
21118
|
/** id field predicates */
|
|
@@ -20784,6 +21579,11 @@ type SaleFunnelRedirectWhereInput = {
|
|
|
20784
21579
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
20785
21580
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
20786
21581
|
};
|
|
21582
|
+
type SaleFunnelReplaceComponentDataInput = {
|
|
21583
|
+
product?: InputMaybe<ProductComponent>;
|
|
21584
|
+
productList?: InputMaybe<ProductListComponent>;
|
|
21585
|
+
saleFunnelID: Scalars['ID'];
|
|
21586
|
+
};
|
|
20787
21587
|
type SaleFunnelStat = {
|
|
20788
21588
|
accepted?: Maybe<Scalars['Int']>;
|
|
20789
21589
|
aov?: Maybe<Scalars['Float']>;
|
|
@@ -21015,7 +21815,7 @@ type SaleFunnelTriggerWhereInput = {
|
|
|
21015
21815
|
/** saleFunnel edge predicates */
|
|
21016
21816
|
hasSaleFunnel?: InputMaybe<Scalars['Boolean']>;
|
|
21017
21817
|
hasSaleFunnelWith?: InputMaybe<Array<SaleFunnelWhereInput>>;
|
|
21018
|
-
/**
|
|
21818
|
+
/** trigger_conditions edge predicates */
|
|
21019
21819
|
hasTriggerConditions?: InputMaybe<Scalars['Boolean']>;
|
|
21020
21820
|
hasTriggerConditionsWith?: InputMaybe<Array<TriggerConditionWhereInput>>;
|
|
21021
21821
|
/** id field predicates */
|
|
@@ -21119,12 +21919,12 @@ type SaleFunnelWhereInput = {
|
|
|
21119
21919
|
/** campaigns edge predicates */
|
|
21120
21920
|
hasCampaigns?: InputMaybe<Scalars['Boolean']>;
|
|
21121
21921
|
hasCampaignsWith?: InputMaybe<Array<SaleFunnelCampaignWhereInput>>;
|
|
21122
|
-
/**
|
|
21922
|
+
/** library_sale_funnel edge predicates */
|
|
21123
21923
|
hasLibrarySaleFunnel?: InputMaybe<Scalars['Boolean']>;
|
|
21124
21924
|
hasLibrarySaleFunnelWith?: InputMaybe<Array<LibrarySaleFunnelWhereInput>>;
|
|
21125
|
-
/**
|
|
21126
|
-
|
|
21127
|
-
|
|
21925
|
+
/** metafields edge predicates */
|
|
21926
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
21927
|
+
hasMetafieldsWith?: InputMaybe<Array<SaleFunnelMetaWhereInput>>;
|
|
21128
21928
|
/** offers edge predicates */
|
|
21129
21929
|
hasOffers?: InputMaybe<Scalars['Boolean']>;
|
|
21130
21930
|
hasOffersWith?: InputMaybe<Array<SaleFunnelOfferWhereInput>>;
|
|
@@ -21330,6 +22130,7 @@ type Shop = {
|
|
|
21330
22130
|
hasAppStoreReview?: Maybe<Scalars['Boolean']>;
|
|
21331
22131
|
id: Scalars['ID'];
|
|
21332
22132
|
isSample: Scalars['Boolean'];
|
|
22133
|
+
pricingPlan?: Maybe<Scalars['String']>;
|
|
21333
22134
|
publicToken: PublicToken;
|
|
21334
22135
|
shopMeta?: Maybe<Array<Maybe<ShopMeta>>>;
|
|
21335
22136
|
shopName: Scalars['String'];
|
|
@@ -21355,6 +22156,12 @@ type ShopConnection = {
|
|
|
21355
22156
|
pageInfo: PageInfo;
|
|
21356
22157
|
totalCount: Scalars['Int'];
|
|
21357
22158
|
};
|
|
22159
|
+
type ShopCurrentVersion = {
|
|
22160
|
+
changelogs?: Maybe<Array<Maybe<StoreVersionLog>>>;
|
|
22161
|
+
currentVersion: Scalars['String'];
|
|
22162
|
+
isUpgrade: Scalars['Boolean'];
|
|
22163
|
+
lastVersion: Scalars['String'];
|
|
22164
|
+
};
|
|
21358
22165
|
/**
|
|
21359
22166
|
* ShopDatabaseWhereInput is used for filtering ShopDatabase objects.
|
|
21360
22167
|
* Input was generated by ent.
|
|
@@ -22161,6 +22968,7 @@ type ShopPlatform = {
|
|
|
22161
22968
|
id: Scalars['ID'];
|
|
22162
22969
|
platform: Platform;
|
|
22163
22970
|
platformDomain: Scalars['String'];
|
|
22971
|
+
platformStoreID?: Maybe<Scalars['ID']>;
|
|
22164
22972
|
redirectURL: Scalars['String'];
|
|
22165
22973
|
shop?: Maybe<Shop>;
|
|
22166
22974
|
status?: Maybe<ShopPlatformStatus>;
|
|
@@ -22277,6 +23085,17 @@ type ShopPlatformWhereInput = {
|
|
|
22277
23085
|
platformIn?: InputMaybe<Array<Platform>>;
|
|
22278
23086
|
platformNEQ?: InputMaybe<Platform>;
|
|
22279
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']>;
|
|
22280
23099
|
/** redirect_url field predicates */
|
|
22281
23100
|
redirectURL?: InputMaybe<Scalars['String']>;
|
|
22282
23101
|
redirectURLContains?: InputMaybe<Scalars['String']>;
|
|
@@ -22553,46 +23372,49 @@ type ShopWhereInput = {
|
|
|
22553
23372
|
/** has_app_store_review field predicates */
|
|
22554
23373
|
hasAppStoreReview?: InputMaybe<Scalars['Boolean']>;
|
|
22555
23374
|
hasAppStoreReviewNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
22556
|
-
/**
|
|
23375
|
+
/** feature_request edge predicates */
|
|
22557
23376
|
hasFeatureRequest?: InputMaybe<Scalars['Boolean']>;
|
|
22558
23377
|
hasFeatureRequestWith?: InputMaybe<Array<FeatureRequestWhereInput>>;
|
|
22559
|
-
/**
|
|
23378
|
+
/** global_settings edge predicates */
|
|
22560
23379
|
hasGlobalSettings?: InputMaybe<Scalars['Boolean']>;
|
|
22561
23380
|
hasGlobalSettingsWith?: InputMaybe<Array<GlobalSettingWhereInput>>;
|
|
22562
|
-
/**
|
|
23381
|
+
/** library_pages edge predicates */
|
|
22563
23382
|
hasLibraryPages?: InputMaybe<Scalars['Boolean']>;
|
|
22564
23383
|
hasLibraryPagesWith?: InputMaybe<Array<ShopLibraryPageWhereInput>>;
|
|
22565
|
-
/**
|
|
23384
|
+
/** sale_funnels edge predicates */
|
|
22566
23385
|
hasSaleFunnels?: InputMaybe<Scalars['Boolean']>;
|
|
22567
23386
|
hasSaleFunnelsWith?: InputMaybe<Array<SaleFunnelWhereInput>>;
|
|
22568
|
-
/**
|
|
23387
|
+
/** shop_domains edge predicates */
|
|
22569
23388
|
hasShopDomains?: InputMaybe<Scalars['Boolean']>;
|
|
22570
23389
|
hasShopDomainsWith?: InputMaybe<Array<ShopDomainWhereInput>>;
|
|
22571
|
-
/**
|
|
23390
|
+
/** shop_meta edge predicates */
|
|
22572
23391
|
hasShopMeta?: InputMaybe<Scalars['Boolean']>;
|
|
22573
23392
|
hasShopMetaWith?: InputMaybe<Array<ShopMetaWhereInput>>;
|
|
22574
|
-
/**
|
|
23393
|
+
/** stat_convert_layout edge predicates */
|
|
22575
23394
|
hasStatConvertLayout?: InputMaybe<Scalars['Boolean']>;
|
|
22576
23395
|
hasStatConvertLayoutWith?: InputMaybe<Array<StatConvertLayoutWhereInput>>;
|
|
22577
|
-
/**
|
|
23396
|
+
/** stat_generate_content edge predicates */
|
|
23397
|
+
hasStatGenerateContent?: InputMaybe<Scalars['Boolean']>;
|
|
23398
|
+
hasStatGenerateContentWith?: InputMaybe<Array<StatGenerateContentWhereInput>>;
|
|
23399
|
+
/** stat_page_views edge predicates */
|
|
22578
23400
|
hasStatPageViews?: InputMaybe<Scalars['Boolean']>;
|
|
22579
23401
|
hasStatPageViewsWith?: InputMaybe<Array<StatPageViewWhereInput>>;
|
|
22580
|
-
/**
|
|
23402
|
+
/** survey_feedbacks edge predicates */
|
|
22581
23403
|
hasSurveyFeedbacks?: InputMaybe<Scalars['Boolean']>;
|
|
22582
23404
|
hasSurveyFeedbacksWith?: InputMaybe<Array<SurveyFeedbackWhereInput>>;
|
|
22583
|
-
/**
|
|
23405
|
+
/** theme_page_online_store_data edge predicates */
|
|
22584
23406
|
hasThemePageOnlineStoreData?: InputMaybe<Scalars['Boolean']>;
|
|
22585
23407
|
hasThemePageOnlineStoreDataWith?: InputMaybe<Array<ThemePageOnlineStoreDataWhereInput>>;
|
|
22586
|
-
/**
|
|
23408
|
+
/** theme_page_versions edge predicates */
|
|
22587
23409
|
hasThemePageVersions?: InputMaybe<Scalars['Boolean']>;
|
|
22588
23410
|
hasThemePageVersionsWith?: InputMaybe<Array<ThemePageVersionWhereInput>>;
|
|
22589
|
-
/**
|
|
23411
|
+
/** theme_pages edge predicates */
|
|
22590
23412
|
hasThemePages?: InputMaybe<Scalars['Boolean']>;
|
|
22591
23413
|
hasThemePagesWith?: InputMaybe<Array<ThemePageWhereInput>>;
|
|
22592
|
-
/**
|
|
23414
|
+
/** theme_sections edge predicates */
|
|
22593
23415
|
hasThemeSections?: InputMaybe<Scalars['Boolean']>;
|
|
22594
23416
|
hasThemeSectionsWith?: InputMaybe<Array<ThemeSectionWhereInput>>;
|
|
22595
|
-
/**
|
|
23417
|
+
/** theme_styles edge predicates */
|
|
22596
23418
|
hasThemeStyles?: InputMaybe<Scalars['Boolean']>;
|
|
22597
23419
|
hasThemeStylesWith?: InputMaybe<Array<ThemeStyleWhereInput>>;
|
|
22598
23420
|
/** themes edge predicates */
|
|
@@ -22612,6 +23434,22 @@ type ShopWhereInput = {
|
|
|
22612
23434
|
isSampleNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
22613
23435
|
not?: InputMaybe<ShopWhereInput>;
|
|
22614
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']>;
|
|
22615
23453
|
/** shop_name field predicates */
|
|
22616
23454
|
shopName?: InputMaybe<Scalars['String']>;
|
|
22617
23455
|
shopNameContains?: InputMaybe<Scalars['String']>;
|
|
@@ -22656,6 +23494,12 @@ type ShopifyTheme = {
|
|
|
22656
23494
|
themeStoreID?: Maybe<Scalars['ID']>;
|
|
22657
23495
|
};
|
|
22658
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
|
+
};
|
|
22659
23503
|
/**
|
|
22660
23504
|
* StatConvertLayoutWhereInput is used for filtering StatConvertLayout objects.
|
|
22661
23505
|
* Input was generated by ent.
|
|
@@ -22731,6 +23575,81 @@ type StatConvertLayoutWhereInput = {
|
|
|
22731
23575
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
22732
23576
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
22733
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
|
+
};
|
|
22734
23653
|
/**
|
|
22735
23654
|
* StatPageViewWhereInput is used for filtering StatPageView objects.
|
|
22736
23655
|
* Input was generated by ent.
|
|
@@ -22820,6 +23739,12 @@ type StoreProperty = {
|
|
|
22820
23739
|
primaryDomain?: Maybe<Scalars['String']>;
|
|
22821
23740
|
swatchesConfig: Scalars['String'];
|
|
22822
23741
|
};
|
|
23742
|
+
type StoreVersionLog = {
|
|
23743
|
+
githubReleaseID: Scalars['ID'];
|
|
23744
|
+
id: Scalars['ID'];
|
|
23745
|
+
note: Scalars['String'];
|
|
23746
|
+
version: Scalars['String'];
|
|
23747
|
+
};
|
|
22823
23748
|
type Survey = {
|
|
22824
23749
|
config: Scalars['String'];
|
|
22825
23750
|
description: Scalars['String'];
|
|
@@ -23406,12 +24331,14 @@ type ThemePage = {
|
|
|
23406
24331
|
description?: Maybe<Scalars['String']>;
|
|
23407
24332
|
handle?: Maybe<Scalars['String']>;
|
|
23408
24333
|
id: Scalars['ID'];
|
|
24334
|
+
interaction?: Maybe<PageInteraction>;
|
|
23409
24335
|
isGlobal?: Maybe<Scalars['Boolean']>;
|
|
23410
24336
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
23411
24337
|
isPlatformDefault?: Maybe<Scalars['Boolean']>;
|
|
23412
24338
|
isSample?: Maybe<Scalars['Boolean']>;
|
|
23413
24339
|
libraryPosition?: Maybe<Scalars['Int']>;
|
|
23414
24340
|
libraryTemplate?: Maybe<LibraryTemplate>;
|
|
24341
|
+
metafields?: Maybe<Array<Maybe<ThemePageMeta>>>;
|
|
23415
24342
|
name: Scalars['String'];
|
|
23416
24343
|
offer?: Maybe<SaleFunnelOffer>;
|
|
23417
24344
|
pageSections?: Maybe<Array<Maybe<PageSection>>>;
|
|
@@ -23420,13 +24347,12 @@ type ThemePage = {
|
|
|
23420
24347
|
publishedAt?: Maybe<Scalars['Time']>;
|
|
23421
24348
|
saleFunnels?: Maybe<Array<Maybe<SaleFunnel>>>;
|
|
23422
24349
|
sectionPosition?: Maybe<Array<Scalars['String']>>;
|
|
23423
|
-
/** @deprecated Use `platformOriginalTemplate` instead. */
|
|
23424
|
-
shopifyOriginalContent?: Maybe<Scalars['String']>;
|
|
23425
24350
|
splitPercentage?: Maybe<Scalars['Float']>;
|
|
23426
24351
|
status?: Maybe<ThemePageStatus>;
|
|
23427
24352
|
theme?: Maybe<Theme>;
|
|
23428
24353
|
themePageCustomSections?: Maybe<Array<Maybe<ThemePageCustomSection>>>;
|
|
23429
24354
|
themePageGlobalComponents?: Maybe<Array<Maybe<ThemePageGlobalComponent>>>;
|
|
24355
|
+
/** @deprecated Will be removed after 23/06/2024. Use `metafields` instead. */
|
|
23430
24356
|
themePageMetas?: Maybe<ThemePageMetaConnection>;
|
|
23431
24357
|
themePageOnlineStoreData?: Maybe<ThemePageOnlineStoreData>;
|
|
23432
24358
|
themeSections?: Maybe<Array<Maybe<ThemeSection>>>;
|
|
@@ -23757,7 +24683,7 @@ type ThemePageOnlineStoreDataWhereInput = {
|
|
|
23757
24683
|
/** shop edge predicates */
|
|
23758
24684
|
hasShop?: InputMaybe<Scalars['Boolean']>;
|
|
23759
24685
|
hasShopWith?: InputMaybe<Array<ShopWhereInput>>;
|
|
23760
|
-
/**
|
|
24686
|
+
/** theme_page edge predicates */
|
|
23761
24687
|
hasThemePage?: InputMaybe<Scalars['Boolean']>;
|
|
23762
24688
|
hasThemePageWith?: InputMaybe<Array<ThemePageWhereInput>>;
|
|
23763
24689
|
/** id field predicates */
|
|
@@ -23770,6 +24696,7 @@ type ThemePageOnlineStoreDataWhereInput = {
|
|
|
23770
24696
|
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
23771
24697
|
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
23772
24698
|
not?: InputMaybe<ThemePageOnlineStoreDataWhereInput>;
|
|
24699
|
+
onlineStoreObjectBaseIDsContain?: InputMaybe<Array<Scalars['String']>>;
|
|
23773
24700
|
or?: InputMaybe<Array<ThemePageOnlineStoreDataWhereInput>>;
|
|
23774
24701
|
/** shop_id field predicates */
|
|
23775
24702
|
shopID?: InputMaybe<Scalars['ID']>;
|
|
@@ -23986,9 +24913,15 @@ type ThemePageWhereInput = {
|
|
|
23986
24913
|
handleNEQ?: InputMaybe<Scalars['String']>;
|
|
23987
24914
|
handleNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
23988
24915
|
handleNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
24916
|
+
/** interaction edge predicates */
|
|
24917
|
+
hasInteraction?: InputMaybe<Scalars['Boolean']>;
|
|
24918
|
+
hasInteractionWith?: InputMaybe<Array<PageInteractionWhereInput>>;
|
|
23989
24919
|
/** libraryTemplate edge predicates */
|
|
23990
24920
|
hasLibraryTemplate?: InputMaybe<Scalars['Boolean']>;
|
|
23991
24921
|
hasLibraryTemplateWith?: InputMaybe<Array<LibraryTemplateWhereInput>>;
|
|
24922
|
+
/** metafields edge predicates */
|
|
24923
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
24924
|
+
hasMetafieldsWith?: InputMaybe<Array<ThemePageMetaWhereInput>>;
|
|
23992
24925
|
/** offer edge predicates */
|
|
23993
24926
|
hasOffer?: InputMaybe<Scalars['Boolean']>;
|
|
23994
24927
|
hasOfferWith?: InputMaybe<Array<SaleFunnelOfferWhereInput>>;
|
|
@@ -24018,10 +24951,7 @@ type ThemePageWhereInput = {
|
|
|
24018
24951
|
/** themePageGlobalComponents edge predicates */
|
|
24019
24952
|
hasThemePageGlobalComponents?: InputMaybe<Scalars['Boolean']>;
|
|
24020
24953
|
hasThemePageGlobalComponentsWith?: InputMaybe<Array<ThemePageGlobalComponentWhereInput>>;
|
|
24021
|
-
/**
|
|
24022
|
-
hasThemePageMeta?: InputMaybe<Scalars['Boolean']>;
|
|
24023
|
-
hasThemePageMetaWith?: InputMaybe<Array<ThemePageMetaWhereInput>>;
|
|
24024
|
-
/** themePageOnlineStoreData edge predicates */
|
|
24954
|
+
/** theme_page_online_store_data edge predicates */
|
|
24025
24955
|
hasThemePageOnlineStoreData?: InputMaybe<Scalars['Boolean']>;
|
|
24026
24956
|
hasThemePageOnlineStoreDataWith?: InputMaybe<Array<ThemePageOnlineStoreDataWhereInput>>;
|
|
24027
24957
|
/** themePageVersions edge predicates */
|
|
@@ -24180,11 +25110,13 @@ type ThemeSection = {
|
|
|
24180
25110
|
display?: Maybe<Scalars['Boolean']>;
|
|
24181
25111
|
id: Scalars['ID'];
|
|
24182
25112
|
isMobile?: Maybe<Scalars['Boolean']>;
|
|
25113
|
+
metafields?: Maybe<Array<Maybe<ThemeSectionMeta>>>;
|
|
24183
25114
|
name: Scalars['String'];
|
|
24184
25115
|
/** @deprecated Will be removed after 01/03/2024. Use `status` instead. */
|
|
24185
25116
|
needPublishing?: Maybe<Scalars['Boolean']>;
|
|
24186
25117
|
publishedAt?: Maybe<Scalars['Time']>;
|
|
24187
25118
|
status?: Maybe<ThemeSectionStatus>;
|
|
25119
|
+
/** @deprecated Will be removed after 023/06/2024. Use `metafields` instead. */
|
|
24188
25120
|
themeSectionMetas?: Maybe<ThemeSectionMetaConnection>;
|
|
24189
25121
|
updatedAt?: Maybe<Scalars['Time']>;
|
|
24190
25122
|
};
|
|
@@ -24246,7 +25178,7 @@ type ThemeSectionMetaWhereInput = {
|
|
|
24246
25178
|
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
24247
25179
|
deletedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
24248
25180
|
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
24249
|
-
/**
|
|
25181
|
+
/** theme_section edge predicates */
|
|
24250
25182
|
hasThemeSection?: InputMaybe<Scalars['Boolean']>;
|
|
24251
25183
|
hasThemeSectionWith?: InputMaybe<Array<ThemeSectionWhereInput>>;
|
|
24252
25184
|
/** id field predicates */
|
|
@@ -24365,6 +25297,9 @@ type ThemeSectionWhereInput = {
|
|
|
24365
25297
|
globalStoreReleaseIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
24366
25298
|
globalStoreReleaseIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
24367
25299
|
globalStoreReleaseIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
25300
|
+
/** metafields edge predicates */
|
|
25301
|
+
hasMetafields?: InputMaybe<Scalars['Boolean']>;
|
|
25302
|
+
hasMetafieldsWith?: InputMaybe<Array<ThemeSectionMetaWhereInput>>;
|
|
24368
25303
|
/** shop edge predicates */
|
|
24369
25304
|
hasShop?: InputMaybe<Scalars['Boolean']>;
|
|
24370
25305
|
hasShopWith?: InputMaybe<Array<ShopWhereInput>>;
|
|
@@ -24373,9 +25308,6 @@ type ThemeSectionWhereInput = {
|
|
|
24373
25308
|
/** themePages edge predicates */
|
|
24374
25309
|
hasThemePages?: InputMaybe<Scalars['Boolean']>;
|
|
24375
25310
|
hasThemePagesWith?: InputMaybe<Array<ThemePageWhereInput>>;
|
|
24376
|
-
/** themeSectionMeta edge predicates */
|
|
24377
|
-
hasThemeSectionMeta?: InputMaybe<Scalars['Boolean']>;
|
|
24378
|
-
hasThemeSectionMetaWith?: InputMaybe<Array<ThemeSectionMetaWhereInput>>;
|
|
24379
25311
|
hasThemeWith?: InputMaybe<Array<ThemeWhereInput>>;
|
|
24380
25312
|
/** id field predicates */
|
|
24381
25313
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -24929,6 +25861,7 @@ type UpdateIconInput = {
|
|
|
24929
25861
|
type UpdateLibrarySaleFunnelInput = {
|
|
24930
25862
|
clearDeletedAt?: InputMaybe<Scalars['Boolean']>;
|
|
24931
25863
|
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
25864
|
+
position?: InputMaybe<Scalars['Int']>;
|
|
24932
25865
|
};
|
|
24933
25866
|
/**
|
|
24934
25867
|
* Define an input type for the mutation below.
|
|
@@ -24954,6 +25887,9 @@ type UpdateLibraryTemplateInput = {
|
|
|
24954
25887
|
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
24955
25888
|
libraryPosition?: InputMaybe<Scalars['Int']>;
|
|
24956
25889
|
};
|
|
25890
|
+
type UpdatePageInteractionInput = {
|
|
25891
|
+
value?: InputMaybe<Array<Scalars['Map']>>;
|
|
25892
|
+
};
|
|
24957
25893
|
type UpdatePageSectionInput = {
|
|
24958
25894
|
appBlocks?: InputMaybe<Scalars['String']>;
|
|
24959
25895
|
cid?: InputMaybe<Scalars['String']>;
|
|
@@ -24967,6 +25903,11 @@ type UpdatePageSectionInput = {
|
|
|
24967
25903
|
libraryPosition?: InputMaybe<Scalars['Int']>;
|
|
24968
25904
|
name?: InputMaybe<Scalars['String']>;
|
|
24969
25905
|
};
|
|
25906
|
+
type UpdateProductDiscountInput = {
|
|
25907
|
+
details?: InputMaybe<Array<Scalars['Map']>>;
|
|
25908
|
+
name?: InputMaybe<Scalars['String']>;
|
|
25909
|
+
type?: InputMaybe<ProductDiscountType>;
|
|
25910
|
+
};
|
|
24970
25911
|
type UpdateSaleFunnelCampaignInput = {
|
|
24971
25912
|
status?: InputMaybe<SaleFunnelCampaignStatus>;
|
|
24972
25913
|
};
|
|
@@ -25266,24 +26207,6 @@ type VariantProductOptionWhereInput = {
|
|
|
25266
26207
|
variantIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
25267
26208
|
variantIDNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
25268
26209
|
};
|
|
25269
|
-
type ShopCurrentVersion = {
|
|
25270
|
-
changelogs?: Maybe<Array<Maybe<StoreVersionLog>>>;
|
|
25271
|
-
currentVersion: Scalars['String'];
|
|
25272
|
-
isUpgrade: Scalars['Boolean'];
|
|
25273
|
-
lastVersion: Scalars['String'];
|
|
25274
|
-
};
|
|
25275
|
-
type StatConvertLayoutData = {
|
|
25276
|
-
convertToLayoutCount: Scalars['Int'];
|
|
25277
|
-
isConvertAllowed: Scalars['Boolean'];
|
|
25278
|
-
maxConvertToLayoutCount: Scalars['Int'];
|
|
25279
|
-
shopID: Scalars['ID'];
|
|
25280
|
-
};
|
|
25281
|
-
type StoreVersionLog = {
|
|
25282
|
-
githubReleaseID: Scalars['ID'];
|
|
25283
|
-
id: Scalars['ID'];
|
|
25284
|
-
note: Scalars['String'];
|
|
25285
|
-
version: Scalars['String'];
|
|
25286
|
-
};
|
|
25287
26210
|
type ThemePageLimitation = {
|
|
25288
26211
|
currentUserAppliedLimitation?: Maybe<Scalars['Boolean']>;
|
|
25289
26212
|
maximumPageVersionsPerPage?: Maybe<Scalars['Int']>;
|
|
@@ -25299,6 +26222,7 @@ type ThemePageLimitation = {
|
|
|
25299
26222
|
publishedCollectionPagesCount?: Maybe<Scalars['Int']>;
|
|
25300
26223
|
publishedIndexPagesCount?: Maybe<Scalars['Int']>;
|
|
25301
26224
|
publishedPagesCount?: Maybe<Scalars['Int']>;
|
|
26225
|
+
publishedPlatformDefaultPagesCount?: Maybe<Scalars['Int']>;
|
|
25302
26226
|
publishedProductPagesCount?: Maybe<Scalars['Int']>;
|
|
25303
26227
|
publishedStaticPagesCount?: Maybe<Scalars['Int']>;
|
|
25304
26228
|
};
|
|
@@ -25311,6 +26235,8 @@ type appAPI_AppType = AppType;
|
|
|
25311
26235
|
type appAPI_ArticleBlogWhereInput = ArticleBlogWhereInput;
|
|
25312
26236
|
type appAPI_ArticleBlogsArgs = ArticleBlogsArgs;
|
|
25313
26237
|
type appAPI_ArticleConnection = ArticleConnection;
|
|
26238
|
+
type appAPI_ArticleContent = ArticleContent;
|
|
26239
|
+
type appAPI_ArticleContentWhereInput = ArticleContentWhereInput;
|
|
25314
26240
|
type appAPI_ArticleEdge = ArticleEdge;
|
|
25315
26241
|
type appAPI_ArticleMetafieldArgs = ArticleMetafieldArgs;
|
|
25316
26242
|
type appAPI_ArticleOrder = ArticleOrder;
|
|
@@ -25383,8 +26309,11 @@ type appAPI_CreateIconInput = CreateIconInput;
|
|
|
25383
26309
|
type appAPI_CreateLibrarySaleFunnelMetaInput = CreateLibrarySaleFunnelMetaInput;
|
|
25384
26310
|
type appAPI_CreateLibrarySectionTagInput = CreateLibrarySectionTagInput;
|
|
25385
26311
|
type appAPI_CreateLibraryTemplateTagInput = CreateLibraryTemplateTagInput;
|
|
26312
|
+
type appAPI_CreatePageInteractionInput = CreatePageInteractionInput;
|
|
25386
26313
|
type appAPI_CreatePageSectionInput = CreatePageSectionInput;
|
|
25387
26314
|
type appAPI_CreatePlatformOriginalTemplateInput = CreatePlatformOriginalTemplateInput;
|
|
26315
|
+
type appAPI_CreateProductDiscountInput = CreateProductDiscountInput;
|
|
26316
|
+
type appAPI_CreateProductDiscountObjectInput = CreateProductDiscountObjectInput;
|
|
25388
26317
|
type appAPI_CreateSaleFunnelDiscountInput = CreateSaleFunnelDiscountInput;
|
|
25389
26318
|
type appAPI_CreateSaleFunnelInput = CreateSaleFunnelInput;
|
|
25390
26319
|
type appAPI_CreateSaleFunnelMetaInput = CreateSaleFunnelMetaInput;
|
|
@@ -25482,6 +26411,7 @@ type appAPI_FontOrder = FontOrder;
|
|
|
25482
26411
|
type appAPI_FontOrderField = FontOrderField;
|
|
25483
26412
|
type appAPI_FontStorage = FontStorage;
|
|
25484
26413
|
type appAPI_FontWhereInput = FontWhereInput;
|
|
26414
|
+
type appAPI_GenerateContentLimitation = GenerateContentLimitation;
|
|
25485
26415
|
type appAPI_GlobalComponent = GlobalComponent;
|
|
25486
26416
|
type appAPI_GlobalComponentConnection = GlobalComponentConnection;
|
|
25487
26417
|
type appAPI_GlobalComponentEdge = GlobalComponentEdge;
|
|
@@ -25498,6 +26428,7 @@ type appAPI_GlobalStoreVersionEdge = GlobalStoreVersionEdge;
|
|
|
25498
26428
|
type appAPI_GlobalStoreVersionOrder = GlobalStoreVersionOrder;
|
|
25499
26429
|
type appAPI_GlobalStoreVersionOrderField = GlobalStoreVersionOrderField;
|
|
25500
26430
|
type appAPI_GlobalStoreVersionWhereInput = GlobalStoreVersionWhereInput;
|
|
26431
|
+
type appAPI_GroupByFields = GroupByFields;
|
|
25501
26432
|
type appAPI_Icon = Icon;
|
|
25502
26433
|
type appAPI_IconConnection = IconConnection;
|
|
25503
26434
|
type appAPI_IconEdge = IconEdge;
|
|
@@ -25564,7 +26495,9 @@ type appAPI_MediaOrder = MediaOrder;
|
|
|
25564
26495
|
type appAPI_MediaOrderField = MediaOrderField;
|
|
25565
26496
|
type appAPI_MediaWhereInput = MediaWhereInput;
|
|
25566
26497
|
type appAPI_Metafield = Metafield;
|
|
26498
|
+
type appAPI_MetafieldObjectType = MetafieldObjectType;
|
|
25567
26499
|
type appAPI_MetafieldWhereInput = MetafieldWhereInput;
|
|
26500
|
+
type appAPI_Money = Money;
|
|
25568
26501
|
type appAPI_Mutation = Mutation;
|
|
25569
26502
|
type appAPI_MutationAssignObjectTriggerConditionCreateArgs = MutationAssignObjectTriggerConditionCreateArgs;
|
|
25570
26503
|
type appAPI_MutationAssignObjectTriggerConditionUpdateArgs = MutationAssignObjectTriggerConditionUpdateArgs;
|
|
@@ -25599,7 +26532,6 @@ type appAPI_MutationFeatureSettingUpdateArgs = MutationFeatureSettingUpdateArgs;
|
|
|
25599
26532
|
type appAPI_MutationFileDeleteArgs = MutationFileDeleteArgs;
|
|
25600
26533
|
type appAPI_MutationFileRestoreArgs = MutationFileRestoreArgs;
|
|
25601
26534
|
type appAPI_MutationFileRestoreByBkFileKeyArgs = MutationFileRestoreByBkFileKeyArgs;
|
|
25602
|
-
type appAPI_MutationFileUploadArgs = MutationFileUploadArgs;
|
|
25603
26535
|
type appAPI_MutationFileUploadByUrlArgs = MutationFileUploadByUrlArgs;
|
|
25604
26536
|
type appAPI_MutationFontDeleteArgs = MutationFontDeleteArgs;
|
|
25605
26537
|
type appAPI_MutationGlobalComponentCreateArgs = MutationGlobalComponentCreateArgs;
|
|
@@ -25628,6 +26560,11 @@ type appAPI_MutationLibraryTemplateTagCreateArgs = MutationLibraryTemplateTagCre
|
|
|
25628
26560
|
type appAPI_MutationLibraryTemplateTagDeleteArgs = MutationLibraryTemplateTagDeleteArgs;
|
|
25629
26561
|
type appAPI_MutationLibraryTemplateUpdateArgs = MutationLibraryTemplateUpdateArgs;
|
|
25630
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;
|
|
25631
26568
|
type appAPI_MutationPageSectionBulkCreateArgs = MutationPageSectionBulkCreateArgs;
|
|
25632
26569
|
type appAPI_MutationPageSectionCreateArgs = MutationPageSectionCreateArgs;
|
|
25633
26570
|
type appAPI_MutationPageSectionCreateFromThemeSectionArgs = MutationPageSectionCreateFromThemeSectionArgs;
|
|
@@ -25637,8 +26574,17 @@ type appAPI_MutationPageSectionUpdateArgs = MutationPageSectionUpdateArgs;
|
|
|
25637
26574
|
type appAPI_MutationPageSectionsBulkDeleteArgs = MutationPageSectionsBulkDeleteArgs;
|
|
25638
26575
|
type appAPI_MutationPageSectionsBulkUpdateArgs = MutationPageSectionsBulkUpdateArgs;
|
|
25639
26576
|
type appAPI_MutationPageViewUpArgs = MutationPageViewUpArgs;
|
|
26577
|
+
type appAPI_MutationPlatformOriginalTemplateDeleteArgs = MutationPlatformOriginalTemplateDeleteArgs;
|
|
26578
|
+
type appAPI_MutationPlatformOriginalTemplateResetArgs = MutationPlatformOriginalTemplateResetArgs;
|
|
25640
26579
|
type appAPI_MutationPlatformOriginalTemplateSyncArgs = MutationPlatformOriginalTemplateSyncArgs;
|
|
25641
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;
|
|
25642
26588
|
type appAPI_MutationPublicShopLibraryPageCreateArgs = MutationPublicShopLibraryPageCreateArgs;
|
|
25643
26589
|
type appAPI_MutationPublicShopLibraryPageDeleteArgs = MutationPublicShopLibraryPageDeleteArgs;
|
|
25644
26590
|
type appAPI_MutationPublicShopLibraryPageForceDeleteArgs = MutationPublicShopLibraryPageForceDeleteArgs;
|
|
@@ -25662,6 +26608,7 @@ type appAPI_MutationSaleFunnelDeleteArgs = MutationSaleFunnelDeleteArgs;
|
|
|
25662
26608
|
type appAPI_MutationSaleFunnelDiscountCreateOrUpdateArgs = MutationSaleFunnelDiscountCreateOrUpdateArgs;
|
|
25663
26609
|
type appAPI_MutationSaleFunnelDiscountDeleteArgs = MutationSaleFunnelDiscountDeleteArgs;
|
|
25664
26610
|
type appAPI_MutationSaleFunnelDuplicateArgs = MutationSaleFunnelDuplicateArgs;
|
|
26611
|
+
type appAPI_MutationSaleFunnelDuplicateToArgs = MutationSaleFunnelDuplicateToArgs;
|
|
25665
26612
|
type appAPI_MutationSaleFunnelMetaCreateOrUpdateArgs = MutationSaleFunnelMetaCreateOrUpdateArgs;
|
|
25666
26613
|
type appAPI_MutationSaleFunnelMetaDeleteArgs = MutationSaleFunnelMetaDeleteArgs;
|
|
25667
26614
|
type appAPI_MutationSaleFunnelOfferCreateArgs = MutationSaleFunnelOfferCreateArgs;
|
|
@@ -25669,9 +26616,11 @@ type appAPI_MutationSaleFunnelOfferDeleteArgs = MutationSaleFunnelOfferDeleteArg
|
|
|
25669
26616
|
type appAPI_MutationSaleFunnelOfferPublishArgs = MutationSaleFunnelOfferPublishArgs;
|
|
25670
26617
|
type appAPI_MutationSaleFunnelOfferUnPublishArgs = MutationSaleFunnelOfferUnPublishArgs;
|
|
25671
26618
|
type appAPI_MutationSaleFunnelOfferUpdateArgs = MutationSaleFunnelOfferUpdateArgs;
|
|
26619
|
+
type appAPI_MutationSaleFunnelPublishArgs = MutationSaleFunnelPublishArgs;
|
|
25672
26620
|
type appAPI_MutationSaleFunnelRedirectCreateArgs = MutationSaleFunnelRedirectCreateArgs;
|
|
25673
26621
|
type appAPI_MutationSaleFunnelRedirectDeleteArgs = MutationSaleFunnelRedirectDeleteArgs;
|
|
25674
26622
|
type appAPI_MutationSaleFunnelRedirectUpdateArgs = MutationSaleFunnelRedirectUpdateArgs;
|
|
26623
|
+
type appAPI_MutationSaleFunnelReplaceComponentDataArgs = MutationSaleFunnelReplaceComponentDataArgs;
|
|
25675
26624
|
type appAPI_MutationSaleFunnelTriggerCreateArgs = MutationSaleFunnelTriggerCreateArgs;
|
|
25676
26625
|
type appAPI_MutationSaleFunnelTriggerDeleteArgs = MutationSaleFunnelTriggerDeleteArgs;
|
|
25677
26626
|
type appAPI_MutationSaleFunnelUpdateArgs = MutationSaleFunnelUpdateArgs;
|
|
@@ -25751,6 +26700,7 @@ type appAPI_MutationThemePageMakeFromPageVersionArgs = MutationThemePageMakeFrom
|
|
|
25751
26700
|
type appAPI_MutationThemePageMetaBatchUpsertArgs = MutationThemePageMetaBatchUpsertArgs;
|
|
25752
26701
|
type appAPI_MutationThemePageMetaCreateOrUpdateArgs = MutationThemePageMetaCreateOrUpdateArgs;
|
|
25753
26702
|
type appAPI_MutationThemePageMetaDeleteArgs = MutationThemePageMetaDeleteArgs;
|
|
26703
|
+
type appAPI_MutationThemePageOnlineStoreDataAppendArgs = MutationThemePageOnlineStoreDataAppendArgs;
|
|
25754
26704
|
type appAPI_MutationThemePageOnlineStoreDataCreateArgs = MutationThemePageOnlineStoreDataCreateArgs;
|
|
25755
26705
|
type appAPI_MutationThemePageOnlineStoreDataDeleteArgs = MutationThemePageOnlineStoreDataDeleteArgs;
|
|
25756
26706
|
type appAPI_MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs = MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs;
|
|
@@ -25794,7 +26744,6 @@ type appAPI_MutationTriggerConditionDeleteArgs = MutationTriggerConditionDeleteA
|
|
|
25794
26744
|
type appAPI_MutationUnsubscribeWebhooksArgs = MutationUnsubscribeWebhooksArgs;
|
|
25795
26745
|
type appAPI_MutationUserMetaCreateOrUpdateArgs = MutationUserMetaCreateOrUpdateArgs;
|
|
25796
26746
|
type appAPI_MutationUserMetaDeleteArgs = MutationUserMetaDeleteArgs;
|
|
25797
|
-
type appAPI_ObjectType = ObjectType;
|
|
25798
26747
|
type appAPI_OrderDirection = OrderDirection;
|
|
25799
26748
|
type appAPI_OrderFields = OrderFields;
|
|
25800
26749
|
type appAPI_OrderTriggerCondition = OrderTriggerCondition;
|
|
@@ -25802,6 +26751,8 @@ type appAPI_Page = Page;
|
|
|
25802
26751
|
type appAPI_PageConnection = PageConnection;
|
|
25803
26752
|
type appAPI_PageEdge = PageEdge;
|
|
25804
26753
|
type appAPI_PageInfo = PageInfo;
|
|
26754
|
+
type appAPI_PageInteraction = PageInteraction;
|
|
26755
|
+
type appAPI_PageInteractionWhereInput = PageInteractionWhereInput;
|
|
25805
26756
|
type appAPI_PageMetafieldArgs = PageMetafieldArgs;
|
|
25806
26757
|
type appAPI_PageOrder = PageOrder;
|
|
25807
26758
|
type appAPI_PageOrderField = PageOrderField;
|
|
@@ -25838,8 +26789,24 @@ type appAPI_PriceRulePlatform = PriceRulePlatform;
|
|
|
25838
26789
|
type appAPI_PriceRuleWhereInput = PriceRuleWhereInput;
|
|
25839
26790
|
type appAPI_Product = Product;
|
|
25840
26791
|
type appAPI_ProductCollectionsArgs = ProductCollectionsArgs;
|
|
26792
|
+
type appAPI_ProductComponent = ProductComponent;
|
|
25841
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;
|
|
25842
26808
|
type appAPI_ProductEdge = ProductEdge;
|
|
26809
|
+
type appAPI_ProductListComponent = ProductListComponent;
|
|
25843
26810
|
type appAPI_ProductMediasArgs = ProductMediasArgs;
|
|
25844
26811
|
type appAPI_ProductMetafieldArgs = ProductMetafieldArgs;
|
|
25845
26812
|
type appAPI_ProductOption = ProductOption;
|
|
@@ -25875,11 +26842,8 @@ type appAPI_PublishStatus = PublishStatus;
|
|
|
25875
26842
|
type appAPI_PublishedCustomSection = PublishedCustomSection;
|
|
25876
26843
|
type appAPI_PublishedCustomSectionType = PublishedCustomSectionType;
|
|
25877
26844
|
type appAPI_PublishedCustomSectionWhereInput = PublishedCustomSectionWhereInput;
|
|
25878
|
-
type
|
|
25879
|
-
type
|
|
25880
|
-
type appAPI_PublishedGlobalSectionEdge = PublishedGlobalSectionEdge;
|
|
25881
|
-
type appAPI_PublishedGlobalSectionOrder = PublishedGlobalSectionOrder;
|
|
25882
|
-
type appAPI_PublishedGlobalSectionOrderField = PublishedGlobalSectionOrderField;
|
|
26845
|
+
type appAPI_PublishedPageInteraction = PublishedPageInteraction;
|
|
26846
|
+
type appAPI_PublishedPageInteractionWhereInput = PublishedPageInteractionWhereInput;
|
|
25883
26847
|
type appAPI_PublishedPageSection = PublishedPageSection;
|
|
25884
26848
|
type appAPI_PublishedPageSectionMeta = PublishedPageSectionMeta;
|
|
25885
26849
|
type appAPI_PublishedPageSectionMetaWhereInput = PublishedPageSectionMetaWhereInput;
|
|
@@ -25921,6 +26885,7 @@ type appAPI_QueryBackgroundTasksArgs = QueryBackgroundTasksArgs;
|
|
|
25921
26885
|
type appAPI_QueryBlogArgs = QueryBlogArgs;
|
|
25922
26886
|
type appAPI_QueryBlogsArgs = QueryBlogsArgs;
|
|
25923
26887
|
type appAPI_QueryCampaignOfferStatsArgs = QueryCampaignOfferStatsArgs;
|
|
26888
|
+
type appAPI_QueryCampaignOfferTotalStatArgs = QueryCampaignOfferTotalStatArgs;
|
|
25924
26889
|
type appAPI_QueryCampaignVersionsArgs = QueryCampaignVersionsArgs;
|
|
25925
26890
|
type appAPI_QueryCartArgs = QueryCartArgs;
|
|
25926
26891
|
type appAPI_QueryCollectionArgs = QueryCollectionArgs;
|
|
@@ -25959,9 +26924,14 @@ type appAPI_QueryPageSectionsArgs = QueryPageSectionsArgs;
|
|
|
25959
26924
|
type appAPI_QueryPageViewsArgs = QueryPageViewsArgs;
|
|
25960
26925
|
type appAPI_QueryPagesArgs = QueryPagesArgs;
|
|
25961
26926
|
type appAPI_QueryParameter = QueryParameter;
|
|
26927
|
+
type appAPI_QueryPlatformOriginalTemplateArgs = QueryPlatformOriginalTemplateArgs;
|
|
25962
26928
|
type appAPI_QueryPlatformPagesArgs = QueryPlatformPagesArgs;
|
|
25963
26929
|
type appAPI_QueryPreviewPageArgs = QueryPreviewPageArgs;
|
|
25964
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;
|
|
25965
26935
|
type appAPI_QueryProductOptionNameArgs = QueryProductOptionNameArgs;
|
|
25966
26936
|
type appAPI_QueryProductOptionValueLabelArgs = QueryProductOptionValueLabelArgs;
|
|
25967
26937
|
type appAPI_QueryProductOptionValuesArgs = QueryProductOptionValuesArgs;
|
|
@@ -25973,8 +26943,6 @@ type appAPI_QueryPublicShopLibrarySectionArgs = QueryPublicShopLibrarySectionArg
|
|
|
25973
26943
|
type appAPI_QueryPublicShopLibrarySectionsArgs = QueryPublicShopLibrarySectionsArgs;
|
|
25974
26944
|
type appAPI_QueryPublicShopLibraryThemeArgs = QueryPublicShopLibraryThemeArgs;
|
|
25975
26945
|
type appAPI_QueryPublicShopLibraryThemesArgs = QueryPublicShopLibraryThemesArgs;
|
|
25976
|
-
type appAPI_QueryPublishedGlobalSectionArgs = QueryPublishedGlobalSectionArgs;
|
|
25977
|
-
type appAPI_QueryPublishedGlobalSectionsArgs = QueryPublishedGlobalSectionsArgs;
|
|
25978
26946
|
type appAPI_QueryPublishedThemePagesArgs = QueryPublishedThemePagesArgs;
|
|
25979
26947
|
type appAPI_QueryPublishedThemeSectionArgs = QueryPublishedThemeSectionArgs;
|
|
25980
26948
|
type appAPI_QueryPublishedThemeSectionsArgs = QueryPublishedThemeSectionsArgs;
|
|
@@ -25985,6 +26953,7 @@ type appAPI_QuerySaleFunnelDiscountsArgs = QuerySaleFunnelDiscountsArgs;
|
|
|
25985
26953
|
type appAPI_QuerySaleFunnelMetasArgs = QuerySaleFunnelMetasArgs;
|
|
25986
26954
|
type appAPI_QuerySaleFunnelOfferArgs = QuerySaleFunnelOfferArgs;
|
|
25987
26955
|
type appAPI_QuerySaleFunnelOfferStatsArgs = QuerySaleFunnelOfferStatsArgs;
|
|
26956
|
+
type appAPI_QuerySaleFunnelOfferTotalStatArgs = QuerySaleFunnelOfferTotalStatArgs;
|
|
25988
26957
|
type appAPI_QuerySaleFunnelOffersArgs = QuerySaleFunnelOffersArgs;
|
|
25989
26958
|
type appAPI_QuerySaleFunnelStatsArgs = QuerySaleFunnelStatsArgs;
|
|
25990
26959
|
type appAPI_QuerySaleFunnelTotalStatArgs = QuerySaleFunnelTotalStatArgs;
|
|
@@ -26060,6 +27029,7 @@ type appAPI_SaleFunnelDiscountType = SaleFunnelDiscountType;
|
|
|
26060
27029
|
type appAPI_SaleFunnelDiscountValueType = SaleFunnelDiscountValueType;
|
|
26061
27030
|
type appAPI_SaleFunnelDiscountWhereInput = SaleFunnelDiscountWhereInput;
|
|
26062
27031
|
type appAPI_SaleFunnelEdge = SaleFunnelEdge;
|
|
27032
|
+
type appAPI_SaleFunnelLimitation = SaleFunnelLimitation;
|
|
26063
27033
|
type appAPI_SaleFunnelMeta = SaleFunnelMeta;
|
|
26064
27034
|
type appAPI_SaleFunnelMetaConnection = SaleFunnelMetaConnection;
|
|
26065
27035
|
type appAPI_SaleFunnelMetaEdge = SaleFunnelMetaEdge;
|
|
@@ -26083,6 +27053,7 @@ type appAPI_SaleFunnelOrder = SaleFunnelOrder;
|
|
|
26083
27053
|
type appAPI_SaleFunnelOrderField = SaleFunnelOrderField;
|
|
26084
27054
|
type appAPI_SaleFunnelRedirect = SaleFunnelRedirect;
|
|
26085
27055
|
type appAPI_SaleFunnelRedirectWhereInput = SaleFunnelRedirectWhereInput;
|
|
27056
|
+
type appAPI_SaleFunnelReplaceComponentDataInput = SaleFunnelReplaceComponentDataInput;
|
|
26086
27057
|
type appAPI_SaleFunnelStat = SaleFunnelStat;
|
|
26087
27058
|
type appAPI_SaleFunnelStatConnection = SaleFunnelStatConnection;
|
|
26088
27059
|
type appAPI_SaleFunnelStatEdge = SaleFunnelStatEdge;
|
|
@@ -26156,6 +27127,7 @@ type appAPI_ShopifyTheme = ShopifyTheme;
|
|
|
26156
27127
|
type appAPI_SocketStatus = SocketStatus;
|
|
26157
27128
|
type appAPI_StatConvertLayoutData = StatConvertLayoutData;
|
|
26158
27129
|
type appAPI_StatConvertLayoutWhereInput = StatConvertLayoutWhereInput;
|
|
27130
|
+
type appAPI_StatGenerateContentWhereInput = StatGenerateContentWhereInput;
|
|
26159
27131
|
type appAPI_StatPageViewWhereInput = StatPageViewWhereInput;
|
|
26160
27132
|
type appAPI_Status = Status;
|
|
26161
27133
|
type appAPI_StoreProperty = StoreProperty;
|
|
@@ -26262,7 +27234,9 @@ type appAPI_UpdateIconInput = UpdateIconInput;
|
|
|
26262
27234
|
type appAPI_UpdateLibrarySaleFunnelInput = UpdateLibrarySaleFunnelInput;
|
|
26263
27235
|
type appAPI_UpdateLibrarySectionInput = UpdateLibrarySectionInput;
|
|
26264
27236
|
type appAPI_UpdateLibraryTemplateInput = UpdateLibraryTemplateInput;
|
|
27237
|
+
type appAPI_UpdatePageInteractionInput = UpdatePageInteractionInput;
|
|
26265
27238
|
type appAPI_UpdatePageSectionInput = UpdatePageSectionInput;
|
|
27239
|
+
type appAPI_UpdateProductDiscountInput = UpdateProductDiscountInput;
|
|
26266
27240
|
type appAPI_UpdateSaleFunnelCampaignInput = UpdateSaleFunnelCampaignInput;
|
|
26267
27241
|
type appAPI_UpdateSaleFunnelDiscountInput = UpdateSaleFunnelDiscountInput;
|
|
26268
27242
|
type appAPI_UpdateSaleFunnelInput = UpdateSaleFunnelInput;
|
|
@@ -26304,6 +27278,8 @@ declare namespace appAPI {
|
|
|
26304
27278
|
appAPI_ArticleBlogWhereInput as ArticleBlogWhereInput,
|
|
26305
27279
|
appAPI_ArticleBlogsArgs as ArticleBlogsArgs,
|
|
26306
27280
|
appAPI_ArticleConnection as ArticleConnection,
|
|
27281
|
+
appAPI_ArticleContent as ArticleContent,
|
|
27282
|
+
appAPI_ArticleContentWhereInput as ArticleContentWhereInput,
|
|
26307
27283
|
appAPI_ArticleEdge as ArticleEdge,
|
|
26308
27284
|
appAPI_ArticleMetafieldArgs as ArticleMetafieldArgs,
|
|
26309
27285
|
appAPI_ArticleOrder as ArticleOrder,
|
|
@@ -26376,8 +27352,11 @@ declare namespace appAPI {
|
|
|
26376
27352
|
appAPI_CreateLibrarySaleFunnelMetaInput as CreateLibrarySaleFunnelMetaInput,
|
|
26377
27353
|
appAPI_CreateLibrarySectionTagInput as CreateLibrarySectionTagInput,
|
|
26378
27354
|
appAPI_CreateLibraryTemplateTagInput as CreateLibraryTemplateTagInput,
|
|
27355
|
+
appAPI_CreatePageInteractionInput as CreatePageInteractionInput,
|
|
26379
27356
|
appAPI_CreatePageSectionInput as CreatePageSectionInput,
|
|
26380
27357
|
appAPI_CreatePlatformOriginalTemplateInput as CreatePlatformOriginalTemplateInput,
|
|
27358
|
+
appAPI_CreateProductDiscountInput as CreateProductDiscountInput,
|
|
27359
|
+
appAPI_CreateProductDiscountObjectInput as CreateProductDiscountObjectInput,
|
|
26381
27360
|
appAPI_CreateSaleFunnelDiscountInput as CreateSaleFunnelDiscountInput,
|
|
26382
27361
|
appAPI_CreateSaleFunnelInput as CreateSaleFunnelInput,
|
|
26383
27362
|
appAPI_CreateSaleFunnelMetaInput as CreateSaleFunnelMetaInput,
|
|
@@ -26473,6 +27452,7 @@ declare namespace appAPI {
|
|
|
26473
27452
|
appAPI_FontOrderField as FontOrderField,
|
|
26474
27453
|
appAPI_FontStorage as FontStorage,
|
|
26475
27454
|
appAPI_FontWhereInput as FontWhereInput,
|
|
27455
|
+
appAPI_GenerateContentLimitation as GenerateContentLimitation,
|
|
26476
27456
|
appAPI_GlobalComponent as GlobalComponent,
|
|
26477
27457
|
appAPI_GlobalComponentConnection as GlobalComponentConnection,
|
|
26478
27458
|
appAPI_GlobalComponentEdge as GlobalComponentEdge,
|
|
@@ -26489,6 +27469,7 @@ declare namespace appAPI {
|
|
|
26489
27469
|
appAPI_GlobalStoreVersionOrder as GlobalStoreVersionOrder,
|
|
26490
27470
|
appAPI_GlobalStoreVersionOrderField as GlobalStoreVersionOrderField,
|
|
26491
27471
|
appAPI_GlobalStoreVersionWhereInput as GlobalStoreVersionWhereInput,
|
|
27472
|
+
appAPI_GroupByFields as GroupByFields,
|
|
26492
27473
|
appAPI_Icon as Icon,
|
|
26493
27474
|
appAPI_IconConnection as IconConnection,
|
|
26494
27475
|
appAPI_IconEdge as IconEdge,
|
|
@@ -26555,7 +27536,9 @@ declare namespace appAPI {
|
|
|
26555
27536
|
appAPI_MediaOrderField as MediaOrderField,
|
|
26556
27537
|
appAPI_MediaWhereInput as MediaWhereInput,
|
|
26557
27538
|
appAPI_Metafield as Metafield,
|
|
27539
|
+
appAPI_MetafieldObjectType as MetafieldObjectType,
|
|
26558
27540
|
appAPI_MetafieldWhereInput as MetafieldWhereInput,
|
|
27541
|
+
appAPI_Money as Money,
|
|
26559
27542
|
appAPI_Mutation as Mutation,
|
|
26560
27543
|
appAPI_MutationAssignObjectTriggerConditionCreateArgs as MutationAssignObjectTriggerConditionCreateArgs,
|
|
26561
27544
|
appAPI_MutationAssignObjectTriggerConditionUpdateArgs as MutationAssignObjectTriggerConditionUpdateArgs,
|
|
@@ -26590,7 +27573,6 @@ declare namespace appAPI {
|
|
|
26590
27573
|
appAPI_MutationFileDeleteArgs as MutationFileDeleteArgs,
|
|
26591
27574
|
appAPI_MutationFileRestoreArgs as MutationFileRestoreArgs,
|
|
26592
27575
|
appAPI_MutationFileRestoreByBkFileKeyArgs as MutationFileRestoreByBkFileKeyArgs,
|
|
26593
|
-
appAPI_MutationFileUploadArgs as MutationFileUploadArgs,
|
|
26594
27576
|
appAPI_MutationFileUploadByUrlArgs as MutationFileUploadByUrlArgs,
|
|
26595
27577
|
appAPI_MutationFontDeleteArgs as MutationFontDeleteArgs,
|
|
26596
27578
|
appAPI_MutationGlobalComponentCreateArgs as MutationGlobalComponentCreateArgs,
|
|
@@ -26619,6 +27601,11 @@ declare namespace appAPI {
|
|
|
26619
27601
|
appAPI_MutationLibraryTemplateTagDeleteArgs as MutationLibraryTemplateTagDeleteArgs,
|
|
26620
27602
|
appAPI_MutationLibraryTemplateUpdateArgs as MutationLibraryTemplateUpdateArgs,
|
|
26621
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,
|
|
26622
27609
|
appAPI_MutationPageSectionBulkCreateArgs as MutationPageSectionBulkCreateArgs,
|
|
26623
27610
|
appAPI_MutationPageSectionCreateArgs as MutationPageSectionCreateArgs,
|
|
26624
27611
|
appAPI_MutationPageSectionCreateFromThemeSectionArgs as MutationPageSectionCreateFromThemeSectionArgs,
|
|
@@ -26628,8 +27615,17 @@ declare namespace appAPI {
|
|
|
26628
27615
|
appAPI_MutationPageSectionsBulkDeleteArgs as MutationPageSectionsBulkDeleteArgs,
|
|
26629
27616
|
appAPI_MutationPageSectionsBulkUpdateArgs as MutationPageSectionsBulkUpdateArgs,
|
|
26630
27617
|
appAPI_MutationPageViewUpArgs as MutationPageViewUpArgs,
|
|
27618
|
+
appAPI_MutationPlatformOriginalTemplateDeleteArgs as MutationPlatformOriginalTemplateDeleteArgs,
|
|
27619
|
+
appAPI_MutationPlatformOriginalTemplateResetArgs as MutationPlatformOriginalTemplateResetArgs,
|
|
26631
27620
|
appAPI_MutationPlatformOriginalTemplateSyncArgs as MutationPlatformOriginalTemplateSyncArgs,
|
|
26632
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,
|
|
26633
27629
|
appAPI_MutationPublicShopLibraryPageCreateArgs as MutationPublicShopLibraryPageCreateArgs,
|
|
26634
27630
|
appAPI_MutationPublicShopLibraryPageDeleteArgs as MutationPublicShopLibraryPageDeleteArgs,
|
|
26635
27631
|
appAPI_MutationPublicShopLibraryPageForceDeleteArgs as MutationPublicShopLibraryPageForceDeleteArgs,
|
|
@@ -26653,6 +27649,7 @@ declare namespace appAPI {
|
|
|
26653
27649
|
appAPI_MutationSaleFunnelDiscountCreateOrUpdateArgs as MutationSaleFunnelDiscountCreateOrUpdateArgs,
|
|
26654
27650
|
appAPI_MutationSaleFunnelDiscountDeleteArgs as MutationSaleFunnelDiscountDeleteArgs,
|
|
26655
27651
|
appAPI_MutationSaleFunnelDuplicateArgs as MutationSaleFunnelDuplicateArgs,
|
|
27652
|
+
appAPI_MutationSaleFunnelDuplicateToArgs as MutationSaleFunnelDuplicateToArgs,
|
|
26656
27653
|
appAPI_MutationSaleFunnelMetaCreateOrUpdateArgs as MutationSaleFunnelMetaCreateOrUpdateArgs,
|
|
26657
27654
|
appAPI_MutationSaleFunnelMetaDeleteArgs as MutationSaleFunnelMetaDeleteArgs,
|
|
26658
27655
|
appAPI_MutationSaleFunnelOfferCreateArgs as MutationSaleFunnelOfferCreateArgs,
|
|
@@ -26660,9 +27657,11 @@ declare namespace appAPI {
|
|
|
26660
27657
|
appAPI_MutationSaleFunnelOfferPublishArgs as MutationSaleFunnelOfferPublishArgs,
|
|
26661
27658
|
appAPI_MutationSaleFunnelOfferUnPublishArgs as MutationSaleFunnelOfferUnPublishArgs,
|
|
26662
27659
|
appAPI_MutationSaleFunnelOfferUpdateArgs as MutationSaleFunnelOfferUpdateArgs,
|
|
27660
|
+
appAPI_MutationSaleFunnelPublishArgs as MutationSaleFunnelPublishArgs,
|
|
26663
27661
|
appAPI_MutationSaleFunnelRedirectCreateArgs as MutationSaleFunnelRedirectCreateArgs,
|
|
26664
27662
|
appAPI_MutationSaleFunnelRedirectDeleteArgs as MutationSaleFunnelRedirectDeleteArgs,
|
|
26665
27663
|
appAPI_MutationSaleFunnelRedirectUpdateArgs as MutationSaleFunnelRedirectUpdateArgs,
|
|
27664
|
+
appAPI_MutationSaleFunnelReplaceComponentDataArgs as MutationSaleFunnelReplaceComponentDataArgs,
|
|
26666
27665
|
appAPI_MutationSaleFunnelTriggerCreateArgs as MutationSaleFunnelTriggerCreateArgs,
|
|
26667
27666
|
appAPI_MutationSaleFunnelTriggerDeleteArgs as MutationSaleFunnelTriggerDeleteArgs,
|
|
26668
27667
|
appAPI_MutationSaleFunnelUpdateArgs as MutationSaleFunnelUpdateArgs,
|
|
@@ -26742,6 +27741,7 @@ declare namespace appAPI {
|
|
|
26742
27741
|
appAPI_MutationThemePageMetaBatchUpsertArgs as MutationThemePageMetaBatchUpsertArgs,
|
|
26743
27742
|
appAPI_MutationThemePageMetaCreateOrUpdateArgs as MutationThemePageMetaCreateOrUpdateArgs,
|
|
26744
27743
|
appAPI_MutationThemePageMetaDeleteArgs as MutationThemePageMetaDeleteArgs,
|
|
27744
|
+
appAPI_MutationThemePageOnlineStoreDataAppendArgs as MutationThemePageOnlineStoreDataAppendArgs,
|
|
26745
27745
|
appAPI_MutationThemePageOnlineStoreDataCreateArgs as MutationThemePageOnlineStoreDataCreateArgs,
|
|
26746
27746
|
appAPI_MutationThemePageOnlineStoreDataDeleteArgs as MutationThemePageOnlineStoreDataDeleteArgs,
|
|
26747
27747
|
appAPI_MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs as MutationThemePageOnlineStoreDataRemoveObjectBaseIDsArgs,
|
|
@@ -26785,7 +27785,6 @@ declare namespace appAPI {
|
|
|
26785
27785
|
appAPI_MutationUnsubscribeWebhooksArgs as MutationUnsubscribeWebhooksArgs,
|
|
26786
27786
|
appAPI_MutationUserMetaCreateOrUpdateArgs as MutationUserMetaCreateOrUpdateArgs,
|
|
26787
27787
|
appAPI_MutationUserMetaDeleteArgs as MutationUserMetaDeleteArgs,
|
|
26788
|
-
appAPI_ObjectType as ObjectType,
|
|
26789
27788
|
appAPI_OrderDirection as OrderDirection,
|
|
26790
27789
|
appAPI_OrderFields as OrderFields,
|
|
26791
27790
|
appAPI_OrderTriggerCondition as OrderTriggerCondition,
|
|
@@ -26793,6 +27792,8 @@ declare namespace appAPI {
|
|
|
26793
27792
|
appAPI_PageConnection as PageConnection,
|
|
26794
27793
|
appAPI_PageEdge as PageEdge,
|
|
26795
27794
|
appAPI_PageInfo as PageInfo,
|
|
27795
|
+
appAPI_PageInteraction as PageInteraction,
|
|
27796
|
+
appAPI_PageInteractionWhereInput as PageInteractionWhereInput,
|
|
26796
27797
|
appAPI_PageMetafieldArgs as PageMetafieldArgs,
|
|
26797
27798
|
appAPI_PageOrder as PageOrder,
|
|
26798
27799
|
appAPI_PageOrderField as PageOrderField,
|
|
@@ -26829,8 +27830,24 @@ declare namespace appAPI {
|
|
|
26829
27830
|
appAPI_PriceRuleWhereInput as PriceRuleWhereInput,
|
|
26830
27831
|
appAPI_Product as Product,
|
|
26831
27832
|
appAPI_ProductCollectionsArgs as ProductCollectionsArgs,
|
|
27833
|
+
appAPI_ProductComponent as ProductComponent,
|
|
26832
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,
|
|
26833
27849
|
appAPI_ProductEdge as ProductEdge,
|
|
27850
|
+
appAPI_ProductListComponent as ProductListComponent,
|
|
26834
27851
|
appAPI_ProductMediasArgs as ProductMediasArgs,
|
|
26835
27852
|
appAPI_ProductMetafieldArgs as ProductMetafieldArgs,
|
|
26836
27853
|
appAPI_ProductOption as ProductOption,
|
|
@@ -26866,11 +27883,8 @@ declare namespace appAPI {
|
|
|
26866
27883
|
appAPI_PublishedCustomSection as PublishedCustomSection,
|
|
26867
27884
|
appAPI_PublishedCustomSectionType as PublishedCustomSectionType,
|
|
26868
27885
|
appAPI_PublishedCustomSectionWhereInput as PublishedCustomSectionWhereInput,
|
|
26869
|
-
|
|
26870
|
-
|
|
26871
|
-
appAPI_PublishedGlobalSectionEdge as PublishedGlobalSectionEdge,
|
|
26872
|
-
appAPI_PublishedGlobalSectionOrder as PublishedGlobalSectionOrder,
|
|
26873
|
-
appAPI_PublishedGlobalSectionOrderField as PublishedGlobalSectionOrderField,
|
|
27886
|
+
appAPI_PublishedPageInteraction as PublishedPageInteraction,
|
|
27887
|
+
appAPI_PublishedPageInteractionWhereInput as PublishedPageInteractionWhereInput,
|
|
26874
27888
|
appAPI_PublishedPageSection as PublishedPageSection,
|
|
26875
27889
|
appAPI_PublishedPageSectionMeta as PublishedPageSectionMeta,
|
|
26876
27890
|
appAPI_PublishedPageSectionMetaWhereInput as PublishedPageSectionMetaWhereInput,
|
|
@@ -26912,6 +27926,7 @@ declare namespace appAPI {
|
|
|
26912
27926
|
appAPI_QueryBlogArgs as QueryBlogArgs,
|
|
26913
27927
|
appAPI_QueryBlogsArgs as QueryBlogsArgs,
|
|
26914
27928
|
appAPI_QueryCampaignOfferStatsArgs as QueryCampaignOfferStatsArgs,
|
|
27929
|
+
appAPI_QueryCampaignOfferTotalStatArgs as QueryCampaignOfferTotalStatArgs,
|
|
26915
27930
|
appAPI_QueryCampaignVersionsArgs as QueryCampaignVersionsArgs,
|
|
26916
27931
|
appAPI_QueryCartArgs as QueryCartArgs,
|
|
26917
27932
|
appAPI_QueryCollectionArgs as QueryCollectionArgs,
|
|
@@ -26950,9 +27965,14 @@ declare namespace appAPI {
|
|
|
26950
27965
|
appAPI_QueryPageViewsArgs as QueryPageViewsArgs,
|
|
26951
27966
|
appAPI_QueryPagesArgs as QueryPagesArgs,
|
|
26952
27967
|
appAPI_QueryParameter as QueryParameter,
|
|
27968
|
+
appAPI_QueryPlatformOriginalTemplateArgs as QueryPlatformOriginalTemplateArgs,
|
|
26953
27969
|
appAPI_QueryPlatformPagesArgs as QueryPlatformPagesArgs,
|
|
26954
27970
|
appAPI_QueryPreviewPageArgs as QueryPreviewPageArgs,
|
|
26955
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,
|
|
26956
27976
|
appAPI_QueryProductOptionNameArgs as QueryProductOptionNameArgs,
|
|
26957
27977
|
appAPI_QueryProductOptionValueLabelArgs as QueryProductOptionValueLabelArgs,
|
|
26958
27978
|
appAPI_QueryProductOptionValuesArgs as QueryProductOptionValuesArgs,
|
|
@@ -26964,8 +27984,6 @@ declare namespace appAPI {
|
|
|
26964
27984
|
appAPI_QueryPublicShopLibrarySectionsArgs as QueryPublicShopLibrarySectionsArgs,
|
|
26965
27985
|
appAPI_QueryPublicShopLibraryThemeArgs as QueryPublicShopLibraryThemeArgs,
|
|
26966
27986
|
appAPI_QueryPublicShopLibraryThemesArgs as QueryPublicShopLibraryThemesArgs,
|
|
26967
|
-
appAPI_QueryPublishedGlobalSectionArgs as QueryPublishedGlobalSectionArgs,
|
|
26968
|
-
appAPI_QueryPublishedGlobalSectionsArgs as QueryPublishedGlobalSectionsArgs,
|
|
26969
27987
|
appAPI_QueryPublishedThemePagesArgs as QueryPublishedThemePagesArgs,
|
|
26970
27988
|
appAPI_QueryPublishedThemeSectionArgs as QueryPublishedThemeSectionArgs,
|
|
26971
27989
|
appAPI_QueryPublishedThemeSectionsArgs as QueryPublishedThemeSectionsArgs,
|
|
@@ -26976,6 +27994,7 @@ declare namespace appAPI {
|
|
|
26976
27994
|
appAPI_QuerySaleFunnelMetasArgs as QuerySaleFunnelMetasArgs,
|
|
26977
27995
|
appAPI_QuerySaleFunnelOfferArgs as QuerySaleFunnelOfferArgs,
|
|
26978
27996
|
appAPI_QuerySaleFunnelOfferStatsArgs as QuerySaleFunnelOfferStatsArgs,
|
|
27997
|
+
appAPI_QuerySaleFunnelOfferTotalStatArgs as QuerySaleFunnelOfferTotalStatArgs,
|
|
26979
27998
|
appAPI_QuerySaleFunnelOffersArgs as QuerySaleFunnelOffersArgs,
|
|
26980
27999
|
appAPI_QuerySaleFunnelStatsArgs as QuerySaleFunnelStatsArgs,
|
|
26981
28000
|
appAPI_QuerySaleFunnelTotalStatArgs as QuerySaleFunnelTotalStatArgs,
|
|
@@ -27051,6 +28070,7 @@ declare namespace appAPI {
|
|
|
27051
28070
|
appAPI_SaleFunnelDiscountValueType as SaleFunnelDiscountValueType,
|
|
27052
28071
|
appAPI_SaleFunnelDiscountWhereInput as SaleFunnelDiscountWhereInput,
|
|
27053
28072
|
appAPI_SaleFunnelEdge as SaleFunnelEdge,
|
|
28073
|
+
appAPI_SaleFunnelLimitation as SaleFunnelLimitation,
|
|
27054
28074
|
appAPI_SaleFunnelMeta as SaleFunnelMeta,
|
|
27055
28075
|
appAPI_SaleFunnelMetaConnection as SaleFunnelMetaConnection,
|
|
27056
28076
|
appAPI_SaleFunnelMetaEdge as SaleFunnelMetaEdge,
|
|
@@ -27074,6 +28094,7 @@ declare namespace appAPI {
|
|
|
27074
28094
|
appAPI_SaleFunnelOrderField as SaleFunnelOrderField,
|
|
27075
28095
|
appAPI_SaleFunnelRedirect as SaleFunnelRedirect,
|
|
27076
28096
|
appAPI_SaleFunnelRedirectWhereInput as SaleFunnelRedirectWhereInput,
|
|
28097
|
+
appAPI_SaleFunnelReplaceComponentDataInput as SaleFunnelReplaceComponentDataInput,
|
|
27077
28098
|
appAPI_SaleFunnelStat as SaleFunnelStat,
|
|
27078
28099
|
appAPI_SaleFunnelStatConnection as SaleFunnelStatConnection,
|
|
27079
28100
|
appAPI_SaleFunnelStatEdge as SaleFunnelStatEdge,
|
|
@@ -27147,6 +28168,7 @@ declare namespace appAPI {
|
|
|
27147
28168
|
appAPI_SocketStatus as SocketStatus,
|
|
27148
28169
|
appAPI_StatConvertLayoutData as StatConvertLayoutData,
|
|
27149
28170
|
appAPI_StatConvertLayoutWhereInput as StatConvertLayoutWhereInput,
|
|
28171
|
+
appAPI_StatGenerateContentWhereInput as StatGenerateContentWhereInput,
|
|
27150
28172
|
appAPI_StatPageViewWhereInput as StatPageViewWhereInput,
|
|
27151
28173
|
appAPI_Status as Status,
|
|
27152
28174
|
appAPI_StoreProperty as StoreProperty,
|
|
@@ -27253,7 +28275,9 @@ declare namespace appAPI {
|
|
|
27253
28275
|
appAPI_UpdateLibrarySaleFunnelInput as UpdateLibrarySaleFunnelInput,
|
|
27254
28276
|
appAPI_UpdateLibrarySectionInput as UpdateLibrarySectionInput,
|
|
27255
28277
|
appAPI_UpdateLibraryTemplateInput as UpdateLibraryTemplateInput,
|
|
28278
|
+
appAPI_UpdatePageInteractionInput as UpdatePageInteractionInput,
|
|
27256
28279
|
appAPI_UpdatePageSectionInput as UpdatePageSectionInput,
|
|
28280
|
+
appAPI_UpdateProductDiscountInput as UpdateProductDiscountInput,
|
|
27257
28281
|
appAPI_UpdateSaleFunnelCampaignInput as UpdateSaleFunnelCampaignInput,
|
|
27258
28282
|
appAPI_UpdateSaleFunnelDiscountInput as UpdateSaleFunnelDiscountInput,
|
|
27259
28283
|
appAPI_UpdateSaleFunnelInput as UpdateSaleFunnelInput,
|
|
@@ -27949,10 +28973,9 @@ declare const useArticleStore: <U>(selector: (state: ExtractState<StoreApi<Artic
|
|
|
27949
28973
|
|
|
27950
28974
|
type PageViewUpMutationVariables = Exact$1<{
|
|
27951
28975
|
pageHandle: Scalars$2['String'];
|
|
27952
|
-
userAgent: Scalars$2['String'];
|
|
27953
28976
|
}>;
|
|
27954
28977
|
type PageViewUpMutationResponse = Pick<Mutation$1, 'pageViewUp'>;
|
|
27955
|
-
declare const PageViewUpDocument = "\n mutation pageViewUp($pageHandle: String
|
|
28978
|
+
declare const PageViewUpDocument = "\n mutation pageViewUp($pageHandle: String!) {\n pageViewUp(pageHandle: $pageHandle)\n}\n ";
|
|
27956
28979
|
|
|
27957
28980
|
type CollectionDetailFilterQueryVariables = Exact$1<{
|
|
27958
28981
|
firstProduct?: InputMaybe$1<Scalars$2['Int']>;
|
|
@@ -34576,6 +35599,7 @@ declare const getHeightByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSet
|
|
|
34576
35599
|
declare const getWidthByShapeGlobalSize: (shapeByLayout?: ObjectDevices<SizeSettingGlobal>, defaultAuto?: boolean) => Partial<Record<NameDevices$1, string>>;
|
|
34577
35600
|
declare const getAspectRatioGlobalSize: (shape?: ObjectDevices<SizeSettingGlobal>) => ObjectDevices<string>;
|
|
34578
35601
|
declare const getPaddingGlobalSize: (globalSize?: ObjectDevices<SizeSettingGlobal>) => React.CSSProperties;
|
|
35602
|
+
declare const getValueByDevice: <T>(value: any, device: NameDevices$1) => T;
|
|
34579
35603
|
|
|
34580
35604
|
type TypographyClass = `gp-g-${TypographyType}`;
|
|
34581
35605
|
declare const genTypoClass: (name: TypographyType) => TypographyClass;
|
|
@@ -36260,7 +37284,7 @@ type ArticlesQueryResponse = {
|
|
|
36260
37284
|
articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
|
|
36261
37285
|
edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
|
|
36262
37286
|
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isSample' | 'platformCreatedAt' | 'author'> & {
|
|
36263
|
-
content?: Maybe$1<Pick<ArticleContent, 'excerptHtml'>>;
|
|
37287
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
36264
37288
|
blogs?: Maybe$1<{
|
|
36265
37289
|
edges: Array<{
|
|
36266
37290
|
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
@@ -36384,4 +37408,4 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name'
|
|
|
36384
37408
|
|
|
36385
37409
|
declare const getProductBySlug: (fetcher: FetchFunc, slug?: string) => Promise<ProductSelectFragment>;
|
|
36386
37410
|
|
|
36387
|
-
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 };
|