gscdump 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.
package/dist/index.d.mts CHANGED
@@ -740,6 +740,8 @@ declare const INDEXING_ISSUE_FILTERS: {
740
740
  readonly redirect: "coverage_state = 'Page with redirect'";
741
741
  readonly sitemap_redirect: "coverage_state = 'Page with redirect' AND sitemaps IS NOT NULL AND sitemaps != '[]'";
742
742
  readonly alternate_canonical: "coverage_state = 'Alternate page with proper canonical tag'";
743
+ readonly duplicate_no_canonical: "coverage_state = 'Duplicate without user-selected canonical'";
744
+ readonly page_removed: "coverage_state = 'Blocked by page removal tool'";
743
745
  readonly fragment_url: "url LIKE '%#%'";
744
746
  readonly mobile_fail: "mobile_verdict IN ('FAIL', 'PARTIAL')";
745
747
  readonly rich_results_fail: "rich_results_verdict = 'FAIL'";
package/dist/index.mjs CHANGED
@@ -2898,6 +2898,8 @@ const INDEXING_ISSUE_FILTERS = {
2898
2898
  redirect: `coverage_state = 'Page with redirect'`,
2899
2899
  sitemap_redirect: `coverage_state = 'Page with redirect' AND sitemaps IS NOT NULL AND sitemaps != '[]'`,
2900
2900
  alternate_canonical: `coverage_state = 'Alternate page with proper canonical tag'`,
2901
+ duplicate_no_canonical: `coverage_state = 'Duplicate without user-selected canonical'`,
2902
+ page_removed: `coverage_state = 'Blocked by page removal tool'`,
2901
2903
  fragment_url: `url LIKE '%#%'`,
2902
2904
  mobile_fail: `mobile_verdict IN ('FAIL', 'PARTIAL')`,
2903
2905
  rich_results_fail: `rich_results_verdict = 'FAIL'`,
@@ -2925,6 +2927,8 @@ const INDEXING_ISSUE_LABELS = {
2925
2927
  redirect: "Redirect",
2926
2928
  sitemap_redirect: "Sitemap URL redirects",
2927
2929
  alternate_canonical: "Alternate page with canonical",
2930
+ duplicate_no_canonical: "Duplicate, no canonical declared",
2931
+ page_removed: "Removed via removal tool",
2928
2932
  fragment_url: "Fragment URL (#)",
2929
2933
  mobile_fail: "Mobile usability issues",
2930
2934
  rich_results_fail: "Rich results errors",
@@ -2952,6 +2956,8 @@ const INDEXING_ISSUE_SEVERITY = {
2952
2956
  redirect: "info",
2953
2957
  sitemap_redirect: "warning",
2954
2958
  alternate_canonical: "info",
2959
+ duplicate_no_canonical: "warning",
2960
+ page_removed: "info",
2955
2961
  fragment_url: "warning",
2956
2962
  mobile_fail: "warning",
2957
2963
  rich_results_fail: "error",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gscdump",
3
3
  "type": "module",
4
- "version": "0.37.1",
4
+ "version": "0.37.2",
5
5
  "description": "Google Search Console API wrapper with typed query builder, streaming pagination, and SEO analysis functions",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -98,7 +98,7 @@
98
98
  "defu": "^6.1.7",
99
99
  "ofetch": "^1.5.1",
100
100
  "ufo": "^1.6.4",
101
- "@gscdump/contracts": "0.37.1"
101
+ "@gscdump/contracts": "0.37.2"
102
102
  },
103
103
  "devDependencies": {
104
104
  "@googleapis/indexing": "^6.0.1",