From 7012cb134be84cf3534eba1d3cf0ab31a5ecda93 Mon Sep 17 00:00:00 2001 From: martinkersner <2312761+martinkersner@users.noreply.github.com> Date: Tue, 7 Jul 2026 07:31:09 +0000 Subject: [PATCH] chore: sync generated WS files with backend AsyncAPI spec --- datamaxi/_ws_endpoints.py | 8 -------- datamaxi/_ws_models.py | 21 --------------------- 2 files changed, 29 deletions(-) diff --git a/datamaxi/_ws_endpoints.py b/datamaxi/_ws_endpoints.py index 8bd9821..8b2e8a4 100644 --- a/datamaxi/_ws_endpoints.py +++ b/datamaxi/_ws_endpoints.py @@ -35,14 +35,6 @@ "subscribe": False, "unsubscribe": False, }, - "/front/listing/deposit": { - "plan": "front", - "market": None, - "message": "DepositListingMessage", - "param": None, - "subscribe": True, - "unsubscribe": True, - }, "/funding-rate": { "plan": "basic", "market": None, diff --git a/datamaxi/_ws_models.py b/datamaxi/_ws_models.py index b3937de..cac7106 100644 --- a/datamaxi/_ws_models.py +++ b/datamaxi/_ws_models.py @@ -12,27 +12,6 @@ from typing import Any, Dict, List, TypedDict # noqa: F401 -# source: asyncapi:payload -DepositListingMessage = TypedDict( - "DepositListingMessage", - { - "amount": float, - "amount_krw": float, - "amount_usd": float, - "asset": str, - "block_number": int, - "chain": str, - "exchange": str, - "from_address": str, - "timestamp": int, - "to_address": str, - "tx_hash": str, - "type": int, - }, - total=False, -) - - # source: asyncapi:payload ForexMessage = TypedDict( "ForexMessage",