@gem-sdk/core 11.2.0 → 12.0.0-dev.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/dist/cjs/components/constant.js +1 -1
  2. package/dist/cjs/contexts/PageContext.js +1 -1
  3. package/dist/cjs/contexts/ProductContext.js +1 -1
  4. package/dist/cjs/graphql/fragments/product-variants-with-selling-plans-select.generated.js +40 -0
  5. package/dist/cjs/graphql/queries/product-variant-with-selling-plans.generated.js +25 -0
  6. package/dist/cjs/graphql/queries/products-with-selling-plans.generated.js +82 -0
  7. package/dist/cjs/graphql/queries/products.generated.js +6 -0
  8. package/dist/cjs/graphql-app-api/queries/ThemePageMeta.generated.js +30 -0
  9. package/dist/cjs/helpers/queries/getProductOffers.js +1 -0
  10. package/dist/cjs/hooks/shop/useProductOffersQuery.js +2 -0
  11. package/dist/cjs/hooks/useFormatMoney.js +1 -1
  12. package/dist/cjs/hooks/useProduct.js +1 -1
  13. package/dist/cjs/index.js +1 -1
  14. package/dist/esm/components/constant.js +1 -1
  15. package/dist/esm/contexts/PageContext.js +1 -1
  16. package/dist/esm/contexts/ProductContext.js +1 -1
  17. package/dist/esm/graphql/fragments/product-variants-with-selling-plans-select.generated.js +40 -0
  18. package/dist/esm/graphql/queries/product-variant-with-selling-plans.generated.js +25 -0
  19. package/dist/esm/graphql/queries/products-with-selling-plans.generated.js +82 -0
  20. package/dist/esm/graphql/queries/products.generated.js +6 -0
  21. package/dist/esm/graphql-app-api/queries/ThemePageMeta.generated.js +30 -0
  22. package/dist/esm/helpers/queries/getProductOffers.js +1 -0
  23. package/dist/esm/hooks/shop/useProductOffersQuery.js +2 -0
  24. package/dist/esm/hooks/useFormatMoney.js +1 -1
  25. package/dist/esm/hooks/useProduct.js +1 -1
  26. package/dist/esm/index.js +1 -1
  27. package/dist/types/index.d.ts +949 -52
  28. package/package.json +3 -3
