crypticorn 2.7.4__tar.gz → 2.8.0__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 (277) hide show
  1. crypticorn-2.8.0/CHANGELOG.md +545 -0
  2. crypticorn-2.8.0/MANIFEST.in +2 -0
  3. {crypticorn-2.7.4 → crypticorn-2.8.0}/PKG-INFO +46 -21
  4. {crypticorn-2.7.4 → crypticorn-2.8.0}/README.md +34 -18
  5. crypticorn-2.8.0/crypticorn/__init__.py +15 -0
  6. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/create_api_key_request.py +3 -1
  7. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/get_api_keys200_response_inner.py +3 -1
  8. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/client.py +34 -16
  9. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/common/__init__.py +5 -1
  10. crypticorn-2.8.0/crypticorn/common/ansi_colors.py +37 -0
  11. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/common/auth.py +3 -1
  12. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/common/exceptions.py +29 -11
  13. crypticorn-2.8.0/crypticorn/common/logging.py +126 -0
  14. crypticorn-2.8.0/crypticorn/common/middleware.py +27 -0
  15. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/common/mixins.py +2 -1
  16. crypticorn-2.8.0/crypticorn/common/router/admin_router.py +100 -0
  17. crypticorn-2.8.0/crypticorn/common/router/status_router.py +24 -0
  18. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/common/scopes.py +5 -0
  19. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/__init__.py +6 -3
  20. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/api/__init__.py +1 -0
  21. crypticorn-2.8.0/crypticorn/hive/client/api/admin_api.py +1452 -0
  22. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/api/models_api.py +7 -7
  23. crypticorn-2.8.0/crypticorn/hive/client/api/status_api.py +508 -0
  24. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/__init__.py +5 -3
  25. crypticorn-2.8.0/crypticorn/hive/client/models/api_error_identifier.py +115 -0
  26. crypticorn-2.8.0/crypticorn/hive/client/models/api_error_level.py +37 -0
  27. crypticorn-2.8.0/crypticorn/hive/client/models/api_error_type.py +37 -0
  28. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/data_info.py +27 -5
  29. crypticorn-2.8.0/crypticorn/hive/client/models/data_options.py +92 -0
  30. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/exception_detail.py +6 -3
  31. crypticorn-2.8.0/crypticorn/hive/client/models/log_level.py +38 -0
  32. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/model.py +3 -3
  33. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/main.py +22 -3
  34. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/utils.py +1 -2
  35. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/__init__.py +11 -0
  36. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/api/__init__.py +2 -0
  37. crypticorn-2.8.0/crypticorn/metrics/client/api/admin_api.py +1452 -0
  38. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/api/exchanges_api.py +51 -40
  39. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/api/indicators_api.py +49 -32
  40. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/api/logs_api.py +7 -7
  41. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/api/marketcap_api.py +28 -25
  42. crypticorn-2.8.0/crypticorn/metrics/client/api/markets_api.py +374 -0
  43. crypticorn-2.7.4/crypticorn/metrics/client/api/tokens_api.py → crypticorn-2.8.0/crypticorn/metrics/client/api/quote_currencies_api.py +43 -40
  44. crypticorn-2.8.0/crypticorn/metrics/client/api/status_api.py +508 -0
  45. crypticorn-2.7.4/crypticorn/metrics/client/api/markets_api.py → crypticorn-2.8.0/crypticorn/metrics/client/api/tokens_api.py +46 -158
  46. crypticorn-2.8.0/crypticorn/metrics/client/models/__init__.py +29 -0
  47. crypticorn-2.8.0/crypticorn/metrics/client/models/api_error_identifier.py +115 -0
  48. crypticorn-2.8.0/crypticorn/metrics/client/models/api_error_level.py +37 -0
  49. crypticorn-2.8.0/crypticorn/metrics/client/models/api_error_type.py +37 -0
  50. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/models/exception_detail.py +6 -3
  51. crypticorn-2.8.0/crypticorn/metrics/client/models/exchange_mapping.py +121 -0
  52. crypticorn-2.8.0/crypticorn/metrics/client/models/internal_exchange.py +39 -0
  53. crypticorn-2.8.0/crypticorn/metrics/client/models/log_level.py +38 -0
  54. crypticorn-2.8.0/crypticorn/metrics/client/models/market_type.py +35 -0
  55. crypticorn-2.8.0/crypticorn/metrics/client/models/marketcap_ranking.py +87 -0
  56. crypticorn-2.8.0/crypticorn/metrics/client/models/ohlcv.py +113 -0
  57. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/main.py +14 -2
  58. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/__init__.py +3 -0
  59. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/api/__init__.py +1 -0
  60. crypticorn-2.8.0/crypticorn/pay/client/api/admin_api.py +1453 -0
  61. crypticorn-2.8.0/crypticorn/pay/client/api/status_api.py +508 -0
  62. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/__init__.py +2 -0
  63. crypticorn-2.8.0/crypticorn/pay/client/models/log_level.py +38 -0
  64. crypticorn-2.7.4/crypticorn/hive/client/models/data_value_value_value_inner.py → crypticorn-2.8.0/crypticorn/pay/client/models/response_getuptime.py +36 -31
  65. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/scope.py +2 -0
  66. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/main.py +2 -0
  67. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn.egg-info/PKG-INFO +46 -21
  68. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn.egg-info/SOURCES.txt +26 -2
  69. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn.egg-info/requires.txt +3 -0
  70. {crypticorn-2.7.4 → crypticorn-2.8.0}/pyproject.toml +9 -3
  71. {crypticorn-2.7.4 → crypticorn-2.8.0}/requirements/dev.txt +1 -0
  72. {crypticorn-2.7.4 → crypticorn-2.8.0}/requirements/main.txt +2 -0
  73. crypticorn-2.7.4/MANIFEST.in +0 -1
  74. crypticorn-2.7.4/crypticorn/__init__.py +0 -8
  75. crypticorn-2.7.4/crypticorn/common/status_router.py +0 -44
  76. crypticorn-2.7.4/crypticorn/hive/client/api/status_api.py +0 -735
  77. crypticorn-2.7.4/crypticorn/metrics/client/api/status_api.py +0 -735
  78. crypticorn-2.7.4/crypticorn/metrics/client/models/__init__.py +0 -20
  79. crypticorn-2.7.4/crypticorn/pay/client/api/status_api.py +0 -735
  80. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/__init__.py +0 -0
  81. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/__init__.py +0 -0
  82. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/api/__init__.py +0 -0
  83. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/api/admin_api.py +0 -0
  84. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/api/auth_api.py +0 -0
  85. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/api/service_api.py +0 -0
  86. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/api/user_api.py +0 -0
  87. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/api/wallet_api.py +0 -0
  88. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/api_client.py +0 -0
  89. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/api_response.py +0 -0
  90. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/configuration.py +0 -0
  91. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/exceptions.py +0 -0
  92. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/__init__.py +0 -0
  93. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/add_wallet200_response.py +0 -0
  94. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/add_wallet_request.py +0 -0
  95. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/authorize_user200_response.py +0 -0
  96. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/authorize_user200_response_auth.py +0 -0
  97. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/authorize_user_request.py +0 -0
  98. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/create_api_key200_response.py +0 -0
  99. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/create_user_request.py +0 -0
  100. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/list_wallets200_response.py +0 -0
  101. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/list_wallets200_response_balances_inner.py +0 -0
  102. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py +0 -0
  103. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet.py +0 -0
  104. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet_vesting_wallets_inner.py +0 -0
  105. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/list_wallets200_response_data_inner.py +0 -0
  106. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/list_wallets200_response_user_value.py +0 -0
  107. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/logout_default_response.py +0 -0
  108. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/logout_default_response_issues_inner.py +0 -0
  109. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/oauth_callback200_response.py +0 -0
  110. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/oauth_callback200_response_user.py +0 -0
  111. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/refresh_token_info200_response.py +0 -0
  112. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/refresh_token_info200_response_user_session.py +0 -0
  113. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/resend_verification_email_request.py +0 -0
  114. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/revoke_user_tokens_request.py +0 -0
  115. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/rotate_tokens200_response.py +0 -0
  116. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/token_info200_response.py +0 -0
  117. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/unlink_wallet_request.py +0 -0
  118. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/update_user_request.py +0 -0
  119. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/user_by_username200_response.py +0 -0
  120. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/user_reset_password_request.py +0 -0
  121. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/user_set_password_request.py +0 -0
  122. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/verify200_response.py +0 -0
  123. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/verify_email200_response.py +0 -0
  124. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/verify_email200_response_auth.py +0 -0
  125. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/verify_email200_response_auth_auth.py +0 -0
  126. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/verify_email_request.py +0 -0
  127. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/verify_wallet_request.py +0 -0
  128. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/wallet_verified200_response.py +0 -0
  129. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/models/whoami200_response.py +0 -0
  130. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/py.typed +0 -0
  131. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/client/rest.py +0 -0
  132. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/auth/main.py +0 -0
  133. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/cli/__init__.py +0 -0
  134. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/cli/__main__.py +0 -0
  135. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/cli/init.py +0 -0
  136. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/cli/templates/Dockerfile +0 -0
  137. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/cli/templates/__init__.py +0 -0
  138. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/cli/templates/auth.py +0 -0
  139. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/cli/templates/dependabot.yml +0 -0
  140. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/cli/templates/ruff.yml +0 -0
  141. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/common/decorators.py +0 -0
  142. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/common/enums.py +0 -0
  143. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/common/errors.py +0 -0
  144. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/common/pagination.py +0 -0
  145. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/common/urls.py +0 -0
  146. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/common/utils.py +0 -0
  147. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/__init__.py +0 -0
  148. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/api/data_api.py +0 -0
  149. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/api_client.py +0 -0
  150. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/api_response.py +0 -0
  151. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/configuration.py +0 -0
  152. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/exceptions.py +0 -0
  153. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/coins.py +0 -0
  154. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/data_download_response.py +0 -0
  155. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/data_version.py +0 -0
  156. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/data_version_info.py +0 -0
  157. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/download_links.py +0 -0
  158. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/evaluation.py +0 -0
  159. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/evaluation_response.py +0 -0
  160. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/feature_size.py +0 -0
  161. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/model_create.py +0 -0
  162. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/model_status.py +0 -0
  163. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/model_update.py +0 -0
  164. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/target.py +0 -0
  165. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/target_info.py +0 -0
  166. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/models/target_type.py +0 -0
  167. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/py.typed +0 -0
  168. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/hive/client/rest.py +0 -0
  169. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/__init__.py +0 -0
  170. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/__init__.py +0 -0
  171. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/api/__init__.py +0 -0
  172. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/api/change_in_timeframe_api.py +0 -0
  173. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/api/funding_rates_api.py +0 -0
  174. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/api/ohlcv_data_api.py +0 -0
  175. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/api/status_api.py +0 -0
  176. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/api/symbols_api.py +0 -0
  177. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/api/udf_api.py +0 -0
  178. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/api_client.py +0 -0
  179. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/api_response.py +0 -0
  180. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/configuration.py +0 -0
  181. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/exceptions.py +0 -0
  182. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/__init__.py +0 -0
  183. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/change_in_timeframe.py +0 -0
  184. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/exception_detail.py +0 -0
  185. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/funding_rate.py +0 -0
  186. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/ohlcv_history.py +0 -0
  187. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/resolution.py +0 -0
  188. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/search_symbol.py +0 -0
  189. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/sort_direction.py +0 -0
  190. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/symbol_group.py +0 -0
  191. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/symbol_info.py +0 -0
  192. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/symbol_type.py +0 -0
  193. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/timeframe.py +0 -0
  194. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/models/udf_config.py +0 -0
  195. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/py.typed +0 -0
  196. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/client/rest.py +0 -0
  197. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/klines/main.py +0 -0
  198. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/__init__.py +0 -0
  199. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/api_client.py +0 -0
  200. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/api_response.py +0 -0
  201. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/configuration.py +0 -0
  202. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/exceptions.py +0 -0
  203. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/models/severity.py +0 -0
  204. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/models/time_interval.py +0 -0
  205. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/models/trading_status.py +0 -0
  206. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/py.typed +0 -0
  207. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/metrics/client/rest.py +0 -0
  208. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/__init__.py +0 -0
  209. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/api/now_payments_api.py +0 -0
  210. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/api/payments_api.py +0 -0
  211. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/api/products_api.py +0 -0
  212. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/api_client.py +0 -0
  213. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/api_response.py +0 -0
  214. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/configuration.py +0 -0
  215. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/exceptions.py +0 -0
  216. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/exception_detail.py +0 -0
  217. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/now_create_invoice_req.py +0 -0
  218. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/now_create_invoice_res.py +0 -0
  219. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/payment.py +0 -0
  220. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/payment_status.py +0 -0
  221. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/product_create.py +0 -0
  222. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/product_read.py +0 -0
  223. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/product_sub_read.py +0 -0
  224. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/product_update.py +0 -0
  225. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/models/provider.py +0 -0
  226. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/py.typed +0 -0
  227. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/pay/client/rest.py +0 -0
  228. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/__init__.py +0 -0
  229. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/__init__.py +0 -0
  230. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api/__init__.py +0 -0
  231. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api/api_keys_api.py +0 -0
  232. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api/bots_api.py +0 -0
  233. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api/exchanges_api.py +0 -0
  234. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api/futures_trading_panel_api.py +0 -0
  235. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api/notifications_api.py +0 -0
  236. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api/orders_api.py +0 -0
  237. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api/status_api.py +0 -0
  238. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api/strategies_api.py +0 -0
  239. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api/trading_actions_api.py +0 -0
  240. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api_client.py +0 -0
  241. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/api_response.py +0 -0
  242. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/configuration.py +0 -0
  243. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/exceptions.py +0 -0
  244. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/__init__.py +0 -0
  245. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/action_model.py +0 -0
  246. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/bot_model.py +0 -0
  247. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/bot_status.py +0 -0
  248. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/exception_detail.py +0 -0
  249. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/exchange_key_model.py +0 -0
  250. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/execution_ids.py +0 -0
  251. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/futures_balance.py +0 -0
  252. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/futures_trading_action.py +0 -0
  253. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/margin_mode.py +0 -0
  254. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/notification_model.py +0 -0
  255. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/order_model.py +0 -0
  256. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/order_status.py +0 -0
  257. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/post_futures_action.py +0 -0
  258. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/spot_trading_action.py +0 -0
  259. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/strategy_exchange_info.py +0 -0
  260. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/strategy_model_input.py +0 -0
  261. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/strategy_model_output.py +0 -0
  262. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/tpsl.py +0 -0
  263. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/models/trading_action_type.py +0 -0
  264. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/py.typed +0 -0
  265. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/client/rest.py +0 -0
  266. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn/trade/main.py +0 -0
  267. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn.egg-info/dependency_links.txt +0 -0
  268. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn.egg-info/entry_points.txt +0 -0
  269. {crypticorn-2.7.4 → crypticorn-2.8.0}/crypticorn.egg-info/top_level.txt +0 -0
  270. {crypticorn-2.7.4 → crypticorn-2.8.0}/requirements/extra.txt +0 -0
  271. {crypticorn-2.7.4 → crypticorn-2.8.0}/requirements/test.txt +0 -0
  272. {crypticorn-2.7.4 → crypticorn-2.8.0}/setup.cfg +0 -0
  273. {crypticorn-2.7.4 → crypticorn-2.8.0}/tests/test_auth_client.py +0 -0
  274. {crypticorn-2.7.4 → crypticorn-2.8.0}/tests/test_config.py +0 -0
  275. {crypticorn-2.7.4 → crypticorn-2.8.0}/tests/test_enums.py +0 -0
  276. {crypticorn-2.7.4 → crypticorn-2.8.0}/tests/test_errors.py +0 -0
  277. {crypticorn-2.7.4 → crypticorn-2.8.0}/tests/test_pagination.py +0 -0
