@gscdump/engine 0.21.2 → 0.21.3
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -174,7 +174,7 @@ declare function getDateWeight(date: string, now?: Date): DateWeight;
|
|
|
174
174
|
declare const TIER_PRIORITY: Record<TableTier, number>;
|
|
175
175
|
declare const WEIGHT_PRIORITY: Record<DateWeight, number>;
|
|
176
176
|
declare const MAX_GSC_PAGES_R2 = 40;
|
|
177
|
-
declare const ROW_LIMIT_R2 =
|
|
177
|
+
declare const ROW_LIMIT_R2 = 25000;
|
|
178
178
|
declare const MIN_SYNC_IMPRESSIONS = 1;
|
|
179
179
|
declare const MIN_COUNTRY_IMPRESSIONS = 10;
|
|
180
180
|
declare const MAX_SITEMAP_URLS_PER_SITE = 50000;
|
package/dist/index.mjs
CHANGED
|
@@ -468,7 +468,7 @@ const WEIGHT_PRIORITY = {
|
|
|
468
468
|
historical: 2
|
|
469
469
|
};
|
|
470
470
|
const MAX_GSC_PAGES_R2 = 40;
|
|
471
|
-
const ROW_LIMIT_R2 =
|
|
471
|
+
const ROW_LIMIT_R2 = 25e3;
|
|
472
472
|
const MIN_SYNC_IMPRESSIONS = 1;
|
|
473
473
|
const MIN_COUNTRY_IMPRESSIONS = 10;
|
|
474
474
|
const MAX_SITEMAP_URLS_PER_SITE = 5e4;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gscdump/engine",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.21.
|
|
4
|
+
"version": "0.21.3",
|
|
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",
|
|
@@ -180,8 +180,8 @@
|
|
|
180
180
|
"drizzle-orm": "^0.45.2",
|
|
181
181
|
"icebird": "^0.8.5",
|
|
182
182
|
"proper-lockfile": "^4.1.2",
|
|
183
|
-
"@gscdump/contracts": "0.21.
|
|
184
|
-
"gscdump": "0.21.
|
|
183
|
+
"@gscdump/contracts": "0.21.3",
|
|
184
|
+
"gscdump": "0.21.3"
|
|
185
185
|
},
|
|
186
186
|
"devDependencies": {
|
|
187
187
|
"@duckdb/duckdb-wasm": "^1.32.0",
|