@gem-sdk/core 12.0.0-dev.24 → 12.0.0-dev.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/constant.js +1 -1
- package/dist/cjs/contexts/PageContext.js +1 -1
- package/dist/cjs/contexts/ProductContext.js +1 -1
- package/dist/cjs/graphql/fragments/product-variants-with-selling-plans-select.generated.js +40 -0
- package/dist/cjs/graphql/queries/product-variant-with-selling-plans.generated.js +25 -0
- package/dist/cjs/graphql/queries/products-with-selling-plans.generated.js +82 -0
- package/dist/cjs/graphql/queries/products.generated.js +6 -0
- package/dist/cjs/graphql-app-api/queries/ThemePageMeta.generated.js +30 -0
- package/dist/cjs/helpers/queries/getProductOffers.js +1 -0
- package/dist/cjs/hooks/shop/useProductOffersQuery.js +2 -0
- package/dist/cjs/index.js +1 -1
- package/dist/esm/components/constant.js +1 -1
- package/dist/esm/contexts/PageContext.js +1 -1
- package/dist/esm/contexts/ProductContext.js +1 -1
- package/dist/esm/graphql/fragments/product-variants-with-selling-plans-select.generated.js +40 -0
- package/dist/esm/graphql/queries/product-variant-with-selling-plans.generated.js +25 -0
- package/dist/esm/graphql/queries/products-with-selling-plans.generated.js +82 -0
- package/dist/esm/graphql/queries/products.generated.js +6 -0
- package/dist/esm/graphql-app-api/queries/ThemePageMeta.generated.js +30 -0
- package/dist/esm/helpers/queries/getProductOffers.js +1 -0
- package/dist/esm/hooks/shop/useProductOffersQuery.js +2 -0
- package/dist/esm/index.js +1 -1
- package/dist/types/index.d.ts +911 -91
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as zustand from 'zustand';
|
|
2
2
|
import { StoreApi } from 'zustand';
|
|
3
3
|
import { Cart as Cart$2, addToCartOperation, getCartOperation, cartDiscountCodesUpdateOperation, cartNoteUpdateOperation, createCartOperation, removeCartItemOperation, updateCartLineOperation } from '@gem-sdk/adapter-shopify';
|
|
4
|
-
import {
|
|
4
|
+
import { SWRConfiguration, MutatorOptions } from 'swr';
|
|
5
5
|
import { ShortHandProperty } from '@gem-sdk/styles';
|
|
6
6
|
import * as csstype from 'csstype';
|
|
7
7
|
import * as swr__internal from 'swr/_internal';
|
|
@@ -49,13 +49,18 @@ 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;
|
|
55
61
|
Upload: any;
|
|
56
62
|
_Any: any;
|
|
57
63
|
_FieldSet: any;
|
|
58
|
-
Decimal: string;
|
|
59
64
|
};
|
|
60
65
|
type Analytic$1 = {
|
|
61
66
|
fbPixelID?: Maybe$1<Scalars$2['String']>;
|
|
@@ -142,6 +147,7 @@ type ArticleConnection$1 = {
|
|
|
142
147
|
type ArticleContent$1 = {
|
|
143
148
|
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
144
149
|
excerptHtml?: Maybe$1<Scalars$2['String']>;
|
|
150
|
+
html?: Maybe$1<Scalars$2['String']>;
|
|
145
151
|
id: Scalars$2['ID'];
|
|
146
152
|
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
147
153
|
};
|
|
@@ -195,6 +201,22 @@ type ArticleContentWhereInput$1 = {
|
|
|
195
201
|
/** article edge predicates */
|
|
196
202
|
hasArticle?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
197
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']>;
|
|
198
220
|
/** id field predicates */
|
|
199
221
|
id?: InputMaybe$1<Scalars$2['ID']>;
|
|
200
222
|
idGT?: InputMaybe$1<Scalars$2['ID']>;
|
|
@@ -1120,6 +1142,17 @@ type CollectionProductWhereInput$1 = {
|
|
|
1120
1142
|
productIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
1121
1143
|
productIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
1122
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']>;
|
|
1123
1156
|
};
|
|
1124
1157
|
/**
|
|
1125
1158
|
* CollectionTagWhereInput is used for filtering CollectionTag objects.
|
|
@@ -2334,9 +2367,18 @@ type EntitledPriceRuleWhereInput$1 = {
|
|
|
2334
2367
|
variantIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
2335
2368
|
};
|
|
2336
2369
|
type Entity = {
|
|
2370
|
+
findArticleByID: Article$2;
|
|
2371
|
+
findArticleContentByID: ArticleContent$1;
|
|
2372
|
+
findBlogByID: Blog$1;
|
|
2373
|
+
findCollectionByID: Collection$1;
|
|
2374
|
+
findMediaByID: Media$1;
|
|
2337
2375
|
findMetafieldByID: Metafield$1;
|
|
2338
2376
|
findMetafieldDefinitionByID: MetafieldDefinition$1;
|
|
2377
|
+
findPageByID: Page$1;
|
|
2339
2378
|
findProductByID: Product$1;
|
|
2379
|
+
findProductOptionByID: ProductOption$1;
|
|
2380
|
+
findProductOptionValueByID: ProductOptionValue$1;
|
|
2381
|
+
findProductVariantByID: ProductVariant$1;
|
|
2340
2382
|
findPublishedCustomSectionByID: PublishedCustomSection$1;
|
|
2341
2383
|
findPublishedPageInteractionByID: PublishedPageInteraction$1;
|
|
2342
2384
|
findPublishedPageSectionByID: PublishedPageSection$1;
|
|
@@ -2350,15 +2392,42 @@ type Entity = {
|
|
|
2350
2392
|
findPublishedThemeStyleByID: PublishedThemeStyle$1;
|
|
2351
2393
|
findTagByID: Tag$1;
|
|
2352
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
|
+
};
|
|
2353
2410
|
type EntityFindMetafieldByIdArgs = {
|
|
2354
2411
|
id: Scalars$2['ID'];
|
|
2355
2412
|
};
|
|
2356
2413
|
type EntityFindMetafieldDefinitionByIdArgs = {
|
|
2357
2414
|
id: Scalars$2['ID'];
|
|
2358
2415
|
};
|
|
2416
|
+
type EntityFindPageByIdArgs = {
|
|
2417
|
+
id: Scalars$2['ID'];
|
|
2418
|
+
};
|
|
2359
2419
|
type EntityFindProductByIdArgs = {
|
|
2360
2420
|
id: Scalars$2['ID'];
|
|
2361
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
|
+
};
|
|
2362
2431
|
type EntityFindPublishedCustomSectionByIdArgs = {
|
|
2363
2432
|
id: Scalars$2['ID'];
|
|
2364
2433
|
};
|
|
@@ -2397,6 +2466,7 @@ type EntityFindTagByIdArgs = {
|
|
|
2397
2466
|
};
|
|
2398
2467
|
type Media$1 = {
|
|
2399
2468
|
alt?: Maybe$1<Scalars$2['String']>;
|
|
2469
|
+
baseID?: Scalars$2['String'];
|
|
2400
2470
|
contentType?: Maybe$1<Scalars$2['String']>;
|
|
2401
2471
|
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
2402
2472
|
deletedAt?: Maybe$1<Scalars$2['Time']>;
|
|
@@ -3036,6 +3106,7 @@ type Page$1 = {
|
|
|
3036
3106
|
metafield?: Maybe$1<Metafield$1>;
|
|
3037
3107
|
platform?: Maybe$1<PagePlatform$1>;
|
|
3038
3108
|
publishedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3109
|
+
templateSuffix?: Maybe$1<Scalars$2['String']>;
|
|
3039
3110
|
title?: Maybe$1<Scalars$2['String']>;
|
|
3040
3111
|
};
|
|
3041
3112
|
type PageMetafieldArgs$1 = {
|
|
@@ -3083,17 +3154,6 @@ type PageWhereInput$1 = {
|
|
|
3083
3154
|
baseIDLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
3084
3155
|
baseIDNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
3085
3156
|
baseIDNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
3086
|
-
/** base_updated_at field predicates */
|
|
3087
|
-
baseUpdatedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
3088
|
-
baseUpdatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
3089
|
-
baseUpdatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
3090
|
-
baseUpdatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
3091
|
-
baseUpdatedAtIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
3092
|
-
baseUpdatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
|
|
3093
|
-
baseUpdatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
3094
|
-
baseUpdatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
3095
|
-
baseUpdatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
3096
|
-
baseUpdatedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
3097
3157
|
/** created_at field predicates */
|
|
3098
3158
|
createdAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
3099
3159
|
createdAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
@@ -3182,6 +3242,22 @@ type PageWhereInput$1 = {
|
|
|
3182
3242
|
publishedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
3183
3243
|
publishedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
3184
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']>;
|
|
3185
3261
|
/** title field predicates */
|
|
3186
3262
|
title?: InputMaybe$1<Scalars$2['String']>;
|
|
3187
3263
|
titleContains?: InputMaybe$1<Scalars$2['String']>;
|
|
@@ -3208,6 +3284,59 @@ type PageWhereInput$1 = {
|
|
|
3208
3284
|
updatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
3209
3285
|
updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
3210
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
|
+
};
|
|
3211
3340
|
/**
|
|
3212
3341
|
* PrerequisitePriceRuleWhereInput is used for filtering PrerequisitePriceRule objects.
|
|
3213
3342
|
* Input was generated by ent.
|
|
@@ -3326,6 +3455,7 @@ type PreviewThemePage$1 = {
|
|
|
3326
3455
|
isGlobal?: Maybe$1<Scalars$2['Boolean']>;
|
|
3327
3456
|
isMobile?: Maybe$1<Scalars$2['Boolean']>;
|
|
3328
3457
|
isSample?: Maybe$1<Scalars$2['Boolean']>;
|
|
3458
|
+
metafields?: Maybe$1<Array<PreviewThemePageMeta>>;
|
|
3329
3459
|
name: Scalars$2['String'];
|
|
3330
3460
|
pageSections?: Maybe$1<Array<Maybe$1<PreviewPageSection$1>>>;
|
|
3331
3461
|
sectionPosition?: Maybe$1<Array<Scalars$2['String']>>;
|
|
@@ -3336,6 +3466,13 @@ type PreviewThemePage$1 = {
|
|
|
3336
3466
|
type: PreviewThemePageType$1;
|
|
3337
3467
|
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3338
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
|
+
};
|
|
3339
3476
|
type PreviewThemePageOnlineStoreData$1 = {
|
|
3340
3477
|
id: Scalars$2['ID'];
|
|
3341
3478
|
onlineStoreObjectBaseIDs?: Maybe$1<Array<Scalars$2['String']>>;
|
|
@@ -3724,19 +3861,22 @@ type Product$1 = {
|
|
|
3724
3861
|
featuredImageId?: Maybe$1<Scalars$2['ID']>;
|
|
3725
3862
|
handle?: Maybe$1<Scalars$2['String']>;
|
|
3726
3863
|
id: Scalars$2['ID'];
|
|
3864
|
+
inventoryQuantity?: Maybe$1<Scalars$2['Int']>;
|
|
3727
3865
|
isSample?: Maybe$1<Scalars$2['Boolean']>;
|
|
3728
3866
|
isStorefront?: Maybe$1<Scalars$2['Boolean']>;
|
|
3729
|
-
maxVariantPrice?: Maybe$1<Scalars$2['
|
|
3867
|
+
maxVariantPrice?: Maybe$1<Scalars$2['Decimal']>;
|
|
3730
3868
|
medias?: Maybe$1<MediaConnection$1>;
|
|
3731
3869
|
metafield?: Maybe$1<Metafield$1>;
|
|
3732
|
-
minVariantPrice?: Maybe$1<Scalars$2['
|
|
3870
|
+
minVariantPrice?: Maybe$1<Scalars$2['Decimal']>;
|
|
3733
3871
|
options?: Maybe$1<Array<ProductOption$1>>;
|
|
3734
3872
|
platform?: Maybe$1<ProductPlatform$1>;
|
|
3735
3873
|
platformCreatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3736
3874
|
platformUpdatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3737
3875
|
publishedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3876
|
+
requiresSellingPlan?: Maybe$1<Scalars$2['Boolean']>;
|
|
3738
3877
|
reviewCount?: Maybe$1<Scalars$2['Int']>;
|
|
3739
3878
|
sellingPlanGroupCount?: Maybe$1<Scalars$2['Int']>;
|
|
3879
|
+
sellingPlanGroups?: Maybe$1<Array<Maybe$1<SellingPlanGroup>>>;
|
|
3740
3880
|
sku?: Maybe$1<Scalars$2['String']>;
|
|
3741
3881
|
status?: Maybe$1<Scalars$2['String']>;
|
|
3742
3882
|
tags: Array<Scalars$2['String']>;
|
|
@@ -4109,7 +4249,7 @@ type ProductOrder$1 = {
|
|
|
4109
4249
|
direction: OrderDirection$1;
|
|
4110
4250
|
field?: InputMaybe$1<ProductOrderField$1>;
|
|
4111
4251
|
};
|
|
4112
|
-
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';
|
|
4113
4253
|
type ProductPlatform$1 = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
4114
4254
|
/**
|
|
4115
4255
|
* ProductTagWhereInput is used for filtering ProductTag objects.
|
|
@@ -4172,6 +4312,7 @@ type ProductVariant$1 = {
|
|
|
4172
4312
|
product?: Maybe$1<Product$1>;
|
|
4173
4313
|
salePrice?: Maybe$1<Scalars$2['Decimal']>;
|
|
4174
4314
|
selectedOptions: Array<SelectedOption$1>;
|
|
4315
|
+
sellingPlanGroups?: Maybe$1<Array<Maybe$1<SellingPlanGroup>>>;
|
|
4175
4316
|
sku?: Maybe$1<Scalars$2['String']>;
|
|
4176
4317
|
soldIndividually?: Maybe$1<Scalars$2['Boolean']>;
|
|
4177
4318
|
title?: Maybe$1<Scalars$2['String']>;
|
|
@@ -4235,15 +4376,15 @@ type ProductVariantWhereInput$1 = {
|
|
|
4235
4376
|
baseIDNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
4236
4377
|
baseIDNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
4237
4378
|
/** cost_price field predicates */
|
|
4238
|
-
costPrice?: InputMaybe$1<Scalars$2['
|
|
4239
|
-
costPriceGT?: InputMaybe$1<Scalars$2['
|
|
4240
|
-
costPriceGTE?: InputMaybe$1<Scalars$2['
|
|
4241
|
-
costPriceIn?: InputMaybe$1<Array<Scalars$2['
|
|
4379
|
+
costPrice?: InputMaybe$1<Scalars$2['Float']>;
|
|
4380
|
+
costPriceGT?: InputMaybe$1<Scalars$2['Float']>;
|
|
4381
|
+
costPriceGTE?: InputMaybe$1<Scalars$2['Float']>;
|
|
4382
|
+
costPriceIn?: InputMaybe$1<Array<Scalars$2['Float']>>;
|
|
4242
4383
|
costPriceIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4243
|
-
costPriceLT?: InputMaybe$1<Scalars$2['
|
|
4244
|
-
costPriceLTE?: InputMaybe$1<Scalars$2['
|
|
4245
|
-
costPriceNEQ?: InputMaybe$1<Scalars$2['
|
|
4246
|
-
costPriceNotIn?: InputMaybe$1<Array<Scalars$2['
|
|
4384
|
+
costPriceLT?: InputMaybe$1<Scalars$2['Float']>;
|
|
4385
|
+
costPriceLTE?: InputMaybe$1<Scalars$2['Float']>;
|
|
4386
|
+
costPriceNEQ?: InputMaybe$1<Scalars$2['Float']>;
|
|
4387
|
+
costPriceNotIn?: InputMaybe$1<Array<Scalars$2['Float']>>;
|
|
4247
4388
|
costPriceNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4248
4389
|
/** created_at field predicates */
|
|
4249
4390
|
createdAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
@@ -4271,6 +4412,9 @@ type ProductVariantWhereInput$1 = {
|
|
|
4271
4412
|
/** media edge predicates */
|
|
4272
4413
|
hasMedia?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4273
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>>;
|
|
4274
4418
|
/** prerequisite_price_rule edge predicates */
|
|
4275
4419
|
hasPrerequisitePriceRule?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4276
4420
|
hasPrerequisitePriceRuleWith?: InputMaybe$1<Array<PrerequisitePriceRuleWhereInput$1>>;
|
|
@@ -4422,15 +4566,15 @@ type ProductVariantWhereInput$1 = {
|
|
|
4422
4566
|
positionNotIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
|
|
4423
4567
|
positionNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4424
4568
|
/** price field predicates */
|
|
4425
|
-
price?: InputMaybe$1<Scalars$2['
|
|
4426
|
-
priceGT?: InputMaybe$1<Scalars$2['
|
|
4427
|
-
priceGTE?: InputMaybe$1<Scalars$2['
|
|
4428
|
-
priceIn?: InputMaybe$1<Array<Scalars$2['
|
|
4569
|
+
price?: InputMaybe$1<Scalars$2['Float']>;
|
|
4570
|
+
priceGT?: InputMaybe$1<Scalars$2['Float']>;
|
|
4571
|
+
priceGTE?: InputMaybe$1<Scalars$2['Float']>;
|
|
4572
|
+
priceIn?: InputMaybe$1<Array<Scalars$2['Float']>>;
|
|
4429
4573
|
priceIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4430
|
-
priceLT?: InputMaybe$1<Scalars$2['
|
|
4431
|
-
priceLTE?: InputMaybe$1<Scalars$2['
|
|
4432
|
-
priceNEQ?: InputMaybe$1<Scalars$2['
|
|
4433
|
-
priceNotIn?: InputMaybe$1<Array<Scalars$2['
|
|
4574
|
+
priceLT?: InputMaybe$1<Scalars$2['Float']>;
|
|
4575
|
+
priceLTE?: InputMaybe$1<Scalars$2['Float']>;
|
|
4576
|
+
priceNEQ?: InputMaybe$1<Scalars$2['Float']>;
|
|
4577
|
+
priceNotIn?: InputMaybe$1<Array<Scalars$2['Float']>>;
|
|
4434
4578
|
priceNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4435
4579
|
/** product_id field predicates */
|
|
4436
4580
|
productID?: InputMaybe$1<Scalars$2['ID']>;
|
|
@@ -4438,15 +4582,15 @@ type ProductVariantWhereInput$1 = {
|
|
|
4438
4582
|
productIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
4439
4583
|
productIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
4440
4584
|
/** sale_price field predicates */
|
|
4441
|
-
salePrice?: InputMaybe$1<Scalars$2['
|
|
4442
|
-
salePriceGT?: InputMaybe$1<Scalars$2['
|
|
4443
|
-
salePriceGTE?: InputMaybe$1<Scalars$2['
|
|
4444
|
-
salePriceIn?: InputMaybe$1<Array<Scalars$2['
|
|
4585
|
+
salePrice?: InputMaybe$1<Scalars$2['Float']>;
|
|
4586
|
+
salePriceGT?: InputMaybe$1<Scalars$2['Float']>;
|
|
4587
|
+
salePriceGTE?: InputMaybe$1<Scalars$2['Float']>;
|
|
4588
|
+
salePriceIn?: InputMaybe$1<Array<Scalars$2['Float']>>;
|
|
4445
4589
|
salePriceIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4446
|
-
salePriceLT?: InputMaybe$1<Scalars$2['
|
|
4447
|
-
salePriceLTE?: InputMaybe$1<Scalars$2['
|
|
4448
|
-
salePriceNEQ?: InputMaybe$1<Scalars$2['
|
|
4449
|
-
salePriceNotIn?: InputMaybe$1<Array<Scalars$2['
|
|
4590
|
+
salePriceLT?: InputMaybe$1<Scalars$2['Float']>;
|
|
4591
|
+
salePriceLTE?: InputMaybe$1<Scalars$2['Float']>;
|
|
4592
|
+
salePriceNEQ?: InputMaybe$1<Scalars$2['Float']>;
|
|
4593
|
+
salePriceNotIn?: InputMaybe$1<Array<Scalars$2['Float']>>;
|
|
4450
4594
|
salePriceNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4451
4595
|
/** sku field predicates */
|
|
4452
4596
|
sku?: InputMaybe$1<Scalars$2['String']>;
|
|
@@ -4695,26 +4839,26 @@ type ProductWhereInput$1 = {
|
|
|
4695
4839
|
lowInventoryAmountNotIn?: InputMaybe$1<Array<Scalars$2['Int']>>;
|
|
4696
4840
|
lowInventoryAmountNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4697
4841
|
/** max_variant_price field predicates */
|
|
4698
|
-
maxVariantPrice?: InputMaybe$1<Scalars$2['
|
|
4699
|
-
maxVariantPriceGT?: InputMaybe$1<Scalars$2['
|
|
4700
|
-
maxVariantPriceGTE?: InputMaybe$1<Scalars$2['
|
|
4701
|
-
maxVariantPriceIn?: InputMaybe$1<Array<Scalars$2['
|
|
4842
|
+
maxVariantPrice?: InputMaybe$1<Scalars$2['Float']>;
|
|
4843
|
+
maxVariantPriceGT?: InputMaybe$1<Scalars$2['Float']>;
|
|
4844
|
+
maxVariantPriceGTE?: InputMaybe$1<Scalars$2['Float']>;
|
|
4845
|
+
maxVariantPriceIn?: InputMaybe$1<Array<Scalars$2['Float']>>;
|
|
4702
4846
|
maxVariantPriceIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4703
|
-
maxVariantPriceLT?: InputMaybe$1<Scalars$2['
|
|
4704
|
-
maxVariantPriceLTE?: InputMaybe$1<Scalars$2['
|
|
4705
|
-
maxVariantPriceNEQ?: InputMaybe$1<Scalars$2['
|
|
4706
|
-
maxVariantPriceNotIn?: InputMaybe$1<Array<Scalars$2['
|
|
4847
|
+
maxVariantPriceLT?: InputMaybe$1<Scalars$2['Float']>;
|
|
4848
|
+
maxVariantPriceLTE?: InputMaybe$1<Scalars$2['Float']>;
|
|
4849
|
+
maxVariantPriceNEQ?: InputMaybe$1<Scalars$2['Float']>;
|
|
4850
|
+
maxVariantPriceNotIn?: InputMaybe$1<Array<Scalars$2['Float']>>;
|
|
4707
4851
|
maxVariantPriceNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4708
4852
|
/** min_variant_price field predicates */
|
|
4709
|
-
minVariantPrice?: InputMaybe$1<Scalars$2['
|
|
4710
|
-
minVariantPriceGT?: InputMaybe$1<Scalars$2['
|
|
4711
|
-
minVariantPriceGTE?: InputMaybe$1<Scalars$2['
|
|
4712
|
-
minVariantPriceIn?: InputMaybe$1<Array<Scalars$2['
|
|
4853
|
+
minVariantPrice?: InputMaybe$1<Scalars$2['Float']>;
|
|
4854
|
+
minVariantPriceGT?: InputMaybe$1<Scalars$2['Float']>;
|
|
4855
|
+
minVariantPriceGTE?: InputMaybe$1<Scalars$2['Float']>;
|
|
4856
|
+
minVariantPriceIn?: InputMaybe$1<Array<Scalars$2['Float']>>;
|
|
4713
4857
|
minVariantPriceIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4714
|
-
minVariantPriceLT?: InputMaybe$1<Scalars$2['
|
|
4715
|
-
minVariantPriceLTE?: InputMaybe$1<Scalars$2['
|
|
4716
|
-
minVariantPriceNEQ?: InputMaybe$1<Scalars$2['
|
|
4717
|
-
minVariantPriceNotIn?: InputMaybe$1<Array<Scalars$2['
|
|
4858
|
+
minVariantPriceLT?: InputMaybe$1<Scalars$2['Float']>;
|
|
4859
|
+
minVariantPriceLTE?: InputMaybe$1<Scalars$2['Float']>;
|
|
4860
|
+
minVariantPriceNEQ?: InputMaybe$1<Scalars$2['Float']>;
|
|
4861
|
+
minVariantPriceNotIn?: InputMaybe$1<Array<Scalars$2['Float']>>;
|
|
4718
4862
|
minVariantPriceNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
4719
4863
|
not?: InputMaybe$1<ProductWhereInput$1>;
|
|
4720
4864
|
or?: InputMaybe$1<Array<ProductWhereInput$1>>;
|
|
@@ -5094,7 +5238,7 @@ type PublishedOfferDynamicDiscountWhereInput$1 = {
|
|
|
5094
5238
|
valueTypeNotIn?: InputMaybe$1<Array<PublishedOfferDynamicDiscountValueType$1>>;
|
|
5095
5239
|
};
|
|
5096
5240
|
type PublishedOfferDynamicTriggerConditionOperator$1 = 'CONTAINS' | 'EQ' | 'GT' | 'GTE' | 'INSIDE' | 'LT' | 'LTE' | 'NEQ' | 'NOT_CONTAINS' | 'NOT_INSIDE';
|
|
5097
|
-
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';
|
|
5098
5242
|
/**
|
|
5099
5243
|
* PublishedOfferDynamicTriggerConditionWhereInput is used for filtering PublishedOfferDynamicTriggerCondition objects.
|
|
5100
5244
|
* Input was generated by ent.
|
|
@@ -5396,6 +5540,22 @@ type PublishedPageSectionMetaWhereInput$1 = {
|
|
|
5396
5540
|
*/
|
|
5397
5541
|
type PublishedPageSectionWhereInput$1 = {
|
|
5398
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']>;
|
|
5399
5559
|
/** cid field predicates */
|
|
5400
5560
|
cid?: InputMaybe$1<Scalars$2['String']>;
|
|
5401
5561
|
cidContains?: InputMaybe$1<Scalars$2['String']>;
|
|
@@ -5449,6 +5609,9 @@ type PublishedPageSectionWhereInput$1 = {
|
|
|
5449
5609
|
/** display field predicates */
|
|
5450
5610
|
display?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5451
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>>;
|
|
5452
5615
|
/** published_page_section_meta edge predicates */
|
|
5453
5616
|
hasPublishedPageSectionMeta?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5454
5617
|
hasPublishedPageSectionMetaWith?: InputMaybe$1<Array<PublishedPageSectionMetaWhereInput$1>>;
|
|
@@ -5920,6 +6083,7 @@ type PublishedThemePage$1 = {
|
|
|
5920
6083
|
name: Scalars$2['String'];
|
|
5921
6084
|
pageSections?: Maybe$1<Array<Maybe$1<PublishedPageSection$1>>>;
|
|
5922
6085
|
pageStyle?: Maybe$1<PublishedThemeStyle$1>;
|
|
6086
|
+
preloadSections?: Maybe$1<Array<Scalars$2['String']>>;
|
|
5923
6087
|
sectionPosition?: Maybe$1<Array<Scalars$2['String']>>;
|
|
5924
6088
|
splitPercentage?: Maybe$1<Scalars$2['Float']>;
|
|
5925
6089
|
status?: Maybe$1<PublishedThemePageStatus$1>;
|
|
@@ -6128,7 +6292,7 @@ type PublishedThemePageOnlineStoreDataWhereInput$1 = {
|
|
|
6128
6292
|
updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
6129
6293
|
};
|
|
6130
6294
|
type PublishedThemePageStatus$1 = 'DRAFT' | 'PUBLISHED';
|
|
6131
|
-
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';
|
|
6132
6296
|
/**
|
|
6133
6297
|
* PublishedThemePageWhereInput is used for filtering PublishedThemePage objects.
|
|
6134
6298
|
* Input was generated by ent.
|
|
@@ -6513,6 +6677,7 @@ type Query$1 = {
|
|
|
6513
6677
|
productOptionValueLabel: Array<Scalars$2['String']>;
|
|
6514
6678
|
productOptionValues?: Maybe$1<ProductOptionValueConnection$1>;
|
|
6515
6679
|
productOptions?: Maybe$1<ProductOptionConnection$1>;
|
|
6680
|
+
productVariants?: Maybe$1<ProductVariantConnection$1>;
|
|
6516
6681
|
products?: Maybe$1<ProductConnection$1>;
|
|
6517
6682
|
publishedShopMetas?: Maybe$1<Array<PublishedShopMeta$1>>;
|
|
6518
6683
|
publishedThemePageMetas?: Maybe$1<Array<PublishedThemePageMeta$1>>;
|
|
@@ -6641,6 +6806,14 @@ type QueryProductOptionsArgs$1 = {
|
|
|
6641
6806
|
orderBy?: InputMaybe$1<ProductOptionOrder$1>;
|
|
6642
6807
|
where?: InputMaybe$1<ProductOptionWhereInput$1>;
|
|
6643
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
|
+
};
|
|
6644
6817
|
type QueryProductsArgs$1 = {
|
|
6645
6818
|
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6646
6819
|
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
@@ -6679,6 +6852,388 @@ type SelectedOption$1 = {
|
|
|
6679
6852
|
value?: Maybe$1<Scalars$2['String']>;
|
|
6680
6853
|
valueBaseID?: Maybe$1<Scalars$2['String']>;
|
|
6681
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
|
+
};
|
|
6682
7237
|
/**
|
|
6683
7238
|
* ShopDatabaseWhereInput is used for filtering ShopDatabase objects.
|
|
6684
7239
|
* Input was generated by ent.
|
|
@@ -6732,25 +7287,17 @@ type ShopDatabaseWhereInput$1 = {
|
|
|
6732
7287
|
type ShopShopify$1 = {
|
|
6733
7288
|
address1?: Maybe$1<Scalars$2['String']>;
|
|
6734
7289
|
address2?: Maybe$1<Scalars$2['String']>;
|
|
6735
|
-
auto_configure_tax_inclusivity?: Maybe$1<Scalars$2['String']>;
|
|
6736
7290
|
checkout_api_supported?: Maybe$1<Scalars$2['Boolean']>;
|
|
6737
7291
|
city?: Maybe$1<Scalars$2['String']>;
|
|
6738
7292
|
cookie_consent_level?: Maybe$1<Scalars$2['String']>;
|
|
6739
7293
|
country?: Maybe$1<Scalars$2['String']>;
|
|
6740
7294
|
country_code?: Maybe$1<Scalars$2['String']>;
|
|
6741
7295
|
country_name?: Maybe$1<Scalars$2['String']>;
|
|
6742
|
-
county_taxes?: Maybe$1<Scalars$2['Boolean']>;
|
|
6743
7296
|
currency: Scalars$2['String'];
|
|
6744
7297
|
customer_email?: Maybe$1<Scalars$2['String']>;
|
|
6745
7298
|
domain: Scalars$2['String'];
|
|
6746
|
-
eligible_for_payments?: Maybe$1<Scalars$2['Boolean']>;
|
|
6747
7299
|
email: Scalars$2['String'];
|
|
6748
7300
|
enabled_presentment_currencies?: Maybe$1<Array<Maybe$1<Scalars$2['String']>>>;
|
|
6749
|
-
finances?: Maybe$1<Scalars$2['Boolean']>;
|
|
6750
|
-
google_apps_domain?: Maybe$1<Scalars$2['String']>;
|
|
6751
|
-
google_apps_login_enabled?: Maybe$1<Scalars$2['String']>;
|
|
6752
|
-
has_discounts?: Maybe$1<Scalars$2['Boolean']>;
|
|
6753
|
-
has_gift_cards?: Maybe$1<Scalars$2['Boolean']>;
|
|
6754
7301
|
has_storefront?: Maybe$1<Scalars$2['Boolean']>;
|
|
6755
7302
|
iana_timezone?: Maybe$1<Scalars$2['String']>;
|
|
6756
7303
|
id: Scalars$2['ID'];
|
|
@@ -6761,22 +7308,18 @@ type ShopShopify$1 = {
|
|
|
6761
7308
|
money_in_emails_format?: Maybe$1<Scalars$2['String']>;
|
|
6762
7309
|
money_with_currency_format?: Maybe$1<Scalars$2['String']>;
|
|
6763
7310
|
money_with_currency_in_emails_format?: Maybe$1<Scalars$2['String']>;
|
|
6764
|
-
multi_location_enabled?: Maybe$1<Scalars$2['Boolean']>;
|
|
6765
7311
|
myshopify_domain?: Maybe$1<Scalars$2['String']>;
|
|
6766
7312
|
name: Scalars$2['String'];
|
|
6767
7313
|
password_enabled?: Maybe$1<Scalars$2['Boolean']>;
|
|
6768
7314
|
phone?: Maybe$1<Scalars$2['String']>;
|
|
6769
7315
|
plan_display_name?: Maybe$1<Scalars$2['String']>;
|
|
7316
|
+
/** @deprecated Use plan_display_name instead. */
|
|
6770
7317
|
plan_name?: Maybe$1<Scalars$2['String']>;
|
|
6771
|
-
pre_launch_enabled?: Maybe$1<Scalars$2['Boolean']>;
|
|
6772
7318
|
primary_locale?: Maybe$1<Scalars$2['String']>;
|
|
6773
|
-
primary_location_id: Scalars$2['ID'];
|
|
6774
7319
|
province?: Maybe$1<Scalars$2['String']>;
|
|
6775
7320
|
province_code?: Maybe$1<Scalars$2['String']>;
|
|
6776
|
-
requires_extra_payments_agreement?: Maybe$1<Scalars$2['Boolean']>;
|
|
6777
7321
|
setup_required?: Maybe$1<Scalars$2['Boolean']>;
|
|
6778
7322
|
shop_owner?: Maybe$1<Scalars$2['String']>;
|
|
6779
|
-
source?: Maybe$1<Scalars$2['String']>;
|
|
6780
7323
|
tax_shipping?: Maybe$1<Scalars$2['String']>;
|
|
6781
7324
|
taxes_included?: Maybe$1<Scalars$2['String']>;
|
|
6782
7325
|
timezone?: Maybe$1<Scalars$2['String']>;
|
|
@@ -7001,21 +7544,41 @@ type VariantProductOptionWhereInput$1 = {
|
|
|
7001
7544
|
optionValueIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
7002
7545
|
optionValueIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
7003
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']>;
|
|
7004
7558
|
/** variant_id field predicates */
|
|
7005
7559
|
variantID?: InputMaybe$1<Scalars$2['ID']>;
|
|
7006
7560
|
variantIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
7007
7561
|
variantIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
7008
7562
|
variantIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
7009
7563
|
};
|
|
7010
|
-
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;
|
|
7011
7565
|
type _Service = {
|
|
7012
7566
|
sdl?: Maybe$1<Scalars$2['String']>;
|
|
7013
7567
|
};
|
|
7014
7568
|
|
|
7015
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;
|
|
7016
7575
|
type shop_EntityFindMetafieldByIdArgs = EntityFindMetafieldByIdArgs;
|
|
7017
7576
|
type shop_EntityFindMetafieldDefinitionByIdArgs = EntityFindMetafieldDefinitionByIdArgs;
|
|
7577
|
+
type shop_EntityFindPageByIdArgs = EntityFindPageByIdArgs;
|
|
7018
7578
|
type shop_EntityFindProductByIdArgs = EntityFindProductByIdArgs;
|
|
7579
|
+
type shop_EntityFindProductOptionByIdArgs = EntityFindProductOptionByIdArgs;
|
|
7580
|
+
type shop_EntityFindProductOptionValueByIdArgs = EntityFindProductOptionValueByIdArgs;
|
|
7581
|
+
type shop_EntityFindProductVariantByIdArgs = EntityFindProductVariantByIdArgs;
|
|
7019
7582
|
type shop_EntityFindPublishedCustomSectionByIdArgs = EntityFindPublishedCustomSectionByIdArgs;
|
|
7020
7583
|
type shop_EntityFindPublishedPageInteractionByIdArgs = EntityFindPublishedPageInteractionByIdArgs;
|
|
7021
7584
|
type shop_EntityFindPublishedPageSectionByIdArgs = EntityFindPublishedPageSectionByIdArgs;
|
|
@@ -7028,7 +7591,16 @@ type shop_EntityFindPublishedThemePageOnlineStoreDataByIdArgs = EntityFindPublis
|
|
|
7028
7591
|
type shop_EntityFindPublishedThemeSectionByIdArgs = EntityFindPublishedThemeSectionByIdArgs;
|
|
7029
7592
|
type shop_EntityFindPublishedThemeStyleByIdArgs = EntityFindPublishedThemeStyleByIdArgs;
|
|
7030
7593
|
type shop_EntityFindTagByIdArgs = EntityFindTagByIdArgs;
|
|
7594
|
+
type shop_PlatformPageSectionWhereInput = PlatformPageSectionWhereInput;
|
|
7595
|
+
type shop_PreviewThemePageMeta = PreviewThemePageMeta;
|
|
7596
|
+
type shop_QueryProductVariantsArgs = QueryProductVariantsArgs;
|
|
7031
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;
|
|
7032
7604
|
type shop__Entity = _Entity;
|
|
7033
7605
|
type shop__Service = _Service;
|
|
7034
7606
|
declare namespace shop {
|
|
@@ -7097,9 +7669,18 @@ declare namespace shop {
|
|
|
7097
7669
|
DiscountWhereInput$1 as DiscountWhereInput,
|
|
7098
7670
|
EntitledPriceRuleWhereInput$1 as EntitledPriceRuleWhereInput,
|
|
7099
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,
|
|
7100
7677
|
shop_EntityFindMetafieldByIdArgs as EntityFindMetafieldByIdArgs,
|
|
7101
7678
|
shop_EntityFindMetafieldDefinitionByIdArgs as EntityFindMetafieldDefinitionByIdArgs,
|
|
7679
|
+
shop_EntityFindPageByIdArgs as EntityFindPageByIdArgs,
|
|
7102
7680
|
shop_EntityFindProductByIdArgs as EntityFindProductByIdArgs,
|
|
7681
|
+
shop_EntityFindProductOptionByIdArgs as EntityFindProductOptionByIdArgs,
|
|
7682
|
+
shop_EntityFindProductOptionValueByIdArgs as EntityFindProductOptionValueByIdArgs,
|
|
7683
|
+
shop_EntityFindProductVariantByIdArgs as EntityFindProductVariantByIdArgs,
|
|
7103
7684
|
shop_EntityFindPublishedCustomSectionByIdArgs as EntityFindPublishedCustomSectionByIdArgs,
|
|
7104
7685
|
shop_EntityFindPublishedPageInteractionByIdArgs as EntityFindPublishedPageInteractionByIdArgs,
|
|
7105
7686
|
shop_EntityFindPublishedPageSectionByIdArgs as EntityFindPublishedPageSectionByIdArgs,
|
|
@@ -7155,12 +7736,14 @@ declare namespace shop {
|
|
|
7155
7736
|
PageOrderField$1 as PageOrderField,
|
|
7156
7737
|
PagePlatform$1 as PagePlatform,
|
|
7157
7738
|
PageWhereInput$1 as PageWhereInput,
|
|
7739
|
+
shop_PlatformPageSectionWhereInput as PlatformPageSectionWhereInput,
|
|
7158
7740
|
PrerequisitePriceRuleWhereInput$1 as PrerequisitePriceRuleWhereInput,
|
|
7159
7741
|
PreviewCustomSectionType$1 as PreviewCustomSectionType,
|
|
7160
7742
|
PreviewPageInteraction$1 as PreviewPageInteraction,
|
|
7161
7743
|
PreviewPageSection$1 as PreviewPageSection,
|
|
7162
7744
|
PreviewPageSectionMeta$1 as PreviewPageSectionMeta,
|
|
7163
7745
|
PreviewThemePage$1 as PreviewThemePage,
|
|
7746
|
+
shop_PreviewThemePageMeta as PreviewThemePageMeta,
|
|
7164
7747
|
PreviewThemePageOnlineStoreData$1 as PreviewThemePageOnlineStoreData,
|
|
7165
7748
|
PreviewThemePageOnlineStoreDataType$1 as PreviewThemePageOnlineStoreDataType,
|
|
7166
7749
|
PreviewThemePageStatus$1 as PreviewThemePageStatus,
|
|
@@ -7267,6 +7850,7 @@ declare namespace shop {
|
|
|
7267
7850
|
QueryProductOptionValueLabelArgs$1 as QueryProductOptionValueLabelArgs,
|
|
7268
7851
|
QueryProductOptionValuesArgs$1 as QueryProductOptionValuesArgs,
|
|
7269
7852
|
QueryProductOptionsArgs$1 as QueryProductOptionsArgs,
|
|
7853
|
+
shop_QueryProductVariantsArgs as QueryProductVariantsArgs,
|
|
7270
7854
|
QueryProductsArgs$1 as QueryProductsArgs,
|
|
7271
7855
|
QueryPublishedShopMetasArgs$1 as QueryPublishedShopMetasArgs,
|
|
7272
7856
|
QueryPublishedThemePageMetasArgs$1 as QueryPublishedThemePageMetasArgs,
|
|
@@ -7277,6 +7861,12 @@ declare namespace shop {
|
|
|
7277
7861
|
SaleFunnelCampaignStatus$1 as SaleFunnelCampaignStatus,
|
|
7278
7862
|
Scalars$2 as Scalars,
|
|
7279
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,
|
|
7280
7870
|
ShopDatabaseWhereInput$1 as ShopDatabaseWhereInput,
|
|
7281
7871
|
ShopShopify$1 as ShopShopify,
|
|
7282
7872
|
ShopTokenWhereInput$1 as ShopTokenWhereInput,
|
|
@@ -34793,6 +35383,47 @@ type CollectionSelectFragment = Pick<Collection$1, 'id' | 'createdAt' | 'updated
|
|
|
34793
35383
|
|
|
34794
35384
|
type MediaSelectFragment = Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>;
|
|
34795
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
|
+
|
|
34796
35427
|
type AttributeProp = {
|
|
34797
35428
|
key: string;
|
|
34798
35429
|
value?: string;
|
|
@@ -34800,7 +35431,7 @@ type AttributeProp = {
|
|
|
34800
35431
|
};
|
|
34801
35432
|
type ProductContextProps = {
|
|
34802
35433
|
uiqueId: string;
|
|
34803
|
-
product?:
|
|
35434
|
+
product?: ProductsWithSellingPlansDetailFragment;
|
|
34804
35435
|
quantity?: number;
|
|
34805
35436
|
selectedOptions?: Record<string, string>;
|
|
34806
35437
|
properties?: AttributeProp[];
|
|
@@ -34829,6 +35460,12 @@ type ProductContextProps = {
|
|
|
34829
35460
|
setUseProductCompareAtPrice: (value?: boolean) => void;
|
|
34830
35461
|
isChangeSelectedOption?: boolean;
|
|
34831
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;
|
|
34832
35469
|
};
|
|
34833
35470
|
type ProductProviderProps = Pick<ProductContextProps, 'product' | 'quantity' | 'selectedOptions' | 'isSyncProduct' | 'hasPreSelected'> & {
|
|
34834
35471
|
initialVariantId?: string;
|
|
@@ -34911,7 +35548,7 @@ type ShopProviderProps = {
|
|
|
34911
35548
|
key?: React.Key;
|
|
34912
35549
|
addons: AddonContextProps['components'];
|
|
34913
35550
|
storeOption: Omit<ShopContextProps, 'changeLocale' | 'changeStorefrontInfo' | 'changeCurrency' | 'changeSwatches' | 'changeLayoutSettings' | 'changeCreateThemeSectionCount' | 'changeShopPlan' | 'changeLimitCreateThemeSection' | 'updatePriceWithCurrency'>;
|
|
34914
|
-
queryOption?:
|
|
35551
|
+
queryOption?: Partial<SWRConfiguration<any, any>>;
|
|
34915
35552
|
};
|
|
34916
35553
|
|
|
34917
35554
|
declare const ShopProvider: React.FC<ShopProviderProps>;
|
|
@@ -34933,6 +35570,7 @@ type PageContextProps = {
|
|
|
34933
35570
|
settingType?: 'TRIGGER' | 'TARGET';
|
|
34934
35571
|
};
|
|
34935
35572
|
sidebarMode?: string;
|
|
35573
|
+
sellingPlanMeta?: any;
|
|
34936
35574
|
setDynamicProduct: (data: DynamicProduct) => void;
|
|
34937
35575
|
setAssignedProductIds: (assignedIds: string[]) => void;
|
|
34938
35576
|
setIsApplyAllProducts: (isApplyAllProducts: boolean) => void;
|
|
@@ -34946,8 +35584,9 @@ type PageContextProps = {
|
|
|
34946
35584
|
setInteractionSelectType: (selectType: 'ELEMENT' | 'PAGE') => void;
|
|
34947
35585
|
setInteractionSettingType: (settingType?: 'TRIGGER' | 'TARGET') => void;
|
|
34948
35586
|
setSidebarMode: (mode: string) => void;
|
|
35587
|
+
setSellingPlanMeta: (value: any) => void;
|
|
34949
35588
|
};
|
|
34950
|
-
type PageProviderProps = Pick<PageContextProps, 'dynamicProduct' | 'dynamicCollection' | 'productOffers' | 'dynamicDiscountOffer' | 'assignedProductIds' | 'isApplyAllProducts'> & {
|
|
35589
|
+
type PageProviderProps = Pick<PageContextProps, 'dynamicProduct' | 'dynamicCollection' | 'productOffers' | 'dynamicDiscountOffer' | 'assignedProductIds' | 'isApplyAllProducts' | 'sellingPlanMeta'> & {
|
|
34951
35590
|
children: React.ReactNode;
|
|
34952
35591
|
key?: React.Key;
|
|
34953
35592
|
publicStoreFrontData?: PublicStoreFrontData | null;
|
|
@@ -35187,7 +35826,18 @@ type ProductsQueryVariables = Exact$1<{
|
|
|
35187
35826
|
type ProductsQueryResponse = {
|
|
35188
35827
|
products?: Maybe$1<{
|
|
35189
35828
|
edges: Array<Pick<ProductEdge$1, 'cursor'> & {
|
|
35190
|
-
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
|
+
}>;
|
|
35191
35841
|
collections?: Maybe$1<{
|
|
35192
35842
|
edges: Array<{
|
|
35193
35843
|
node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
|
|
@@ -35199,15 +35849,6 @@ type ProductsQueryResponse = {
|
|
|
35199
35849
|
}>;
|
|
35200
35850
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
|
|
35201
35851
|
}>;
|
|
35202
|
-
variants?: Maybe$1<{
|
|
35203
|
-
edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
|
|
35204
|
-
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'> & {
|
|
35205
|
-
selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
|
|
35206
|
-
media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
|
|
35207
|
-
}>;
|
|
35208
|
-
}>;
|
|
35209
|
-
pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
|
|
35210
|
-
}>;
|
|
35211
35852
|
options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
|
|
35212
35853
|
values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
|
|
35213
35854
|
}>>;
|
|
@@ -35323,6 +35964,87 @@ type BlogsQueryResponse = {
|
|
|
35323
35964
|
};
|
|
35324
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 ";
|
|
35325
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
|
+
|
|
35326
36048
|
type LibraryTemplateQueryVariables = Exact<{
|
|
35327
36049
|
libraryTemplateId: Scalars['ID'];
|
|
35328
36050
|
}>;
|
|
@@ -35403,9 +36125,27 @@ type SaleFunnelOfferQueryResponse = {
|
|
|
35403
36125
|
};
|
|
35404
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 ";
|
|
35405
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
|
+
|
|
35406
36146
|
type BorderStyle = StateProp<Border> | ResponsiveStateProp<Border>;
|
|
35407
36147
|
declare const getBorderStyle: (value?: Border) => {
|
|
35408
|
-
[k: string]: Record<"--
|
|
36148
|
+
[k: string]: Record<"--bc" | "--b" | "--bw", string | undefined>;
|
|
35409
36149
|
};
|
|
35410
36150
|
declare const getBorderRadiusStyle: (borderRadius?: CornerRadius, shapeRadius?: CornerRadius) => {};
|
|
35411
36151
|
declare const handleConvertBorderStyle: (value?: BorderStyle, type?: 'button') => {} | undefined;
|
|
@@ -37509,6 +38249,70 @@ type ColumnWithSlider<T> = SharedControlType<T> & {
|
|
|
37509
38249
|
fallbackArrayValue?: number[];
|
|
37510
38250
|
};
|
|
37511
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
|
+
|
|
37512
38316
|
type BehaviorStateControlType<T> = {
|
|
37513
38317
|
id: string;
|
|
37514
38318
|
type: 'behavior-state';
|
|
@@ -37530,7 +38334,7 @@ type GroupControlType<T> = {
|
|
|
37530
38334
|
mobileOnly?: boolean;
|
|
37531
38335
|
};
|
|
37532
38336
|
};
|
|
37533
|
-
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>) & {
|
|
37534
38338
|
validate?: ValidateType;
|
|
37535
38339
|
};
|
|
37536
38340
|
type ValidateType = {
|
|
@@ -37697,6 +38501,10 @@ type ComponentPreset = {
|
|
|
37697
38501
|
hideTextContent?: boolean;
|
|
37698
38502
|
flowTagComponents?: Record<string, InitComponentType[]>;
|
|
37699
38503
|
rootOverride?: Record<string, any>;
|
|
38504
|
+
toolbarActiveConfig?: {
|
|
38505
|
+
tag?: string;
|
|
38506
|
+
path?: number;
|
|
38507
|
+
};
|
|
37700
38508
|
};
|
|
37701
38509
|
|
|
37702
38510
|
type Options$1 = {
|
|
@@ -47935,6 +48743,12 @@ declare const useCollectionsQuery: (variable: CollectionsQueryVariables, options
|
|
|
47935
48743
|
|
|
47936
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>;
|
|
47937
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
|
+
|
|
47938
48752
|
declare const useFetchHandle: () => FetchFunc;
|
|
47939
48753
|
|
|
47940
48754
|
declare const useProductsQuery: (ids?: string[], options?: SWRConfiguration<ProductsQueryResponse>, params?: {
|
|
@@ -48045,7 +48859,7 @@ type StickyStore = {
|
|
|
48045
48859
|
declare const useStickyStore: zustand.UseBoundStore<zustand.StoreApi<StickyStore>>;
|
|
48046
48860
|
|
|
48047
48861
|
declare const useUniqProductID: () => string;
|
|
48048
|
-
declare const useProduct: () =>
|
|
48862
|
+
declare const useProduct: () => ProductsWithSellingPlansDetailFragment | undefined;
|
|
48049
48863
|
declare const useFeaturedImageGlobal: () => MediaSelectFragment | undefined;
|
|
48050
48864
|
declare const useProductProperties: () => {
|
|
48051
48865
|
key: string;
|
|
@@ -48080,13 +48894,19 @@ declare const useSelectedOption: () => {
|
|
|
48080
48894
|
setSelectedOption: (optionId?: Maybe$1<string>, optionValue?: Maybe$1<string>, productId?: Maybe$1<string>, noEmit?: boolean) => void;
|
|
48081
48895
|
forceSelectedOption: (selectedOption?: Record<string, string>, productId?: Maybe$1<string>, noEmit?: boolean, isManualChange?: boolean) => void;
|
|
48082
48896
|
};
|
|
48083
|
-
declare const useVariants: () => Maybe$1<Pick<ProductVariant$1, "id" | "title" | "price" | "width" | "length" | "weight" | "height" | "
|
|
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"> & {
|
|
48084
48898
|
selectedOptions: Pick<SelectedOption$1, "name" | "value" | "optionType">[];
|
|
48085
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
|
+
}>[]>;
|
|
48086
48903
|
}>[];
|
|
48087
|
-
declare const useVariant: (id: string) => Maybe$1<Pick<ProductVariant$1, "id" | "title" | "price" | "width" | "length" | "weight" | "height" | "
|
|
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"> & {
|
|
48088
48905
|
selectedOptions: Pick<SelectedOption$1, "name" | "value" | "optionType">[];
|
|
48089
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
|
+
}>[]>;
|
|
48090
48910
|
}>;
|
|
48091
48911
|
declare const useCurrentVariant: () => Maybe$1<VariantSelectFragment>;
|
|
48092
48912
|
declare const useCurrentVariantInStock: () => boolean;
|
|
@@ -48209,4 +49029,4 @@ declare const hasPublicStoreFrontData: (publicStoreFrontData: PublicStoreFrontDa
|
|
|
48209
49029
|
declare const DEVICES: NameDevices[];
|
|
48210
49030
|
declare const EMPTY_DEVICE_VALUE: undefined;
|
|
48211
49031
|
|
|
48212
|
-
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, 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, 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 };
|