whitebit-python-sdk 1.1.0__tar.gz → 1.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (474) hide show
  1. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/HISTORY.txt +7 -0
  2. {whitebit_python_sdk-1.1.0/src/whitebit_python_sdk.egg-info → whitebit_python_sdk-1.1.2}/PKG-INFO +1 -1
  3. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/pyproject.toml +1 -1
  4. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/__init__.py +15 -13
  5. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/client.py +34 -34
  6. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/codes/client.py +16 -16
  7. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/client.py +86 -86
  8. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/raw_client.py +14 -14
  9. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/cancel_oco_order_response_stop_loss.py +5 -15
  10. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/cancel_oco_order_response_take_profit.py +5 -17
  11. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_bulk_order_request_orders_item.py +1 -3
  12. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_bulk_order_response_item_result.py +5 -15
  13. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_limit_order_response.py +5 -15
  14. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_market_order_response.py +5 -15
  15. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_oco_order_response_stop_loss.py +5 -15
  16. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_oco_order_response_take_profit.py +5 -15
  17. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_stop_limit_order_response.py +5 -15
  18. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_trigger_market_order_response.py +5 -15
  19. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_conditional_orders_response_records_item_oco_stop_loss.py +1 -1
  20. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_conditional_orders_response_records_item_oco_take_profit.py +1 -1
  21. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_conditional_orders_response_records_item_oto_conditional_order.py +2 -2
  22. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_oco_orders_response_item_stop_loss.py +5 -5
  23. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_oco_orders_response_item_take_profit.py +5 -5
  24. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/client_wrapper.py +5 -5
  25. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/credit_line/client.py +4 -4
  26. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_fixed/client.py +20 -20
  27. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_flex/client.py +32 -32
  28. whitebit_python_sdk-1.1.2/src/whitebit/crypto_lending_flex/types/close_flex_investment_response_data.py +22 -0
  29. whitebit_python_sdk-1.1.2/src/whitebit/crypto_lending_flex/types/create_flex_investment_response_data.py +22 -0
  30. whitebit_python_sdk-1.1.2/src/whitebit/crypto_lending_flex/types/withdraw_from_flex_investment_response_data.py +22 -0
  31. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/client.py +40 -40
  32. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/raw_client.py +20 -20
  33. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/environment.py +3 -3
  34. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/fees/client.py +4 -4
  35. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/jwt/client.py +8 -8
  36. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/main_account/client.py +8 -8
  37. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/main_account/raw_client.py +2 -2
  38. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/market_fee/client.py +8 -8
  39. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/client.py +44 -44
  40. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/__init__.py +10 -8
  41. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/client.py +67 -65
  42. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/raw_client.py +17 -17
  43. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/types/__init__.py +13 -9
  44. whitebit_python_sdk-1.1.2/src/whitebit/public_api_v4/types/get_api_v4public_funding_history_market_response_item.py +42 -0
  45. whitebit_python_sdk-1.1.2/src/whitebit/public_api_v4/types/get_api_v4public_markets_response_item.py +88 -0
  46. whitebit_python_sdk-1.1.2/src/whitebit/public_api_v4/types/get_api_v4public_mining_pool_response_item.py +20 -0
  47. whitebit_python_sdk-1.1.2/src/whitebit/public_api_v4/types/get_api_v4public_mining_pool_response_item_data.py +34 -0
  48. whitebit_python_sdk-1.1.2/src/whitebit/public_api_v4/types/get_api_v4public_mining_pool_response_item_data_blocks_item.py +20 -0
  49. whitebit_python_sdk-1.1.0/src/whitebit/public_api_v4/types/get_api_v4public_mining_pool_response_data_last7days_hash_rate_item.py → whitebit_python_sdk-1.1.2/src/whitebit/public_api_v4/types/get_api_v4public_mining_pool_response_item_data_last7days_hash_rate_item.py +1 -1
  50. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/types/get_api_v4public_platform_status_response.py +3 -2
  51. whitebit_python_sdk-1.1.2/src/whitebit/public_api_v4/types/get_api_v4public_platform_status_response_status.py +7 -0
  52. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/types/get_api_v4public_ticker_response_value.py +1 -5
  53. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/types/get_api_v4public_trades_market_response_item.py +6 -10
  54. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/raw_client.py +2 -2
  55. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/client.py +128 -128
  56. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/raw_client.py +90 -90
  57. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/get_executed_order_history_response_value_item.py +2 -4
  58. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/get_order_deals_response_records_item.py +1 -3
  59. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/get_order_history_response_value_item.py +4 -12
  60. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/client.py +36 -36
  61. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/types/sub_account_transfer_response.py +1 -5
  62. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account_api_keys/client.py +32 -32
  63. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/transfer/client.py +4 -4
  64. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/bulk_order_item.py +1 -1
  65. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/flex_investment_history.py +1 -3
  66. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_order_request.py +1 -5
  67. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/order_response.py +5 -15
  68. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/sub_account_transfer.py +1 -3
  69. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/transaction_history.py +2 -6
  70. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/withdraw/client.py +32 -32
  71. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/withdraw/raw_client.py +24 -24
  72. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2/src/whitebit_python_sdk.egg-info}/PKG-INFO +1 -1
  73. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit_python_sdk.egg-info/SOURCES.txt +6 -11
  74. whitebit_python_sdk-1.1.0/examples/collateral_examples.py +0 -62
  75. whitebit_python_sdk-1.1.0/examples/main_examples.py +0 -40
  76. whitebit_python_sdk-1.1.0/examples/trade_examples.py +0 -79
  77. whitebit_python_sdk-1.1.0/examples/ws_example.py +0 -47
  78. whitebit_python_sdk-1.1.0/requirements.txt +0 -4
  79. whitebit_python_sdk-1.1.0/src/whitebit/crypto_lending_flex/types/close_flex_investment_response_data.py +0 -26
  80. whitebit_python_sdk-1.1.0/src/whitebit/crypto_lending_flex/types/create_flex_investment_response_data.py +0 -26
  81. whitebit_python_sdk-1.1.0/src/whitebit/crypto_lending_flex/types/withdraw_from_flex_investment_response_data.py +0 -26
  82. whitebit_python_sdk-1.1.0/src/whitebit/public_api_v4/types/get_api_v4public_funding_history_market_response_item.py +0 -52
  83. whitebit_python_sdk-1.1.0/src/whitebit/public_api_v4/types/get_api_v4public_markets_response_item.py +0 -110
  84. whitebit_python_sdk-1.1.0/src/whitebit/public_api_v4/types/get_api_v4public_mining_pool_response.py +0 -20
  85. whitebit_python_sdk-1.1.0/src/whitebit/public_api_v4/types/get_api_v4public_mining_pool_response_data.py +0 -39
  86. whitebit_python_sdk-1.1.0/src/whitebit/public_api_v4/types/get_api_v4public_mining_pool_response_data_blocks_item.py +0 -22
  87. whitebit_python_sdk-1.1.0/tests/test.py +0 -128
  88. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/LICENSE +0 -0
  89. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/MANIFEST.in +0 -0
  90. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/README.md +0 -0
  91. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/setup.cfg +0 -0
  92. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/codes/__init__.py +0 -0
  93. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/codes/raw_client.py +0 -0
  94. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/codes/types/__init__.py +0 -0
  95. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/codes/types/apply_code_response.py +0 -0
  96. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/codes/types/create_code_response.py +0 -0
  97. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/codes/types/get_codes_history_response.py +0 -0
  98. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/codes/types/get_my_codes_response.py +0 -0
  99. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/__init__.py +0 -0
  100. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/__init__.py +0 -0
  101. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/cancel_oco_order_response.py +0 -0
  102. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/cancel_oco_order_response_stop_loss_activation_condition.py +0 -0
  103. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/cancel_oco_order_response_stop_loss_side.py +0 -0
  104. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/cancel_oco_order_response_take_profit_side.py +0 -0
  105. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/change_collateral_account_leverage_response.py +0 -0
  106. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/close_position_request_position_side.py +0 -0
  107. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/collateral_account_balance_summary_response_item.py +0 -0
  108. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/collateral_account_summary_response.py +0 -0
  109. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_bulk_order_request_orders_item_position_side.py +0 -0
  110. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_bulk_order_request_orders_item_side.py +0 -0
  111. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_bulk_order_response_item.py +0 -0
  112. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_bulk_order_response_item_error.py +0 -0
  113. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_bulk_order_response_item_result_position_side.py +0 -0
  114. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_bulk_order_response_item_result_side.py +0 -0
  115. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_bulk_order_response_item_result_status.py +0 -0
  116. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_limit_order_request_position_side.py +0 -0
  117. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_limit_order_request_side.py +0 -0
  118. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_limit_order_response_oto.py +0 -0
  119. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_limit_order_response_position_side.py +0 -0
  120. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_limit_order_response_side.py +0 -0
  121. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_limit_order_response_status.py +0 -0
  122. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_market_order_request_position_side.py +0 -0
  123. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_market_order_request_side.py +0 -0
  124. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_market_order_response_oto.py +0 -0
  125. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_market_order_response_position_side.py +0 -0
  126. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_market_order_response_side.py +0 -0
  127. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_market_order_response_status.py +0 -0
  128. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_oco_order_request_side.py +0 -0
  129. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_oco_order_response.py +0 -0
  130. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_oco_order_response_stop_loss_activation_condition.py +0 -0
  131. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_oco_order_response_stop_loss_position_side.py +0 -0
  132. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_oco_order_response_stop_loss_side.py +0 -0
  133. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_oco_order_response_stop_loss_status.py +0 -0
  134. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_oco_order_response_take_profit_position_side.py +0 -0
  135. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_oco_order_response_take_profit_side.py +0 -0
  136. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_oco_order_response_take_profit_status.py +0 -0
  137. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_stop_limit_order_request_position_side.py +0 -0
  138. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_stop_limit_order_request_side.py +0 -0
  139. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_stop_limit_order_response_oto.py +0 -0
  140. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_stop_limit_order_response_position_side.py +0 -0
  141. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_stop_limit_order_response_side.py +0 -0
  142. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_stop_limit_order_response_status.py +0 -0
  143. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_trigger_market_order_request_position_side.py +0 -0
  144. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_trigger_market_order_request_side.py +0 -0
  145. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_trigger_market_order_response_oto.py +0 -0
  146. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_trigger_market_order_response_position_side.py +0 -0
  147. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_trigger_market_order_response_side.py +0 -0
  148. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/create_collateral_trigger_market_order_response_status.py +0 -0
  149. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_collateral_hedge_mode_response.py +0 -0
  150. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_conditional_orders_response.py +0 -0
  151. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_conditional_orders_response_records_item.py +0 -0
  152. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_conditional_orders_response_records_item_oco.py +0 -0
  153. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_conditional_orders_response_records_item_oco_stop_loss_position_side.py +0 -0
  154. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_conditional_orders_response_records_item_oco_take_profit_position_side.py +0 -0
  155. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_conditional_orders_response_records_item_oto.py +0 -0
  156. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_conditional_orders_response_records_item_oto_conditional_order_position_side.py +0 -0
  157. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_funding_history_response.py +0 -0
  158. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_funding_history_response_records_item.py +0 -0
  159. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_oco_orders_response_item.py +0 -0
  160. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_oco_orders_response_item_stop_loss_activation_condition.py +0 -0
  161. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_oco_orders_response_item_stop_loss_side.py +0 -0
  162. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_oco_orders_response_item_take_profit_side.py +0 -0
  163. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_open_positions_response_item.py +0 -0
  164. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_open_positions_response_item_liquidation_state.py +0 -0
  165. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_open_positions_response_item_position_side.py +0 -0
  166. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_open_positions_response_item_tpsl.py +0 -0
  167. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_positions_history_response_item.py +0 -0
  168. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_positions_history_response_item_liquidation_state.py +0 -0
  169. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_positions_history_response_item_order_detail.py +0 -0
  170. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/collateral_trading/types/get_positions_history_response_item_position_side.py +0 -0
  171. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/__init__.py +0 -0
  172. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/api_error.py +0 -0
  173. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/datetime_utils.py +0 -0
  174. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/file.py +0 -0
  175. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/http_client.py +0 -0
  176. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/http_response.py +0 -0
  177. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/jsonable_encoder.py +0 -0
  178. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/pydantic_utilities.py +0 -0
  179. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/query_encoder.py +0 -0
  180. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/remove_none_from_dict.py +0 -0
  181. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/request_options.py +0 -0
  182. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/core/serialization.py +0 -0
  183. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/credit_line/__init__.py +0 -0
  184. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/credit_line/raw_client.py +0 -0
  185. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_fixed/__init__.py +0 -0
  186. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_fixed/raw_client.py +0 -0
  187. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_fixed/types/__init__.py +0 -0
  188. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_fixed/types/create_fixed_investment_response.py +0 -0
  189. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_fixed/types/get_fixed_investments_history_response.py +0 -0
  190. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_fixed/types/get_interest_payment_history_response.py +0 -0
  191. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_flex/__init__.py +0 -0
  192. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_flex/raw_client.py +0 -0
  193. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_flex/types/__init__.py +0 -0
  194. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_flex/types/close_flex_investment_response.py +0 -0
  195. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_flex/types/create_flex_investment_response.py +0 -0
  196. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_flex/types/get_flex_investment_history_response.py +0 -0
  197. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_flex/types/get_flex_payment_history_response.py +0 -0
  198. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_flex/types/get_user_flex_investments_response.py +0 -0
  199. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_flex/types/update_flex_auto_reinvestment_response.py +0 -0
  200. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/crypto_lending_flex/types/withdraw_from_flex_investment_response.py +0 -0
  201. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/__init__.py +0 -0
  202. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/__init__.py +0 -0
  203. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/create_new_address_request_type.py +0 -0
  204. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/create_new_address_response.py +0 -0
  205. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/create_new_address_response_account.py +0 -0
  206. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/create_new_address_response_required.py +0 -0
  207. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/create_new_address_response_required_flex_fee.py +0 -0
  208. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/get_deposit_address_response.py +0 -0
  209. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/get_deposit_address_response_account.py +0 -0
  210. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/get_deposit_address_response_required.py +0 -0
  211. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/get_deposit_address_response_required_flex_fee.py +0 -0
  212. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/get_fiat_deposit_url_request_customer.py +0 -0
  213. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/get_fiat_deposit_url_request_customer_address.py +0 -0
  214. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/get_fiat_deposit_url_response.py +0 -0
  215. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/deposit/types/refund_deposit_response.py +0 -0
  216. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/errors/__init__.py +0 -0
  217. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/errors/bad_request_error.py +0 -0
  218. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/errors/internal_server_error.py +0 -0
  219. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/errors/not_found_error.py +0 -0
  220. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/errors/service_unavailable_error.py +0 -0
  221. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/errors/unauthorized_error.py +0 -0
  222. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/errors/unprocessable_entity_error.py +0 -0
  223. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/fees/__init__.py +0 -0
  224. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/fees/raw_client.py +0 -0
  225. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/jwt/__init__.py +0 -0
  226. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/jwt/raw_client.py +0 -0
  227. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/jwt/types/__init__.py +0 -0
  228. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/jwt/types/get_web_socket_token_response.py +0 -0
  229. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/jwt/types/issue_jwt_token_response.py +0 -0
  230. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/jwt/types/issue_jwt_token_response_data.py +0 -0
  231. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/main_account/__init__.py +0 -0
  232. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/main_account/types/__init__.py +0 -0
  233. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/main_account/types/get_deposit_withdraw_history_response.py +0 -0
  234. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/main_account/types/get_main_balance_response_value.py +0 -0
  235. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/market_fee/__init__.py +0 -0
  236. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/market_fee/raw_client.py +0 -0
  237. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/market_fee/types/__init__.py +0 -0
  238. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/market_fee/types/get_all_market_fees_response.py +0 -0
  239. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/market_fee/types/get_market_fee_response.py +0 -0
  240. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/__init__.py +0 -0
  241. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/raw_client.py +0 -0
  242. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/__init__.py +0 -0
  243. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/create_mining_account_response.py +0 -0
  244. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/create_mining_account_response_data.py +0 -0
  245. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/create_mining_watcher_link_request_live_until.py +0 -0
  246. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/create_mining_watcher_link_request_permissions_item.py +0 -0
  247. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/create_mining_watcher_link_response.py +0 -0
  248. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/create_mining_watcher_link_response_data.py +0 -0
  249. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_accounts_response.py +0 -0
  250. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_accounts_response_data_item.py +0 -0
  251. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_hashrate_request_interval.py +0 -0
  252. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_hashrate_response.py +0 -0
  253. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_hashrate_response_data.py +0 -0
  254. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_hashrate_response_data_hashrate_item.py +0 -0
  255. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_miner_info_response.py +0 -0
  256. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_miner_info_response_data.py +0 -0
  257. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_miner_info_response_data_stratum_item.py +0 -0
  258. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_payout_destination_response.py +0 -0
  259. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_payout_destination_response_payout_destination.py +0 -0
  260. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_rewards_response.py +0 -0
  261. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_worker_hashrate_request_interval.py +0 -0
  262. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_worker_hashrate_response.py +0 -0
  263. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_worker_hashrate_response_data.py +0 -0
  264. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_worker_hashrate_response_data_hashrates_item.py +0 -0
  265. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_worker_names_response.py +0 -0
  266. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/get_mining_worker_names_response_data.py +0 -0
  267. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/list_mining_watcher_links_response.py +0 -0
  268. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/list_mining_watcher_links_response_data_item.py +0 -0
  269. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/set_mining_payout_destination_request_destination.py +0 -0
  270. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/set_mining_payout_destination_response.py +0 -0
  271. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/mining_pool/types/set_mining_payout_destination_response_payout_destination.py +0 -0
  272. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/types/get_api_v4public_futures_response.py +0 -0
  273. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/types/get_api_v4public_markets_response_item_type.py +0 -0
  274. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/types/get_api_v4public_time_response.py +0 -0
  275. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/types/get_api_v4public_trades_market_request_type.py +0 -0
  276. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/public_api_v4/types/get_api_v4public_trades_market_response_item_type.py +0 -0
  277. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/__init__.py +0 -0
  278. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/__init__.py +0 -0
  279. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/cancel_all_orders_request_type_item.py +0 -0
  280. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/get_executed_order_history_response_value_item_side.py +0 -0
  281. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/get_kill_switch_status_response_item.py +0 -0
  282. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/get_kill_switch_status_response_item_types_item.py +0 -0
  283. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/get_order_deals_response.py +0 -0
  284. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/get_order_history_response_value_item_side.py +0 -0
  285. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/limit_order_request_side.py +0 -0
  286. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/limit_order_request_stp.py +0 -0
  287. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/set_kill_switch_request_types_item.py +0 -0
  288. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/set_kill_switch_response.py +0 -0
  289. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/set_kill_switch_response_types_item.py +0 -0
  290. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/stop_limit_order_request_side.py +0 -0
  291. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/stop_limit_order_request_stp.py +0 -0
  292. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/stop_market_order_request_side.py +0 -0
  293. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/stop_market_order_request_stp.py +0 -0
  294. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/spot_trading/types/trade_account_balance_response_value.py +0 -0
  295. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/__init__.py +0 -0
  296. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/raw_client.py +0 -0
  297. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/types/__init__.py +0 -0
  298. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/types/create_sub_account_request_permissions.py +0 -0
  299. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/types/edit_sub_account_request_permissions.py +0 -0
  300. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/types/get_sub_account_balances_response_value_item.py +0 -0
  301. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/types/get_sub_account_transfer_history_request_direction.py +0 -0
  302. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/types/get_sub_account_transfer_history_response.py +0 -0
  303. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/types/list_sub_accounts_response.py +0 -0
  304. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account/types/sub_account_transfer_request_direction.py +0 -0
  305. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account_api_keys/__init__.py +0 -0
  306. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account_api_keys/raw_client.py +0 -0
  307. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account_api_keys/types/__init__.py +0 -0
  308. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account_api_keys/types/create_sub_account_api_key_ip_address_response.py +0 -0
  309. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account_api_keys/types/delete_sub_account_api_key_ip_address_response.py +0 -0
  310. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account_api_keys/types/edit_sub_account_api_key_request_urls_item.py +0 -0
  311. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account_api_keys/types/list_sub_account_api_key_ip_addresses_response.py +0 -0
  312. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/sub_account_api_keys/types/list_sub_account_api_keys_response.py +0 -0
  313. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/transfer/__init__.py +0 -0
  314. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/transfer/raw_client.py +0 -0
  315. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/transfer/types/__init__.py +0 -0
  316. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/transfer/types/transfer_between_balances_request_from.py +0 -0
  317. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/transfer/types/transfer_between_balances_request_method.py +0 -0
  318. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/transfer/types/transfer_between_balances_request_to.py +0 -0
  319. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/__init__.py +0 -0
  320. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/asset.py +0 -0
  321. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/asset_limits.py +0 -0
  322. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/asset_limits_deposit_value.py +0 -0
  323. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/asset_limits_withdraw_value.py +0 -0
  324. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/asset_memo.py +0 -0
  325. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/asset_networks.py +0 -0
  326. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/asset_providers.py +0 -0
  327. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/authorize_request.py +0 -0
  328. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/authorize_response.py +0 -0
  329. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/authorize_response_result.py +0 -0
  330. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/bad_request_error_body.py +0 -0
  331. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_margin_request.py +0 -0
  332. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_margin_response.py +0 -0
  333. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_margin_response_result_value.py +0 -0
  334. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_margin_subscribe.py +0 -0
  335. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_margin_update.py +0 -0
  336. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_margin_update_params_item.py +0 -0
  337. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_spot_request.py +0 -0
  338. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_spot_response.py +0 -0
  339. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_spot_response_result_value.py +0 -0
  340. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_spot_subscribe.py +0 -0
  341. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_spot_update.py +0 -0
  342. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/balance_spot_update_params_item_value.py +0 -0
  343. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/base_request.py +0 -0
  344. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/base_response.py +0 -0
  345. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/book_ticker_subscribe.py +0 -0
  346. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/book_ticker_update.py +0 -0
  347. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/book_ticker_update_data.py +0 -0
  348. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/borrows_events_subscribe.py +0 -0
  349. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/borrows_events_update.py +0 -0
  350. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/borrows_subscribe.py +0 -0
  351. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/borrows_update.py +0 -0
  352. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/borrows_update_params.py +0 -0
  353. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/borrows_update_params_records_item.py +0 -0
  354. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/bulk_limit_order_response.py +0 -0
  355. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/bulk_limit_order_response_item.py +0 -0
  356. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/bulk_order_item_side.py +0 -0
  357. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/candle.py +0 -0
  358. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/candles_request.py +0 -0
  359. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/candles_response.py +0 -0
  360. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/candles_subscribe.py +0 -0
  361. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/candles_update.py +0 -0
  362. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/code_history.py +0 -0
  363. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/code_info.py +0 -0
  364. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/convert_confirm_response.py +0 -0
  365. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/convert_estimate_request_direction.py +0 -0
  366. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/convert_estimate_response.py +0 -0
  367. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/convert_history_response.py +0 -0
  368. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/convert_history_response_records_item.py +0 -0
  369. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/convert_history_response_records_item_path_item.py +0 -0
  370. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/credit_line.py +0 -0
  371. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/deals_request.py +0 -0
  372. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/deals_response.py +0 -0
  373. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/deals_response_result.py +0 -0
  374. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/deals_response_result_records_item.py +0 -0
  375. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/deals_subscribe.py +0 -0
  376. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/deals_update.py +0 -0
  377. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/depth_level.py +0 -0
  378. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/depth_request.py +0 -0
  379. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/depth_response.py +0 -0
  380. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/depth_subscribe.py +0 -0
  381. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/depth_update.py +0 -0
  382. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/depth_update_data.py +0 -0
  383. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/error.py +0 -0
  384. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/error_inner.py +0 -0
  385. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/error_response.py +0 -0
  386. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/error_v4.py +0 -0
  387. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/executed_order_object.py +0 -0
  388. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/executed_order_object_position_side.py +0 -0
  389. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/executed_order_object_stp.py +0 -0
  390. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/fee_details.py +0 -0
  391. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/fee_details_flex.py +0 -0
  392. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/fee_info.py +0 -0
  393. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/fee_info_deposit.py +0 -0
  394. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/fee_info_withdraw.py +0 -0
  395. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/fixed_plan.py +0 -0
  396. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/flex_investment.py +0 -0
  397. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/flex_plan.py +0 -0
  398. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/futures_market.py +0 -0
  399. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/interest_payment.py +0 -0
  400. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/investment.py +0 -0
  401. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/lastprice_request.py +0 -0
  402. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/lastprice_response.py +0 -0
  403. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/lastprice_subscribe.py +0 -0
  404. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/lastprice_update.py +0 -0
  405. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/margin_positions_events_subscribe.py +0 -0
  406. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/margin_positions_events_update.py +0 -0
  407. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_order_request_side.py +0 -0
  408. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_order_request_stp.py +0 -0
  409. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_request.py +0 -0
  410. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_response.py +0 -0
  411. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_statistics.py +0 -0
  412. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_subscribe.py +0 -0
  413. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_today_request.py +0 -0
  414. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_today_response.py +0 -0
  415. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_today_statistics.py +0 -0
  416. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_today_subscribe.py +0 -0
  417. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_today_update.py +0 -0
  418. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/market_update.py +0 -0
  419. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/mining_reward.py +0 -0
  420. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/not_found_error_body.py +0 -0
  421. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/order_book.py +0 -0
  422. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/order_object.py +0 -0
  423. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/order_object_position_side.py +0 -0
  424. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/order_object_stp.py +0 -0
  425. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/orderbook_response.py +0 -0
  426. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/orders_executed_request.py +0 -0
  427. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/orders_executed_response.py +0 -0
  428. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/orders_executed_response_result.py +0 -0
  429. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/orders_executed_subscribe.py +0 -0
  430. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/orders_executed_update.py +0 -0
  431. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/orders_pending_request.py +0 -0
  432. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/orders_pending_response.py +0 -0
  433. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/orders_pending_response_result.py +0 -0
  434. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/orders_pending_subscribe.py +0 -0
  435. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/orders_pending_update.py +0 -0
  436. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/ping_request.py +0 -0
  437. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/ping_response.py +0 -0
  438. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/ping_response_result.py +0 -0
  439. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/positions_subscribe.py +0 -0
  440. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/positions_update.py +0 -0
  441. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/positions_update_params.py +0 -0
  442. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/positions_update_params_records_item.py +0 -0
  443. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/positions_update_params_records_item_liq_stage.py +0 -0
  444. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/positions_update_params_records_item_position_side.py +0 -0
  445. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/provider_fee_details.py +0 -0
  446. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/sub_account.py +0 -0
  447. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/sub_account_api_key.py +0 -0
  448. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/sub_account_api_key_access_endpoints_item.py +0 -0
  449. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/sub_account_api_key_list.py +0 -0
  450. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/sub_account_api_key_list_access_endpoints_item.py +0 -0
  451. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/sub_account_kyc.py +0 -0
  452. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/sub_account_permissions.py +0 -0
  453. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/subscription_response.py +0 -0
  454. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/subscription_response_result.py +0 -0
  455. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/time_request.py +0 -0
  456. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/time_response.py +0 -0
  457. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/trade.py +0 -0
  458. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/trade_type.py +0 -0
  459. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/trades_request.py +0 -0
  460. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/trades_response.py +0 -0
  461. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/trades_subscribe.py +0 -0
  462. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/trades_update.py +0 -0
  463. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/transaction_history_confirmations.py +0 -0
  464. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/unprocessable_entity_error_body.py +0 -0
  465. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/types/unsubscribe_request.py +0 -0
  466. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/withdraw/__init__.py +0 -0
  467. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/withdraw/types/__init__.py +0 -0
  468. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/withdraw/types/create_withdraw_request_beneficiary.py +0 -0
  469. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/withdraw/types/create_withdraw_request_travel_rule.py +0 -0
  470. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit/withdraw/types/create_withdraw_request_travel_rule_type.py +0 -0
  471. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit_python_sdk.egg-info/dependency_links.txt +0 -0
  472. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit_python_sdk.egg-info/not-zip-safe +0 -0
  473. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit_python_sdk.egg-info/requires.txt +0 -0
  474. {whitebit_python_sdk-1.1.0 → whitebit_python_sdk-1.1.2}/src/whitebit_python_sdk.egg-info/top_level.txt +0 -0