@@ -49,6 +49,12 @@ type Scalars$2 = {
49
49
  Float: number;
50
50
  Any: any;
51
51
  Cursor: string;
52
+ /**
53
+ * A signed decimal number, which supports arbitrary precision and is serialized as a string.
54
+ *
55
+ * Example values: `"29.99"`, `"29.999"`.
56
+ */
57
+ Decimal: string;
52
58
  Map: any;
53
59
  Time: any;
54
60
  Uint: any;
@@ -141,6 +147,7 @@ type ArticleConnection$1 = {
141
147
  type ArticleContent$1 = {
142
148
  createdAt?: Maybe$1<Scalars$2['Time']>;
143
149
  excerptHtml?: Maybe$1<Scalars$2['String']>;
150
+ html?: Maybe$1<Scalars$2['String']>;
144
151
  id: Scalars$2['ID'];
145
152
  updatedAt?: Maybe$1<Scalars$2['Time']>;
146
153
  };
@@ -194,6 +201,22 @@ type ArticleContentWhereInput$1 = {
194
201
  /** article edge predicates */
195
202
  hasArticle?: InputMaybe$1<Scalars$2['Boolean']>;
196
203
  hasArticleWith?: InputMaybe$1<Array<ArticleWhereInput$1>>;
204
+ /** html field predicates */
205
+ html?: InputMaybe$1<Scalars$2['String']>;
206
+ htmlContains?: InputMaybe$1<Scalars$2['String']>;
207
+ htmlContainsFold?: InputMaybe$1<Scalars$2['String']>;
208
+ htmlEqualFold?: InputMaybe$1<Scalars$2['String']>;
209
+ htmlGT?: InputMaybe$1<Scalars$2['String']>;
210
+ htmlGTE?: InputMaybe$1<Scalars$2['String']>;
211
+ htmlHasPrefix?: InputMaybe$1<Scalars$2['String']>;
212
+ htmlHasSuffix?: InputMaybe$1<Scalars$2['String']>;
213
+ htmlIn?: InputMaybe$1<Array<Scalars$2['String']>>;
214
+ htmlIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
215
+ htmlLT?: InputMaybe$1<Scalars$2['String']>;
216
+ htmlLTE?: InputMaybe$1<Scalars$2['String']>;
217
+ htmlNEQ?: InputMaybe$1<Scalars$2['String']>;
218
+ htmlNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
219
+ htmlNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
197
220
  /** id field predicates */
198
221
  id?: InputMaybe$1<Scalars$2['ID']>;
199
222
  idGT?: InputMaybe$1<Scalars$2['ID']>;
@@ -1119,6 +1142,17 @@ type CollectionProductWhereInput$1 = {
1119
1142
  productIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
1120
1143
  productIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
1121
1144
  productIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
1145
+ /** shop_id field predicates */
1146
+ shopID?: InputMaybe$1<Scalars$2['Int']>;
1147
+ shopIDGT?: InputMaybe$1<Scalars$2['Int']>;
1148
+ shopIDGTE?: InputMaybe$1<Scalars$2['Int']>;
1149
+ shopIDIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
1150
+ shopIDIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
1151
+ shopIDLT?: InputMaybe$1<Scalars$2['Int']>;
1152
+ shopIDLTE?: InputMaybe$1<Scalars$2['Int']>;
1153
+ shopIDNEQ?: InputMaybe$1<Scalars$2['Int']>;
1154
+ shopIDNotIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
1155
+ shopIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
1122
1156
  };
1123
1157
  /**
1124
1158
  * CollectionTagWhereInput is used for filtering CollectionTag objects.
@@ -2333,9 +2367,18 @@ type EntitledPriceRuleWhereInput$1 = {
2333
2367
  variantIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
2334
2368
  };
2335
2369
  type Entity = {
2370
+ findArticleByID: Article$2;
2371
+ findArticleContentByID: ArticleContent$1;
2372
+ findBlogByID: Blog$1;
2373
+ findCollectionByID: Collection$1;
2374
+ findMediaByID: Media$1;
2336
2375
  findMetafieldByID: Metafield$1;
2337
2376
  findMetafieldDefinitionByID: MetafieldDefinition$1;
2377
+ findPageByID: Page$1;
2338
2378
  findProductByID: Product$1;
2379
+ findProductOptionByID: ProductOption$1;
2380
+ findProductOptionValueByID: ProductOptionValue$1;
2381
+ findProductVariantByID: ProductVariant$1;
2339
2382
  findPublishedCustomSectionByID: PublishedCustomSection$1;
2340
2383
  findPublishedPageInteractionByID: PublishedPageInteraction$1;
2341
2384
  findPublishedPageSectionByID: PublishedPageSection$1;
@@ -2349,15 +2392,42 @@ type Entity = {
2349
2392
  findPublishedThemeStyleByID: PublishedThemeStyle$1;
2350
2393
  findTagByID: Tag$1;
2351
2394
  };
2395
+ type EntityFindArticleByIdArgs = {
2396
+ id: Scalars$2['ID'];
2397
+ };
2398
+ type EntityFindArticleContentByIdArgs = {
2399
+ id: Scalars$2['ID'];
2400
+ };
2401
+ type EntityFindBlogByIdArgs = {
2402
+ id: Scalars$2['ID'];
2403
+ };
2404
+ type EntityFindCollectionByIdArgs = {
2405
+ id: Scalars$2['ID'];
2406
+ };
2407
+ type EntityFindMediaByIdArgs = {
2408
+ id: Scalars$2['ID'];
2409
+ };
2352
2410
  type EntityFindMetafieldByIdArgs = {
2353
2411
  id: Scalars$2['ID'];
2354
2412
  };
2355
2413
  type EntityFindMetafieldDefinitionByIdArgs = {
2356
2414
  id: Scalars$2['ID'];
2357
2415
  };
2416
+ type EntityFindPageByIdArgs = {
2417
+ id: Scalars$2['ID'];
2418
+ };
2358
2419
  type EntityFindProductByIdArgs = {
2359
2420
  id: Scalars$2['ID'];
2360
2421
  };
2422
+ type EntityFindProductOptionByIdArgs = {
2423
+ id: Scalars$2['ID'];
2424
+ };
2425
+ type EntityFindProductOptionValueByIdArgs = {
2426
+ id: Scalars$2['ID'];
2427
+ };
2428
+ type EntityFindProductVariantByIdArgs = {
2429
+ id: Scalars$2['ID'];
2430
+ };
2361
2431
  type EntityFindPublishedCustomSectionByIdArgs = {
2362
2432
  id: Scalars$2['ID'];
2363
2433
  };
@@ -2396,6 +2466,7 @@ type EntityFindTagByIdArgs = {
2396
2466
  };
2397
2467
  type Media$1 = {
2398
2468
  alt?: Maybe$1<Scalars$2['String']>;
2469
+ baseID?: Scalars$2['String'];
2399
2470
  contentType?: Maybe$1<Scalars$2['String']>;
2400
2471
  createdAt?: Maybe$1<Scalars$2['Time']>;
2401
2472
  deletedAt?: Maybe$1<Scalars$2['Time']>;
@@ -3035,6 +3106,7 @@ type Page$1 = {
3035
3106
  metafield?: Maybe$1<Metafield$1>;
3036
3107
  platform?: Maybe$1<PagePlatform$1>;
3037
3108
  publishedAt?: Maybe$1<Scalars$2['Time']>;
3109
+ templateSuffix?: Maybe$1<Scalars$2['String']>;
3038
3110
  title?: Maybe$1<Scalars$2['String']>;
3039
3111
  };
3040
3112
  type PageMetafieldArgs$1 = {
@@ -3082,17 +3154,6 @@ type PageWhereInput$1 = {
3082
3154
  baseIDLTE?: InputMaybe$1<Scalars$2['String']>;
3083
3155
  baseIDNEQ?: InputMaybe$1<Scalars$2['String']>;
3084
3156
  baseIDNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
3085
- /** base_updated_at field predicates */
3086
- baseUpdatedAt?: InputMaybe$1<Scalars$2['Time']>;
3087
- baseUpdatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
3088
- baseUpdatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
3089
- baseUpdatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
3090
- baseUpdatedAtIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
3091
- baseUpdatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
3092
- baseUpdatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
3093
- baseUpdatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
3094
- baseUpdatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
3095
- baseUpdatedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
3096
3157
  /** created_at field predicates */
3097
3158
  createdAt?: InputMaybe$1<Scalars$2['Time']>;
3098
3159
  createdAtGT?: InputMaybe$1<Scalars$2['Time']>;
@@ -3181,6 +3242,22 @@ type PageWhereInput$1 = {
3181
3242
  publishedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
3182
3243
  publishedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
3183
3244
  publishedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
3245
+ /** template_suffix field predicates */
3246
+ templateSuffix?: InputMaybe$1<Scalars$2['String']>;
3247
+ templateSuffixContains?: InputMaybe$1<Scalars$2['String']>;
3248
+ templateSuffixContainsFold?: InputMaybe$1<Scalars$2['String']>;
3249
+ templateSuffixEqualFold?: InputMaybe$1<Scalars$2['String']>;
3250
+ templateSuffixGT?: InputMaybe$1<Scalars$2['String']>;
3251
+ templateSuffixGTE?: InputMaybe$1<Scalars$2['String']>;
3252
+ templateSuffixHasPrefix?: InputMaybe$1<Scalars$2['String']>;
3253
+ templateSuffixHasSuffix?: InputMaybe$1<Scalars$2['String']>;
3254
+ templateSuffixIn?: InputMaybe$1<Array<Scalars$2['String']>>;
3255
+ templateSuffixIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
3256
+ templateSuffixLT?: InputMaybe$1<Scalars$2['String']>;
3257
+ templateSuffixLTE?: InputMaybe$1<Scalars$2['String']>;
3258
+ templateSuffixNEQ?: InputMaybe$1<Scalars$2['String']>;
3259
+ templateSuffixNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
3260
+ templateSuffixNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
3184
3261
  /** title field predicates */
3185
3262
  title?: InputMaybe$1<Scalars$2['String']>;
3186
3263
  titleContains?: InputMaybe$1<Scalars$2['String']>;
@@ -3207,6 +3284,59 @@ type PageWhereInput$1 = {
3207
3284
  updatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
3208
3285
  updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
3209
3286
  };
3287
+ /**
3288
+ * PlatformPageSectionWhereInput is used for filtering PlatformPageSection objects.
3289
+ * Input was generated by ent.
3290
+ */
3291
+ type PlatformPageSectionWhereInput = {
3292
+ and?: InputMaybe$1<Array<PlatformPageSectionWhereInput>>;
3293
+ /** created_at field predicates */
3294
+ createdAt?: InputMaybe$1<Scalars$2['Time']>;
3295
+ createdAtGT?: InputMaybe$1<Scalars$2['Time']>;
3296
+ createdAtGTE?: InputMaybe$1<Scalars$2['Time']>;
3297
+ createdAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
3298
+ createdAtLT?: InputMaybe$1<Scalars$2['Time']>;
3299
+ createdAtLTE?: InputMaybe$1<Scalars$2['Time']>;
3300
+ createdAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
3301
+ createdAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
3302
+ /** published_page_sections edge predicates */
3303
+ hasPublishedPageSections?: InputMaybe$1<Scalars$2['Boolean']>;
3304
+ hasPublishedPageSectionsWith?: InputMaybe$1<Array<PublishedPageSectionWhereInput$1>>;
3305
+ /** id field predicates */
3306
+ id?: InputMaybe$1<Scalars$2['ID']>;
3307
+ idGT?: InputMaybe$1<Scalars$2['ID']>;
3308
+ idGTE?: InputMaybe$1<Scalars$2['ID']>;
3309
+ idIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
3310
+ idLT?: InputMaybe$1<Scalars$2['ID']>;
3311
+ idLTE?: InputMaybe$1<Scalars$2['ID']>;
3312
+ idNEQ?: InputMaybe$1<Scalars$2['ID']>;
3313
+ idNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
3314
+ not?: InputMaybe$1<PlatformPageSectionWhereInput>;
3315
+ or?: InputMaybe$1<Array<PlatformPageSectionWhereInput>>;
3316
+ /** page_section_id field predicates */
3317
+ pageSectionID?: InputMaybe$1<Scalars$2['ID']>;
3318
+ pageSectionIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
3319
+ pageSectionIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
3320
+ pageSectionIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
3321
+ /** platform_theme_id field predicates */
3322
+ platformThemeID?: InputMaybe$1<Scalars$2['Int']>;
3323
+ platformThemeIDGT?: InputMaybe$1<Scalars$2['Int']>;
3324
+ platformThemeIDGTE?: InputMaybe$1<Scalars$2['Int']>;
3325
+ platformThemeIDIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
3326
+ platformThemeIDLT?: InputMaybe$1<Scalars$2['Int']>;
3327
+ platformThemeIDLTE?: InputMaybe$1<Scalars$2['Int']>;
3328
+ platformThemeIDNEQ?: InputMaybe$1<Scalars$2['Int']>;
3329
+ platformThemeIDNotIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
3330
+ /** updated_at field predicates */
3331
+ updatedAt?: InputMaybe$1<Scalars$2['Time']>;
3332
+ updatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
3333
+ updatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
3334
+ updatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
3335
+ updatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
3336
+ updatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
3337
+ updatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
3338
+ updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
3339
+ };
3210
3340
  /**
3211
3341
  * PrerequisitePriceRuleWhereInput is used for filtering PrerequisitePriceRule objects.
3212
3342
  * Input was generated by ent.
@@ -3325,6 +3455,7 @@ type PreviewThemePage$1 = {
3325
3455
  isGlobal?: Maybe$1<Scalars$2['Boolean']>;
3326
3456
  isMobile?: Maybe$1<Scalars$2['Boolean']>;
3327
3457
  isSample?: Maybe$1<Scalars$2['Boolean']>;
3458
+ metafields?: Maybe$1<Array<PreviewThemePageMeta>>;
3328
3459
  name: Scalars$2['String'];
3329
3460
  pageSections?: Maybe$1<Array<Maybe$1<PreviewPageSection$1>>>;
3330
3461
  sectionPosition?: Maybe$1<Array<Scalars$2['String']>>;
@@ -3335,6 +3466,13 @@ type PreviewThemePage$1 = {
3335
3466
  type: PreviewThemePageType$1;
3336
3467
  updatedAt?: Maybe$1<Scalars$2['Time']>;
3337
3468
  };
3469
+ type PreviewThemePageMeta = {
3470
+ createdAt?: Maybe$1<Scalars$2['Time']>;
3471
+ id: Scalars$2['ID'];
3472
+ key: Scalars$2['String'];
3473
+ updatedAt?: Maybe$1<Scalars$2['Time']>;
3474
+ value: Scalars$2['String'];
3475
+ };
3338
3476
  type PreviewThemePageOnlineStoreData$1 = {
3339
3477
  id: Scalars$2['ID'];
3340
3478
  onlineStoreObjectBaseIDs?: Maybe$1<Array<Scalars$2['String']>>;
@@ -3723,19 +3861,22 @@ type Product$1 = {
3723
3861
  featuredImageId?: Maybe$1<Scalars$2['ID']>;
3724
3862
  handle?: Maybe$1<Scalars$2['String']>;
3725
3863
  id: Scalars$2['ID'];
3864
+ inventoryQuantity?: Maybe$1<Scalars$2['Int']>;
3726
3865
  isSample?: Maybe$1<Scalars$2['Boolean']>;
3727
3866
  isStorefront?: Maybe$1<Scalars$2['Boolean']>;
3728
- maxVariantPrice?: Maybe$1<Scalars$2['Float']>;
3867
+ maxVariantPrice?: Maybe$1<Scalars$2['Decimal']>;
3729
3868
  medias?: Maybe$1<MediaConnection$1>;
3730
3869
  metafield?: Maybe$1<Metafield$1>;
3731
- minVariantPrice?: Maybe$1<Scalars$2['Float']>;
3870
+ minVariantPrice?: Maybe$1<Scalars$2['Decimal']>;
3732
3871
  options?: Maybe$1<Array<ProductOption$1>>;
3733
3872
  platform?: Maybe$1<ProductPlatform$1>;
3734
3873
  platformCreatedAt?: Maybe$1<Scalars$2['Time']>;
3735
3874
  platformUpdatedAt?: Maybe$1<Scalars$2['Time']>;
3736
3875
  publishedAt?: Maybe$1<Scalars$2['Time']>;
3876
+ requiresSellingPlan?: Maybe$1<Scalars$2['Boolean']>;
3737
3877
  reviewCount?: Maybe$1<Scalars$2['Int']>;
3738
3878
  sellingPlanGroupCount?: Maybe$1<Scalars$2['Int']>;
3879
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<SellingPlanGroup>>>;
3739
3880
  sku?: Maybe$1<Scalars$2['String']>;
3740
3881
  status?: Maybe$1<Scalars$2['String']>;
3741
3882
  tags: Array<Scalars$2['String']>;
@@ -4108,7 +4249,7 @@ type ProductOrder$1 = {
4108
4249
  direction: OrderDirection$1;
4109
4250
  field?: InputMaybe$1<ProductOrderField$1>;
4110
4251
  };
4111
- type ProductOrderField$1 = 'CREATED_AT' | 'PLATFORM_CREATED_AT' | 'PLATFORM_UPDATED_AT' | 'PRICE' | 'TITLE' | 'UPDATED_AT';
4252
+ type ProductOrderField$1 = 'CREATED_AT' | 'PLATFORM_CREATED_AT' | 'PLATFORM_UPDATED_AT' | 'PRICE' | 'STATUS' | 'TITLE' | 'UPDATED_AT';
4112
4253
  type ProductPlatform$1 = 'BIG' | 'SHOPIFY' | 'WOO';
4113
4254
  /**
4114
4255
  * ProductTagWhereInput is used for filtering ProductTag objects.
@@ -4147,7 +4288,7 @@ type ProductTagWhereInput$1 = {
4147
4288
  type ProductVariant$1 = {
4148
4289
  barcode?: Maybe$1<Scalars$2['String']>;
4149
4290
  baseID?: Maybe$1<Scalars$2['String']>;
4150
- costPrice?: Maybe$1<Scalars$2['Float']>;
4291
+ costPrice?: Maybe$1<Scalars$2['Decimal']>;
4151
4292
  createdAt?: Maybe$1<Scalars$2['Time']>;
4152
4293
  deletedAt?: Maybe$1<Scalars$2['Time']>;
4153
4294
  description?: Maybe$1<Scalars$2['String']>;
@@ -4167,10 +4308,11 @@ type ProductVariant$1 = {
4167
4308
  platformCreatedAt?: Maybe$1<Scalars$2['Time']>;
4168
4309
  platformUpdatedAt?: Maybe$1<Scalars$2['Time']>;
4169
4310
  position?: Maybe$1<Scalars$2['Int']>;
4170
- price?: Maybe$1<Scalars$2['Float']>;
4311
+ price?: Maybe$1<Scalars$2['Decimal']>;
4171
4312
  product?: Maybe$1<Product$1>;
4172
- salePrice?: Maybe$1<Scalars$2['Float']>;
4313
+ salePrice?: Maybe$1<Scalars$2['Decimal']>;
4173
4314
  selectedOptions: Array<SelectedOption$1>;
4315
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<SellingPlanGroup>>>;
4174
4316
  sku?: Maybe$1<Scalars$2['String']>;
4175
4317
  soldIndividually?: Maybe$1<Scalars$2['Boolean']>;
4176
4318
  title?: Maybe$1<Scalars$2['String']>;
@@ -4270,6 +4412,9 @@ type ProductVariantWhereInput$1 = {
4270
4412
  /** media edge predicates */
4271
4413
  hasMedia?: InputMaybe$1<Scalars$2['Boolean']>;
4272
4414
  hasMediaWith?: InputMaybe$1<Array<MediaWhereInput$1>>;
4415
+ /** options edge predicates */
4416
+ hasOptions?: InputMaybe$1<Scalars$2['Boolean']>;
4417
+ hasOptionsWith?: InputMaybe$1<Array<VariantProductOptionWhereInput$1>>;
4273
4418
  /** prerequisite_price_rule edge predicates */
4274
4419
  hasPrerequisitePriceRule?: InputMaybe$1<Scalars$2['Boolean']>;
4275
4420
  hasPrerequisitePriceRuleWith?: InputMaybe$1<Array<PrerequisitePriceRuleWhereInput$1>>;
@@ -5093,7 +5238,7 @@ type PublishedOfferDynamicDiscountWhereInput$1 = {
5093
5238
  valueTypeNotIn?: InputMaybe$1<Array<PublishedOfferDynamicDiscountValueType$1>>;
5094
5239
  };
5095
5240
  type PublishedOfferDynamicTriggerConditionOperator$1 = 'CONTAINS' | 'EQ' | 'GT' | 'GTE' | 'INSIDE' | 'LT' | 'LTE' | 'NEQ' | 'NOT_CONTAINS' | 'NOT_INSIDE';
5096
- type PublishedOfferDynamicTriggerConditionType$1 = 'CHEAPEST_PRODUCT_IN_ORDER' | 'MOST_EXPENSIVE_PRODUCT_IN_ORDER' | 'PRODUCT_COLLECTION' | 'PRODUCT_PRICE' | 'PRODUCT_TAG' | 'SPECIFIC_PRODUCT';
5241
+ type PublishedOfferDynamicTriggerConditionType$1 = 'CHEAPEST_PRODUCT_IN_ORDER' | 'MOST_EXPENSIVE_PRODUCT_IN_ORDER' | 'PRODUCT_COLLECTION' | 'PRODUCT_PRICE' | 'PRODUCT_TAG' | 'SAME_AS_PURCHASED_PRODUCTS' | 'SPECIFIC_PRODUCT';
5097
5242
  /**
5098
5243
  * PublishedOfferDynamicTriggerConditionWhereInput is used for filtering PublishedOfferDynamicTriggerCondition objects.
5099
5244
  * Input was generated by ent.
@@ -5395,6 +5540,22 @@ type PublishedPageSectionMetaWhereInput$1 = {
5395
5540
  */
5396
5541
  type PublishedPageSectionWhereInput$1 = {
5397
5542
  and?: InputMaybe$1<Array<PublishedPageSectionWhereInput$1>>;
5543
+ /** checksum field predicates */
5544
+ checksum?: InputMaybe$1<Scalars$2['String']>;
5545
+ checksumContains?: InputMaybe$1<Scalars$2['String']>;
5546
+ checksumContainsFold?: InputMaybe$1<Scalars$2['String']>;
5547
+ checksumEqualFold?: InputMaybe$1<Scalars$2['String']>;
5548
+ checksumGT?: InputMaybe$1<Scalars$2['String']>;
5549
+ checksumGTE?: InputMaybe$1<Scalars$2['String']>;
5550
+ checksumHasPrefix?: InputMaybe$1<Scalars$2['String']>;
5551
+ checksumHasSuffix?: InputMaybe$1<Scalars$2['String']>;
5552
+ checksumIn?: InputMaybe$1<Array<Scalars$2['String']>>;
5553
+ checksumIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
5554
+ checksumLT?: InputMaybe$1<Scalars$2['String']>;
5555
+ checksumLTE?: InputMaybe$1<Scalars$2['String']>;
5556
+ checksumNEQ?: InputMaybe$1<Scalars$2['String']>;
5557
+ checksumNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
5558
+ checksumNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
5398
5559
  /** cid field predicates */
5399
5560
  cid?: InputMaybe$1<Scalars$2['String']>;
5400
5561
  cidContains?: InputMaybe$1<Scalars$2['String']>;
@@ -5448,6 +5609,9 @@ type PublishedPageSectionWhereInput$1 = {
5448
5609
  /** display field predicates */
5449
5610
  display?: InputMaybe$1<Scalars$2['Boolean']>;
5450
5611
  displayNEQ?: InputMaybe$1<Scalars$2['Boolean']>;
5612
+ /** platform_page_sections edge predicates */
5613
+ hasPlatformPageSections?: InputMaybe$1<Scalars$2['Boolean']>;
5614
+ hasPlatformPageSectionsWith?: InputMaybe$1<Array<PlatformPageSectionWhereInput>>;
5451
5615
  /** published_page_section_meta edge predicates */
5452
5616
  hasPublishedPageSectionMeta?: InputMaybe$1<Scalars$2['Boolean']>;
5453
5617
  hasPublishedPageSectionMetaWith?: InputMaybe$1<Array<PublishedPageSectionMetaWhereInput$1>>;
@@ -5919,6 +6083,7 @@ type PublishedThemePage$1 = {
5919
6083
  name: Scalars$2['String'];
5920
6084
  pageSections?: Maybe$1<Array<Maybe$1<PublishedPageSection$1>>>;
5921
6085
  pageStyle?: Maybe$1<PublishedThemeStyle$1>;
6086
+ preloadSections?: Maybe$1<Array<Scalars$2['String']>>;
5922
6087
  sectionPosition?: Maybe$1<Array<Scalars$2['String']>>;
5923
6088
  splitPercentage?: Maybe$1<Scalars$2['Float']>;
5924
6089
  status?: Maybe$1<PublishedThemePageStatus$1>;
@@ -6127,7 +6292,7 @@ type PublishedThemePageOnlineStoreDataWhereInput$1 = {
6127
6292
  updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
6128
6293
  };
6129
6294
  type PublishedThemePageStatus$1 = 'DRAFT' | 'PUBLISHED';
6130
- type PublishedThemePageType$1 = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'GP_ARTICLE' | 'GP_BLOG' | 'GP_COLLECTION' | 'GP_FUNNEL_PAGE' | 'GP_INDEX' | 'GP_PRODUCT' | 'GP_STATIC' | 'POST_PURCHASE' | 'PRODUCT' | 'STATIC';
6295
+ type PublishedThemePageType$1 = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'GP_ARTICLE' | 'GP_BLOG' | 'GP_COLLECTION' | 'GP_FUNNEL_PAGE' | 'GP_INDEX' | 'GP_PRE_SALE_PAGE' | 'GP_PRODUCT' | 'GP_STATIC' | 'POST_PURCHASE' | 'PRODUCT' | 'STATIC';
6131
6296
  /**
6132
6297
  * PublishedThemePageWhereInput is used for filtering PublishedThemePage objects.
6133
6298
  * Input was generated by ent.
@@ -6512,6 +6677,7 @@ type Query$1 = {
6512
6677
  productOptionValueLabel: Array<Scalars$2['String']>;
6513
6678
  productOptionValues?: Maybe$1<ProductOptionValueConnection$1>;
6514
6679
  productOptions?: Maybe$1<ProductOptionConnection$1>;
6680
+ productVariants?: Maybe$1<ProductVariantConnection$1>;
6515
6681
  products?: Maybe$1<ProductConnection$1>;
6516
6682
  publishedShopMetas?: Maybe$1<Array<PublishedShopMeta$1>>;
6517
6683
  publishedThemePageMetas?: Maybe$1<Array<PublishedThemePageMeta$1>>;
@@ -6640,6 +6806,14 @@ type QueryProductOptionsArgs$1 = {
6640
6806
  orderBy?: InputMaybe$1<ProductOptionOrder$1>;
6641
6807
  where?: InputMaybe$1<ProductOptionWhereInput$1>;
6642
6808
  };
6809
+ type QueryProductVariantsArgs = {
6810
+ after?: InputMaybe$1<Scalars$2['Cursor']>;
6811
+ before?: InputMaybe$1<Scalars$2['Cursor']>;
6812
+ first?: InputMaybe$1<Scalars$2['Int']>;
6813
+ last?: InputMaybe$1<Scalars$2['Int']>;
6814
+ orderBy?: InputMaybe$1<ProductVariantOrder$1>;
6815
+ where?: InputMaybe$1<ProductVariantWhereInput$1>;
6816
+ };
6643
6817
  type QueryProductsArgs$1 = {
6644
6818
  after?: InputMaybe$1<Scalars$2['Cursor']>;
6645
6819
  before?: InputMaybe$1<Scalars$2['Cursor']>;
@@ -6678,6 +6852,388 @@ type SelectedOption$1 = {
6678
6852
  value?: Maybe$1<Scalars$2['String']>;
6679
6853
  valueBaseID?: Maybe$1<Scalars$2['String']>;
6680
6854
  };
6855
+ type SellingPlan = {
6856
+ baseID: Scalars$2['String'];
6857
+ /** A selling plan policy which describes the recurring billing details. */
6858
+ billingPolicy?: Maybe$1<Scalars$2['Map']>;
6859
+ /** The category used to classify the selling plan for reporting purposes. */
6860
+ category: Scalars$2['String'];
6861
+ createdAt?: Maybe$1<Scalars$2['Time']>;
6862
+ /** A selling plan policy which describes the delivery details. */
6863
+ deliveryPolicy?: Maybe$1<Scalars$2['Map']>;
6864
+ /** Buyer facing string which describes the selling plan commitment. */
6865
+ description?: Maybe$1<Scalars$2['String']>;
6866
+ id: Scalars$2['ID'];
6867
+ /** When to reserve inventory for a selling plan. */
6868
+ inventoryPolicy?: Maybe$1<Scalars$2['Map']>;
6869
+ /**
6870
+ * A customer-facing description of the selling plan.
6871
+ * If your store supports multiple currencies, then don't include country-specific pricing content, such as "Buy monthly, get 10$ CAD off". This field won't be converted to reflect different currencies.
6872
+ */
6873
+ name: Scalars$2['String'];
6874
+ /** The values of all options available on the selling plan. Selling plans are grouped together in Liquid when they're created by the same app, and have the same `selling_plan_group.name` and `selling_plan_group.options` values. */
6875
+ options?: Maybe$1<Array<Maybe$1<Scalars$2['String']>>>;
6876
+ platform?: Maybe$1<SellingPlanPlatform>;
6877
+ platformCreatedAt?: Maybe$1<Scalars$2['Time']>;
6878
+ platformUpdatedAt?: Maybe$1<Scalars$2['Time']>;
6879
+ /** Relative position of the selling plan for display. A lower position will be displayed before a higher position. */
6880
+ position?: Maybe$1<Scalars$2['Int']>;
6881
+ /** Selling plan pricing details. */
6882
+ pricingPolicies?: Maybe$1<Array<Maybe$1<Scalars$2['Map']>>>;
6883
+ sellingPlanGroup?: Maybe$1<SellingPlanGroup>;
6884
+ updatedAt?: Maybe$1<Scalars$2['Time']>;
6885
+ };
6886
+ type SellingPlanGroup = {
6887
+ /** The ID for app, exposed in Liquid and product JSON. */
6888
+ appID?: Maybe$1<Scalars$2['String']>;
6889
+ baseID: Scalars$2['String'];
6890
+ createdAt?: Maybe$1<Scalars$2['Time']>;
6891
+ /** The merchant-facing description of the selling plan group. */
6892
+ description?: Maybe$1<Scalars$2['String']>;
6893
+ id: Scalars$2['ID'];
6894
+ /** The merchant-facing label of the selling plan group. */
6895
+ merchantCode?: Maybe$1<Scalars$2['String']>;
6896
+ /** The buyer-facing label of the selling plan group. */
6897
+ name: Scalars$2['String'];
6898
+ /**
6899
+ * The values of all options available on the selling plan group.
6900
+ * Selling plans are grouped together in Liquid when they're created by the same app,
6901
+ * and have the same selling_plan_group.name and selling_plan_group.options values.
6902
+ */
6903
+ options?: Maybe$1<Array<Maybe$1<Scalars$2['String']>>>;
6904
+ platform?: Maybe$1<SellingPlanGroupPlatform>;
6905
+ platformCreatedAt?: Maybe$1<Scalars$2['Time']>;
6906
+ platformUpdatedAt?: Maybe$1<Scalars$2['Time']>;
6907
+ /** The relative position of the selling plan group for display. */
6908
+ position?: Maybe$1<Scalars$2['Int']>;
6909
+ sellingPlans?: Maybe$1<Array<Maybe$1<SellingPlan>>>;
6910
+ /** A summary of the policies associated to the selling plan group. */
6911
+ summary?: Maybe$1<Scalars$2['String']>;
6912
+ updatedAt?: Maybe$1<Scalars$2['Time']>;
6913
+ };
6914
+ type SellingPlanGroupPlatform = 'BIG' | 'SHOPIFY' | 'WOO';
6915
+ /**
6916
+ * SellingPlanGroupWhereInput is used for filtering SellingPlanGroup objects.
6917
+ * Input was generated by ent.
6918
+ */
6919
+ type SellingPlanGroupWhereInput = {
6920
+ and?: InputMaybe$1<Array<SellingPlanGroupWhereInput>>;
6921
+ /** app_id field predicates */
6922
+ appID?: InputMaybe$1<Scalars$2['String']>;
6923
+ appIDContains?: InputMaybe$1<Scalars$2['String']>;
6924
+ appIDContainsFold?: InputMaybe$1<Scalars$2['String']>;
6925
+ appIDEqualFold?: InputMaybe$1<Scalars$2['String']>;
6926
+ appIDGT?: InputMaybe$1<Scalars$2['String']>;
6927
+ appIDGTE?: InputMaybe$1<Scalars$2['String']>;
6928
+ appIDHasPrefix?: InputMaybe$1<Scalars$2['String']>;
6929
+ appIDHasSuffix?: InputMaybe$1<Scalars$2['String']>;
6930
+ appIDIn?: InputMaybe$1<Array<Scalars$2['String']>>;
6931
+ appIDIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
6932
+ appIDLT?: InputMaybe$1<Scalars$2['String']>;
6933
+ appIDLTE?: InputMaybe$1<Scalars$2['String']>;
6934
+ appIDNEQ?: InputMaybe$1<Scalars$2['String']>;
6935
+ appIDNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
6936
+ appIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
6937
+ /** base_id field predicates */
6938
+ baseID?: InputMaybe$1<Scalars$2['String']>;
6939
+ baseIDContains?: InputMaybe$1<Scalars$2['String']>;
6940
+ baseIDContainsFold?: InputMaybe$1<Scalars$2['String']>;
6941
+ baseIDEqualFold?: InputMaybe$1<Scalars$2['String']>;
6942
+ baseIDGT?: InputMaybe$1<Scalars$2['String']>;
6943
+ baseIDGTE?: InputMaybe$1<Scalars$2['String']>;
6944
+ baseIDHasPrefix?: InputMaybe$1<Scalars$2['String']>;
6945
+ baseIDHasSuffix?: InputMaybe$1<Scalars$2['String']>;
6946
+ baseIDIn?: InputMaybe$1<Array<Scalars$2['String']>>;
6947
+ baseIDLT?: InputMaybe$1<Scalars$2['String']>;
6948
+ baseIDLTE?: InputMaybe$1<Scalars$2['String']>;
6949
+ baseIDNEQ?: InputMaybe$1<Scalars$2['String']>;
6950
+ baseIDNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
6951
+ /** created_at field predicates */
6952
+ createdAt?: InputMaybe$1<Scalars$2['Time']>;
6953
+ createdAtGT?: InputMaybe$1<Scalars$2['Time']>;
6954
+ createdAtGTE?: InputMaybe$1<Scalars$2['Time']>;
6955
+ createdAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
6956
+ createdAtLT?: InputMaybe$1<Scalars$2['Time']>;
6957
+ createdAtLTE?: InputMaybe$1<Scalars$2['Time']>;
6958
+ createdAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
6959
+ createdAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
6960
+ /** description field predicates */
6961
+ description?: InputMaybe$1<Scalars$2['String']>;
6962
+ descriptionContains?: InputMaybe$1<Scalars$2['String']>;
6963
+ descriptionContainsFold?: InputMaybe$1<Scalars$2['String']>;
6964
+ descriptionEqualFold?: InputMaybe$1<Scalars$2['String']>;
6965
+ descriptionGT?: InputMaybe$1<Scalars$2['String']>;
6966
+ descriptionGTE?: InputMaybe$1<Scalars$2['String']>;
6967
+ descriptionHasPrefix?: InputMaybe$1<Scalars$2['String']>;
6968
+ descriptionHasSuffix?: InputMaybe$1<Scalars$2['String']>;
6969
+ descriptionIn?: InputMaybe$1<Array<Scalars$2['String']>>;
6970
+ descriptionIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
6971
+ descriptionLT?: InputMaybe$1<Scalars$2['String']>;
6972
+ descriptionLTE?: InputMaybe$1<Scalars$2['String']>;
6973
+ descriptionNEQ?: InputMaybe$1<Scalars$2['String']>;
6974
+ descriptionNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
6975
+ descriptionNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
6976
+ /** products edge predicates */
6977
+ hasProducts?: InputMaybe$1<Scalars$2['Boolean']>;
6978
+ hasProductsWith?: InputMaybe$1<Array<ProductWhereInput$1>>;
6979
+ /** selling_plans edge predicates */
6980
+ hasSellingPlans?: InputMaybe$1<Scalars$2['Boolean']>;
6981
+ hasSellingPlansWith?: InputMaybe$1<Array<SellingPlanWhereInput>>;
6982
+ /** variants edge predicates */
6983
+ hasVariants?: InputMaybe$1<Scalars$2['Boolean']>;
6984
+ hasVariantsWith?: InputMaybe$1<Array<ProductVariantWhereInput$1>>;
6985
+ /** id field predicates */
6986
+ id?: InputMaybe$1<Scalars$2['ID']>;
6987
+ idGT?: InputMaybe$1<Scalars$2['ID']>;
6988
+ idGTE?: InputMaybe$1<Scalars$2['ID']>;
6989
+ idIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
6990
+ idLT?: InputMaybe$1<Scalars$2['ID']>;
6991
+ idLTE?: InputMaybe$1<Scalars$2['ID']>;
6992
+ idNEQ?: InputMaybe$1<Scalars$2['ID']>;
6993
+ idNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
6994
+ /** merchant_code field predicates */
6995
+ merchantCode?: InputMaybe$1<Scalars$2['String']>;
6996
+ merchantCodeContains?: InputMaybe$1<Scalars$2['String']>;
6997
+ merchantCodeContainsFold?: InputMaybe$1<Scalars$2['String']>;
6998
+ merchantCodeEqualFold?: InputMaybe$1<Scalars$2['String']>;
6999
+ merchantCodeGT?: InputMaybe$1<Scalars$2['String']>;
7000
+ merchantCodeGTE?: InputMaybe$1<Scalars$2['String']>;
7001
+ merchantCodeHasPrefix?: InputMaybe$1<Scalars$2['String']>;
7002
+ merchantCodeHasSuffix?: InputMaybe$1<Scalars$2['String']>;
7003
+ merchantCodeIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7004
+ merchantCodeIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7005
+ merchantCodeLT?: InputMaybe$1<Scalars$2['String']>;
7006
+ merchantCodeLTE?: InputMaybe$1<Scalars$2['String']>;
7007
+ merchantCodeNEQ?: InputMaybe$1<Scalars$2['String']>;
7008
+ merchantCodeNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7009
+ merchantCodeNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7010
+ /** name field predicates */
7011
+ name?: InputMaybe$1<Scalars$2['String']>;
7012
+ nameContains?: InputMaybe$1<Scalars$2['String']>;
7013
+ nameContainsFold?: InputMaybe$1<Scalars$2['String']>;
7014
+ nameEqualFold?: InputMaybe$1<Scalars$2['String']>;
7015
+ nameGT?: InputMaybe$1<Scalars$2['String']>;
7016
+ nameGTE?: InputMaybe$1<Scalars$2['String']>;
7017
+ nameHasPrefix?: InputMaybe$1<Scalars$2['String']>;
7018
+ nameHasSuffix?: InputMaybe$1<Scalars$2['String']>;
7019
+ nameIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7020
+ nameLT?: InputMaybe$1<Scalars$2['String']>;
7021
+ nameLTE?: InputMaybe$1<Scalars$2['String']>;
7022
+ nameNEQ?: InputMaybe$1<Scalars$2['String']>;
7023
+ nameNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7024
+ not?: InputMaybe$1<SellingPlanGroupWhereInput>;
7025
+ or?: InputMaybe$1<Array<SellingPlanGroupWhereInput>>;
7026
+ /** platform field predicates */
7027
+ platform?: InputMaybe$1<SellingPlanGroupPlatform>;
7028
+ /** platform_created_at field predicates */
7029
+ platformCreatedAt?: InputMaybe$1<Scalars$2['Time']>;
7030
+ platformCreatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
7031
+ platformCreatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
7032
+ platformCreatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7033
+ platformCreatedAtIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7034
+ platformCreatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
7035
+ platformCreatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
7036
+ platformCreatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
7037
+ platformCreatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7038
+ platformCreatedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7039
+ platformIn?: InputMaybe$1<Array<SellingPlanGroupPlatform>>;
7040
+ platformIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7041
+ platformNEQ?: InputMaybe$1<SellingPlanGroupPlatform>;
7042
+ platformNotIn?: InputMaybe$1<Array<SellingPlanGroupPlatform>>;
7043
+ platformNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7044
+ /** platform_updated_at field predicates */
7045
+ platformUpdatedAt?: InputMaybe$1<Scalars$2['Time']>;
7046
+ platformUpdatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
7047
+ platformUpdatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
7048
+ platformUpdatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7049
+ platformUpdatedAtIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7050
+ platformUpdatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
7051
+ platformUpdatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
7052
+ platformUpdatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
7053
+ platformUpdatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7054
+ platformUpdatedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7055
+ /** position field predicates */
7056
+ position?: InputMaybe$1<Scalars$2['Int']>;
7057
+ positionGT?: InputMaybe$1<Scalars$2['Int']>;
7058
+ positionGTE?: InputMaybe$1<Scalars$2['Int']>;
7059
+ positionIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
7060
+ positionIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7061
+ positionLT?: InputMaybe$1<Scalars$2['Int']>;
7062
+ positionLTE?: InputMaybe$1<Scalars$2['Int']>;
7063
+ positionNEQ?: InputMaybe$1<Scalars$2['Int']>;
7064
+ positionNotIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
7065
+ positionNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7066
+ /** summary field predicates */
7067
+ summary?: InputMaybe$1<Scalars$2['String']>;
7068
+ summaryContains?: InputMaybe$1<Scalars$2['String']>;
7069
+ summaryContainsFold?: InputMaybe$1<Scalars$2['String']>;
7070
+ summaryEqualFold?: InputMaybe$1<Scalars$2['String']>;
7071
+ summaryGT?: InputMaybe$1<Scalars$2['String']>;
7072
+ summaryGTE?: InputMaybe$1<Scalars$2['String']>;
7073
+ summaryHasPrefix?: InputMaybe$1<Scalars$2['String']>;
7074
+ summaryHasSuffix?: InputMaybe$1<Scalars$2['String']>;
7075
+ summaryIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7076
+ summaryIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7077
+ summaryLT?: InputMaybe$1<Scalars$2['String']>;
7078
+ summaryLTE?: InputMaybe$1<Scalars$2['String']>;
7079
+ summaryNEQ?: InputMaybe$1<Scalars$2['String']>;
7080
+ summaryNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7081
+ summaryNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7082
+ /** updated_at field predicates */
7083
+ updatedAt?: InputMaybe$1<Scalars$2['Time']>;
7084
+ updatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
7085
+ updatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
7086
+ updatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7087
+ updatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
7088
+ updatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
7089
+ updatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
7090
+ updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7091
+ };
7092
+ type SellingPlanPlatform = 'BIG' | 'SHOPIFY' | 'WOO';
7093
+ /**
7094
+ * SellingPlanWhereInput is used for filtering SellingPlan objects.
7095
+ * Input was generated by ent.
7096
+ */
7097
+ type SellingPlanWhereInput = {
7098
+ and?: InputMaybe$1<Array<SellingPlanWhereInput>>;
7099
+ /** base_id field predicates */
7100
+ baseID?: InputMaybe$1<Scalars$2['String']>;
7101
+ baseIDContains?: InputMaybe$1<Scalars$2['String']>;
7102
+ baseIDContainsFold?: InputMaybe$1<Scalars$2['String']>;
7103
+ baseIDEqualFold?: InputMaybe$1<Scalars$2['String']>;
7104
+ baseIDGT?: InputMaybe$1<Scalars$2['String']>;
7105
+ baseIDGTE?: InputMaybe$1<Scalars$2['String']>;
7106
+ baseIDHasPrefix?: InputMaybe$1<Scalars$2['String']>;
7107
+ baseIDHasSuffix?: InputMaybe$1<Scalars$2['String']>;
7108
+ baseIDIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7109
+ baseIDLT?: InputMaybe$1<Scalars$2['String']>;
7110
+ baseIDLTE?: InputMaybe$1<Scalars$2['String']>;
7111
+ baseIDNEQ?: InputMaybe$1<Scalars$2['String']>;
7112
+ baseIDNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7113
+ /** category field predicates */
7114
+ category?: InputMaybe$1<Scalars$2['String']>;
7115
+ categoryContains?: InputMaybe$1<Scalars$2['String']>;
7116
+ categoryContainsFold?: InputMaybe$1<Scalars$2['String']>;
7117
+ categoryEqualFold?: InputMaybe$1<Scalars$2['String']>;
7118
+ categoryGT?: InputMaybe$1<Scalars$2['String']>;
7119
+ categoryGTE?: InputMaybe$1<Scalars$2['String']>;
7120
+ categoryHasPrefix?: InputMaybe$1<Scalars$2['String']>;
7121
+ categoryHasSuffix?: InputMaybe$1<Scalars$2['String']>;
7122
+ categoryIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7123
+ categoryLT?: InputMaybe$1<Scalars$2['String']>;
7124
+ categoryLTE?: InputMaybe$1<Scalars$2['String']>;
7125
+ categoryNEQ?: InputMaybe$1<Scalars$2['String']>;
7126
+ categoryNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7127
+ /** created_at field predicates */
7128
+ createdAt?: InputMaybe$1<Scalars$2['Time']>;
7129
+ createdAtGT?: InputMaybe$1<Scalars$2['Time']>;
7130
+ createdAtGTE?: InputMaybe$1<Scalars$2['Time']>;
7131
+ createdAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7132
+ createdAtLT?: InputMaybe$1<Scalars$2['Time']>;
7133
+ createdAtLTE?: InputMaybe$1<Scalars$2['Time']>;
7134
+ createdAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
7135
+ createdAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7136
+ /** description field predicates */
7137
+ description?: InputMaybe$1<Scalars$2['String']>;
7138
+ descriptionContains?: InputMaybe$1<Scalars$2['String']>;
7139
+ descriptionContainsFold?: InputMaybe$1<Scalars$2['String']>;
7140
+ descriptionEqualFold?: InputMaybe$1<Scalars$2['String']>;
7141
+ descriptionGT?: InputMaybe$1<Scalars$2['String']>;
7142
+ descriptionGTE?: InputMaybe$1<Scalars$2['String']>;
7143
+ descriptionHasPrefix?: InputMaybe$1<Scalars$2['String']>;
7144
+ descriptionHasSuffix?: InputMaybe$1<Scalars$2['String']>;
7145
+ descriptionIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7146
+ descriptionIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7147
+ descriptionLT?: InputMaybe$1<Scalars$2['String']>;
7148
+ descriptionLTE?: InputMaybe$1<Scalars$2['String']>;
7149
+ descriptionNEQ?: InputMaybe$1<Scalars$2['String']>;
7150
+ descriptionNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7151
+ descriptionNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7152
+ /** selling_plan_group edge predicates */
7153
+ hasSellingPlanGroup?: InputMaybe$1<Scalars$2['Boolean']>;
7154
+ hasSellingPlanGroupWith?: InputMaybe$1<Array<SellingPlanGroupWhereInput>>;
7155
+ /** id field predicates */
7156
+ id?: InputMaybe$1<Scalars$2['ID']>;
7157
+ idGT?: InputMaybe$1<Scalars$2['ID']>;
7158
+ idGTE?: InputMaybe$1<Scalars$2['ID']>;
7159
+ idIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
7160
+ idLT?: InputMaybe$1<Scalars$2['ID']>;
7161
+ idLTE?: InputMaybe$1<Scalars$2['ID']>;
7162
+ idNEQ?: InputMaybe$1<Scalars$2['ID']>;
7163
+ idNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
7164
+ /** name field predicates */
7165
+ name?: InputMaybe$1<Scalars$2['String']>;
7166
+ nameContains?: InputMaybe$1<Scalars$2['String']>;
7167
+ nameContainsFold?: InputMaybe$1<Scalars$2['String']>;
7168
+ nameEqualFold?: InputMaybe$1<Scalars$2['String']>;
7169
+ nameGT?: InputMaybe$1<Scalars$2['String']>;
7170
+ nameGTE?: InputMaybe$1<Scalars$2['String']>;
7171
+ nameHasPrefix?: InputMaybe$1<Scalars$2['String']>;
7172
+ nameHasSuffix?: InputMaybe$1<Scalars$2['String']>;
7173
+ nameIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7174
+ nameLT?: InputMaybe$1<Scalars$2['String']>;
7175
+ nameLTE?: InputMaybe$1<Scalars$2['String']>;
7176
+ nameNEQ?: InputMaybe$1<Scalars$2['String']>;
7177
+ nameNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
7178
+ not?: InputMaybe$1<SellingPlanWhereInput>;
7179
+ or?: InputMaybe$1<Array<SellingPlanWhereInput>>;
7180
+ /** platform field predicates */
7181
+ platform?: InputMaybe$1<SellingPlanPlatform>;
7182
+ /** platform_created_at field predicates */
7183
+ platformCreatedAt?: InputMaybe$1<Scalars$2['Time']>;
7184
+ platformCreatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
7185
+ platformCreatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
7186
+ platformCreatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7187
+ platformCreatedAtIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7188
+ platformCreatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
7189
+ platformCreatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
7190
+ platformCreatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
7191
+ platformCreatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7192
+ platformCreatedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7193
+ platformIn?: InputMaybe$1<Array<SellingPlanPlatform>>;
7194
+ platformIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7195
+ platformNEQ?: InputMaybe$1<SellingPlanPlatform>;
7196
+ platformNotIn?: InputMaybe$1<Array<SellingPlanPlatform>>;
7197
+ platformNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7198
+ /** platform_updated_at field predicates */
7199
+ platformUpdatedAt?: InputMaybe$1<Scalars$2['Time']>;
7200
+ platformUpdatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
7201
+ platformUpdatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
7202
+ platformUpdatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7203
+ platformUpdatedAtIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7204
+ platformUpdatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
7205
+ platformUpdatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
7206
+ platformUpdatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
7207
+ platformUpdatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7208
+ platformUpdatedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7209
+ /** position field predicates */
7210
+ position?: InputMaybe$1<Scalars$2['Int']>;
7211
+ positionGT?: InputMaybe$1<Scalars$2['Int']>;
7212
+ positionGTE?: InputMaybe$1<Scalars$2['Int']>;
7213
+ positionIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
7214
+ positionIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7215
+ positionLT?: InputMaybe$1<Scalars$2['Int']>;
7216
+ positionLTE?: InputMaybe$1<Scalars$2['Int']>;
7217
+ positionNEQ?: InputMaybe$1<Scalars$2['Int']>;
7218
+ positionNotIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
7219
+ positionNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7220
+ /** selling_plan_group_id field predicates */
7221
+ sellingPlanGroupID?: InputMaybe$1<Scalars$2['ID']>;
7222
+ sellingPlanGroupIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
7223
+ sellingPlanGroupIDIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7224
+ sellingPlanGroupIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
7225
+ sellingPlanGroupIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
7226
+ sellingPlanGroupIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7227
+ /** updated_at field predicates */
7228
+ updatedAt?: InputMaybe$1<Scalars$2['Time']>;
7229
+ updatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
7230
+ updatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
7231
+ updatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7232
+ updatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
7233
+ updatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
7234
+ updatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
7235
+ updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
7236
+ };
6681
7237
  /**
6682
7238
  * ShopDatabaseWhereInput is used for filtering ShopDatabase objects.
6683
7239
  * Input was generated by ent.
@@ -6731,25 +7287,17 @@ type ShopDatabaseWhereInput$1 = {
6731
7287
  type ShopShopify$1 = {
6732
7288
  address1?: Maybe$1<Scalars$2['String']>;
6733
7289
  address2?: Maybe$1<Scalars$2['String']>;
6734
- auto_configure_tax_inclusivity?: Maybe$1<Scalars$2['String']>;
6735
7290
  checkout_api_supported?: Maybe$1<Scalars$2['Boolean']>;
6736
7291
  city?: Maybe$1<Scalars$2['String']>;
6737
7292
  cookie_consent_level?: Maybe$1<Scalars$2['String']>;
6738
7293
  country?: Maybe$1<Scalars$2['String']>;
6739
7294
  country_code?: Maybe$1<Scalars$2['String']>;
6740
7295
  country_name?: Maybe$1<Scalars$2['String']>;
6741
- county_taxes?: Maybe$1<Scalars$2['Boolean']>;
6742
7296
  currency: Scalars$2['String'];
6743
7297
  customer_email?: Maybe$1<Scalars$2['String']>;
6744
7298
  domain: Scalars$2['String'];
6745
- eligible_for_payments?: Maybe$1<Scalars$2['Boolean']>;
6746
7299
  email: Scalars$2['String'];
6747
7300
  enabled_presentment_currencies?: Maybe$1<Array<Maybe$1<Scalars$2['String']>>>;
6748
- finances?: Maybe$1<Scalars$2['Boolean']>;
6749
- google_apps_domain?: Maybe$1<Scalars$2['String']>;
6750
- google_apps_login_enabled?: Maybe$1<Scalars$2['String']>;
6751
- has_discounts?: Maybe$1<Scalars$2['Boolean']>;
6752
- has_gift_cards?: Maybe$1<Scalars$2['Boolean']>;
6753
7301
  has_storefront?: Maybe$1<Scalars$2['Boolean']>;
6754
7302
  iana_timezone?: Maybe$1<Scalars$2['String']>;
6755
7303
  id: Scalars$2['ID'];
@@ -6760,22 +7308,18 @@ type ShopShopify$1 = {
6760
7308
  money_in_emails_format?: Maybe$1<Scalars$2['String']>;
6761
7309
  money_with_currency_format?: Maybe$1<Scalars$2['String']>;
6762
7310
  money_with_currency_in_emails_format?: Maybe$1<Scalars$2['String']>;
6763
- multi_location_enabled?: Maybe$1<Scalars$2['Boolean']>;
6764
7311
  myshopify_domain?: Maybe$1<Scalars$2['String']>;
6765
7312
  name: Scalars$2['String'];
6766
7313
  password_enabled?: Maybe$1<Scalars$2['Boolean']>;
6767
7314
  phone?: Maybe$1<Scalars$2['String']>;
6768
7315
  plan_display_name?: Maybe$1<Scalars$2['String']>;
7316
+ /** @deprecated Use plan_display_name instead. */
6769
7317
  plan_name?: Maybe$1<Scalars$2['String']>;
6770
- pre_launch_enabled?: Maybe$1<Scalars$2['Boolean']>;
6771
7318
  primary_locale?: Maybe$1<Scalars$2['String']>;
6772
- primary_location_id: Scalars$2['ID'];
6773
7319
  province?: Maybe$1<Scalars$2['String']>;
6774
7320
  province_code?: Maybe$1<Scalars$2['String']>;
6775
- requires_extra_payments_agreement?: Maybe$1<Scalars$2['Boolean']>;
6776
7321
  setup_required?: Maybe$1<Scalars$2['Boolean']>;
6777
7322
  shop_owner?: Maybe$1<Scalars$2['String']>;
6778
- source?: Maybe$1<Scalars$2['String']>;
6779
7323
  tax_shipping?: Maybe$1<Scalars$2['String']>;
6780
7324
  taxes_included?: Maybe$1<Scalars$2['String']>;
6781
7325
  timezone?: Maybe$1<Scalars$2['String']>;
@@ -7000,21 +7544,41 @@ type VariantProductOptionWhereInput$1 = {
7000
7544
  optionValueIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
7001
7545
  optionValueIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
7002
7546
  or?: InputMaybe$1<Array<VariantProductOptionWhereInput$1>>;
7547
+ /** shop_id field predicates */
7548
+ shopID?: InputMaybe$1<Scalars$2['Int']>;
7549
+ shopIDGT?: InputMaybe$1<Scalars$2['Int']>;
7550
+ shopIDGTE?: InputMaybe$1<Scalars$2['Int']>;
7551
+ shopIDIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
7552
+ shopIDIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
7553
+ shopIDLT?: InputMaybe$1<Scalars$2['Int']>;
7554
+ shopIDLTE?: InputMaybe$1<Scalars$2['Int']>;
7555
+ shopIDNEQ?: InputMaybe$1<Scalars$2['Int']>;
7556
+ shopIDNotIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
7557
+ shopIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
7003
7558
  /** variant_id field predicates */
7004
7559
  variantID?: InputMaybe$1<Scalars$2['ID']>;
7005
7560
  variantIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
7006
7561
  variantIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
7007
7562
  variantIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
7008
7563
  };
7009
- type _Entity = Metafield$1 | MetafieldDefinition$1 | Product$1 | PublishedCustomSection$1 | PublishedPageInteraction$1 | PublishedPageSection$1 | PublishedPageSectionMeta$1 | PublishedShopMeta$1 | PublishedThemePage$1 | PublishedThemePageCustomSection$1 | PublishedThemePageMeta$1 | PublishedThemePageOnlineStoreData$1 | PublishedThemeSection$1 | PublishedThemeStyle$1 | Tag$1;
7564
+ type _Entity = Article$2 | ArticleContent$1 | Blog$1 | Collection$1 | Media$1 | Metafield$1 | MetafieldDefinition$1 | Page$1 | Product$1 | ProductOption$1 | ProductOptionValue$1 | ProductVariant$1 | PublishedCustomSection$1 | PublishedPageInteraction$1 | PublishedPageSection$1 | PublishedPageSectionMeta$1 | PublishedShopMeta$1 | PublishedThemePage$1 | PublishedThemePageCustomSection$1 | PublishedThemePageMeta$1 | PublishedThemePageOnlineStoreData$1 | PublishedThemeSection$1 | PublishedThemeStyle$1 | Tag$1;
7010
7565
  type _Service = {
7011
7566
  sdl?: Maybe$1<Scalars$2['String']>;
7012
7567
  };
7013
7568
 
7014
7569
  type shop_Entity = Entity;
7570
+ type shop_EntityFindArticleByIdArgs = EntityFindArticleByIdArgs;
7571
+ type shop_EntityFindArticleContentByIdArgs = EntityFindArticleContentByIdArgs;
7572
+ type shop_EntityFindBlogByIdArgs = EntityFindBlogByIdArgs;
7573
+ type shop_EntityFindCollectionByIdArgs = EntityFindCollectionByIdArgs;
7574
+ type shop_EntityFindMediaByIdArgs = EntityFindMediaByIdArgs;
7015
7575
  type shop_EntityFindMetafieldByIdArgs = EntityFindMetafieldByIdArgs;
7016
7576
  type shop_EntityFindMetafieldDefinitionByIdArgs = EntityFindMetafieldDefinitionByIdArgs;
7577
+ type shop_EntityFindPageByIdArgs = EntityFindPageByIdArgs;
7017
7578
  type shop_EntityFindProductByIdArgs = EntityFindProductByIdArgs;
7579
+ type shop_EntityFindProductOptionByIdArgs = EntityFindProductOptionByIdArgs;
7580
+ type shop_EntityFindProductOptionValueByIdArgs = EntityFindProductOptionValueByIdArgs;
7581
+ type shop_EntityFindProductVariantByIdArgs = EntityFindProductVariantByIdArgs;
7018
7582
  type shop_EntityFindPublishedCustomSectionByIdArgs = EntityFindPublishedCustomSectionByIdArgs;
7019
7583
  type shop_EntityFindPublishedPageInteractionByIdArgs = EntityFindPublishedPageInteractionByIdArgs;
7020
7584
  type shop_EntityFindPublishedPageSectionByIdArgs = EntityFindPublishedPageSectionByIdArgs;
@@ -7027,7 +7591,16 @@ type shop_EntityFindPublishedThemePageOnlineStoreDataByIdArgs = EntityFindPublis
7027
7591
  type shop_EntityFindPublishedThemeSectionByIdArgs = EntityFindPublishedThemeSectionByIdArgs;
7028
7592
  type shop_EntityFindPublishedThemeStyleByIdArgs = EntityFindPublishedThemeStyleByIdArgs;
7029
7593
  type shop_EntityFindTagByIdArgs = EntityFindTagByIdArgs;
7594
+ type shop_PlatformPageSectionWhereInput = PlatformPageSectionWhereInput;
7595
+ type shop_PreviewThemePageMeta = PreviewThemePageMeta;
7596
+ type shop_QueryProductVariantsArgs = QueryProductVariantsArgs;
7030
7597
  type shop_Query_EntitiesArgs = Query_EntitiesArgs;
7598
+ type shop_SellingPlan = SellingPlan;
7599
+ type shop_SellingPlanGroup = SellingPlanGroup;
7600
+ type shop_SellingPlanGroupPlatform = SellingPlanGroupPlatform;
7601
+ type shop_SellingPlanGroupWhereInput = SellingPlanGroupWhereInput;
7602
+ type shop_SellingPlanPlatform = SellingPlanPlatform;
7603
+ type shop_SellingPlanWhereInput = SellingPlanWhereInput;
7031
7604
  type shop__Entity = _Entity;
7032
7605
  type shop__Service = _Service;
7033
7606
  declare namespace shop {
@@ -7096,9 +7669,18 @@ declare namespace shop {
7096
7669
  DiscountWhereInput$1 as DiscountWhereInput,
7097
7670
  EntitledPriceRuleWhereInput$1 as EntitledPriceRuleWhereInput,
7098
7671
  shop_Entity as Entity,
7672
+ shop_EntityFindArticleByIdArgs as EntityFindArticleByIdArgs,
7673
+ shop_EntityFindArticleContentByIdArgs as EntityFindArticleContentByIdArgs,
7674
+ shop_EntityFindBlogByIdArgs as EntityFindBlogByIdArgs,
7675
+ shop_EntityFindCollectionByIdArgs as EntityFindCollectionByIdArgs,
7676
+ shop_EntityFindMediaByIdArgs as EntityFindMediaByIdArgs,
7099
7677
  shop_EntityFindMetafieldByIdArgs as EntityFindMetafieldByIdArgs,
7100
7678
  shop_EntityFindMetafieldDefinitionByIdArgs as EntityFindMetafieldDefinitionByIdArgs,
7679
+ shop_EntityFindPageByIdArgs as EntityFindPageByIdArgs,
7101
7680
  shop_EntityFindProductByIdArgs as EntityFindProductByIdArgs,
7681
+ shop_EntityFindProductOptionByIdArgs as EntityFindProductOptionByIdArgs,
7682
+ shop_EntityFindProductOptionValueByIdArgs as EntityFindProductOptionValueByIdArgs,
7683
+ shop_EntityFindProductVariantByIdArgs as EntityFindProductVariantByIdArgs,
7102
7684
  shop_EntityFindPublishedCustomSectionByIdArgs as EntityFindPublishedCustomSectionByIdArgs,
7103
7685
  shop_EntityFindPublishedPageInteractionByIdArgs as EntityFindPublishedPageInteractionByIdArgs,
7104
7686
  shop_EntityFindPublishedPageSectionByIdArgs as EntityFindPublishedPageSectionByIdArgs,
@@ -7154,12 +7736,14 @@ declare namespace shop {
7154
7736
  PageOrderField$1 as PageOrderField,
7155
7737
  PagePlatform$1 as PagePlatform,
7156
7738
  PageWhereInput$1 as PageWhereInput,
7739
+ shop_PlatformPageSectionWhereInput as PlatformPageSectionWhereInput,
7157
7740
  PrerequisitePriceRuleWhereInput$1 as PrerequisitePriceRuleWhereInput,
7158
7741
  PreviewCustomSectionType$1 as PreviewCustomSectionType,
7159
7742
  PreviewPageInteraction$1 as PreviewPageInteraction,
7160
7743
  PreviewPageSection$1 as PreviewPageSection,
7161
7744
  PreviewPageSectionMeta$1 as PreviewPageSectionMeta,
7162
7745
  PreviewThemePage$1 as PreviewThemePage,
7746
+ shop_PreviewThemePageMeta as PreviewThemePageMeta,
7163
7747
  PreviewThemePageOnlineStoreData$1 as PreviewThemePageOnlineStoreData,
7164
7748
  PreviewThemePageOnlineStoreDataType$1 as PreviewThemePageOnlineStoreDataType,
7165
7749
  PreviewThemePageStatus$1 as PreviewThemePageStatus,
@@ -7266,6 +7850,7 @@ declare namespace shop {
7266
7850
  QueryProductOptionValueLabelArgs$1 as QueryProductOptionValueLabelArgs,
7267
7851
  QueryProductOptionValuesArgs$1 as QueryProductOptionValuesArgs,
7268
7852
  QueryProductOptionsArgs$1 as QueryProductOptionsArgs,
7853
+ shop_QueryProductVariantsArgs as QueryProductVariantsArgs,
7269
7854
  QueryProductsArgs$1 as QueryProductsArgs,
7270
7855
  QueryPublishedShopMetasArgs$1 as QueryPublishedShopMetasArgs,
7271
7856
  QueryPublishedThemePageMetasArgs$1 as QueryPublishedThemePageMetasArgs,
@@ -7276,6 +7861,12 @@ declare namespace shop {
7276
7861
  SaleFunnelCampaignStatus$1 as SaleFunnelCampaignStatus,
7277
7862
  Scalars$2 as Scalars,
7278
7863
  SelectedOption$1 as SelectedOption,
7864
+ shop_SellingPlan as SellingPlan,
7865
+ shop_SellingPlanGroup as SellingPlanGroup,
7866
+ shop_SellingPlanGroupPlatform as SellingPlanGroupPlatform,
7867
+ shop_SellingPlanGroupWhereInput as SellingPlanGroupWhereInput,
7868
+ shop_SellingPlanPlatform as SellingPlanPlatform,
7869
+ shop_SellingPlanWhereInput as SellingPlanWhereInput,
7279
7870
  ShopDatabaseWhereInput$1 as ShopDatabaseWhereInput,
7280
7871
  ShopShopify$1 as ShopShopify,
7281
7872
  ShopTokenWhereInput$1 as ShopTokenWhereInput,
@@ -34167,6 +34758,8 @@ type ImageShape$1 = {
34167
34758
  };
34168
34759
  type SizeSettingGlobal = {
34169
34760
  shape?: 'square' | 'vertical' | 'horizontal' | 'custom' | 'original';
34761
+ shapeVideo?: string;
34762
+ enableVideoShape?: boolean;
34170
34763
  shapeLinked?: boolean;
34171
34764
  disableShapeLinked?: boolean;
34172
34765
  shapeValue?: string;
@@ -34790,6 +35383,47 @@ type CollectionSelectFragment = Pick<Collection$1, 'id' | 'createdAt' | 'updated
34790
35383
 
34791
35384
  type MediaSelectFragment = Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>;
34792
35385
 
35386
+ type ProductVariantsWithSellingPlansSelectFragment = Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
35387
+ selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
35388
+ media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
35389
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup, 'id' | 'appID'> & {
35390
+ sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan, 'id' | 'name' | 'baseID'>>>>;
35391
+ }>>>;
35392
+ };
35393
+
35394
+ type ProductsWithSellingPlansDetailFragment = Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
35395
+ options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
35396
+ values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
35397
+ }>>;
35398
+ featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
35399
+ collections?: Maybe$1<{
35400
+ edges: Array<{
35401
+ node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
35402
+ }>;
35403
+ }>;
35404
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup, 'appID' | 'baseID' | 'id' | 'name'> & {
35405
+ sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan, 'id' | 'name' | 'baseID'>>>>;
35406
+ }>>>;
35407
+ medias?: Maybe$1<{
35408
+ edges: Array<Pick<MediaEdge$1, 'cursor'> & {
35409
+ node?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
35410
+ }>;
35411
+ pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
35412
+ }>;
35413
+ variants?: Maybe$1<{
35414
+ edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
35415
+ node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
35416
+ selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
35417
+ media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
35418
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup, 'id' | 'appID'> & {
35419
+ sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan, 'id' | 'name' | 'baseID'>>>>;
35420
+ }>>>;
35421
+ }>;
35422
+ }>;
35423
+ pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
35424
+ }>;
35425
+ };
35426
+
34793
35427
  type AttributeProp = {
34794
35428
  key: string;
34795
35429
  value?: string;
@@ -34797,7 +35431,7 @@ type AttributeProp = {
34797
35431
  };
34798
35432
  type ProductContextProps = {
34799
35433
  uiqueId: string;
34800
- product?: ProductSelectFragment;
35434
+ product?: ProductsWithSellingPlansDetailFragment;
34801
35435
  quantity?: number;
34802
35436
  selectedOptions?: Record<string, string>;
34803
35437
  properties?: AttributeProp[];
@@ -34826,6 +35460,12 @@ type ProductContextProps = {
34826
35460
  setUseProductCompareAtPrice: (value?: boolean) => void;
34827
35461
  isChangeSelectedOption?: boolean;
34828
35462
  setIsChangeSelectedOption: (value: boolean) => void;
35463
+ isAgreeBuyWithSubscription?: boolean;
35464
+ setIsAgreeBuyWithSubscription: (value: boolean) => void;
35465
+ subscriptionSellingType?: string;
35466
+ setSubscriptionSellingType: (value: string) => void;
35467
+ selectedSellingPlan?: string;
35468
+ setSelectedSellingPlan: (value: string) => void;
34829
35469
  };
34830
35470
  type ProductProviderProps = Pick<ProductContextProps, 'product' | 'quantity' | 'selectedOptions' | 'isSyncProduct' | 'hasPreSelected'> & {
34831
35471
  initialVariantId?: string;
@@ -34917,6 +35557,8 @@ declare const useShopStore: <U>(selector: (state: ExtractState<StoreApi<ShopCont
34917
35557
  type PageContextProps = {
34918
35558
  dynamicProduct?: DynamicProduct;
34919
35559
  dynamicCollection?: DynamicCollection;
35560
+ assignedProductIds?: string[];
35561
+ isApplyAllProducts?: boolean;
34920
35562
  productOffers?: ProductOffer[];
34921
35563
  dynamicDiscountOffer?: OfferDynamicDiscount;
34922
35564
  salePageProductId?: string;
@@ -34928,7 +35570,10 @@ type PageContextProps = {
34928
35570
  settingType?: 'TRIGGER' | 'TARGET';
34929
35571
  };
34930
35572
  sidebarMode?: string;
35573
+ sellingPlanMeta?: any;
34931
35574
  setDynamicProduct: (data: DynamicProduct) => void;
35575
+ setAssignedProductIds: (assignedIds: string[]) => void;
35576
+ setIsApplyAllProducts: (isApplyAllProducts: boolean) => void;
34932
35577
  setDynamicCollection: (data: DynamicCollection) => void;
34933
35578
  setPostPurchaseProductOffers: (productOffers: ProductOffer[]) => void;
34934
35579
  setDynamicDiscountOffer: (dynamicDiscountOffer: OfferDynamicDiscount) => void;
@@ -34939,8 +35584,9 @@ type PageContextProps = {
34939
35584
  setInteractionSelectType: (selectType: 'ELEMENT' | 'PAGE') => void;
34940
35585
  setInteractionSettingType: (settingType?: 'TRIGGER' | 'TARGET') => void;
34941
35586
  setSidebarMode: (mode: string) => void;
35587
+ setSellingPlanMeta: (value: any) => void;
34942
35588
  };
34943
- type PageProviderProps = Pick<PageContextProps, 'dynamicProduct' | 'dynamicCollection' | 'productOffers' | 'dynamicDiscountOffer'> & {
35589
+ type PageProviderProps = Pick<PageContextProps, 'dynamicProduct' | 'dynamicCollection' | 'productOffers' | 'dynamicDiscountOffer' | 'assignedProductIds' | 'isApplyAllProducts' | 'sellingPlanMeta'> & {
34944
35590
  children: React.ReactNode;
34945
35591
  key?: React.Key;
34946
35592
  publicStoreFrontData?: PublicStoreFrontData | null;
@@ -35180,7 +35826,18 @@ type ProductsQueryVariables = Exact$1<{
35180
35826
  type ProductsQueryResponse = {
35181
35827
  products?: Maybe$1<{
35182
35828
  edges: Array<Pick<ProductEdge$1, 'cursor'> & {
35183
- node?: Maybe$1<Pick<Product$1, 'tags' | 'id' | 'title' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
35829
+ node?: Maybe$1<Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
35830
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup, 'appID' | 'baseID' | 'id' | 'name'>>>>;
35831
+ variants?: Maybe$1<{
35832
+ edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
35833
+ node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'baseID' | 'title' | 'barcode' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
35834
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup, 'id' | 'appID'>>>>;
35835
+ selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
35836
+ media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
35837
+ }>;
35838
+ }>;
35839
+ pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
35840
+ }>;
35184
35841
  collections?: Maybe$1<{
35185
35842
  edges: Array<{
35186
35843
  node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
@@ -35192,15 +35849,6 @@ type ProductsQueryResponse = {
35192
35849
  }>;
35193
35850
  pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
35194
35851
  }>;
35195
- variants?: Maybe$1<{
35196
- edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
35197
- node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
35198
- selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
35199
- media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
35200
- }>;
35201
- }>;
35202
- pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
35203
- }>;
35204
35852
  options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
35205
35853
  values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
35206
35854
  }>>;
@@ -35316,6 +35964,87 @@ type BlogsQueryResponse = {
35316
35964
  };
35317
35965
  declare const BlogsDocument = "\n query blogs($after: Cursor, $before: Cursor, $first: Int, $last: Int, $orderBy: BlogOrder, $where: BlogWhereInput, $articlesOrderBy: ArticleOrder) {\n blogs(\n after: $after\n before: $before\n first: $first\n last: $last\n orderBy: $orderBy\n where: $where\n ) {\n edges {\n cursor\n node {\n baseID\n description\n descriptionMeta\n handle\n articles(orderBy: $articlesOrderBy) {\n edges {\n cursor\n node {\n id\n title\n handle\n description\n templateSuffix\n titleMeta\n descriptionMeta\n baseID\n tags {\n name\n }\n content {\n excerptHtml\n html\n }\n isSample\n platformCreatedAt\n platformUpdatedAt\n publishedAt\n author\n media {\n width\n src\n height\n }\n }\n }\n totalCount\n }\n id\n platform\n tags\n templateSuffix\n title\n titleMeta\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}\n ";
35318
35966
 
35967
+ type ProductsWithSellingPlansQueryVariables = Exact$1<{
35968
+ first?: InputMaybe$1<Scalars$2['Int']>;
35969
+ where?: InputMaybe$1<ProductWhereInput$1>;
35970
+ firstMedia?: InputMaybe$1<Scalars$2['Int']>;
35971
+ orderBy?: InputMaybe$1<ProductOrder$1>;
35972
+ after?: InputMaybe$1<Scalars$2['Cursor']>;
35973
+ firstVariant?: InputMaybe$1<Scalars$2['Int']>;
35974
+ afterVariant?: InputMaybe$1<Scalars$2['Cursor']>;
35975
+ afterMedia?: InputMaybe$1<Scalars$2['Cursor']>;
35976
+ orderByMedia?: InputMaybe$1<MediaOrder$1>;
35977
+ }>;
35978
+ type ProductsWithSellingPlansQueryResponse = {
35979
+ products?: Maybe$1<{
35980
+ edges: Array<Pick<ProductEdge$1, 'cursor'> & {
35981
+ node?: Maybe$1<Pick<Product$1, 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'requiresSellingPlan' | 'vendor' | 'tags'> & {
35982
+ options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
35983
+ values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
35984
+ }>>;
35985
+ featuredImage?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
35986
+ collections?: Maybe$1<{
35987
+ edges: Array<{
35988
+ node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
35989
+ }>;
35990
+ }>;
35991
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup, 'appID' | 'baseID' | 'id' | 'name'>>>>;
35992
+ medias?: Maybe$1<{
35993
+ edges: Array<Pick<MediaEdge$1, 'cursor'> & {
35994
+ node?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
35995
+ }>;
35996
+ pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
35997
+ }>;
35998
+ variants?: Maybe$1<{
35999
+ edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
36000
+ node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
36001
+ selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
36002
+ media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
36003
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup, 'id' | 'appID'> & {
36004
+ sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan, 'id' | 'name' | 'baseID'>>>>;
36005
+ }>>>;
36006
+ }>;
36007
+ }>;
36008
+ pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
36009
+ }>;
36010
+ }>;
36011
+ }>;
36012
+ pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
36013
+ }>;
36014
+ };
36015
+ declare const ProductWithSellingPlansSelectFragment = "\n fragment ProductWithSellingPlansSelectFragment on ProductEdge {\n cursor\n node {\n id\n title\n createdAt\n description\n descriptionHtml\n handle\n averageRating\n isStorefront\n isSample\n baseID\n sku\n requiresSellingPlan\n options {\n ...ProductOptionSelect\n }\n vendor\n featuredImage {\n ...MediaSelect\n }\n collections {\n edges {\n node {\n id\n title\n }\n }\n }\n tags\n sellingPlanGroups {\n appID\n baseID\n id\n name\n }\n medias(first: $firstMedia, after: $afterMedia, orderBy: $orderByMedia) {\n edges {\n cursor\n node {\n ...MediaSelect\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n variants(first: $firstVariant, after: $afterVariant) {\n edges {\n cursor\n node {\n ...ProductVariantsWithSellingPlansSelect\n }\n }\n pageInfo {\n hasNextPage\n endCursor\n }\n }\n }\n}\n ";
36016
+ declare const ProductsWithSellingPlansDocument: string;
36017
+
36018
+ type ProductVariantsWithSellingPlansQueryVariables = Exact$1<{
36019
+ firstVariant?: InputMaybe$1<Scalars$2['Int']>;
36020
+ afterVariant?: InputMaybe$1<Scalars$2['Cursor']>;
36021
+ orderBy?: InputMaybe$1<ProductOrder$1>;
36022
+ orderByVariant?: InputMaybe$1<ProductVariantOrder$1>;
36023
+ where?: InputMaybe$1<ProductWhereInput$1>;
36024
+ first?: InputMaybe$1<Scalars$2['Int']>;
36025
+ }>;
36026
+ type ProductVariantsWithSellingPlansQueryResponse = {
36027
+ variants?: Maybe$1<{
36028
+ edges: Array<{
36029
+ node?: Maybe$1<Pick<Product$1, 'id'> & {
36030
+ variants?: Maybe$1<{
36031
+ edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
36032
+ node?: Maybe$1<Pick<ProductVariant$1, 'id' | 'title' | 'barcode' | 'baseID' | 'costPrice' | 'height' | 'inventoryPolicy' | 'inventoryQuantity' | 'inventoryStatus' | 'isDigital' | 'length' | 'lowInventoryAmount' | 'manageInventory' | 'mediaId' | 'platform' | 'price' | 'salePrice' | 'sku' | 'soldIndividually' | 'weight' | 'width'> & {
36033
+ selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
36034
+ media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
36035
+ sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup, 'id' | 'appID'> & {
36036
+ sellingPlans?: Maybe$1<Array<Maybe$1<Pick<SellingPlan, 'id' | 'name' | 'baseID'>>>>;
36037
+ }>>>;
36038
+ }>;
36039
+ }>;
36040
+ pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
36041
+ }>;
36042
+ }>;
36043
+ }>;
36044
+ }>;
36045
+ };
36046
+ declare const ProductVariantsWithSellingPlansDocument: string;
36047
+
35319
36048
  type LibraryTemplateQueryVariables = Exact<{
35320
36049
  libraryTemplateId: Scalars['ID'];
35321
36050
  }>;
@@ -35396,6 +36125,24 @@ type SaleFunnelOfferQueryResponse = {
35396
36125
  };
35397
36126
  declare const SaleFunnelOfferDocument = "\n query SaleFunnelOffer($saleFunnelOfferId: ID!) {\n saleFunnelOffer(id: $saleFunnelOfferId) {\n dynamicDiscounts {\n id\n createdAt\n updatedAt\n type\n valueType\n value\n appliedProductCount\n isEnabled\n }\n id\n isEnabled\n campaignID\n createdAt\n deletedAt\n }\n}\n ";
35398
36127
 
36128
+ type ThemePageMetaQueryVariables = Exact<{
36129
+ after?: InputMaybe<Scalars['Cursor']>;
36130
+ before?: InputMaybe<Scalars['Cursor']>;
36131
+ first?: InputMaybe<Scalars['Int']>;
36132
+ last?: InputMaybe<Scalars['Int']>;
36133
+ themePageID: Scalars['ID'];
36134
+ where?: InputMaybe<ThemePageMetaWhereInput>;
36135
+ }>;
36136
+ type ThemePageMetaQueryResponse = {
36137
+ themePageMeta?: Maybe<Pick<ThemePageMetaConnection, 'totalCount'> & {
36138
+ edges?: Maybe<Array<Maybe<Pick<ThemePageMetaEdge, 'cursor'> & {
36139
+ node?: Maybe<Pick<ThemePageMeta, 'createdAt' | 'id' | 'key' | 'updatedAt' | 'value'>>;
36140
+ }>>>;
36141
+ pageInfo: Pick<PageInfo, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>;
36142
+ }>;
36143
+ };
36144
+ declare const ThemePageMetaDocument = "\n query themePageMeta($after: Cursor, $before: Cursor, $first: Int, $last: Int, $themePageID: ID!, $where: ThemePageMetaWhereInput) {\n themePageMeta(\n after: $after\n before: $before\n first: $first\n last: $last\n themePageID: $themePageID\n where: $where\n ) {\n edges {\n cursor\n node {\n createdAt\n id\n key\n updatedAt\n value\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}\n ";
36145
+
35399
36146
  type BorderStyle = StateProp<Border> | ResponsiveStateProp<Border>;
35400
36147
  declare const getBorderStyle: (value?: Border) => {
35401
36148
  [k: string]: Record<"--b" | "--bc" | "--bw", string | undefined>;
@@ -36531,6 +37278,11 @@ type Background = {
36531
37278
  videoType?: 'youtube' | 'html5';
36532
37279
  loop?: boolean;
36533
37280
  lazyLoad?: boolean;
37281
+ videoCustomRatio?: {
37282
+ width?: string | number;
37283
+ height?: string | number;
37284
+ };
37285
+ videoAlign?: 'top' | 'center' | 'bottom';
36534
37286
  };
36535
37287
  type BgSize = 'cover' | 'contain' | '100% 100%';
36536
37288
  type BgRepeat$2 = 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat';
@@ -36853,10 +37605,10 @@ type GridArrange<T> = SharedControlType<T> & {
36853
37605
  readonly?: boolean;
36854
37606
  };
36855
37607
 
36856
- type SettingID = 'shape' | 'width' | 'height' | 'gap' | 'padding' | 'proportion';
37608
+ type SettingID = 'shape' | 'width' | 'height' | 'gap' | 'padding' | 'proportion' | 'shapeVideo';
36857
37609
  type ShapeOptionKeyword = 'original' | 'square' | 'vertical' | 'horizontal' | 'custom';
36858
37610
  type HeightOptionKeyword = 'fit-content' | 'fit-screen';
36859
- type OptionKeyword = 'default' | 'auto' | 'full' | 'equal' | 'small' | 'medium' | 'large' | HeightOptionKeyword | ShapeOptionKeyword | string;
37611
+ type OptionKeyword = 'default' | 'auto' | 'full' | 'equal' | 'small' | 'medium' | 'large' | '1/1' | '16/9' | '21/9' | '3/2' | '4/3' | '3/4' | '9/16' | '2/3' | HeightOptionKeyword | ShapeOptionKeyword | string;
36860
37612
  type PaddingOptions = 'small' | 'medium' | 'large' | 'custom';
36861
37613
  type ShapeOptions = 'square' | 'vertical' | 'horizontal' | 'custom' | 'original';
36862
37614
  type ShapeConfig = Partial<Record<ShapeOptions, string>>;
@@ -36867,6 +37619,7 @@ type PaddingConfig = Partial<Record<PaddingOptions, {
36867
37619
  type SettingConfig = {
36868
37620
  sizeConfig?: Partial<Record<'small' | 'medium' | 'large' | 'full', string>>;
36869
37621
  displayOptions?: OptionKeyword[];
37622
+ displayVideoOptions?: OptionKeyword[];
36870
37623
  paddingConfig?: PaddingConfig;
36871
37624
  shapeConfig?: ShapeConfig;
36872
37625
  shapeTitleConfig?: ShapeConfig;
@@ -37298,6 +38051,7 @@ type BackgroundMediaControlType<T> = SharedControlType<T> & {
37298
38051
  type: 'background-media';
37299
38052
  value?: BackgroundMedia;
37300
38053
  showVideo?: boolean;
38054
+ showRatioVideo?: boolean;
37301
38055
  showDeviceControl?: boolean;
37302
38056
  hideImage?: boolean;
37303
38057
  };
@@ -37324,6 +38078,7 @@ type BackgroundMedia = {
37324
38078
  loop?: boolean;
37325
38079
  lazyLoad?: boolean;
37326
38080
  preload?: boolean;
38081
+ videoAlign?: 'top' | 'center' | 'bottom';
37327
38082
  fallbackVideo?: Record<string, any> | undefined;
37328
38083
  fallbackImage?: FallbackImageProps | undefined;
37329
38084
  };
@@ -37494,6 +38249,70 @@ type ColumnWithSlider<T> = SharedControlType<T> & {
37494
38249
  fallbackArrayValue?: number[];
37495
38250
  };
37496
38251
 
38252
+ type SellingPlanControlType<T> = SharedControlType<T> & {
38253
+ type: 'selling-plan';
38254
+ };
38255
+ type PickSubscriptionOption<T> = {
38256
+ value: T extends ObjectDevices<infer U> ? U extends StateProp<infer A> ? A : U : T extends StateProp<infer B> ? B : T;
38257
+ label?: string | number;
38258
+ title?: string;
38259
+ showValue?: boolean;
38260
+ displayValue?: string;
38261
+ hideOnPage?: string[];
38262
+ flowTag?: string[];
38263
+ condition?: 'and' | 'or';
38264
+ icon?: string;
38265
+ svgIcon?: string;
38266
+ svgIconSelected?: string;
38267
+ tooltip?: string;
38268
+ type?: string;
38269
+ note?: string;
38270
+ maxOption?: number;
38271
+ subTitle?: string;
38272
+ disableHoverIcon?: boolean;
38273
+ };
38274
+ type BasePickSubscription<K> = {
38275
+ id: K;
38276
+ label?: string;
38277
+ info?: string;
38278
+ isFullWidth?: boolean;
38279
+ hyperlinkInfo?: HyperlinkInfo;
38280
+ hideOnMode?: {
38281
+ responsive?: boolean;
38282
+ mobileOnly?: boolean;
38283
+ };
38284
+ hide?: boolean;
38285
+ state?: {
38286
+ normal?: boolean;
38287
+ hover?: boolean;
38288
+ focus?: boolean;
38289
+ active?: boolean;
38290
+ };
38291
+ placeholder?: string;
38292
+ controlOption?: string;
38293
+ };
38294
+ type ResponsivePickSubscription<K, T, U> = BasePickSubscription<K> & {
38295
+ type: 'pick-subscription';
38296
+ options: PickSubscriptionOption<T>[];
38297
+ devices?: ResponsiveConfig<U>;
38298
+ };
38299
+ type SimplePickSubscriptionBase<K, T> = BasePickSubscription<K> & {
38300
+ default?: T;
38301
+ showSelectedIcon?: boolean;
38302
+ showSelectedSvg?: boolean;
38303
+ fixWidth?: boolean;
38304
+ disableSelectedText?: boolean;
38305
+ disableDefault?: boolean;
38306
+ };
38307
+ type SimplePickSubscription<K, T> = SimplePickSubscriptionBase<K, T> & {
38308
+ type: 'pick-subscription';
38309
+ options: PickSubscriptionOption<T>[];
38310
+ };
38311
+ type MappedPickSubscription<K, T> = NonNullable<T> extends ObjectDevices<infer U> ? ResponsivePickSubscription<K, T, U> : SimplePickSubscription<K, T>;
38312
+ type PickSubscriptionControlType<T> = {
38313
+ [K in keyof T]-?: MappedPickSubscription<K, T[K]>;
38314
+ }[keyof T];
38315
+
37497
38316
  type BehaviorStateControlType<T> = {
37498
38317
  id: string;
37499
38318
  type: 'behavior-state';
@@ -37515,7 +38334,7 @@ type GroupControlType<T> = {
37515
38334
  mobileOnly?: boolean;
37516
38335
  };
37517
38336
  };
37518
- type ControlProp<T> = (ProductBundleChildControlType<T> | SelectProductBundleControlType<T> | AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputStepperControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | Option$7<T> | OptionValueControlType<T> | OptionIllustrationControlType<T> | OpenLinkControlType<T> | SelectControlType<T> | Option$4<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<T> | TypographyV2ControlType<T> | MenuControlType<T> | BehaviorStateControlType<T> | PickLinkControlType<T> | BoxShadowControlType<T> | TextShadowControlType<T> | BorderControlType<T> | BorderRadiusControlType<T> | RadiusPresetControlType<T> | SizeControlType<T> | ChildItemType<T> | PickMultiProductControlType<T> | CollectionControlType<T> | BackgroundControlType<T> | VisibilityControlType<T> | SelectVariantControlType | VariantListingControlType | CountdownEvergreenType | Timezone<T> | CustomContentControlType<T> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T> | LayoutSegmentControlType<T> | InputSpacing<T> | UniqueIdControlType<T> | PositionSquareControlType<T> | CustomCodeEditor | LayoutControlType<T> | LayoutBannerControlType<T> | SwatchesLinkControlType<T> | VariantSwatchesPresetControlType<T> | VariantSwatchesOnlyDefaultVariantControlType<T> | ProductListControlType<T> | ArticleListControlType<T> | CollectionBannerControlType<T> | Ratio<T> | StickyDisplayControlType<T> | SyncProductPropertiesControlType<T> | StepsGuide<T> | ImageShape<T> | GridArrange<T> | SizeSetting<T> | ChildIconType<T> | DropdownInput<T> | Dropdown<T> | AliPickSectionControlType<T> | ParallaxScrollingType<T> | BackgroundColorPickerType<T> | PlayPauseControlType<T> | LayoutCustomSegmentControlType<T> | SneakPeakRange<T> | SneakPeakTypeControlType<T> | SneakPeakControlType<T> | ProductInputCurrencyUnitControlType<T> | TypographyPostPurchaseControlType<T> | ProductOffersControlType<T> | DiscountAndShippingFee<T> | PostPurchaseTextareaControlType<T> | NotesControlType<T> | ButtonLayoutType<T> | ShapeSelectorControlType<T> | DisplayTriggerControlType<T> | CustomPositionControlType<T> | DealControlType<T> | ProductHandleType<T> | ColorPickerV2ControlType<T> | BorderV2ControlType<T> | CornerV2ControlType<T> | PaddingV2ControlType<T> | BackgroundImageType<T> | BackgroundVideoType<T> | ShadowV2ControlType<T> | BackgroundMediaControlType<T> | BackgroundMediaComboControlType<T> | BackgroundVideoType<T> | ImageV2ControlType<T> | LayoutSelectorControlType<T> | ComboControlType<T> | DynamicOfferQuantity<T> | ImagePostPurchase<T> | ImageSelect<T> | InputSliderControlType<T> | VariantSwatchesPresetV2ControlType<T> | LayoutCarouselSelectorControlType<T> | BannerControlType<T> | ProductSourceControlType<T> | ColumnWithSlider<T>) & {
38337
+ type ControlProp<T> = (ProductBundleChildControlType<T> | SelectProductBundleControlType<T> | AngleControlType<T> | CheckboxControlType<T> | ColorPickerControlType<T> | GroupControlType<T> | IconControlType<T> | InputFixContentControlType<T> | InputNumberControlType<T> | InputStepperControlType<T> | InputUnitControlType<T> | InputUnitSpacingControlType<T> | InputUnitWidthControlType<T> | InputControlType<T> | MarginControlType<T> | PaddingControlType<T> | PositionControlType<T> | RadioGroupControlType | RangeControlType<T> | SegmentControlType<T> | Option$7<T> | OptionValueControlType<T> | OptionIllustrationControlType<T> | OpenLinkControlType<T> | SelectControlType<T> | Option$4<T> | TextareaControlType<T> | ToggleControlType<T> | ImageControlType<T> | ChildrensControlType | GridControlType<T> | FlexControlType<T> | TextEditorControlType<T> | ProductControlType<T> | TypographyControlType<T> | TypographyV2ControlType<T> | MenuControlType<T> | BehaviorStateControlType<T> | PickLinkControlType<T> | BoxShadowControlType<T> | TextShadowControlType<T> | BorderControlType<T> | BorderRadiusControlType<T> | RadiusPresetControlType<T> | SizeControlType<T> | ChildItemType<T> | PickMultiProductControlType<T> | CollectionControlType<T> | BackgroundControlType<T> | VisibilityControlType<T> | SelectVariantControlType | VariantListingControlType | CountdownEvergreenType | Timezone<T> | CustomContentControlType<T> | DateTimePickerControlType | CountdownDailyType | KlaviyoCodes | YotpoLoyaltyCodes | InputWidthControlType<T> | LayoutSegmentControlType<T> | InputSpacing<T> | UniqueIdControlType<T> | PositionSquareControlType<T> | CustomCodeEditor | LayoutControlType<T> | LayoutBannerControlType<T> | SwatchesLinkControlType<T> | VariantSwatchesPresetControlType<T> | VariantSwatchesOnlyDefaultVariantControlType<T> | ProductListControlType<T> | ArticleListControlType<T> | CollectionBannerControlType<T> | Ratio<T> | StickyDisplayControlType<T> | SyncProductPropertiesControlType<T> | StepsGuide<T> | ImageShape<T> | GridArrange<T> | SizeSetting<T> | ChildIconType<T> | DropdownInput<T> | Dropdown<T> | AliPickSectionControlType<T> | ParallaxScrollingType<T> | BackgroundColorPickerType<T> | PlayPauseControlType<T> | LayoutCustomSegmentControlType<T> | SneakPeakRange<T> | SneakPeakTypeControlType<T> | SneakPeakControlType<T> | ProductInputCurrencyUnitControlType<T> | TypographyPostPurchaseControlType<T> | ProductOffersControlType<T> | DiscountAndShippingFee<T> | PostPurchaseTextareaControlType<T> | NotesControlType<T> | ButtonLayoutType<T> | ShapeSelectorControlType<T> | DisplayTriggerControlType<T> | CustomPositionControlType<T> | DealControlType<T> | ProductHandleType<T> | ColorPickerV2ControlType<T> | BorderV2ControlType<T> | CornerV2ControlType<T> | PaddingV2ControlType<T> | BackgroundImageType<T> | BackgroundVideoType<T> | ShadowV2ControlType<T> | BackgroundMediaControlType<T> | BackgroundMediaComboControlType<T> | BackgroundVideoType<T> | ImageV2ControlType<T> | LayoutSelectorControlType<T> | ComboControlType<T> | DynamicOfferQuantity<T> | ImagePostPurchase<T> | ImageSelect<T> | InputSliderControlType<T> | VariantSwatchesPresetV2ControlType<T> | LayoutCarouselSelectorControlType<T> | BannerControlType<T> | ProductSourceControlType<T> | ColumnWithSlider<T> | SellingPlanControlType<T> | PickSubscriptionControlType<T>) & {
37519
38338
  validate?: ValidateType;
37520
38339
  };
37521
38340
  type ValidateType = {
@@ -37682,6 +38501,10 @@ type ComponentPreset = {
37682
38501
  hideTextContent?: boolean;
37683
38502
  flowTagComponents?: Record<string, InitComponentType[]>;
37684
38503
  rootOverride?: Record<string, any>;
38504
+ toolbarActiveConfig?: {
38505
+ tag?: string;
38506
+ path?: number;
38507
+ };
37685
38508
  };
37686
38509
 
37687
38510
  type Options$1 = {
@@ -38372,6 +39195,15 @@ declare const filterAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
38372
39195
  '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
38373
39196
  '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
38374
39197
  '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
39198
+ '--objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
39199
+ '--hvr-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
39200
+ '--focus-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
39201
+ '--objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
39202
+ '--hvr-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
39203
+ '--focus-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
39204
+ '--objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
39205
+ '--hvr-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
39206
+ '--focus-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
38375
39207
  '--op'?: csstype.Property.Opacity | undefined;
38376
39208
  '--hvr-op'?: csstype.Property.Opacity | undefined;
38377
39209
  '--focus-op'?: csstype.Property.Opacity | undefined;
@@ -40010,6 +40842,15 @@ declare const removeAttrInStyle: (style?: React.CSSProperties, filterKeys?: stri
40010
40842
  '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
40011
40843
  '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
40012
40844
  '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
40845
+ '--objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
40846
+ '--hvr-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
40847
+ '--focus-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
40848
+ '--objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
40849
+ '--hvr-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
40850
+ '--focus-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
40851
+ '--objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
40852
+ '--hvr-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
40853
+ '--focus-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
40013
40854
  '--op'?: csstype.Property.Opacity | undefined;
40014
40855
  '--hvr-op'?: csstype.Property.Opacity | undefined;
40015
40856
  '--focus-op'?: csstype.Property.Opacity | undefined;
@@ -41649,6 +42490,15 @@ declare const removePaddingYInStyle: (style?: React.CSSProperties) => {
41649
42490
  '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
41650
42491
  '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
41651
42492
  '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
42493
+ '--objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
42494
+ '--hvr-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
42495
+ '--focus-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
42496
+ '--objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
42497
+ '--hvr-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
42498
+ '--focus-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
42499
+ '--objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
42500
+ '--hvr-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
42501
+ '--focus-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
41652
42502
  '--op'?: csstype.Property.Opacity | undefined;
41653
42503
  '--hvr-op'?: csstype.Property.Opacity | undefined;
41654
42504
  '--focus-op'?: csstype.Property.Opacity | undefined;
@@ -43393,6 +44243,15 @@ declare const getResponsiveStyleShadow: (value?: any, styleAppliedFor?: ShadowSt
43393
44243
  '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
43394
44244
  '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
43395
44245
  '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
44246
+ '--objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
44247
+ '--hvr-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
44248
+ '--focus-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
44249
+ '--objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
44250
+ '--hvr-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
44251
+ '--focus-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
44252
+ '--objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
44253
+ '--hvr-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
44254
+ '--focus-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
43396
44255
  '--op'?: csstype.Property.Opacity | undefined;
43397
44256
  '--hvr-op'?: csstype.Property.Opacity | undefined;
43398
44257
  '--focus-op'?: csstype.Property.Opacity | undefined;
@@ -45034,6 +45893,15 @@ declare const composeShadow: (shadowInput?: ObjectDevices<StateProp<ShadowProps>
45034
45893
  '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
45035
45894
  '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
45036
45895
  '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
45896
+ '--objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
45897
+ '--hvr-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
45898
+ '--focus-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
45899
+ '--objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
45900
+ '--hvr-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
45901
+ '--focus-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
45902
+ '--objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
45903
+ '--hvr-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
45904
+ '--focus-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
45037
45905
  '--op'?: csstype.Property.Opacity | undefined;
45038
45906
  '--hvr-op'?: csstype.Property.Opacity | undefined;
45039
45907
  '--focus-op'?: csstype.Property.Opacity | undefined;
@@ -46730,6 +47598,15 @@ declare const composeTypographyStyle: (typo?: TypographySettingV2, typography?:
46730
47598
  '--objf-mobile'?: csstype.Property.ObjectFit | undefined;
46731
47599
  '--hvr-objf-mobile'?: csstype.Property.ObjectFit | undefined;
46732
47600
  '--focus-objf-mobile'?: csstype.Property.ObjectFit | undefined;
47601
+ '--objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
47602
+ '--hvr-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
47603
+ '--focus-objp'?: csstype.Property.ObjectPosition<string | number> | undefined;
47604
+ '--objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
47605
+ '--hvr-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
47606
+ '--focus-objp-tablet'?: csstype.Property.ObjectPosition<string | number> | undefined;
47607
+ '--objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
47608
+ '--hvr-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
47609
+ '--focus-objp-mobile'?: csstype.Property.ObjectPosition<string | number> | undefined;
46733
47610
  '--op'?: csstype.Property.Opacity | undefined;
46734
47611
  '--hvr-op'?: csstype.Property.Opacity | undefined;
46735
47612
  '--focus-op'?: csstype.Property.Opacity | undefined;
@@ -47866,6 +48743,12 @@ declare const useCollectionsQuery: (variable: CollectionsQueryVariables, options
47866
48743
 
47867
48744
  declare const useProductQuery: (productId?: string, options?: SWRConfiguration<ProductSelectFragment>, customFetcher?: FetchFunc) => swr__internal.SWRResponse<ProductSelectFragment, any, Partial<swr__internal.PublicConfiguration<ProductSelectFragment, any, (arg: ["query/product", FetchProductParams]) => swr__internal.FetcherResponse<ProductSelectFragment>>> | undefined>;
47868
48745
 
48746
+ declare const useProductOffersQuery: (ids?: string[], options?: SWRConfiguration<ProductsQueryResponse>, params?: {
48747
+ defaultSelectedProductCount?: number;
48748
+ allStatus?: boolean;
48749
+ fetcher?: FetchFunc;
48750
+ }) => swr__internal.SWRResponse<ProductsQueryResponse, any, Partial<swr__internal.PublicConfiguration<ProductsQueryResponse, any, (arg: ["query/products", FetchProductsParams]) => swr__internal.FetcherResponse<ProductsQueryResponse>>> | undefined>;
48751
+
47869
48752
  declare const useFetchHandle: () => FetchFunc;
47870
48753
 
47871
48754
  declare const useProductsQuery: (ids?: string[], options?: SWRConfiguration<ProductsQueryResponse>, params?: {
@@ -47895,6 +48778,14 @@ declare function useCartUI(): {
47895
48778
 
47896
48779
  declare const useCollection: () => CollectionSelectFragment | undefined;
47897
48780
 
48781
+ /**
48782
+ * Converts a Decimal (string) value to a number
48783
+ * Preserves undefined or null values, only converts valid Decimal strings
48784
+ * @param value - The Decimal value (string) or undefined/null
48785
+ * @param defaultValue - Default value to return if value is invalid (default: 0)
48786
+ * @returns The converted number value, or undefined/null if input was undefined/null
48787
+ */
48788
+ declare const convertDecimalToNumber: (value: Maybe$1<Scalars$2['Decimal']>, defaultValue?: number) => number | undefined;
47898
48789
  declare const shopifyPriceRounding: (amount: number | string, precision?: number) => string;
47899
48790
  declare const formatMoney: (cents: string, format: any) => string;
47900
48791
  declare const useFormatMoney: (amount: number, withCurrency: boolean) => string;
@@ -47968,7 +48859,7 @@ type StickyStore = {
47968
48859
  declare const useStickyStore: zustand.UseBoundStore<zustand.StoreApi<StickyStore>>;
47969
48860
 
47970
48861
  declare const useUniqProductID: () => string;
47971
- declare const useProduct: () => ProductSelectFragment | undefined;
48862
+ declare const useProduct: () => ProductsWithSellingPlansDetailFragment | undefined;
47972
48863
  declare const useFeaturedImageGlobal: () => MediaSelectFragment | undefined;
47973
48864
  declare const useProductProperties: () => {
47974
48865
  key: string;
@@ -48003,13 +48894,19 @@ declare const useSelectedOption: () => {
48003
48894
  setSelectedOption: (optionId?: Maybe$1<string>, optionValue?: Maybe$1<string>, productId?: Maybe$1<string>, noEmit?: boolean) => void;
48004
48895
  forceSelectedOption: (selectedOption?: Record<string, string>, productId?: Maybe$1<string>, noEmit?: boolean, isManualChange?: boolean) => void;
48005
48896
  };
48006
- declare const useVariants: () => Maybe$1<Pick<ProductVariant$1, "id" | "title" | "price" | "width" | "length" | "weight" | "height" | "barcode" | "baseID" | "costPrice" | "inventoryPolicy" | "inventoryQuantity" | "inventoryStatus" | "isDigital" | "lowInventoryAmount" | "manageInventory" | "mediaId" | "platform" | "salePrice" | "sku" | "soldIndividually"> & {
48897
+ declare const useVariants: () => Maybe$1<Pick<ProductVariant$1, "id" | "title" | "price" | "width" | "length" | "weight" | "height" | "baseID" | "barcode" | "costPrice" | "inventoryPolicy" | "inventoryQuantity" | "inventoryStatus" | "isDigital" | "lowInventoryAmount" | "manageInventory" | "mediaId" | "platform" | "salePrice" | "sku" | "soldIndividually"> & {
48007
48898
  selectedOptions: Pick<SelectedOption$1, "name" | "value" | "optionType">[];
48008
48899
  media?: Maybe$1<Pick<Media$1, "id" | "width" | "height" | "contentType" | "previewImage" | "src" | "alt">>;
48900
+ sellingPlanGroups?: Maybe$1<Maybe$1<Pick<SellingPlanGroup, "id" | "appID"> & {
48901
+ sellingPlans?: Maybe$1<Maybe$1<Pick<SellingPlan, "name" | "id" | "baseID">>[]>;
48902
+ }>[]>;
48009
48903
  }>[];
48010
- declare const useVariant: (id: string) => Maybe$1<Pick<ProductVariant$1, "id" | "title" | "price" | "width" | "length" | "weight" | "height" | "barcode" | "baseID" | "costPrice" | "inventoryPolicy" | "inventoryQuantity" | "inventoryStatus" | "isDigital" | "lowInventoryAmount" | "manageInventory" | "mediaId" | "platform" | "salePrice" | "sku" | "soldIndividually"> & {
48904
+ declare const useVariant: (id: string) => Maybe$1<Pick<ProductVariant$1, "id" | "title" | "price" | "width" | "length" | "weight" | "height" | "baseID" | "barcode" | "costPrice" | "inventoryPolicy" | "inventoryQuantity" | "inventoryStatus" | "isDigital" | "lowInventoryAmount" | "manageInventory" | "mediaId" | "platform" | "salePrice" | "sku" | "soldIndividually"> & {
48011
48905
  selectedOptions: Pick<SelectedOption$1, "name" | "value" | "optionType">[];
48012
48906
  media?: Maybe$1<Pick<Media$1, "id" | "width" | "height" | "contentType" | "previewImage" | "src" | "alt">>;
48907
+ sellingPlanGroups?: Maybe$1<Maybe$1<Pick<SellingPlanGroup, "id" | "appID"> & {
48908
+ sellingPlans?: Maybe$1<Maybe$1<Pick<SellingPlan, "name" | "id" | "baseID">>[]>;
48909
+ }>[]>;
48013
48910
  }>;
48014
48911
  declare const useCurrentVariant: () => Maybe$1<VariantSelectFragment>;
48015
48912
  declare const useCurrentVariantInStock: () => boolean;
@@ -48132,4 +49029,4 @@ declare const hasPublicStoreFrontData: (publicStoreFrontData: PublicStoreFrontDa
48132
49029
  declare const DEVICES: NameDevices[];
48133
49030
  declare const EMPTY_DEVICE_VALUE: undefined;
48134
49031
 
48135
- export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, ArticlesDocument, ArticlesQueryResponse, ArticlesQueryVariables, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BlogsDocument, BlogsQueryResponse, BlogsQueryVariables, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DEVICES, DeepPartial, DotStyle, Dropdown, DynamicCollection, DynamicProduct, EMPTY_DEVICE_VALUE, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, FontStyleType, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, I18nProvider, I18nProviderProps, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, LooxReviewsWidgetTypeV2, MediaSelectFragment, ModalProvider, ModalProviderProps, NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, Option$4 as Option, OptionNormalStyle, OptionSpecialStyle, Options$1 as Options, PaddingType, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedShopMetasQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderModeEnv, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, SaleFunnelOfferDocument, SaleFunnelOfferQueryResponse, SaleFunnelOfferQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, Setting, SettingByAnimationType, SettingByAnimationValues, SettingUIControl, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting$1 as SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StampedWidgetTypeV2, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Family, TypographyV2FontFamilyType, TypographyV2Props, UltimateSalesBoostWidgetType, ValidateType, VariableRelatedStyles, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, composeClasses, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadow, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertBoxShadowV1ToV2, convertHTML, convertOldLayout, convertTextAlignToJustify, createStoreFrontFetcher, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterHoverVariables, filterToolbarPreview, filterTruthyStyles, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgByDevice, getBgImageByDevice, getBgImageSourceByDevice, getBgVideoByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getColor, getCombinedBackgroundImage, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getFlexGrowClassByShapeGlobalSize, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getGradientImageBgrStyleByDevice, getHeightByShapeGlobalSize, getLayoutClasses, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImage, getStyleBgColor, getStyleBgImageSource, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, handleConvertInputBorderColor, hasPublicStoreFrontData, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleResponsiveWidth, makeStyleResponsiveWidthWithoutAuto, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, sanitizeLiquid, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFetchHandle, useFormatMoney, useHasPreSelected, useI18n, useI18nStore, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePreviewSharePage, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useRenderMode, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStickyStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
49032
+ export { AddOn, AddonProvider, AddonProviderProps, AdvancedType, AirProductReview, AliReviewsWidgetType, AlignItemProp, AlignProp, AnimationBaseSetting, AnimationConfig, AnimationDirectionType, AnimationEasingType, AnimationFadeSettingType, AnimationSetting, AnimationSettingType, AnimationShakeSettingType, AnimationSlideSettingType, AnimationTrigger, AnimationTriggerType, AnimationType, AnimationZoomDirectionType, AnimationZoomSettingType, appAPI as AppAPIType, ArticleListProvider, ArticleListProviderProps, ArticleProvider, ArticleProviderProps, ArticlesDocument, ArticlesQueryResponse, ArticlesQueryVariables, Background, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, BaseProps, BasePropsWrap, BlockEntity, BlogsDocument, BlogsQueryResponse, BlogsQueryVariables, BogosWidgetType, BoldSubscriptionsWidgetType, Border, BorderStyle, BuilderComponentProvider, BuilderComponentProviderProps, BuilderEntity, BuilderEntityNested, BuilderPreviewProvider, BuilderPreviewProviderProps, BuilderProvider, BuilderProviderProps, BuilderState, Builtin, CSSStateKey, CartLineProvider, CartLineProviderProps, CollectionDetailFilterDocument, CollectionDetailFilterQueryResponse, CollectionDetailFilterQueryVariables, CollectionDocument, CollectionProvider, CollectionProviderProps, CollectionQueryResponse, CollectionQueryVariables, CollectionSelectFragment, CollectionsDocument, CollectionsQueryResponse, CollectionsQueryVariables, ColorKey, ColorType$1 as ColorType, ColorValueType, Component, ComponentPreset, ComponentSetting, ContainerProp, ControlProp, ControlTriggerAction, ControlUI, CornerRadius, CornerRadiusType, CustomComponentConfig, DEVICES, DeepPartial, DotStyle, Dropdown, DynamicCollection, DynamicProduct, EMPTY_DEVICE_VALUE, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, FontStyleType, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, I18nProvider, I18nProviderProps, ImageShape$1 as ImageShape, InitComponentType, InstantJudgeMeReviewsWidgetType, InstantKlaviyoWidgetType, InstantLooxReviewsWidgetType, Interaction, InteractionCondition, InteractionElement, InteractionTarget, InteractionTargetEvent, InteractionTargetEventObject, InteractionTriggerEvent, JudgeMeReviewsWidgetType, KlaviyoWidgetType, LaiProductReviewsAdvancedWidgetType, LaiProductReviewsWidgetType, LibrarySaleFunnelDocument, LibrarySaleFunnelQueryResponse, LibrarySaleFunnelQueryVariables, LibraryTemplateDocument, LibraryTemplateQueryResponse, LibraryTemplateQueryVariables, LooxReviewsWidgetType, LooxReviewsWidgetTypeV2, MediaSelectFragment, ModalProvider, ModalProviderProps, NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, Option$4 as Option, OptionNormalStyle, OptionSpecialStyle, Options$1 as Options, PaddingType, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductVariantsWithSellingPlansDocument, ProductVariantsWithSellingPlansQueryResponse, ProductVariantsWithSellingPlansQueryVariables, ProductVariantsWithSellingPlansSelectFragment, ProductWithSellingPlansSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, ProductsWithSellingPlansDetailFragment, ProductsWithSellingPlansDocument, ProductsWithSellingPlansQueryResponse, ProductsWithSellingPlansQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedShopMetasQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderModeEnv, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, SaleFunnelOfferDocument, SaleFunnelOfferQueryResponse, SaleFunnelOfferQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, Setting, SettingByAnimationType, SettingByAnimationValues, SettingUIControl, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting$1 as SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StampedWidgetTypeV2, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageMetaDocument, ThemePageMetaQueryResponse, ThemePageMetaQueryVariables, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Family, TypographyV2FontFamilyType, TypographyV2Props, UltimateSalesBoostWidgetType, ValidateType, VariableRelatedStyles, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, composeClasses, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadow, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertBoxShadowV1ToV2, convertDecimalToNumber, convertHTML, convertOldLayout, convertTextAlignToJustify, createStoreFrontFetcher, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterHoverVariables, filterToolbarPreview, filterTruthyStyles, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgByDevice, getBgImageByDevice, getBgImageSourceByDevice, getBgVideoByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getColor, getCombinedBackgroundImage, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getFlexGrowClassByShapeGlobalSize, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getGradientImageBgrStyleByDevice, getHeightByShapeGlobalSize, getLayoutClasses, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImage, getStyleBgColor, getStyleBgImageSource, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, handleConvertInputBorderColor, hasPublicStoreFrontData, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleResponsiveWidth, makeStyleResponsiveWidthWithoutAuto, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, sanitizeLiquid, shopifyPriceRounding, splitStyle, styles, template, tiktokpixel, useAddToCart, useAddon, useAddons, useArticleListStore, useArticleStore, useArticlesQuery, useBlogsQuery, useBuilderComponent, useBuilderPreviewStore, useBuilderStore, useCartData, useCartDiscountCodesUpdate, useCartId, useCartLine, useCartLineStore, useCartNoteUpdate, useCartUI, useCheckAvailableVariantInStock, useCheckoutUrl, useCollection, useCollectionQuery, useCollectionStore, useCollectionsQuery, useConnectedShopify, useCreateCart, useCurrency, useCurrentDevice, useCurrentVariant, useCurrentVariantInStock, useEditorMode, useFeaturedImageGlobal, useFetchHandle, useFormatMoney, useHasPreSelected, useI18n, useI18nStore, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePreviewSharePage, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductOffersQuery, useProductProperties, useProductQuery, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useRenderMode, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStickyStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };