gscdump 0.13.1 → 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 +2 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
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
|
|
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
|
|
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