scrapebadger 0.15.1 → 0.15.2
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 +10 -0
- package/dist/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -6087,6 +6087,8 @@ interface SearchResult$1 {
|
|
|
6087
6087
|
is_auction: boolean;
|
|
6088
6088
|
bids: number | null;
|
|
6089
6089
|
time_left: string | null;
|
|
6090
|
+
/** Auctions: the current high bid (mirrors `price`); null for non-auctions */
|
|
6091
|
+
current_bid: EbayPrice | null;
|
|
6090
6092
|
shipping: string | null;
|
|
6091
6093
|
shipping_cost: EbayPrice | null;
|
|
6092
6094
|
free_shipping: boolean | null;
|
|
@@ -6151,6 +6153,14 @@ interface Item {
|
|
|
6151
6153
|
is_auction: boolean;
|
|
6152
6154
|
bids: number | null;
|
|
6153
6155
|
time_left: string | null;
|
|
6156
|
+
/** Auctions: the current high bid (mirrors `price`); null for non-auctions */
|
|
6157
|
+
current_bid: EbayPrice | null;
|
|
6158
|
+
/** Absolute auction end time, Unix timestamp (float seconds); null for non-auctions */
|
|
6159
|
+
end_time_utc: number | null;
|
|
6160
|
+
/** Absolute auction end time, ISO-8601 Z string; null for non-auctions */
|
|
6161
|
+
end_time_at: string | null;
|
|
6162
|
+
/** BIN price: fixed-price listings (== price) or auction-with-Buy-It-Now; null for pure auctions */
|
|
6163
|
+
buy_it_now_price: EbayPrice | null;
|
|
6154
6164
|
best_offer_enabled: boolean | null;
|
|
6155
6165
|
brand: string | null;
|
|
6156
6166
|
mpn: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -6087,6 +6087,8 @@ interface SearchResult$1 {
|
|
|
6087
6087
|
is_auction: boolean;
|
|
6088
6088
|
bids: number | null;
|
|
6089
6089
|
time_left: string | null;
|
|
6090
|
+
/** Auctions: the current high bid (mirrors `price`); null for non-auctions */
|
|
6091
|
+
current_bid: EbayPrice | null;
|
|
6090
6092
|
shipping: string | null;
|
|
6091
6093
|
shipping_cost: EbayPrice | null;
|
|
6092
6094
|
free_shipping: boolean | null;
|
|
@@ -6151,6 +6153,14 @@ interface Item {
|
|
|
6151
6153
|
is_auction: boolean;
|
|
6152
6154
|
bids: number | null;
|
|
6153
6155
|
time_left: string | null;
|
|
6156
|
+
/** Auctions: the current high bid (mirrors `price`); null for non-auctions */
|
|
6157
|
+
current_bid: EbayPrice | null;
|
|
6158
|
+
/** Absolute auction end time, Unix timestamp (float seconds); null for non-auctions */
|
|
6159
|
+
end_time_utc: number | null;
|
|
6160
|
+
/** Absolute auction end time, ISO-8601 Z string; null for non-auctions */
|
|
6161
|
+
end_time_at: string | null;
|
|
6162
|
+
/** BIN price: fixed-price listings (== price) or auction-with-Buy-It-Now; null for pure auctions */
|
|
6163
|
+
buy_it_now_price: EbayPrice | null;
|
|
6154
6164
|
best_offer_enabled: boolean | null;
|
|
6155
6165
|
brand: string | null;
|
|
6156
6166
|
mpn: string | null;
|
package/package.json
CHANGED