scrapebadger 0.20.0 → 0.21.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
@@ -6566,6 +6566,10 @@ interface SearchResult$1 {
6566
6566
  location: string | null;
6567
6567
  returns: string | null;
6568
6568
  sold_count: number | null;
6569
+ /** Sale date text as rendered by eBay, e.g. "2 Jul 2026" (completed/sold cards; localized on non-English markets) */
6570
+ sold_date: string | null;
6571
+ /** Best-effort ISO date, e.g. "2026-07-02"; null when the market's format isn't English */
6572
+ sold_date_at: string | null;
6569
6573
  watchers: number | null;
6570
6574
  coupon: string | null;
6571
6575
  rating: number | null;
@@ -6626,9 +6630,11 @@ interface Item {
6626
6630
  time_left: string | null;
6627
6631
  /** Auctions: the current high bid (mirrors `price`); null for non-auctions */
6628
6632
  current_bid: EbayPrice | null;
6629
- /** Absolute auction end time, Unix timestamp (float seconds); null for non-auctions */
6633
+ /** Listing has closed (sold / ended), any buying format */
6634
+ is_ended: boolean;
6635
+ /** Listing end: auction close / sold time, Unix timestamp (float seconds); null for active fixed-price listings */
6630
6636
  end_time_utc: number | null;
6631
- /** Absolute auction end time, ISO-8601 Z string; null for non-auctions */
6637
+ /** Listing end: auction close / sold time, ISO-8601 Z string; null for active fixed-price listings */
6632
6638
  end_time_at: string | null;
6633
6639
  /** BIN price: fixed-price listings (== price) or auction-with-Buy-It-Now; null for pure auctions */
6634
6640
  buy_it_now_price: EbayPrice | null;
package/dist/index.d.ts CHANGED
@@ -6566,6 +6566,10 @@ interface SearchResult$1 {
6566
6566
  location: string | null;
6567
6567
  returns: string | null;
6568
6568
  sold_count: number | null;
6569
+ /** Sale date text as rendered by eBay, e.g. "2 Jul 2026" (completed/sold cards; localized on non-English markets) */
6570
+ sold_date: string | null;
6571
+ /** Best-effort ISO date, e.g. "2026-07-02"; null when the market's format isn't English */
6572
+ sold_date_at: string | null;
6569
6573
  watchers: number | null;
6570
6574
  coupon: string | null;
6571
6575
  rating: number | null;
@@ -6626,9 +6630,11 @@ interface Item {
6626
6630
  time_left: string | null;
6627
6631
  /** Auctions: the current high bid (mirrors `price`); null for non-auctions */
6628
6632
  current_bid: EbayPrice | null;
6629
- /** Absolute auction end time, Unix timestamp (float seconds); null for non-auctions */
6633
+ /** Listing has closed (sold / ended), any buying format */
6634
+ is_ended: boolean;
6635
+ /** Listing end: auction close / sold time, Unix timestamp (float seconds); null for active fixed-price listings */
6630
6636
  end_time_utc: number | null;
6631
- /** Absolute auction end time, ISO-8601 Z string; null for non-auctions */
6637
+ /** Listing end: auction close / sold time, ISO-8601 Z string; null for active fixed-price listings */
6632
6638
  end_time_at: string | null;
6633
6639
  /** BIN price: fixed-price listings (== price) or auction-with-Buy-It-Now; null for pure auctions */
6634
6640
  buy_it_now_price: EbayPrice | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scrapebadger",
3
- "version": "0.20.0",
3
+ "version": "0.21.0",
4
4
  "description": "Official Node.js SDK for ScrapeBadger - Async web scraping APIs for Twitter, Google, Vinted, Reddit, and more",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",