|
36 | 36 | # allow-listed, so to exempt a whole endpoint every one of its params must be |
37 | 37 | # named here (an empty dict exempts nothing). |
38 | 38 | # |
39 | | -# NOTE FOR HUMAN REVIEW: the four endpoints below have NO client method in the |
40 | | -# SDK at all. Exposing them is not a param forward-through — it needs a brand |
41 | | -# new client method (name, return-shape handling, docs, dedicated tests), which |
42 | | -# is a product/design decision out of scope for this param-coverage audit. |
43 | | -# Tracked for follow-up; see PR body. |
| 39 | +# NOTE FOR HUMAN REVIEW: #126 exposed index_price, margin_borrow, and |
| 40 | +# liquidation_stats with dedicated client methods (they are no longer here). |
| 41 | +# listings_historical remains intentionally SDK-excluded — its param is |
| 42 | +# allow-listed below with that rationale. |
44 | 43 | _ALLOWLIST = { |
45 | | - # No client method — needs a new OHLC-style method + response shaping. |
46 | | - "index_price": { |
47 | | - "asset": "no client method yet — needs new Index-Price client", |
48 | | - "from": "no client method yet — needs new Index-Price client", |
49 | | - "to": "no client method yet — needs new Index-Price client", |
50 | | - "interval": "no client method yet — needs new Index-Price client", |
51 | | - }, |
52 | | - # No client method — needs a new Margin-Borrow client. |
53 | | - "margin_borrow": { |
54 | | - "asset": "no client method yet — needs new Margin-Borrow client", |
55 | | - }, |
56 | | - # No client method — needs a new Liquidation.stats() method + shaping. |
57 | | - "liquidation_stats": { |
58 | | - "window": "no client method yet — needs new Liquidation.stats()", |
59 | | - "exchange": "no client method yet — needs new Liquidation.stats()", |
60 | | - "min_volume_usd": "no client method yet — needs new Liquidation.stats()", |
61 | | - }, |
62 | | - # No client method — needs a new Listings.historical() method + shaping. |
| 44 | + # Intentionally SDK-excluded (#126): not surfaced in the public data-api. |
63 | 45 | "listings_historical": { |
64 | | - "refresh": "no client method yet — needs new Listings.historical()", |
| 46 | + "refresh": "intentionally SDK-excluded — not surfaced in the public " |
| 47 | + "data-api (see #126)", |
65 | 48 | }, |
66 | 49 | } |
67 | 50 |
|
|
0 commit comments