gscdump 0.13.0 → 0.14.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/index.d.mts CHANGED
@@ -563,7 +563,8 @@ declare const INDEXING_ISSUE_FILTERS: {
563
563
  readonly very_stale_crawl: "last_crawl_time < datetime('now', '-60 days')";
564
564
  readonly not_indexed: "verdict IN ('FAIL', 'PARTIAL', 'NEUTRAL')";
565
565
  readonly unknown_to_google: "coverage_state = 'URL is unknown to Google'";
566
- readonly crawled_not_indexed: "coverage_state LIKE '%Crawled%not indexed%' OR coverage_state LIKE '%Discovered%not indexed%'";
566
+ readonly crawled_not_indexed: "coverage_state = 'Crawled - currently not indexed'";
567
+ readonly discovered_not_indexed: "coverage_state = 'Discovered - currently not indexed'";
567
568
  readonly not_found: "page_fetch_state = 'NOT_FOUND' OR coverage_state = 'Not found (404)'";
568
569
  readonly soft_404: "page_fetch_state = 'SOFT_404'";
569
570
  readonly server_error: "page_fetch_state = 'SERVER_ERROR'";
package/dist/index.mjs CHANGED
@@ -864,7 +864,8 @@ const INDEXING_ISSUE_FILTERS = {
864
864
  very_stale_crawl: `last_crawl_time < datetime('now', '-60 days')`,
865
865
  not_indexed: `verdict IN ('FAIL', 'PARTIAL', 'NEUTRAL')`,
866
866
  unknown_to_google: `coverage_state = 'URL is unknown to Google'`,
867
- crawled_not_indexed: `coverage_state LIKE '%Crawled%not indexed%' OR coverage_state LIKE '%Discovered%not indexed%'`,
867
+ crawled_not_indexed: `coverage_state = 'Crawled - currently not indexed'`,
868
+ discovered_not_indexed: `coverage_state = 'Discovered - currently not indexed'`,
868
869
  not_found: `page_fetch_state = 'NOT_FOUND' OR coverage_state = 'Not found (404)'`,
869
870
  soft_404: `page_fetch_state = 'SOFT_404'`,
870
871
  server_error: `page_fetch_state = 'SERVER_ERROR'`,
@@ -884,6 +885,7 @@ const INDEXING_ISSUE_LABELS = {
884
885
  not_indexed: "Not indexed",
885
886
  unknown_to_google: "Unknown to Google",
886
887
  crawled_not_indexed: "Crawled but not indexed",
888
+ discovered_not_indexed: "Discovered but not indexed",
887
889
  not_found: "404 Not Found",
888
890
  soft_404: "Soft 404",
889
891
  server_error: "Server error",
@@ -903,6 +905,7 @@ const INDEXING_ISSUE_SEVERITY = {
903
905
  not_indexed: "error",
904
906
  unknown_to_google: "warning",
905
907
  crawled_not_indexed: "error",
908
+ discovered_not_indexed: "warning",
906
909
  not_found: "error",
907
910
  soft_404: "error",
908
911
  server_error: "error",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gscdump",
3
3
  "type": "module",
4
- "version": "0.13.0",
4
+ "version": "0.14.0",
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",
@@ -108,7 +108,7 @@
108
108
  "defu": "^6.1.7",
109
109
  "ofetch": "^1.5.1",
110
110
  "ufo": "^1.6.4",
111
- "@gscdump/contracts": "0.13.0"
111
+ "@gscdump/contracts": "0.13.1"
112
112
  },
113
113
  "devDependencies": {
114
114
  "@googleapis/indexing": "^6.0.1",