@gscdump/engine 0.11.4 → 0.11.5
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/_chunks/registry.d.mts +1 -1
- package/dist/_chunks/schema.d.mts +1 -1
- package/dist/_chunks/storage.d.mts +1 -1
- package/dist/adapters/node.d.mts +1 -1
- package/dist/entities.d.mts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/resolver/index.d.mts +1 -1
- package/dist/rollups.d.mts +1 -1
- package/package.json +3 -2
|
@@ -2,7 +2,7 @@ import { T as Row$1 } from "./storage.mjs";
|
|
|
2
2
|
import { o as ResolverAdapter } from "./types.mjs";
|
|
3
3
|
import { t as AnalysisParams } from "./analysis-types.mjs";
|
|
4
4
|
import { PlannerCapabilities } from "gscdump/query/plan";
|
|
5
|
-
import { TableName } from "gscdump/contracts";
|
|
5
|
+
import { TableName } from "@gscdump/contracts";
|
|
6
6
|
import { BuilderState } from "gscdump/query";
|
|
7
7
|
type QueryRow = Record<string, unknown>;
|
|
8
8
|
interface FileSet {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _$drizzle_orm_pg_core0 from "drizzle-orm/pg-core";
|
|
2
|
-
import { ColumnDef, ColumnType, TableName, TableSchema, TableSchema as TableSchema$1 } from "gscdump/contracts";
|
|
2
|
+
import { ColumnDef, ColumnType, TableName, TableSchema, TableSchema as TableSchema$1 } from "@gscdump/contracts";
|
|
3
3
|
declare const pages: _$drizzle_orm_pg_core0.PgTableWithColumns<{
|
|
4
4
|
name: "pages";
|
|
5
5
|
schema: undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as ComparisonFilter } from "./types.mjs";
|
|
2
|
-
import { Row, Row as Row$1, TableName, TableName as TableName$1, TenantCtx, TenantCtx as TenantCtx$1 } from "gscdump/contracts";
|
|
2
|
+
import { Row, Row as Row$1, TableName, TableName as TableName$1, TenantCtx, TenantCtx as TenantCtx$1 } from "@gscdump/contracts";
|
|
3
3
|
import { BuilderState, SearchType, SearchType as SearchType$1 } from "gscdump/query";
|
|
4
4
|
/**
|
|
5
5
|
* Per-tier age threshold in days. Default ladder collapses on these gates:
|
package/dist/adapters/node.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { O as StorageEngine, a as DataSource } from "../_chunks/storage.mjs";
|
|
2
2
|
import { NodeDuckDBOptions, createNodeDuckDBHandle, resetNodeDuckDB } from "./duckdb-node.mjs";
|
|
3
3
|
import { t as SnapshotIndex } from "../_chunks/snapshot.mjs";
|
|
4
|
-
import { Row, TableName } from "gscdump/contracts";
|
|
4
|
+
import { Row, TableName } from "@gscdump/contracts";
|
|
5
5
|
interface NodeHarnessOptions {
|
|
6
6
|
dataDir: string;
|
|
7
7
|
/** Tenant user id. Defaults to `'local'` for single-user CLI installs. */
|
package/dist/entities.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { a as DataSource } from "./_chunks/storage.mjs";
|
|
2
2
|
import { ScheduleState } from "./schedule.mjs";
|
|
3
|
-
import { TenantCtx } from "gscdump/contracts";
|
|
3
|
+
import { TenantCtx } from "@gscdump/contracts";
|
|
4
4
|
/**
|
|
5
5
|
* GSC URL inspection result fields we persist. Mirrors the
|
|
6
6
|
* `searchconsole_v1.Schema$UrlInspectionResult` shape but as plain JSON
|
package/dist/index.d.mts
CHANGED
|
@@ -5,7 +5,7 @@ import { InspectionVerdict, SchedulePolicy, ScheduleState, fixedPolicy, inspecti
|
|
|
5
5
|
import { GscApiRow, IngestOptions, RowAccumulator, RowAccumulatorOptions, createRowAccumulator, toPath, toSumPosition, transformGscRow } from "./ingest.mjs";
|
|
6
6
|
import { a as substituteNamedFiles, i as resolveToSQL, n as ResolvedQuery, t as FILES_PLACEHOLDER } from "./_chunks/planner.mjs";
|
|
7
7
|
import { bindLiterals, formatLiteral } from "./sql-bind.mjs";
|
|
8
|
-
import { Row as Row$1 } from "gscdump/contracts";
|
|
8
|
+
import { Row as Row$1 } from "@gscdump/contracts";
|
|
9
9
|
declare function coerceRow(row: Row$1): Row$1;
|
|
10
10
|
declare function coerceRows(rows: readonly Row$1[]): Row$1[];
|
|
11
11
|
declare const MAX_DAY_BYTES: number;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as ResolvedSQLOptimized, i as ResolvedSQL, n as ExtraQuery, o as ResolverAdapter, r as ResolvedComparisonSQL, s as ResolverOptions, t as ComparisonFilter } from "../_chunks/types.mjs";
|
|
2
2
|
import { LogicalDataset, LogicalDataset as LogicalDataset$1, PlannerCapabilities } from "gscdump/query/plan";
|
|
3
3
|
import { SQL } from "drizzle-orm";
|
|
4
|
-
import { TableName } from "gscdump/contracts";
|
|
4
|
+
import { TableName } from "@gscdump/contracts";
|
|
5
5
|
import { BuilderState, Dimension, FilterInput, InternalFilter, Metric } from "gscdump/query";
|
|
6
6
|
type DimensionSurface = 'api' | 'stored' | 'derived';
|
|
7
7
|
interface DimensionBinding {
|
package/dist/rollups.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { a as DataSource, c as FileSetRef } from "./_chunks/storage.mjs";
|
|
2
2
|
import { t as ColumnDef } from "./_chunks/schema.mjs";
|
|
3
|
-
import { TenantCtx } from "gscdump/contracts";
|
|
3
|
+
import { TenantCtx } from "@gscdump/contracts";
|
|
4
4
|
import * as _$_gscdump_engine_contracts0 from "@gscdump/engine/contracts";
|
|
5
5
|
interface RollupCtx extends TenantCtx {
|
|
6
6
|
/** When the rollup was built. Stamped into payload + filename. */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gscdump/engine",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.11.
|
|
4
|
+
"version": "0.11.5",
|
|
5
5
|
"description": "Append-only Parquet/DuckDB storage engine + planner + adapters for the gscdump pipeline. Node + edge runtimes; opt-in heavy peers.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Harlan Wilton",
|
|
@@ -169,7 +169,8 @@
|
|
|
169
169
|
"dependencies": {
|
|
170
170
|
"drizzle-orm": "^0.45.2",
|
|
171
171
|
"proper-lockfile": "^4.1.2",
|
|
172
|
-
"gscdump": "0.11.
|
|
172
|
+
"gscdump": "0.11.5",
|
|
173
|
+
"@gscdump/contracts": "0.11.5"
|
|
173
174
|
},
|
|
174
175
|
"devDependencies": {
|
|
175
176
|
"@duckdb/duckdb-wasm": "^1.32.0",
|