@gscdump/engine-gsc-api 0.20.2 → 0.21.0

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 CHANGED
@@ -86,7 +86,7 @@ interface RunGscSyncSliceOptions {
86
86
  client: GoogleSearchConsoleClient;
87
87
  siteUrl: string;
88
88
  /** One of the engine sync-fan tables. Drives the dimension list. */
89
- table: 'pages' | 'keywords' | 'countries' | 'devices' | 'page_keywords' | 'hourly_pages';
89
+ table: 'pages' | 'queries' | 'countries' | 'dates' | 'page_queries' | 'hourly_pages';
90
90
  startDate: string;
91
91
  endDate: string;
92
92
  domainFilter?: SyncSliceDomainFilter | null;
package/dist/index.mjs CHANGED
@@ -164,10 +164,10 @@ function createLiveGscSource(opts) {
164
164
  }
165
165
  const DIMENSIONS_BY_TABLE = {
166
166
  pages: ["page", "date"],
167
- keywords: ["query", "date"],
167
+ queries: ["query", "date"],
168
168
  countries: ["country", "date"],
169
- devices: ["device", "date"],
170
- page_keywords: [
169
+ dates: ["device", "date"],
170
+ page_queries: [
171
171
  "page",
172
172
  "query",
173
173
  "date"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/engine-gsc-api",
3
3
  "type": "module",
4
- "version": "0.20.2",
4
+ "version": "0.21.0",
5
5
  "description": "GSC live-API engine adapter — wraps the Search Analytics REST API as an AnalysisQuerySource for typed analyzer dispatch.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -36,8 +36,8 @@
36
36
  "node": ">=18"
37
37
  },
38
38
  "dependencies": {
39
- "@gscdump/engine": "0.20.2",
40
- "gscdump": "0.20.2"
39
+ "@gscdump/engine": "0.21.0",
40
+ "gscdump": "0.21.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "vitest": "^4.1.6"