@@ -1,3 +1,10 @@
1
+ v1.1.1 - March 12, 2026
2
+
3
+ #### Highlights
4
+ - Project restructured to src-layout
5
+ - Publishing automation scripts added
6
+ - Package name changed to whitebit-python-sdk
7
+
1
8
  v1.0.5 - March 16, 2023
2
9
 
3
10
  #### Breaking Changes:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: whitebit-python-sdk
3
- Version: 1.1.0
3
+ Version: 1.1.2
4
4
  Summary: A Python SDK for WhiteBit cryptocurrency exchange API
5
5
  Author: WhiteBit SDK Team
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "whitebit-python-sdk"
7
- version = "1.1.0"
7
+ version = "1.1.2"
8
8
  description = "A Python SDK for WhiteBit cryptocurrency exchange API"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -183,7 +183,7 @@ from . import (
183
183
  transfer,
184
184
  withdraw,
185
185
  )
186
- from .client import AsyncWhitebitApi, WhitebitApi
186
+ from .client import AsyncWhiteBit, WhiteBit
187
187
  from .codes import ApplyCodeResponse, CreateCodeResponse, GetCodesHistoryResponse, GetMyCodesResponse
188
188
  from .collateral_trading import (
189
189
  CancelOcoOrderResponse,
@@ -306,7 +306,7 @@ from .deposit import (
306
306
  GetFiatDepositUrlResponse,
307
307
  RefundDepositResponse,
308
308
  )
309
- from .environment import WhitebitApiEnvironment
309
+ from .environment import WhiteBitEnvironment
310
310
  from .jwt import GetWebSocketTokenResponse, IssueJwtTokenResponse, IssueJwtTokenResponseData
311
311
  from .main_account import GetDepositWithdrawHistoryResponse, GetMainBalanceResponseValue
312
312
  from .market_fee import GetAllMarketFeesResponse, GetMarketFeeResponse
@@ -346,11 +346,12 @@ from .public_api_v4 import (
346
346
  GetApiV4PublicFuturesResponse,
347
347
  GetApiV4PublicMarketsResponseItem,
348
348
  GetApiV4PublicMarketsResponseItemType,
349
- GetApiV4PublicMiningPoolResponse,
350
- GetApiV4PublicMiningPoolResponseData,
351
- GetApiV4PublicMiningPoolResponseDataBlocksItem,
352
- GetApiV4PublicMiningPoolResponseDataLast7DaysHashRateItem,
349
+ GetApiV4PublicMiningPoolResponseItem,
350
+ GetApiV4PublicMiningPoolResponseItemData,
351
+ GetApiV4PublicMiningPoolResponseItemDataBlocksItem,
352
+ GetApiV4PublicMiningPoolResponseItemDataLast7DaysHashRateItem,
353
353
  GetApiV4PublicPlatformStatusResponse,
354
+ GetApiV4PublicPlatformStatusResponseStatus,
354
355
  GetApiV4PublicTickerResponseValue,
355
356
  GetApiV4PublicTimeResponse,
356
357
  GetApiV4PublicTradesMarketRequestType,
@@ -415,7 +416,7 @@ __all__ = [
415
416
  "AssetMemo",
416
417
  "AssetNetworks",
417
418
  "AssetProviders",
418
- "AsyncWhitebitApi",
419
+ "AsyncWhiteBit",
419
420
  "AuthorizeRequest",
420
421
  "AuthorizeResponse",
421
422
  "AuthorizeResponseResult",
@@ -580,11 +581,12 @@ __all__ = [
580
581
  "GetApiV4PublicFuturesResponse",
581
582
  "GetApiV4PublicMarketsResponseItem",
582
583
  "GetApiV4PublicMarketsResponseItemType",
583
- "GetApiV4PublicMiningPoolResponse",
584
- "GetApiV4PublicMiningPoolResponseData",
585
- "GetApiV4PublicMiningPoolResponseDataBlocksItem",
586
- "GetApiV4PublicMiningPoolResponseDataLast7DaysHashRateItem",
584
+ "GetApiV4PublicMiningPoolResponseItem",
585
+ "GetApiV4PublicMiningPoolResponseItemData",
586
+ "GetApiV4PublicMiningPoolResponseItemDataBlocksItem",
587
+ "GetApiV4PublicMiningPoolResponseItemDataLast7DaysHashRateItem",
587
588
  "GetApiV4PublicPlatformStatusResponse",
589
+ "GetApiV4PublicPlatformStatusResponseStatus",
588
590
  "GetApiV4PublicTickerResponseValue",
589
591
  "GetApiV4PublicTimeResponse",
590
592
  "GetApiV4PublicTradesMarketRequestType",
@@ -769,8 +771,8 @@ __all__ = [
769
771
  "UnprocessableEntityErrorBody",
770
772
  "UnsubscribeRequest",
771
773
  "UpdateFlexAutoReinvestmentResponse",
772
- "WhitebitApi",
773
- "WhitebitApiEnvironment",
774
+ "WhiteBit",
775
+ "WhiteBitEnvironment",
774
776
  "WithdrawFromFlexInvestmentResponse",
775
777
  "WithdrawFromFlexInvestmentResponseData",
776
778
  "codes",
@@ -11,14 +11,14 @@ from .credit_line.client import AsyncCreditLineClient, CreditLineClient
11
11
  from .crypto_lending_fixed.client import AsyncCryptoLendingFixedClient, CryptoLendingFixedClient
12
12
  from .crypto_lending_flex.client import AsyncCryptoLendingFlexClient, CryptoLendingFlexClient
13
13
  from .deposit.client import AsyncDepositClient, DepositClient
14
- from .environment import WhitebitApiEnvironment
14
+ from .environment import WhiteBitEnvironment
15
15
  from .fees.client import AsyncFeesClient, FeesClient
16
16
  from .jwt.client import AsyncJwtClient, JwtClient
17
17
  from .main_account.client import AsyncMainAccountClient, MainAccountClient
18
18
  from .market_fee.client import AsyncMarketFeeClient, MarketFeeClient
19
19
  from .mining_pool.client import AsyncMiningPoolClient, MiningPoolClient
20
20
  from .public_api_v4.client import AsyncPublicApiV4Client, PublicApiV4Client
21
- from .raw_client import AsyncRawWhitebitApi, RawWhitebitApi
21
+ from .raw_client import AsyncRawWhiteBit, RawWhiteBit
22
22
  from .spot_trading.client import AsyncSpotTradingClient, SpotTradingClient
23
23
  from .sub_account.client import AsyncSubAccountClient, SubAccountClient
24
24
  from .sub_account_api_keys.client import AsyncSubAccountApiKeysClient, SubAccountApiKeysClient
@@ -33,16 +33,16 @@ from .withdraw.client import AsyncWithdrawClient, WithdrawClient
33
33
  OMIT = typing.cast(typing.Any, ...)
34
34
 
35
35
 
36
- class WhitebitApi:
36
+ class WhiteBit:
37
37
  """
38
38
  Use this class to access the different functions within the SDK. You can instantiate any number of clients with different configuration that will propagate to these functions.
39
39
 
40
40
  Parameters
41
41
  ----------
42
- environment : WhitebitApiEnvironment
43
- The environment to use for requests from the client. from .environment import WhitebitApiEnvironment
42
+ environment : WhiteBitEnvironment
43
+ The environment to use for requests from the client. from .environment import WhiteBitEnvironment
44
44
 
45
- Defaults to WhitebitApiEnvironment.DEFAULT
45
+ Defaults to WhiteBitEnvironment.DEFAULT
46
46
 
47
47
 
48
48
 
@@ -58,14 +58,14 @@ class WhitebitApi:
58
58
 
59
59
  Examples
60
60
  --------
61
- from whitebit import WhitebitApi
62
- client = WhitebitApi(api_key="YOUR_API_KEY", )
61
+ from whitebit import WhiteBit
62
+ client = WhiteBit(api_key="YOUR_API_KEY", )
63
63
  """
64
64
 
65
65
  def __init__(
66
66
  self,
67
67
  *,
68
- environment: WhitebitApiEnvironment = WhitebitApiEnvironment.DEFAULT,
68
+ environment: WhiteBitEnvironment = WhiteBitEnvironment.DEFAULT,
69
69
  api_key: str,
70
70
  timeout: typing.Optional[float] = None,
71
71
  follow_redirects: typing.Optional[bool] = True,
@@ -84,7 +84,7 @@ class WhitebitApi:
84
84
  else httpx.Client(timeout=_defaulted_timeout),
85
85
  timeout=_defaulted_timeout,
86
86
  )
87
- self._raw_client = RawWhitebitApi(client_wrapper=self._client_wrapper)
87
+ self._raw_client = RawWhiteBit(client_wrapper=self._client_wrapper)
88
88
  self.public_api_v4 = PublicApiV4Client(client_wrapper=self._client_wrapper)
89
89
  self.main_account = MainAccountClient(client_wrapper=self._client_wrapper)
90
90
  self.deposit = DepositClient(client_wrapper=self._client_wrapper)
@@ -104,13 +104,13 @@ class WhitebitApi:
104
104
  self.spot_trading = SpotTradingClient(client_wrapper=self._client_wrapper)
105
105
 
106
106
  @property
107
- def with_raw_response(self) -> RawWhitebitApi:
107
+ def with_raw_response(self) -> RawWhiteBit:
108
108
  """
109
109
  Retrieves a raw implementation of this client that returns raw responses.
110
110
 
111
111
  Returns
112
112
  -------
113
- RawWhitebitApi
113
+ RawWhiteBit
114
114
  """
115
115
  return self._raw_client
116
116
 
@@ -162,8 +162,8 @@ class WhitebitApi:
162
162
 
163
163
  Examples
164
164
  --------
165
- from whitebit import WhitebitApi
166
- client = WhitebitApi(api_key="YOUR_API_KEY", )
165
+ from whitebit import WhiteBit
166
+ client = WhiteBit(api_key="YOUR_API_KEY", )
167
167
  client.convert_estimate(from_='BTC', to='USDT', direction="to", amount='35,103.1', )
168
168
  """
169
169
  _response = self._raw_client.convert_estimate(
@@ -213,8 +213,8 @@ class WhitebitApi:
213
213
 
214
214
  Examples
215
215
  --------
216
- from whitebit import WhitebitApi
217
- client = WhitebitApi(api_key="YOUR_API_KEY", )
216
+ from whitebit import WhiteBit
217
+ client = WhiteBit(api_key="YOUR_API_KEY", )
218
218
  client.convert_confirm(quote_id='4050', )
219
219
  """
220
220
  _response = self._raw_client.convert_confirm(
@@ -283,8 +283,8 @@ class WhitebitApi:
283
283
 
284
284
  Examples
285
285
  --------
286
- from whitebit import WhitebitApi
287
- client = WhitebitApi(api_key="YOUR_API_KEY", )
286
+ from whitebit import WhiteBit
287
+ client = WhiteBit(api_key="YOUR_API_KEY", )
288
288
  client.convert_history(from_ticker='BTC', )
289
289
  """
290
290
  _response = self._raw_client.convert_history(
@@ -302,16 +302,16 @@ class WhitebitApi:
302
302
  return _response.data
303
303
 
304
304
 
305
- class AsyncWhitebitApi:
305
+ class AsyncWhiteBit:
306
306
  """
307
307
  Use this class to access the different functions within the SDK. You can instantiate any number of clients with different configuration that will propagate to these functions.
308
308
 
309
309
  Parameters
310
310
  ----------
311
- environment : WhitebitApiEnvironment
312
- The environment to use for requests from the client. from .environment import WhitebitApiEnvironment
311
+ environment : WhiteBitEnvironment
312
+ The environment to use for requests from the client. from .environment import WhiteBitEnvironment
313
313
 
314
- Defaults to WhitebitApiEnvironment.DEFAULT
314
+ Defaults to WhiteBitEnvironment.DEFAULT
315
315
 
316
316
 
317
317
 
@@ -327,14 +327,14 @@ class AsyncWhitebitApi:
327
327
 
328
328
  Examples
329
329
  --------
330
- from whitebit import AsyncWhitebitApi
331
- client = AsyncWhitebitApi(api_key="YOUR_API_KEY", )
330
+ from whitebit import AsyncWhiteBit
331
+ client = AsyncWhiteBit(api_key="YOUR_API_KEY", )
332
332
  """
333
333
 
334
334
  def __init__(
335
335
  self,
336
336
  *,
337
- environment: WhitebitApiEnvironment = WhitebitApiEnvironment.DEFAULT,
337
+ environment: WhiteBitEnvironment = WhiteBitEnvironment.DEFAULT,
338
338
  api_key: str,
339
339
  timeout: typing.Optional[float] = None,
340
340
  follow_redirects: typing.Optional[bool] = True,
@@ -353,7 +353,7 @@ class AsyncWhitebitApi:
353
353
  else httpx.AsyncClient(timeout=_defaulted_timeout),
354
354
  timeout=_defaulted_timeout,
355
355
  )
356
- self._raw_client = AsyncRawWhitebitApi(client_wrapper=self._client_wrapper)
356
+ self._raw_client = AsyncRawWhiteBit(client_wrapper=self._client_wrapper)
357
357
  self.public_api_v4 = AsyncPublicApiV4Client(client_wrapper=self._client_wrapper)
358
358
  self.main_account = AsyncMainAccountClient(client_wrapper=self._client_wrapper)
359
359
  self.deposit = AsyncDepositClient(client_wrapper=self._client_wrapper)
@@ -373,13 +373,13 @@ class AsyncWhitebitApi:
373
373
  self.spot_trading = AsyncSpotTradingClient(client_wrapper=self._client_wrapper)
374
374
 
375
375
  @property
376
- def with_raw_response(self) -> AsyncRawWhitebitApi:
376
+ def with_raw_response(self) -> AsyncRawWhiteBit:
377
377
  """
378
378
  Retrieves a raw implementation of this client that returns raw responses.
379
379
 
380
380
  Returns
381
381
  -------
382
- AsyncRawWhitebitApi
382
+ AsyncRawWhiteBit
383
383
  """
384
384
  return self._raw_client
385
385
 
@@ -431,9 +431,9 @@ class AsyncWhitebitApi:
431
431
 
432
432
  Examples
433
433
  --------
434
- from whitebit import AsyncWhitebitApi
434
+ from whitebit import AsyncWhiteBit
435
435
  import asyncio
436
- client = AsyncWhitebitApi(api_key="YOUR_API_KEY", )
436
+ client = AsyncWhiteBit(api_key="YOUR_API_KEY", )
437
437
  async def main() -> None:
438
438
  await client.convert_estimate(from_='BTC', to='USDT', direction="to", amount='35,103.1', )
439
439
  asyncio.run(main())
@@ -485,9 +485,9 @@ class AsyncWhitebitApi:
485
485
 
486
486
  Examples
487
487
  --------
488
- from whitebit import AsyncWhitebitApi
488
+ from whitebit import AsyncWhiteBit
489
489
  import asyncio
490
- client = AsyncWhitebitApi(api_key="YOUR_API_KEY", )
490
+ client = AsyncWhiteBit(api_key="YOUR_API_KEY", )
491
491
  async def main() -> None:
492
492
  await client.convert_confirm(quote_id='4050', )
493
493
  asyncio.run(main())
@@ -558,9 +558,9 @@ class AsyncWhitebitApi:
558
558
 
559
559
  Examples
560
560
  --------
561
- from whitebit import AsyncWhitebitApi
561
+ from whitebit import AsyncWhiteBit
562
562
  import asyncio
563
- client = AsyncWhitebitApi(api_key="YOUR_API_KEY", )
563
+ client = AsyncWhiteBit(api_key="YOUR_API_KEY", )
564
564
  async def main() -> None:
565
565
  await client.convert_history(from_ticker='BTC', )
566
566
  asyncio.run(main())
@@ -81,8 +81,8 @@ class CodesClient:
81
81
 
82
82
  Examples
83
83
  --------
84
- from whitebit import WhitebitApi
85
- client = WhitebitApi(api_key="YOUR_API_KEY", )
84
+ from whitebit import WhiteBit
85
+ client = WhiteBit(api_key="YOUR_API_KEY", )
86
86
  client.codes.create_code(ticker='ETH', amount='0.002', passphrase='some passphrase', description='some description', request='{{request}}', nonce='{{nonce}}', )
87
87
  """
88
88
  _response = self._raw_client.create_code(
@@ -140,8 +140,8 @@ class CodesClient:
140
140
 
141
141
  Examples
142
142
  --------
143
- from whitebit import WhitebitApi
144
- client = WhitebitApi(api_key="YOUR_API_KEY", )
143
+ from whitebit import WhiteBit
144
+ client = WhiteBit(api_key="YOUR_API_KEY", )
145
145
  client.codes.apply_code(code='WBe11f4fce-2a53-4edc-b195-66b693bd77e3ETH', passphrase='some passphrase', request='{{request}}', nonce='{{nonce}}', )
146
146
  """
147
147
  _response = self._raw_client.apply_code(
@@ -193,8 +193,8 @@ class CodesClient:
193
193
 
194
194
  Examples
195
195
  --------
196
- from whitebit import WhitebitApi
197
- client = WhitebitApi(api_key="YOUR_API_KEY", )
196
+ from whitebit import WhiteBit
197
+ client = WhiteBit(api_key="YOUR_API_KEY", )
198
198
  client.codes.get_my_codes(request='{{request}}', nonce='{{nonce}}', )
199
199
  """
200
200
  _response = self._raw_client.get_my_codes(
@@ -246,8 +246,8 @@ class CodesClient:
246
246
 
247
247
  Examples
248
248
  --------
249
- from whitebit import WhitebitApi
250
- client = WhitebitApi(api_key="YOUR_API_KEY", )
249
+ from whitebit import WhiteBit
250
+ client = WhiteBit(api_key="YOUR_API_KEY", )
251
251
  client.codes.get_codes_history(request='{{request}}', nonce='{{nonce}}', )
252
252
  """
253
253
  _response = self._raw_client.get_codes_history(
@@ -323,9 +323,9 @@ class AsyncCodesClient:
323
323
 
324
324
  Examples
325
325
  --------
326
- from whitebit import AsyncWhitebitApi
326
+ from whitebit import AsyncWhiteBit
327
327
  import asyncio
328
- client = AsyncWhitebitApi(api_key="YOUR_API_KEY", )
328
+ client = AsyncWhiteBit(api_key="YOUR_API_KEY", )
329
329
  async def main() -> None:
330
330
  await client.codes.create_code(ticker='ETH', amount='0.002', passphrase='some passphrase', description='some description', request='{{request}}', nonce='{{nonce}}', )
331
331
  asyncio.run(main())
@@ -385,9 +385,9 @@ class AsyncCodesClient:
385
385
 
386
386
  Examples
387
387
  --------
388
- from whitebit import AsyncWhitebitApi
388
+ from whitebit import AsyncWhiteBit
389
389
  import asyncio
390
- client = AsyncWhitebitApi(api_key="YOUR_API_KEY", )
390
+ client = AsyncWhiteBit(api_key="YOUR_API_KEY", )
391
391
  async def main() -> None:
392
392
  await client.codes.apply_code(code='WBe11f4fce-2a53-4edc-b195-66b693bd77e3ETH', passphrase='some passphrase', request='{{request}}', nonce='{{nonce}}', )
393
393
  asyncio.run(main())
@@ -441,9 +441,9 @@ class AsyncCodesClient:
441
441
 
442
442
  Examples
443
443
  --------
444
- from whitebit import AsyncWhitebitApi
444
+ from whitebit import AsyncWhiteBit
445
445
  import asyncio
446
- client = AsyncWhitebitApi(api_key="YOUR_API_KEY", )
446
+ client = AsyncWhiteBit(api_key="YOUR_API_KEY", )
447
447
  async def main() -> None:
448
448
  await client.codes.get_my_codes(request='{{request}}', nonce='{{nonce}}', )
449
449
  asyncio.run(main())
@@ -497,9 +497,9 @@ class AsyncCodesClient:
497
497
 
498
498
  Examples
499
499
  --------
500
- from whitebit import AsyncWhitebitApi
500
+ from whitebit import AsyncWhiteBit
501
501
  import asyncio
502
- client = AsyncWhitebitApi(api_key="YOUR_API_KEY", )
502
+ client = AsyncWhiteBit(api_key="YOUR_API_KEY", )
503
503
  async def main() -> None:
504
504
  await client.codes.get_codes_history(request='{{request}}', nonce='{{nonce}}', )
505
505
  asyncio.run(main())