@gem-sdk/core 8.0.0-dev.102 → 8.0.0-dev.103
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.
|
@@ -4,6 +4,24 @@
|
|
|
4
4
|
node {
|
|
5
5
|
...ProductSelect
|
|
6
6
|
tags
|
|
7
|
+
sellingPlanGroups {
|
|
8
|
+
appID
|
|
9
|
+
baseID
|
|
10
|
+
id
|
|
11
|
+
name
|
|
12
|
+
}
|
|
13
|
+
variants {
|
|
14
|
+
edges {
|
|
15
|
+
node {
|
|
16
|
+
id
|
|
17
|
+
baseID
|
|
18
|
+
sellingPlanGroups {
|
|
19
|
+
id
|
|
20
|
+
appID
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
7
25
|
collections {
|
|
8
26
|
edges {
|
|
9
27
|
node {
|
|
@@ -4,6 +4,24 @@ import{ProductSelect as e}from"../fragments/product.generated.js";import{Product
|
|
|
4
4
|
node {
|
|
5
5
|
...ProductSelect
|
|
6
6
|
tags
|
|
7
|
+
sellingPlanGroups {
|
|
8
|
+
appID
|
|
9
|
+
baseID
|
|
10
|
+
id
|
|
11
|
+
name
|
|
12
|
+
}
|
|
13
|
+
variants {
|
|
14
|
+
edges {
|
|
15
|
+
node {
|
|
16
|
+
id
|
|
17
|
+
baseID
|
|
18
|
+
sellingPlanGroups {
|
|
19
|
+
id
|
|
20
|
+
appID
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
7
25
|
collections {
|
|
8
26
|
edges {
|
|
9
27
|
node {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -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.
|
|
@@ -5304,7 +5448,6 @@ type PublishedPageSection$1 = {
|
|
|
5304
5448
|
name: Scalars$2['String'];
|
|
5305
5449
|
publishedPageSectionMeta?: Maybe$1<Array<Maybe$1<PublishedPageSectionMeta$1>>>;
|
|
5306
5450
|
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
5307
|
-
isThemeSection?: Maybe$1<Scalars$2['Boolean']>;
|
|
5308
5451
|
};
|
|
5309
5452
|
type PublishedPageSectionMeta$1 = {
|
|
5310
5453
|
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
@@ -5397,6 +5540,22 @@ type PublishedPageSectionMetaWhereInput$1 = {
|
|
|
5397
5540
|
*/
|
|
5398
5541
|
type PublishedPageSectionWhereInput$1 = {
|
|
5399
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']>;
|
|
5400
5559
|
/** cid field predicates */
|
|
5401
5560
|
cid?: InputMaybe$1<Scalars$2['String']>;
|
|
5402
5561
|
cidContains?: InputMaybe$1<Scalars$2['String']>;
|
|
@@ -5450,6 +5609,9 @@ type PublishedPageSectionWhereInput$1 = {
|
|
|
5450
5609
|
/** display field predicates */
|
|
5451
5610
|
display?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5452
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>>;
|
|
5453
5615
|
/** published_page_section_meta edge predicates */
|
|
5454
5616
|
hasPublishedPageSectionMeta?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5455
5617
|
hasPublishedPageSectionMetaWith?: InputMaybe$1<Array<PublishedPageSectionMetaWhereInput$1>>;
|
|
@@ -5915,13 +6077,13 @@ type PublishedThemePage$1 = {
|
|
|
5915
6077
|
id: Scalars$2['ID'];
|
|
5916
6078
|
interaction?: Maybe$1<PublishedPageInteraction$1>;
|
|
5917
6079
|
isGlobal?: Maybe$1<Scalars$2['Boolean']>;
|
|
5918
|
-
preloadSections?: Maybe$1<Array<Scalars$2['String']>>;
|
|
5919
6080
|
isMobile?: Maybe$1<Scalars$2['Boolean']>;
|
|
5920
6081
|
isSample?: Maybe$1<Scalars$2['Boolean']>;
|
|
5921
6082
|
metafields?: Maybe$1<Array<Maybe$1<PublishedThemePageMeta$1>>>;
|
|
5922
6083
|
name: Scalars$2['String'];
|
|
5923
6084
|
pageSections?: Maybe$1<Array<Maybe$1<PublishedPageSection$1>>>;
|
|
5924
6085
|
pageStyle?: Maybe$1<PublishedThemeStyle$1>;
|
|
6086
|
+
preloadSections?: Maybe$1<Array<Scalars$2['String']>>;
|
|
5925
6087
|
sectionPosition?: Maybe$1<Array<Scalars$2['String']>>;
|
|
5926
6088
|
splitPercentage?: Maybe$1<Scalars$2['Float']>;
|
|
5927
6089
|
status?: Maybe$1<PublishedThemePageStatus$1>;
|
|
@@ -6130,7 +6292,7 @@ type PublishedThemePageOnlineStoreDataWhereInput$1 = {
|
|
|
6130
6292
|
updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
6131
6293
|
};
|
|
6132
6294
|
type PublishedThemePageStatus$1 = 'DRAFT' | 'PUBLISHED';
|
|
6133
|
-
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';
|
|
6134
6296
|
/**
|
|
6135
6297
|
* PublishedThemePageWhereInput is used for filtering PublishedThemePage objects.
|
|
6136
6298
|
* Input was generated by ent.
|
|
@@ -6515,6 +6677,7 @@ type Query$1 = {
|
|
|
6515
6677
|
productOptionValueLabel: Array<Scalars$2['String']>;
|
|
6516
6678
|
productOptionValues?: Maybe$1<ProductOptionValueConnection$1>;
|
|
6517
6679
|
productOptions?: Maybe$1<ProductOptionConnection$1>;
|
|
6680
|
+
productVariants?: Maybe$1<ProductVariantConnection$1>;
|
|
6518
6681
|
products?: Maybe$1<ProductConnection$1>;
|
|
6519
6682
|
publishedShopMetas?: Maybe$1<Array<PublishedShopMeta$1>>;
|
|
6520
6683
|
publishedThemePageMetas?: Maybe$1<Array<PublishedThemePageMeta$1>>;
|
|
@@ -6643,6 +6806,14 @@ type QueryProductOptionsArgs$1 = {
|
|
|
6643
6806
|
orderBy?: InputMaybe$1<ProductOptionOrder$1>;
|
|
6644
6807
|
where?: InputMaybe$1<ProductOptionWhereInput$1>;
|
|
6645
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
|
+
};
|
|
6646
6817
|
type QueryProductsArgs$1 = {
|
|
6647
6818
|
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6648
6819
|
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
@@ -6681,6 +6852,388 @@ type SelectedOption$1 = {
|
|
|
6681
6852
|
value?: Maybe$1<Scalars$2['String']>;
|
|
6682
6853
|
valueBaseID?: Maybe$1<Scalars$2['String']>;
|
|
6683
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
|
+
};
|
|
6684
7237
|
/**
|
|
6685
7238
|
* ShopDatabaseWhereInput is used for filtering ShopDatabase objects.
|
|
6686
7239
|
* Input was generated by ent.
|
|
@@ -6734,25 +7287,17 @@ type ShopDatabaseWhereInput$1 = {
|
|
|
6734
7287
|
type ShopShopify$1 = {
|
|
6735
7288
|
address1?: Maybe$1<Scalars$2['String']>;
|
|
6736
7289
|
address2?: Maybe$1<Scalars$2['String']>;
|
|
6737
|
-
auto_configure_tax_inclusivity?: Maybe$1<Scalars$2['String']>;
|
|
6738
7290
|
checkout_api_supported?: Maybe$1<Scalars$2['Boolean']>;
|
|
6739
7291
|
city?: Maybe$1<Scalars$2['String']>;
|
|
6740
7292
|
cookie_consent_level?: Maybe$1<Scalars$2['String']>;
|
|
6741
7293
|
country?: Maybe$1<Scalars$2['String']>;
|
|
6742
7294
|
country_code?: Maybe$1<Scalars$2['String']>;
|
|
6743
7295
|
country_name?: Maybe$1<Scalars$2['String']>;
|
|
6744
|
-
county_taxes?: Maybe$1<Scalars$2['Boolean']>;
|
|
6745
7296
|
currency: Scalars$2['String'];
|
|
6746
7297
|
customer_email?: Maybe$1<Scalars$2['String']>;
|
|
6747
7298
|
domain: Scalars$2['String'];
|
|
6748
|
-
eligible_for_payments?: Maybe$1<Scalars$2['Boolean']>;
|
|
6749
7299
|
email: Scalars$2['String'];
|
|
6750
7300
|
enabled_presentment_currencies?: Maybe$1<Array<Maybe$1<Scalars$2['String']>>>;
|
|
6751
|
-
finances?: Maybe$1<Scalars$2['Boolean']>;
|
|
6752
|
-
google_apps_domain?: Maybe$1<Scalars$2['String']>;
|
|
6753
|
-
google_apps_login_enabled?: Maybe$1<Scalars$2['String']>;
|
|
6754
|
-
has_discounts?: Maybe$1<Scalars$2['Boolean']>;
|
|
6755
|
-
has_gift_cards?: Maybe$1<Scalars$2['Boolean']>;
|
|
6756
7301
|
has_storefront?: Maybe$1<Scalars$2['Boolean']>;
|
|
6757
7302
|
iana_timezone?: Maybe$1<Scalars$2['String']>;
|
|
6758
7303
|
id: Scalars$2['ID'];
|
|
@@ -6763,22 +7308,18 @@ type ShopShopify$1 = {
|
|
|
6763
7308
|
money_in_emails_format?: Maybe$1<Scalars$2['String']>;
|
|
6764
7309
|
money_with_currency_format?: Maybe$1<Scalars$2['String']>;
|
|
6765
7310
|
money_with_currency_in_emails_format?: Maybe$1<Scalars$2['String']>;
|
|
6766
|
-
multi_location_enabled?: Maybe$1<Scalars$2['Boolean']>;
|
|
6767
7311
|
myshopify_domain?: Maybe$1<Scalars$2['String']>;
|
|
6768
7312
|
name: Scalars$2['String'];
|
|
6769
7313
|
password_enabled?: Maybe$1<Scalars$2['Boolean']>;
|
|
6770
7314
|
phone?: Maybe$1<Scalars$2['String']>;
|
|
6771
7315
|
plan_display_name?: Maybe$1<Scalars$2['String']>;
|
|
7316
|
+
/** @deprecated Use plan_display_name instead. */
|
|
6772
7317
|
plan_name?: Maybe$1<Scalars$2['String']>;
|
|
6773
|
-
pre_launch_enabled?: Maybe$1<Scalars$2['Boolean']>;
|
|
6774
7318
|
primary_locale?: Maybe$1<Scalars$2['String']>;
|
|
6775
|
-
primary_location_id: Scalars$2['ID'];
|
|
6776
7319
|
province?: Maybe$1<Scalars$2['String']>;
|
|
6777
7320
|
province_code?: Maybe$1<Scalars$2['String']>;
|
|
6778
|
-
requires_extra_payments_agreement?: Maybe$1<Scalars$2['Boolean']>;
|
|
6779
7321
|
setup_required?: Maybe$1<Scalars$2['Boolean']>;
|
|
6780
7322
|
shop_owner?: Maybe$1<Scalars$2['String']>;
|
|
6781
|
-
source?: Maybe$1<Scalars$2['String']>;
|
|
6782
7323
|
tax_shipping?: Maybe$1<Scalars$2['String']>;
|
|
6783
7324
|
taxes_included?: Maybe$1<Scalars$2['String']>;
|
|
6784
7325
|
timezone?: Maybe$1<Scalars$2['String']>;
|
|
@@ -7003,21 +7544,41 @@ type VariantProductOptionWhereInput$1 = {
|
|
|
7003
7544
|
optionValueIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
7004
7545
|
optionValueIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
7005
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']>;
|
|
7006
7558
|
/** variant_id field predicates */
|
|
7007
7559
|
variantID?: InputMaybe$1<Scalars$2['ID']>;
|
|
7008
7560
|
variantIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
7009
7561
|
variantIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
7010
7562
|
variantIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
7011
7563
|
};
|
|
7012
|
-
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;
|
|
7013
7565
|
type _Service = {
|
|
7014
7566
|
sdl?: Maybe$1<Scalars$2['String']>;
|
|
7015
7567
|
};
|
|
7016
7568
|
|
|
7017
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;
|
|
7018
7575
|
type shop_EntityFindMetafieldByIdArgs = EntityFindMetafieldByIdArgs;
|
|
7019
7576
|
type shop_EntityFindMetafieldDefinitionByIdArgs = EntityFindMetafieldDefinitionByIdArgs;
|
|
7577
|
+
type shop_EntityFindPageByIdArgs = EntityFindPageByIdArgs;
|
|
7020
7578
|
type shop_EntityFindProductByIdArgs = EntityFindProductByIdArgs;
|
|
7579
|
+
type shop_EntityFindProductOptionByIdArgs = EntityFindProductOptionByIdArgs;
|
|
7580
|
+
type shop_EntityFindProductOptionValueByIdArgs = EntityFindProductOptionValueByIdArgs;
|
|
7581
|
+
type shop_EntityFindProductVariantByIdArgs = EntityFindProductVariantByIdArgs;
|
|
7021
7582
|
type shop_EntityFindPublishedCustomSectionByIdArgs = EntityFindPublishedCustomSectionByIdArgs;
|
|
7022
7583
|
type shop_EntityFindPublishedPageInteractionByIdArgs = EntityFindPublishedPageInteractionByIdArgs;
|
|
7023
7584
|
type shop_EntityFindPublishedPageSectionByIdArgs = EntityFindPublishedPageSectionByIdArgs;
|
|
@@ -7030,7 +7591,16 @@ type shop_EntityFindPublishedThemePageOnlineStoreDataByIdArgs = EntityFindPublis
|
|
|
7030
7591
|
type shop_EntityFindPublishedThemeSectionByIdArgs = EntityFindPublishedThemeSectionByIdArgs;
|
|
7031
7592
|
type shop_EntityFindPublishedThemeStyleByIdArgs = EntityFindPublishedThemeStyleByIdArgs;
|
|
7032
7593
|
type shop_EntityFindTagByIdArgs = EntityFindTagByIdArgs;
|
|
7594
|
+
type shop_PlatformPageSectionWhereInput = PlatformPageSectionWhereInput;
|
|
7595
|
+
type shop_PreviewThemePageMeta = PreviewThemePageMeta;
|
|
7596
|
+
type shop_QueryProductVariantsArgs = QueryProductVariantsArgs;
|
|
7033
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;
|
|
7034
7604
|
type shop__Entity = _Entity;
|
|
7035
7605
|
type shop__Service = _Service;
|
|
7036
7606
|
declare namespace shop {
|
|
@@ -7099,9 +7669,18 @@ declare namespace shop {
|
|
|
7099
7669
|
DiscountWhereInput$1 as DiscountWhereInput,
|
|
7100
7670
|
EntitledPriceRuleWhereInput$1 as EntitledPriceRuleWhereInput,
|
|
7101
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,
|
|
7102
7677
|
shop_EntityFindMetafieldByIdArgs as EntityFindMetafieldByIdArgs,
|
|
7103
7678
|
shop_EntityFindMetafieldDefinitionByIdArgs as EntityFindMetafieldDefinitionByIdArgs,
|
|
7679
|
+
shop_EntityFindPageByIdArgs as EntityFindPageByIdArgs,
|
|
7104
7680
|
shop_EntityFindProductByIdArgs as EntityFindProductByIdArgs,
|
|
7681
|
+
shop_EntityFindProductOptionByIdArgs as EntityFindProductOptionByIdArgs,
|
|
7682
|
+
shop_EntityFindProductOptionValueByIdArgs as EntityFindProductOptionValueByIdArgs,
|
|
7683
|
+
shop_EntityFindProductVariantByIdArgs as EntityFindProductVariantByIdArgs,
|
|
7105
7684
|
shop_EntityFindPublishedCustomSectionByIdArgs as EntityFindPublishedCustomSectionByIdArgs,
|
|
7106
7685
|
shop_EntityFindPublishedPageInteractionByIdArgs as EntityFindPublishedPageInteractionByIdArgs,
|
|
7107
7686
|
shop_EntityFindPublishedPageSectionByIdArgs as EntityFindPublishedPageSectionByIdArgs,
|
|
@@ -7157,12 +7736,14 @@ declare namespace shop {
|
|
|
7157
7736
|
PageOrderField$1 as PageOrderField,
|
|
7158
7737
|
PagePlatform$1 as PagePlatform,
|
|
7159
7738
|
PageWhereInput$1 as PageWhereInput,
|
|
7739
|
+
shop_PlatformPageSectionWhereInput as PlatformPageSectionWhereInput,
|
|
7160
7740
|
PrerequisitePriceRuleWhereInput$1 as PrerequisitePriceRuleWhereInput,
|
|
7161
7741
|
PreviewCustomSectionType$1 as PreviewCustomSectionType,
|
|
7162
7742
|
PreviewPageInteraction$1 as PreviewPageInteraction,
|
|
7163
7743
|
PreviewPageSection$1 as PreviewPageSection,
|
|
7164
7744
|
PreviewPageSectionMeta$1 as PreviewPageSectionMeta,
|
|
7165
7745
|
PreviewThemePage$1 as PreviewThemePage,
|
|
7746
|
+
shop_PreviewThemePageMeta as PreviewThemePageMeta,
|
|
7166
7747
|
PreviewThemePageOnlineStoreData$1 as PreviewThemePageOnlineStoreData,
|
|
7167
7748
|
PreviewThemePageOnlineStoreDataType$1 as PreviewThemePageOnlineStoreDataType,
|
|
7168
7749
|
PreviewThemePageStatus$1 as PreviewThemePageStatus,
|
|
@@ -7269,6 +7850,7 @@ declare namespace shop {
|
|
|
7269
7850
|
QueryProductOptionValueLabelArgs$1 as QueryProductOptionValueLabelArgs,
|
|
7270
7851
|
QueryProductOptionValuesArgs$1 as QueryProductOptionValuesArgs,
|
|
7271
7852
|
QueryProductOptionsArgs$1 as QueryProductOptionsArgs,
|
|
7853
|
+
shop_QueryProductVariantsArgs as QueryProductVariantsArgs,
|
|
7272
7854
|
QueryProductsArgs$1 as QueryProductsArgs,
|
|
7273
7855
|
QueryPublishedShopMetasArgs$1 as QueryPublishedShopMetasArgs,
|
|
7274
7856
|
QueryPublishedThemePageMetasArgs$1 as QueryPublishedThemePageMetasArgs,
|
|
@@ -7279,6 +7861,12 @@ declare namespace shop {
|
|
|
7279
7861
|
SaleFunnelCampaignStatus$1 as SaleFunnelCampaignStatus,
|
|
7280
7862
|
Scalars$2 as Scalars,
|
|
7281
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,
|
|
7282
7870
|
ShopDatabaseWhereInput$1 as ShopDatabaseWhereInput,
|
|
7283
7871
|
ShopShopify$1 as ShopShopify,
|
|
7284
7872
|
ShopTokenWhereInput$1 as ShopTokenWhereInput,
|
|
@@ -35189,7 +35777,18 @@ type ProductsQueryVariables = Exact$1<{
|
|
|
35189
35777
|
type ProductsQueryResponse = {
|
|
35190
35778
|
products?: Maybe$1<{
|
|
35191
35779
|
edges: Array<Pick<ProductEdge$1, 'cursor'> & {
|
|
35192
|
-
node?: Maybe$1<Pick<Product$1, 'tags' | 'id' | 'title' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
|
|
35780
|
+
node?: Maybe$1<Pick<Product$1, 'tags' | 'id' | 'title' | 'createdAt' | 'description' | 'descriptionHtml' | 'handle' | 'averageRating' | 'isStorefront' | 'isSample' | 'baseID' | 'sku' | 'vendor'> & {
|
|
35781
|
+
sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup, 'appID' | 'baseID' | 'id' | 'name'>>>>;
|
|
35782
|
+
variants?: Maybe$1<{
|
|
35783
|
+
edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
|
|
35784
|
+
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'> & {
|
|
35785
|
+
sellingPlanGroups?: Maybe$1<Array<Maybe$1<Pick<SellingPlanGroup, 'id' | 'appID'>>>>;
|
|
35786
|
+
selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
|
|
35787
|
+
media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
|
|
35788
|
+
}>;
|
|
35789
|
+
}>;
|
|
35790
|
+
pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
|
|
35791
|
+
}>;
|
|
35193
35792
|
collections?: Maybe$1<{
|
|
35194
35793
|
edges: Array<{
|
|
35195
35794
|
node?: Maybe$1<Pick<Collection$1, 'id' | 'title'>>;
|
|
@@ -35201,15 +35800,6 @@ type ProductsQueryResponse = {
|
|
|
35201
35800
|
}>;
|
|
35202
35801
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage'>>;
|
|
35203
35802
|
}>;
|
|
35204
|
-
variants?: Maybe$1<{
|
|
35205
|
-
edges: Array<Pick<ProductVariantEdge$1, 'cursor'> & {
|
|
35206
|
-
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'> & {
|
|
35207
|
-
selectedOptions: Array<Pick<SelectedOption$1, 'name' | 'value' | 'optionType'>>;
|
|
35208
|
-
media?: Maybe$1<Pick<Media$1, 'id' | 'contentType' | 'previewImage' | 'src' | 'width' | 'height' | 'alt'>>;
|
|
35209
|
-
}>;
|
|
35210
|
-
}>;
|
|
35211
|
-
pageInfo?: Maybe$1<Pick<PageInfo$1, 'hasNextPage' | 'endCursor'>>;
|
|
35212
|
-
}>;
|
|
35213
35803
|
options?: Maybe$1<Array<Pick<ProductOption$1, 'id' | 'name' | 'optionType'> & {
|
|
35214
35804
|
values: Array<Pick<ProductOptionValue$1, 'id' | 'label' | 'isDefault' | 'baseID'>>;
|
|
35215
35805
|
}>>;
|
|
@@ -48035,11 +48625,11 @@ declare const useSelectedOption: () => {
|
|
|
48035
48625
|
setSelectedOption: (optionId?: Maybe$1<string>, optionValue?: Maybe$1<string>, productId?: Maybe$1<string>, noEmit?: boolean) => void;
|
|
48036
48626
|
forceSelectedOption: (selectedOption?: Record<string, string>, productId?: Maybe$1<string>, noEmit?: boolean, isManualChange?: boolean) => void;
|
|
48037
48627
|
};
|
|
48038
|
-
declare const useVariants: () => Maybe$1<Pick<ProductVariant$1, "id" | "title" | "price" | "width" | "length" | "weight" | "height" | "
|
|
48628
|
+
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"> & {
|
|
48039
48629
|
selectedOptions: Pick<SelectedOption$1, "name" | "value" | "optionType">[];
|
|
48040
48630
|
media?: Maybe$1<Pick<Media$1, "id" | "width" | "height" | "contentType" | "previewImage" | "src" | "alt">>;
|
|
48041
48631
|
}>[];
|
|
48042
|
-
declare const useVariant: (id: string) => Maybe$1<Pick<ProductVariant$1, "id" | "title" | "price" | "width" | "length" | "weight" | "height" | "
|
|
48632
|
+
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"> & {
|
|
48043
48633
|
selectedOptions: Pick<SelectedOption$1, "name" | "value" | "optionType">[];
|
|
48044
48634
|
media?: Maybe$1<Pick<Media$1, "id" | "width" | "height" | "contentType" | "previewImage" | "src" | "alt">>;
|
|
48045
48635
|
}>;
|