v0.2.6
Write/mutating-endpoint audit fixes (#33), all live-verified against the demo (paper) account.
Fixed
- POST endpoints that serialized their request DTO into the query string now send it as the JSON
body (order.list_active_orders,news.list_news_headlines,
client_preference.save_client_preference_overridden_settings) - they previously failed with
HTTP 415 / 400 "content-type not supported". preference.delete_user_preferencesends itsPreferencesargument as a query parameter (the
body form 400s), matching the earlierdelete_watchlistfix.price_alert.delete_pareturnsbool(the endpoint returns a bare scalartrue).ListNewsHeadlinesRequestDTOfilter fields are now optional, so the request is constructible
with a single filter as documented.
See CHANGELOG.md.