mcp-scraper 0.15.0 → 0.15.1

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.
@@ -27642,7 +27642,7 @@ var PACKAGE_VERSION;
27642
27642
  var init_version = __esm({
27643
27643
  "src/version.ts"() {
27644
27644
  "use strict";
27645
- PACKAGE_VERSION = "0.15.0";
27645
+ PACKAGE_VERSION = "0.15.1";
27646
27646
  }
27647
27647
  });
27648
27648
 
@@ -39057,6 +39057,10 @@ async function collectConnectedDataExport(args) {
39057
39057
  recordBytes += pageBytes;
39058
39058
  cursor = page.nextCursor ?? void 0;
39059
39059
  continuationCursor = page.nextCursor ?? null;
39060
+ if (page.complete === false && typeof beforePageCursor === "string" && page.nextCursor === beforePageCursor) {
39061
+ warnings.add("The provider could not advance this page after bounded retries. Its records and warnings were included once; retry this exact continuation later.");
39062
+ break;
39063
+ }
39060
39064
  if (page.complete || page.nextCursor === null || page.nextCursor === void 0) {
39061
39065
  complete = true;
39062
39066
  continuationCursor = null;