Skip to content

Commit 2c7e1c4

Browse files
author
scrapebadger-bot
committed
chore: regenerate SDK from OpenAPI spec
1 parent 7d3bd85 commit 2c7e1c4

4 files changed

Lines changed: 14 additions & 6 deletions

File tree

api/openapi.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4483,7 +4483,15 @@ paths:
44834483
- application/json
44844484
/v1/ebay/completed:
44854485
get:
4486-
description: Search completed/sold listings — eBay's sold-price history.
4486+
description: |-
4487+
Search completed/sold listings — eBay's sold-price history.
4488+
4489+
eBay pads a short result set with "results matching fewer words" and counts
4490+
only the exact ones in ``pagination.total_results``. Results come back in
4491+
eBay's own ranking order with the exact matches first, and each one carries
4492+
``exact_match`` (true/false) so a price series can be built without parsing
4493+
titles. An empty ``results`` with ``total_results: 0`` is eBay's own answer
4494+
and costs 0 credits — a fetch failure is never a 200.
44874495
operationId: ebay_completed_sold_listings
44884496
parameters:
44894497
- description: Search keywords

docs/EBayApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public class Example {
108108
109109
Completed / sold listings
110110

111-
Search completed/sold listings — eBay's sold-price history.
111+
Search completed/sold listings — eBay's sold-price history. eBay pads a short result set with \"results matching fewer words\" and counts only the exact ones in ``pagination.total_results``. Results come back in eBay's own ranking order with the exact matches first, and each one carries ``exact_match`` (true/false) so a price series can be built without parsing titles. An empty ``results`` with ``total_results: 0`` is eBay's own answer and costs 0 credits — a fetch failure is never a 200.
112112

113113
### Example
114114
```java

src/main/java/com/scrapebadger/client/api/EBayApi.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ private okhttp3.Call ebayCompletedSoldListingsValidateBeforeCall(String query, S
377377

378378
/**
379379
* Completed / sold listings
380-
* Search completed/sold listings — eBay's sold-price history.
380+
* Search completed/sold listings — eBay's sold-price history. eBay pads a short result set with \"results matching fewer words\" and counts only the exact ones in ``pagination.total_results``. Results come back in eBay's own ranking order with the exact matches first, and each one carries ``exact_match`` (true/false) so a price series can be built without parsing titles. An empty ``results`` with ``total_results: 0`` is eBay's own answer and costs 0 credits — a fetch failure is never a 200.
381381
* @param query Search keywords (required)
382382
* @param domain Marketplace domain (com, co.uk, de …) (optional, default to com)
383383
* @param categoryId Restrict to a category id (optional)
@@ -406,7 +406,7 @@ public Object ebayCompletedSoldListings(String query, String domain, String cate
406406

407407
/**
408408
* Completed / sold listings
409-
* Search completed/sold listings — eBay's sold-price history.
409+
* Search completed/sold listings — eBay's sold-price history. eBay pads a short result set with \"results matching fewer words\" and counts only the exact ones in ``pagination.total_results``. Results come back in eBay's own ranking order with the exact matches first, and each one carries ``exact_match`` (true/false) so a price series can be built without parsing titles. An empty ``results`` with ``total_results: 0`` is eBay's own answer and costs 0 credits — a fetch failure is never a 200.
410410
* @param query Search keywords (required)
411411
* @param domain Marketplace domain (com, co.uk, de …) (optional, default to com)
412412
* @param categoryId Restrict to a category id (optional)
@@ -436,7 +436,7 @@ public ApiResponse<Object> ebayCompletedSoldListingsWithHttpInfo(String query, S
436436

437437
/**
438438
* Completed / sold listings (asynchronously)
439-
* Search completed/sold listings — eBay&#39;s sold-price history.
439+
* Search completed/sold listings — eBay&#39;s sold-price history. eBay pads a short result set with \&quot;results matching fewer words\&quot; and counts only the exact ones in &#x60;&#x60;pagination.total_results&#x60;&#x60;. Results come back in eBay&#39;s own ranking order with the exact matches first, and each one carries &#x60;&#x60;exact_match&#x60;&#x60; (true/false) so a price series can be built without parsing titles. An empty &#x60;&#x60;results&#x60;&#x60; with &#x60;&#x60;total_results: 0&#x60;&#x60; is eBay&#39;s own answer and costs 0 credits — a fetch failure is never a 200.
440440
* @param query Search keywords (required)
441441
* @param domain Marketplace domain (com, co.uk, de …) (optional, default to com)
442442
* @param categoryId Restrict to a category id (optional)

src/test/java/com/scrapebadger/client/api/EBayApiTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void ebayBrowseACategoryTest() throws ApiException {
5555
/**
5656
* Completed / sold listings
5757
*
58-
* Search completed/sold listings — eBay&#39;s sold-price history.
58+
* Search completed/sold listings — eBay&#39;s sold-price history. eBay pads a short result set with \&quot;results matching fewer words\&quot; and counts only the exact ones in &#x60;&#x60;pagination.total_results&#x60;&#x60;. Results come back in eBay&#39;s own ranking order with the exact matches first, and each one carries &#x60;&#x60;exact_match&#x60;&#x60; (true/false) so a price series can be built without parsing titles. An empty &#x60;&#x60;results&#x60;&#x60; with &#x60;&#x60;total_results: 0&#x60;&#x60; is eBay&#39;s own answer and costs 0 credits — a fetch failure is never a 200.
5959
*
6060
* @throws ApiException if the Api call fails
6161
*/

0 commit comments

Comments
 (0)