scrapebadger 0.22.0 → 0.23.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.cts CHANGED
@@ -6497,6 +6497,13 @@ interface Pagination$2 {
6497
6497
  total_pages: number | null;
6498
6498
  /** Total number of results, if known */
6499
6499
  total_results: number | null;
6500
+ /**
6501
+ * True while eBay still offers a next page — the stop signal for bulk
6502
+ * extraction. `total_pages`/`total_results` are null on the completed/sold
6503
+ * grid, and past the last page eBay re-serves that page, so looping "until
6504
+ * empty" alone never terminates.
6505
+ */
6506
+ has_more: boolean | null;
6500
6507
  }
6501
6508
  /**
6502
6509
  * A single supported marketplace (for /markets).
@@ -6588,7 +6595,12 @@ interface SearchResult$1 {
6588
6595
  seller_feedback_score: number | null;
6589
6596
  /** e.g. "eBay Refurbished" */
6590
6597
  program_badge: string | null;
6591
- is_sponsored: boolean;
6598
+ /**
6599
+ * Always null — eBay renders its "Sponsored" badge into every card as
6600
+ * anti-scraping bait, so promoted placements cannot be distinguished
6601
+ * from organic results.
6602
+ */
6603
+ is_sponsored: boolean | null;
6592
6604
  }
6593
6605
  /**
6594
6606
  * The seller summary attached to an item.
package/dist/index.d.ts CHANGED
@@ -6497,6 +6497,13 @@ interface Pagination$2 {
6497
6497
  total_pages: number | null;
6498
6498
  /** Total number of results, if known */
6499
6499
  total_results: number | null;
6500
+ /**
6501
+ * True while eBay still offers a next page — the stop signal for bulk
6502
+ * extraction. `total_pages`/`total_results` are null on the completed/sold
6503
+ * grid, and past the last page eBay re-serves that page, so looping "until
6504
+ * empty" alone never terminates.
6505
+ */
6506
+ has_more: boolean | null;
6500
6507
  }
6501
6508
  /**
6502
6509
  * A single supported marketplace (for /markets).
@@ -6588,7 +6595,12 @@ interface SearchResult$1 {
6588
6595
  seller_feedback_score: number | null;
6589
6596
  /** e.g. "eBay Refurbished" */
6590
6597
  program_badge: string | null;
6591
- is_sponsored: boolean;
6598
+ /**
6599
+ * Always null — eBay renders its "Sponsored" badge into every card as
6600
+ * anti-scraping bait, so promoted placements cannot be distinguished
6601
+ * from organic results.
6602
+ */
6603
+ is_sponsored: boolean | null;
6592
6604
  }
6593
6605
  /**
6594
6606
  * The seller summary attached to an item.
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
9
9
  var WebSocket__default = /*#__PURE__*/_interopDefault(WebSocket);
10
10
 
11
11
  // src/internal/version.ts
12
- var SDK_VERSION = "0.22.0";
12
+ var SDK_VERSION = "0.23.0";
13
13
 
14
14
  // src/internal/exceptions.ts
15
15
  var ScrapeBadgerError = class _ScrapeBadgerError extends Error {