@gem-sdk/core 2.0.0-dev.189 → 2.0.0-dev.195
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/Render.liquid.js +9 -9
- package/dist/cjs/graphql-app-api/queries/SaleFunnelOffer.generated.js +25 -0
- package/dist/cjs/index.js +2 -0
- package/dist/esm/components/Render.liquid.js +9 -9
- package/dist/esm/graphql-app-api/queries/SaleFunnelOffer.generated.js +23 -0
- package/dist/esm/index.js +1 -0
- package/dist/types/index.d.ts +196 -41
- package/package.json +1 -1
|
@@ -37,7 +37,7 @@ const componentUsingAdvanced = [
|
|
|
37
37
|
'IconList',
|
|
38
38
|
'ProductVariants'
|
|
39
39
|
];
|
|
40
|
-
const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageContext,
|
|
40
|
+
const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageContext, enableLazyLoadImage, additionalSettings, ...passProps })=>{
|
|
41
41
|
const item = builder[uid];
|
|
42
42
|
const Component = components[item?.tag];
|
|
43
43
|
if (!Component) {
|
|
@@ -76,7 +76,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
76
76
|
advanced: item.advanced,
|
|
77
77
|
parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
|
|
78
78
|
pageContext,
|
|
79
|
-
|
|
79
|
+
enableLazyLoadImage,
|
|
80
80
|
...additionalSettings,
|
|
81
81
|
...passProps,
|
|
82
82
|
builderAttrs: {
|
|
@@ -90,7 +90,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
90
90
|
components,
|
|
91
91
|
customProps,
|
|
92
92
|
pageContext,
|
|
93
|
-
|
|
93
|
+
enableLazyLoadImage,
|
|
94
94
|
...additionalSettings
|
|
95
95
|
};
|
|
96
96
|
}),
|
|
@@ -104,7 +104,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
104
104
|
customProps,
|
|
105
105
|
parentTag: item.tag,
|
|
106
106
|
pageContext,
|
|
107
|
-
|
|
107
|
+
enableLazyLoadImage,
|
|
108
108
|
...additionalSettings
|
|
109
109
|
}))) : ''
|
|
110
110
|
});
|
|
@@ -121,7 +121,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
121
121
|
isText: componentTexts.includes(item.tag) ? true : null,
|
|
122
122
|
parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
|
|
123
123
|
pageContext,
|
|
124
|
-
|
|
124
|
+
enableLazyLoadImage,
|
|
125
125
|
...passProps,
|
|
126
126
|
builderAttrs: {
|
|
127
127
|
...passProps.builderAttrs
|
|
@@ -143,7 +143,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
143
143
|
cssClass: item?.advanced?.cssClass
|
|
144
144
|
},
|
|
145
145
|
pageContext,
|
|
146
|
-
|
|
146
|
+
enableLazyLoadImage,
|
|
147
147
|
...additionalSettings,
|
|
148
148
|
...passProps,
|
|
149
149
|
builderAttrs: {
|
|
@@ -157,7 +157,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
157
157
|
components,
|
|
158
158
|
customProps,
|
|
159
159
|
pageContext,
|
|
160
|
-
|
|
160
|
+
enableLazyLoadImage,
|
|
161
161
|
...additionalSettings
|
|
162
162
|
};
|
|
163
163
|
}),
|
|
@@ -171,7 +171,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
171
171
|
customProps,
|
|
172
172
|
parentTag: item.tag,
|
|
173
173
|
pageContext,
|
|
174
|
-
|
|
174
|
+
enableLazyLoadImage,
|
|
175
175
|
...additionalSettings
|
|
176
176
|
}))) : ''
|
|
177
177
|
});
|
|
@@ -188,7 +188,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
188
188
|
cssClass: item?.advanced?.cssClass
|
|
189
189
|
},
|
|
190
190
|
pageContext,
|
|
191
|
-
|
|
191
|
+
enableLazyLoadImage,
|
|
192
192
|
...additionalSettings,
|
|
193
193
|
isText: componentTexts.includes(item.tag) ? true : null,
|
|
194
194
|
style: componentIconList.includes(item.tag) ? style : null,
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/* eslint-disable */ const SaleFunnelOfferDocument = `
|
|
4
|
+
query SaleFunnelOffer($saleFunnelOfferId: ID!) {
|
|
5
|
+
saleFunnelOffer(id: $saleFunnelOfferId) {
|
|
6
|
+
dynamicDiscounts {
|
|
7
|
+
id
|
|
8
|
+
createdAt
|
|
9
|
+
updatedAt
|
|
10
|
+
type
|
|
11
|
+
valueType
|
|
12
|
+
value
|
|
13
|
+
appliedProductCount
|
|
14
|
+
isEnabled
|
|
15
|
+
}
|
|
16
|
+
id
|
|
17
|
+
isEnabled
|
|
18
|
+
campaignID
|
|
19
|
+
createdAt
|
|
20
|
+
deletedAt
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
`;
|
|
24
|
+
|
|
25
|
+
exports.SaleFunnelOfferDocument = SaleFunnelOfferDocument;
|
package/dist/cjs/index.js
CHANGED
|
@@ -33,6 +33,7 @@ var ThemePage_generated = require('./graphql-app-api/queries/ThemePage.generated
|
|
|
33
33
|
var SaleFunnelDiscounts_generated = require('./graphql-app-api/queries/SaleFunnelDiscounts.generated.js');
|
|
34
34
|
var LibrarySaleFunnelDiscount_generated = require('./graphql-app-api/queries/LibrarySaleFunnelDiscount.generated.js');
|
|
35
35
|
var ShopLibraryPage_generated = require('./graphql-app-api/queries/ShopLibraryPage.generated.js');
|
|
36
|
+
var SaleFunnelOffer_generated = require('./graphql-app-api/queries/SaleFunnelOffer.generated.js');
|
|
36
37
|
var borders = require('./helpers/borders.js');
|
|
37
38
|
var carousel = require('./helpers/carousel.js');
|
|
38
39
|
var cls = require('./helpers/cls.js');
|
|
@@ -169,6 +170,7 @@ exports.ThemePageDocument = ThemePage_generated.ThemePageDocument;
|
|
|
169
170
|
exports.SaleFunnelDiscountsDocument = SaleFunnelDiscounts_generated.SaleFunnelDiscountsDocument;
|
|
170
171
|
exports.LibrarySaleFunnelDocument = LibrarySaleFunnelDiscount_generated.LibrarySaleFunnelDocument;
|
|
171
172
|
exports.ShopLibraryPageDocument = ShopLibraryPage_generated.ShopLibraryPageDocument;
|
|
173
|
+
exports.SaleFunnelOfferDocument = SaleFunnelOffer_generated.SaleFunnelOfferDocument;
|
|
172
174
|
exports.composeBorderCss = borders.composeBorderCss;
|
|
173
175
|
exports.composeBorderResponsive = borders.composeBorderResponsive;
|
|
174
176
|
exports.getBorderRadiusStyle = borders.getBorderRadiusStyle;
|
|
@@ -33,7 +33,7 @@ const componentUsingAdvanced = [
|
|
|
33
33
|
'IconList',
|
|
34
34
|
'ProductVariants'
|
|
35
35
|
];
|
|
36
|
-
const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageContext,
|
|
36
|
+
const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageContext, enableLazyLoadImage, additionalSettings, ...passProps })=>{
|
|
37
37
|
const item = builder[uid];
|
|
38
38
|
const Component = components[item?.tag];
|
|
39
39
|
if (!Component) {
|
|
@@ -72,7 +72,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
72
72
|
advanced: item.advanced,
|
|
73
73
|
parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
|
|
74
74
|
pageContext,
|
|
75
|
-
|
|
75
|
+
enableLazyLoadImage,
|
|
76
76
|
...additionalSettings,
|
|
77
77
|
...passProps,
|
|
78
78
|
builderAttrs: {
|
|
@@ -86,7 +86,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
86
86
|
components,
|
|
87
87
|
customProps,
|
|
88
88
|
pageContext,
|
|
89
|
-
|
|
89
|
+
enableLazyLoadImage,
|
|
90
90
|
...additionalSettings
|
|
91
91
|
};
|
|
92
92
|
}),
|
|
@@ -100,7 +100,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
100
100
|
customProps,
|
|
101
101
|
parentTag: item.tag,
|
|
102
102
|
pageContext,
|
|
103
|
-
|
|
103
|
+
enableLazyLoadImage,
|
|
104
104
|
...additionalSettings
|
|
105
105
|
}))) : ''
|
|
106
106
|
});
|
|
@@ -117,7 +117,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
117
117
|
isText: componentTexts.includes(item.tag) ? true : null,
|
|
118
118
|
parentId: componentsRenderWithParentId.includes(item.tag) ? parentId : null,
|
|
119
119
|
pageContext,
|
|
120
|
-
|
|
120
|
+
enableLazyLoadImage,
|
|
121
121
|
...passProps,
|
|
122
122
|
builderAttrs: {
|
|
123
123
|
...passProps.builderAttrs
|
|
@@ -139,7 +139,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
139
139
|
cssClass: item?.advanced?.cssClass
|
|
140
140
|
},
|
|
141
141
|
pageContext,
|
|
142
|
-
|
|
142
|
+
enableLazyLoadImage,
|
|
143
143
|
...additionalSettings,
|
|
144
144
|
...passProps,
|
|
145
145
|
builderAttrs: {
|
|
@@ -153,7 +153,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
153
153
|
components,
|
|
154
154
|
customProps,
|
|
155
155
|
pageContext,
|
|
156
|
-
|
|
156
|
+
enableLazyLoadImage,
|
|
157
157
|
...additionalSettings
|
|
158
158
|
};
|
|
159
159
|
}),
|
|
@@ -167,7 +167,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
167
167
|
customProps,
|
|
168
168
|
parentTag: item.tag,
|
|
169
169
|
pageContext,
|
|
170
|
-
|
|
170
|
+
enableLazyLoadImage,
|
|
171
171
|
...additionalSettings
|
|
172
172
|
}))) : ''
|
|
173
173
|
});
|
|
@@ -184,7 +184,7 @@ const Render = ({ uid, builder, components, parentId, extraFiles = {}, pageConte
|
|
|
184
184
|
cssClass: item?.advanced?.cssClass
|
|
185
185
|
},
|
|
186
186
|
pageContext,
|
|
187
|
-
|
|
187
|
+
enableLazyLoadImage,
|
|
188
188
|
...additionalSettings,
|
|
189
189
|
isText: componentTexts.includes(item.tag) ? true : null,
|
|
190
190
|
style: componentIconList.includes(item.tag) ? style : null,
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/* eslint-disable */ const SaleFunnelOfferDocument = `
|
|
2
|
+
query SaleFunnelOffer($saleFunnelOfferId: ID!) {
|
|
3
|
+
saleFunnelOffer(id: $saleFunnelOfferId) {
|
|
4
|
+
dynamicDiscounts {
|
|
5
|
+
id
|
|
6
|
+
createdAt
|
|
7
|
+
updatedAt
|
|
8
|
+
type
|
|
9
|
+
valueType
|
|
10
|
+
value
|
|
11
|
+
appliedProductCount
|
|
12
|
+
isEnabled
|
|
13
|
+
}
|
|
14
|
+
id
|
|
15
|
+
isEnabled
|
|
16
|
+
campaignID
|
|
17
|
+
createdAt
|
|
18
|
+
deletedAt
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
`;
|
|
22
|
+
|
|
23
|
+
export { SaleFunnelOfferDocument };
|
package/dist/esm/index.js
CHANGED
|
@@ -31,6 +31,7 @@ export { ThemePageDocument } from './graphql-app-api/queries/ThemePage.generated
|
|
|
31
31
|
export { SaleFunnelDiscountsDocument } from './graphql-app-api/queries/SaleFunnelDiscounts.generated.js';
|
|
32
32
|
export { LibrarySaleFunnelDocument } from './graphql-app-api/queries/LibrarySaleFunnelDiscount.generated.js';
|
|
33
33
|
export { ShopLibraryPageDocument } from './graphql-app-api/queries/ShopLibraryPage.generated.js';
|
|
34
|
+
export { SaleFunnelOfferDocument } from './graphql-app-api/queries/SaleFunnelOffer.generated.js';
|
|
34
35
|
export { composeBorderCss, composeBorderResponsive, getBorderRadiusStyle, getBorderStyle, handleConvertBorderColor, handleConvertBorderStyle, handleConvertBorderWidth, handleConvertClassColor, handleConvertClassColorDynamicBtn } from './helpers/borders.js';
|
|
35
36
|
export { getCarouselContainerHeight, makeContainerWidthOrHeight, makeDotGapToCarouselStyle } from './helpers/carousel.js';
|
|
36
37
|
export { cls } from './helpers/cls.js';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -9889,21 +9889,6 @@ type Analytic = {
|
|
|
9889
9889
|
gaTrackingID?: Maybe<Scalars['String']>;
|
|
9890
9890
|
tiktokPixelID?: Maybe<Scalars['String']>;
|
|
9891
9891
|
};
|
|
9892
|
-
type AnalyticsQueryParameter = {
|
|
9893
|
-
after?: InputMaybe<Scalars['Cursor']>;
|
|
9894
|
-
campaignIDs?: InputMaybe<Array<Scalars['ID']>>;
|
|
9895
|
-
campaignVersionIDs?: InputMaybe<Array<Scalars['ID']>>;
|
|
9896
|
-
endDate?: InputMaybe<Scalars['Time']>;
|
|
9897
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
9898
|
-
groupBy?: InputMaybe<GroupByFields>;
|
|
9899
|
-
isDeleted?: InputMaybe<Scalars['Boolean']>;
|
|
9900
|
-
offerIDs?: InputMaybe<Array<Scalars['ID']>>;
|
|
9901
|
-
orderByDirection?: InputMaybe<OrderDirection>;
|
|
9902
|
-
orderByField?: InputMaybe<OrderFields>;
|
|
9903
|
-
saleFunnelIDs?: InputMaybe<Array<Scalars['ID']>>;
|
|
9904
|
-
shopID?: InputMaybe<Scalars['ID']>;
|
|
9905
|
-
startDate?: InputMaybe<Scalars['Time']>;
|
|
9906
|
-
};
|
|
9907
9892
|
type AppType = 'CUSTOM' | 'GEMPAGES' | 'GEMPAGESV7' | 'GEMX' | 'GEMXP';
|
|
9908
9893
|
type Article$1 = {
|
|
9909
9894
|
author?: Maybe<Scalars['String']>;
|
|
@@ -9920,6 +9905,7 @@ type Article$1 = {
|
|
|
9920
9905
|
platform?: Maybe<ArticlePlatform>;
|
|
9921
9906
|
platformCreatedAt?: Maybe<Scalars['Time']>;
|
|
9922
9907
|
platformUpdatedAt?: Maybe<Scalars['Time']>;
|
|
9908
|
+
publishedAt?: Maybe<Scalars['Time']>;
|
|
9923
9909
|
tags?: Maybe<Array<Maybe<Tag>>>;
|
|
9924
9910
|
templateSuffix?: Maybe<Scalars['String']>;
|
|
9925
9911
|
title?: Maybe<Scalars['String']>;
|
|
@@ -10066,7 +10052,7 @@ type ArticleOrder = {
|
|
|
10066
10052
|
direction: OrderDirection;
|
|
10067
10053
|
field?: InputMaybe<ArticleOrderField>;
|
|
10068
10054
|
};
|
|
10069
|
-
type ArticleOrderField = 'CREATED_AT' | 'PLATFORM_CREATED_AT' | 'PLATFORM_UPDATED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
10055
|
+
type ArticleOrderField = 'CREATED_AT' | 'PLATFORM_CREATED_AT' | 'PLATFORM_UPDATED_AT' | 'PUBLISHED_AT' | 'TITLE' | 'UPDATED_AT';
|
|
10070
10056
|
type ArticlePlatform = 'BIG' | 'SHOPIFY' | 'WOO';
|
|
10071
10057
|
/**
|
|
10072
10058
|
* ArticleTagWhereInput is used for filtering ArticleTag objects.
|
|
@@ -10250,6 +10236,17 @@ type ArticleWhereInput = {
|
|
|
10250
10236
|
platformUpdatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
10251
10237
|
platformUpdatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
10252
10238
|
platformUpdatedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
10239
|
+
/** published_at field predicates */
|
|
10240
|
+
publishedAt?: InputMaybe<Scalars['Time']>;
|
|
10241
|
+
publishedAtGT?: InputMaybe<Scalars['Time']>;
|
|
10242
|
+
publishedAtGTE?: InputMaybe<Scalars['Time']>;
|
|
10243
|
+
publishedAtIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
10244
|
+
publishedAtIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
10245
|
+
publishedAtLT?: InputMaybe<Scalars['Time']>;
|
|
10246
|
+
publishedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
10247
|
+
publishedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
10248
|
+
publishedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
10249
|
+
publishedAtNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
10253
10250
|
/** template_suffix field predicates */
|
|
10254
10251
|
templateSuffix?: InputMaybe<Scalars['String']>;
|
|
10255
10252
|
templateSuffixContains?: InputMaybe<Scalars['String']>;
|
|
@@ -10589,6 +10586,11 @@ type CampaignOfferStatEdge = {
|
|
|
10589
10586
|
cursor: Scalars['Cursor'];
|
|
10590
10587
|
node?: Maybe<CampaignOfferStat>;
|
|
10591
10588
|
};
|
|
10589
|
+
type CampaignOfferStatOrder = {
|
|
10590
|
+
direction: OrderDirection;
|
|
10591
|
+
field?: InputMaybe<CampaignOfferStatOrderField>;
|
|
10592
|
+
};
|
|
10593
|
+
type CampaignOfferStatOrderField = 'ACCEPTED' | 'REVENUE' | 'VIEW';
|
|
10592
10594
|
/**
|
|
10593
10595
|
* CampaignOfferStatWhereInput is used for filtering CampaignOfferStat objects.
|
|
10594
10596
|
* Input was generated by ent.
|
|
@@ -12054,6 +12056,10 @@ type CreateOfferProductTagConditionInput = {
|
|
|
12054
12056
|
type: OfferDynamicTriggerConditionType;
|
|
12055
12057
|
value: Array<Scalars['String']>;
|
|
12056
12058
|
};
|
|
12059
|
+
type CreateOfferSameAsPurchasedProductsConditionInput = {
|
|
12060
|
+
dynamicTriggerID: Scalars['ID'];
|
|
12061
|
+
position?: InputMaybe<Scalars['Int']>;
|
|
12062
|
+
};
|
|
12057
12063
|
type CreateOfferSpecificProductConditionInput = {
|
|
12058
12064
|
dynamicTriggerID: Scalars['ID'];
|
|
12059
12065
|
operator: OfferDynamicTriggerConditionOperator;
|
|
@@ -14276,6 +14282,28 @@ type EventDomWhereInput = {
|
|
|
14276
14282
|
idLTE?: InputMaybe<Scalars['ID']>;
|
|
14277
14283
|
idNEQ?: InputMaybe<Scalars['ID']>;
|
|
14278
14284
|
idNotIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
14285
|
+
/** inner_height field predicates */
|
|
14286
|
+
innerHeight?: InputMaybe<Scalars['Int']>;
|
|
14287
|
+
innerHeightGT?: InputMaybe<Scalars['Int']>;
|
|
14288
|
+
innerHeightGTE?: InputMaybe<Scalars['Int']>;
|
|
14289
|
+
innerHeightIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14290
|
+
innerHeightIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
14291
|
+
innerHeightLT?: InputMaybe<Scalars['Int']>;
|
|
14292
|
+
innerHeightLTE?: InputMaybe<Scalars['Int']>;
|
|
14293
|
+
innerHeightNEQ?: InputMaybe<Scalars['Int']>;
|
|
14294
|
+
innerHeightNotIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14295
|
+
innerHeightNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14296
|
+
/** inner_width field predicates */
|
|
14297
|
+
innerWidth?: InputMaybe<Scalars['Int']>;
|
|
14298
|
+
innerWidthGT?: InputMaybe<Scalars['Int']>;
|
|
14299
|
+
innerWidthGTE?: InputMaybe<Scalars['Int']>;
|
|
14300
|
+
innerWidthIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14301
|
+
innerWidthIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
14302
|
+
innerWidthLT?: InputMaybe<Scalars['Int']>;
|
|
14303
|
+
innerWidthLTE?: InputMaybe<Scalars['Int']>;
|
|
14304
|
+
innerWidthNEQ?: InputMaybe<Scalars['Int']>;
|
|
14305
|
+
innerWidthNotIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14306
|
+
innerWidthNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14279
14307
|
/** name field predicates */
|
|
14280
14308
|
name?: InputMaybe<Scalars['String']>;
|
|
14281
14309
|
nameContains?: InputMaybe<Scalars['String']>;
|
|
@@ -14293,7 +14321,73 @@ type EventDomWhereInput = {
|
|
|
14293
14321
|
nameNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
14294
14322
|
nameNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14295
14323
|
not?: InputMaybe<EventDomWhereInput>;
|
|
14324
|
+
/** offset_x field predicates */
|
|
14325
|
+
offsetX?: InputMaybe<Scalars['Int']>;
|
|
14326
|
+
offsetXGT?: InputMaybe<Scalars['Int']>;
|
|
14327
|
+
offsetXGTE?: InputMaybe<Scalars['Int']>;
|
|
14328
|
+
offsetXIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14329
|
+
offsetXIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
14330
|
+
offsetXLT?: InputMaybe<Scalars['Int']>;
|
|
14331
|
+
offsetXLTE?: InputMaybe<Scalars['Int']>;
|
|
14332
|
+
offsetXNEQ?: InputMaybe<Scalars['Int']>;
|
|
14333
|
+
offsetXNotIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14334
|
+
offsetXNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14335
|
+
/** offset_y field predicates */
|
|
14336
|
+
offsetY?: InputMaybe<Scalars['Int']>;
|
|
14337
|
+
offsetYGT?: InputMaybe<Scalars['Int']>;
|
|
14338
|
+
offsetYGTE?: InputMaybe<Scalars['Int']>;
|
|
14339
|
+
offsetYIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14340
|
+
offsetYIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
14341
|
+
offsetYLT?: InputMaybe<Scalars['Int']>;
|
|
14342
|
+
offsetYLTE?: InputMaybe<Scalars['Int']>;
|
|
14343
|
+
offsetYNEQ?: InputMaybe<Scalars['Int']>;
|
|
14344
|
+
offsetYNotIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14345
|
+
offsetYNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14296
14346
|
or?: InputMaybe<Array<EventDomWhereInput>>;
|
|
14347
|
+
/** page_x field predicates */
|
|
14348
|
+
pageX?: InputMaybe<Scalars['Int']>;
|
|
14349
|
+
pageXGT?: InputMaybe<Scalars['Int']>;
|
|
14350
|
+
pageXGTE?: InputMaybe<Scalars['Int']>;
|
|
14351
|
+
pageXIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14352
|
+
pageXIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
14353
|
+
pageXLT?: InputMaybe<Scalars['Int']>;
|
|
14354
|
+
pageXLTE?: InputMaybe<Scalars['Int']>;
|
|
14355
|
+
pageXNEQ?: InputMaybe<Scalars['Int']>;
|
|
14356
|
+
pageXNotIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14357
|
+
pageXNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14358
|
+
/** page_y field predicates */
|
|
14359
|
+
pageY?: InputMaybe<Scalars['Int']>;
|
|
14360
|
+
pageYGT?: InputMaybe<Scalars['Int']>;
|
|
14361
|
+
pageYGTE?: InputMaybe<Scalars['Int']>;
|
|
14362
|
+
pageYIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14363
|
+
pageYIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
14364
|
+
pageYLT?: InputMaybe<Scalars['Int']>;
|
|
14365
|
+
pageYLTE?: InputMaybe<Scalars['Int']>;
|
|
14366
|
+
pageYNEQ?: InputMaybe<Scalars['Int']>;
|
|
14367
|
+
pageYNotIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14368
|
+
pageYNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14369
|
+
/** screen_x field predicates */
|
|
14370
|
+
screenX?: InputMaybe<Scalars['Int']>;
|
|
14371
|
+
screenXGT?: InputMaybe<Scalars['Int']>;
|
|
14372
|
+
screenXGTE?: InputMaybe<Scalars['Int']>;
|
|
14373
|
+
screenXIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14374
|
+
screenXIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
14375
|
+
screenXLT?: InputMaybe<Scalars['Int']>;
|
|
14376
|
+
screenXLTE?: InputMaybe<Scalars['Int']>;
|
|
14377
|
+
screenXNEQ?: InputMaybe<Scalars['Int']>;
|
|
14378
|
+
screenXNotIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14379
|
+
screenXNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14380
|
+
/** screen_y field predicates */
|
|
14381
|
+
screenY?: InputMaybe<Scalars['Int']>;
|
|
14382
|
+
screenYGT?: InputMaybe<Scalars['Int']>;
|
|
14383
|
+
screenYGTE?: InputMaybe<Scalars['Int']>;
|
|
14384
|
+
screenYIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14385
|
+
screenYIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
14386
|
+
screenYLT?: InputMaybe<Scalars['Int']>;
|
|
14387
|
+
screenYLTE?: InputMaybe<Scalars['Int']>;
|
|
14388
|
+
screenYNEQ?: InputMaybe<Scalars['Int']>;
|
|
14389
|
+
screenYNotIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
14390
|
+
screenYNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14297
14391
|
/** shop_id field predicates */
|
|
14298
14392
|
shopID?: InputMaybe<Scalars['ID']>;
|
|
14299
14393
|
shopIDGT?: InputMaybe<Scalars['ID']>;
|
|
@@ -14559,6 +14653,17 @@ type EventWhereInput = {
|
|
|
14559
14653
|
checkoutPriceNEQ?: InputMaybe<Scalars['Float']>;
|
|
14560
14654
|
checkoutPriceNotIn?: InputMaybe<Array<Scalars['Float']>>;
|
|
14561
14655
|
checkoutPriceNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14656
|
+
/** checkout_price_usd field predicates */
|
|
14657
|
+
checkoutPriceUsd?: InputMaybe<Scalars['Float']>;
|
|
14658
|
+
checkoutPriceUsdGT?: InputMaybe<Scalars['Float']>;
|
|
14659
|
+
checkoutPriceUsdGTE?: InputMaybe<Scalars['Float']>;
|
|
14660
|
+
checkoutPriceUsdIn?: InputMaybe<Array<Scalars['Float']>>;
|
|
14661
|
+
checkoutPriceUsdIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
14662
|
+
checkoutPriceUsdLT?: InputMaybe<Scalars['Float']>;
|
|
14663
|
+
checkoutPriceUsdLTE?: InputMaybe<Scalars['Float']>;
|
|
14664
|
+
checkoutPriceUsdNEQ?: InputMaybe<Scalars['Float']>;
|
|
14665
|
+
checkoutPriceUsdNotIn?: InputMaybe<Array<Scalars['Float']>>;
|
|
14666
|
+
checkoutPriceUsdNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
14562
14667
|
/** checkout_token field predicates */
|
|
14563
14668
|
checkoutToken?: InputMaybe<Scalars['String']>;
|
|
14564
14669
|
checkoutTokenContains?: InputMaybe<Scalars['String']>;
|
|
@@ -15880,7 +15985,6 @@ type GlobalStoreVersionWhereInput = {
|
|
|
15880
15985
|
versionNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
15881
15986
|
versionNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
15882
15987
|
};
|
|
15883
|
-
type GroupByFields = 'DATE' | 'SALE_FUNNEL_ID';
|
|
15884
15988
|
type Icon = {
|
|
15885
15989
|
createdAt?: Maybe<Scalars['Time']>;
|
|
15886
15990
|
createdBy?: Maybe<Scalars['ID']>;
|
|
@@ -17762,19 +17866,20 @@ type Mutation = {
|
|
|
17762
17866
|
libraryTemplateTagDelete: Scalars['Boolean'];
|
|
17763
17867
|
libraryTemplateUpdate?: Maybe<LibraryTemplate>;
|
|
17764
17868
|
makeStyleGlobal: ThemeStyle;
|
|
17869
|
+
offerCheapestProductConditionCreate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17765
17870
|
offerDynamicDiscountCreateOrUpdate?: Maybe<OfferDynamicDiscount>;
|
|
17766
17871
|
offerDynamicDiscountDelete: Scalars['Boolean'];
|
|
17767
17872
|
offerDynamicTriggerConditionDelete: Scalars['Boolean'];
|
|
17768
17873
|
offerDynamicTriggerCreate?: Maybe<OfferDynamicTrigger>;
|
|
17769
17874
|
offerDynamicTriggerDelete: Scalars['Boolean'];
|
|
17770
17875
|
offerMostExpensiveProductConditionCreate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17771
|
-
offerOfferCheapestProductConditionCreate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17772
17876
|
offerProductCollectionConditionCreate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17773
17877
|
offerProductCollectionConditionUpdate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17774
17878
|
offerProductPriceConditionCreate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17775
17879
|
offerProductPriceConditionUpdate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17776
17880
|
offerProductTagConditionCreate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17777
17881
|
offerProductTagConditionUpdate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17882
|
+
offerSameAsPurchasedProductsConditionCreate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17778
17883
|
offerSpecificProductConditionCreate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17779
17884
|
offerSpecificProductConditionUpdate?: Maybe<OfferDynamicTriggerCondition>;
|
|
17780
17885
|
orderValueConditionCreate?: Maybe<DynamicTriggerCondition>;
|
|
@@ -18259,6 +18364,9 @@ type MutationLibraryTemplateUpdateArgs = {
|
|
|
18259
18364
|
type MutationMakeStyleGlobalArgs = {
|
|
18260
18365
|
id: Scalars['ID'];
|
|
18261
18366
|
};
|
|
18367
|
+
type MutationOfferCheapestProductConditionCreateArgs = {
|
|
18368
|
+
input: CreateOfferCheapestProductConditionInput;
|
|
18369
|
+
};
|
|
18262
18370
|
type MutationOfferDynamicDiscountCreateOrUpdateArgs = {
|
|
18263
18371
|
input: CreateOfferDynamicDiscountInput;
|
|
18264
18372
|
};
|
|
@@ -18277,9 +18385,6 @@ type MutationOfferDynamicTriggerDeleteArgs = {
|
|
|
18277
18385
|
type MutationOfferMostExpensiveProductConditionCreateArgs = {
|
|
18278
18386
|
input: CreateOfferMostExpensiveProductConditionInput;
|
|
18279
18387
|
};
|
|
18280
|
-
type MutationOfferOfferCheapestProductConditionCreateArgs = {
|
|
18281
|
-
input: CreateOfferCheapestProductConditionInput;
|
|
18282
|
-
};
|
|
18283
18388
|
type MutationOfferProductCollectionConditionCreateArgs = {
|
|
18284
18389
|
input: CreateOfferProductCollectionConditionInput;
|
|
18285
18390
|
};
|
|
@@ -18301,6 +18406,9 @@ type MutationOfferProductTagConditionUpdateArgs = {
|
|
|
18301
18406
|
id: Scalars['ID'];
|
|
18302
18407
|
input: UpdateOfferProductTagConditionInput;
|
|
18303
18408
|
};
|
|
18409
|
+
type MutationOfferSameAsPurchasedProductsConditionCreateArgs = {
|
|
18410
|
+
input: CreateOfferSameAsPurchasedProductsConditionInput;
|
|
18411
|
+
};
|
|
18304
18412
|
type MutationOfferSpecificProductConditionCreateArgs = {
|
|
18305
18413
|
input: CreateOfferSpecificProductConditionInput;
|
|
18306
18414
|
};
|
|
@@ -19177,7 +19285,7 @@ type OfferDynamicTriggerCondition = {
|
|
|
19177
19285
|
value?: Maybe<OfferDynamicTriggerConditionValue>;
|
|
19178
19286
|
};
|
|
19179
19287
|
type OfferDynamicTriggerConditionOperator = 'CONTAINS' | 'EQ' | 'GT' | 'GTE' | 'INSIDE' | 'LT' | 'LTE' | 'NEQ' | 'NOT_CONTAINS' | 'NOT_INSIDE';
|
|
19180
|
-
type OfferDynamicTriggerConditionType = 'CHEAPEST_PRODUCT_IN_ORDER' | 'MOST_EXPENSIVE_PRODUCT_IN_ORDER' | 'PRODUCT_COLLECTION' | 'PRODUCT_PRICE' | 'PRODUCT_TAG' | 'SPECIFIC_PRODUCT';
|
|
19288
|
+
type OfferDynamicTriggerConditionType = 'CHEAPEST_PRODUCT_IN_ORDER' | 'MOST_EXPENSIVE_PRODUCT_IN_ORDER' | 'PRODUCT_COLLECTION' | 'PRODUCT_PRICE' | 'PRODUCT_TAG' | 'SAME_AS_PURCHASED_PRODUCTS' | 'SPECIFIC_PRODUCT';
|
|
19181
19289
|
type OfferDynamicTriggerConditionValue = OfferProductCollectionCondition | OfferProductPriceCondition | OfferProductTagCondition | OfferSpecificProductCondition;
|
|
19182
19290
|
/**
|
|
19183
19291
|
* OfferDynamicTriggerConditionWhereInput is used for filtering OfferDynamicTriggerCondition objects.
|
|
@@ -19338,7 +19446,6 @@ type OfferSpecificProductCondition = {
|
|
|
19338
19446
|
products?: Maybe<Array<Scalars['String']>>;
|
|
19339
19447
|
};
|
|
19340
19448
|
type OrderDirection = 'ASC' | 'DESC';
|
|
19341
|
-
type OrderFields = 'ACCEPTED' | 'AOV' | 'AOV_INCREASE' | 'CHECKOUT_REVENUE' | 'CONVERSION_RATE' | 'OFFER_REVENUE' | 'REVENUE' | 'VIEW';
|
|
19342
19449
|
type OrderTriggerCondition = {
|
|
19343
19450
|
amount: Scalars['Float'];
|
|
19344
19451
|
};
|
|
@@ -20923,6 +21030,7 @@ type Product = {
|
|
|
20923
21030
|
descriptionHtml?: Maybe<Scalars['String']>;
|
|
20924
21031
|
descriptionMeta?: Maybe<Scalars['String']>;
|
|
20925
21032
|
featuredImage?: Maybe<Media>;
|
|
21033
|
+
/** @deprecated Use featuredImage instead */
|
|
20926
21034
|
featuredImageId?: Maybe<Scalars['ID']>;
|
|
20927
21035
|
handle?: Maybe<Scalars['String']>;
|
|
20928
21036
|
id: Scalars['ID'];
|
|
@@ -22785,7 +22893,7 @@ type PublishedOfferDynamicDiscountWhereInput = {
|
|
|
22785
22893
|
valueTypeNotIn?: InputMaybe<Array<PublishedOfferDynamicDiscountValueType>>;
|
|
22786
22894
|
};
|
|
22787
22895
|
type PublishedOfferDynamicTriggerConditionOperator = 'CONTAINS' | 'EQ' | 'GT' | 'GTE' | 'INSIDE' | 'LT' | 'LTE' | 'NEQ' | 'NOT_CONTAINS' | 'NOT_INSIDE';
|
|
22788
|
-
type PublishedOfferDynamicTriggerConditionType = 'CHEAPEST_PRODUCT_IN_ORDER' | 'MOST_EXPENSIVE_PRODUCT_IN_ORDER' | 'PRODUCT_COLLECTION' | 'PRODUCT_PRICE' | 'PRODUCT_TAG' | 'SPECIFIC_PRODUCT';
|
|
22896
|
+
type PublishedOfferDynamicTriggerConditionType = 'CHEAPEST_PRODUCT_IN_ORDER' | 'MOST_EXPENSIVE_PRODUCT_IN_ORDER' | 'PRODUCT_COLLECTION' | 'PRODUCT_PRICE' | 'PRODUCT_TAG' | 'SAME_AS_PURCHASED_PRODUCTS' | 'SPECIFIC_PRODUCT';
|
|
22789
22897
|
/**
|
|
22790
22898
|
* PublishedOfferDynamicTriggerConditionWhereInput is used for filtering PublishedOfferDynamicTriggerCondition objects.
|
|
22791
22899
|
* Input was generated by ent.
|
|
@@ -24411,10 +24519,13 @@ type QueryCampaignArgs = {
|
|
|
24411
24519
|
id: Scalars['ID'];
|
|
24412
24520
|
};
|
|
24413
24521
|
type QueryCampaignOfferStatsArgs = {
|
|
24414
|
-
|
|
24522
|
+
after?: InputMaybe<Scalars['Cursor']>;
|
|
24523
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
24524
|
+
orderBy?: InputMaybe<CampaignOfferStatOrder>;
|
|
24525
|
+
where?: InputMaybe<CampaignOfferStatWhereInput>;
|
|
24415
24526
|
};
|
|
24416
24527
|
type QueryCampaignOfferTotalStatArgs = {
|
|
24417
|
-
|
|
24528
|
+
where?: InputMaybe<CampaignOfferStatWhereInput>;
|
|
24418
24529
|
};
|
|
24419
24530
|
type QueryCampaignVersionsArgs = {
|
|
24420
24531
|
after?: InputMaybe<Scalars['Cursor']>;
|
|
@@ -24827,10 +24938,13 @@ type QuerySaleFunnelOfferArgs = {
|
|
|
24827
24938
|
id: Scalars['ID'];
|
|
24828
24939
|
};
|
|
24829
24940
|
type QuerySaleFunnelOfferStatsArgs = {
|
|
24830
|
-
|
|
24941
|
+
after?: InputMaybe<Scalars['Cursor']>;
|
|
24942
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
24943
|
+
orderBy?: InputMaybe<SaleFunnelOfferStatOrder>;
|
|
24944
|
+
where?: InputMaybe<SaleFunnelOfferStatWhereInput>;
|
|
24831
24945
|
};
|
|
24832
24946
|
type QuerySaleFunnelOfferTotalStatArgs = {
|
|
24833
|
-
|
|
24947
|
+
where?: InputMaybe<SaleFunnelOfferStatWhereInput>;
|
|
24834
24948
|
};
|
|
24835
24949
|
type QuerySaleFunnelOffersArgs = {
|
|
24836
24950
|
after?: InputMaybe<Scalars['Cursor']>;
|
|
@@ -24849,10 +24963,14 @@ type QuerySaleFunnelRevenuesArgs = {
|
|
|
24849
24963
|
where?: InputMaybe<SaleFunnelRevenueWhereInput>;
|
|
24850
24964
|
};
|
|
24851
24965
|
type QuerySaleFunnelStatsArgs = {
|
|
24852
|
-
|
|
24966
|
+
after?: InputMaybe<Scalars['Cursor']>;
|
|
24967
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
24968
|
+
groupBy?: InputMaybe<SaleFunnelStatGroupByFields>;
|
|
24969
|
+
orderBy?: InputMaybe<SaleFunnelStatOrder>;
|
|
24970
|
+
where?: InputMaybe<SaleFunnelStatWhereInput>;
|
|
24853
24971
|
};
|
|
24854
24972
|
type QuerySaleFunnelTotalStatArgs = {
|
|
24855
|
-
|
|
24973
|
+
where?: InputMaybe<SaleFunnelStatWhereInput>;
|
|
24856
24974
|
};
|
|
24857
24975
|
type QuerySaleFunnelsArgs = {
|
|
24858
24976
|
after?: InputMaybe<Scalars['Cursor']>;
|
|
@@ -24994,6 +25112,7 @@ type QueryShopsArgs = {
|
|
|
24994
25112
|
where?: InputMaybe<ShopWhereInput>;
|
|
24995
25113
|
};
|
|
24996
25114
|
type QuerySplitTestingCampaignStatArgs = {
|
|
25115
|
+
calcByPreviousVariant?: InputMaybe<Scalars['Boolean']>;
|
|
24997
25116
|
where: EventWhereInput;
|
|
24998
25117
|
};
|
|
24999
25118
|
type QuerySplitTestingCampaignStatsArgs = {
|
|
@@ -25771,6 +25890,11 @@ type SaleFunnelOfferStatEdge = {
|
|
|
25771
25890
|
cursor: Scalars['Cursor'];
|
|
25772
25891
|
node?: Maybe<SaleFunnelOfferStat>;
|
|
25773
25892
|
};
|
|
25893
|
+
type SaleFunnelOfferStatOrder = {
|
|
25894
|
+
direction: OrderDirection;
|
|
25895
|
+
field?: InputMaybe<SaleFunnelOfferStatOrderField>;
|
|
25896
|
+
};
|
|
25897
|
+
type SaleFunnelOfferStatOrderField = 'ACCEPTED' | 'REVENUE' | 'VIEW';
|
|
25774
25898
|
/**
|
|
25775
25899
|
* SaleFunnelOfferStatWhereInput is used for filtering SaleFunnelOfferStat objects.
|
|
25776
25900
|
* Input was generated by ent.
|
|
@@ -26258,6 +26382,12 @@ type SaleFunnelStatEdge = {
|
|
|
26258
26382
|
cursor: Scalars['Cursor'];
|
|
26259
26383
|
node?: Maybe<SaleFunnelStat>;
|
|
26260
26384
|
};
|
|
26385
|
+
type SaleFunnelStatGroupByFields = 'DATE' | 'SALE_FUNNEL_ID';
|
|
26386
|
+
type SaleFunnelStatOrder = {
|
|
26387
|
+
direction: OrderDirection;
|
|
26388
|
+
field?: InputMaybe<SaleFunnelStatOrderField>;
|
|
26389
|
+
};
|
|
26390
|
+
type SaleFunnelStatOrderField = 'ACCEPTED' | 'DATE' | 'OFFER_REVENUE' | 'VIEW';
|
|
26261
26391
|
/**
|
|
26262
26392
|
* SaleFunnelStatWhereInput is used for filtering SaleFunnelStat objects.
|
|
26263
26393
|
* Input was generated by ent.
|
|
@@ -29089,6 +29219,7 @@ type SpecificProductCondition = {
|
|
|
29089
29219
|
type SplitTestingCampaignStat = {
|
|
29090
29220
|
addToCartConversionRate: Scalars['Float'];
|
|
29091
29221
|
aov: Scalars['Float'];
|
|
29222
|
+
aovInUSD: Scalars['Float'];
|
|
29092
29223
|
aovIncrease: Scalars['Float'];
|
|
29093
29224
|
averageSessionDuration: Scalars['Float'];
|
|
29094
29225
|
averageTimeOnPage: Scalars['Float'];
|
|
@@ -29113,6 +29244,7 @@ type SplitTestingCampaignStat = {
|
|
|
29113
29244
|
totalPageViews: Scalars['Int'];
|
|
29114
29245
|
totalProductViews: Scalars['Int'];
|
|
29115
29246
|
totalRevenue: Scalars['Float'];
|
|
29247
|
+
totalRevenueInUSD: Scalars['Float'];
|
|
29116
29248
|
totalSessions: Scalars['Int'];
|
|
29117
29249
|
totalTimeOnPage: Scalars['Int'];
|
|
29118
29250
|
totalUniqueVisitors: Scalars['Int'];
|
|
@@ -30220,6 +30352,7 @@ type SurveyWhereInput = {
|
|
|
30220
30352
|
type SyncResourceInput = {
|
|
30221
30353
|
after?: InputMaybe<Scalars['String']>;
|
|
30222
30354
|
baseIDs?: InputMaybe<Array<Scalars['String']>>;
|
|
30355
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
30223
30356
|
ownerType?: InputMaybe<OwnerType>;
|
|
30224
30357
|
platform: Platform;
|
|
30225
30358
|
resource: Resource;
|
|
@@ -33392,7 +33525,6 @@ type appAPI_AgencyPackageSharingMode = AgencyPackageSharingMode;
|
|
|
33392
33525
|
type appAPI_AgencyPackageSharingWhereInput = AgencyPackageSharingWhereInput;
|
|
33393
33526
|
type appAPI_AgencyWhereInput = AgencyWhereInput;
|
|
33394
33527
|
type appAPI_Analytic = Analytic;
|
|
33395
|
-
type appAPI_AnalyticsQueryParameter = AnalyticsQueryParameter;
|
|
33396
33528
|
type appAPI_AppType = AppType;
|
|
33397
33529
|
type appAPI_ArticleBlogWhereInput = ArticleBlogWhereInput;
|
|
33398
33530
|
type appAPI_ArticleBlogsArgs = ArticleBlogsArgs;
|
|
@@ -33425,6 +33557,8 @@ type appAPI_CampaignEdge = CampaignEdge;
|
|
|
33425
33557
|
type appAPI_CampaignOfferStat = CampaignOfferStat;
|
|
33426
33558
|
type appAPI_CampaignOfferStatConnection = CampaignOfferStatConnection;
|
|
33427
33559
|
type appAPI_CampaignOfferStatEdge = CampaignOfferStatEdge;
|
|
33560
|
+
type appAPI_CampaignOfferStatOrder = CampaignOfferStatOrder;
|
|
33561
|
+
type appAPI_CampaignOfferStatOrderField = CampaignOfferStatOrderField;
|
|
33428
33562
|
type appAPI_CampaignOfferStatWhereInput = CampaignOfferStatWhereInput;
|
|
33429
33563
|
type appAPI_CampaignOrder = CampaignOrder;
|
|
33430
33564
|
type appAPI_CampaignOrderField = CampaignOrderField;
|
|
@@ -33493,6 +33627,7 @@ type appAPI_CreateOfferMostExpensiveProductConditionInput = CreateOfferMostExpen
|
|
|
33493
33627
|
type appAPI_CreateOfferProductCollectionConditionInput = CreateOfferProductCollectionConditionInput;
|
|
33494
33628
|
type appAPI_CreateOfferProductPriceConditionInput = CreateOfferProductPriceConditionInput;
|
|
33495
33629
|
type appAPI_CreateOfferProductTagConditionInput = CreateOfferProductTagConditionInput;
|
|
33630
|
+
type appAPI_CreateOfferSameAsPurchasedProductsConditionInput = CreateOfferSameAsPurchasedProductsConditionInput;
|
|
33496
33631
|
type appAPI_CreateOfferSpecificProductConditionInput = CreateOfferSpecificProductConditionInput;
|
|
33497
33632
|
type appAPI_CreateOrderValueConditionInput = CreateOrderValueConditionInput;
|
|
33498
33633
|
type appAPI_CreatePageInteractionInput = CreatePageInteractionInput;
|
|
@@ -33649,7 +33784,6 @@ type appAPI_GlobalStoreVersionEdge = GlobalStoreVersionEdge;
|
|
|
33649
33784
|
type appAPI_GlobalStoreVersionOrder = GlobalStoreVersionOrder;
|
|
33650
33785
|
type appAPI_GlobalStoreVersionOrderField = GlobalStoreVersionOrderField;
|
|
33651
33786
|
type appAPI_GlobalStoreVersionWhereInput = GlobalStoreVersionWhereInput;
|
|
33652
|
-
type appAPI_GroupByFields = GroupByFields;
|
|
33653
33787
|
type appAPI_Icon = Icon;
|
|
33654
33788
|
type appAPI_IconConnection = IconConnection;
|
|
33655
33789
|
type appAPI_IconEdge = IconEdge;
|
|
@@ -33803,19 +33937,20 @@ type appAPI_MutationLibraryTemplateTagCreateArgs = MutationLibraryTemplateTagCre
|
|
|
33803
33937
|
type appAPI_MutationLibraryTemplateTagDeleteArgs = MutationLibraryTemplateTagDeleteArgs;
|
|
33804
33938
|
type appAPI_MutationLibraryTemplateUpdateArgs = MutationLibraryTemplateUpdateArgs;
|
|
33805
33939
|
type appAPI_MutationMakeStyleGlobalArgs = MutationMakeStyleGlobalArgs;
|
|
33940
|
+
type appAPI_MutationOfferCheapestProductConditionCreateArgs = MutationOfferCheapestProductConditionCreateArgs;
|
|
33806
33941
|
type appAPI_MutationOfferDynamicDiscountCreateOrUpdateArgs = MutationOfferDynamicDiscountCreateOrUpdateArgs;
|
|
33807
33942
|
type appAPI_MutationOfferDynamicDiscountDeleteArgs = MutationOfferDynamicDiscountDeleteArgs;
|
|
33808
33943
|
type appAPI_MutationOfferDynamicTriggerConditionDeleteArgs = MutationOfferDynamicTriggerConditionDeleteArgs;
|
|
33809
33944
|
type appAPI_MutationOfferDynamicTriggerCreateArgs = MutationOfferDynamicTriggerCreateArgs;
|
|
33810
33945
|
type appAPI_MutationOfferDynamicTriggerDeleteArgs = MutationOfferDynamicTriggerDeleteArgs;
|
|
33811
33946
|
type appAPI_MutationOfferMostExpensiveProductConditionCreateArgs = MutationOfferMostExpensiveProductConditionCreateArgs;
|
|
33812
|
-
type appAPI_MutationOfferOfferCheapestProductConditionCreateArgs = MutationOfferOfferCheapestProductConditionCreateArgs;
|
|
33813
33947
|
type appAPI_MutationOfferProductCollectionConditionCreateArgs = MutationOfferProductCollectionConditionCreateArgs;
|
|
33814
33948
|
type appAPI_MutationOfferProductCollectionConditionUpdateArgs = MutationOfferProductCollectionConditionUpdateArgs;
|
|
33815
33949
|
type appAPI_MutationOfferProductPriceConditionCreateArgs = MutationOfferProductPriceConditionCreateArgs;
|
|
33816
33950
|
type appAPI_MutationOfferProductPriceConditionUpdateArgs = MutationOfferProductPriceConditionUpdateArgs;
|
|
33817
33951
|
type appAPI_MutationOfferProductTagConditionCreateArgs = MutationOfferProductTagConditionCreateArgs;
|
|
33818
33952
|
type appAPI_MutationOfferProductTagConditionUpdateArgs = MutationOfferProductTagConditionUpdateArgs;
|
|
33953
|
+
type appAPI_MutationOfferSameAsPurchasedProductsConditionCreateArgs = MutationOfferSameAsPurchasedProductsConditionCreateArgs;
|
|
33819
33954
|
type appAPI_MutationOfferSpecificProductConditionCreateArgs = MutationOfferSpecificProductConditionCreateArgs;
|
|
33820
33955
|
type appAPI_MutationOfferSpecificProductConditionUpdateArgs = MutationOfferSpecificProductConditionUpdateArgs;
|
|
33821
33956
|
type appAPI_MutationOrderValueConditionCreateArgs = MutationOrderValueConditionCreateArgs;
|
|
@@ -34054,7 +34189,6 @@ type appAPI_OfferProductPriceCondition = OfferProductPriceCondition;
|
|
|
34054
34189
|
type appAPI_OfferProductTagCondition = OfferProductTagCondition;
|
|
34055
34190
|
type appAPI_OfferSpecificProductCondition = OfferSpecificProductCondition;
|
|
34056
34191
|
type appAPI_OrderDirection = OrderDirection;
|
|
34057
|
-
type appAPI_OrderFields = OrderFields;
|
|
34058
34192
|
type appAPI_OrderTriggerCondition = OrderTriggerCondition;
|
|
34059
34193
|
type appAPI_OrderValueCondition = OrderValueCondition;
|
|
34060
34194
|
type appAPI_OwnerType = OwnerType;
|
|
@@ -34412,6 +34546,8 @@ type appAPI_SaleFunnelOfferOrderField = SaleFunnelOfferOrderField;
|
|
|
34412
34546
|
type appAPI_SaleFunnelOfferStat = SaleFunnelOfferStat;
|
|
34413
34547
|
type appAPI_SaleFunnelOfferStatConnection = SaleFunnelOfferStatConnection;
|
|
34414
34548
|
type appAPI_SaleFunnelOfferStatEdge = SaleFunnelOfferStatEdge;
|
|
34549
|
+
type appAPI_SaleFunnelOfferStatOrder = SaleFunnelOfferStatOrder;
|
|
34550
|
+
type appAPI_SaleFunnelOfferStatOrderField = SaleFunnelOfferStatOrderField;
|
|
34415
34551
|
type appAPI_SaleFunnelOfferStatWhereInput = SaleFunnelOfferStatWhereInput;
|
|
34416
34552
|
type appAPI_SaleFunnelOfferTrafficRangeInput = SaleFunnelOfferTrafficRangeInput;
|
|
34417
34553
|
type appAPI_SaleFunnelOfferType = SaleFunnelOfferType;
|
|
@@ -34431,6 +34567,9 @@ type appAPI_SaleFunnelRevenueWhereInput = SaleFunnelRevenueWhereInput;
|
|
|
34431
34567
|
type appAPI_SaleFunnelStat = SaleFunnelStat;
|
|
34432
34568
|
type appAPI_SaleFunnelStatConnection = SaleFunnelStatConnection;
|
|
34433
34569
|
type appAPI_SaleFunnelStatEdge = SaleFunnelStatEdge;
|
|
34570
|
+
type appAPI_SaleFunnelStatGroupByFields = SaleFunnelStatGroupByFields;
|
|
34571
|
+
type appAPI_SaleFunnelStatOrder = SaleFunnelStatOrder;
|
|
34572
|
+
type appAPI_SaleFunnelStatOrderField = SaleFunnelStatOrderField;
|
|
34434
34573
|
type appAPI_SaleFunnelStatWhereInput = SaleFunnelStatWhereInput;
|
|
34435
34574
|
type appAPI_SaleFunnelStatus = SaleFunnelStatus;
|
|
34436
34575
|
type appAPI_SaleFunnelTrackingTokenWhereInput = SaleFunnelTrackingTokenWhereInput;
|
|
@@ -34751,7 +34890,6 @@ declare namespace appAPI {
|
|
|
34751
34890
|
appAPI_AgencyPackageSharingWhereInput as AgencyPackageSharingWhereInput,
|
|
34752
34891
|
appAPI_AgencyWhereInput as AgencyWhereInput,
|
|
34753
34892
|
appAPI_Analytic as Analytic,
|
|
34754
|
-
appAPI_AnalyticsQueryParameter as AnalyticsQueryParameter,
|
|
34755
34893
|
appAPI_AppType as AppType,
|
|
34756
34894
|
Article$1 as Article,
|
|
34757
34895
|
appAPI_ArticleBlogWhereInput as ArticleBlogWhereInput,
|
|
@@ -34785,6 +34923,8 @@ declare namespace appAPI {
|
|
|
34785
34923
|
appAPI_CampaignOfferStat as CampaignOfferStat,
|
|
34786
34924
|
appAPI_CampaignOfferStatConnection as CampaignOfferStatConnection,
|
|
34787
34925
|
appAPI_CampaignOfferStatEdge as CampaignOfferStatEdge,
|
|
34926
|
+
appAPI_CampaignOfferStatOrder as CampaignOfferStatOrder,
|
|
34927
|
+
appAPI_CampaignOfferStatOrderField as CampaignOfferStatOrderField,
|
|
34788
34928
|
appAPI_CampaignOfferStatWhereInput as CampaignOfferStatWhereInput,
|
|
34789
34929
|
appAPI_CampaignOrder as CampaignOrder,
|
|
34790
34930
|
appAPI_CampaignOrderField as CampaignOrderField,
|
|
@@ -34853,6 +34993,7 @@ declare namespace appAPI {
|
|
|
34853
34993
|
appAPI_CreateOfferProductCollectionConditionInput as CreateOfferProductCollectionConditionInput,
|
|
34854
34994
|
appAPI_CreateOfferProductPriceConditionInput as CreateOfferProductPriceConditionInput,
|
|
34855
34995
|
appAPI_CreateOfferProductTagConditionInput as CreateOfferProductTagConditionInput,
|
|
34996
|
+
appAPI_CreateOfferSameAsPurchasedProductsConditionInput as CreateOfferSameAsPurchasedProductsConditionInput,
|
|
34856
34997
|
appAPI_CreateOfferSpecificProductConditionInput as CreateOfferSpecificProductConditionInput,
|
|
34857
34998
|
appAPI_CreateOrderValueConditionInput as CreateOrderValueConditionInput,
|
|
34858
34999
|
appAPI_CreatePageInteractionInput as CreatePageInteractionInput,
|
|
@@ -35007,7 +35148,6 @@ declare namespace appAPI {
|
|
|
35007
35148
|
appAPI_GlobalStoreVersionOrder as GlobalStoreVersionOrder,
|
|
35008
35149
|
appAPI_GlobalStoreVersionOrderField as GlobalStoreVersionOrderField,
|
|
35009
35150
|
appAPI_GlobalStoreVersionWhereInput as GlobalStoreVersionWhereInput,
|
|
35010
|
-
appAPI_GroupByFields as GroupByFields,
|
|
35011
35151
|
appAPI_Icon as Icon,
|
|
35012
35152
|
appAPI_IconConnection as IconConnection,
|
|
35013
35153
|
appAPI_IconEdge as IconEdge,
|
|
@@ -35161,19 +35301,20 @@ declare namespace appAPI {
|
|
|
35161
35301
|
appAPI_MutationLibraryTemplateTagDeleteArgs as MutationLibraryTemplateTagDeleteArgs,
|
|
35162
35302
|
appAPI_MutationLibraryTemplateUpdateArgs as MutationLibraryTemplateUpdateArgs,
|
|
35163
35303
|
appAPI_MutationMakeStyleGlobalArgs as MutationMakeStyleGlobalArgs,
|
|
35304
|
+
appAPI_MutationOfferCheapestProductConditionCreateArgs as MutationOfferCheapestProductConditionCreateArgs,
|
|
35164
35305
|
appAPI_MutationOfferDynamicDiscountCreateOrUpdateArgs as MutationOfferDynamicDiscountCreateOrUpdateArgs,
|
|
35165
35306
|
appAPI_MutationOfferDynamicDiscountDeleteArgs as MutationOfferDynamicDiscountDeleteArgs,
|
|
35166
35307
|
appAPI_MutationOfferDynamicTriggerConditionDeleteArgs as MutationOfferDynamicTriggerConditionDeleteArgs,
|
|
35167
35308
|
appAPI_MutationOfferDynamicTriggerCreateArgs as MutationOfferDynamicTriggerCreateArgs,
|
|
35168
35309
|
appAPI_MutationOfferDynamicTriggerDeleteArgs as MutationOfferDynamicTriggerDeleteArgs,
|
|
35169
35310
|
appAPI_MutationOfferMostExpensiveProductConditionCreateArgs as MutationOfferMostExpensiveProductConditionCreateArgs,
|
|
35170
|
-
appAPI_MutationOfferOfferCheapestProductConditionCreateArgs as MutationOfferOfferCheapestProductConditionCreateArgs,
|
|
35171
35311
|
appAPI_MutationOfferProductCollectionConditionCreateArgs as MutationOfferProductCollectionConditionCreateArgs,
|
|
35172
35312
|
appAPI_MutationOfferProductCollectionConditionUpdateArgs as MutationOfferProductCollectionConditionUpdateArgs,
|
|
35173
35313
|
appAPI_MutationOfferProductPriceConditionCreateArgs as MutationOfferProductPriceConditionCreateArgs,
|
|
35174
35314
|
appAPI_MutationOfferProductPriceConditionUpdateArgs as MutationOfferProductPriceConditionUpdateArgs,
|
|
35175
35315
|
appAPI_MutationOfferProductTagConditionCreateArgs as MutationOfferProductTagConditionCreateArgs,
|
|
35176
35316
|
appAPI_MutationOfferProductTagConditionUpdateArgs as MutationOfferProductTagConditionUpdateArgs,
|
|
35317
|
+
appAPI_MutationOfferSameAsPurchasedProductsConditionCreateArgs as MutationOfferSameAsPurchasedProductsConditionCreateArgs,
|
|
35177
35318
|
appAPI_MutationOfferSpecificProductConditionCreateArgs as MutationOfferSpecificProductConditionCreateArgs,
|
|
35178
35319
|
appAPI_MutationOfferSpecificProductConditionUpdateArgs as MutationOfferSpecificProductConditionUpdateArgs,
|
|
35179
35320
|
appAPI_MutationOrderValueConditionCreateArgs as MutationOrderValueConditionCreateArgs,
|
|
@@ -35412,7 +35553,6 @@ declare namespace appAPI {
|
|
|
35412
35553
|
appAPI_OfferProductTagCondition as OfferProductTagCondition,
|
|
35413
35554
|
appAPI_OfferSpecificProductCondition as OfferSpecificProductCondition,
|
|
35414
35555
|
appAPI_OrderDirection as OrderDirection,
|
|
35415
|
-
appAPI_OrderFields as OrderFields,
|
|
35416
35556
|
appAPI_OrderTriggerCondition as OrderTriggerCondition,
|
|
35417
35557
|
appAPI_OrderValueCondition as OrderValueCondition,
|
|
35418
35558
|
appAPI_OwnerType as OwnerType,
|
|
@@ -35770,6 +35910,8 @@ declare namespace appAPI {
|
|
|
35770
35910
|
appAPI_SaleFunnelOfferStat as SaleFunnelOfferStat,
|
|
35771
35911
|
appAPI_SaleFunnelOfferStatConnection as SaleFunnelOfferStatConnection,
|
|
35772
35912
|
appAPI_SaleFunnelOfferStatEdge as SaleFunnelOfferStatEdge,
|
|
35913
|
+
appAPI_SaleFunnelOfferStatOrder as SaleFunnelOfferStatOrder,
|
|
35914
|
+
appAPI_SaleFunnelOfferStatOrderField as SaleFunnelOfferStatOrderField,
|
|
35773
35915
|
appAPI_SaleFunnelOfferStatWhereInput as SaleFunnelOfferStatWhereInput,
|
|
35774
35916
|
appAPI_SaleFunnelOfferTrafficRangeInput as SaleFunnelOfferTrafficRangeInput,
|
|
35775
35917
|
appAPI_SaleFunnelOfferType as SaleFunnelOfferType,
|
|
@@ -35789,6 +35931,9 @@ declare namespace appAPI {
|
|
|
35789
35931
|
appAPI_SaleFunnelStat as SaleFunnelStat,
|
|
35790
35932
|
appAPI_SaleFunnelStatConnection as SaleFunnelStatConnection,
|
|
35791
35933
|
appAPI_SaleFunnelStatEdge as SaleFunnelStatEdge,
|
|
35934
|
+
appAPI_SaleFunnelStatGroupByFields as SaleFunnelStatGroupByFields,
|
|
35935
|
+
appAPI_SaleFunnelStatOrder as SaleFunnelStatOrder,
|
|
35936
|
+
appAPI_SaleFunnelStatOrderField as SaleFunnelStatOrderField,
|
|
35792
35937
|
appAPI_SaleFunnelStatWhereInput as SaleFunnelStatWhereInput,
|
|
35793
35938
|
appAPI_SaleFunnelStatus as SaleFunnelStatus,
|
|
35794
35939
|
appAPI_SaleFunnelTrackingTokenWhereInput as SaleFunnelTrackingTokenWhereInput,
|
|
@@ -36196,11 +36341,11 @@ type Props = {
|
|
|
36196
36341
|
components: Record<string, any>;
|
|
36197
36342
|
extraFiles?: ExtraFiles;
|
|
36198
36343
|
pageContext?: PageContext;
|
|
36199
|
-
|
|
36344
|
+
enableLazyLoadImage?: boolean;
|
|
36200
36345
|
additionalSettings?: Record<string, any>;
|
|
36201
36346
|
[key: string]: any;
|
|
36202
36347
|
};
|
|
36203
|
-
declare const Render: ({ uid, builder, components, parentId, extraFiles, pageContext,
|
|
36348
|
+
declare const Render: ({ uid, builder, components, parentId, extraFiles, pageContext, enableLazyLoadImage, additionalSettings, ...passProps }: Props) => {
|
|
36204
36349
|
liquid: string;
|
|
36205
36350
|
extraFiles: ExtraFiles;
|
|
36206
36351
|
};
|
|
@@ -36943,6 +37088,16 @@ type ShopLibraryPageQueryResponse = {
|
|
|
36943
37088
|
};
|
|
36944
37089
|
declare const ShopLibraryPageDocument = "\n query ShopLibraryPage($shopLibraryPageId: ID!) {\n shopLibraryPage(id: $shopLibraryPageId) {\n id\n name\n sectionPosition\n shopLibrarySections {\n id\n component\n }\n }\n}\n ";
|
|
36945
37090
|
|
|
37091
|
+
type SaleFunnelOfferQueryVariables = Exact<{
|
|
37092
|
+
saleFunnelOfferId: Scalars['ID'];
|
|
37093
|
+
}>;
|
|
37094
|
+
type SaleFunnelOfferQueryResponse = {
|
|
37095
|
+
saleFunnelOffer?: Maybe<Pick<SaleFunnelOffer, 'id' | 'isEnabled' | 'campaignID' | 'createdAt' | 'deletedAt'> & {
|
|
37096
|
+
dynamicDiscounts?: Maybe<Array<Maybe<Pick<OfferDynamicDiscount, 'id' | 'createdAt' | 'updatedAt' | 'type' | 'valueType' | 'value' | 'appliedProductCount' | 'isEnabled'>>>>;
|
|
37097
|
+
}>;
|
|
37098
|
+
};
|
|
37099
|
+
declare const SaleFunnelOfferDocument = "\n query SaleFunnelOffer($saleFunnelOfferId: ID!) {\n saleFunnelOffer(id: $saleFunnelOfferId) {\n dynamicDiscounts {\n id\n createdAt\n updatedAt\n type\n valueType\n value\n appliedProductCount\n isEnabled\n }\n id\n isEnabled\n campaignID\n createdAt\n deletedAt\n }\n}\n ";
|
|
37100
|
+
|
|
36946
37101
|
type BorderStyle = StateProp<Border> | ResponsiveStateProp<Border>;
|
|
36947
37102
|
declare const getBorderStyle: (value?: Border) => {
|
|
36948
37103
|
[k: string]: Record<"--b" | "--bc" | "--bw", string | undefined>;
|
|
@@ -46862,4 +47017,4 @@ declare const useInteraction: () => {
|
|
|
46862
47017
|
interactionListenerLoaded: (callback: () => void) => void;
|
|
46863
47018
|
};
|
|
46864
47019
|
|
|
46865
|
-
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, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, 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$1 as Options, PaddingType, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedShopMetasQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, 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, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StampedWidgetTypeV2, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadow, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBgImageSourceByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getLayoutClasses, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImageByDevice, getStyleBgColor, getStyleBgImageSource, 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, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|
|
47020
|
+
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, BackgroundImageValue, BackgroundMedia, BackgroundVideoValue, 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$1 as Options, PaddingType, PageContext, PageProvider, PageProviderProps, PageType, PageViewUpDocument, PageViewUpMutationResponse, PageViewUpMutationVariables, PickyStoryWidgetType, PostPurchaseTypo, PreOrderNowWodWidgetType, PreviewThemePageDocument, PreviewThemePageQueryResponse, PreviewThemePageQueryVariables, Primitive, ProductInputAnalytic, ProductListProvider, ProductListProviderProps, ProductOffer, ProductProvider, ProductProviderProps, ProductReviewsWidgetType, ProductSelectFragment, ProductsDocument, ProductsQueryResponse, ProductsQueryVariables, PublicStoreFrontData, PublishedShopMetasDocument, PublishedShopMetasQueryResponse, PublishedShopMetasQueryVariables, PublishedThemePageSelectFragment, PublishedThemePagesDocument, PublishedThemePagesQueryResponse, PublishedThemePagesQueryVariables, RGBAColorType, RGBColorType, Ratio$1 as Ratio, RawChild, RenderMemo as Render, RenderChildren, RenderIf, Render as RenderLiquid, RenderMode, RenderPreviewMemo as RenderPreview, RequiredCursorEdge, ResponsiveKey, ResponsiveStateProp, RivyoWidgetType, RoundedSize, RyviuWidgetType, SaleFunnelDiscount$1 as SaleFunnelDiscount, SaleFunnelDiscountEdge$1 as SaleFunnelDiscountEdge, SaleFunnelDiscountObjectType$1 as SaleFunnelDiscountObjectType, SaleFunnelDiscountType$1 as SaleFunnelDiscountType, SaleFunnelDiscountValueType$1 as SaleFunnelDiscountValueType, SaleFunnelDiscountsDocument, SaleFunnelDiscountsQueryResponse, SaleFunnelDiscountsQueryVariables, SaleFunnelOfferDocument, SaleFunnelOfferQueryResponse, SaleFunnelOfferQueryVariables, Scalars$1 as Scalars, ScaleByDirection, SectionData, SectionEntity, SectionProvider, SectionProviderProps, SettingByAnimationType, SettingByAnimationValues, SettingUIGroup, ShadowProps, ShadowStyle, ShadowStyleApplied, ShadowType, ShopLibraryPageDocument, ShopLibraryPageQueryResponse, ShopLibraryPageQueryVariables, ShopProvider, ShopProviderProps, ShopShopifyDocument, ShopShopifyQueryResponse, ShopShopifyQueryVariables, shop as ShopType, SizeProps, SizeSetting, SizeSettingGlobal, SizeType, SpacingType, StampedWidgetType, StampedWidgetTypeV2, StateProp, StateSelector, StateType, StoreConfig, StorePropertyDocument, StorePropertyQueryResponse, StorePropertyQueryVariables, SwatchesOptionType, SwatchesOptionValue, TagShopWidgetType, ThemePageDocument, ThemePageQueryResponse, ThemePageQueryVariables, ThemeSectionStatus$1 as ThemeSectionStatus, TransformProp, TriggerConfig, TrustooWidgetType, TrustooWidgetTypeV2, TypographyProps, TypographySetting, TypographySettingV2, TypographyType, TypographyV2Attrs, TypographyV2Props, UltimateSalesBoostWidgetType, VariantSelectFragment, VitalsWidgetType, WiserV2WidgetType, WiserWidgetType, WrapRenderChildren, YotpoReviewsWidgetType, addAppBlockId, animations, baseAssetURL, calculateFirstProduct, checkAvailableVariantInStock, checkInStock, cls, composeAdvanceStyle, composeAdvanceStyleForPostPurchase, composeBackgroundCss, composeBackgroundImageCss, composeBorderCss, composeBorderResponsive, composeCornerCss, composeFallbackTypographyStyle, composeFontFamilyTypographyV2, composeGridLayout, composeMemo, composePositionLineHeight, composePostionIconList, composeRadius, composeRadiusResponsive, composeShadow, composeShadowCss, composeSize, composeSizeCss, composeSpacing, composeTextColorCss, composeTextHoverColorCss, composeTypography, composeTypographyAttr, composeTypographyClassName, composeTypographyCss, composeTypographyStyle, composeTypographyV2, composeTypographyV2Css, convertHTML, convertOldLayout, convertTextAlignToJustify, dataStringify, fetchMedias, fetchVariants, filterAttrInStyle, filterToolbarPreview, flattenConnection, formatMoney, fpixel, genSizeClass, genTypoClass, genVariable, generateCollectionQueryKey, generateProductQueryKey, generateProductsQueryKey, getAlignmentClasses, getAppBlocks, getAspectRatioGlobalSize, getBgImageByDevice, getBgImageSourceByDevice, getBorderRadiusStyle, getBorderStyle, getCarouselContainerHeight, getCollection, getCornerCSSFromGlobal, getCornerStyle, getCustomRadius, getGlobalColorCSSProp, getGlobalColorClass, getGlobalColorResponsiveClass, getGlobalColorResponsiveStyle, getGlobalColorStateClass, getGlobalColorStateClassDynamicBtn, getGlobalColorStateResponsiveClass, getGlobalColorStateResponsiveClassDynamicBtn, getGlobalColorStateResponsiveStyle, getGlobalColorStateStyle, getGlobalColorStyle, getGlobalSizeGap, getGradientBgrStyleByDevice, getGradientBgrStyleForButton, getHeightByShapeGlobalSize, getLayoutClasses, getPaddingGlobalSize, getPaddingStyleByDevice, getProduct, getProductBySlug, getRadiusCSSFromGlobal, getRadiusStyleActiveState, getResponsiveStateValue, getResponsiveStylePadding, getResponsiveStyleShadow, getResponsiveStyleShadowWithoutState, getResponsiveValue, getResponsiveValueByScreen, getSelectedVariant, getShortName, getSingleColorVariable, getSpacingVariable, getStyleBackgroundByDevice, getStyleBackgroundImageByDevice, getStyleBgColor, getStyleBgImageSource, 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, useProductShopifyEditLink, useProductStore, useProductsQuery, useProductsQueryAll, useQuantity, useRemoveCartItem, useSection, useSectionStore, useSelectedOption, useShopStore, useShopifyLink, useStoreFront, useSuspenseFetch, useSwatches, useSwatchesOptions, useTimezone, useUniqProductID, useUpdateCartItem, useVariant, useVariantOutStock, useVariants, validateEmail };
|