crypticorn 2.17.0rc7__py3-none-any.whl → 2.18.0__py3-none-any.whl
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/auth/client/api/admin_api.py +2 -0
- crypticorn/auth/client/api/auth_api.py +1417 -545
- crypticorn/auth/client/api/service_api.py +4 -0
- crypticorn/auth/client/api/user_api.py +4 -0
- crypticorn/auth/client/api/wallet_api.py +4 -0
- crypticorn/auth/client/api_client.py +5 -0
- crypticorn/auth/client/configuration.py +2 -2
- crypticorn/auth/client/models/add_wallet_request.py +1 -1
- crypticorn/auth/client/models/authorize_user_request.py +1 -1
- crypticorn/auth/client/models/create_api_key_request.py +3 -3
- crypticorn/auth/client/models/create_user_request.py +1 -1
- crypticorn/auth/client/models/get_api_keys200_response_inner.py +3 -3
- crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py +1 -1
- crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet.py +1 -1
- crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet_vesting_wallets_inner.py +1 -1
- crypticorn/auth/client/models/list_wallets200_response_data_inner.py +1 -1
- crypticorn/auth/client/models/logout_default_response.py +1 -1
- crypticorn/auth/client/models/oauth_callback200_response_user.py +1 -1
- crypticorn/auth/client/models/refresh_token_info200_response_user_session.py +1 -1
- crypticorn/auth/client/models/rotate_tokens200_response.py +1 -1
- crypticorn/auth/client/models/token_info200_response.py +1 -1
- crypticorn/auth/client/models/update_user_request.py +1 -1
- crypticorn/auth/client/models/user_by_username200_response.py +1 -1
- crypticorn/auth/client/models/verify200_response.py +1 -1
- crypticorn/auth/client/models/verify_email200_response_auth.py +1 -1
- crypticorn/auth/client/models/verify_email200_response_auth_auth.py +1 -1
- crypticorn/auth/client/models/whoami200_response.py +1 -1
- crypticorn/common/__init__.py +11 -11
- crypticorn/common/auth.py +109 -57
- crypticorn/common/decorators.py +1 -1
- crypticorn/common/enums.py +1 -0
- crypticorn/common/errors.py +7 -21
- crypticorn/common/exceptions.py +33 -17
- crypticorn/common/logging.py +5 -4
- crypticorn/common/metrics.py +17 -5
- crypticorn/common/middleware.py +61 -12
- crypticorn/common/mixins.py +2 -1
- crypticorn/common/pagination.py +3 -2
- crypticorn/common/router/admin_router.py +17 -6
- crypticorn/common/router/status_router.py +3 -26
- crypticorn/common/utils.py +6 -6
- crypticorn/common/warnings.py +1 -0
- crypticorn/dex/client/api/admin_api.py +3 -0
- crypticorn/dex/client/api/signals_api.py +27 -23
- crypticorn/dex/client/api/status_api.py +3 -0
- crypticorn/dex/client/api_client.py +5 -0
- crypticorn/dex/client/configuration.py +2 -2
- crypticorn/dex/client/models/exception_detail.py +1 -1
- crypticorn/dex/client/models/paginated_response_signal_with_token.py +1 -1
- crypticorn/dex/client/models/signal_overview_stats.py +4 -2
- crypticorn/dex/client/models/signal_volume.py +4 -4
- crypticorn/dex/client/models/signal_with_token.py +2 -2
- crypticorn/dex/client/models/token_detail.py +1 -1
- crypticorn/klines/main.py +1 -1
- crypticorn/metrics/main.py +1 -1
- crypticorn/trade/client/__init__.py +1 -7
- crypticorn/trade/client/api/admin_api.py +0 -402
- crypticorn/trade/client/api/trading_actions_api.py +86 -315
- crypticorn/trade/client/models/__init__.py +1 -7
- crypticorn/trade/client/models/actions_count.py +88 -0
- crypticorn/trade/client/models/api_error_identifier.py +1 -0
- crypticorn/trade/client/models/exchange_key.py +1 -1
- crypticorn/trade/client/models/exchange_key_balance.py +1 -1
- crypticorn/trade/client/models/execution_ids.py +1 -1
- crypticorn/trade/client/models/notification_create.py +1 -1
- crypticorn/trade/client/models/post_futures_action.py +1 -1
- crypticorn/trade/client/models/spot_balance.py +6 -7
- crypticorn/trade/client/models/tpsl.py +4 -19
- crypticorn/trade/client/models/tpsl_create.py +6 -19
- {crypticorn-2.17.0rc7.dist-info → crypticorn-2.18.0.dist-info}/METADATA +1 -1
- {crypticorn-2.17.0rc7.dist-info → crypticorn-2.18.0.dist-info}/RECORD +75 -77
- crypticorn/trade/client/models/paginated_response_union_futures_trading_action_spot_trading_action.py +0 -141
- crypticorn/trade/client/models/paginated_response_union_futures_trading_action_spot_trading_action_data_inner.py +0 -165
- crypticorn/trade/client/models/spot_trading_action.py +0 -207
- {crypticorn-2.17.0rc7.dist-info → crypticorn-2.18.0.dist-info}/WHEEL +0 -0
- {crypticorn-2.17.0rc7.dist-info → crypticorn-2.18.0.dist-info}/entry_points.txt +0 -0
- {crypticorn-2.17.0rc7.dist-info → crypticorn-2.18.0.dist-info}/licenses/LICENSE +0 -0
- {crypticorn-2.17.0rc7.dist-info → crypticorn-2.18.0.dist-info}/top_level.txt +0 -0
@@ -11,10 +11,12 @@ 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
|
14
15
|
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
15
16
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
16
17
|
from typing_extensions import Annotated
|
17
18
|
|
19
|
+
from typing import List
|
18
20
|
from crypticorn.auth.client.models.logout_default_response_issues_inner import (
|
19
21
|
LogoutDefaultResponseIssuesInner,
|
20
22
|
)
|