@gem-sdk/core 1.14.0-dev.804 → 1.14.0-dev.807

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