@gem-sdk/core 1.63.12 → 1.63.17
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/graphql/fragments/preview-theme-page.generated.js +39 -0
- package/dist/cjs/graphql/fragments/published-theme-page.generated.js +0 -28
- package/dist/cjs/graphql/queries/preview-page.generated.js +9 -13
- package/dist/cjs/helpers/third-party/appConfig.js +14 -0
- package/dist/cjs/helpers/third-party/appSetting.js +160 -1
- package/dist/cjs/helpers/third-party/constant.js +3 -1
- package/dist/cjs/helpers/third-party/getAppBlockConfig.js +9 -1
- package/dist/cjs/index.js +1 -1
- package/dist/esm/graphql/fragments/preview-theme-page.generated.js +37 -0
- package/dist/esm/graphql/fragments/published-theme-page.generated.js +1 -28
- package/dist/esm/graphql/queries/preview-page.generated.js +8 -12
- package/dist/esm/helpers/third-party/appConfig.js +13 -1
- package/dist/esm/helpers/third-party/appSetting.js +160 -1
- package/dist/esm/helpers/third-party/constant.js +4 -2
- package/dist/esm/helpers/third-party/getAppBlockConfig.js +9 -1
- package/dist/esm/index.js +1 -1
- package/dist/types/index.d.ts +337 -17
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/* eslint-disable */ const PreviewThemePageSelect = `
|
|
4
|
+
fragment PreviewThemePageSelect on PreviewThemePage {
|
|
5
|
+
id
|
|
6
|
+
name
|
|
7
|
+
handle
|
|
8
|
+
isMobile
|
|
9
|
+
sectionPosition
|
|
10
|
+
pageSections {
|
|
11
|
+
cid
|
|
12
|
+
component
|
|
13
|
+
id
|
|
14
|
+
}
|
|
15
|
+
dataSEO {
|
|
16
|
+
...DataSEOSelect
|
|
17
|
+
}
|
|
18
|
+
themeStyle {
|
|
19
|
+
id
|
|
20
|
+
data
|
|
21
|
+
name
|
|
22
|
+
}
|
|
23
|
+
analytic {
|
|
24
|
+
...AnalyticSelect
|
|
25
|
+
}
|
|
26
|
+
customCode {
|
|
27
|
+
...CustomCodeSelect
|
|
28
|
+
}
|
|
29
|
+
customFonts {
|
|
30
|
+
...CustomFontSelect
|
|
31
|
+
}
|
|
32
|
+
interaction {
|
|
33
|
+
id
|
|
34
|
+
value
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
`;
|
|
38
|
+
|
|
39
|
+
exports.PreviewThemePageSelect = PreviewThemePageSelect;
|
|
@@ -34,33 +34,5 @@
|
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
`;
|
|
37
|
-
const PreviewThemePageSelect = `
|
|
38
|
-
fragment PreviewThemePageSelect on PublishedThemePage {
|
|
39
|
-
id
|
|
40
|
-
name
|
|
41
|
-
handle
|
|
42
|
-
isMobile
|
|
43
|
-
sectionPosition
|
|
44
|
-
pageSections {
|
|
45
|
-
...PublishedPageSectionSelect
|
|
46
|
-
}
|
|
47
|
-
themePageCustomSections {
|
|
48
|
-
...PublishedCustomSectionSelect
|
|
49
|
-
}
|
|
50
|
-
themePageDataSEO {
|
|
51
|
-
...DataSEOSelect
|
|
52
|
-
}
|
|
53
|
-
pageStyle {
|
|
54
|
-
...PublishedThemeStyleSelect
|
|
55
|
-
}
|
|
56
|
-
themePageAnalytic {
|
|
57
|
-
...AnalyticSelect
|
|
58
|
-
}
|
|
59
|
-
themePageCustomCode {
|
|
60
|
-
...CustomCodeSelect
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
`;
|
|
64
37
|
|
|
65
|
-
exports.PreviewThemePageSelect = PreviewThemePageSelect;
|
|
66
38
|
exports.PublishedThemePageSelect = PublishedThemePageSelect;
|
|
@@ -1,25 +1,21 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
var publishedPageSection_generated = require('../fragments/published-page-section.generated.js');
|
|
5
|
-
var publishedCustomSection_generated = require('../fragments/published-custom-section.generated.js');
|
|
3
|
+
var previewThemePage_generated = require('../fragments/preview-theme-page.generated.js');
|
|
6
4
|
var dataSeo_generated = require('../fragments/data-seo.generated.js');
|
|
7
|
-
var publishedThemeStyle_generated = require('../fragments/published-theme-style.generated.js');
|
|
8
5
|
var analytic_generated = require('../fragments/analytic.generated.js');
|
|
9
6
|
var customCode_generated = require('../fragments/custom-code.generated.js');
|
|
7
|
+
var customFont_generated = require('../fragments/custom-font.generated.js');
|
|
10
8
|
|
|
11
|
-
const
|
|
12
|
-
query
|
|
13
|
-
|
|
9
|
+
const PreviewThemePageDocument = `
|
|
10
|
+
query PreviewThemePage($pageType: PreviewThemePageType!, $handleURL: String) {
|
|
11
|
+
previewThemePage(pageType: $pageType, handleURL: $handleURL) {
|
|
14
12
|
...PreviewThemePageSelect
|
|
15
13
|
}
|
|
16
14
|
}
|
|
17
|
-
${
|
|
18
|
-
${publishedPageSection_generated.PublishedPageSectionSelect}
|
|
19
|
-
${publishedCustomSection_generated.PublishedCustomSectionSelect}
|
|
15
|
+
${previewThemePage_generated.PreviewThemePageSelect}
|
|
20
16
|
${dataSeo_generated.DataSeoSelect}
|
|
21
|
-
${publishedThemeStyle_generated.PublishedThemeStyleSelect}
|
|
22
17
|
${analytic_generated.AnalyticSelect}
|
|
23
|
-
${customCode_generated.CustomCodeSelect}
|
|
18
|
+
${customCode_generated.CustomCodeSelect}
|
|
19
|
+
${customFont_generated.CustomFontSelect}`;
|
|
24
20
|
|
|
25
|
-
exports.
|
|
21
|
+
exports.PreviewThemePageDocument = PreviewThemePageDocument;
|
|
@@ -186,6 +186,18 @@ const KachingBundlesConfig = {
|
|
|
186
186
|
appId: '6c637362-a106-4a32-94ac-94dcfd68cdb8'
|
|
187
187
|
}
|
|
188
188
|
};
|
|
189
|
+
const TrustooConfig = {
|
|
190
|
+
Trustoo: {
|
|
191
|
+
appName: 'trustoo-io-reviews',
|
|
192
|
+
appId: 'c8f15077-6475-4e86-ad06-b66038d5ba2c'
|
|
193
|
+
}
|
|
194
|
+
};
|
|
195
|
+
const LooxReviewsConfig = {
|
|
196
|
+
LooxReviews: {
|
|
197
|
+
appName: 'loox-reviews',
|
|
198
|
+
appId: '5c3b337f-fd14-4df5-b1d6-80ec13e6e28e'
|
|
199
|
+
}
|
|
200
|
+
};
|
|
189
201
|
|
|
190
202
|
exports.AppointmentBookingCowlendarConfig = AppointmentBookingCowlendarConfig;
|
|
191
203
|
exports.BoldSubscriptionsConfig = BoldSubscriptionsConfig;
|
|
@@ -201,6 +213,7 @@ exports.KachingBundlesConfig = KachingBundlesConfig;
|
|
|
201
213
|
exports.KiteFreeGiftDiscountConfig = KiteFreeGiftDiscountConfig;
|
|
202
214
|
exports.LoloyalLoyaltyReferralsConfig = LoloyalLoyaltyReferralsConfig;
|
|
203
215
|
exports.LoopSubscriptionsConfig = LoopSubscriptionsConfig;
|
|
216
|
+
exports.LooxReviewsConfig = LooxReviewsConfig;
|
|
204
217
|
exports.PowerfulContactFormBuilderConfig = PowerfulContactFormBuilderConfig;
|
|
205
218
|
exports.PreorderNowPreOrderPqConfig = PreorderNowPreOrderPqConfig;
|
|
206
219
|
exports.PreorderNowWodPresaleConfig = PreorderNowWodPresaleConfig;
|
|
@@ -214,6 +227,7 @@ exports.SimpleBundlesKitsConfig = SimpleBundlesKitsConfig;
|
|
|
214
227
|
exports.SkioSubscriptionsYcS20Config = SkioSubscriptionsYcS20Config;
|
|
215
228
|
exports.SproutPlantTreesGrowSalesConfig = SproutPlantTreesGrowSalesConfig;
|
|
216
229
|
exports.SubifySubscriptionsConfig = SubifySubscriptionsConfig;
|
|
230
|
+
exports.TrustooConfig = TrustooConfig;
|
|
217
231
|
exports.UnlimitedBundlesDiscountsConfig = UnlimitedBundlesDiscountsConfig;
|
|
218
232
|
exports.WhatmoreShoppableVideosreelConfig = WhatmoreShoppableVideosreelConfig;
|
|
219
233
|
exports.WishlistKingConfig = WishlistKingConfig;
|
|
@@ -464,6 +464,163 @@ const GloboProductOptionsVariant = {
|
|
|
464
464
|
'app-block': null
|
|
465
465
|
}
|
|
466
466
|
};
|
|
467
|
+
const Trustoo = {
|
|
468
|
+
Trustoo: {
|
|
469
|
+
'barrage-carousel': null,
|
|
470
|
+
'review-widget': null,
|
|
471
|
+
'photo-carousel': null,
|
|
472
|
+
'star-rating-widget': {
|
|
473
|
+
star_size: 20,
|
|
474
|
+
font_size: 16,
|
|
475
|
+
block_aligment: 'flex-start'
|
|
476
|
+
},
|
|
477
|
+
'text-carousel': null,
|
|
478
|
+
'card-carousel': null
|
|
479
|
+
}
|
|
480
|
+
};
|
|
481
|
+
const LooxReviews = {
|
|
482
|
+
LooxReviews: {
|
|
483
|
+
'loox-card-carousel-section': {
|
|
484
|
+
maxWidth: 1100,
|
|
485
|
+
borderRadius: 8,
|
|
486
|
+
itemsPerView: 4,
|
|
487
|
+
mobileItemsPerView: 1,
|
|
488
|
+
maxNumberOfCharacters: 100,
|
|
489
|
+
imageRatio: '0.72',
|
|
490
|
+
reviewerNameColor: '#000000',
|
|
491
|
+
textColor: '#000000',
|
|
492
|
+
itemBackgroundColor: '#ffffff',
|
|
493
|
+
starsColor: '',
|
|
494
|
+
starsBackgroundColor: '#ffffff',
|
|
495
|
+
arrows_backgroundColor: '#FFFFFF',
|
|
496
|
+
arrows_iconColor: '#9A9A9A',
|
|
497
|
+
shadow: 'offset-dark',
|
|
498
|
+
border_active: false,
|
|
499
|
+
border_width: 2,
|
|
500
|
+
border_color: '#000000',
|
|
501
|
+
productIds: ''
|
|
502
|
+
},
|
|
503
|
+
'loox-gallery-carousel-section': {
|
|
504
|
+
maxWidth: 1100,
|
|
505
|
+
borderRadius: 60,
|
|
506
|
+
itemsPerView: 5,
|
|
507
|
+
mobileItemsPerView: 1,
|
|
508
|
+
imageRatio: '1',
|
|
509
|
+
reviewerNameColor: '#ffffff',
|
|
510
|
+
starsColor: '#ffffff',
|
|
511
|
+
arrows_backgroundColor: '#FFFFFF',
|
|
512
|
+
arrows_iconColor: '#9A9A9A',
|
|
513
|
+
shadow: 'none',
|
|
514
|
+
border_active: false,
|
|
515
|
+
border_width: 2,
|
|
516
|
+
border_color: '#000000',
|
|
517
|
+
productIds: ''
|
|
518
|
+
},
|
|
519
|
+
'loox-referrals-section': {
|
|
520
|
+
max_width: 1100,
|
|
521
|
+
layout: 'with-photo',
|
|
522
|
+
primary_color: '',
|
|
523
|
+
text_color: '#000000',
|
|
524
|
+
text_field_border_color: '#C9CDD4',
|
|
525
|
+
background: ''
|
|
526
|
+
},
|
|
527
|
+
'loox-dynamic-section': {
|
|
528
|
+
only_photos: false,
|
|
529
|
+
aggregated: false,
|
|
530
|
+
limit: 20,
|
|
531
|
+
hide_thumbnails: false,
|
|
532
|
+
maxwidth: 1080,
|
|
533
|
+
is_sample: true
|
|
534
|
+
},
|
|
535
|
+
'loox-snippets-widget': {
|
|
536
|
+
alignment: 'left',
|
|
537
|
+
'max-width': '',
|
|
538
|
+
'color-scheme': 'default',
|
|
539
|
+
shadow: '',
|
|
540
|
+
'show-rating': true,
|
|
541
|
+
'show-image': true,
|
|
542
|
+
'hide-arrows-mobile': false,
|
|
543
|
+
'font-size': 14,
|
|
544
|
+
'show-border': false,
|
|
545
|
+
'border-radius': 16,
|
|
546
|
+
'background-color': '',
|
|
547
|
+
'text-color': '',
|
|
548
|
+
'name-color': '',
|
|
549
|
+
'rating-icon-color': '',
|
|
550
|
+
'border-color': '',
|
|
551
|
+
'shadow-color': '',
|
|
552
|
+
'reviews-limit': 10
|
|
553
|
+
},
|
|
554
|
+
'loox-rating': {
|
|
555
|
+
contentSize: 16,
|
|
556
|
+
pattern: '',
|
|
557
|
+
hideText: false,
|
|
558
|
+
alignment: '',
|
|
559
|
+
layout: '',
|
|
560
|
+
textColor: '',
|
|
561
|
+
starColor: '',
|
|
562
|
+
showAllReviews: false,
|
|
563
|
+
looxOpenFloatingWidget: false,
|
|
564
|
+
emptyRatingWidget: false
|
|
565
|
+
},
|
|
566
|
+
'loox-testimonial-carousel-section': {
|
|
567
|
+
maxWidth: 1100,
|
|
568
|
+
desktopFontSize: 32,
|
|
569
|
+
mobileFontSize: 20,
|
|
570
|
+
maxNumberOfCharacters: 100,
|
|
571
|
+
quoteMarkIcon: 'style-1',
|
|
572
|
+
reviewerNameColor: '#000000',
|
|
573
|
+
textColor: '#000000',
|
|
574
|
+
starsColor: '',
|
|
575
|
+
quotesIconColor: '#EAEAEA',
|
|
576
|
+
arrows_iconColor: '#000000',
|
|
577
|
+
arrows_hideOnMobile: true,
|
|
578
|
+
pagination_active: true,
|
|
579
|
+
pagination_selectedDotColor: '#000000',
|
|
580
|
+
pagination_dotColor: '#000000',
|
|
581
|
+
autoplay_active: false,
|
|
582
|
+
autoplay_duration: 2,
|
|
583
|
+
productIds: ''
|
|
584
|
+
},
|
|
585
|
+
'loox-trust-badge': {
|
|
586
|
+
layout: 'horizontal',
|
|
587
|
+
alignment: 'left',
|
|
588
|
+
'scheme-type': 'default',
|
|
589
|
+
'review-title': 'reviews',
|
|
590
|
+
'rating-icon': true,
|
|
591
|
+
'average-rating': true,
|
|
592
|
+
'loox-branding': true,
|
|
593
|
+
'review-count': true,
|
|
594
|
+
'open-reviews': true,
|
|
595
|
+
'show-border': true,
|
|
596
|
+
'border-radius': 8,
|
|
597
|
+
'font-size': 20,
|
|
598
|
+
'background-color': '',
|
|
599
|
+
'secondary-background-color': '',
|
|
600
|
+
'text-color': '',
|
|
601
|
+
'rating-icon-color': '',
|
|
602
|
+
'border-color': ''
|
|
603
|
+
},
|
|
604
|
+
'loox-video-slider': {
|
|
605
|
+
'show-by-tag': false,
|
|
606
|
+
layout: 'spotlight',
|
|
607
|
+
shadow: '',
|
|
608
|
+
'show-rating': true,
|
|
609
|
+
'show-reviewer-name': true,
|
|
610
|
+
'hide-arrows-mobile': true,
|
|
611
|
+
'auto-play': true,
|
|
612
|
+
'show-border': false,
|
|
613
|
+
'border-width': 1,
|
|
614
|
+
'border-radius': 16,
|
|
615
|
+
'text-color': '',
|
|
616
|
+
'rating-icon-color': '',
|
|
617
|
+
'border-color': '',
|
|
618
|
+
'play-button-color': '',
|
|
619
|
+
'shadow-color': '',
|
|
620
|
+
'product-id': ''
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
};
|
|
467
624
|
const composeSettingsByWidgetType = {
|
|
468
625
|
...GloboProductOptionsVariant,
|
|
469
626
|
...WishlistKing,
|
|
@@ -495,7 +652,9 @@ const composeSettingsByWidgetType = {
|
|
|
495
652
|
...YotpoReviews,
|
|
496
653
|
...BoldSubscriptions,
|
|
497
654
|
...Growave,
|
|
498
|
-
...KachingBundles
|
|
655
|
+
...KachingBundles,
|
|
656
|
+
...Trustoo,
|
|
657
|
+
...LooxReviews
|
|
499
658
|
};
|
|
500
659
|
|
|
501
660
|
exports.composeSettingsByWidgetType = composeSettingsByWidgetType;
|
|
@@ -33,7 +33,9 @@ const mapShopifyAppMeta = {
|
|
|
33
33
|
...appConfig.PowerfulContactFormBuilderConfig,
|
|
34
34
|
...appConfig.WishlistKingConfig,
|
|
35
35
|
...appConfig.GloboProductOptionsVariantConfig,
|
|
36
|
-
...appConfig.KachingBundlesConfig
|
|
36
|
+
...appConfig.KachingBundlesConfig,
|
|
37
|
+
...appConfig.TrustooConfig,
|
|
38
|
+
...appConfig.LooxReviewsConfig
|
|
37
39
|
};
|
|
38
40
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
39
41
|
|
|
@@ -4,11 +4,19 @@ var appSetting = require('./appSetting.js');
|
|
|
4
4
|
var getAppBlockType = require('./getAppBlockType.js');
|
|
5
5
|
|
|
6
6
|
const listAppUpdateNewVersion = [
|
|
7
|
-
'Growave'
|
|
7
|
+
'Growave',
|
|
8
|
+
'Trustoo',
|
|
9
|
+
'LooxReviews'
|
|
8
10
|
];
|
|
9
11
|
const listThirdPartyRejectAppBlock = {
|
|
10
12
|
YotpoReviews: {
|
|
11
13
|
conditionToReject: 'settings?.version === "v1"'
|
|
14
|
+
},
|
|
15
|
+
Trustoo: {
|
|
16
|
+
conditionToReject: 'settings?.version === "v1"'
|
|
17
|
+
},
|
|
18
|
+
LooxReviews: {
|
|
19
|
+
conditionToReject: 'settings?.version === "v1"'
|
|
12
20
|
}
|
|
13
21
|
};
|
|
14
22
|
const getAppBlockConfig = (tag, appBlockId, settings)=>{
|
package/dist/cjs/index.js
CHANGED
|
@@ -159,7 +159,7 @@ exports.CollectionsDocument = collections_generated.CollectionsDocument;
|
|
|
159
159
|
exports.PublishedThemePagesDocument = publishedThemePages_generated.PublishedThemePagesDocument;
|
|
160
160
|
exports.ProductsDocument = products_generated.ProductsDocument;
|
|
161
161
|
exports.StorePropertyDocument = storeProperty_generated.StorePropertyDocument;
|
|
162
|
-
exports.
|
|
162
|
+
exports.PreviewThemePageDocument = previewPage_generated.PreviewThemePageDocument;
|
|
163
163
|
exports.LibraryTemplateDocument = LibraryTemplate_generated.LibraryTemplateDocument;
|
|
164
164
|
exports.ThemePageDocument = ThemePage_generated.ThemePageDocument;
|
|
165
165
|
exports.SaleFunnelDiscountsDocument = SaleFunnelDiscounts_generated.SaleFunnelDiscountsDocument;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* eslint-disable */ const PreviewThemePageSelect = `
|
|
2
|
+
fragment PreviewThemePageSelect on PreviewThemePage {
|
|
3
|
+
id
|
|
4
|
+
name
|
|
5
|
+
handle
|
|
6
|
+
isMobile
|
|
7
|
+
sectionPosition
|
|
8
|
+
pageSections {
|
|
9
|
+
cid
|
|
10
|
+
component
|
|
11
|
+
id
|
|
12
|
+
}
|
|
13
|
+
dataSEO {
|
|
14
|
+
...DataSEOSelect
|
|
15
|
+
}
|
|
16
|
+
themeStyle {
|
|
17
|
+
id
|
|
18
|
+
data
|
|
19
|
+
name
|
|
20
|
+
}
|
|
21
|
+
analytic {
|
|
22
|
+
...AnalyticSelect
|
|
23
|
+
}
|
|
24
|
+
customCode {
|
|
25
|
+
...CustomCodeSelect
|
|
26
|
+
}
|
|
27
|
+
customFonts {
|
|
28
|
+
...CustomFontSelect
|
|
29
|
+
}
|
|
30
|
+
interaction {
|
|
31
|
+
id
|
|
32
|
+
value
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
`;
|
|
36
|
+
|
|
37
|
+
export { PreviewThemePageSelect };
|
|
@@ -32,32 +32,5 @@
|
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
`;
|
|
35
|
-
const PreviewThemePageSelect = `
|
|
36
|
-
fragment PreviewThemePageSelect on PublishedThemePage {
|
|
37
|
-
id
|
|
38
|
-
name
|
|
39
|
-
handle
|
|
40
|
-
isMobile
|
|
41
|
-
sectionPosition
|
|
42
|
-
pageSections {
|
|
43
|
-
...PublishedPageSectionSelect
|
|
44
|
-
}
|
|
45
|
-
themePageCustomSections {
|
|
46
|
-
...PublishedCustomSectionSelect
|
|
47
|
-
}
|
|
48
|
-
themePageDataSEO {
|
|
49
|
-
...DataSEOSelect
|
|
50
|
-
}
|
|
51
|
-
pageStyle {
|
|
52
|
-
...PublishedThemeStyleSelect
|
|
53
|
-
}
|
|
54
|
-
themePageAnalytic {
|
|
55
|
-
...AnalyticSelect
|
|
56
|
-
}
|
|
57
|
-
themePageCustomCode {
|
|
58
|
-
...CustomCodeSelect
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
`;
|
|
62
35
|
|
|
63
|
-
export {
|
|
36
|
+
export { PublishedThemePageSelect };
|
|
@@ -1,23 +1,19 @@
|
|
|
1
|
-
import { PreviewThemePageSelect } from '../fragments/
|
|
2
|
-
import { PublishedPageSectionSelect } from '../fragments/published-page-section.generated.js';
|
|
3
|
-
import { PublishedCustomSectionSelect } from '../fragments/published-custom-section.generated.js';
|
|
1
|
+
import { PreviewThemePageSelect } from '../fragments/preview-theme-page.generated.js';
|
|
4
2
|
import { DataSeoSelect } from '../fragments/data-seo.generated.js';
|
|
5
|
-
import { PublishedThemeStyleSelect } from '../fragments/published-theme-style.generated.js';
|
|
6
3
|
import { AnalyticSelect } from '../fragments/analytic.generated.js';
|
|
7
4
|
import { CustomCodeSelect } from '../fragments/custom-code.generated.js';
|
|
5
|
+
import { CustomFontSelect } from '../fragments/custom-font.generated.js';
|
|
8
6
|
|
|
9
|
-
const
|
|
10
|
-
query
|
|
11
|
-
|
|
7
|
+
const PreviewThemePageDocument = `
|
|
8
|
+
query PreviewThemePage($pageType: PreviewThemePageType!, $handleURL: String) {
|
|
9
|
+
previewThemePage(pageType: $pageType, handleURL: $handleURL) {
|
|
12
10
|
...PreviewThemePageSelect
|
|
13
11
|
}
|
|
14
12
|
}
|
|
15
13
|
${PreviewThemePageSelect}
|
|
16
|
-
${PublishedPageSectionSelect}
|
|
17
|
-
${PublishedCustomSectionSelect}
|
|
18
14
|
${DataSeoSelect}
|
|
19
|
-
${PublishedThemeStyleSelect}
|
|
20
15
|
${AnalyticSelect}
|
|
21
|
-
${CustomCodeSelect}
|
|
16
|
+
${CustomCodeSelect}
|
|
17
|
+
${CustomFontSelect}`;
|
|
22
18
|
|
|
23
|
-
export {
|
|
19
|
+
export { PreviewThemePageDocument };
|
|
@@ -184,5 +184,17 @@ const KachingBundlesConfig = {
|
|
|
184
184
|
appId: '6c637362-a106-4a32-94ac-94dcfd68cdb8'
|
|
185
185
|
}
|
|
186
186
|
};
|
|
187
|
+
const TrustooConfig = {
|
|
188
|
+
Trustoo: {
|
|
189
|
+
appName: 'trustoo-io-reviews',
|
|
190
|
+
appId: 'c8f15077-6475-4e86-ad06-b66038d5ba2c'
|
|
191
|
+
}
|
|
192
|
+
};
|
|
193
|
+
const LooxReviewsConfig = {
|
|
194
|
+
LooxReviews: {
|
|
195
|
+
appName: 'loox-reviews',
|
|
196
|
+
appId: '5c3b337f-fd14-4df5-b1d6-80ec13e6e28e'
|
|
197
|
+
}
|
|
198
|
+
};
|
|
187
199
|
|
|
188
|
-
export { AppointmentBookingCowlendarConfig, BoldSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, GloboProductOptionsVariantConfig, GrowaveConfig, InstasellShoppableInstagramConfig, JunipProductReviewsUgcConfig, KachingBundlesConfig, KiteFreeGiftDiscountConfig, LoloyalLoyaltyReferralsConfig, LoopSubscriptionsConfig, PowerfulContactFormBuilderConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, ProductOptionsCustomizerConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SelleasyConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SproutPlantTreesGrowSalesConfig, SubifySubscriptionsConfig, UnlimitedBundlesDiscountsConfig, WhatmoreShoppableVideosreelConfig, WishlistKingConfig, YotpoReviewsV3UgcConfig };
|
|
200
|
+
export { AppointmentBookingCowlendarConfig, BoldSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, EasyBundleBuilderSkailamaConfig, FastBundleBundlesDiscountsConfig, FlyBundlesUpsellsFbtConfig, GloboProductOptionsVariantConfig, GrowaveConfig, InstasellShoppableInstagramConfig, JunipProductReviewsUgcConfig, KachingBundlesConfig, KiteFreeGiftDiscountConfig, LoloyalLoyaltyReferralsConfig, LoopSubscriptionsConfig, LooxReviewsConfig, PowerfulContactFormBuilderConfig, PreorderNowPreOrderPqConfig, PreorderNowWodPresaleConfig, ProductOptionsCustomizerConfig, PumperBundlesVolumeDiscountConfig, RechargeSubscriptionsConfig, ReviewxpoProductReviewsAppConfig, SelleasyConfig, ShopifyFormsConfig, SimpleBundlesKitsConfig, SkioSubscriptionsYcS20Config, SproutPlantTreesGrowSalesConfig, SubifySubscriptionsConfig, TrustooConfig, UnlimitedBundlesDiscountsConfig, WhatmoreShoppableVideosreelConfig, WishlistKingConfig, YotpoReviewsV3UgcConfig };
|
|
@@ -462,6 +462,163 @@ const GloboProductOptionsVariant = {
|
|
|
462
462
|
'app-block': null
|
|
463
463
|
}
|
|
464
464
|
};
|
|
465
|
+
const Trustoo = {
|
|
466
|
+
Trustoo: {
|
|
467
|
+
'barrage-carousel': null,
|
|
468
|
+
'review-widget': null,
|
|
469
|
+
'photo-carousel': null,
|
|
470
|
+
'star-rating-widget': {
|
|
471
|
+
star_size: 20,
|
|
472
|
+
font_size: 16,
|
|
473
|
+
block_aligment: 'flex-start'
|
|
474
|
+
},
|
|
475
|
+
'text-carousel': null,
|
|
476
|
+
'card-carousel': null
|
|
477
|
+
}
|
|
478
|
+
};
|
|
479
|
+
const LooxReviews = {
|
|
480
|
+
LooxReviews: {
|
|
481
|
+
'loox-card-carousel-section': {
|
|
482
|
+
maxWidth: 1100,
|
|
483
|
+
borderRadius: 8,
|
|
484
|
+
itemsPerView: 4,
|
|
485
|
+
mobileItemsPerView: 1,
|
|
486
|
+
maxNumberOfCharacters: 100,
|
|
487
|
+
imageRatio: '0.72',
|
|
488
|
+
reviewerNameColor: '#000000',
|
|
489
|
+
textColor: '#000000',
|
|
490
|
+
itemBackgroundColor: '#ffffff',
|
|
491
|
+
starsColor: '',
|
|
492
|
+
starsBackgroundColor: '#ffffff',
|
|
493
|
+
arrows_backgroundColor: '#FFFFFF',
|
|
494
|
+
arrows_iconColor: '#9A9A9A',
|
|
495
|
+
shadow: 'offset-dark',
|
|
496
|
+
border_active: false,
|
|
497
|
+
border_width: 2,
|
|
498
|
+
border_color: '#000000',
|
|
499
|
+
productIds: ''
|
|
500
|
+
},
|
|
501
|
+
'loox-gallery-carousel-section': {
|
|
502
|
+
maxWidth: 1100,
|
|
503
|
+
borderRadius: 60,
|
|
504
|
+
itemsPerView: 5,
|
|
505
|
+
mobileItemsPerView: 1,
|
|
506
|
+
imageRatio: '1',
|
|
507
|
+
reviewerNameColor: '#ffffff',
|
|
508
|
+
starsColor: '#ffffff',
|
|
509
|
+
arrows_backgroundColor: '#FFFFFF',
|
|
510
|
+
arrows_iconColor: '#9A9A9A',
|
|
511
|
+
shadow: 'none',
|
|
512
|
+
border_active: false,
|
|
513
|
+
border_width: 2,
|
|
514
|
+
border_color: '#000000',
|
|
515
|
+
productIds: ''
|
|
516
|
+
},
|
|
517
|
+
'loox-referrals-section': {
|
|
518
|
+
max_width: 1100,
|
|
519
|
+
layout: 'with-photo',
|
|
520
|
+
primary_color: '',
|
|
521
|
+
text_color: '#000000',
|
|
522
|
+
text_field_border_color: '#C9CDD4',
|
|
523
|
+
background: ''
|
|
524
|
+
},
|
|
525
|
+
'loox-dynamic-section': {
|
|
526
|
+
only_photos: false,
|
|
527
|
+
aggregated: false,
|
|
528
|
+
limit: 20,
|
|
529
|
+
hide_thumbnails: false,
|
|
530
|
+
maxwidth: 1080,
|
|
531
|
+
is_sample: true
|
|
532
|
+
},
|
|
533
|
+
'loox-snippets-widget': {
|
|
534
|
+
alignment: 'left',
|
|
535
|
+
'max-width': '',
|
|
536
|
+
'color-scheme': 'default',
|
|
537
|
+
shadow: '',
|
|
538
|
+
'show-rating': true,
|
|
539
|
+
'show-image': true,
|
|
540
|
+
'hide-arrows-mobile': false,
|
|
541
|
+
'font-size': 14,
|
|
542
|
+
'show-border': false,
|
|
543
|
+
'border-radius': 16,
|
|
544
|
+
'background-color': '',
|
|
545
|
+
'text-color': '',
|
|
546
|
+
'name-color': '',
|
|
547
|
+
'rating-icon-color': '',
|
|
548
|
+
'border-color': '',
|
|
549
|
+
'shadow-color': '',
|
|
550
|
+
'reviews-limit': 10
|
|
551
|
+
},
|
|
552
|
+
'loox-rating': {
|
|
553
|
+
contentSize: 16,
|
|
554
|
+
pattern: '',
|
|
555
|
+
hideText: false,
|
|
556
|
+
alignment: '',
|
|
557
|
+
layout: '',
|
|
558
|
+
textColor: '',
|
|
559
|
+
starColor: '',
|
|
560
|
+
showAllReviews: false,
|
|
561
|
+
looxOpenFloatingWidget: false,
|
|
562
|
+
emptyRatingWidget: false
|
|
563
|
+
},
|
|
564
|
+
'loox-testimonial-carousel-section': {
|
|
565
|
+
maxWidth: 1100,
|
|
566
|
+
desktopFontSize: 32,
|
|
567
|
+
mobileFontSize: 20,
|
|
568
|
+
maxNumberOfCharacters: 100,
|
|
569
|
+
quoteMarkIcon: 'style-1',
|
|
570
|
+
reviewerNameColor: '#000000',
|
|
571
|
+
textColor: '#000000',
|
|
572
|
+
starsColor: '',
|
|
573
|
+
quotesIconColor: '#EAEAEA',
|
|
574
|
+
arrows_iconColor: '#000000',
|
|
575
|
+
arrows_hideOnMobile: true,
|
|
576
|
+
pagination_active: true,
|
|
577
|
+
pagination_selectedDotColor: '#000000',
|
|
578
|
+
pagination_dotColor: '#000000',
|
|
579
|
+
autoplay_active: false,
|
|
580
|
+
autoplay_duration: 2,
|
|
581
|
+
productIds: ''
|
|
582
|
+
},
|
|
583
|
+
'loox-trust-badge': {
|
|
584
|
+
layout: 'horizontal',
|
|
585
|
+
alignment: 'left',
|
|
586
|
+
'scheme-type': 'default',
|
|
587
|
+
'review-title': 'reviews',
|
|
588
|
+
'rating-icon': true,
|
|
589
|
+
'average-rating': true,
|
|
590
|
+
'loox-branding': true,
|
|
591
|
+
'review-count': true,
|
|
592
|
+
'open-reviews': true,
|
|
593
|
+
'show-border': true,
|
|
594
|
+
'border-radius': 8,
|
|
595
|
+
'font-size': 20,
|
|
596
|
+
'background-color': '',
|
|
597
|
+
'secondary-background-color': '',
|
|
598
|
+
'text-color': '',
|
|
599
|
+
'rating-icon-color': '',
|
|
600
|
+
'border-color': ''
|
|
601
|
+
},
|
|
602
|
+
'loox-video-slider': {
|
|
603
|
+
'show-by-tag': false,
|
|
604
|
+
layout: 'spotlight',
|
|
605
|
+
shadow: '',
|
|
606
|
+
'show-rating': true,
|
|
607
|
+
'show-reviewer-name': true,
|
|
608
|
+
'hide-arrows-mobile': true,
|
|
609
|
+
'auto-play': true,
|
|
610
|
+
'show-border': false,
|
|
611
|
+
'border-width': 1,
|
|
612
|
+
'border-radius': 16,
|
|
613
|
+
'text-color': '',
|
|
614
|
+
'rating-icon-color': '',
|
|
615
|
+
'border-color': '',
|
|
616
|
+
'play-button-color': '',
|
|
617
|
+
'shadow-color': '',
|
|
618
|
+
'product-id': ''
|
|
619
|
+
}
|
|
620
|
+
}
|
|
621
|
+
};
|
|
465
622
|
const composeSettingsByWidgetType = {
|
|
466
623
|
...GloboProductOptionsVariant,
|
|
467
624
|
...WishlistKing,
|
|
@@ -493,7 +650,9 @@ const composeSettingsByWidgetType = {
|
|
|
493
650
|
...YotpoReviews,
|
|
494
651
|
...BoldSubscriptions,
|
|
495
652
|
...Growave,
|
|
496
|
-
...KachingBundles
|
|
653
|
+
...KachingBundles,
|
|
654
|
+
...Trustoo,
|
|
655
|
+
...LooxReviews
|
|
497
656
|
};
|
|
498
657
|
|
|
499
658
|
export { composeSettingsByWidgetType, overrideSettings };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, FastBundleBundlesDiscountsConfig, SimpleBundlesKitsConfig, EasyBundleBuilderSkailamaConfig, PreorderNowPreOrderPqConfig, FlyBundlesUpsellsFbtConfig, JunipProductReviewsUgcConfig, PreorderNowWodPresaleConfig, YotpoReviewsV3UgcConfig, WhatmoreShoppableVideosreelConfig, ProductOptionsCustomizerConfig, AppointmentBookingCowlendarConfig, BoldSubscriptionsConfig, SproutPlantTreesGrowSalesConfig, InstasellShoppableInstagramConfig, GrowaveConfig, LoloyalLoyaltyReferralsConfig, PowerfulContactFormBuilderConfig, WishlistKingConfig, GloboProductOptionsVariantConfig, KachingBundlesConfig } from './appConfig.js';
|
|
1
|
+
import { RechargeSubscriptionsConfig, BonLoyaltyRewardsReferralsConfig, SubifySubscriptionsConfig, SelleasyConfig, LoopSubscriptionsConfig, SkioSubscriptionsYcS20Config, ShopifyFormsConfig, ReviewxpoProductReviewsAppConfig, PumperBundlesVolumeDiscountConfig, UnlimitedBundlesDiscountsConfig, KiteFreeGiftDiscountConfig, FastBundleBundlesDiscountsConfig, SimpleBundlesKitsConfig, EasyBundleBuilderSkailamaConfig, PreorderNowPreOrderPqConfig, FlyBundlesUpsellsFbtConfig, JunipProductReviewsUgcConfig, PreorderNowWodPresaleConfig, YotpoReviewsV3UgcConfig, WhatmoreShoppableVideosreelConfig, ProductOptionsCustomizerConfig, AppointmentBookingCowlendarConfig, BoldSubscriptionsConfig, SproutPlantTreesGrowSalesConfig, InstasellShoppableInstagramConfig, GrowaveConfig, LoloyalLoyaltyReferralsConfig, PowerfulContactFormBuilderConfig, WishlistKingConfig, GloboProductOptionsVariantConfig, KachingBundlesConfig, TrustooConfig, LooxReviewsConfig } from './appConfig.js';
|
|
2
2
|
|
|
3
3
|
const mapShopifyAppMeta = {
|
|
4
4
|
...RechargeSubscriptionsConfig,
|
|
@@ -31,7 +31,9 @@ const mapShopifyAppMeta = {
|
|
|
31
31
|
...PowerfulContactFormBuilderConfig,
|
|
32
32
|
...WishlistKingConfig,
|
|
33
33
|
...GloboProductOptionsVariantConfig,
|
|
34
|
-
...KachingBundlesConfig
|
|
34
|
+
...KachingBundlesConfig,
|
|
35
|
+
...TrustooConfig,
|
|
36
|
+
...LooxReviewsConfig
|
|
35
37
|
};
|
|
36
38
|
const THIRD_PARTY_APP_BLOCK_ID_PREFIX = 'gp_app';
|
|
37
39
|
|
|
@@ -2,11 +2,19 @@ import { composeSettingsByWidgetType, overrideSettings } from './appSetting.js';
|
|
|
2
2
|
import { getAppBlockType } from './getAppBlockType.js';
|
|
3
3
|
|
|
4
4
|
const listAppUpdateNewVersion = [
|
|
5
|
-
'Growave'
|
|
5
|
+
'Growave',
|
|
6
|
+
'Trustoo',
|
|
7
|
+
'LooxReviews'
|
|
6
8
|
];
|
|
7
9
|
const listThirdPartyRejectAppBlock = {
|
|
8
10
|
YotpoReviews: {
|
|
9
11
|
conditionToReject: 'settings?.version === "v1"'
|
|
12
|
+
},
|
|
13
|
+
Trustoo: {
|
|
14
|
+
conditionToReject: 'settings?.version === "v1"'
|
|
15
|
+
},
|
|
16
|
+
LooxReviews: {
|
|
17
|
+
conditionToReject: 'settings?.version === "v1"'
|
|
10
18
|
}
|
|
11
19
|
};
|
|
12
20
|
const getAppBlockConfig = (tag, appBlockId, settings)=>{
|
package/dist/esm/index.js
CHANGED
|
@@ -24,7 +24,7 @@ export { CollectionsDocument } from './graphql/queries/collections.generated.js'
|
|
|
24
24
|
export { PublishedThemePagesDocument } from './graphql/queries/published-theme-pages.generated.js';
|
|
25
25
|
export { ProductsDocument } from './graphql/queries/products.generated.js';
|
|
26
26
|
export { StorePropertyDocument } from './graphql/queries/store-property.generated.js';
|
|
27
|
-
export {
|
|
27
|
+
export { PreviewThemePageDocument } from './graphql/queries/preview-page.generated.js';
|
|
28
28
|
export { LibraryTemplateDocument } from './graphql-app-api/queries/LibraryTemplate.generated.js';
|
|
29
29
|
export { ThemePageDocument } from './graphql-app-api/queries/ThemePage.generated.js';
|
|
30
30
|
export { SaleFunnelDiscountsDocument } from './graphql-app-api/queries/SaleFunnelDiscounts.generated.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2321,6 +2321,7 @@ type EntitledPriceRuleWhereInput$1 = {
|
|
|
2321
2321
|
};
|
|
2322
2322
|
type Entity = {
|
|
2323
2323
|
findMetafieldByID: Metafield$1;
|
|
2324
|
+
findMetafieldDefinitionByID: MetafieldDefinition;
|
|
2324
2325
|
findProductByID: Product$1;
|
|
2325
2326
|
findPublishedCustomSectionByID: PublishedCustomSection$1;
|
|
2326
2327
|
findPublishedPageInteractionByID: PublishedPageInteraction$1;
|
|
@@ -2338,6 +2339,9 @@ type Entity = {
|
|
|
2338
2339
|
type EntityFindMetafieldByIdArgs = {
|
|
2339
2340
|
id: Scalars$2['ID'];
|
|
2340
2341
|
};
|
|
2342
|
+
type EntityFindMetafieldDefinitionByIdArgs = {
|
|
2343
|
+
id: Scalars$2['ID'];
|
|
2344
|
+
};
|
|
2341
2345
|
type EntityFindProductByIdArgs = {
|
|
2342
2346
|
id: Scalars$2['ID'];
|
|
2343
2347
|
};
|
|
@@ -2655,7 +2659,185 @@ type Metafield$1 = {
|
|
|
2655
2659
|
shopID: Scalars$2['ID'];
|
|
2656
2660
|
value: Scalars$2['String'];
|
|
2657
2661
|
};
|
|
2662
|
+
type MetafieldConnection = {
|
|
2663
|
+
edges: Array<MetafieldEdge>;
|
|
2664
|
+
pageInfo?: Maybe$1<PageInfo$1>;
|
|
2665
|
+
totalCount?: Maybe$1<Scalars$2['Int']>;
|
|
2666
|
+
};
|
|
2667
|
+
type MetafieldDefinition = {
|
|
2668
|
+
baseID: Scalars$2['String'];
|
|
2669
|
+
description?: Maybe$1<Scalars$2['String']>;
|
|
2670
|
+
id: Scalars$2['ID'];
|
|
2671
|
+
key: Scalars$2['String'];
|
|
2672
|
+
name: Scalars$2['String'];
|
|
2673
|
+
namespace: Scalars$2['String'];
|
|
2674
|
+
ownerType: MetafieldDefinitionOwnerType;
|
|
2675
|
+
shopID: Scalars$2['ID'];
|
|
2676
|
+
type: Scalars$2['String'];
|
|
2677
|
+
};
|
|
2678
|
+
type MetafieldDefinitionConnection = {
|
|
2679
|
+
edges: Array<MetafieldDefinitionEdge>;
|
|
2680
|
+
pageInfo?: Maybe$1<PageInfo$1>;
|
|
2681
|
+
totalCount?: Maybe$1<Scalars$2['Int']>;
|
|
2682
|
+
};
|
|
2683
|
+
type MetafieldDefinitionEdge = {
|
|
2684
|
+
cursor?: Maybe$1<Scalars$2['Cursor']>;
|
|
2685
|
+
node?: Maybe$1<MetafieldDefinition>;
|
|
2686
|
+
};
|
|
2687
|
+
type MetafieldDefinitionOrder = {
|
|
2688
|
+
direction: OrderDirection$1;
|
|
2689
|
+
field?: InputMaybe$1<MetafieldDefinitionOrderField>;
|
|
2690
|
+
};
|
|
2691
|
+
type MetafieldDefinitionOrderField = 'CREATED_AT' | 'UPDATED_AT';
|
|
2692
|
+
type MetafieldDefinitionOwnerType = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'MEDIA_IMAGE' | 'PAGE' | 'PRODUCT' | 'PRODUCTVARIANT';
|
|
2693
|
+
/**
|
|
2694
|
+
* MetafieldDefinitionWhereInput is used for filtering MetafieldDefinition objects.
|
|
2695
|
+
* Input was generated by ent.
|
|
2696
|
+
*/
|
|
2697
|
+
type MetafieldDefinitionWhereInput = {
|
|
2698
|
+
and?: InputMaybe$1<Array<MetafieldDefinitionWhereInput>>;
|
|
2699
|
+
/** base_id field predicates */
|
|
2700
|
+
baseID?: InputMaybe$1<Scalars$2['String']>;
|
|
2701
|
+
baseIDContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2702
|
+
baseIDContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2703
|
+
baseIDEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2704
|
+
baseIDGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2705
|
+
baseIDGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2706
|
+
baseIDHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2707
|
+
baseIDHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2708
|
+
baseIDIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2709
|
+
baseIDLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2710
|
+
baseIDLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2711
|
+
baseIDNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2712
|
+
baseIDNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2713
|
+
/** created_at field predicates */
|
|
2714
|
+
createdAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
2715
|
+
createdAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2716
|
+
createdAtGTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2717
|
+
createdAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2718
|
+
createdAtLT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2719
|
+
createdAtLTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2720
|
+
createdAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
2721
|
+
createdAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2722
|
+
/** deleted_at field predicates */
|
|
2723
|
+
deletedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
2724
|
+
deletedAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2725
|
+
deletedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2726
|
+
deletedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2727
|
+
deletedAtIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
2728
|
+
deletedAtLT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2729
|
+
deletedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2730
|
+
deletedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
2731
|
+
deletedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2732
|
+
deletedAtNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
2733
|
+
/** description field predicates */
|
|
2734
|
+
description?: InputMaybe$1<Scalars$2['String']>;
|
|
2735
|
+
descriptionContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2736
|
+
descriptionContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2737
|
+
descriptionEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2738
|
+
descriptionGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2739
|
+
descriptionGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2740
|
+
descriptionHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2741
|
+
descriptionHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2742
|
+
descriptionIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2743
|
+
descriptionIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
2744
|
+
descriptionLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2745
|
+
descriptionLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2746
|
+
descriptionNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2747
|
+
descriptionNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2748
|
+
descriptionNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
2749
|
+
/** id field predicates */
|
|
2750
|
+
id?: InputMaybe$1<Scalars$2['ID']>;
|
|
2751
|
+
idGT?: InputMaybe$1<Scalars$2['ID']>;
|
|
2752
|
+
idGTE?: InputMaybe$1<Scalars$2['ID']>;
|
|
2753
|
+
idIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
2754
|
+
idLT?: InputMaybe$1<Scalars$2['ID']>;
|
|
2755
|
+
idLTE?: InputMaybe$1<Scalars$2['ID']>;
|
|
2756
|
+
idNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
2757
|
+
idNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
2758
|
+
/** key field predicates */
|
|
2759
|
+
key?: InputMaybe$1<Scalars$2['String']>;
|
|
2760
|
+
keyContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2761
|
+
keyContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2762
|
+
keyEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2763
|
+
keyGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2764
|
+
keyGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2765
|
+
keyHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2766
|
+
keyHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2767
|
+
keyIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2768
|
+
keyLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2769
|
+
keyLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2770
|
+
keyNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2771
|
+
keyNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2772
|
+
/** name field predicates */
|
|
2773
|
+
name?: InputMaybe$1<Scalars$2['String']>;
|
|
2774
|
+
nameContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2775
|
+
nameContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2776
|
+
nameEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2777
|
+
nameGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2778
|
+
nameGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2779
|
+
nameHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2780
|
+
nameHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2781
|
+
nameIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2782
|
+
nameLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2783
|
+
nameLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2784
|
+
nameNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2785
|
+
nameNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2786
|
+
/** namespace field predicates */
|
|
2787
|
+
namespace?: InputMaybe$1<Scalars$2['String']>;
|
|
2788
|
+
namespaceContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2789
|
+
namespaceContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2790
|
+
namespaceEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2791
|
+
namespaceGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2792
|
+
namespaceGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2793
|
+
namespaceHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2794
|
+
namespaceHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2795
|
+
namespaceIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2796
|
+
namespaceLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2797
|
+
namespaceLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2798
|
+
namespaceNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2799
|
+
namespaceNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2800
|
+
not?: InputMaybe$1<MetafieldDefinitionWhereInput>;
|
|
2801
|
+
or?: InputMaybe$1<Array<MetafieldDefinitionWhereInput>>;
|
|
2802
|
+
/** owner_type field predicates */
|
|
2803
|
+
ownerType?: InputMaybe$1<MetafieldDefinitionOwnerType>;
|
|
2804
|
+
ownerTypeIn?: InputMaybe$1<Array<MetafieldDefinitionOwnerType>>;
|
|
2805
|
+
ownerTypeNEQ?: InputMaybe$1<MetafieldDefinitionOwnerType>;
|
|
2806
|
+
ownerTypeNotIn?: InputMaybe$1<Array<MetafieldDefinitionOwnerType>>;
|
|
2807
|
+
/** type field predicates */
|
|
2808
|
+
type?: InputMaybe$1<Scalars$2['String']>;
|
|
2809
|
+
typeContains?: InputMaybe$1<Scalars$2['String']>;
|
|
2810
|
+
typeContainsFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2811
|
+
typeEqualFold?: InputMaybe$1<Scalars$2['String']>;
|
|
2812
|
+
typeGT?: InputMaybe$1<Scalars$2['String']>;
|
|
2813
|
+
typeGTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2814
|
+
typeHasPrefix?: InputMaybe$1<Scalars$2['String']>;
|
|
2815
|
+
typeHasSuffix?: InputMaybe$1<Scalars$2['String']>;
|
|
2816
|
+
typeIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2817
|
+
typeLT?: InputMaybe$1<Scalars$2['String']>;
|
|
2818
|
+
typeLTE?: InputMaybe$1<Scalars$2['String']>;
|
|
2819
|
+
typeNEQ?: InputMaybe$1<Scalars$2['String']>;
|
|
2820
|
+
typeNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
2821
|
+
/** updated_at field predicates */
|
|
2822
|
+
updatedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
2823
|
+
updatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2824
|
+
updatedAtGTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2825
|
+
updatedAtIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2826
|
+
updatedAtLT?: InputMaybe$1<Scalars$2['Time']>;
|
|
2827
|
+
updatedAtLTE?: InputMaybe$1<Scalars$2['Time']>;
|
|
2828
|
+
updatedAtNEQ?: InputMaybe$1<Scalars$2['Time']>;
|
|
2829
|
+
updatedAtNotIn?: InputMaybe$1<Array<Scalars$2['Time']>>;
|
|
2830
|
+
};
|
|
2831
|
+
type MetafieldEdge = {
|
|
2832
|
+
cursor?: Maybe$1<Scalars$2['Cursor']>;
|
|
2833
|
+
node?: Maybe$1<Metafield$1>;
|
|
2834
|
+
};
|
|
2658
2835
|
type MetafieldObjectType$1 = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'DISCOUNT' | 'PAGE' | 'PRODUCT' | 'PRODUCT_VARIANT' | 'SHOP';
|
|
2836
|
+
type MetafieldOrder = {
|
|
2837
|
+
direction: OrderDirection$1;
|
|
2838
|
+
field?: InputMaybe$1<MetafieldOrderField>;
|
|
2839
|
+
};
|
|
2840
|
+
type MetafieldOrderField = 'CREATED_AT' | 'UPDATED_AT';
|
|
2659
2841
|
/**
|
|
2660
2842
|
* MetafieldWhereInput is used for filtering Metafield objects.
|
|
2661
2843
|
* Input was generated by ent.
|
|
@@ -3089,9 +3271,74 @@ type PrerequisitePriceRuleWhereInput$1 = {
|
|
|
3089
3271
|
variantIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
3090
3272
|
};
|
|
3091
3273
|
type PreviewCustomSectionType$1 = 'FOOTER' | 'HEADER';
|
|
3274
|
+
type PreviewPageInteraction = {
|
|
3275
|
+
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
3276
|
+
deletedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3277
|
+
id: Scalars$2['ID'];
|
|
3278
|
+
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3279
|
+
value: Array<Scalars$2['Map']>;
|
|
3280
|
+
};
|
|
3281
|
+
type PreviewPageSection = {
|
|
3282
|
+
cid?: Maybe$1<Scalars$2['String']>;
|
|
3283
|
+
component?: Maybe$1<Scalars$2['String']>;
|
|
3284
|
+
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
3285
|
+
deletedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3286
|
+
display?: Maybe$1<Scalars$2['Boolean']>;
|
|
3287
|
+
id: Scalars$2['ID'];
|
|
3288
|
+
isGlobal?: Maybe$1<Scalars$2['Boolean']>;
|
|
3289
|
+
isMobile?: Maybe$1<Scalars$2['Boolean']>;
|
|
3290
|
+
metafields?: Maybe$1<Array<Maybe$1<PreviewPageSectionMeta>>>;
|
|
3291
|
+
name: Scalars$2['String'];
|
|
3292
|
+
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3293
|
+
};
|
|
3294
|
+
type PreviewPageSectionMeta = {
|
|
3295
|
+
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
3296
|
+
id: Scalars$2['ID'];
|
|
3297
|
+
key?: Maybe$1<Scalars$2['String']>;
|
|
3298
|
+
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3299
|
+
value?: Maybe$1<Scalars$2['String']>;
|
|
3300
|
+
};
|
|
3301
|
+
type PreviewThemePage = {
|
|
3302
|
+
analytic?: Maybe$1<Analytic$1>;
|
|
3303
|
+
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
3304
|
+
customCode?: Maybe$1<CustomCode$1>;
|
|
3305
|
+
customFonts?: Maybe$1<Array<Maybe$1<CustomFont$1>>>;
|
|
3306
|
+
dataSEO?: Maybe$1<Array<Maybe$1<DataSeo$1>>>;
|
|
3307
|
+
default: Scalars$2['Boolean'];
|
|
3308
|
+
description?: Maybe$1<Scalars$2['String']>;
|
|
3309
|
+
handle?: Maybe$1<Scalars$2['String']>;
|
|
3310
|
+
id: Scalars$2['ID'];
|
|
3311
|
+
interaction?: Maybe$1<PreviewPageInteraction>;
|
|
3312
|
+
isGlobal?: Maybe$1<Scalars$2['Boolean']>;
|
|
3313
|
+
isMobile?: Maybe$1<Scalars$2['Boolean']>;
|
|
3314
|
+
isSample?: Maybe$1<Scalars$2['Boolean']>;
|
|
3315
|
+
name: Scalars$2['String'];
|
|
3316
|
+
pageSections?: Maybe$1<Array<Maybe$1<PreviewPageSection>>>;
|
|
3317
|
+
sectionPosition?: Maybe$1<Array<Scalars$2['String']>>;
|
|
3318
|
+
splitPercentage?: Maybe$1<Scalars$2['Float']>;
|
|
3319
|
+
status?: Maybe$1<PreviewThemePageStatus$1>;
|
|
3320
|
+
themePageOnlineStoreData?: Maybe$1<Array<Maybe$1<PreviewThemePageOnlineStoreData>>>;
|
|
3321
|
+
themeStyle?: Maybe$1<PreviewThemeStyle>;
|
|
3322
|
+
type: PreviewThemePageType$1;
|
|
3323
|
+
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3324
|
+
};
|
|
3325
|
+
type PreviewThemePageOnlineStoreData = {
|
|
3326
|
+
id: Scalars$2['ID'];
|
|
3327
|
+
onlineStoreObjectBaseIDs?: Maybe$1<Array<Scalars$2['String']>>;
|
|
3328
|
+
type: PreviewThemePageOnlineStoreDataType$1;
|
|
3329
|
+
};
|
|
3092
3330
|
type PreviewThemePageOnlineStoreDataType$1 = 'ARTICLES' | 'BLOGS' | 'COLLECTIONS' | 'PRODUCTS';
|
|
3093
3331
|
type PreviewThemePageStatus$1 = 'DRAFT' | 'PUBLISHED';
|
|
3094
3332
|
type PreviewThemePageType$1 = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'PRODUCT' | 'STATIC';
|
|
3333
|
+
type PreviewThemeStyle = {
|
|
3334
|
+
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
3335
|
+
data: Scalars$2['String'];
|
|
3336
|
+
default?: Maybe$1<Scalars$2['Boolean']>;
|
|
3337
|
+
id: Scalars$2['ID'];
|
|
3338
|
+
isGlobal: Scalars$2['Boolean'];
|
|
3339
|
+
name: Scalars$2['String'];
|
|
3340
|
+
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
3341
|
+
};
|
|
3095
3342
|
type PriceRulePlatform$1 = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
3096
3343
|
/**
|
|
3097
3344
|
* PriceRuleWhereInput is used for filtering PriceRule objects.
|
|
@@ -5006,6 +5253,13 @@ type PublishedPageSectionWhereInput$1 = {
|
|
|
5006
5253
|
nameNotIn?: InputMaybe$1<Array<Scalars$2['String']>>;
|
|
5007
5254
|
not?: InputMaybe$1<PublishedPageSectionWhereInput$1>;
|
|
5008
5255
|
or?: InputMaybe$1<Array<PublishedPageSectionWhereInput$1>>;
|
|
5256
|
+
/** published_theme_page_id field predicates */
|
|
5257
|
+
publishedThemePageID?: InputMaybe$1<Scalars$2['ID']>;
|
|
5258
|
+
publishedThemePageIDIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
5259
|
+
publishedThemePageIDIsNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5260
|
+
publishedThemePageIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
5261
|
+
publishedThemePageIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
5262
|
+
publishedThemePageIDNotNil?: InputMaybe$1<Scalars$2['Boolean']>;
|
|
5009
5263
|
/** updated_at field predicates */
|
|
5010
5264
|
updatedAt?: InputMaybe$1<Scalars$2['Time']>;
|
|
5011
5265
|
updatedAtGT?: InputMaybe$1<Scalars$2['Time']>;
|
|
@@ -5437,9 +5691,6 @@ type PublishedThemePage$1 = {
|
|
|
5437
5691
|
themePageOnlineStoreData?: Maybe$1<Array<Maybe$1<PublishedThemePageOnlineStoreData$1>>>;
|
|
5438
5692
|
type: PublishedThemePageType$1;
|
|
5439
5693
|
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
5440
|
-
publishedAt?: Maybe$1<Scalars$2['Time']>;
|
|
5441
|
-
isPlatformDefault?: boolean;
|
|
5442
|
-
platformOriginalTemplateContent?: string;
|
|
5443
5694
|
};
|
|
5444
5695
|
type PublishedThemePageCustomSection$1 = {
|
|
5445
5696
|
id: Scalars$2['ID'];
|
|
@@ -6006,9 +6257,13 @@ type Query$1 = {
|
|
|
6006
6257
|
collections?: Maybe$1<CollectionConnection$1>;
|
|
6007
6258
|
media?: Maybe$1<Media$1>;
|
|
6008
6259
|
medias?: Maybe$1<MediaConnection$1>;
|
|
6260
|
+
metafieldDefinitions?: Maybe$1<MetafieldDefinitionConnection>;
|
|
6261
|
+
metafields?: Maybe$1<MetafieldConnection>;
|
|
6009
6262
|
page?: Maybe$1<Page$1>;
|
|
6010
6263
|
pages?: Maybe$1<PageConnection$1>;
|
|
6264
|
+
/** @deprecated Use previewThemePage instead */
|
|
6011
6265
|
previewPage?: Maybe$1<PublishedThemePage$1>;
|
|
6266
|
+
previewThemePage?: Maybe$1<PreviewThemePage>;
|
|
6012
6267
|
product?: Maybe$1<Product$1>;
|
|
6013
6268
|
productOptionName: Array<Scalars$2['String']>;
|
|
6014
6269
|
productOptionValueLabel: Array<Scalars$2['String']>;
|
|
@@ -6076,6 +6331,22 @@ type QueryMediasArgs$1 = {
|
|
|
6076
6331
|
orderBy?: InputMaybe$1<MediaOrder$1>;
|
|
6077
6332
|
where?: InputMaybe$1<MediaWhereInput$1>;
|
|
6078
6333
|
};
|
|
6334
|
+
type QueryMetafieldDefinitionsArgs = {
|
|
6335
|
+
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6336
|
+
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6337
|
+
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
6338
|
+
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
6339
|
+
orderBy?: InputMaybe$1<MetafieldDefinitionOrder>;
|
|
6340
|
+
where?: InputMaybe$1<MetafieldDefinitionWhereInput>;
|
|
6341
|
+
};
|
|
6342
|
+
type QueryMetafieldsArgs = {
|
|
6343
|
+
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6344
|
+
before?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
6345
|
+
first?: InputMaybe$1<Scalars$2['Int']>;
|
|
6346
|
+
last?: InputMaybe$1<Scalars$2['Int']>;
|
|
6347
|
+
orderBy?: InputMaybe$1<MetafieldOrder>;
|
|
6348
|
+
where?: InputMaybe$1<MetafieldWhereInput$1>;
|
|
6349
|
+
};
|
|
6079
6350
|
type QueryPageArgs$1 = {
|
|
6080
6351
|
handle?: InputMaybe$1<Scalars$2['String']>;
|
|
6081
6352
|
id?: InputMaybe$1<Scalars$2['ID']>;
|
|
@@ -6092,6 +6363,10 @@ type QueryPreviewPageArgs$1 = {
|
|
|
6092
6363
|
handleURL?: InputMaybe$1<Scalars$2['String']>;
|
|
6093
6364
|
pageType: PublishedThemePageType$1;
|
|
6094
6365
|
};
|
|
6366
|
+
type QueryPreviewThemePageArgs = {
|
|
6367
|
+
handleURL?: InputMaybe$1<Scalars$2['String']>;
|
|
6368
|
+
pageType: PreviewThemePageType$1;
|
|
6369
|
+
};
|
|
6095
6370
|
type QueryProductArgs$1 = {
|
|
6096
6371
|
handle?: InputMaybe$1<Scalars$2['String']>;
|
|
6097
6372
|
id?: InputMaybe$1<Scalars$2['ID']>;
|
|
@@ -6483,13 +6758,14 @@ type VariantProductOptionWhereInput$1 = {
|
|
|
6483
6758
|
variantIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
6484
6759
|
variantIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
6485
6760
|
};
|
|
6486
|
-
type _Entity = Metafield$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;
|
|
6761
|
+
type _Entity = Metafield$1 | MetafieldDefinition | 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;
|
|
6487
6762
|
type _Service = {
|
|
6488
6763
|
sdl?: Maybe$1<Scalars$2['String']>;
|
|
6489
6764
|
};
|
|
6490
6765
|
|
|
6491
6766
|
type shop_Entity = Entity;
|
|
6492
6767
|
type shop_EntityFindMetafieldByIdArgs = EntityFindMetafieldByIdArgs;
|
|
6768
|
+
type shop_EntityFindMetafieldDefinitionByIdArgs = EntityFindMetafieldDefinitionByIdArgs;
|
|
6493
6769
|
type shop_EntityFindProductByIdArgs = EntityFindProductByIdArgs;
|
|
6494
6770
|
type shop_EntityFindPublishedCustomSectionByIdArgs = EntityFindPublishedCustomSectionByIdArgs;
|
|
6495
6771
|
type shop_EntityFindPublishedPageInteractionByIdArgs = EntityFindPublishedPageInteractionByIdArgs;
|
|
@@ -6503,6 +6779,26 @@ type shop_EntityFindPublishedThemePageOnlineStoreDataByIdArgs = EntityFindPublis
|
|
|
6503
6779
|
type shop_EntityFindPublishedThemeSectionByIdArgs = EntityFindPublishedThemeSectionByIdArgs;
|
|
6504
6780
|
type shop_EntityFindPublishedThemeStyleByIdArgs = EntityFindPublishedThemeStyleByIdArgs;
|
|
6505
6781
|
type shop_EntityFindTagByIdArgs = EntityFindTagByIdArgs;
|
|
6782
|
+
type shop_MetafieldConnection = MetafieldConnection;
|
|
6783
|
+
type shop_MetafieldDefinition = MetafieldDefinition;
|
|
6784
|
+
type shop_MetafieldDefinitionConnection = MetafieldDefinitionConnection;
|
|
6785
|
+
type shop_MetafieldDefinitionEdge = MetafieldDefinitionEdge;
|
|
6786
|
+
type shop_MetafieldDefinitionOrder = MetafieldDefinitionOrder;
|
|
6787
|
+
type shop_MetafieldDefinitionOrderField = MetafieldDefinitionOrderField;
|
|
6788
|
+
type shop_MetafieldDefinitionOwnerType = MetafieldDefinitionOwnerType;
|
|
6789
|
+
type shop_MetafieldDefinitionWhereInput = MetafieldDefinitionWhereInput;
|
|
6790
|
+
type shop_MetafieldEdge = MetafieldEdge;
|
|
6791
|
+
type shop_MetafieldOrder = MetafieldOrder;
|
|
6792
|
+
type shop_MetafieldOrderField = MetafieldOrderField;
|
|
6793
|
+
type shop_PreviewPageInteraction = PreviewPageInteraction;
|
|
6794
|
+
type shop_PreviewPageSection = PreviewPageSection;
|
|
6795
|
+
type shop_PreviewPageSectionMeta = PreviewPageSectionMeta;
|
|
6796
|
+
type shop_PreviewThemePage = PreviewThemePage;
|
|
6797
|
+
type shop_PreviewThemePageOnlineStoreData = PreviewThemePageOnlineStoreData;
|
|
6798
|
+
type shop_PreviewThemeStyle = PreviewThemeStyle;
|
|
6799
|
+
type shop_QueryMetafieldDefinitionsArgs = QueryMetafieldDefinitionsArgs;
|
|
6800
|
+
type shop_QueryMetafieldsArgs = QueryMetafieldsArgs;
|
|
6801
|
+
type shop_QueryPreviewThemePageArgs = QueryPreviewThemePageArgs;
|
|
6506
6802
|
type shop_QueryPublishedShopMetasArgs = QueryPublishedShopMetasArgs;
|
|
6507
6803
|
type shop_Query_EntitiesArgs = Query_EntitiesArgs;
|
|
6508
6804
|
type shop__Entity = _Entity;
|
|
@@ -6574,6 +6870,7 @@ declare namespace shop {
|
|
|
6574
6870
|
EntitledPriceRuleWhereInput$1 as EntitledPriceRuleWhereInput,
|
|
6575
6871
|
shop_Entity as Entity,
|
|
6576
6872
|
shop_EntityFindMetafieldByIdArgs as EntityFindMetafieldByIdArgs,
|
|
6873
|
+
shop_EntityFindMetafieldDefinitionByIdArgs as EntityFindMetafieldDefinitionByIdArgs,
|
|
6577
6874
|
shop_EntityFindProductByIdArgs as EntityFindProductByIdArgs,
|
|
6578
6875
|
shop_EntityFindPublishedCustomSectionByIdArgs as EntityFindPublishedCustomSectionByIdArgs,
|
|
6579
6876
|
shop_EntityFindPublishedPageInteractionByIdArgs as EntityFindPublishedPageInteractionByIdArgs,
|
|
@@ -6599,7 +6896,18 @@ declare namespace shop {
|
|
|
6599
6896
|
MediaOrderField$1 as MediaOrderField,
|
|
6600
6897
|
MediaWhereInput$1 as MediaWhereInput,
|
|
6601
6898
|
Metafield$1 as Metafield,
|
|
6899
|
+
shop_MetafieldConnection as MetafieldConnection,
|
|
6900
|
+
shop_MetafieldDefinition as MetafieldDefinition,
|
|
6901
|
+
shop_MetafieldDefinitionConnection as MetafieldDefinitionConnection,
|
|
6902
|
+
shop_MetafieldDefinitionEdge as MetafieldDefinitionEdge,
|
|
6903
|
+
shop_MetafieldDefinitionOrder as MetafieldDefinitionOrder,
|
|
6904
|
+
shop_MetafieldDefinitionOrderField as MetafieldDefinitionOrderField,
|
|
6905
|
+
shop_MetafieldDefinitionOwnerType as MetafieldDefinitionOwnerType,
|
|
6906
|
+
shop_MetafieldDefinitionWhereInput as MetafieldDefinitionWhereInput,
|
|
6907
|
+
shop_MetafieldEdge as MetafieldEdge,
|
|
6602
6908
|
MetafieldObjectType$1 as MetafieldObjectType,
|
|
6909
|
+
shop_MetafieldOrder as MetafieldOrder,
|
|
6910
|
+
shop_MetafieldOrderField as MetafieldOrderField,
|
|
6603
6911
|
MetafieldWhereInput$1 as MetafieldWhereInput,
|
|
6604
6912
|
Mutation$1 as Mutation,
|
|
6605
6913
|
MutationCartCreateArgs$1 as MutationCartCreateArgs,
|
|
@@ -6621,9 +6929,15 @@ declare namespace shop {
|
|
|
6621
6929
|
PageWhereInput$1 as PageWhereInput,
|
|
6622
6930
|
PrerequisitePriceRuleWhereInput$1 as PrerequisitePriceRuleWhereInput,
|
|
6623
6931
|
PreviewCustomSectionType$1 as PreviewCustomSectionType,
|
|
6932
|
+
shop_PreviewPageInteraction as PreviewPageInteraction,
|
|
6933
|
+
shop_PreviewPageSection as PreviewPageSection,
|
|
6934
|
+
shop_PreviewPageSectionMeta as PreviewPageSectionMeta,
|
|
6935
|
+
shop_PreviewThemePage as PreviewThemePage,
|
|
6936
|
+
shop_PreviewThemePageOnlineStoreData as PreviewThemePageOnlineStoreData,
|
|
6624
6937
|
PreviewThemePageOnlineStoreDataType$1 as PreviewThemePageOnlineStoreDataType,
|
|
6625
6938
|
PreviewThemePageStatus$1 as PreviewThemePageStatus,
|
|
6626
6939
|
PreviewThemePageType$1 as PreviewThemePageType,
|
|
6940
|
+
shop_PreviewThemeStyle as PreviewThemeStyle,
|
|
6627
6941
|
PriceRulePlatform$1 as PriceRulePlatform,
|
|
6628
6942
|
PriceRuleWhereInput$1 as PriceRuleWhereInput,
|
|
6629
6943
|
Product$1 as Product,
|
|
@@ -6707,9 +7021,12 @@ declare namespace shop {
|
|
|
6707
7021
|
QueryCollectionsArgs$1 as QueryCollectionsArgs,
|
|
6708
7022
|
QueryMediaArgs$1 as QueryMediaArgs,
|
|
6709
7023
|
QueryMediasArgs$1 as QueryMediasArgs,
|
|
7024
|
+
shop_QueryMetafieldDefinitionsArgs as QueryMetafieldDefinitionsArgs,
|
|
7025
|
+
shop_QueryMetafieldsArgs as QueryMetafieldsArgs,
|
|
6710
7026
|
QueryPageArgs$1 as QueryPageArgs,
|
|
6711
7027
|
QueryPagesArgs$1 as QueryPagesArgs,
|
|
6712
7028
|
QueryPreviewPageArgs$1 as QueryPreviewPageArgs,
|
|
7029
|
+
shop_QueryPreviewThemePageArgs as QueryPreviewThemePageArgs,
|
|
6713
7030
|
QueryProductArgs$1 as QueryProductArgs,
|
|
6714
7031
|
QueryProductOptionNameArgs$1 as QueryProductOptionNameArgs,
|
|
6715
7032
|
QueryProductOptionValueLabelArgs$1 as QueryProductOptionValueLabelArgs,
|
|
@@ -6905,6 +7222,7 @@ type ResponsiveStateProp<T> = ObjectDevices<StateProp<T>>;
|
|
|
6905
7222
|
type AlignItemProp = 'left' | 'center' | 'right';
|
|
6906
7223
|
type JudgeMeReviewsWidgetType = 'single_product_preview_badge' | 'review_widget' | 'reviews_carousel' | 'reviews_text' | 'section_for_medals' | 'ugc_media_grid' | 'verified_reviews_count_badge';
|
|
6907
7224
|
type LooxReviewsWidgetType = 'reviews_widget' | 'rating_widget' | 'carousel_widget';
|
|
7225
|
+
type LooxReviewsWidgetTypeV2 = 'loox-card-carousel-section' | 'loox-gallery-carousel-section' | 'loox-referrals-section' | 'loox-dynamic-section' | 'loox-snippets-widget' | 'loox-rating' | 'loox-testimonial-carousel-section' | 'loox-trust-badge' | 'loox-video-slider';
|
|
6908
7226
|
type RyviuWidgetType = 'reviews' | 'badge' | 'badgeCollection' | 'carousel' | 'masonry';
|
|
6909
7227
|
type RivyoWidgetType = 'reviews' | 'badge' | 'testimonials' | 'allReviewsPage';
|
|
6910
7228
|
type VitalsWidgetType = 'addToWishlist' | 'goToWishlist' | 'paymentLogos' | 'recentlyViewed' | 'shoppableInstagramFeed' | 'trustSealsAndBadges' | 'productReviews' | 'productBundles' | 'volumeDiscounts' | 'stockScarcity' | 'sizeChart' | 'upsellBuilderBogo' | 'bundleCountdownBox' | 'reviewsUnderTitle' | 'productReviewsCarousel' | 'shippingBox' | 'currencyConverter' | 'relatedProducts' | 'backInStock';
|
|
@@ -6927,6 +7245,7 @@ type ObjectLayoutValue = {
|
|
|
6927
7245
|
};
|
|
6928
7246
|
type ProductReviewsWidgetType = 'reviews' | 'badge';
|
|
6929
7247
|
type TrustooWidgetType = 'starRatingInList' | 'starRating' | 'reviews';
|
|
7248
|
+
type TrustooWidgetTypeV2 = 'barrage-carousel' | 'review-widget' | 'photo-carousel' | 'star-rating-widget' | 'text-carousel' | 'card-carousel';
|
|
6930
7249
|
type WiserWidgetType = 'related' | 'recommended' | 'alsobought' | 'recentview' | 'newarrivals' | 'featured' | 'topselling' | 'trending' | 'recent_related';
|
|
6931
7250
|
type WiserV2WidgetType = 'evm-also-bought-products' | 'evm-related-product' | 'evm-featured-collections-product' | 'evm-recommended-products' | 'evm-most-popular-products' | 'evm-new-arrivals-product' | 'recently-viewed' | 'evm-recent_purchased_recomm-product' | 'evm-recent_purchased-product' | 'trending-products' | 'evm-related-viewed-browsing';
|
|
6932
7251
|
type InstantJudgeMeReviewsWidgetType = 'single_product_preview_badge' | 'review_widget' | 'reviews_carousel' | 'floating_reviews_tab' | 'all_reviews_widget' | 'verified_reviews_count_badge' | 'medals' | 'media_grid' | 'all_reviews_text';
|
|
@@ -31638,22 +31957,22 @@ type StorePropertyQueryResponse = {
|
|
|
31638
31957
|
};
|
|
31639
31958
|
declare const StorePropertyDocument = "\n query storeProperty {\n storeProperty {\n favicon\n swatchesConfig\n primaryDomain\n }\n}\n ";
|
|
31640
31959
|
|
|
31641
|
-
type
|
|
31960
|
+
type PreviewThemePageQueryVariables = Exact$1<{
|
|
31961
|
+
pageType: PreviewThemePageType$1;
|
|
31642
31962
|
handleURL?: InputMaybe$1<Scalars$2['String']>;
|
|
31643
|
-
pageType: PublishedThemePageType$1;
|
|
31644
31963
|
}>;
|
|
31645
|
-
type
|
|
31646
|
-
|
|
31647
|
-
pageSections?: Maybe$1<Array<Maybe$1<Pick<
|
|
31648
|
-
|
|
31649
|
-
|
|
31650
|
-
|
|
31651
|
-
|
|
31652
|
-
|
|
31653
|
-
interaction?: Maybe$1<Pick<
|
|
31964
|
+
type PreviewThemePageQueryResponse = {
|
|
31965
|
+
previewThemePage?: Maybe$1<Pick<PreviewThemePage, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
|
|
31966
|
+
pageSections?: Maybe$1<Array<Maybe$1<Pick<PreviewPageSection, 'cid' | 'component' | 'id'>>>>;
|
|
31967
|
+
dataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
|
|
31968
|
+
themeStyle?: Maybe$1<Pick<PreviewThemeStyle, 'id' | 'data' | 'name'>>;
|
|
31969
|
+
analytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
31970
|
+
customCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
31971
|
+
customFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'mimeType' | 'filePath'>>>>;
|
|
31972
|
+
interaction?: Maybe$1<Pick<PreviewPageInteraction, 'id' | 'value'>>;
|
|
31654
31973
|
}>;
|
|
31655
31974
|
};
|
|
31656
|
-
declare const
|
|
31975
|
+
declare const PreviewThemePageDocument: string;
|
|
31657
31976
|
|
|
31658
31977
|
type LibraryTemplateQueryVariables = Exact<{
|
|
31659
31978
|
libraryTemplateId: Scalars['ID'];
|
|
@@ -41552,6 +41871,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name'
|
|
|
41552
41871
|
pageStyle?: Maybe$1<Pick<PublishedThemeStyle$1, 'id' | 'data' | 'name'>>;
|
|
41553
41872
|
themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
41554
41873
|
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
41874
|
+
themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'mimeType' | 'filePath'>>>>;
|
|
41555
41875
|
interaction?: Maybe$1<Pick<PublishedPageInteraction$1, 'id' | 'value'>>;
|
|
41556
41876
|
};
|
|
41557
41877
|
|
|
@@ -41602,4 +41922,4 @@ declare const useInteraction: () => {
|
|
|
41602
41922
|
interactionListenerLoaded: (callback: () => void) => void;
|
|
41603
41923
|
};
|
|
41604
41924
|
|
|
41605
|
-
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, Background, BaseProps, BasePropsWrap, BlockEntity, 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, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, 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, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType,
|
|
41925
|
+
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, Background, BaseProps, BasePropsWrap, BlockEntity, 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, DeepPartial, DynamicCollection, DynamicProduct, ExtractState, FastBundleWidgetType, FeraReviewsV3WidgetType, FeraReviewsWidgetType, FetchCollectionArgs, FetchFunc, FetchProductParams, FlexDirectionProp, FontName, GRADIENT_BGR_KEY, GlobalStyleConfig, GlobalStyleResponsiveConfig, GlobalSwatchesData, GraphQLConnection, GroupPropType, GrowaveWidgetTypeV1, GrowaveWidgetTypeV2, HSLAColorType, HSLColorType, HexColorType, 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, ModalProvider, ModalProviderProps, NameDevices$1 as NameDevices, NestedKeys, ObjectDeviceGlobalType, ObjectDevices, ObjectLayoutValue, OmnisendWidgetType, OnlyOne, OpinewDesignWidgetType, OpinewWidgetType, OptionNormalStyle, OptionSpecialStyle, Options, 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, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, QueryPublishedShopMetasArgs, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, 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, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBorderCss, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterCornerInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getPaddingGlobalSize, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStyleShadow, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBgColor, getStyleShadow, getStyleShadowState, getValueByDevice, getWidthByShapeGlobalSize, getWidthHeightGlobalSize, globalEvent, gridToArrayRegex, gtag, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn, isBrowser, isColor, isColumnDirectionExist, isDefined, isEmptyChildren, isLocalEnv, isSafari, loadScript, makeAspectRatio, makeContainerWidthOrHeight, makeDotGapToCarouselStyle, makeFixedBgAttachment, makeGlobalSize, makeGlobalSizeHeightResponsive, makeGlobalSizeIcon, makeGlobalSizeWidthResponsive, makeHeight, makeLineClamp, makeStyle, makeStyleKey, makeStyleResponsive, makeStyleResponsiveByScreen, makeStyleResponsiveState, makeStyleState, makeStyleWithDefault, makeWidth, normalizeBuilderData, optionLayoutStyle, parseSelectedOption, parseValueWithUnit, prefetchQueries, props, removeAttrInStyle, removeNullUndefined, removePaddingYInStyle, removeUndefinedValuesFromObject, 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, useFormatMoney, useHasPreSelected, useInitialSwatchesOptions, useInteraction, useIsSampleProduct, useIsStorefrontProduct, useIsSyncProduct, useIsomorphicLayoutEffect, useLazyVideo, useLoadScript, useLocale, useMatchMutate, useMobileOnly, useModalStore, useMoney, useMoneyFormat, usePageStore, usePageType, usePluginEnable, usePrevious, useProduct, useProductBundleDiscount, useProductList, useProductListProducts, useProductListSettings, useProductListStore, useProductListStyles, useProductOfferDiscount, useProductProperties, useProductQuery, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|