@koda-sl/baker-cli 0.246.0 → 0.246.1
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/cli.js +33 -4
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -12593,8 +12593,24 @@ var analyticsTotalsSchema = z24.object({
|
|
|
12593
12593
|
/** Counted from `session_start`. */
|
|
12594
12594
|
sessions: z24.number().int().nonnegative(),
|
|
12595
12595
|
pageViews: z24.number().int().nonnegative(),
|
|
12596
|
+
/**
|
|
12597
|
+
* Every conversion, counting a visit twice when it converted twice.
|
|
12598
|
+
*
|
|
12599
|
+
* A Form's author can mark an outcome as counting every time it happens — a
|
|
12600
|
+
* download, a repeatable action — so this legitimately runs ahead of
|
|
12601
|
+
* {@link convertingSessions}, and of `sessions`.
|
|
12602
|
+
*/
|
|
12596
12603
|
conversions: z24.number().int().nonnegative(),
|
|
12597
|
-
/**
|
|
12604
|
+
/** Visits that produced at least one conversion. Never above `sessions`. */
|
|
12605
|
+
convertingSessions: z24.number().int().nonnegative(),
|
|
12606
|
+
/**
|
|
12607
|
+
* Converting visits per visit, 0–1. Null when there were no visits.
|
|
12608
|
+
*
|
|
12609
|
+
* Over converting visits rather than over conversions, because the second
|
|
12610
|
+
* ratio passes 1 the moment one visit converts twice — and a headline card
|
|
12611
|
+
* reading "125%" is read as a broken report, not as a visitor who did the
|
|
12612
|
+
* thing twice. The count above still says how often it happened.
|
|
12613
|
+
*/
|
|
12598
12614
|
conversionRate: z24.number().min(0).max(1).nullable(),
|
|
12599
12615
|
avgEngagementMs: z24.number().nonnegative().nullable(),
|
|
12600
12616
|
/** Page views per session. At or near 1 means visitors leave from the page they land on. */
|
|
@@ -12640,8 +12656,14 @@ var analyticsLandingRowSchema = z24.object({
|
|
|
12640
12656
|
entrances: z24.number().int().nonnegative(),
|
|
12641
12657
|
visitors: z24.number().int().nonnegative(),
|
|
12642
12658
|
conversions: z24.number().int().nonnegative(),
|
|
12659
|
+
/** Visits that converted on this page at least once. */
|
|
12660
|
+
convertingSessions: z24.number().int().nonnegative(),
|
|
12643
12661
|
outboundClicks: z24.number().int().nonnegative(),
|
|
12644
|
-
/**
|
|
12662
|
+
/**
|
|
12663
|
+
* Converting visits per entrance. Null when nobody entered here at all.
|
|
12664
|
+
*
|
|
12665
|
+
* Converting visits, not conversions: see {@link analyticsTotalsSchema}.
|
|
12666
|
+
*/
|
|
12645
12667
|
conversionRate: z24.number().min(0).max(1).nullable(),
|
|
12646
12668
|
avgEngagementMs: z24.number().nonnegative().nullable(),
|
|
12647
12669
|
/**
|
|
@@ -12677,6 +12699,9 @@ var analyticsTagRowSchema = z24.object({
|
|
|
12677
12699
|
sessions: z24.number().int().nonnegative(),
|
|
12678
12700
|
entrances: z24.number().int().nonnegative(),
|
|
12679
12701
|
conversions: z24.number().int().nonnegative(),
|
|
12702
|
+
/** Visits that converted on one of this tag's pages. */
|
|
12703
|
+
convertingSessions: z24.number().int().nonnegative(),
|
|
12704
|
+
/** Converting visits per entrance. */
|
|
12680
12705
|
conversionRate: z24.number().min(0).max(1).nullable()
|
|
12681
12706
|
});
|
|
12682
12707
|
var analyticsCustomEventRowSchema = z24.object({
|
|
@@ -12743,7 +12768,9 @@ var analyticsPageRowSchema = z24.object({
|
|
|
12743
12768
|
/** Sessions that began on this page — its value as a landing page. */
|
|
12744
12769
|
entrances: z24.number().int().nonnegative(),
|
|
12745
12770
|
conversions: z24.number().int().nonnegative(),
|
|
12746
|
-
/**
|
|
12771
|
+
/** Visits that converted on this page at least once. */
|
|
12772
|
+
convertingSessions: z24.number().int().nonnegative(),
|
|
12773
|
+
/** Converting visits per entrance, 0–1. Null when nobody landed here. */
|
|
12747
12774
|
conversionRate: z24.number().min(0).max(1).nullable(),
|
|
12748
12775
|
avgEngagementMs: z24.number().nonnegative().nullable()
|
|
12749
12776
|
});
|
|
@@ -12938,7 +12965,9 @@ var analyticsReleaseRowSchema = z24.object({
|
|
|
12938
12965
|
sessions: z24.number().int().nonnegative(),
|
|
12939
12966
|
pageViews: z24.number().int().nonnegative(),
|
|
12940
12967
|
conversions: z24.number().int().nonnegative(),
|
|
12941
|
-
/**
|
|
12968
|
+
/** Visits that converted on this build at least once. */
|
|
12969
|
+
convertingSessions: z24.number().int().nonnegative(),
|
|
12970
|
+
/** Converting visits per session, 0–1. Null below a usable sample. */
|
|
12942
12971
|
conversionRate: z24.number().min(0).max(1).nullable()
|
|
12943
12972
|
});
|
|
12944
12973
|
var analyticsGeoRowSchema = z24.object({
|