@@ -0,0 +1,545 @@
1
+ # CHANGELOG
2
+
3
+
4
+ ## v2.8.0 (2025-05-07)
5
+
6
+
7
+ ## v2.8.0-rc.8 (2025-05-07)
8
+
9
+ ### Bug Fixes
10
+
11
+ - Use root logger of the client with specific child logger as option
12
+ ([`2f8cde2`](https://github.com/crypticorn-ai/api-client/commit/2f8cde2659f22704c5c4310f3ec9a07cbd1d4cef))
13
+
14
+
15
+ ## v2.8.0-rc.7 (2025-05-07)
16
+
17
+ ### Bug Fixes
18
+
19
+ - Pass args to the override function in hive data download
20
+ ([`7bb3e29`](https://github.com/crypticorn-ai/api-client/commit/7bb3e2997f79da8e4e55b42a1a699a75fe1f985f))
21
+
22
+
23
+ ## v2.8.0-rc.6 (2025-05-07)
24
+
25
+ ### Bug Fixes
26
+
27
+ - Fixes logging file handler import error
28
+ ([`0a9edb1`](https://github.com/crypticorn-ai/api-client/commit/0a9edb1ee3083ec98edc9529efa3158e69c4541c))
29
+
30
+
31
+ ## v2.8.0-rc.5 (2025-05-07)
32
+
33
+ ### Bug Fixes
34
+
35
+ - Fixes missing os import in logging
36
+ ([`1670c9f`](https://github.com/crypticorn-ai/api-client/commit/1670c9f1afec1e772fdfaea0c6178c782c209889))
37
+
38
+ ### Documentation
39
+
40
+ - Update documentation
41
+ ([`0eba005`](https://github.com/crypticorn-ai/api-client/commit/0eba0058cf8cdd813d3b80eef8c72ca12a181399))
42
+
43
+
44
+ ## v2.8.0-rc.4 (2025-05-05)
45
+
46
+ ### Bug Fixes
47
+
48
+ - Remove @deprecated decorator from ExcludeEnumMixin to avoid enum inheritance error
49
+ ([`3d8b63d`](https://github.com/crypticorn-ai/api-client/commit/3d8b63d638fa77045d2189fe099a6c2ca740c105))
50
+
51
+
52
+ ## v2.8.0-rc.3 (2025-05-05)
53
+
54
+ ### Bug Fixes
55
+
56
+ - Deprecate ExcludeEnumMixin
57
+ ([`ae57fb2`](https://github.com/crypticorn-ai/api-client/commit/ae57fb22ff410432ce28a9c0af3a02fa9f51104f))
58
+
59
+
60
+ ## v2.8.0-rc.2 (2025-05-05)
61
+
62
+ ### Bug Fixes
63
+
64
+ - Add psutil as dependency
65
+ ([`23cf77e`](https://github.com/crypticorn-ai/api-client/commit/23cf77ea002a2d6f8e31cd858a2dcc1890b8d8c1))
66
+
67
+ - Centralize cors middleware
68
+ ([`e5aa2d6`](https://github.com/crypticorn-ai/api-client/commit/e5aa2d60254076848530a6d5b9a349058ee45ac7))
69
+
70
+ - Run logging configuration in init of the library
71
+ ([`8b725e1`](https://github.com/crypticorn-ai/api-client/commit/8b725e18154d184c8593b8de086b0a789b6e180c))
72
+
73
+ ### Features
74
+
75
+ - Provide lifespan event for fastapi apps to configure logging on startup
76
+ ([`9a2e1c4`](https://github.com/crypticorn-ai/api-client/commit/9a2e1c45d87ad1581c0e1646689eba6ca0876564))
77
+
78
+
79
+ ## v2.8.0-rc.1 (2025-05-04)
80
+
81
+ ### Features
82
+
83
+ - Add router with admin endpoints
84
+ ([`0d38178`](https://github.com/crypticorn-ai/api-client/commit/0d381784f91cab776ca1ee3b8407433dae4421c3))
85
+
86
+ - Configure formatted logging
87
+ ([`f8c35e9`](https://github.com/crypticorn-ai/api-client/commit/f8c35e900bcf4a279cc8e046e58935ec5c5c62ee))
88
+
89
+
90
+ ## v2.7.5 (2025-05-04)
91
+
92
+ ### Bug Fixes
93
+
94
+ - Log errors and exceptions
95
+ ([`578d6d3`](https://github.com/crypticorn-ai/api-client/commit/578d6d3176e07a7d4cb87e79617d67ab2e1d62de))
96
+
97
+ ### Build System
98
+
99
+ - Include changelog in build
100
+ ([`a78acb7`](https://github.com/crypticorn-ai/api-client/commit/a78acb7a18a957cfefa8e64ce593b13ddcd4fae7))
101
+
102
+
103
+ ## v2.7.4 (2025-05-04)
104
+
105
+ ### Bug Fixes
106
+
107
+ - Include cli templates in build
108
+ ([`8d46b4c`](https://github.com/crypticorn-ai/api-client/commit/8d46b4c6bc6bd413a86d1661a4ae9647ed66755c))
109
+
110
+ ### Documentation
111
+
112
+ - Update README and add license
113
+ ([`1876008`](https://github.com/crypticorn-ai/api-client/commit/187600869b9248aef2b66e881711ddfb96a01538))
114
+
115
+
116
+ ## v2.7.3 (2025-05-03)
117
+
118
+ ### Bug Fixes
119
+
120
+ - Fixes attribute bug in http exception handling
121
+ ([`a90b593`](https://github.com/crypticorn-ai/api-client/commit/a90b593bfa3e08a1703a7e2e1fc8a7bb8ac456e3))
122
+
123
+
124
+ ## v2.7.2 (2025-05-03)
125
+
126
+ ### Bug Fixes
127
+
128
+ - Add write:pay:now to default scopes
129
+ ([`8375248`](https://github.com/crypticorn-ai/api-client/commit/83752484e3570a1f39eacda4223100d7f3fbadd0))
130
+
131
+
132
+ ## v2.7.1 (2025-05-02)
133
+
134
+ ### Bug Fixes
135
+
136
+ - Use pydantic instead of json response in api wrappers
137
+ ([`ddd623b`](https://github.com/crypticorn-ai/api-client/commit/ddd623b28cb542ae6dd1bab02044c682cac206af))
138
+
139
+
140
+ ## v2.7.0 (2025-05-01)
141
+
142
+ ### Features
143
+
144
+ - Add download functionality for hive download data endpoint
145
+ ([`ee09d17`](https://github.com/crypticorn-ai/api-client/commit/ee09d177a28f3879e549eb3044c24b5e6197a528))
146
+
147
+
148
+ ## v2.6.0 (2025-04-30)
149
+
150
+ ### Features
151
+
152
+ - Add admin flag on auth verify response and user by username endpoint
153
+ ([`3f27fba`](https://github.com/crypticorn-ai/api-client/commit/3f27fba655e15a42a947ad1c67bcf4319c3daed6))
154
+
155
+ - Add common pagination query parameters
156
+ ([`4157137`](https://github.com/crypticorn-ai/api-client/commit/415713725541bb4a180f11de12fea2c3071c5f55))
157
+
158
+ - Add common webscoket error handling
159
+ ([`334a450`](https://github.com/crypticorn-ai/api-client/commit/334a45054797616fdd8bb917381e189bb64e4678))
160
+
161
+ ### Testing
162
+
163
+ - Add api key generation and remove duplicate tests
164
+ ([`d60a890`](https://github.com/crypticorn-ai/api-client/commit/d60a89071fe7bc25025fbdf2298cb560d9fbdfb8))
165
+
166
+
167
+ ## v2.5.3 (2025-04-29)
168
+
169
+ ### Bug Fixes
170
+
171
+ - Use ExceptionContent in throw utilities
172
+ ([`b38ebf1`](https://github.com/crypticorn-ai/api-client/commit/b38ebf1443d1df126f7e1014b5c25f1e17f56fdc))
173
+
174
+
175
+ ## v2.5.2 (2025-04-29)
176
+
177
+ ### Bug Fixes
178
+
179
+ - Only allow type ApiError in throw utility functions
180
+ ([`7604342`](https://github.com/crypticorn-ai/api-client/commit/7604342baa6dd2bee816ae446dfcc08edb298ddb))
181
+
182
+ ### Build System
183
+
184
+ - Clean generated code before regenerating
185
+ ([`b563024`](https://github.com/crypticorn-ai/api-client/commit/b56302497e79e2a64e7403d15a0f3d3bd3233b63))
186
+
187
+
188
+ ## v2.5.1 (2025-04-27)
189
+
190
+ ### Bug Fixes
191
+
192
+ - Integrate exception handling in auth handler
193
+ ([`b7835ef`](https://github.com/crypticorn-ai/api-client/commit/b7835efef54adbd021ecce27c002c5e5501cb99c))
194
+
195
+ ### Build System
196
+
197
+ - Exclude shared classes and enums from openapi to reduce duplication upon client generation
198
+ ([`1987864`](https://github.com/crypticorn-ai/api-client/commit/1987864392397d7ee74ddb9ecbfb61c6d83134dc))
199
+
200
+ ### Continuous Integration
201
+
202
+ - Run codecov workflow on push and pull request
203
+ ([`cf2bc16`](https://github.com/crypticorn-ai/api-client/commit/cf2bc165d04b855839812ea626a3647b17a91458))
204
+
205
+ ### Refactoring
206
+
207
+ - Improve sub package registration in ApiClient to reduce redundance
208
+ ([`bdea044`](https://github.com/crypticorn-ai/api-client/commit/bdea044a6bc5180daed59b9a504866d2f519ae05))
209
+
210
+ - Integrate custom exception handling in auth handler
211
+ ([`3f997e2`](https://github.com/crypticorn-ai/api-client/commit/3f997e23c1493296deaab23063b709d08702d5af))
212
+
213
+ ### Testing
214
+
215
+ - Add jwt generation function
216
+ ([`c2bc90f`](https://github.com/crypticorn-ai/api-client/commit/c2bc90fb878656642787755330a99c6b9056f14c))
217
+
218
+ - Update exception assertions with latest changes auth handler
219
+ ([`4c220e5`](https://github.com/crypticorn-ai/api-client/commit/4c220e5bd31d1a7fd64d0f302044acfd4d4927e9))
220
+
221
+
222
+ ## v2.5.0 (2025-04-26)
223
+
224
+
225
+ ## v2.5.0-rc.5 (2025-04-26)
226
+
227
+ ### Features
228
+
229
+ - Add details field to `ExceptionContent` to support additional details about the error
230
+ ([`3ae6bc5`](https://github.com/crypticorn-ai/api-client/commit/3ae6bc57ae4e1e8a23c46511cdc5bf9c1eadc40d))
231
+
232
+ ### Refactoring
233
+
234
+ - Rename exception class names
235
+ ([`7f50e11`](https://github.com/crypticorn-ai/api-client/commit/7f50e114ceee596dcf3e25d3decfe78c849ad22e))
236
+
237
+
238
+ ## v2.5.0-rc.4 (2025-04-26)
239
+
240
+ ### Bug Fixes
241
+
242
+ - Remove wrong media type from `exception_response`
243
+ ([`34920f0`](https://github.com/crypticorn-ai/api-client/commit/34920f0a51eded25e64324654d711e8716ee707c))
244
+
245
+
246
+ ## v2.5.0-rc.3 (2025-04-26)
247
+
248
+ ### Bug Fixes
249
+
250
+ - Fixes TypeError bug in deprecated decorator
251
+ ([`4344581`](https://github.com/crypticorn-ai/api-client/commit/4344581f2737377334d2ab0203c8872e0acdfadb))
252
+
253
+ ### Features
254
+
255
+ - Add exception handler and improve custom exception
256
+ ([`64c05ea`](https://github.com/crypticorn-ai/api-client/commit/64c05eafd011556b49786034d58a4de264438bfd))
257
+
258
+
259
+ ## v2.5.0-rc.2 (2025-04-25)
260
+
261
+ ### Bug Fixes
262
+
263
+ - Enforce stricter types on Http Exception and improve descriptions and doc string
264
+ ([`0941780`](https://github.com/crypticorn-ai/api-client/commit/094178099ca1d01d763f41cce6ac898cbc77a9a3))
265
+
266
+
267
+ ## v2.5.0-rc.1 (2025-04-25)
268
+
269
+ ### Build System
270
+
271
+ - Update generation script to catch fallback if local server is not running
272
+ ([`b5e9a16`](https://github.com/crypticorn-ai/api-client/commit/b5e9a16092c836bea38657b7ddab252945696848))
273
+
274
+ ### Chores
275
+
276
+ - Deprecate is_equal function
277
+ ([`b3b3094`](https://github.com/crypticorn-ai/api-client/commit/b3b309428dc078673a5b1718a7075855bce0c098))
278
+
279
+ ### Features
280
+
281
+ - Add custom Http Exception class with shared error codes
282
+ ([`aa0d851`](https://github.com/crypticorn-ai/api-client/commit/aa0d8515936ea65951608a9704f8d840069ac15d))
283
+
284
+
285
+ ## v2.4.7 (2025-04-17)
286
+
287
+ ### Bug Fixes
288
+
289
+ - Raise custom WebsockeError in ws auth dependencies
290
+ ([`94f8b62`](https://github.com/crypticorn-ai/api-client/commit/94f8b62593d3f44785b11812102c3a4ab9195073))
291
+
292
+ ### Performance Improvements
293
+
294
+ - Make pandas an optional dependency to decrease package size
295
+ ([`cb942c7`](https://github.com/crypticorn-ai/api-client/commit/cb942c74d5d7836f9cab1beb2b1d5ee6a9be4d4e))
296
+
297
+
298
+ ## v2.4.6 (2025-04-13)
299
+
300
+ ### Bug Fixes
301
+
302
+ - Fixes config override bug
303
+ ([`58c096b`](https://github.com/crypticorn-ai/api-client/commit/58c096b98a738c2c318768bae9f28ddb100fe127))
304
+
305
+ ### Documentation
306
+
307
+ - Extend usage section
308
+ ([`2887872`](https://github.com/crypticorn-ai/api-client/commit/28878720eeb0ad7461165402c5521258c1c7dc0e))
309
+
310
+
311
+ ## v2.4.5 (2025-04-13)
312
+
313
+ ### Bug Fixes
314
+
315
+ - Fixes fallback bug with pydantic
316
+ ([`70d1257`](https://github.com/crypticorn-ai/api-client/commit/70d125723c7e707f765892270e6aa6977b5b25a5))
317
+
318
+
319
+ ## v2.4.4 (2025-04-12)
320
+
321
+ ### Bug Fixes
322
+
323
+ - Auth fixes on auth module
324
+ ([`7c3ed5d`](https://github.com/crypticorn-ai/api-client/commit/7c3ed5d460e464939716361014514baff50d380d))
325
+
326
+ ### Documentation
327
+
328
+ - Update advanced usage section
329
+ ([`1c804bf`](https://github.com/crypticorn-ai/api-client/commit/1c804bf6eddceb19c31a553c1ff98b31fdd8cbc0))
330
+
331
+
332
+ ## v2.4.3 (2025-04-12)
333
+
334
+ ### Bug Fixes
335
+
336
+ - Fix utils import
337
+ ([`29cc346`](https://github.com/crypticorn-ai/api-client/commit/29cc346c2ff835f8732644fbe21aadf62153c1d0))
338
+
339
+
340
+ ## v2.4.2 (2025-04-12)
341
+
342
+ ### Bug Fixes
343
+
344
+ - Add global utils and add http error mapping
345
+ ([`c3ce565`](https://github.com/crypticorn-ai/api-client/commit/c3ce565446535038f196f65b9fdf276a6ce71563))
346
+
347
+
348
+ ## v2.4.1 (2025-04-12)
349
+
350
+ ### Bug Fixes
351
+
352
+ - Add market metrics scopes
353
+ ([`2dc0b4f`](https://github.com/crypticorn-ai/api-client/commit/2dc0b4f1761d5bae07c946448a820d1fc9814288))
354
+
355
+ ### Documentation
356
+
357
+ - Update structure section
358
+ ([`cc77abc`](https://github.com/crypticorn-ai/api-client/commit/cc77abc19b5813e335356f4539654e04b8ba2014))
359
+
360
+
361
+ ## v2.4.0 (2025-04-12)
362
+
363
+ ### Features
364
+
365
+ - Add enum fallbacks, enum validation mixin and enum tests
366
+ ([`63bd61c`](https://github.com/crypticorn-ai/api-client/commit/63bd61cd826f9de1aec40d5f877d82126b59fbf8))
367
+
368
+ - Start cli support for initializing files from templates
369
+ ([`5411d12`](https://github.com/crypticorn-ai/api-client/commit/5411d12704605e6d6af46477ff74e1ac44abd259))
370
+
371
+
372
+ ## v2.3.0 (2025-04-11)
373
+
374
+ ### Features
375
+
376
+ - Add exchange and market enums
377
+ ([`8ad2d7d`](https://github.com/crypticorn-ai/api-client/commit/8ad2d7dc982261f3e710c3e61755ea9613d982c3))
378
+
379
+
380
+ ## v2.2.3 (2025-04-11)
381
+
382
+ ### Bug Fixes
383
+
384
+ - Update error codes
385
+ ([`3121fb0`](https://github.com/crypticorn-ai/api-client/commit/3121fb0bb4d05a6d62083d806fbc636761254448))
386
+
387
+
388
+ ## v2.2.2 (2025-04-09)
389
+
390
+ ### Bug Fixes
391
+
392
+ - Refactor generated model name by partial_model and add to init file
393
+ ([`e663848`](https://github.com/crypticorn-ai/api-client/commit/e6638483bdeb01121749b579268493c7c67227dc))
394
+
395
+
396
+ ## v2.2.1 (2025-04-09)
397
+
398
+ ### Bug Fixes
399
+
400
+ - Add pydantic decorator that makes all fields of a model optional
401
+ ([`1ae4432`](https://github.com/crypticorn-ai/api-client/commit/1ae44325194be3ca86eb72be5d3edc2442dd00cc))
402
+
403
+
404
+ ## v2.2.0 (2025-04-09)
405
+
406
+ ### Bug Fixes
407
+
408
+ - Fix import issues (fixes #22) and add auth module to main client
409
+ ([`7f3f7c2`](https://github.com/crypticorn-ai/api-client/commit/7f3f7c2120af053b916aaa045444331998986f7d))
410
+
411
+ ### Documentation
412
+
413
+ - Update README with configuration and response type sections
414
+ ([`a9fbccf`](https://github.com/crypticorn-ai/api-client/commit/a9fbccfed254573d3e62332901704f39d8a6777f))
415
+
416
+ ### Features
417
+
418
+ - Add module based configuration options for the client
419
+ ([`553400c`](https://github.com/crypticorn-ai/api-client/commit/553400c642d3da4459daa4fa9b56588e9f519581))
420
+
421
+
422
+ ## v2.1.6 (2025-04-08)
423
+
424
+ ### Bug Fixes
425
+
426
+ - Add market metrics module
427
+ ([`2954702`](https://github.com/crypticorn-ai/api-client/commit/29547025a0226bca1b9da9cfff5c89d3ed30f497))
428
+
429
+
430
+ ## v2.1.5 (2025-04-08)
431
+
432
+ ### Bug Fixes
433
+
434
+ - Update auth and trade module
435
+ ([`df936b6`](https://github.com/crypticorn-ai/api-client/commit/df936b6eb76179a3eac6d7997c82ef30e74de860))
436
+
437
+
438
+ ## v2.1.4 (2025-04-08)
439
+
440
+ ### Bug Fixes
441
+
442
+ - Refactor api errors
443
+ ([`885a20e`](https://github.com/crypticorn-ai/api-client/commit/885a20ec839dcf14fb4ec8d946cea76dcb15a65e))
444
+
445
+
446
+ ## v2.1.3 (2025-04-08)
447
+
448
+ ### Bug Fixes
449
+
450
+ - Use SecurityScopes class instead of list[Scope]
451
+ ([`b41c718`](https://github.com/crypticorn-ai/api-client/commit/b41c718acc108e05b307abb399137c2fc30e56fd))
452
+
453
+
454
+ ## v2.1.2 (2025-04-08)
455
+
456
+ ### Bug Fixes
457
+
458
+ - Allow scopes to be set as strings
459
+ ([`600babb`](https://github.com/crypticorn-ai/api-client/commit/600babb87c93aeecdc42aa19ebff1076a76404ea))
460
+
461
+
462
+ ## v2.1.1 (2025-04-08)
463
+
464
+ ### Bug Fixes
465
+
466
+ - Remove three unused scopes
467
+ ([`3167308`](https://github.com/crypticorn-ai/api-client/commit/3167308b3df0c68b8e4c134841b437f40315a8e9))
468
+
469
+
470
+ ## v2.1.0 (2025-04-07)
471
+
472
+ ### Features
473
+
474
+ - Add api key authorization and websocket auth support
475
+ ([`adeb8bd`](https://github.com/crypticorn-ai/api-client/commit/adeb8bdf42ed3da1b63b430f291e920e97d62d14))
476
+
477
+ ### Refactoring
478
+
479
+ - Rename scopes and make requirements more strict
480
+ ([`abf53a6`](https://github.com/crypticorn-ai/api-client/commit/abf53a6de46703a3ac2b0c66c101ec58ae8928f2))
481
+
482
+
483
+ ## v2.0.1 (2025-04-06)
484
+
485
+ ### Bug Fixes
486
+
487
+ - Refactor Scopes and Exception handling in auth client
488
+ ([`8e9a64a`](https://github.com/crypticorn-ai/api-client/commit/8e9a64aa091cc3c840230ad2a7167c98426ae5c9))
489
+
490
+ ### Build System
491
+
492
+ - Fix ci syntax and ssh errors
493
+ ([`9ecfaa4`](https://github.com/crypticorn-ai/api-client/commit/9ecfaa4f09dfa4ae1667f9c1b9307d2623288f5f))
494
+
495
+ - Separate ci and update package config and deps
496
+ ([`5367f2a`](https://github.com/crypticorn-ai/api-client/commit/5367f2a79028ed1f5e2c05ddded91a9ddbd0d9fa))
497
+
498
+ - Update ci
499
+ ([`799fd96`](https://github.com/crypticorn-ai/api-client/commit/799fd962529b0120b290c3f5c253e9050b40a41b))
500
+
501
+ ### Documentation
502
+
503
+ - Update Readme
504
+ ([`39825b1`](https://github.com/crypticorn-ai/api-client/commit/39825b1506c2d5663ae8eecc6f73f8d6bed5692e))
505
+
506
+
507
+ ## v2.0.0 (2025-04-06)
508
+
509
+ ### Build System
510
+
511
+ - Add psr build_command
512
+ ([`b661846`](https://github.com/crypticorn-ai/api-client/commit/b6618464c7d7727d34ab4a448f2e0104fcf4f3cc))
513
+
514
+ - Fix ci-cd
515
+ ([`6edcb36`](https://github.com/crypticorn-ai/api-client/commit/6edcb3611673f191ec482e9d40614c7c2d2b59f3))
516
+
517
+ - Fix signing error in ci
518
+ ([`0dcbf22`](https://github.com/crypticorn-ai/api-client/commit/0dcbf22892dbc17297cf9b91b35d62ec205a76ea))
519
+
520
+ - Fixes pypi packages dir
521
+ ([`a25a458`](https://github.com/crypticorn-ai/api-client/commit/a25a4580c6a656e30d55b52c837480b833cb9aab))
522
+
523
+ - Update ci cd and configure PSR
524
+ ([`e5d6fa5`](https://github.com/crypticorn-ai/api-client/commit/e5d6fa5d2ff4355f59fd4c92e4b9bed77fcae2d8))
525
+
526
+ BREAKING CHANGE: add several more backend api clients and restructure the modules
527
+
528
+
529
+ ## v1.0.0 (2024-11-27)
530
+
531
+ ### Continuous Integration
532
+
533
+ - Trigger workflow on PRs and changes to public folder (close #4)
534
+ ([`08b9317`](https://github.com/crypticorn-ai/api-client/commit/08b931780ac872c6034883cd5ab83d2c7b380414))
535
+
536
+ ### Features
537
+
538
+ - Add get Economics News
539
+ ([`81575b1`](https://github.com/crypticorn-ai/api-client/commit/81575b18a7c925c5dafe18bd9e15807a282134e3))
540
+
541
+ - Add get Economics News
542
+ ([`ccbfb7a`](https://github.com/crypticorn-ai/api-client/commit/ccbfb7a3d857ff5d531ec06f3b9df05b63f8dbf3))
543
+
544
+ - Add get Economics News
545
+ ([`bc6574d`](https://github.com/crypticorn-ai/api-client/commit/bc6574dcadcdc9d05e860fde0aa285a4e7dcba32))
@@ -0,0 +1,2 @@
1
+ graft crypticorn/cli/templates
2
+ include CHANGELOG.md