crypticorn 2.17.0rc4__tar.gz → 2.17.0rc5__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.
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/CHANGELOG.md +13 -0
- {crypticorn-2.17.0rc4/crypticorn.egg-info → crypticorn-2.17.0rc5}/PKG-INFO +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/api/admin_api.py +0 -2
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/api/auth_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/api/service_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/api/user_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/api/wallet_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/api_client.py +0 -5
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/add_wallet_request.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/authorize_user_request.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/create_api_key_request.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/create_user_request.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/get_api_keys200_response_inner.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet_vesting_wallets_inner.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/list_wallets200_response_data_inner.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/logout_default_response.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/oauth_callback200_response_user.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/refresh_token_info200_response_user_session.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/rotate_tokens200_response.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/token_info200_response.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/update_user_request.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/user_by_username200_response.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/verify200_response.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/verify_email200_response_auth.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/verify_email200_response_auth_auth.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/whoami200_response.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/cli/init.py +1 -1
- crypticorn-2.17.0rc5/crypticorn/cli/templates/.env.docker.temp +3 -0
- crypticorn-2.17.0rc5/crypticorn/cli/templates/.env.example.temp +4 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/client.py +0 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/auth.py +1 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/decorators.py +1 -2
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/enums.py +0 -2
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/metrics.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/middleware.py +0 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/pagination.py +116 -24
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/utils.py +1 -2
- crypticorn-2.17.0rc5/crypticorn/dex/__init__.py +6 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/__init__.py +49 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/api/__init__.py +6 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/api/admin_api.py +3046 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/api/signals_api.py +1821 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/api/status_api.py +907 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/api_client.py +753 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/configuration.py +620 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/exceptions.py +220 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/__init__.py +30 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/api_error_identifier.py +121 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/api_error_level.py +37 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/api_error_type.py +37 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/exception_detail.py +117 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/log_level.py +38 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/paginated_response_signal_with_token.py +134 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/risk.py +86 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/signal_overview_stats.py +156 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/signal_volume.py +84 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/signal_with_token.py +163 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/token_data.py +127 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/models/token_detail.py +116 -0
- crypticorn-2.17.0rc5/crypticorn/dex/client/rest.py +217 -0
- crypticorn-2.17.0rc5/crypticorn/dex/main.py +1 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/api/admin_api.py +0 -3
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/api/data_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/api/models_api.py +1 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/api/status_api.py +0 -3
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/api_client.py +0 -5
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/coin_info.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/exception_detail.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/target_info.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/utils.py +2 -2
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/api/admin_api.py +0 -3
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/api/change_in_timeframe_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/api/funding_rates_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/api/ohlcv_data_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/api/status_api.py +0 -3
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/api/symbols_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/api/udf_api.py +0 -2
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/api_client.py +0 -5
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/exception_detail.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/ohlcv.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/symbol_group.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/udf_config.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/api/admin_api.py +0 -3
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/api/exchanges_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/api/indicators_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/api/logs_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/api/marketcap_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/api/markets_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/api/quote_currencies_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/api/status_api.py +0 -3
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/api/tokens_api.py +0 -2
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/api_client.py +0 -5
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/exception_detail.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/exchange_mapping.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/marketcap_ranking.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/marketcap_symbol_ranking.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/ohlcv.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/api/admin_api.py +0 -3
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/api/now_payments_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/api/payments_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/api/products_api.py +0 -4
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/api/status_api.py +0 -3
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/api_client.py +0 -5
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/exception_detail.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/now_create_invoice_req.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/now_create_invoice_res.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/product.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/product_create.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/product_update.py +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/__init__.py +5 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/api/admin_api.py +22 -23
- crypticorn-2.17.0rc5/crypticorn/trade/client/api/bots_api.py +6918 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/api/orders_api.py +220 -106
- crypticorn-2.17.0rc5/crypticorn/trade/client/api_response.py +20 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/configuration.py +2 -2
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/__init__.py +5 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/bot.py +7 -18
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/bot_create.py +17 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/bot_update.py +17 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/exchange_key_create.py +17 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/exchange_key_update.py +17 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/notification.py +17 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/notification_create.py +17 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/notification_update.py +17 -1
- crypticorn-2.17.0rc5/crypticorn/trade/client/models/orders_count.py +88 -0
- crypticorn-2.17.0rc5/crypticorn/trade/client/models/paginated_response_order.py +134 -0
- crypticorn-2.17.0rc5/crypticorn/trade/client/models/pn_l.py +95 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/strategy.py +17 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/strategy_create.py +17 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/strategy_update.py +17 -1
- crypticorn-2.17.0rc5/crypticorn/trade/client/py.typed +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5/crypticorn.egg-info}/PKG-INFO +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn.egg-info/SOURCES.txt +31 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/pyproject.toml +1 -1
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/tests/test_auth_client.py +0 -1
- crypticorn-2.17.0rc5/tests/test_pagination.py +332 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/tests/test_sync_custom_session.py +0 -1
- crypticorn-2.17.0rc4/crypticorn/trade/client/api/bots_api.py +0 -2374
- crypticorn-2.17.0rc4/tests/test_pagination.py +0 -161
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/LICENSE +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/MANIFEST.in +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/README.md +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/api/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/api_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/configuration.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/exceptions.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/add_wallet200_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/authorize_user200_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/authorize_user200_response_auth.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/create_api_key200_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/list_wallets200_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/list_wallets200_response_balances_inner.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/list_wallets200_response_user_value.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/logout_default_response_issues_inner.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/oauth_callback200_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/refresh_token_info200_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/resend_verification_email_request.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/revoke_user_tokens_request.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/unlink_wallet_request.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/user_reset_password_request.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/user_set_password_request.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/verify_email200_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/verify_email_request.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/verify_wallet_request.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/wallet_verified200_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/py.typed +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/rest.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/main.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/cli/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/cli/__main__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/cli/templates/Dockerfile +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/cli/templates/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/cli/templates/auth.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/cli/templates/dependabot.yml +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/cli/templates/merge-env.sh +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/cli/templates/ruff.yml +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/cli/version.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/ansi_colors.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/errors.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/exceptions.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/logging.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/mixins.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/openapi.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/router/admin_router.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/router/status_router.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/scopes.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/urls.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/common/warnings.py +0 -0
- {crypticorn-2.17.0rc4/crypticorn/hive → crypticorn-2.17.0rc5/crypticorn/dex}/client/api_response.py +0 -0
- {crypticorn-2.17.0rc4/crypticorn/hive → crypticorn-2.17.0rc5/crypticorn/dex}/client/py.typed +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/api/__init__.py +0 -0
- {crypticorn-2.17.0rc4/crypticorn/klines → crypticorn-2.17.0rc5/crypticorn/hive}/client/api_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/configuration.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/exceptions.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/api_error_identifier.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/api_error_level.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/api_error_type.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/coins.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/data_download_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/data_info.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/data_options.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/data_version.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/data_version_info.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/download_links.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/evaluation.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/evaluation_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/feature_size.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/log_level.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/model_create.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/model_read.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/model_status.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/model_update.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/target.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/models/target_type.py +0 -0
- {crypticorn-2.17.0rc4/crypticorn/klines → crypticorn-2.17.0rc5/crypticorn/hive}/client/py.typed +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/client/rest.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/hive/main.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/api/__init__.py +0 -0
- {crypticorn-2.17.0rc4/crypticorn/metrics → crypticorn-2.17.0rc5/crypticorn/klines}/client/api_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/configuration.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/exceptions.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/api_error_identifier.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/api_error_level.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/api_error_type.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/change_in_timeframe.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/funding_rate.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/funding_rate_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/internal_exchange.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/log_level.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/market_type.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/resolution.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/search_symbol.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/sort_direction.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/symbol_info.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/symbol_type.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/models/timeframe.py +0 -0
- {crypticorn-2.17.0rc4/crypticorn/metrics → crypticorn-2.17.0rc5/crypticorn/klines}/client/py.typed +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/client/rest.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/klines/main.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/api/__init__.py +0 -0
- {crypticorn-2.17.0rc4/crypticorn/pay → crypticorn-2.17.0rc5/crypticorn/metrics}/client/api_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/configuration.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/exceptions.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/api_error_identifier.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/api_error_level.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/api_error_type.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/exchange_availability.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/internal_exchange.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/log_level.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/market_type.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/severity.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/time_interval.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/models/trading_status.py +0 -0
- {crypticorn-2.17.0rc4/crypticorn/pay → crypticorn-2.17.0rc5/crypticorn/metrics}/client/py.typed +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/client/rest.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/metrics/main.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/api/__init__.py +0 -0
- {crypticorn-2.17.0rc4/crypticorn/trade → crypticorn-2.17.0rc5/crypticorn/pay}/client/api_response.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/configuration.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/exceptions.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/api_error_identifier.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/api_error_level.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/api_error_type.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/log_level.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/payment.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/payment_status.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/provider.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/scope.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/models/subscription.py +0 -0
- {crypticorn-2.17.0rc4/crypticorn/trade → crypticorn-2.17.0rc5/crypticorn/pay}/client/py.typed +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/client/rest.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/pay/main.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/api/__init__.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/api/api_keys_api.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/api/exchanges_api.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/api/notifications_api.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/api/status_api.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/api/strategies_api.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/api/trading_actions_api.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/api_client.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/exceptions.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/api_error_identifier.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/api_error_level.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/api_error_type.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/bot_status.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/exception_detail.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/exchange.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/exchange_key.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/exchange_key_balance.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/execution_ids.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/futures_balance.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/futures_trading_action.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/futures_trading_action_create.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/log_level.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/margin_mode.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/market_type.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/order.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/order_status.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/post_futures_action.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/spot_balance.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/spot_trading_action_create.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/strategy_exchange_info.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/tpsl.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/tpsl_create.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/models/trading_action_type.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/client/rest.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/trade/main.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn.egg-info/dependency_links.txt +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn.egg-info/entry_points.txt +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn.egg-info/requires.txt +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn.egg-info/top_level.txt +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/requirements/dev.txt +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/requirements/extra.txt +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/requirements/main.txt +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/requirements/test.txt +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/setup.cfg +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/static/favicon.svg +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/static/logo.svg +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/static/pip-structure.drawio +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/static/pip-structure.svg +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/tests/test_async_client.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/tests/test_async_custom_session.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/tests/test_common_routers.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/tests/test_config.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/tests/test_enums.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/tests/test_errors.py +0 -0
- {crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/tests/test_sync_client.py +0 -0
@@ -1,6 +1,19 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
3
|
|
4
|
+
## v2.17.0-rc.5 (2025-06-08)
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
- Add new convenience classes for paginating, sorting and filtering query params
|
9
|
+
([`854e3bb`](https://github.com/crypticorn-ai/api-client/commit/854e3bb459a8d76352ee9d9172f9578a045d1452))
|
10
|
+
|
11
|
+
### Testing
|
12
|
+
|
13
|
+
- Update pagination tests
|
14
|
+
([`6378348`](https://github.com/crypticorn-ai/api-client/commit/6378348fa531e1d037f3373422b3ee7245ff2d08))
|
15
|
+
|
16
|
+
|
4
17
|
## v2.17.0-rc.4 (2025-06-06)
|
5
18
|
|
6
19
|
### Features
|
@@ -11,12 +11,10 @@ Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
Do not edit the class manually.
|
12
12
|
""" # noqa: E501
|
13
13
|
|
14
|
-
import warnings
|
15
14
|
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
16
15
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
17
16
|
from typing_extensions import Annotated
|
18
17
|
|
19
|
-
from typing import List
|
20
18
|
from crypticorn.auth.client.models.logout_default_response_issues_inner import (
|
21
19
|
LogoutDefaultResponseIssuesInner,
|
22
20
|
)
|
@@ -11,14 +11,10 @@ Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
Do not edit the class manually.
|
12
12
|
""" # noqa: E501
|
13
13
|
|
14
|
-
import warnings
|
15
14
|
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
16
15
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
17
16
|
from typing_extensions import Annotated
|
18
17
|
|
19
|
-
from pydantic import Field, StrictStr
|
20
|
-
from typing import Any, List, Optional
|
21
|
-
from typing_extensions import Annotated
|
22
18
|
from crypticorn.auth.client.models.authorize_user200_response import (
|
23
19
|
AuthorizeUser200Response,
|
24
20
|
)
|
@@ -11,14 +11,10 @@ Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
Do not edit the class manually.
|
12
12
|
""" # noqa: E501
|
13
13
|
|
14
|
-
import warnings
|
15
14
|
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
16
15
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
17
16
|
from typing_extensions import Annotated
|
18
17
|
|
19
|
-
from pydantic import Field, StrictStr
|
20
|
-
from typing import Optional
|
21
|
-
from typing_extensions import Annotated
|
22
18
|
from crypticorn.auth.client.models.list_wallets200_response_user_value import (
|
23
19
|
ListWallets200ResponseUserValue,
|
24
20
|
)
|
@@ -11,14 +11,10 @@ Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
Do not edit the class manually.
|
12
12
|
""" # noqa: E501
|
13
13
|
|
14
|
-
import warnings
|
15
14
|
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
16
15
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
17
16
|
from typing_extensions import Annotated
|
18
17
|
|
19
|
-
from pydantic import Field, StrictStr
|
20
|
-
from typing import Any, Optional
|
21
|
-
from typing_extensions import Annotated
|
22
18
|
from crypticorn.auth.client.models.create_user_request import CreateUserRequest
|
23
19
|
from crypticorn.auth.client.models.resend_verification_email_request import (
|
24
20
|
ResendVerificationEmailRequest,
|
@@ -11,14 +11,10 @@ Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
Do not edit the class manually.
|
12
12
|
""" # noqa: E501
|
13
13
|
|
14
|
-
import warnings
|
15
14
|
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
16
15
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
17
16
|
from typing_extensions import Annotated
|
18
17
|
|
19
|
-
from pydantic import Field, StrictFloat, StrictInt, StrictStr
|
20
|
-
from typing import Any, Optional, Union
|
21
|
-
from typing_extensions import Annotated
|
22
18
|
from crypticorn.auth.client.models.add_wallet200_response import AddWallet200Response
|
23
19
|
from crypticorn.auth.client.models.add_wallet_request import AddWalletRequest
|
24
20
|
from crypticorn.auth.client.models.list_wallets200_response import (
|
@@ -33,11 +33,6 @@ from crypticorn.auth.client import rest
|
|
33
33
|
from crypticorn.auth.client.exceptions import (
|
34
34
|
ApiValueError,
|
35
35
|
ApiException,
|
36
|
-
BadRequestException,
|
37
|
-
UnauthorizedException,
|
38
|
-
ForbiddenException,
|
39
|
-
NotFoundException,
|
40
|
-
ServiceException,
|
41
36
|
)
|
42
37
|
|
43
38
|
RequestSerialized = Tuple[str, str, Dict[str, str], Optional[str], List[str]]
|
{crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/add_wallet_request.py
RENAMED
@@ -19,7 +19,7 @@ import json
|
|
19
19
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
22
|
-
from typing import
|
22
|
+
from typing import Set
|
23
23
|
from typing_extensions import Self
|
24
24
|
|
25
25
|
|
@@ -20,7 +20,7 @@ import json
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field, StrictBool
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
22
22
|
from typing_extensions import Annotated
|
23
|
-
from typing import
|
23
|
+
from typing import Set
|
24
24
|
from typing_extensions import Self
|
25
25
|
|
26
26
|
|
@@ -21,7 +21,7 @@ from datetime import datetime
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
23
23
|
from typing_extensions import Annotated
|
24
|
-
from typing import
|
24
|
+
from typing import Set
|
25
25
|
from typing_extensions import Self
|
26
26
|
|
27
27
|
|
{crypticorn-2.17.0rc4 → crypticorn-2.17.0rc5}/crypticorn/auth/client/models/create_user_request.py
RENAMED
@@ -20,7 +20,7 @@ import json
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
22
22
|
from typing_extensions import Annotated
|
23
|
-
from typing import
|
23
|
+
from typing import Set
|
24
24
|
from typing_extensions import Self
|
25
25
|
|
26
26
|
|
@@ -20,7 +20,7 @@ import json
|
|
20
20
|
from datetime import datetime
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
23
|
-
from typing import
|
23
|
+
from typing import Set
|
24
24
|
from typing_extensions import Self
|
25
25
|
|
26
26
|
|
@@ -20,7 +20,7 @@ import json
|
|
20
20
|
from datetime import datetime
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
23
|
-
from typing import
|
23
|
+
from typing import Set
|
24
24
|
from typing_extensions import Self
|
25
25
|
|
26
26
|
|
@@ -22,7 +22,7 @@ from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
22
22
|
from crypticorn.auth.client.models.list_wallets200_response_balances_inner_wallet_vesting_wallets_inner import (
|
23
23
|
ListWallets200ResponseBalancesInnerWalletVestingWalletsInner,
|
24
24
|
)
|
25
|
-
from typing import
|
25
|
+
from typing import Set
|
26
26
|
from typing_extensions import Self
|
27
27
|
|
28
28
|
|
@@ -20,7 +20,7 @@ import json
|
|
20
20
|
from datetime import datetime
|
21
21
|
from pydantic import BaseModel, ConfigDict, StrictStr
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
23
|
-
from typing import
|
23
|
+
from typing import Set
|
24
24
|
from typing_extensions import Self
|
25
25
|
|
26
26
|
|
@@ -22,7 +22,7 @@ from typing import Any, ClassVar, Dict, List, Optional
|
|
22
22
|
from crypticorn.auth.client.models.logout_default_response_issues_inner import (
|
23
23
|
LogoutDefaultResponseIssuesInner,
|
24
24
|
)
|
25
|
-
from typing import
|
25
|
+
from typing import Set
|
26
26
|
from typing_extensions import Self
|
27
27
|
|
28
28
|
|
@@ -20,7 +20,7 @@ import json
|
|
20
20
|
from datetime import datetime
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
23
|
-
from typing import
|
23
|
+
from typing import Set
|
24
24
|
from typing_extensions import Self
|
25
25
|
|
26
26
|
|
@@ -22,7 +22,7 @@ from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
22
22
|
from crypticorn.auth.client.models.verify_email200_response_auth_auth import (
|
23
23
|
VerifyEmail200ResponseAuthAuth,
|
24
24
|
)
|
25
|
-
from typing import
|
25
|
+
from typing import Set
|
26
26
|
from typing_extensions import Self
|
27
27
|
|
28
28
|
|
@@ -22,7 +22,7 @@ from typing import Any, ClassVar, Dict, List, Optional
|
|
22
22
|
from crypticorn.auth.client.models.verify_email200_response_auth_auth import (
|
23
23
|
VerifyEmail200ResponseAuthAuth,
|
24
24
|
)
|
25
|
-
from typing import
|
25
|
+
from typing import Set
|
26
26
|
from typing_extensions import Self
|
27
27
|
|
28
28
|
|
@@ -22,7 +22,7 @@ from typing import Any, ClassVar, Dict, List, Optional
|
|
22
22
|
from crypticorn.auth.client.models.verify_email200_response_auth_auth import (
|
23
23
|
VerifyEmail200ResponseAuthAuth,
|
24
24
|
)
|
25
|
-
from typing import
|
25
|
+
from typing import Set
|
26
26
|
from typing_extensions import Self
|
27
27
|
|
28
28
|
|
@@ -33,7 +33,7 @@ def copy_template(template_name: str, target_path: Path):
|
|
33
33
|
|
34
34
|
def check_file_exists(path: Path, force: bool):
|
35
35
|
if path.exists() and not force:
|
36
|
-
click.secho(
|
36
|
+
click.secho("File already exists, use --force / -f to overwrite", fg="red")
|
37
37
|
return False
|
38
38
|
return True
|
39
39
|
|
@@ -7,7 +7,6 @@ from crypticorn.common.exceptions import (
|
|
7
7
|
ApiError,
|
8
8
|
HTTPException,
|
9
9
|
ExceptionContent,
|
10
|
-
WebSocketException,
|
11
10
|
)
|
12
11
|
from crypticorn.common.urls import BaseUrl, Service, ApiVersion
|
13
12
|
from fastapi import Depends, Query
|
@@ -266,6 +265,4 @@ class AuthHandler:
|
|
266
265
|
if bearer
|
267
266
|
else None
|
268
267
|
)
|
269
|
-
return await self.combined_auth(
|
270
|
-
bearer=credentials, api_key=api_key, sec=sec
|
271
|
-
)
|
268
|
+
return await self.combined_auth(bearer=credentials, api_key=api_key, sec=sec)
|
@@ -1,8 +1,7 @@
|
|
1
|
-
from datetime import datetime
|
2
1
|
from typing import Optional, Type, Any, Tuple
|
3
2
|
from copy import deepcopy
|
4
3
|
|
5
|
-
from pydantic import BaseModel, create_model
|
4
|
+
from pydantic import BaseModel, create_model
|
6
5
|
from pydantic.fields import FieldInfo
|
7
6
|
|
8
7
|
|
@@ -2,7 +2,6 @@ import time
|
|
2
2
|
from fastapi import FastAPI
|
3
3
|
from fastapi.middleware.cors import CORSMiddleware
|
4
4
|
from starlette.middleware.base import BaseHTTPMiddleware
|
5
|
-
from starlette.requests import Request
|
6
5
|
from crypticorn.common.logging import configure_logging
|
7
6
|
from contextlib import asynccontextmanager
|
8
7
|
from typing_extensions import deprecated
|