@gscdump/analysis 0.28.3 → 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.
package/dist/errors.mjs CHANGED
@@ -46,7 +46,7 @@ const analysisErrors = {
46
46
  };
47
47
  }
48
48
  };
49
- const ANALYSIS_ERROR_KINDS = new Set([
49
+ const ANALYSIS_ERROR_KINDS = /* @__PURE__ */ new Set([
50
50
  "missing-report-param",
51
51
  "missing-comparison-window",
52
52
  "missing-brand-terms",
package/dist/index.mjs CHANGED
@@ -193,7 +193,7 @@ function mergePriorityActions(all) {
193
193
  });
194
194
  continue;
195
195
  }
196
- const mergedSources = [...new Set([...existing.sources, ...a.sources])];
196
+ const mergedSources = [.../* @__PURE__ */ new Set([...existing.sources, ...a.sources])];
197
197
  const preferNew = a.severity > existing.severity;
198
198
  const mergedEffort = EFFORT_RANK[a.effort] < EFFORT_RANK[existing.effort] ? a.effort : existing.effort;
199
199
  byId.set(a.id, {
@@ -711,7 +711,7 @@ const analysisErrors = {
711
711
  };
712
712
  }
713
713
  };
714
- const ANALYSIS_ERROR_KINDS = new Set([
714
+ const ANALYSIS_ERROR_KINDS = /* @__PURE__ */ new Set([
715
715
  "missing-report-param",
716
716
  "missing-comparison-window",
717
717
  "missing-brand-terms",
@@ -2621,7 +2621,7 @@ const SYNONYMS = {
2621
2621
  online: "",
2622
2622
  free: ""
2623
2623
  };
2624
- const NO_STRIP_S = new Set([
2624
+ const NO_STRIP_S = /* @__PURE__ */ new Set([
2625
2625
  "css",
2626
2626
  "js",
2627
2627
  "ts",
@@ -1245,7 +1245,7 @@ function mergePriorityActions(all) {
1245
1245
  });
1246
1246
  continue;
1247
1247
  }
1248
- const mergedSources = [...new Set([...existing.sources, ...a.sources])];
1248
+ const mergedSources = [.../* @__PURE__ */ new Set([...existing.sources, ...a.sources])];
1249
1249
  const preferNew = a.severity > existing.severity;
1250
1250
  const mergedEffort = EFFORT_RANK[a.effort] < EFFORT_RANK[existing.effort] ? a.effort : existing.effort;
1251
1251
  byId.set(a.id, {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/analysis",
3
3
  "type": "module",
4
- "version": "0.28.3",
4
+ "version": "0.29.0",
5
5
  "description": "GSC analyzers — striking-distance, opportunity, movers, decay, brand, clustering, concentration, seasonality. Pure row-based + DuckDB-native.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -75,9 +75,9 @@
75
75
  },
76
76
  "dependencies": {
77
77
  "drizzle-orm": "1.0.0-rc.3",
78
- "@gscdump/engine": "0.28.3",
79
- "@gscdump/engine-gsc-api": "0.28.3",
80
- "gscdump": "0.28.3"
78
+ "@gscdump/engine": "0.29.0",
79
+ "@gscdump/engine-gsc-api": "0.29.0",
80
+ "gscdump": "0.29.0"
81
81
  },
82
82
  "devDependencies": {
83
83
  "vitest": "^4.1.9"