@gem-sdk/core 1.14.0-dev.804 → 1.14.0-dev.812
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/types/index.d.ts +497 -7
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -4896,6 +4896,17 @@ type PublishedSaleFunnelDiscountWhereInput$1 = {
|
|
|
4896
4896
|
objectTypeNEQ?: InputMaybe$1<PublishedSaleFunnelDiscountObjectType$1>;
|
|
4897
4897
|
objectTypeNotIn?: InputMaybe$1<PublishedSaleFunnelDiscountObjectType$1[]>;
|
|
4898
4898
|
or?: InputMaybe$1<PublishedSaleFunnelDiscountWhereInput$1[]>;
|
|
4899
|
+
/** position field predicates */
|
|
4900
|
+
position?: InputMaybe$1<Scalars$2['Int']>;
|
|
4901
|
+
positionGT?: InputMaybe$1<Scalars$2['Int']>;
|
|
4902
|
+
positionGTE?: InputMaybe$1<Scalars$2['Int']>;
|
|
4903
|
+
positionIn?: InputMaybe$1<Scalars$2['Int'][]>;
|
|
4904
|
+
positionIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4905
|
+
positionLT?: InputMaybe$1<Scalars$2['Int']>;
|
|
4906
|
+
positionLTE?: InputMaybe$1<Scalars$2['Int']>;
|
|
4907
|
+
positionNEQ?: InputMaybe$1<Scalars$2['Int']>;
|
|
4908
|
+
positionNotIn?: InputMaybe$1<Scalars$2['Int'][]>;
|
|
4909
|
+
positionNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4899
4910
|
/** sale_funnel_offer_id field predicates */
|
|
4900
4911
|
saleFunnelOfferID?: InputMaybe$1<Scalars$2['ID']>;
|
|
4901
4912
|
saleFunnelOfferIDIn?: InputMaybe$1<Scalars$2['ID'][]>;
|
|
@@ -6919,7 +6930,7 @@ type InputNumberControlType<T> = SharedControlType<T> & {
|
|
|
6919
6930
|
readonly?: boolean;
|
|
6920
6931
|
};
|
|
6921
6932
|
|
|
6922
|
-
type SizeUnit$2 = 's' | '%' | 'cm' | 'mm' | 'Q' | 'in' | 'pc' | 'pt' | 'px' | 'em' | 'cap' | 'ex' | 'ch' | 'ic' | 'rem' | 'lh' | 'rlh' | 'vw' | 'vh' | 'vi' | 'vb' | 'vmin' | 'vmax' | 'ms';
|
|
6933
|
+
type SizeUnit$2 = 's' | '%' | 'cm' | 'mm' | 'Q' | 'in' | 'pc' | 'pt' | 'px' | 'em' | 'cap' | 'ex' | 'ch' | 'ic' | 'rem' | 'lh' | 'rlh' | 'vw' | 'vh' | 'vi' | 'vb' | 'vmin' | 'vmax' | 'ms' | 'min';
|
|
6923
6934
|
type InputUnitControlType<T> = SharedControlType<T> & {
|
|
6924
6935
|
type: 'input:unit';
|
|
6925
6936
|
placeholder?: string;
|
|
@@ -7662,6 +7673,7 @@ type ProductOffersControlType<T> = SharedControlType<T> & {
|
|
|
7662
7673
|
|
|
7663
7674
|
type DiscountAndShippingFee<T> = SharedControlType<T> & {
|
|
7664
7675
|
type: 'discount-and-shipping-fee-product-offer';
|
|
7676
|
+
multiple: boolean;
|
|
7665
7677
|
};
|
|
7666
7678
|
|
|
7667
7679
|
type PostPurchaseTextareaControlType<T> = SharedControlType<T> & {
|
|
@@ -7817,8 +7829,9 @@ type ComponentPreset = {
|
|
|
7817
7829
|
};
|
|
7818
7830
|
|
|
7819
7831
|
type PageContext = {
|
|
7820
|
-
numberOfProductOfProductList
|
|
7832
|
+
numberOfProductOfProductList?: number;
|
|
7821
7833
|
pageType?: string;
|
|
7834
|
+
isPreviewing?: boolean;
|
|
7822
7835
|
};
|
|
7823
7836
|
type DeepPartial<T> = {
|
|
7824
7837
|
[P in keyof T]?: DeepPartial<T[P]>;
|
|
@@ -8310,6 +8323,17 @@ type BackgroundTaskWhereInput = {
|
|
|
8310
8323
|
serviceNameNEQ?: InputMaybe<Scalars['String']>;
|
|
8311
8324
|
serviceNameNotIn?: InputMaybe<Scalars['String'][]>;
|
|
8312
8325
|
serviceNameNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
8326
|
+
/** shop_id field predicates */
|
|
8327
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
8328
|
+
shopIDGT?: InputMaybe<Scalars['ID']>;
|
|
8329
|
+
shopIDGTE?: InputMaybe<Scalars['ID']>;
|
|
8330
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
8331
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
8332
|
+
shopIDLT?: InputMaybe<Scalars['ID']>;
|
|
8333
|
+
shopIDLTE?: InputMaybe<Scalars['ID']>;
|
|
8334
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
8335
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
8336
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
8313
8337
|
/** status field predicates */
|
|
8314
8338
|
status?: InputMaybe<BackgroundTaskStatus>;
|
|
8315
8339
|
statusIn?: InputMaybe<BackgroundTaskStatus[]>;
|
|
@@ -9301,6 +9325,17 @@ type ColorSwatchWhereInput = {
|
|
|
9301
9325
|
labelNotIn?: InputMaybe<Scalars['String'][]>;
|
|
9302
9326
|
not?: InputMaybe<ColorSwatchWhereInput>;
|
|
9303
9327
|
or?: InputMaybe<ColorSwatchWhereInput[]>;
|
|
9328
|
+
/** shop_id field predicates */
|
|
9329
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
9330
|
+
shopIDGT?: InputMaybe<Scalars['ID']>;
|
|
9331
|
+
shopIDGTE?: InputMaybe<Scalars['ID']>;
|
|
9332
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
9333
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
9334
|
+
shopIDLT?: InputMaybe<Scalars['ID']>;
|
|
9335
|
+
shopIDLTE?: InputMaybe<Scalars['ID']>;
|
|
9336
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
9337
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
9338
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
9304
9339
|
/** updated_at field predicates */
|
|
9305
9340
|
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
9306
9341
|
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -9397,6 +9432,9 @@ type CreatePageSectionInput = {
|
|
|
9397
9432
|
libraryPosition?: InputMaybe<Scalars['Int']>;
|
|
9398
9433
|
name: Scalars['String'];
|
|
9399
9434
|
};
|
|
9435
|
+
type CreatePlatformOriginalTemplateInput = {
|
|
9436
|
+
content: Scalars['String'];
|
|
9437
|
+
};
|
|
9400
9438
|
type CreateSaleFunnelDiscountInput = {
|
|
9401
9439
|
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
9402
9440
|
objectBaseID: Scalars['String'];
|
|
@@ -9419,12 +9457,18 @@ type CreateSaleFunnelMetaInput = {
|
|
|
9419
9457
|
value: Scalars['String'];
|
|
9420
9458
|
};
|
|
9421
9459
|
type CreateSaleFunnelOfferInput = {
|
|
9460
|
+
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
9422
9461
|
name: Scalars['String'];
|
|
9423
9462
|
position?: InputMaybe<Scalars['Int']>;
|
|
9424
9463
|
saleFunnelID: Scalars['ID'];
|
|
9425
9464
|
themePageID?: InputMaybe<Scalars['ID']>;
|
|
9426
9465
|
type: SaleFunnelOfferType;
|
|
9427
9466
|
};
|
|
9467
|
+
type CreateSaleFunnelRedirectInput = {
|
|
9468
|
+
path: Scalars['String'];
|
|
9469
|
+
saleFunnelID: Scalars['ID'];
|
|
9470
|
+
target: Scalars['String'];
|
|
9471
|
+
};
|
|
9428
9472
|
type CreateSaleFunnelTriggerInput = {
|
|
9429
9473
|
name?: InputMaybe<Scalars['String']>;
|
|
9430
9474
|
saleFunnelID: Scalars['ID'];
|
|
@@ -10099,6 +10143,17 @@ type CustomSectionWhereInput = {
|
|
|
10099
10143
|
nameNotIn?: InputMaybe<Scalars['String'][]>;
|
|
10100
10144
|
not?: InputMaybe<CustomSectionWhereInput>;
|
|
10101
10145
|
or?: InputMaybe<CustomSectionWhereInput[]>;
|
|
10146
|
+
/** shop_id field predicates */
|
|
10147
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
10148
|
+
shopIDGT?: InputMaybe<Scalars['ID']>;
|
|
10149
|
+
shopIDGTE?: InputMaybe<Scalars['ID']>;
|
|
10150
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
10151
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
10152
|
+
shopIDLT?: InputMaybe<Scalars['ID']>;
|
|
10153
|
+
shopIDLTE?: InputMaybe<Scalars['ID']>;
|
|
10154
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
10155
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
10156
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
10102
10157
|
/** theme_id field predicates */
|
|
10103
10158
|
themeID?: InputMaybe<Scalars['ID']>;
|
|
10104
10159
|
themeIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
@@ -11553,12 +11608,10 @@ type FontWhereInput = {
|
|
|
11553
11608
|
filePathHasPrefix?: InputMaybe<Scalars['String']>;
|
|
11554
11609
|
filePathHasSuffix?: InputMaybe<Scalars['String']>;
|
|
11555
11610
|
filePathIn?: InputMaybe<Scalars['String'][]>;
|
|
11556
|
-
filePathIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
11557
11611
|
filePathLT?: InputMaybe<Scalars['String']>;
|
|
11558
11612
|
filePathLTE?: InputMaybe<Scalars['String']>;
|
|
11559
11613
|
filePathNEQ?: InputMaybe<Scalars['String']>;
|
|
11560
11614
|
filePathNotIn?: InputMaybe<Scalars['String'][]>;
|
|
11561
|
-
filePathNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
11562
11615
|
/** font_family field predicates */
|
|
11563
11616
|
fontFamily?: InputMaybe<Scalars['String']>;
|
|
11564
11617
|
fontFamilyContains?: InputMaybe<Scalars['String']>;
|
|
@@ -11859,6 +11912,13 @@ type GlobalSettingWhereInput = {
|
|
|
11859
11912
|
keyNotIn?: InputMaybe<Scalars['String'][]>;
|
|
11860
11913
|
not?: InputMaybe<GlobalSettingWhereInput>;
|
|
11861
11914
|
or?: InputMaybe<GlobalSettingWhereInput[]>;
|
|
11915
|
+
/** shop_id field predicates */
|
|
11916
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
11917
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
11918
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
11919
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
11920
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
11921
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
11862
11922
|
/** updated_at field predicates */
|
|
11863
11923
|
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
11864
11924
|
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -13477,6 +13537,8 @@ type Mutation = {
|
|
|
13477
13537
|
/** @deprecated Will be removed after 15/02/2023. Use `pageSectionUpdate` instead. */
|
|
13478
13538
|
pageSectionsBulkUpdate?: Maybe<Maybe<PageSection>[]>;
|
|
13479
13539
|
pageViewUp: Scalars['Boolean'];
|
|
13540
|
+
platformOriginalTemplateSync: PlatformOriginalTemplate;
|
|
13541
|
+
platformOriginalTemplateUpsert: PlatformOriginalTemplate;
|
|
13480
13542
|
publicShopLibraryPageCreate: ShopLibraryPage;
|
|
13481
13543
|
publicShopLibraryPageDelete: Scalars['Boolean'];
|
|
13482
13544
|
publicShopLibraryPageForceDelete: Scalars['Boolean'];
|
|
@@ -13507,6 +13569,9 @@ type Mutation = {
|
|
|
13507
13569
|
saleFunnelOfferPublish: Scalars['Boolean'];
|
|
13508
13570
|
saleFunnelOfferUnPublish: Scalars['Boolean'];
|
|
13509
13571
|
saleFunnelOfferUpdate?: Maybe<SaleFunnelOffer>;
|
|
13572
|
+
saleFunnelRedirectCreate?: Maybe<SaleFunnelRedirect>;
|
|
13573
|
+
saleFunnelRedirectDelete: Scalars['Boolean'];
|
|
13574
|
+
saleFunnelRedirectUpdate?: Maybe<SaleFunnelRedirect>;
|
|
13510
13575
|
saleFunnelTriggerCreate?: Maybe<SaleFunnelTrigger>;
|
|
13511
13576
|
saleFunnelTriggerDelete: Scalars['Boolean'];
|
|
13512
13577
|
saleFunnelUpdate?: Maybe<SaleFunnel>;
|
|
@@ -13744,10 +13809,10 @@ type MutationFileRestoreByBkFileKeyArgs = {
|
|
|
13744
13809
|
shopID: Scalars['ID'];
|
|
13745
13810
|
};
|
|
13746
13811
|
type MutationFileUploadArgs = {
|
|
13747
|
-
|
|
13812
|
+
background?: InputMaybe<Scalars['Boolean']>;
|
|
13748
13813
|
file: Scalars['Upload'];
|
|
13749
13814
|
shopID: Scalars['ID'];
|
|
13750
|
-
storage
|
|
13815
|
+
storage: FileStorage;
|
|
13751
13816
|
};
|
|
13752
13817
|
type MutationFileUploadByUrlArgs = {
|
|
13753
13818
|
plan: ShopifyPlan;
|
|
@@ -13876,6 +13941,13 @@ type MutationPageSectionsBulkUpdateArgs = {
|
|
|
13876
13941
|
type MutationPageViewUpArgs = {
|
|
13877
13942
|
pageHandle: Scalars['String'];
|
|
13878
13943
|
};
|
|
13944
|
+
type MutationPlatformOriginalTemplateSyncArgs = {
|
|
13945
|
+
themePageID: Scalars['ID'];
|
|
13946
|
+
};
|
|
13947
|
+
type MutationPlatformOriginalTemplateUpsertArgs = {
|
|
13948
|
+
input: CreatePlatformOriginalTemplateInput;
|
|
13949
|
+
themePageID: Scalars['ID'];
|
|
13950
|
+
};
|
|
13879
13951
|
type MutationPublicShopLibraryPageCreateArgs = {
|
|
13880
13952
|
input: CreateShopLibraryPageInput;
|
|
13881
13953
|
};
|
|
@@ -13972,6 +14044,16 @@ type MutationSaleFunnelOfferUpdateArgs = {
|
|
|
13972
14044
|
id: Scalars['ID'];
|
|
13973
14045
|
input: UpdateSaleFunnelOfferInput;
|
|
13974
14046
|
};
|
|
14047
|
+
type MutationSaleFunnelRedirectCreateArgs = {
|
|
14048
|
+
input: CreateSaleFunnelRedirectInput;
|
|
14049
|
+
};
|
|
14050
|
+
type MutationSaleFunnelRedirectDeleteArgs = {
|
|
14051
|
+
id: Scalars['ID'];
|
|
14052
|
+
};
|
|
14053
|
+
type MutationSaleFunnelRedirectUpdateArgs = {
|
|
14054
|
+
id: Scalars['ID'];
|
|
14055
|
+
input: UpdateSaleFunnelRedirectInput;
|
|
14056
|
+
};
|
|
13975
14057
|
type MutationSaleFunnelTriggerCreateArgs = {
|
|
13976
14058
|
input: CreateSaleFunnelTriggerInput;
|
|
13977
14059
|
};
|
|
@@ -14919,6 +15001,17 @@ type PageSectionWhereInput = {
|
|
|
14919
15001
|
nameNotIn?: InputMaybe<Scalars['String'][]>;
|
|
14920
15002
|
not?: InputMaybe<PageSectionWhereInput>;
|
|
14921
15003
|
or?: InputMaybe<PageSectionWhereInput[]>;
|
|
15004
|
+
/** shop_id field predicates */
|
|
15005
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
15006
|
+
shopIDGT?: InputMaybe<Scalars['ID']>;
|
|
15007
|
+
shopIDGTE?: InputMaybe<Scalars['ID']>;
|
|
15008
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
15009
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
15010
|
+
shopIDLT?: InputMaybe<Scalars['ID']>;
|
|
15011
|
+
shopIDLTE?: InputMaybe<Scalars['ID']>;
|
|
15012
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
15013
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
15014
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14922
15015
|
/** shop_library_id field predicates */
|
|
14923
15016
|
shopLibraryID?: InputMaybe<Scalars['ID']>;
|
|
14924
15017
|
shopLibraryIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
@@ -15094,6 +15187,82 @@ type PayloadInfo = {
|
|
|
15094
15187
|
type?: Maybe<Scalars['String']>;
|
|
15095
15188
|
};
|
|
15096
15189
|
type Platform = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
15190
|
+
type PlatformOriginalTemplate = {
|
|
15191
|
+
content: Scalars['String'];
|
|
15192
|
+
id: Scalars['ID'];
|
|
15193
|
+
themePage: ThemePage;
|
|
15194
|
+
};
|
|
15195
|
+
/**
|
|
15196
|
+
* PlatformOriginalTemplateWhereInput is used for filtering PlatformOriginalTemplate objects.
|
|
15197
|
+
* Input was generated by ent.
|
|
15198
|
+
*/
|
|
15199
|
+
type PlatformOriginalTemplateWhereInput = {
|
|
15200
|
+
and?: InputMaybe<PlatformOriginalTemplateWhereInput[]>;
|
|
15201
|
+
/** content field predicates */
|
|
15202
|
+
content?: InputMaybe<Scalars['String']>;
|
|
15203
|
+
contentContains?: InputMaybe<Scalars['String']>;
|
|
15204
|
+
contentContainsFold?: InputMaybe<Scalars['String']>;
|
|
15205
|
+
contentEqualFold?: InputMaybe<Scalars['String']>;
|
|
15206
|
+
contentGT?: InputMaybe<Scalars['String']>;
|
|
15207
|
+
contentGTE?: InputMaybe<Scalars['String']>;
|
|
15208
|
+
contentHasPrefix?: InputMaybe<Scalars['String']>;
|
|
15209
|
+
contentHasSuffix?: InputMaybe<Scalars['String']>;
|
|
15210
|
+
contentIn?: InputMaybe<Scalars['String'][]>;
|
|
15211
|
+
contentLT?: InputMaybe<Scalars['String']>;
|
|
15212
|
+
contentLTE?: InputMaybe<Scalars['String']>;
|
|
15213
|
+
contentNEQ?: InputMaybe<Scalars['String']>;
|
|
15214
|
+
contentNotIn?: InputMaybe<Scalars['String'][]>;
|
|
15215
|
+
/** created_at field predicates */
|
|
15216
|
+
createdAt?: InputMaybe<Scalars['Time']>;
|
|
15217
|
+
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
15218
|
+
createdAtGTE?: InputMaybe<Scalars['Time']>;
|
|
15219
|
+
createdAtIn?: InputMaybe<Scalars['Time'][]>;
|
|
15220
|
+
createdAtLT?: InputMaybe<Scalars['Time']>;
|
|
15221
|
+
createdAtLTE?: InputMaybe<Scalars['Time']>;
|
|
15222
|
+
createdAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
15223
|
+
createdAtNotIn?: InputMaybe<Scalars['Time'][]>;
|
|
15224
|
+
/** deleted_at field predicates */
|
|
15225
|
+
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
15226
|
+
deletedAtGT?: InputMaybe<Scalars['Time']>;
|
|
15227
|
+
deletedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
15228
|
+
deletedAtIn?: InputMaybe<Scalars['Time'][]>;
|
|
15229
|
+
deletedAtIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
15230
|
+
deletedAtLT?: InputMaybe<Scalars['Time']>;
|
|
15231
|
+
deletedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
15232
|
+
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
15233
|
+
deletedAtNotIn?: InputMaybe<Scalars['Time'][]>;
|
|
15234
|
+
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
15235
|
+
/** themePage edge predicates */
|
|
15236
|
+
hasThemePage?: InputMaybe<Scalars['Boolean']>;
|
|
15237
|
+
hasThemePageWith?: InputMaybe<ThemePageWhereInput[]>;
|
|
15238
|
+
/** id field predicates */
|
|
15239
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
15240
|
+
idGT?: InputMaybe<Scalars['ID']>;
|
|
15241
|
+
idGTE?: InputMaybe<Scalars['ID']>;
|
|
15242
|
+
idIn?: InputMaybe<Scalars['ID'][]>;
|
|
15243
|
+
idLT?: InputMaybe<Scalars['ID']>;
|
|
15244
|
+
idLTE?: InputMaybe<Scalars['ID']>;
|
|
15245
|
+
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
15246
|
+
idNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
15247
|
+
not?: InputMaybe<PlatformOriginalTemplateWhereInput>;
|
|
15248
|
+
or?: InputMaybe<PlatformOriginalTemplateWhereInput[]>;
|
|
15249
|
+
/** theme_page_id field predicates */
|
|
15250
|
+
themePageID?: InputMaybe<Scalars['ID']>;
|
|
15251
|
+
themePageIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
15252
|
+
themePageIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
15253
|
+
themePageIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
15254
|
+
themePageIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
15255
|
+
themePageIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
15256
|
+
/** updated_at field predicates */
|
|
15257
|
+
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
15258
|
+
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
15259
|
+
updatedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
15260
|
+
updatedAtIn?: InputMaybe<Scalars['Time'][]>;
|
|
15261
|
+
updatedAtLT?: InputMaybe<Scalars['Time']>;
|
|
15262
|
+
updatedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
15263
|
+
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
15264
|
+
updatedAtNotIn?: InputMaybe<Scalars['Time'][]>;
|
|
15265
|
+
};
|
|
15097
15266
|
type PlatformPage = {
|
|
15098
15267
|
author?: Maybe<Scalars['String']>;
|
|
15099
15268
|
baseID?: Maybe<Scalars['String']>;
|
|
@@ -17215,6 +17384,17 @@ type PublishedSaleFunnelDiscountWhereInput = {
|
|
|
17215
17384
|
objectTypeNEQ?: InputMaybe<PublishedSaleFunnelDiscountObjectType>;
|
|
17216
17385
|
objectTypeNotIn?: InputMaybe<PublishedSaleFunnelDiscountObjectType[]>;
|
|
17217
17386
|
or?: InputMaybe<PublishedSaleFunnelDiscountWhereInput[]>;
|
|
17387
|
+
/** position field predicates */
|
|
17388
|
+
position?: InputMaybe<Scalars['Int']>;
|
|
17389
|
+
positionGT?: InputMaybe<Scalars['Int']>;
|
|
17390
|
+
positionGTE?: InputMaybe<Scalars['Int']>;
|
|
17391
|
+
positionIn?: InputMaybe<Scalars['Int'][]>;
|
|
17392
|
+
positionIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
17393
|
+
positionLT?: InputMaybe<Scalars['Int']>;
|
|
17394
|
+
positionLTE?: InputMaybe<Scalars['Int']>;
|
|
17395
|
+
positionNEQ?: InputMaybe<Scalars['Int']>;
|
|
17396
|
+
positionNotIn?: InputMaybe<Scalars['Int'][]>;
|
|
17397
|
+
positionNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
17218
17398
|
/** sale_funnel_offer_id field predicates */
|
|
17219
17399
|
saleFunnelOfferID?: InputMaybe<Scalars['ID']>;
|
|
17220
17400
|
saleFunnelOfferIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
@@ -17317,6 +17497,9 @@ type PublishedSaleFunnelOfferWhereInput = {
|
|
|
17317
17497
|
idLTE?: InputMaybe<Scalars['ID']>;
|
|
17318
17498
|
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
17319
17499
|
idNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
17500
|
+
/** is_enabled field predicates */
|
|
17501
|
+
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
17502
|
+
isEnabledNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
17320
17503
|
/** name field predicates */
|
|
17321
17504
|
name?: InputMaybe<Scalars['String']>;
|
|
17322
17505
|
nameContains?: InputMaybe<Scalars['String']>;
|
|
@@ -18103,6 +18286,8 @@ type Query = {
|
|
|
18103
18286
|
saleFunnelDiscount?: Maybe<SaleFunnelDiscount>;
|
|
18104
18287
|
saleFunnelDiscounts?: Maybe<SaleFunnelDiscountConnection>;
|
|
18105
18288
|
saleFunnelMetas?: Maybe<SaleFunnelMetaConnection>;
|
|
18289
|
+
saleFunnelOffer?: Maybe<SaleFunnelOffer>;
|
|
18290
|
+
saleFunnelOffers?: Maybe<SaleFunnelOfferConnection>;
|
|
18106
18291
|
saleFunnels?: Maybe<SaleFunnelConnection>;
|
|
18107
18292
|
sectionCategories?: Maybe<Maybe<SectionCategory>[]>;
|
|
18108
18293
|
shopCurrentVersion?: Maybe<ShopCurrentVersion>;
|
|
@@ -18517,6 +18702,17 @@ type QuerySaleFunnelMetasArgs = {
|
|
|
18517
18702
|
last?: InputMaybe<Scalars['Int']>;
|
|
18518
18703
|
where?: InputMaybe<SaleFunnelMetaWhereInput>;
|
|
18519
18704
|
};
|
|
18705
|
+
type QuerySaleFunnelOfferArgs = {
|
|
18706
|
+
id: Scalars['ID'];
|
|
18707
|
+
};
|
|
18708
|
+
type QuerySaleFunnelOffersArgs = {
|
|
18709
|
+
after?: InputMaybe<Scalars['Cursor']>;
|
|
18710
|
+
before?: InputMaybe<Scalars['Cursor']>;
|
|
18711
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
18712
|
+
last?: InputMaybe<Scalars['Int']>;
|
|
18713
|
+
orderBy?: InputMaybe<SaleFunnelOfferOrder>;
|
|
18714
|
+
where?: InputMaybe<SaleFunnelOfferWhereInput>;
|
|
18715
|
+
};
|
|
18520
18716
|
type QuerySaleFunnelsArgs = {
|
|
18521
18717
|
after?: InputMaybe<Scalars['Cursor']>;
|
|
18522
18718
|
before?: InputMaybe<Scalars['Cursor']>;
|
|
@@ -18841,6 +19037,7 @@ type SaleFunnel = {
|
|
|
18841
19037
|
name?: Maybe<Scalars['String']>;
|
|
18842
19038
|
offers?: Maybe<SaleFunnelOfferConnection>;
|
|
18843
19039
|
pages?: Maybe<Maybe<ThemePage>[]>;
|
|
19040
|
+
redirects?: Maybe<Maybe<SaleFunnelRedirect>[]>;
|
|
18844
19041
|
status?: Maybe<SaleFunnelStatus>;
|
|
18845
19042
|
triggers?: Maybe<Maybe<SaleFunnelTrigger>[]>;
|
|
18846
19043
|
type?: Maybe<SaleFunnelType>;
|
|
@@ -18864,8 +19061,8 @@ type SaleFunnelOffersArgs = {
|
|
|
18864
19061
|
type SaleFunnelCampaign = {
|
|
18865
19062
|
completedAt?: Maybe<Scalars['Time']>;
|
|
18866
19063
|
createdAt?: Maybe<Scalars['Time']>;
|
|
19064
|
+
deletedAt?: Maybe<Scalars['Time']>;
|
|
18867
19065
|
id: Scalars['ID'];
|
|
18868
|
-
offers?: Maybe<Maybe<SaleFunnelOffer>[]>;
|
|
18869
19066
|
pausedAt?: Maybe<Scalars['Time']>;
|
|
18870
19067
|
saleFunnelID: Scalars['ID'];
|
|
18871
19068
|
startedAt?: Maybe<Scalars['Time']>;
|
|
@@ -18972,6 +19169,7 @@ type SaleFunnelConnection = {
|
|
|
18972
19169
|
};
|
|
18973
19170
|
type SaleFunnelDiscount = {
|
|
18974
19171
|
createdAt?: Maybe<Scalars['Time']>;
|
|
19172
|
+
deletedAt?: Maybe<Scalars['Time']>;
|
|
18975
19173
|
id: Scalars['ID'];
|
|
18976
19174
|
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
18977
19175
|
objectBaseID?: Maybe<Scalars['String']>;
|
|
@@ -19229,8 +19427,10 @@ type SaleFunnelMetaWhereInput = {
|
|
|
19229
19427
|
type SaleFunnelOffer = {
|
|
19230
19428
|
campaignID?: Maybe<Scalars['ID']>;
|
|
19231
19429
|
createdAt?: Maybe<Scalars['Time']>;
|
|
19430
|
+
deletedAt?: Maybe<Scalars['Time']>;
|
|
19232
19431
|
discounts?: Maybe<SaleFunnelDiscountConnection>;
|
|
19233
19432
|
id: Scalars['ID'];
|
|
19433
|
+
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
19234
19434
|
isWinner?: Maybe<Scalars['Boolean']>;
|
|
19235
19435
|
name?: Maybe<Scalars['String']>;
|
|
19236
19436
|
position?: Maybe<Scalars['Int']>;
|
|
@@ -19322,6 +19522,9 @@ type SaleFunnelOfferWhereInput = {
|
|
|
19322
19522
|
idLTE?: InputMaybe<Scalars['ID']>;
|
|
19323
19523
|
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
19324
19524
|
idNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
19525
|
+
/** is_enabled field predicates */
|
|
19526
|
+
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
19527
|
+
isEnabledNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
19325
19528
|
/** is_winner field predicates */
|
|
19326
19529
|
isWinner?: InputMaybe<Scalars['Boolean']>;
|
|
19327
19530
|
isWinnerIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -19399,6 +19602,112 @@ type SaleFunnelOrder = {
|
|
|
19399
19602
|
field?: InputMaybe<SaleFunnelOrderField>;
|
|
19400
19603
|
};
|
|
19401
19604
|
type SaleFunnelOrderField = 'ACTIVATED_AT' | 'CREATED_AT' | 'NAME' | 'STATUS' | 'TYPE' | 'UPDATED_AT';
|
|
19605
|
+
type SaleFunnelRedirect = {
|
|
19606
|
+
createdAt?: Maybe<Scalars['Time']>;
|
|
19607
|
+
id: Scalars['ID'];
|
|
19608
|
+
path?: Maybe<Scalars['String']>;
|
|
19609
|
+
target?: Maybe<Scalars['String']>;
|
|
19610
|
+
updatedAt?: Maybe<Scalars['Time']>;
|
|
19611
|
+
};
|
|
19612
|
+
/**
|
|
19613
|
+
* SaleFunnelRedirectWhereInput is used for filtering SaleFunnelRedirect objects.
|
|
19614
|
+
* Input was generated by ent.
|
|
19615
|
+
*/
|
|
19616
|
+
type SaleFunnelRedirectWhereInput = {
|
|
19617
|
+
and?: InputMaybe<SaleFunnelRedirectWhereInput[]>;
|
|
19618
|
+
/** base_id field predicates */
|
|
19619
|
+
baseID?: InputMaybe<Scalars['String']>;
|
|
19620
|
+
baseIDContains?: InputMaybe<Scalars['String']>;
|
|
19621
|
+
baseIDContainsFold?: InputMaybe<Scalars['String']>;
|
|
19622
|
+
baseIDEqualFold?: InputMaybe<Scalars['String']>;
|
|
19623
|
+
baseIDGT?: InputMaybe<Scalars['String']>;
|
|
19624
|
+
baseIDGTE?: InputMaybe<Scalars['String']>;
|
|
19625
|
+
baseIDHasPrefix?: InputMaybe<Scalars['String']>;
|
|
19626
|
+
baseIDHasSuffix?: InputMaybe<Scalars['String']>;
|
|
19627
|
+
baseIDIn?: InputMaybe<Scalars['String'][]>;
|
|
19628
|
+
baseIDLT?: InputMaybe<Scalars['String']>;
|
|
19629
|
+
baseIDLTE?: InputMaybe<Scalars['String']>;
|
|
19630
|
+
baseIDNEQ?: InputMaybe<Scalars['String']>;
|
|
19631
|
+
baseIDNotIn?: InputMaybe<Scalars['String'][]>;
|
|
19632
|
+
/** created_at field predicates */
|
|
19633
|
+
createdAt?: InputMaybe<Scalars['Time']>;
|
|
19634
|
+
createdAtGT?: InputMaybe<Scalars['Time']>;
|
|
19635
|
+
createdAtGTE?: InputMaybe<Scalars['Time']>;
|
|
19636
|
+
createdAtIn?: InputMaybe<Scalars['Time'][]>;
|
|
19637
|
+
createdAtLT?: InputMaybe<Scalars['Time']>;
|
|
19638
|
+
createdAtLTE?: InputMaybe<Scalars['Time']>;
|
|
19639
|
+
createdAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
19640
|
+
createdAtNotIn?: InputMaybe<Scalars['Time'][]>;
|
|
19641
|
+
/** deleted_at field predicates */
|
|
19642
|
+
deletedAt?: InputMaybe<Scalars['Time']>;
|
|
19643
|
+
deletedAtGT?: InputMaybe<Scalars['Time']>;
|
|
19644
|
+
deletedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
19645
|
+
deletedAtIn?: InputMaybe<Scalars['Time'][]>;
|
|
19646
|
+
deletedAtIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
19647
|
+
deletedAtLT?: InputMaybe<Scalars['Time']>;
|
|
19648
|
+
deletedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
19649
|
+
deletedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
19650
|
+
deletedAtNotIn?: InputMaybe<Scalars['Time'][]>;
|
|
19651
|
+
deletedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
19652
|
+
/** saleFunnel edge predicates */
|
|
19653
|
+
hasSaleFunnel?: InputMaybe<Scalars['Boolean']>;
|
|
19654
|
+
hasSaleFunnelWith?: InputMaybe<SaleFunnelWhereInput[]>;
|
|
19655
|
+
/** id field predicates */
|
|
19656
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
19657
|
+
idGT?: InputMaybe<Scalars['ID']>;
|
|
19658
|
+
idGTE?: InputMaybe<Scalars['ID']>;
|
|
19659
|
+
idIn?: InputMaybe<Scalars['ID'][]>;
|
|
19660
|
+
idLT?: InputMaybe<Scalars['ID']>;
|
|
19661
|
+
idLTE?: InputMaybe<Scalars['ID']>;
|
|
19662
|
+
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
19663
|
+
idNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
19664
|
+
not?: InputMaybe<SaleFunnelRedirectWhereInput>;
|
|
19665
|
+
or?: InputMaybe<SaleFunnelRedirectWhereInput[]>;
|
|
19666
|
+
/** path field predicates */
|
|
19667
|
+
path?: InputMaybe<Scalars['String']>;
|
|
19668
|
+
pathContains?: InputMaybe<Scalars['String']>;
|
|
19669
|
+
pathContainsFold?: InputMaybe<Scalars['String']>;
|
|
19670
|
+
pathEqualFold?: InputMaybe<Scalars['String']>;
|
|
19671
|
+
pathGT?: InputMaybe<Scalars['String']>;
|
|
19672
|
+
pathGTE?: InputMaybe<Scalars['String']>;
|
|
19673
|
+
pathHasPrefix?: InputMaybe<Scalars['String']>;
|
|
19674
|
+
pathHasSuffix?: InputMaybe<Scalars['String']>;
|
|
19675
|
+
pathIn?: InputMaybe<Scalars['String'][]>;
|
|
19676
|
+
pathLT?: InputMaybe<Scalars['String']>;
|
|
19677
|
+
pathLTE?: InputMaybe<Scalars['String']>;
|
|
19678
|
+
pathNEQ?: InputMaybe<Scalars['String']>;
|
|
19679
|
+
pathNotIn?: InputMaybe<Scalars['String'][]>;
|
|
19680
|
+
/** sale_funnel_id field predicates */
|
|
19681
|
+
saleFunnelID?: InputMaybe<Scalars['ID']>;
|
|
19682
|
+
saleFunnelIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
19683
|
+
saleFunnelIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
19684
|
+
saleFunnelIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
19685
|
+
saleFunnelIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
19686
|
+
saleFunnelIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
19687
|
+
/** target field predicates */
|
|
19688
|
+
target?: InputMaybe<Scalars['String']>;
|
|
19689
|
+
targetContains?: InputMaybe<Scalars['String']>;
|
|
19690
|
+
targetContainsFold?: InputMaybe<Scalars['String']>;
|
|
19691
|
+
targetEqualFold?: InputMaybe<Scalars['String']>;
|
|
19692
|
+
targetGT?: InputMaybe<Scalars['String']>;
|
|
19693
|
+
targetGTE?: InputMaybe<Scalars['String']>;
|
|
19694
|
+
targetHasPrefix?: InputMaybe<Scalars['String']>;
|
|
19695
|
+
targetHasSuffix?: InputMaybe<Scalars['String']>;
|
|
19696
|
+
targetIn?: InputMaybe<Scalars['String'][]>;
|
|
19697
|
+
targetLT?: InputMaybe<Scalars['String']>;
|
|
19698
|
+
targetLTE?: InputMaybe<Scalars['String']>;
|
|
19699
|
+
targetNEQ?: InputMaybe<Scalars['String']>;
|
|
19700
|
+
targetNotIn?: InputMaybe<Scalars['String'][]>;
|
|
19701
|
+
/** updated_at field predicates */
|
|
19702
|
+
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
19703
|
+
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
19704
|
+
updatedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
19705
|
+
updatedAtIn?: InputMaybe<Scalars['Time'][]>;
|
|
19706
|
+
updatedAtLT?: InputMaybe<Scalars['Time']>;
|
|
19707
|
+
updatedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
19708
|
+
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
19709
|
+
updatedAtNotIn?: InputMaybe<Scalars['Time'][]>;
|
|
19710
|
+
};
|
|
19402
19711
|
type SaleFunnelStatus = 'ACTIVE' | 'DRAFT';
|
|
19403
19712
|
type SaleFunnelTrigger = {
|
|
19404
19713
|
createdAt?: Maybe<Scalars['Time']>;
|
|
@@ -19552,6 +19861,9 @@ type SaleFunnelWhereInput = {
|
|
|
19552
19861
|
/** pages edge predicates */
|
|
19553
19862
|
hasPages?: InputMaybe<Scalars['Boolean']>;
|
|
19554
19863
|
hasPagesWith?: InputMaybe<ThemePageWhereInput[]>;
|
|
19864
|
+
/** redirects edge predicates */
|
|
19865
|
+
hasRedirects?: InputMaybe<Scalars['Boolean']>;
|
|
19866
|
+
hasRedirectsWith?: InputMaybe<SaleFunnelRedirectWhereInput[]>;
|
|
19555
19867
|
/** shop edge predicates */
|
|
19556
19868
|
hasShop?: InputMaybe<Scalars['Boolean']>;
|
|
19557
19869
|
hasShopWith?: InputMaybe<ShopWhereInput[]>;
|
|
@@ -19590,6 +19902,13 @@ type SaleFunnelWhereInput = {
|
|
|
19590
19902
|
nameNotIn?: InputMaybe<Scalars['String'][]>;
|
|
19591
19903
|
not?: InputMaybe<SaleFunnelWhereInput>;
|
|
19592
19904
|
or?: InputMaybe<SaleFunnelWhereInput[]>;
|
|
19905
|
+
/** shop_id field predicates */
|
|
19906
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
19907
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
19908
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
19909
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
19910
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
19911
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
19593
19912
|
/** status field predicates */
|
|
19594
19913
|
status?: InputMaybe<SaleFunnelStatus>;
|
|
19595
19914
|
statusIn?: InputMaybe<SaleFunnelStatus[]>;
|
|
@@ -19899,6 +20218,13 @@ type ShopDomainWhereInput = {
|
|
|
19899
20218
|
isPrimaryNEQ?: InputMaybe<Scalars['Boolean']>;
|
|
19900
20219
|
not?: InputMaybe<ShopDomainWhereInput>;
|
|
19901
20220
|
or?: InputMaybe<ShopDomainWhereInput[]>;
|
|
20221
|
+
/** shop_id field predicates */
|
|
20222
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
20223
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
20224
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
20225
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
20226
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
20227
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
19902
20228
|
/** updated_at field predicates */
|
|
19903
20229
|
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
19904
20230
|
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -20015,6 +20341,13 @@ type ShopLibraryPageWhereInput = {
|
|
|
20015
20341
|
nameNotIn?: InputMaybe<Scalars['String'][]>;
|
|
20016
20342
|
not?: InputMaybe<ShopLibraryPageWhereInput>;
|
|
20017
20343
|
or?: InputMaybe<ShopLibraryPageWhereInput[]>;
|
|
20344
|
+
/** shop_id field predicates */
|
|
20345
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
20346
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
20347
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
20348
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
20349
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
20350
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
20018
20351
|
/** type field predicates */
|
|
20019
20352
|
type?: InputMaybe<ShopLibraryPageType>;
|
|
20020
20353
|
typeIn?: InputMaybe<ShopLibraryPageType[]>;
|
|
@@ -20162,6 +20495,17 @@ type ShopLibrarySectionWhereInput = {
|
|
|
20162
20495
|
pageTypeIn?: InputMaybe<ShopLibrarySectionPageType[]>;
|
|
20163
20496
|
pageTypeNEQ?: InputMaybe<ShopLibrarySectionPageType>;
|
|
20164
20497
|
pageTypeNotIn?: InputMaybe<ShopLibrarySectionPageType[]>;
|
|
20498
|
+
/** shop_id field predicates */
|
|
20499
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
20500
|
+
shopIDGT?: InputMaybe<Scalars['ID']>;
|
|
20501
|
+
shopIDGTE?: InputMaybe<Scalars['ID']>;
|
|
20502
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
20503
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
20504
|
+
shopIDLT?: InputMaybe<Scalars['ID']>;
|
|
20505
|
+
shopIDLTE?: InputMaybe<Scalars['ID']>;
|
|
20506
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
20507
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
20508
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
20165
20509
|
/** thumbnail field predicates */
|
|
20166
20510
|
thumbnail?: InputMaybe<Scalars['String']>;
|
|
20167
20511
|
thumbnailContains?: InputMaybe<Scalars['String']>;
|
|
@@ -20283,6 +20627,17 @@ type ShopLibraryThemeWhereInput = {
|
|
|
20283
20627
|
originThemeIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
20284
20628
|
originThemeIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
20285
20629
|
originThemeIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
20630
|
+
/** shop_id field predicates */
|
|
20631
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
20632
|
+
shopIDGT?: InputMaybe<Scalars['ID']>;
|
|
20633
|
+
shopIDGTE?: InputMaybe<Scalars['ID']>;
|
|
20634
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
20635
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
20636
|
+
shopIDLT?: InputMaybe<Scalars['ID']>;
|
|
20637
|
+
shopIDLTE?: InputMaybe<Scalars['ID']>;
|
|
20638
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
20639
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
20640
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
20286
20641
|
/** thumbnail field predicates */
|
|
20287
20642
|
thumbnail?: InputMaybe<Scalars['String']>;
|
|
20288
20643
|
thumbnailContains?: InputMaybe<Scalars['String']>;
|
|
@@ -20377,6 +20732,13 @@ type ShopMetaWhereInput = {
|
|
|
20377
20732
|
keyNotIn?: InputMaybe<Scalars['String'][]>;
|
|
20378
20733
|
not?: InputMaybe<ShopMetaWhereInput>;
|
|
20379
20734
|
or?: InputMaybe<ShopMetaWhereInput[]>;
|
|
20735
|
+
/** shop_id field predicates */
|
|
20736
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
20737
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
20738
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
20739
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
20740
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
20741
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
20380
20742
|
/** updated_at field predicates */
|
|
20381
20743
|
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
20382
20744
|
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -20477,6 +20839,15 @@ type ShopPageCounterWhereInput = {
|
|
|
20477
20839
|
pageTypeIn?: InputMaybe<ShopPageCounterPageType[]>;
|
|
20478
20840
|
pageTypeNEQ?: InputMaybe<ShopPageCounterPageType>;
|
|
20479
20841
|
pageTypeNotIn?: InputMaybe<ShopPageCounterPageType[]>;
|
|
20842
|
+
/** platform_default field predicates */
|
|
20843
|
+
platformDefault?: InputMaybe<Scalars['Int']>;
|
|
20844
|
+
platformDefaultGT?: InputMaybe<Scalars['Int']>;
|
|
20845
|
+
platformDefaultGTE?: InputMaybe<Scalars['Int']>;
|
|
20846
|
+
platformDefaultIn?: InputMaybe<Scalars['Int'][]>;
|
|
20847
|
+
platformDefaultLT?: InputMaybe<Scalars['Int']>;
|
|
20848
|
+
platformDefaultLTE?: InputMaybe<Scalars['Int']>;
|
|
20849
|
+
platformDefaultNEQ?: InputMaybe<Scalars['Int']>;
|
|
20850
|
+
platformDefaultNotIn?: InputMaybe<Scalars['Int'][]>;
|
|
20480
20851
|
/** platform_domain field predicates */
|
|
20481
20852
|
platformDomain?: InputMaybe<Scalars['String']>;
|
|
20482
20853
|
platformDomainContains?: InputMaybe<Scalars['String']>;
|
|
@@ -20491,6 +20862,17 @@ type ShopPageCounterWhereInput = {
|
|
|
20491
20862
|
platformDomainLTE?: InputMaybe<Scalars['String']>;
|
|
20492
20863
|
platformDomainNEQ?: InputMaybe<Scalars['String']>;
|
|
20493
20864
|
platformDomainNotIn?: InputMaybe<Scalars['String'][]>;
|
|
20865
|
+
/** shop_id field predicates */
|
|
20866
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
20867
|
+
shopIDGT?: InputMaybe<Scalars['ID']>;
|
|
20868
|
+
shopIDGTE?: InputMaybe<Scalars['ID']>;
|
|
20869
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
20870
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
20871
|
+
shopIDLT?: InputMaybe<Scalars['ID']>;
|
|
20872
|
+
shopIDLTE?: InputMaybe<Scalars['ID']>;
|
|
20873
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
20874
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
20875
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
20494
20876
|
/** updated_at field predicates */
|
|
20495
20877
|
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
20496
20878
|
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -20639,6 +21021,13 @@ type ShopPlatformWhereInput = {
|
|
|
20639
21021
|
redirectURLNEQ?: InputMaybe<Scalars['String']>;
|
|
20640
21022
|
redirectURLNotIn?: InputMaybe<Scalars['String'][]>;
|
|
20641
21023
|
redirectURLNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
21024
|
+
/** shop_id field predicates */
|
|
21025
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
21026
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
21027
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
21028
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
21029
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
21030
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
20642
21031
|
/** status field predicates */
|
|
20643
21032
|
status?: InputMaybe<ShopPlatformStatus>;
|
|
20644
21033
|
statusIn?: InputMaybe<ShopPlatformStatus[]>;
|
|
@@ -21047,6 +21436,13 @@ type StatConvertLayoutWhereInput = {
|
|
|
21047
21436
|
monthNotIn?: InputMaybe<Scalars['Int'][]>;
|
|
21048
21437
|
not?: InputMaybe<StatConvertLayoutWhereInput>;
|
|
21049
21438
|
or?: InputMaybe<StatConvertLayoutWhereInput[]>;
|
|
21439
|
+
/** shop_id field predicates */
|
|
21440
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
21441
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
21442
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
21443
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
21444
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
21445
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
21050
21446
|
/** updated_at field predicates */
|
|
21051
21447
|
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
21052
21448
|
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -21107,6 +21503,13 @@ type StatPageViewWhereInput = {
|
|
|
21107
21503
|
idNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
21108
21504
|
not?: InputMaybe<StatPageViewWhereInput>;
|
|
21109
21505
|
or?: InputMaybe<StatPageViewWhereInput[]>;
|
|
21506
|
+
/** shop_id field predicates */
|
|
21507
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
21508
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
21509
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
21510
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
21511
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
21512
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
21110
21513
|
/** updated_at field predicates */
|
|
21111
21514
|
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
21112
21515
|
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -21229,6 +21632,13 @@ type SurveyFeedbackWhereInput = {
|
|
|
21229
21632
|
idNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
21230
21633
|
not?: InputMaybe<SurveyFeedbackWhereInput>;
|
|
21231
21634
|
or?: InputMaybe<SurveyFeedbackWhereInput[]>;
|
|
21635
|
+
/** shop_id field predicates */
|
|
21636
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
21637
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
21638
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
21639
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
21640
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
21641
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
21232
21642
|
/** status field predicates */
|
|
21233
21643
|
status?: InputMaybe<Scalars['String']>;
|
|
21234
21644
|
statusContains?: InputMaybe<Scalars['String']>;
|
|
@@ -21727,9 +22137,11 @@ type ThemePage = {
|
|
|
21727
22137
|
name: Scalars['String'];
|
|
21728
22138
|
offer?: Maybe<SaleFunnelOffer>;
|
|
21729
22139
|
pageSections?: Maybe<Maybe<PageSection>[]>;
|
|
22140
|
+
platformOriginalTemplate?: Maybe<PlatformOriginalTemplate>;
|
|
21730
22141
|
publishedAt?: Maybe<Scalars['Time']>;
|
|
21731
22142
|
saleFunnels?: Maybe<Maybe<SaleFunnel>[]>;
|
|
21732
22143
|
sectionPosition?: Maybe<Scalars['String'][]>;
|
|
22144
|
+
/** @deprecated Use `platformOriginalTemplate` instead. */
|
|
21733
22145
|
shopifyOriginalContent?: Maybe<Scalars['String']>;
|
|
21734
22146
|
splitPercentage?: Maybe<Scalars['Float']>;
|
|
21735
22147
|
status?: Maybe<ThemePageStatus>;
|
|
@@ -22080,6 +22492,13 @@ type ThemePageOnlineStoreDataWhereInput = {
|
|
|
22080
22492
|
idNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
22081
22493
|
not?: InputMaybe<ThemePageOnlineStoreDataWhereInput>;
|
|
22082
22494
|
or?: InputMaybe<ThemePageOnlineStoreDataWhereInput[]>;
|
|
22495
|
+
/** shop_id field predicates */
|
|
22496
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
22497
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
22498
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
22499
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
22500
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
22501
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
22083
22502
|
/** theme_page_id field predicates */
|
|
22084
22503
|
themePageID?: InputMaybe<Scalars['ID']>;
|
|
22085
22504
|
themePageIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
@@ -22201,6 +22620,13 @@ type ThemePageVersionWhereInput = {
|
|
|
22201
22620
|
nameNotIn?: InputMaybe<Scalars['String'][]>;
|
|
22202
22621
|
not?: InputMaybe<ThemePageVersionWhereInput>;
|
|
22203
22622
|
or?: InputMaybe<ThemePageVersionWhereInput[]>;
|
|
22623
|
+
/** shop_id field predicates */
|
|
22624
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
22625
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
22626
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
22627
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
22628
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
22629
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
22204
22630
|
/** theme_page_id field predicates */
|
|
22205
22631
|
themePageID?: InputMaybe<Scalars['ID']>;
|
|
22206
22632
|
themePageIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
@@ -22290,6 +22716,9 @@ type ThemePageWhereInput = {
|
|
|
22290
22716
|
/** pageSections edge predicates */
|
|
22291
22717
|
hasPageSections?: InputMaybe<Scalars['Boolean']>;
|
|
22292
22718
|
hasPageSectionsWith?: InputMaybe<PageSectionWhereInput[]>;
|
|
22719
|
+
/** platformOriginalTemplate edge predicates */
|
|
22720
|
+
hasPlatformOriginalTemplate?: InputMaybe<Scalars['Boolean']>;
|
|
22721
|
+
hasPlatformOriginalTemplateWith?: InputMaybe<PlatformOriginalTemplateWhereInput[]>;
|
|
22293
22722
|
/** saleFunnels edge predicates */
|
|
22294
22723
|
hasSaleFunnels?: InputMaybe<Scalars['Boolean']>;
|
|
22295
22724
|
hasSaleFunnelsWith?: InputMaybe<SaleFunnelWhereInput[]>;
|
|
@@ -22401,6 +22830,13 @@ type ThemePageWhereInput = {
|
|
|
22401
22830
|
publishedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
22402
22831
|
publishedAtNotIn?: InputMaybe<Scalars['Time'][]>;
|
|
22403
22832
|
publishedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
22833
|
+
/** shop_id field predicates */
|
|
22834
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
22835
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
22836
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
22837
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
22838
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
22839
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
22404
22840
|
/** split_percentage field predicates */
|
|
22405
22841
|
splitPercentage?: InputMaybe<Scalars['Float']>;
|
|
22406
22842
|
splitPercentageGT?: InputMaybe<Scalars['Float']>;
|
|
@@ -22693,6 +23129,13 @@ type ThemeSectionWhereInput = {
|
|
|
22693
23129
|
publishedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
22694
23130
|
publishedAtNotIn?: InputMaybe<Scalars['Time'][]>;
|
|
22695
23131
|
publishedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
23132
|
+
/** shop_id field predicates */
|
|
23133
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
23134
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
23135
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
23136
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
23137
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
23138
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
22696
23139
|
/** status field predicates */
|
|
22697
23140
|
status?: InputMaybe<ThemeSectionStatus>;
|
|
22698
23141
|
statusIn?: InputMaybe<ThemeSectionStatus[]>;
|
|
@@ -22912,6 +23355,13 @@ type ThemeStyleWhereInput = {
|
|
|
22912
23355
|
nameNotIn?: InputMaybe<Scalars['String'][]>;
|
|
22913
23356
|
not?: InputMaybe<ThemeStyleWhereInput>;
|
|
22914
23357
|
or?: InputMaybe<ThemeStyleWhereInput[]>;
|
|
23358
|
+
/** shop_id field predicates */
|
|
23359
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
23360
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
23361
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
23362
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
23363
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
23364
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
22915
23365
|
/** theme_id field predicates */
|
|
22916
23366
|
themeID?: InputMaybe<Scalars['ID']>;
|
|
22917
23367
|
themeIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
@@ -23033,6 +23483,13 @@ type ThemeWhereInput = {
|
|
|
23033
23483
|
previewURLNEQ?: InputMaybe<Scalars['String']>;
|
|
23034
23484
|
previewURLNotIn?: InputMaybe<Scalars['String'][]>;
|
|
23035
23485
|
previewURLNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
23486
|
+
/** shop_id field predicates */
|
|
23487
|
+
shopID?: InputMaybe<Scalars['ID']>;
|
|
23488
|
+
shopIDIn?: InputMaybe<Scalars['ID'][]>;
|
|
23489
|
+
shopIDIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
23490
|
+
shopIDNEQ?: InputMaybe<Scalars['ID']>;
|
|
23491
|
+
shopIDNotIn?: InputMaybe<Scalars['ID'][]>;
|
|
23492
|
+
shopIDNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
23036
23493
|
/** thumbnail field predicates */
|
|
23037
23494
|
thumbnail?: InputMaybe<Scalars['String']>;
|
|
23038
23495
|
thumbnailContains?: InputMaybe<Scalars['String']>;
|
|
@@ -23236,11 +23693,16 @@ type UpdateSaleFunnelInput = {
|
|
|
23236
23693
|
type?: InputMaybe<SaleFunnelType>;
|
|
23237
23694
|
};
|
|
23238
23695
|
type UpdateSaleFunnelOfferInput = {
|
|
23696
|
+
isEnabled?: InputMaybe<Scalars['Boolean']>;
|
|
23239
23697
|
name?: InputMaybe<Scalars['String']>;
|
|
23240
23698
|
position?: InputMaybe<Scalars['Int']>;
|
|
23241
23699
|
themePageID?: InputMaybe<Scalars['ID']>;
|
|
23242
23700
|
type?: InputMaybe<SaleFunnelOfferType>;
|
|
23243
23701
|
};
|
|
23702
|
+
type UpdateSaleFunnelRedirectInput = {
|
|
23703
|
+
path?: InputMaybe<Scalars['String']>;
|
|
23704
|
+
target?: InputMaybe<Scalars['String']>;
|
|
23705
|
+
};
|
|
23244
23706
|
type UpdateShopInput = {
|
|
23245
23707
|
handle?: InputMaybe<Scalars['String']>;
|
|
23246
23708
|
shopName?: InputMaybe<Scalars['String']>;
|
|
@@ -23614,10 +24076,12 @@ type appAPI_CreateLibrarySaleFunnelMetaInput = CreateLibrarySaleFunnelMetaInput;
|
|
|
23614
24076
|
type appAPI_CreateLibrarySectionTagInput = CreateLibrarySectionTagInput;
|
|
23615
24077
|
type appAPI_CreateLibraryTemplateTagInput = CreateLibraryTemplateTagInput;
|
|
23616
24078
|
type appAPI_CreatePageSectionInput = CreatePageSectionInput;
|
|
24079
|
+
type appAPI_CreatePlatformOriginalTemplateInput = CreatePlatformOriginalTemplateInput;
|
|
23617
24080
|
type appAPI_CreateSaleFunnelDiscountInput = CreateSaleFunnelDiscountInput;
|
|
23618
24081
|
type appAPI_CreateSaleFunnelInput = CreateSaleFunnelInput;
|
|
23619
24082
|
type appAPI_CreateSaleFunnelMetaInput = CreateSaleFunnelMetaInput;
|
|
23620
24083
|
type appAPI_CreateSaleFunnelOfferInput = CreateSaleFunnelOfferInput;
|
|
24084
|
+
type appAPI_CreateSaleFunnelRedirectInput = CreateSaleFunnelRedirectInput;
|
|
23621
24085
|
type appAPI_CreateSaleFunnelTriggerInput = CreateSaleFunnelTriggerInput;
|
|
23622
24086
|
type appAPI_CreateShopInput = CreateShopInput;
|
|
23623
24087
|
type appAPI_CreateShopLibraryPageInput = CreateShopLibraryPageInput;
|
|
@@ -23841,6 +24305,8 @@ type appAPI_MutationPageSectionUpdateArgs = MutationPageSectionUpdateArgs;
|
|
|
23841
24305
|
type appAPI_MutationPageSectionsBulkDeleteArgs = MutationPageSectionsBulkDeleteArgs;
|
|
23842
24306
|
type appAPI_MutationPageSectionsBulkUpdateArgs = MutationPageSectionsBulkUpdateArgs;
|
|
23843
24307
|
type appAPI_MutationPageViewUpArgs = MutationPageViewUpArgs;
|
|
24308
|
+
type appAPI_MutationPlatformOriginalTemplateSyncArgs = MutationPlatformOriginalTemplateSyncArgs;
|
|
24309
|
+
type appAPI_MutationPlatformOriginalTemplateUpsertArgs = MutationPlatformOriginalTemplateUpsertArgs;
|
|
23844
24310
|
type appAPI_MutationPublicShopLibraryPageCreateArgs = MutationPublicShopLibraryPageCreateArgs;
|
|
23845
24311
|
type appAPI_MutationPublicShopLibraryPageDeleteArgs = MutationPublicShopLibraryPageDeleteArgs;
|
|
23846
24312
|
type appAPI_MutationPublicShopLibraryPageForceDeleteArgs = MutationPublicShopLibraryPageForceDeleteArgs;
|
|
@@ -23871,6 +24337,9 @@ type appAPI_MutationSaleFunnelOfferDeleteArgs = MutationSaleFunnelOfferDeleteArg
|
|
|
23871
24337
|
type appAPI_MutationSaleFunnelOfferPublishArgs = MutationSaleFunnelOfferPublishArgs;
|
|
23872
24338
|
type appAPI_MutationSaleFunnelOfferUnPublishArgs = MutationSaleFunnelOfferUnPublishArgs;
|
|
23873
24339
|
type appAPI_MutationSaleFunnelOfferUpdateArgs = MutationSaleFunnelOfferUpdateArgs;
|
|
24340
|
+
type appAPI_MutationSaleFunnelRedirectCreateArgs = MutationSaleFunnelRedirectCreateArgs;
|
|
24341
|
+
type appAPI_MutationSaleFunnelRedirectDeleteArgs = MutationSaleFunnelRedirectDeleteArgs;
|
|
24342
|
+
type appAPI_MutationSaleFunnelRedirectUpdateArgs = MutationSaleFunnelRedirectUpdateArgs;
|
|
23874
24343
|
type appAPI_MutationSaleFunnelTriggerCreateArgs = MutationSaleFunnelTriggerCreateArgs;
|
|
23875
24344
|
type appAPI_MutationSaleFunnelTriggerDeleteArgs = MutationSaleFunnelTriggerDeleteArgs;
|
|
23876
24345
|
type appAPI_MutationSaleFunnelUpdateArgs = MutationSaleFunnelUpdateArgs;
|
|
@@ -24021,6 +24490,8 @@ type appAPI_PageSectionWhereInput = PageSectionWhereInput;
|
|
|
24021
24490
|
type appAPI_PageWhereInput = PageWhereInput;
|
|
24022
24491
|
type appAPI_PayloadInfo = PayloadInfo;
|
|
24023
24492
|
type appAPI_Platform = Platform;
|
|
24493
|
+
type appAPI_PlatformOriginalTemplate = PlatformOriginalTemplate;
|
|
24494
|
+
type appAPI_PlatformOriginalTemplateWhereInput = PlatformOriginalTemplateWhereInput;
|
|
24024
24495
|
type appAPI_PlatformPage = PlatformPage;
|
|
24025
24496
|
type appAPI_PlatformPageConnection = PlatformPageConnection;
|
|
24026
24497
|
type appAPI_PlatformPageEdge = PlatformPageEdge;
|
|
@@ -24175,6 +24646,8 @@ type appAPI_QuerySaleFunnelCampaignArgs = QuerySaleFunnelCampaignArgs;
|
|
|
24175
24646
|
type appAPI_QuerySaleFunnelDiscountArgs = QuerySaleFunnelDiscountArgs;
|
|
24176
24647
|
type appAPI_QuerySaleFunnelDiscountsArgs = QuerySaleFunnelDiscountsArgs;
|
|
24177
24648
|
type appAPI_QuerySaleFunnelMetasArgs = QuerySaleFunnelMetasArgs;
|
|
24649
|
+
type appAPI_QuerySaleFunnelOfferArgs = QuerySaleFunnelOfferArgs;
|
|
24650
|
+
type appAPI_QuerySaleFunnelOffersArgs = QuerySaleFunnelOffersArgs;
|
|
24178
24651
|
type appAPI_QuerySaleFunnelsArgs = QuerySaleFunnelsArgs;
|
|
24179
24652
|
type appAPI_QuerySectionCategoriesArgs = QuerySectionCategoriesArgs;
|
|
24180
24653
|
type appAPI_QueryShopDeploymentEventsArgs = QueryShopDeploymentEventsArgs;
|
|
@@ -24264,6 +24737,8 @@ type appAPI_SaleFunnelOfferWhereInput = SaleFunnelOfferWhereInput;
|
|
|
24264
24737
|
type appAPI_SaleFunnelOffersArgs = SaleFunnelOffersArgs;
|
|
24265
24738
|
type appAPI_SaleFunnelOrder = SaleFunnelOrder;
|
|
24266
24739
|
type appAPI_SaleFunnelOrderField = SaleFunnelOrderField;
|
|
24740
|
+
type appAPI_SaleFunnelRedirect = SaleFunnelRedirect;
|
|
24741
|
+
type appAPI_SaleFunnelRedirectWhereInput = SaleFunnelRedirectWhereInput;
|
|
24267
24742
|
type appAPI_SaleFunnelStatus = SaleFunnelStatus;
|
|
24268
24743
|
type appAPI_SaleFunnelTrigger = SaleFunnelTrigger;
|
|
24269
24744
|
type appAPI_SaleFunnelTriggerWhereInput = SaleFunnelTriggerWhereInput;
|
|
@@ -24441,6 +24916,7 @@ type appAPI_UpdateSaleFunnelCampaignInput = UpdateSaleFunnelCampaignInput;
|
|
|
24441
24916
|
type appAPI_UpdateSaleFunnelDiscountInput = UpdateSaleFunnelDiscountInput;
|
|
24442
24917
|
type appAPI_UpdateSaleFunnelInput = UpdateSaleFunnelInput;
|
|
24443
24918
|
type appAPI_UpdateSaleFunnelOfferInput = UpdateSaleFunnelOfferInput;
|
|
24919
|
+
type appAPI_UpdateSaleFunnelRedirectInput = UpdateSaleFunnelRedirectInput;
|
|
24444
24920
|
type appAPI_UpdateShopInput = UpdateShopInput;
|
|
24445
24921
|
type appAPI_UpdateShopLibraryPageInput = UpdateShopLibraryPageInput;
|
|
24446
24922
|
type appAPI_UpdateShopLibrarySectionInput = UpdateShopLibrarySectionInput;
|
|
@@ -24537,10 +25013,12 @@ declare namespace appAPI {
|
|
|
24537
25013
|
appAPI_CreateLibrarySectionTagInput as CreateLibrarySectionTagInput,
|
|
24538
25014
|
appAPI_CreateLibraryTemplateTagInput as CreateLibraryTemplateTagInput,
|
|
24539
25015
|
appAPI_CreatePageSectionInput as CreatePageSectionInput,
|
|
25016
|
+
appAPI_CreatePlatformOriginalTemplateInput as CreatePlatformOriginalTemplateInput,
|
|
24540
25017
|
appAPI_CreateSaleFunnelDiscountInput as CreateSaleFunnelDiscountInput,
|
|
24541
25018
|
appAPI_CreateSaleFunnelInput as CreateSaleFunnelInput,
|
|
24542
25019
|
appAPI_CreateSaleFunnelMetaInput as CreateSaleFunnelMetaInput,
|
|
24543
25020
|
appAPI_CreateSaleFunnelOfferInput as CreateSaleFunnelOfferInput,
|
|
25021
|
+
appAPI_CreateSaleFunnelRedirectInput as CreateSaleFunnelRedirectInput,
|
|
24544
25022
|
appAPI_CreateSaleFunnelTriggerInput as CreateSaleFunnelTriggerInput,
|
|
24545
25023
|
appAPI_CreateShopInput as CreateShopInput,
|
|
24546
25024
|
appAPI_CreateShopLibraryPageInput as CreateShopLibraryPageInput,
|
|
@@ -24764,6 +25242,8 @@ declare namespace appAPI {
|
|
|
24764
25242
|
appAPI_MutationPageSectionsBulkDeleteArgs as MutationPageSectionsBulkDeleteArgs,
|
|
24765
25243
|
appAPI_MutationPageSectionsBulkUpdateArgs as MutationPageSectionsBulkUpdateArgs,
|
|
24766
25244
|
appAPI_MutationPageViewUpArgs as MutationPageViewUpArgs,
|
|
25245
|
+
appAPI_MutationPlatformOriginalTemplateSyncArgs as MutationPlatformOriginalTemplateSyncArgs,
|
|
25246
|
+
appAPI_MutationPlatformOriginalTemplateUpsertArgs as MutationPlatformOriginalTemplateUpsertArgs,
|
|
24767
25247
|
appAPI_MutationPublicShopLibraryPageCreateArgs as MutationPublicShopLibraryPageCreateArgs,
|
|
24768
25248
|
appAPI_MutationPublicShopLibraryPageDeleteArgs as MutationPublicShopLibraryPageDeleteArgs,
|
|
24769
25249
|
appAPI_MutationPublicShopLibraryPageForceDeleteArgs as MutationPublicShopLibraryPageForceDeleteArgs,
|
|
@@ -24794,6 +25274,9 @@ declare namespace appAPI {
|
|
|
24794
25274
|
appAPI_MutationSaleFunnelOfferPublishArgs as MutationSaleFunnelOfferPublishArgs,
|
|
24795
25275
|
appAPI_MutationSaleFunnelOfferUnPublishArgs as MutationSaleFunnelOfferUnPublishArgs,
|
|
24796
25276
|
appAPI_MutationSaleFunnelOfferUpdateArgs as MutationSaleFunnelOfferUpdateArgs,
|
|
25277
|
+
appAPI_MutationSaleFunnelRedirectCreateArgs as MutationSaleFunnelRedirectCreateArgs,
|
|
25278
|
+
appAPI_MutationSaleFunnelRedirectDeleteArgs as MutationSaleFunnelRedirectDeleteArgs,
|
|
25279
|
+
appAPI_MutationSaleFunnelRedirectUpdateArgs as MutationSaleFunnelRedirectUpdateArgs,
|
|
24797
25280
|
appAPI_MutationSaleFunnelTriggerCreateArgs as MutationSaleFunnelTriggerCreateArgs,
|
|
24798
25281
|
appAPI_MutationSaleFunnelTriggerDeleteArgs as MutationSaleFunnelTriggerDeleteArgs,
|
|
24799
25282
|
appAPI_MutationSaleFunnelUpdateArgs as MutationSaleFunnelUpdateArgs,
|
|
@@ -24944,6 +25427,8 @@ declare namespace appAPI {
|
|
|
24944
25427
|
appAPI_PageWhereInput as PageWhereInput,
|
|
24945
25428
|
appAPI_PayloadInfo as PayloadInfo,
|
|
24946
25429
|
appAPI_Platform as Platform,
|
|
25430
|
+
appAPI_PlatformOriginalTemplate as PlatformOriginalTemplate,
|
|
25431
|
+
appAPI_PlatformOriginalTemplateWhereInput as PlatformOriginalTemplateWhereInput,
|
|
24947
25432
|
appAPI_PlatformPage as PlatformPage,
|
|
24948
25433
|
appAPI_PlatformPageConnection as PlatformPageConnection,
|
|
24949
25434
|
appAPI_PlatformPageEdge as PlatformPageEdge,
|
|
@@ -25098,6 +25583,8 @@ declare namespace appAPI {
|
|
|
25098
25583
|
appAPI_QuerySaleFunnelDiscountArgs as QuerySaleFunnelDiscountArgs,
|
|
25099
25584
|
appAPI_QuerySaleFunnelDiscountsArgs as QuerySaleFunnelDiscountsArgs,
|
|
25100
25585
|
appAPI_QuerySaleFunnelMetasArgs as QuerySaleFunnelMetasArgs,
|
|
25586
|
+
appAPI_QuerySaleFunnelOfferArgs as QuerySaleFunnelOfferArgs,
|
|
25587
|
+
appAPI_QuerySaleFunnelOffersArgs as QuerySaleFunnelOffersArgs,
|
|
25101
25588
|
appAPI_QuerySaleFunnelsArgs as QuerySaleFunnelsArgs,
|
|
25102
25589
|
appAPI_QuerySectionCategoriesArgs as QuerySectionCategoriesArgs,
|
|
25103
25590
|
appAPI_QueryShopDeploymentEventsArgs as QueryShopDeploymentEventsArgs,
|
|
@@ -25187,6 +25674,8 @@ declare namespace appAPI {
|
|
|
25187
25674
|
appAPI_SaleFunnelOffersArgs as SaleFunnelOffersArgs,
|
|
25188
25675
|
appAPI_SaleFunnelOrder as SaleFunnelOrder,
|
|
25189
25676
|
appAPI_SaleFunnelOrderField as SaleFunnelOrderField,
|
|
25677
|
+
appAPI_SaleFunnelRedirect as SaleFunnelRedirect,
|
|
25678
|
+
appAPI_SaleFunnelRedirectWhereInput as SaleFunnelRedirectWhereInput,
|
|
25190
25679
|
appAPI_SaleFunnelStatus as SaleFunnelStatus,
|
|
25191
25680
|
appAPI_SaleFunnelTrigger as SaleFunnelTrigger,
|
|
25192
25681
|
appAPI_SaleFunnelTriggerWhereInput as SaleFunnelTriggerWhereInput,
|
|
@@ -25364,6 +25853,7 @@ declare namespace appAPI {
|
|
|
25364
25853
|
appAPI_UpdateSaleFunnelDiscountInput as UpdateSaleFunnelDiscountInput,
|
|
25365
25854
|
appAPI_UpdateSaleFunnelInput as UpdateSaleFunnelInput,
|
|
25366
25855
|
appAPI_UpdateSaleFunnelOfferInput as UpdateSaleFunnelOfferInput,
|
|
25856
|
+
appAPI_UpdateSaleFunnelRedirectInput as UpdateSaleFunnelRedirectInput,
|
|
25367
25857
|
appAPI_UpdateShopInput as UpdateShopInput,
|
|
25368
25858
|
appAPI_UpdateShopLibraryPageInput as UpdateShopLibraryPageInput,
|
|
25369
25859
|
appAPI_UpdateShopLibrarySectionInput as UpdateShopLibrarySectionInput,
|