feat(#9): Add button to filter acquisitions to unlisted stock

This commit is contained in:
Sirttas
2026-07-05 16:39:34 +02:00
parent fbe0861c29
commit 2a145bbbe7
6 changed files with 139 additions and 43 deletions
+24 -16
View File
@@ -233,6 +233,14 @@ paths:
"400":
description: Returned when a line carries a quantity that is not a positive
whole number
/market/history/refresh:
post:
tags:
- market-history-admin-controller
operationId: refresh_1
responses:
"202":
description: Accepted
/logout:
post:
tags:
@@ -649,6 +657,22 @@ paths:
Returned when:
- the types parameter is missing
- a types value is not a numeric id
/market/orders:
get:
tags:
- market
summary: List the open market orders across all characters owned by the authenticated
user
operationId: findAllMarketOrders
responses:
"200":
description: The authenticated user's open market orders
content:
'*/*':
schema:
type: array
items:
$ref: "#/components/schemas/MarketOrderResponse"
/market/history/quartiles:
get:
tags:
@@ -691,22 +715,6 @@ paths:
- the types parameter is missing
- a types value is not a numeric id
- the days parameter is not greater than 0
/market-orders:
get:
tags:
- market-order
summary: List the open market orders across all characters owned by the authenticated
user
operationId: findAllMarketOrders
responses:
"200":
description: The authenticated user's open market orders
content:
'*/*':
schema:
type: array
items:
$ref: "#/components/schemas/MarketOrderResponse"
/ledgers:
get:
tags: