@gem-sdk/core 12.0.0-staging.72 → 12.0.0-staging.74
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/types/index.d.ts
CHANGED
|
@@ -6190,6 +6190,7 @@ type PublishedThemePage$1 = {
|
|
|
6190
6190
|
pageStyle?: Maybe$1<PublishedThemeStyle$1>;
|
|
6191
6191
|
preloadSections?: Maybe$1<Array<Scalars$2['String']>>;
|
|
6192
6192
|
sectionPosition?: Maybe$1<Array<Scalars$2['String']>>;
|
|
6193
|
+
shopID: Scalars$2['ID'];
|
|
6193
6194
|
splitPercentage?: Maybe$1<Scalars$2['Float']>;
|
|
6194
6195
|
status?: Maybe$1<PublishedThemePageStatus$1>;
|
|
6195
6196
|
/** @deprecated Use `metafields` instead. */
|
|
@@ -8860,7 +8861,9 @@ type AppType = 'CUSTOM'
|
|
|
8860
8861
|
/** Instant Landing Page */
|
|
8861
8862
|
| 'GEMPAGES'
|
|
8862
8863
|
/** GemPage V7 app */
|
|
8863
|
-
| 'GEMPAGESV7'
|
|
8864
|
+
| 'GEMPAGESV7'
|
|
8865
|
+
/** GemUpsell app */
|
|
8866
|
+
| 'GEMUPSELL' | 'GEMX'
|
|
8864
8867
|
/** GemX app */
|
|
8865
8868
|
| 'GEMXP';
|
|
8866
8869
|
/**
|
|
@@ -12677,6 +12680,8 @@ type CreateVariantInput = {
|
|
|
12677
12680
|
isOrigin?: InputMaybe<Scalars['Boolean']>;
|
|
12678
12681
|
/** Whether this variant is designated as the winner */
|
|
12679
12682
|
isWinner?: InputMaybe<Scalars['Boolean']>;
|
|
12683
|
+
/** Template to be created for this variant */
|
|
12684
|
+
template?: InputMaybe<CreateVariantTemplateInput>;
|
|
12680
12685
|
/** Template suffix to use (e.g. templates/product.gp-template-530769618327831059.json) */
|
|
12681
12686
|
templateSuffix?: InputMaybe<Scalars['String']>;
|
|
12682
12687
|
/** Type of template to use (e.g. collection, product, article, page, blog) */
|
|
@@ -12717,7 +12722,7 @@ type CreateVariantTemplateInput = {
|
|
|
12717
12722
|
/** Title of the template for this variant */
|
|
12718
12723
|
title?: InputMaybe<Scalars['String']>;
|
|
12719
12724
|
/** ID of the variant this template belongs to */
|
|
12720
|
-
variantID
|
|
12725
|
+
variantID?: InputMaybe<Scalars['ID']>;
|
|
12721
12726
|
};
|
|
12722
12727
|
type CustomCode = {
|
|
12723
12728
|
body?: Maybe<Scalars['String']>;
|
|
@@ -15904,6 +15909,28 @@ type FontWhereInput = {
|
|
|
15904
15909
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
15905
15910
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
15906
15911
|
};
|
|
15912
|
+
type GpPageViewStat = {
|
|
15913
|
+
pageID: Scalars['ID'];
|
|
15914
|
+
totalViews: Scalars['Int'];
|
|
15915
|
+
};
|
|
15916
|
+
type GpPageViewStatConnection = {
|
|
15917
|
+
edges?: Maybe<Array<Maybe<GpPageViewStatEdge>>>;
|
|
15918
|
+
pageInfo: PageInfo;
|
|
15919
|
+
};
|
|
15920
|
+
type GpPageViewStatEdge = {
|
|
15921
|
+
node?: Maybe<GpPageViewStat>;
|
|
15922
|
+
};
|
|
15923
|
+
type GpPageViewStatOrder = {
|
|
15924
|
+
direction: OrderDirection;
|
|
15925
|
+
field?: InputMaybe<GpPageViewStatOrderField>;
|
|
15926
|
+
};
|
|
15927
|
+
type GpPageViewStatOrderField = 'PAGE_ID' | 'TOTAL_VIEWS';
|
|
15928
|
+
type GpPageViewStatWhereInput = {
|
|
15929
|
+
dateGTE?: InputMaybe<Scalars['Time']>;
|
|
15930
|
+
dateLTE?: InputMaybe<Scalars['Time']>;
|
|
15931
|
+
pageIDIn?: InputMaybe<Array<Scalars['ID']>>;
|
|
15932
|
+
shopID: Scalars['ID'];
|
|
15933
|
+
};
|
|
15907
15934
|
type GemxQlResult = {
|
|
15908
15935
|
tableData?: Maybe<TableData>;
|
|
15909
15936
|
};
|
|
@@ -16414,6 +16441,51 @@ type HeatmapLogWhereInput = {
|
|
|
16414
16441
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
16415
16442
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
16416
16443
|
};
|
|
16444
|
+
type HeatmapScrollData = {
|
|
16445
|
+
averageFold: Scalars['Float'];
|
|
16446
|
+
avgScrollDepth: Scalars['Float'];
|
|
16447
|
+
rows: Array<HeatmapScrollRow>;
|
|
16448
|
+
totalOrders?: Maybe<Scalars['Int']>;
|
|
16449
|
+
totalRevenue?: Maybe<Scalars['Float']>;
|
|
16450
|
+
totalSessions: Scalars['Int'];
|
|
16451
|
+
};
|
|
16452
|
+
type HeatmapScrollRow = {
|
|
16453
|
+
avgDwellTimeMs?: Maybe<Scalars['Float']>;
|
|
16454
|
+
convertedSessions?: Maybe<Scalars['Int']>;
|
|
16455
|
+
dropOffPercent: Scalars['Float'];
|
|
16456
|
+
dwellTimeMs?: Maybe<Scalars['Int']>;
|
|
16457
|
+
orders?: Maybe<Scalars['Int']>;
|
|
16458
|
+
percUsers: Scalars['Float'];
|
|
16459
|
+
revenue?: Maybe<Scalars['Float']>;
|
|
16460
|
+
scrollReachPercent: Scalars['Float'];
|
|
16461
|
+
visitors: Scalars['Int'];
|
|
16462
|
+
};
|
|
16463
|
+
type HeatmapScrollWhereInput = {
|
|
16464
|
+
campaignGroupID?: InputMaybe<Scalars['ID']>;
|
|
16465
|
+
campaignGroupVersionID?: InputMaybe<Scalars['ID']>;
|
|
16466
|
+
/** Filter by campaign details */
|
|
16467
|
+
campaignID?: InputMaybe<Scalars['ID']>;
|
|
16468
|
+
campaignVariantID?: InputMaybe<Scalars['ID']>;
|
|
16469
|
+
campaignVariantType?: InputMaybe<Scalars['String']>;
|
|
16470
|
+
campaignVersionID?: InputMaybe<Scalars['ID']>;
|
|
16471
|
+
/** Start date for date range filter (format: YYYY-MM-DD) */
|
|
16472
|
+
dateGTE?: InputMaybe<Scalars['Time']>;
|
|
16473
|
+
/** End date for date range filter (format: YYYY-MM-DD) */
|
|
16474
|
+
dateLTE?: InputMaybe<Scalars['Time']>;
|
|
16475
|
+
/** Device types to include (multi-select, optional) */
|
|
16476
|
+
deviceTypes?: InputMaybe<Array<DeviceType>>;
|
|
16477
|
+
journeyMatchType?: InputMaybe<JourneyMatchType>;
|
|
16478
|
+
journeys?: InputMaybe<Array<VisitorJourney>>;
|
|
16479
|
+
/** Location path to filter by (required) */
|
|
16480
|
+
locationPath: Scalars['String'];
|
|
16481
|
+
mode: AnalyticMode;
|
|
16482
|
+
/** Scroll visualization type */
|
|
16483
|
+
scrollType?: InputMaybe<ScrollType>;
|
|
16484
|
+
/** Traffic sources to filter by (multi-select, optional) */
|
|
16485
|
+
trafficSource?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
16486
|
+
/** Visitor types to include (multi-select, optional) */
|
|
16487
|
+
visitorTypes?: InputMaybe<Array<VisitorType>>;
|
|
16488
|
+
};
|
|
16417
16489
|
type HeatmapVisitorStats = {
|
|
16418
16490
|
/** Total count of visitor */
|
|
16419
16491
|
totalCount: Scalars['Int'];
|
|
@@ -18138,6 +18210,7 @@ type MakeWinnerInput = {
|
|
|
18138
18210
|
type MakeWinnerTargetObject = {
|
|
18139
18211
|
baseIDs?: InputMaybe<Array<Scalars['String']>>;
|
|
18140
18212
|
makeDefault?: InputMaybe<Scalars['Boolean']>;
|
|
18213
|
+
pageHandle?: InputMaybe<Scalars['String']>;
|
|
18141
18214
|
};
|
|
18142
18215
|
type MakeWinnerVariant = {
|
|
18143
18216
|
isDefaultTemplate?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -19028,12 +19101,13 @@ type Mutation = {
|
|
|
19028
19101
|
* Cancel a scheduled publish.
|
|
19029
19102
|
* Only SCHEDULED status jobs can be canceled.
|
|
19030
19103
|
*/
|
|
19031
|
-
scheduledPublishCancel
|
|
19104
|
+
scheduledPublishCancel: Scalars['Boolean'];
|
|
19032
19105
|
/**
|
|
19033
19106
|
* Create a new scheduled publish for a theme page or theme section.
|
|
19034
19107
|
* The content will be automatically published at the specified scheduledAt time.
|
|
19108
|
+
* Result will be sent via Websocket
|
|
19035
19109
|
*/
|
|
19036
|
-
scheduledPublishCreate
|
|
19110
|
+
scheduledPublishCreate: Scalars['Boolean'];
|
|
19037
19111
|
/**
|
|
19038
19112
|
* Force start a scheduled publish immediately, bypassing the scheduled time.
|
|
19039
19113
|
* This triggers the publish process asynchronously.
|
|
@@ -22579,6 +22653,29 @@ type PageSectionWhereInput = {
|
|
|
22579
22653
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
22580
22654
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
22581
22655
|
};
|
|
22656
|
+
type PageSnapshot = {
|
|
22657
|
+
campaignVariantID?: Maybe<Scalars['ID']>;
|
|
22658
|
+
createdAt: Scalars['Time'];
|
|
22659
|
+
deviceType?: Maybe<Scalars['String']>;
|
|
22660
|
+
hash: Scalars['String'];
|
|
22661
|
+
presignedURL: Scalars['String'];
|
|
22662
|
+
thumbnail?: Maybe<Scalars['String']>;
|
|
22663
|
+
urlPath: Scalars['String'];
|
|
22664
|
+
};
|
|
22665
|
+
type PageSnapshotConnection = {
|
|
22666
|
+
edges?: Maybe<Array<Maybe<PageSnapshotEdge>>>;
|
|
22667
|
+
pageInfo: PageInfo;
|
|
22668
|
+
totalCount: Scalars['Int'];
|
|
22669
|
+
};
|
|
22670
|
+
type PageSnapshotEdge = {
|
|
22671
|
+
cursor: Scalars['Cursor'];
|
|
22672
|
+
node?: Maybe<PageSnapshot>;
|
|
22673
|
+
};
|
|
22674
|
+
type PageSnapshotOrder = {
|
|
22675
|
+
direction: OrderDirection;
|
|
22676
|
+
field?: InputMaybe<PageSnapshotOrderField>;
|
|
22677
|
+
};
|
|
22678
|
+
type PageSnapshotOrderField = 'CREATED_AT' | 'UPDATED_AT';
|
|
22582
22679
|
/**
|
|
22583
22680
|
* PageSnapshotWhereInput is used for filtering PageSnapshot objects.
|
|
22584
22681
|
* Input was generated by ent.
|
|
@@ -22696,6 +22793,22 @@ type PageSnapshotWhereInput = {
|
|
|
22696
22793
|
sizeLTE?: InputMaybe<Scalars['Int']>;
|
|
22697
22794
|
sizeNEQ?: InputMaybe<Scalars['Int']>;
|
|
22698
22795
|
sizeNotIn?: InputMaybe<Array<Scalars['Int']>>;
|
|
22796
|
+
/** thumbnail field predicates */
|
|
22797
|
+
thumbnail?: InputMaybe<Scalars['String']>;
|
|
22798
|
+
thumbnailContains?: InputMaybe<Scalars['String']>;
|
|
22799
|
+
thumbnailContainsFold?: InputMaybe<Scalars['String']>;
|
|
22800
|
+
thumbnailEqualFold?: InputMaybe<Scalars['String']>;
|
|
22801
|
+
thumbnailGT?: InputMaybe<Scalars['String']>;
|
|
22802
|
+
thumbnailGTE?: InputMaybe<Scalars['String']>;
|
|
22803
|
+
thumbnailHasPrefix?: InputMaybe<Scalars['String']>;
|
|
22804
|
+
thumbnailHasSuffix?: InputMaybe<Scalars['String']>;
|
|
22805
|
+
thumbnailIn?: InputMaybe<Array<Scalars['String']>>;
|
|
22806
|
+
thumbnailIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
22807
|
+
thumbnailLT?: InputMaybe<Scalars['String']>;
|
|
22808
|
+
thumbnailLTE?: InputMaybe<Scalars['String']>;
|
|
22809
|
+
thumbnailNEQ?: InputMaybe<Scalars['String']>;
|
|
22810
|
+
thumbnailNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
22811
|
+
thumbnailNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
22699
22812
|
/** updated_at field predicates */
|
|
22700
22813
|
updatedAt?: InputMaybe<Scalars['Time']>;
|
|
22701
22814
|
updatedAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -26796,6 +26909,7 @@ type PublishedThemePage = {
|
|
|
26796
26909
|
pageStyle?: Maybe<PublishedThemeStyle>;
|
|
26797
26910
|
preloadSections?: Maybe<Array<Scalars['String']>>;
|
|
26798
26911
|
sectionPosition?: Maybe<Array<Scalars['String']>>;
|
|
26912
|
+
shopID: Scalars['ID'];
|
|
26799
26913
|
splitPercentage?: Maybe<Scalars['Float']>;
|
|
26800
26914
|
status?: Maybe<PublishedThemePageStatus>;
|
|
26801
26915
|
/** @deprecated Use `metafields` instead. */
|
|
@@ -27566,6 +27680,8 @@ type Query = {
|
|
|
27566
27680
|
globalSettingByKey?: Maybe<GlobalSetting>;
|
|
27567
27681
|
globalSettings?: Maybe<GlobalSettingConnection>;
|
|
27568
27682
|
globalStoreVersions?: Maybe<GlobalStoreVersionConnection>;
|
|
27683
|
+
/** Get page view counts grouped by page ID with optional filters and pagination */
|
|
27684
|
+
gpPageViewStats: GpPageViewStatConnection;
|
|
27569
27685
|
graphqlCacheOperations?: Maybe<Array<Scalars['String']>>;
|
|
27570
27686
|
/**
|
|
27571
27687
|
* Get aggregated heatmap analytics data.
|
|
@@ -27577,6 +27693,7 @@ type Query = {
|
|
|
27577
27693
|
* Returns an array of ClickMapPoint, each representing a DOM element with click data.
|
|
27578
27694
|
*/
|
|
27579
27695
|
heatmapClicks: Array<ClickMapPoint>;
|
|
27696
|
+
heatmapScroll?: Maybe<HeatmapScrollData>;
|
|
27580
27697
|
icons?: Maybe<IconConnection>;
|
|
27581
27698
|
isDomainMisconfigured: Scalars['Boolean'];
|
|
27582
27699
|
libraryBadge?: Maybe<LibraryBadge>;
|
|
@@ -27615,6 +27732,8 @@ type Query = {
|
|
|
27615
27732
|
pageSectionMeta?: Maybe<PageSectionMetaConnection>;
|
|
27616
27733
|
pageSectionMetaByKey?: Maybe<PageSectionMeta>;
|
|
27617
27734
|
pageSections?: Maybe<Array<Maybe<PageSection>>>;
|
|
27735
|
+
/** Paginated list of page snapshots with filtering and ordering support. */
|
|
27736
|
+
pageSnapshots?: Maybe<PageSnapshotConnection>;
|
|
27618
27737
|
pageViews: Scalars['Int'];
|
|
27619
27738
|
pages?: Maybe<PageConnection>;
|
|
27620
27739
|
pathAnalytics?: Maybe<Array<Maybe<PathAnalytics>>>;
|
|
@@ -27744,8 +27863,6 @@ type Query = {
|
|
|
27744
27863
|
* Results are scoped to the current shop.
|
|
27745
27864
|
*/
|
|
27746
27865
|
scheduledPublishes?: Maybe<ScheduledPublishConnection>;
|
|
27747
|
-
/** Get scroll map data with engagement metrics */
|
|
27748
|
-
scrollMap?: Maybe<ScrollMapData>;
|
|
27749
27866
|
sectionCategories?: Maybe<Array<Maybe<SectionCategory>>>;
|
|
27750
27867
|
seoAudit?: Maybe<Scalars['Boolean']>;
|
|
27751
27868
|
shopCheckGemPagesHelperExtension: Scalars['Boolean'];
|
|
@@ -27837,6 +27954,7 @@ type Query = {
|
|
|
27837
27954
|
* Get the first few unique DOM snapshots for a specific Campaign Variant.
|
|
27838
27955
|
* Used for A/B testing verification to see what DOM variations were captured.
|
|
27839
27956
|
* Returns deduplicated snapshots based on content hash.
|
|
27957
|
+
* @deprecated Use pageSnapshots instead
|
|
27840
27958
|
*/
|
|
27841
27959
|
snapshotsByVariant: Array<SnapshotData>;
|
|
27842
27960
|
storeProperty?: Maybe<StoreProperty>;
|
|
@@ -28141,12 +28259,21 @@ type QueryGlobalStoreVersionsArgs = {
|
|
|
28141
28259
|
orderBy?: InputMaybe<GlobalStoreVersionOrder>;
|
|
28142
28260
|
where?: InputMaybe<GlobalStoreVersionWhereInput>;
|
|
28143
28261
|
};
|
|
28262
|
+
type QueryGpPageViewStatsArgs = {
|
|
28263
|
+
after?: InputMaybe<Scalars['Cursor']>;
|
|
28264
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
28265
|
+
orderBy?: InputMaybe<GpPageViewStatOrder>;
|
|
28266
|
+
where?: InputMaybe<GpPageViewStatWhereInput>;
|
|
28267
|
+
};
|
|
28144
28268
|
type QueryHeatmapAnalyticsArgs = {
|
|
28145
28269
|
where: HeatmapAnalyticsWhereInput;
|
|
28146
28270
|
};
|
|
28147
28271
|
type QueryHeatmapClicksArgs = {
|
|
28148
28272
|
where: HeatmapClicksWhereInput;
|
|
28149
28273
|
};
|
|
28274
|
+
type QueryHeatmapScrollArgs = {
|
|
28275
|
+
where: HeatmapScrollWhereInput;
|
|
28276
|
+
};
|
|
28150
28277
|
type QueryIconsArgs = {
|
|
28151
28278
|
after?: InputMaybe<Scalars['Cursor']>;
|
|
28152
28279
|
before?: InputMaybe<Scalars['Cursor']>;
|
|
@@ -28293,6 +28420,14 @@ type QueryPageSectionsArgs = {
|
|
|
28293
28420
|
themePageID: Scalars['ID'];
|
|
28294
28421
|
where?: InputMaybe<PageSectionWhereInput>;
|
|
28295
28422
|
};
|
|
28423
|
+
type QueryPageSnapshotsArgs = {
|
|
28424
|
+
after?: InputMaybe<Scalars['Cursor']>;
|
|
28425
|
+
before?: InputMaybe<Scalars['Cursor']>;
|
|
28426
|
+
first?: InputMaybe<Scalars['Int']>;
|
|
28427
|
+
last?: InputMaybe<Scalars['Int']>;
|
|
28428
|
+
orderBy?: InputMaybe<PageSnapshotOrder>;
|
|
28429
|
+
where?: InputMaybe<PageSnapshotWhereInput>;
|
|
28430
|
+
};
|
|
28296
28431
|
type QueryPageViewsArgs = {
|
|
28297
28432
|
from: Scalars['Time'];
|
|
28298
28433
|
themePageID?: InputMaybe<Scalars['ID']>;
|
|
@@ -28540,9 +28675,6 @@ type QueryScheduledPublishesArgs = {
|
|
|
28540
28675
|
orderBy?: InputMaybe<ScheduledPublishOrder>;
|
|
28541
28676
|
where?: InputMaybe<ScheduledPublishWhereInput>;
|
|
28542
28677
|
};
|
|
28543
|
-
type QueryScrollMapArgs = {
|
|
28544
|
-
where: ScrollMapWhereInput;
|
|
28545
|
-
};
|
|
28546
28678
|
type QuerySectionCategoriesArgs = {
|
|
28547
28679
|
where?: InputMaybe<SectionCategoryWhereInput>;
|
|
28548
28680
|
};
|
|
@@ -30750,22 +30882,6 @@ type ScheduledPublishStatus =
|
|
|
30750
30882
|
*/
|
|
30751
30883
|
type ScheduledPublishWhereInput = {
|
|
30752
30884
|
and?: InputMaybe<Array<ScheduledPublishWhereInput>>;
|
|
30753
|
-
/** backup_file_key field predicates */
|
|
30754
|
-
backupFileKey?: InputMaybe<Scalars['String']>;
|
|
30755
|
-
backupFileKeyContains?: InputMaybe<Scalars['String']>;
|
|
30756
|
-
backupFileKeyContainsFold?: InputMaybe<Scalars['String']>;
|
|
30757
|
-
backupFileKeyEqualFold?: InputMaybe<Scalars['String']>;
|
|
30758
|
-
backupFileKeyGT?: InputMaybe<Scalars['String']>;
|
|
30759
|
-
backupFileKeyGTE?: InputMaybe<Scalars['String']>;
|
|
30760
|
-
backupFileKeyHasPrefix?: InputMaybe<Scalars['String']>;
|
|
30761
|
-
backupFileKeyHasSuffix?: InputMaybe<Scalars['String']>;
|
|
30762
|
-
backupFileKeyIn?: InputMaybe<Array<Scalars['String']>>;
|
|
30763
|
-
backupFileKeyIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
30764
|
-
backupFileKeyLT?: InputMaybe<Scalars['String']>;
|
|
30765
|
-
backupFileKeyLTE?: InputMaybe<Scalars['String']>;
|
|
30766
|
-
backupFileKeyNEQ?: InputMaybe<Scalars['String']>;
|
|
30767
|
-
backupFileKeyNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
30768
|
-
backupFileKeyNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
30769
30885
|
/** canceled_at field predicates */
|
|
30770
30886
|
canceledAt?: InputMaybe<Scalars['Time']>;
|
|
30771
30887
|
canceledAtGT?: InputMaybe<Scalars['Time']>;
|
|
@@ -30960,54 +31076,7 @@ type ScheduledPublishWhereInput = {
|
|
|
30960
31076
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
30961
31077
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
30962
31078
|
};
|
|
30963
|
-
type
|
|
30964
|
-
/** Average time spent at this depth (milliseconds) */
|
|
30965
|
-
avgTimeMs: Scalars['Int'];
|
|
30966
|
-
/** Percentage of sessions that bounced at this depth */
|
|
30967
|
-
bounceRate: Scalars['Float'];
|
|
30968
|
-
/** Bucket ID (0-5) */
|
|
30969
|
-
bucketId: Scalars['Int'];
|
|
30970
|
-
/** Human-readable label (e.g., "0-10%", "10-25%") */
|
|
30971
|
-
label: Scalars['String'];
|
|
30972
|
-
/** Maximum percentage (e.g., 10, 25, 50) */
|
|
30973
|
-
maxPercent: Scalars['Int'];
|
|
30974
|
-
/** Minimum percentage (e.g., 0, 10, 25) */
|
|
30975
|
-
minPercent: Scalars['Int'];
|
|
30976
|
-
/** Number of sessions that reached this depth */
|
|
30977
|
-
sessions: Scalars['Int'];
|
|
30978
|
-
};
|
|
30979
|
-
/** Scroll map data for a page */
|
|
30980
|
-
type ScrollMapData = {
|
|
30981
|
-
/** Average scroll depth percentage */
|
|
30982
|
-
avgScrollDepth: Scalars['Float'];
|
|
30983
|
-
/** Percentage of users who scrolled below fold */
|
|
30984
|
-
belowFoldRate: Scalars['Float'];
|
|
30985
|
-
/** Scroll depth distribution by buckets */
|
|
30986
|
-
depthBuckets: Array<ScrollDepthBucket>;
|
|
30987
|
-
/** Most common exit depth (where users stopped scrolling) */
|
|
30988
|
-
exitDepthPercent: Scalars['Int'];
|
|
30989
|
-
/** Total sessions analyzed */
|
|
30990
|
-
totalSessions: Scalars['Int'];
|
|
30991
|
-
/** URL path of the page */
|
|
30992
|
-
urlPath: Scalars['String'];
|
|
30993
|
-
};
|
|
30994
|
-
/** Input filter for scroll map queries */
|
|
30995
|
-
type ScrollMapWhereInput = {
|
|
30996
|
-
/** Campaign variant ID for A/B testing (optional) */
|
|
30997
|
-
campaignVariantID?: InputMaybe<Scalars['ID']>;
|
|
30998
|
-
/** Device types filter (multi-select, optional) */
|
|
30999
|
-
deviceTypes?: InputMaybe<Array<DeviceType>>;
|
|
31000
|
-
/** End date (format: YYYY-MM-DD) */
|
|
31001
|
-
endDate?: InputMaybe<Scalars['String']>;
|
|
31002
|
-
/** Shop ID (required) */
|
|
31003
|
-
shopID: Scalars['ID'];
|
|
31004
|
-
/** Start date (format: YYYY-MM-DD) */
|
|
31005
|
-
startDate?: InputMaybe<Scalars['String']>;
|
|
31006
|
-
/** URL path (required) */
|
|
31007
|
-
urlPath: Scalars['String'];
|
|
31008
|
-
/** Visitor types filter (multi-select, optional) */
|
|
31009
|
-
visitorTypes?: InputMaybe<Array<VisitorType>>;
|
|
31010
|
-
};
|
|
31079
|
+
type ScrollType = 'ATTENTION' | 'REVENUE' | 'SCROLL_DEPTH';
|
|
31011
31080
|
type SectionCategory = {
|
|
31012
31081
|
children: Array<Maybe<SectionCategory>>;
|
|
31013
31082
|
countSections: Scalars['Int'];
|
|
@@ -39998,6 +40067,8 @@ type Variant = {
|
|
|
39998
40067
|
trafficRate?: Maybe<Scalars['Float']>;
|
|
39999
40068
|
/** Timestamp when the variant was last updated */
|
|
40000
40069
|
updatedAt?: Maybe<Scalars['Time']>;
|
|
40070
|
+
/** Template suffix of variant winner */
|
|
40071
|
+
winnerTemplateSuffix?: Maybe<Scalars['String']>;
|
|
40001
40072
|
};
|
|
40002
40073
|
/** Content configuration for a campaign variant */
|
|
40003
40074
|
type VariantContent = {
|
|
@@ -40589,6 +40660,22 @@ type VariantWhereInput = {
|
|
|
40589
40660
|
updatedAtLTE?: InputMaybe<Scalars['Time']>;
|
|
40590
40661
|
updatedAtNEQ?: InputMaybe<Scalars['Time']>;
|
|
40591
40662
|
updatedAtNotIn?: InputMaybe<Array<Scalars['Time']>>;
|
|
40663
|
+
/** winner_template_suffix field predicates */
|
|
40664
|
+
winnerTemplateSuffix?: InputMaybe<Scalars['String']>;
|
|
40665
|
+
winnerTemplateSuffixContains?: InputMaybe<Scalars['String']>;
|
|
40666
|
+
winnerTemplateSuffixContainsFold?: InputMaybe<Scalars['String']>;
|
|
40667
|
+
winnerTemplateSuffixEqualFold?: InputMaybe<Scalars['String']>;
|
|
40668
|
+
winnerTemplateSuffixGT?: InputMaybe<Scalars['String']>;
|
|
40669
|
+
winnerTemplateSuffixGTE?: InputMaybe<Scalars['String']>;
|
|
40670
|
+
winnerTemplateSuffixHasPrefix?: InputMaybe<Scalars['String']>;
|
|
40671
|
+
winnerTemplateSuffixHasSuffix?: InputMaybe<Scalars['String']>;
|
|
40672
|
+
winnerTemplateSuffixIn?: InputMaybe<Array<Scalars['String']>>;
|
|
40673
|
+
winnerTemplateSuffixIsNil?: InputMaybe<Scalars['Boolean']>;
|
|
40674
|
+
winnerTemplateSuffixLT?: InputMaybe<Scalars['String']>;
|
|
40675
|
+
winnerTemplateSuffixLTE?: InputMaybe<Scalars['String']>;
|
|
40676
|
+
winnerTemplateSuffixNEQ?: InputMaybe<Scalars['String']>;
|
|
40677
|
+
winnerTemplateSuffixNotIn?: InputMaybe<Array<Scalars['String']>>;
|
|
40678
|
+
winnerTemplateSuffixNotNil?: InputMaybe<Scalars['Boolean']>;
|
|
40592
40679
|
};
|
|
40593
40680
|
type VerifyStorefrontAccessTokenInput = {
|
|
40594
40681
|
platformDomain: Scalars['String'];
|
|
@@ -41144,11 +41231,20 @@ type appAPI_GlobalStoreVersionEdge = GlobalStoreVersionEdge;
|
|
|
41144
41231
|
type appAPI_GlobalStoreVersionOrder = GlobalStoreVersionOrder;
|
|
41145
41232
|
type appAPI_GlobalStoreVersionOrderField = GlobalStoreVersionOrderField;
|
|
41146
41233
|
type appAPI_GlobalStoreVersionWhereInput = GlobalStoreVersionWhereInput;
|
|
41234
|
+
type appAPI_GpPageViewStat = GpPageViewStat;
|
|
41235
|
+
type appAPI_GpPageViewStatConnection = GpPageViewStatConnection;
|
|
41236
|
+
type appAPI_GpPageViewStatEdge = GpPageViewStatEdge;
|
|
41237
|
+
type appAPI_GpPageViewStatOrder = GpPageViewStatOrder;
|
|
41238
|
+
type appAPI_GpPageViewStatOrderField = GpPageViewStatOrderField;
|
|
41239
|
+
type appAPI_GpPageViewStatWhereInput = GpPageViewStatWhereInput;
|
|
41147
41240
|
type appAPI_HeatmapAnalytics = HeatmapAnalytics;
|
|
41148
41241
|
type appAPI_HeatmapAnalyticsWhereInput = HeatmapAnalyticsWhereInput;
|
|
41149
41242
|
type appAPI_HeatmapClickType = HeatmapClickType;
|
|
41150
41243
|
type appAPI_HeatmapClicksWhereInput = HeatmapClicksWhereInput;
|
|
41151
41244
|
type appAPI_HeatmapLogWhereInput = HeatmapLogWhereInput;
|
|
41245
|
+
type appAPI_HeatmapScrollData = HeatmapScrollData;
|
|
41246
|
+
type appAPI_HeatmapScrollRow = HeatmapScrollRow;
|
|
41247
|
+
type appAPI_HeatmapScrollWhereInput = HeatmapScrollWhereInput;
|
|
41152
41248
|
type appAPI_HeatmapVisitorStats = HeatmapVisitorStats;
|
|
41153
41249
|
type appAPI_Icon = Icon;
|
|
41154
41250
|
type appAPI_IconConnection = IconConnection;
|
|
@@ -41681,6 +41777,11 @@ type appAPI_PageSectionOrderField = PageSectionOrderField;
|
|
|
41681
41777
|
type appAPI_PageSectionVersion = PageSectionVersion;
|
|
41682
41778
|
type appAPI_PageSectionVersionWhereInput = PageSectionVersionWhereInput;
|
|
41683
41779
|
type appAPI_PageSectionWhereInput = PageSectionWhereInput;
|
|
41780
|
+
type appAPI_PageSnapshot = PageSnapshot;
|
|
41781
|
+
type appAPI_PageSnapshotConnection = PageSnapshotConnection;
|
|
41782
|
+
type appAPI_PageSnapshotEdge = PageSnapshotEdge;
|
|
41783
|
+
type appAPI_PageSnapshotOrder = PageSnapshotOrder;
|
|
41784
|
+
type appAPI_PageSnapshotOrderField = PageSnapshotOrderField;
|
|
41684
41785
|
type appAPI_PageSnapshotWhereInput = PageSnapshotWhereInput;
|
|
41685
41786
|
type appAPI_PageWhereInput = PageWhereInput;
|
|
41686
41787
|
type appAPI_PathAnalytic = PathAnalytic;
|
|
@@ -41878,8 +41979,10 @@ type appAPI_QueryGlobalComponentsArgs = QueryGlobalComponentsArgs;
|
|
|
41878
41979
|
type appAPI_QueryGlobalSettingByKeyArgs = QueryGlobalSettingByKeyArgs;
|
|
41879
41980
|
type appAPI_QueryGlobalSettingsArgs = QueryGlobalSettingsArgs;
|
|
41880
41981
|
type appAPI_QueryGlobalStoreVersionsArgs = QueryGlobalStoreVersionsArgs;
|
|
41982
|
+
type appAPI_QueryGpPageViewStatsArgs = QueryGpPageViewStatsArgs;
|
|
41881
41983
|
type appAPI_QueryHeatmapAnalyticsArgs = QueryHeatmapAnalyticsArgs;
|
|
41882
41984
|
type appAPI_QueryHeatmapClicksArgs = QueryHeatmapClicksArgs;
|
|
41985
|
+
type appAPI_QueryHeatmapScrollArgs = QueryHeatmapScrollArgs;
|
|
41883
41986
|
type appAPI_QueryIconsArgs = QueryIconsArgs;
|
|
41884
41987
|
type appAPI_QueryIsDomainMisconfiguredArgs = QueryIsDomainMisconfiguredArgs;
|
|
41885
41988
|
type appAPI_QueryLibraryBadgeArgs = QueryLibraryBadgeArgs;
|
|
@@ -41907,6 +42010,7 @@ type appAPI_QueryPageSectionArgs = QueryPageSectionArgs;
|
|
|
41907
42010
|
type appAPI_QueryPageSectionMetaArgs = QueryPageSectionMetaArgs;
|
|
41908
42011
|
type appAPI_QueryPageSectionMetaByKeyArgs = QueryPageSectionMetaByKeyArgs;
|
|
41909
42012
|
type appAPI_QueryPageSectionsArgs = QueryPageSectionsArgs;
|
|
42013
|
+
type appAPI_QueryPageSnapshotsArgs = QueryPageSnapshotsArgs;
|
|
41910
42014
|
type appAPI_QueryPageViewsArgs = QueryPageViewsArgs;
|
|
41911
42015
|
type appAPI_QueryPagesArgs = QueryPagesArgs;
|
|
41912
42016
|
type appAPI_QueryParameter = QueryParameter;
|
|
@@ -41954,7 +42058,6 @@ type appAPI_QuerySaleFunnelStatsArgs = QuerySaleFunnelStatsArgs;
|
|
|
41954
42058
|
type appAPI_QuerySaleFunnelTotalStatArgs = QuerySaleFunnelTotalStatArgs;
|
|
41955
42059
|
type appAPI_QuerySaleFunnelsArgs = QuerySaleFunnelsArgs;
|
|
41956
42060
|
type appAPI_QueryScheduledPublishesArgs = QueryScheduledPublishesArgs;
|
|
41957
|
-
type appAPI_QueryScrollMapArgs = QueryScrollMapArgs;
|
|
41958
42061
|
type appAPI_QuerySectionCategoriesArgs = QuerySectionCategoriesArgs;
|
|
41959
42062
|
type appAPI_QuerySeoAuditArgs = QuerySeoAuditArgs;
|
|
41960
42063
|
type appAPI_QueryShopDeploymentEventsArgs = QueryShopDeploymentEventsArgs;
|
|
@@ -42111,9 +42214,7 @@ type appAPI_ScheduledPublishOrderField = ScheduledPublishOrderField;
|
|
|
42111
42214
|
type appAPI_ScheduledPublishPageType = ScheduledPublishPageType;
|
|
42112
42215
|
type appAPI_ScheduledPublishStatus = ScheduledPublishStatus;
|
|
42113
42216
|
type appAPI_ScheduledPublishWhereInput = ScheduledPublishWhereInput;
|
|
42114
|
-
type
|
|
42115
|
-
type appAPI_ScrollMapData = ScrollMapData;
|
|
42116
|
-
type appAPI_ScrollMapWhereInput = ScrollMapWhereInput;
|
|
42217
|
+
type appAPI_ScrollType = ScrollType;
|
|
42117
42218
|
type appAPI_SectionCategory = SectionCategory;
|
|
42118
42219
|
type appAPI_SectionCategoryInputCreate = SectionCategoryInputCreate;
|
|
42119
42220
|
type appAPI_SectionCategoryInputUpdate = SectionCategoryInputUpdate;
|
|
@@ -42841,11 +42942,20 @@ declare namespace appAPI {
|
|
|
42841
42942
|
appAPI_GlobalStoreVersionOrder as GlobalStoreVersionOrder,
|
|
42842
42943
|
appAPI_GlobalStoreVersionOrderField as GlobalStoreVersionOrderField,
|
|
42843
42944
|
appAPI_GlobalStoreVersionWhereInput as GlobalStoreVersionWhereInput,
|
|
42945
|
+
appAPI_GpPageViewStat as GpPageViewStat,
|
|
42946
|
+
appAPI_GpPageViewStatConnection as GpPageViewStatConnection,
|
|
42947
|
+
appAPI_GpPageViewStatEdge as GpPageViewStatEdge,
|
|
42948
|
+
appAPI_GpPageViewStatOrder as GpPageViewStatOrder,
|
|
42949
|
+
appAPI_GpPageViewStatOrderField as GpPageViewStatOrderField,
|
|
42950
|
+
appAPI_GpPageViewStatWhereInput as GpPageViewStatWhereInput,
|
|
42844
42951
|
appAPI_HeatmapAnalytics as HeatmapAnalytics,
|
|
42845
42952
|
appAPI_HeatmapAnalyticsWhereInput as HeatmapAnalyticsWhereInput,
|
|
42846
42953
|
appAPI_HeatmapClickType as HeatmapClickType,
|
|
42847
42954
|
appAPI_HeatmapClicksWhereInput as HeatmapClicksWhereInput,
|
|
42848
42955
|
appAPI_HeatmapLogWhereInput as HeatmapLogWhereInput,
|
|
42956
|
+
appAPI_HeatmapScrollData as HeatmapScrollData,
|
|
42957
|
+
appAPI_HeatmapScrollRow as HeatmapScrollRow,
|
|
42958
|
+
appAPI_HeatmapScrollWhereInput as HeatmapScrollWhereInput,
|
|
42849
42959
|
appAPI_HeatmapVisitorStats as HeatmapVisitorStats,
|
|
42850
42960
|
appAPI_Icon as Icon,
|
|
42851
42961
|
appAPI_IconConnection as IconConnection,
|
|
@@ -43378,6 +43488,11 @@ declare namespace appAPI {
|
|
|
43378
43488
|
appAPI_PageSectionVersion as PageSectionVersion,
|
|
43379
43489
|
appAPI_PageSectionVersionWhereInput as PageSectionVersionWhereInput,
|
|
43380
43490
|
appAPI_PageSectionWhereInput as PageSectionWhereInput,
|
|
43491
|
+
appAPI_PageSnapshot as PageSnapshot,
|
|
43492
|
+
appAPI_PageSnapshotConnection as PageSnapshotConnection,
|
|
43493
|
+
appAPI_PageSnapshotEdge as PageSnapshotEdge,
|
|
43494
|
+
appAPI_PageSnapshotOrder as PageSnapshotOrder,
|
|
43495
|
+
appAPI_PageSnapshotOrderField as PageSnapshotOrderField,
|
|
43381
43496
|
appAPI_PageSnapshotWhereInput as PageSnapshotWhereInput,
|
|
43382
43497
|
appAPI_PageWhereInput as PageWhereInput,
|
|
43383
43498
|
appAPI_PathAnalytic as PathAnalytic,
|
|
@@ -43576,8 +43691,10 @@ declare namespace appAPI {
|
|
|
43576
43691
|
appAPI_QueryGlobalSettingByKeyArgs as QueryGlobalSettingByKeyArgs,
|
|
43577
43692
|
appAPI_QueryGlobalSettingsArgs as QueryGlobalSettingsArgs,
|
|
43578
43693
|
appAPI_QueryGlobalStoreVersionsArgs as QueryGlobalStoreVersionsArgs,
|
|
43694
|
+
appAPI_QueryGpPageViewStatsArgs as QueryGpPageViewStatsArgs,
|
|
43579
43695
|
appAPI_QueryHeatmapAnalyticsArgs as QueryHeatmapAnalyticsArgs,
|
|
43580
43696
|
appAPI_QueryHeatmapClicksArgs as QueryHeatmapClicksArgs,
|
|
43697
|
+
appAPI_QueryHeatmapScrollArgs as QueryHeatmapScrollArgs,
|
|
43581
43698
|
appAPI_QueryIconsArgs as QueryIconsArgs,
|
|
43582
43699
|
appAPI_QueryIsDomainMisconfiguredArgs as QueryIsDomainMisconfiguredArgs,
|
|
43583
43700
|
appAPI_QueryLibraryBadgeArgs as QueryLibraryBadgeArgs,
|
|
@@ -43605,6 +43722,7 @@ declare namespace appAPI {
|
|
|
43605
43722
|
appAPI_QueryPageSectionMetaArgs as QueryPageSectionMetaArgs,
|
|
43606
43723
|
appAPI_QueryPageSectionMetaByKeyArgs as QueryPageSectionMetaByKeyArgs,
|
|
43607
43724
|
appAPI_QueryPageSectionsArgs as QueryPageSectionsArgs,
|
|
43725
|
+
appAPI_QueryPageSnapshotsArgs as QueryPageSnapshotsArgs,
|
|
43608
43726
|
appAPI_QueryPageViewsArgs as QueryPageViewsArgs,
|
|
43609
43727
|
appAPI_QueryPagesArgs as QueryPagesArgs,
|
|
43610
43728
|
appAPI_QueryParameter as QueryParameter,
|
|
@@ -43652,7 +43770,6 @@ declare namespace appAPI {
|
|
|
43652
43770
|
appAPI_QuerySaleFunnelTotalStatArgs as QuerySaleFunnelTotalStatArgs,
|
|
43653
43771
|
appAPI_QuerySaleFunnelsArgs as QuerySaleFunnelsArgs,
|
|
43654
43772
|
appAPI_QueryScheduledPublishesArgs as QueryScheduledPublishesArgs,
|
|
43655
|
-
appAPI_QueryScrollMapArgs as QueryScrollMapArgs,
|
|
43656
43773
|
appAPI_QuerySectionCategoriesArgs as QuerySectionCategoriesArgs,
|
|
43657
43774
|
appAPI_QuerySeoAuditArgs as QuerySeoAuditArgs,
|
|
43658
43775
|
appAPI_QueryShopDeploymentEventsArgs as QueryShopDeploymentEventsArgs,
|
|
@@ -43809,9 +43926,7 @@ declare namespace appAPI {
|
|
|
43809
43926
|
appAPI_ScheduledPublishPageType as ScheduledPublishPageType,
|
|
43810
43927
|
appAPI_ScheduledPublishStatus as ScheduledPublishStatus,
|
|
43811
43928
|
appAPI_ScheduledPublishWhereInput as ScheduledPublishWhereInput,
|
|
43812
|
-
|
|
43813
|
-
appAPI_ScrollMapData as ScrollMapData,
|
|
43814
|
-
appAPI_ScrollMapWhereInput as ScrollMapWhereInput,
|
|
43929
|
+
appAPI_ScrollType as ScrollType,
|
|
43815
43930
|
appAPI_SectionCategory as SectionCategory,
|
|
43816
43931
|
appAPI_SectionCategoryInputCreate as SectionCategoryInputCreate,
|
|
43817
43932
|
appAPI_SectionCategoryInputUpdate as SectionCategoryInputUpdate,
|
|
@@ -45280,7 +45395,7 @@ type PublishedThemePagesQueryVariables = Exact$1<{
|
|
|
45280
45395
|
slugType: PublishedThemePageType$1;
|
|
45281
45396
|
}>;
|
|
45282
45397
|
type PublishedThemePagesQueryResponse = {
|
|
45283
|
-
publishedThemePages?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePage$1, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
|
|
45398
|
+
publishedThemePages?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePage$1, 'id' | 'shopID' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
|
|
45284
45399
|
pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
|
|
45285
45400
|
themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
|
|
45286
45401
|
themePageDataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
|
|
@@ -46384,6 +46499,7 @@ type Option$4<T> = {
|
|
|
46384
46499
|
maxOption?: number;
|
|
46385
46500
|
subTitle?: string;
|
|
46386
46501
|
disableHoverIcon?: boolean;
|
|
46502
|
+
noTranslateLabel?: boolean;
|
|
46387
46503
|
};
|
|
46388
46504
|
type BaseSelect<K> = {
|
|
46389
46505
|
id: K;
|
|
@@ -58485,7 +58601,7 @@ declare const usePreviewSharePage: () => {
|
|
|
58485
58601
|
disableExternalLinks: () => void;
|
|
58486
58602
|
};
|
|
58487
58603
|
|
|
58488
|
-
type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
|
|
58604
|
+
type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'shopID' | 'name' | 'handle' | 'isMobile' | 'sectionPosition'> & {
|
|
58489
58605
|
pageSections?: Maybe$1<Array<Maybe$1<Pick<PublishedPageSection$1, 'cid' | 'component' | 'id'>>>>;
|
|
58490
58606
|
themePageCustomSections?: Maybe$1<Array<Maybe$1<Pick<PublishedCustomSection$1, 'cid' | 'component' | 'id' | 'type'>>>>;
|
|
58491
58607
|
themePageDataSEO?: Maybe$1<Array<Maybe$1<Pick<DataSeo$1, 'id' | 'key' | 'value'>>>>;
|