@gscdump/sdk 0.31.2 → 0.31.4
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/index.d.mts +9 -0
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -188,6 +188,15 @@ declare function gscConsoleUrl(opts: GscConsoleUrlOpts): string;
|
|
|
188
188
|
* today (PST). Rows within the window may still shift as GSC finalizes clicks/
|
|
189
189
|
* impressions; charts render those points under a dimmed / striped overlay so
|
|
190
190
|
* users don't misread last-day dips as trends.
|
|
191
|
+
*
|
|
192
|
+
* This is the client DISPLAY-latency band, NOT the server lake-membership
|
|
193
|
+
* boundary. gscdump's `DEFAULT_STABILITY_CUTOFF_DAYS` (= 4) decides which days
|
|
194
|
+
* live in the Iceberg lake vs the recent overlay; this constant (= 3) only dims
|
|
195
|
+
* the UI. The display band is intentionally one day SMALLER so that, even at
|
|
196
|
+
* maximum UTC-vs-PST clock skew, the freshest UI-requested day is lake-resident
|
|
197
|
+
* (R2-SQL-complete) rather than overlay-only. The two are distinct concepts; do
|
|
198
|
+
* not unify them to a single value (gscdump plan
|
|
199
|
+
* `2026-06-24-overlay-canonical-merge-unification.md` W6).
|
|
191
200
|
*/
|
|
192
201
|
declare const GSC_STABLE_LATENCY_DAYS = 3;
|
|
193
202
|
type GscErrorStatus = 'auth-missing' | 'rate-limited' | 'network' | 'error';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gscdump/sdk",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.31.
|
|
4
|
+
"version": "0.31.4",
|
|
5
5
|
"description": "Consumer SDK for hosted gscdump.com integrations.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Harlan Wilton",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"date-fns": "^4.4.0",
|
|
45
45
|
"ofetch": "^1.5.1",
|
|
46
46
|
"zod": "^4.4.3",
|
|
47
|
-
"@gscdump/analysis": "0.31.
|
|
48
|
-
"
|
|
49
|
-
"@gscdump/engine": "0.31.
|
|
50
|
-
"gscdump": "0.31.
|
|
47
|
+
"@gscdump/analysis": "0.31.4",
|
|
48
|
+
"gscdump": "0.31.4",
|
|
49
|
+
"@gscdump/engine": "0.31.4",
|
|
50
|
+
"@gscdump/contracts": "0.31.4"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"typescript": "^6.0.3",
|