@gscdump/engine-gsc-api 0.28.2 → 0.29.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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +3 -3
package/dist/index.mjs CHANGED
@@ -109,7 +109,7 @@ function createGscApiQuerySource(options) {
109
109
  }
110
110
  };
111
111
  }
112
- const PRO_ONLY_DIMENSIONS = new Set(["queryCanonical", "page_keywords"]);
112
+ const PRO_ONLY_DIMENSIONS = /* @__PURE__ */ new Set(["queryCanonical", "page_keywords"]);
113
113
  function canProxyToGsc(state) {
114
114
  if (state.dimensions.some((d) => PRO_ONLY_DIMENSIONS.has(d))) return false;
115
115
  if (extractMetricFilters(state.filter).length > 0) return false;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/engine-gsc-api",
3
3
  "type": "module",
4
- "version": "0.28.2",
4
+ "version": "0.29.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": "0.28.2",
40
- "@gscdump/engine": "0.28.2"
39
+ "@gscdump/engine": "0.29.0",
40
+ "gscdump": "0.29.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "vitest": "^4.1.9"