@gscdump/engine-gsc-api 0.26.9 → 0.27.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/README.md CHANGED
@@ -21,7 +21,7 @@ npm install @gscdump/engine-gsc-api @gscdump/engine gscdump
21
21
  ```ts
22
22
  import { analyzeMoversFromSource } from '@gscdump/analysis'
23
23
  import { createGscApiQuerySource } from '@gscdump/engine-gsc-api'
24
- import { googleSearchConsole } from 'gscdump'
24
+ import { googleSearchConsole } from 'gscdump/api'
25
25
 
26
26
  const client = googleSearchConsole(auth)
27
27
  const source = createGscApiQuerySource({ client, siteUrl: 'sc-domain:example.com' })
package/dist/index.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { GoogleSearchConsoleClient } from "gscdump";
1
+ import { GoogleSearchConsoleClient } from "gscdump/api";
2
2
  import { BuilderState, Column, Dimension, SearchType } from "gscdump/query";
3
3
  import { SearchType as SearchType$1 } from "@gscdump/engine";
4
4
  import { AnalysisQuerySource } from "@gscdump/engine/source";
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { googleSearchConsole } from "gscdump";
1
+ import { googleSearchConsole } from "gscdump/api";
2
2
  import { between, clicks, date, extractMetricFilters, extractSpecialOperatorFilters, gsc, normalizeFilter } from "gscdump/query";
3
3
  import { assertDimensionsSupported, getDimensionFilters, getFilterDimensions, matchesDimensionFilter, matchesMetricFilter, matchesTopLevelPage, metricValue } from "@gscdump/engine/resolver";
4
4
  import { buildLogicalPlan } from "gscdump/query/plan";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/engine-gsc-api",
3
3
  "type": "module",
4
- "version": "0.26.9",
4
+ "version": "0.27.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,11 +36,11 @@
36
36
  "node": ">=18"
37
37
  },
38
38
  "dependencies": {
39
- "@gscdump/engine": "0.26.9",
40
- "gscdump": "0.26.9"
39
+ "@gscdump/engine": "0.27.0",
40
+ "gscdump": "0.27.0"
41
41
  },
42
42
  "devDependencies": {
43
- "vitest": "^4.1.8"
43
+ "vitest": "^4.1.9"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "obuild",