@gscdump/sdk 0.26.1 → 0.26.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 CHANGED
@@ -201,7 +201,7 @@ interface EntityDailyTimeseriesQuery extends ArchetypeQueryBase {
201
201
  */
202
202
  interface EntityDailySparklineQuery extends ArchetypeQueryBase {
203
203
  archetype: 'entity-daily-sparkline';
204
- dimension: Extract<Dimension, 'page' | 'query'>;
204
+ dimension: Extract<Dimension, 'page' | 'query' | 'queryCanonical'>;
205
205
  /** Entity values already resolved by the resolver layer. */
206
206
  entities: readonly string[];
207
207
  /** Single metric the sparkline plots. */
package/dist/index.mjs CHANGED
@@ -1847,6 +1847,11 @@ function classifySearchConsoleStage(input) {
1847
1847
  source: "performance"
1848
1848
  }]);
1849
1849
  if (isGrowing) return stage("healthy_growth_ready", [
1850
+ ...hardBlocks > 0 ? [{
1851
+ label: "Critical blockers",
1852
+ value: formatCount(hardBlocks),
1853
+ source: "indexing"
1854
+ }] : [],
1850
1855
  ...clicks90d != null ? [{
1851
1856
  label: "Clicks 90d",
1852
1857
  value: `+${clicks90d.toFixed(1)}%`,
@@ -1932,7 +1937,7 @@ function classifySearchConsoleStage(input) {
1932
1937
  source: "indexing"
1933
1938
  }, {
1934
1939
  label: "Critical blockers",
1935
- value: "0",
1940
+ value: formatCount(hardBlocks),
1936
1941
  source: "indexing"
1937
1942
  }]);
1938
1943
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/sdk",
3
3
  "type": "module",
4
- "version": "0.26.1",
4
+ "version": "0.26.3",
5
5
  "description": "Consumer SDK for hosted gscdump.com integrations.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -44,10 +44,10 @@
44
44
  "date-fns": "^4.4.0",
45
45
  "ofetch": "^1.5.1",
46
46
  "zod": "^4.4.3",
47
- "@gscdump/analysis": "0.26.1",
48
- "@gscdump/engine": "0.26.1",
49
- "gscdump": "0.26.1",
50
- "@gscdump/contracts": "0.26.1"
47
+ "@gscdump/analysis": "0.26.3",
48
+ "@gscdump/contracts": "0.26.3",
49
+ "@gscdump/engine": "0.26.3",
50
+ "gscdump": "0.26.3"
51
51
  },
52
52
  "devDependencies": {
53
53
  "typescript": "^6.0.3",