@gscdump/sdk 0.37.1 → 0.37.2

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 +22 -0
  2. package/package.json +5 -5
package/dist/index.mjs CHANGED
@@ -1104,6 +1104,14 @@ const issueDetails = {
1104
1104
  description: "These pages declare a canonical pointing at another page, and Google honoured it. The canonical target is what gets indexed. Usually intentional.",
1105
1105
  fix: "Nothing to fix if the canonical is deliberate. If these pages should rank on their own, make each one self-canonical and give it genuinely distinct content."
1106
1106
  },
1107
+ duplicate_no_canonical: {
1108
+ description: "Google decided these pages duplicate another URL and picked the canonical itself, because the page declared no preference. You did not choose which URL ranks — Google did.",
1109
+ fix: "Add a canonical link to every page. Point it at itself for pages that should rank, or at the preferred URL for genuine duplicates. Leaving it unset hands the decision to Google."
1110
+ },
1111
+ page_removed: {
1112
+ description: "These URLs are suppressed by a request in Search Console's Removals tool. The block is temporary — roughly six months — and then they become eligible again.",
1113
+ fix: "If the removal was intentional, back it with a real signal: a noindex tag, a 404/410, or authentication. The removal tool alone does not keep a page out of Search permanently."
1114
+ },
1107
1115
  unknown_to_google: {
1108
1116
  description: "These URLs exist on your site but Google hasn't discovered them yet. They may be orphaned pages or missing from your sitemap.",
1109
1117
  fix: "Add these URLs to your sitemap. Create internal links to them from well-indexed pages. Submit the sitemap in Google Search Console."
@@ -1255,6 +1263,18 @@ const coverageLabels = {
1255
1263
  "Alternate page with proper canonical tag": {
1256
1264
  short: "Alternate canonical",
1257
1265
  color: "text-muted"
1266
+ },
1267
+ "Duplicate without user-selected canonical": {
1268
+ short: "Duplicate, no canonical",
1269
+ color: "text-warning"
1270
+ },
1271
+ "Duplicate, Google chose different canonical than user": {
1272
+ short: "Canonical overridden",
1273
+ color: "text-warning"
1274
+ },
1275
+ "Blocked by page removal tool": {
1276
+ short: "Removal tool",
1277
+ color: "text-muted"
1258
1278
  }
1259
1279
  };
1260
1280
  function coverageLabel(state) {
@@ -1275,6 +1295,7 @@ const issueGroups = [
1275
1295
  issueTypes: [
1276
1296
  "blocked_robots",
1277
1297
  "canonical_mismatch",
1298
+ "duplicate_no_canonical",
1278
1299
  "sitemap_redirect"
1279
1300
  ]
1280
1301
  },
@@ -1325,6 +1346,7 @@ const issueGroups = [
1325
1346
  "noindex",
1326
1347
  "redirect",
1327
1348
  "alternate_canonical",
1349
+ "page_removed",
1328
1350
  "fragment_url"
1329
1351
  ]
1330
1352
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/sdk",
3
3
  "type": "module",
4
- "version": "0.37.1",
4
+ "version": "0.37.2",
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.37.1",
48
- "@gscdump/contracts": "0.37.1",
49
- "@gscdump/engine": "0.37.1",
50
- "gscdump": "0.37.1"
47
+ "@gscdump/analysis": "0.37.2",
48
+ "@gscdump/contracts": "0.37.2",
49
+ "@gscdump/engine": "0.37.2",
50
+ "gscdump": "0.37.2"
51
51
  },
52
52
  "devDependencies": {
53
53
  "typescript": "^6.0.3",