crypticorn 1.0.2rc3__py3-none-any.whl → 2.0.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/__init__.py +3 -3
- crypticorn/auth/__init__.py +2 -0
- crypticorn/auth/client/__init__.py +112 -0
- crypticorn/auth/client/api/__init__.py +8 -0
- crypticorn/auth/client/api/admin_api.py +522 -0
- crypticorn/auth/client/api/auth_api.py +2089 -0
- crypticorn/auth/client/api/service_api.py +309 -0
- crypticorn/auth/client/api/user_api.py +2540 -0
- crypticorn/auth/client/api/wallet_api.py +1698 -0
- crypticorn/auth/client/api_client.py +758 -0
- crypticorn/auth/client/api_response.py +20 -0
- crypticorn/auth/client/configuration.py +584 -0
- crypticorn/auth/client/exceptions.py +220 -0
- crypticorn/auth/client/models/__init__.py +91 -0
- crypticorn/auth/client/models/add_wallet200_response.py +86 -0
- crypticorn/auth/client/models/add_wallet_request.py +107 -0
- crypticorn/auth/client/models/authorize_user200_response.py +107 -0
- crypticorn/auth/client/models/authorize_user200_response_auth.py +101 -0
- crypticorn/auth/client/models/authorize_user_request.py +96 -0
- crypticorn/auth/client/models/create_user_request.py +114 -0
- crypticorn/auth/client/models/list_wallets200_response.py +137 -0
- crypticorn/auth/client/models/list_wallets200_response_balances_inner.py +115 -0
- crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py +115 -0
- crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet.py +168 -0
- crypticorn/auth/client/models/list_wallets200_response_balances_inner_wallet_vesting_wallets_inner.py +191 -0
- crypticorn/auth/client/models/list_wallets200_response_data_inner.py +102 -0
- crypticorn/auth/client/models/list_wallets200_response_user_value.py +118 -0
- crypticorn/auth/client/models/logout_default_response.py +108 -0
- crypticorn/auth/client/models/logout_default_response_issues_inner.py +83 -0
- crypticorn/auth/client/models/refresh_token_info200_response.py +97 -0
- crypticorn/auth/client/models/refresh_token_info200_response_user_session.py +105 -0
- crypticorn/auth/client/models/resend_verification_email_request.py +84 -0
- crypticorn/auth/client/models/revoke_user_tokens_request.py +83 -0
- crypticorn/auth/client/models/rotate_tokens200_response.py +110 -0
- crypticorn/auth/client/models/token_info200_response.py +97 -0
- crypticorn/auth/client/models/unlink_wallet_request.py +83 -0
- crypticorn/auth/client/models/update_user_request.py +93 -0
- crypticorn/auth/client/models/user_reset_password_request.py +87 -0
- crypticorn/auth/client/models/user_set_password_request.py +89 -0
- crypticorn/auth/client/models/verify200_response.py +110 -0
- crypticorn/auth/client/models/verify_email200_response.py +107 -0
- crypticorn/auth/client/models/verify_email200_response_auth.py +101 -0
- crypticorn/auth/client/models/verify_email200_response_auth_auth.py +110 -0
- crypticorn/auth/client/models/verify_email_request.py +83 -0
- crypticorn/auth/client/models/verify_wallet_request.py +91 -0
- crypticorn/auth/client/models/wallet_verified200_response.py +83 -0
- crypticorn/auth/client/models/whoami200_response.py +104 -0
- crypticorn/auth/client/rest.py +195 -0
- crypticorn/auth/main.py +45 -0
- crypticorn/client.py +46 -8
- crypticorn/common/__init__.py +5 -0
- crypticorn/common/auth.py +43 -0
- crypticorn/common/auth_client.py +163 -0
- crypticorn/common/errors.py +432 -0
- crypticorn/common/scopes.py +29 -0
- crypticorn/common/urls.py +25 -0
- crypticorn/hive/__init__.py +2 -1
- crypticorn/hive/client/__init__.py +57 -0
- crypticorn/hive/client/api/__init__.py +6 -0
- crypticorn/hive/client/api/data_api.py +594 -0
- crypticorn/hive/client/api/models_api.py +1680 -0
- crypticorn/hive/client/api/status_api.py +263 -0
- crypticorn/hive/client/api_client.py +758 -0
- crypticorn/hive/client/api_response.py +20 -0
- crypticorn/hive/client/configuration.py +612 -0
- crypticorn/hive/client/exceptions.py +220 -0
- crypticorn/hive/client/models/__init__.py +38 -0
- crypticorn/hive/client/models/coins.py +44 -0
- crypticorn/hive/client/models/data_download_response.py +113 -0
- crypticorn/hive/client/models/data_info.py +115 -0
- crypticorn/hive/client/models/data_value_value_value_inner.py +154 -0
- crypticorn/hive/client/models/data_version.py +35 -0
- crypticorn/hive/client/models/download_links.py +91 -0
- crypticorn/hive/client/models/evaluation.py +86 -0
- crypticorn/hive/client/models/evaluation_response.py +85 -0
- crypticorn/hive/client/models/feature_size.py +36 -0
- crypticorn/hive/client/models/http_validation_error.py +99 -0
- crypticorn/hive/client/models/model.py +133 -0
- crypticorn/hive/client/models/model_create.py +93 -0
- crypticorn/hive/client/models/model_status.py +35 -0
- crypticorn/hive/client/models/model_update.py +83 -0
- crypticorn/hive/client/models/target.py +36 -0
- crypticorn/hive/client/models/target_type.py +35 -0
- crypticorn/hive/client/models/validation_error.py +105 -0
- crypticorn/hive/client/models/validation_error_loc_inner.py +159 -0
- crypticorn/hive/client/py.typed +0 -0
- crypticorn/hive/client/rest.py +195 -0
- crypticorn/hive/main.py +27 -100
- crypticorn/klines/client/__init__.py +21 -7
- crypticorn/klines/client/api/__init__.py +0 -1
- crypticorn/klines/client/api/funding_rates_api.py +90 -79
- crypticorn/klines/client/api/health_check_api.py +29 -45
- crypticorn/klines/client/api/ohlcv_data_api.py +104 -87
- crypticorn/klines/client/api/symbols_api.py +36 -54
- crypticorn/klines/client/api/udf_api.py +228 -352
- crypticorn/klines/client/api_client.py +106 -148
- crypticorn/klines/client/api_response.py +2 -3
- crypticorn/klines/client/configuration.py +64 -50
- crypticorn/klines/client/exceptions.py +20 -16
- crypticorn/klines/client/models/__init__.py +21 -7
- crypticorn/klines/client/models/base_response_health_check_response.py +21 -15
- crypticorn/klines/client/models/base_response_list_funding_rate_response.py +21 -15
- crypticorn/klines/client/models/base_response_list_str.py +16 -14
- crypticorn/klines/client/models/base_response_ohlcv_response.py +21 -15
- crypticorn/klines/client/models/error_response.py +23 -15
- crypticorn/klines/client/models/exchange.py +11 -11
- crypticorn/klines/client/models/funding_rate_response.py +11 -11
- crypticorn/klines/client/models/health_check_response.py +14 -12
- crypticorn/klines/client/models/history_error_response.py +11 -11
- crypticorn/klines/client/models/history_no_data_response.py +16 -16
- crypticorn/klines/client/models/history_success_response.py +16 -16
- crypticorn/klines/client/models/http_validation_error.py +14 -10
- crypticorn/klines/client/models/market.py +2 -4
- crypticorn/klines/client/models/ohlcv_response.py +22 -15
- crypticorn/klines/client/models/resolution.py +5 -7
- crypticorn/klines/client/models/response_get_history_udf_history_get.py +71 -22
- crypticorn/klines/client/models/search_symbol_response.py +22 -15
- crypticorn/klines/client/models/sort_direction.py +2 -4
- crypticorn/klines/client/models/symbol_group_response.py +5 -9
- crypticorn/klines/client/models/symbol_info_response.py +40 -24
- crypticorn/klines/client/models/symbol_type.py +5 -10
- crypticorn/klines/client/models/timeframe.py +5 -7
- crypticorn/klines/client/models/udf_config_response.py +60 -21
- crypticorn/klines/client/models/validation_error.py +19 -13
- crypticorn/klines/client/models/validation_error_loc_inner.py +32 -11
- crypticorn/klines/client/rest.py +30 -41
- crypticorn/klines/main.py +52 -15
- crypticorn/pay/__init__.py +2 -0
- crypticorn/pay/client/__init__.py +52 -0
- crypticorn/pay/client/api/__init__.py +7 -0
- crypticorn/pay/client/api/now_payments_api.py +813 -0
- crypticorn/pay/client/api/payments_api.py +799 -0
- crypticorn/pay/client/api/products_api.py +891 -0
- crypticorn/pay/client/api/status_api.py +260 -0
- crypticorn/pay/client/api_client.py +758 -0
- crypticorn/pay/client/api_response.py +20 -0
- crypticorn/pay/client/configuration.py +612 -0
- crypticorn/pay/client/exceptions.py +220 -0
- crypticorn/pay/client/models/__init__.py +32 -0
- crypticorn/pay/client/models/api_status_res.py +83 -0
- crypticorn/pay/client/models/combined_payment_history.py +101 -0
- crypticorn/pay/client/models/create_invoice_req.py +188 -0
- crypticorn/pay/client/models/create_invoice_res.py +188 -0
- crypticorn/pay/client/models/currency.py +165 -0
- crypticorn/pay/client/models/estimate_price_req.py +91 -0
- crypticorn/pay/client/models/estimate_price_res.py +102 -0
- crypticorn/pay/client/models/get_currencies_res.py +99 -0
- crypticorn/pay/client/models/get_payment_status_res.py +222 -0
- crypticorn/pay/client/models/get_payments_list_res.py +109 -0
- crypticorn/pay/client/models/http_validation_error.py +99 -0
- crypticorn/pay/client/models/min_amount_req.py +124 -0
- crypticorn/pay/client/models/min_amount_res.py +105 -0
- crypticorn/pay/client/models/now_api_status_res.py +83 -0
- crypticorn/pay/client/models/now_create_invoice_req.py +188 -0
- crypticorn/pay/client/models/now_create_invoice_res.py +188 -0
- crypticorn/pay/client/models/now_fee_structure.py +104 -0
- crypticorn/pay/client/models/now_payment_model.py +124 -0
- crypticorn/pay/client/models/now_payment_status.py +42 -0
- crypticorn/pay/client/models/now_webhook_payload.py +181 -0
- crypticorn/pay/client/models/payment.py +231 -0
- crypticorn/pay/client/models/payment_status.py +40 -0
- crypticorn/pay/client/models/product.py +87 -0
- crypticorn/pay/client/models/product_model.py +119 -0
- crypticorn/pay/client/models/product_subs_model.py +108 -0
- crypticorn/pay/client/models/services.py +34 -0
- crypticorn/pay/client/models/unified_payment_model.py +112 -0
- crypticorn/pay/client/models/validation_error.py +105 -0
- crypticorn/pay/client/models/validation_error_loc_inner.py +159 -0
- crypticorn/pay/client/py.typed +0 -0
- crypticorn/pay/client/rest.py +195 -0
- crypticorn/pay/main.py +35 -0
- crypticorn/trade/client/__init__.py +9 -4
- crypticorn/trade/client/api/__init__.py +0 -1
- crypticorn/trade/client/api/api_keys_api.py +203 -304
- crypticorn/trade/client/api/bots_api.py +177 -250
- crypticorn/trade/client/api/exchanges_api.py +38 -57
- crypticorn/trade/client/api/futures_trading_panel_api.py +223 -321
- crypticorn/trade/client/api/notifications_api.py +247 -364
- crypticorn/trade/client/api/orders_api.py +44 -63
- crypticorn/trade/client/api/status_api.py +35 -53
- crypticorn/trade/client/api/strategies_api.py +852 -64
- crypticorn/trade/client/api/trading_actions_api.py +126 -203
- crypticorn/trade/client/api_client.py +115 -154
- crypticorn/trade/client/api_response.py +2 -3
- crypticorn/trade/client/configuration.py +128 -90
- crypticorn/trade/client/exceptions.py +21 -17
- crypticorn/trade/client/models/__init__.py +9 -4
- crypticorn/trade/client/models/action_model.py +114 -50
- crypticorn/trade/client/models/api_error_identifier.py +60 -51
- crypticorn/trade/client/models/api_error_level.py +37 -0
- crypticorn/trade/client/models/api_error_type.py +37 -0
- crypticorn/trade/client/models/api_key_model.py +49 -28
- crypticorn/trade/client/models/bot_model.py +76 -31
- crypticorn/trade/client/models/bot_status.py +37 -0
- crypticorn/trade/client/models/exchange.py +3 -5
- crypticorn/trade/client/models/execution_ids.py +14 -14
- crypticorn/trade/client/models/futures_balance.py +39 -23
- crypticorn/trade/client/models/futures_trading_action.py +98 -46
- crypticorn/trade/client/models/http_validation_error.py +15 -11
- crypticorn/trade/client/models/margin_mode.py +3 -5
- crypticorn/trade/client/models/market_type.py +3 -5
- crypticorn/trade/client/models/notification_model.py +60 -27
- crypticorn/trade/client/models/notification_type.py +4 -6
- crypticorn/trade/client/models/order_model.py +125 -65
- crypticorn/trade/client/models/order_status.py +6 -8
- crypticorn/trade/client/models/post_futures_action.py +16 -12
- crypticorn/trade/client/models/strategy_exchange_info.py +11 -12
- crypticorn/trade/client/models/strategy_model.py +66 -27
- crypticorn/trade/client/models/strategy_model_input.py +160 -0
- crypticorn/trade/client/models/strategy_model_output.py +160 -0
- crypticorn/trade/client/models/tpsl.py +35 -21
- crypticorn/trade/client/models/trading_action_type.py +5 -7
- crypticorn/trade/client/models/update_notification.py +17 -13
- crypticorn/trade/client/models/validation_error.py +20 -14
- crypticorn/trade/client/models/validation_error_loc_inner.py +33 -12
- crypticorn/trade/client/rest.py +108 -170
- crypticorn/trade/main.py +26 -19
- crypticorn-2.0.0.dist-info/METADATA +74 -0
- crypticorn-2.0.0.dist-info/RECORD +226 -0
- {crypticorn-1.0.2rc3.dist-info → crypticorn-2.0.0.dist-info}/WHEEL +1 -1
- crypticorn/hive/requirements.txt +0 -4
- crypticorn/hive/utils.py +0 -109
- crypticorn/klines/requirements.txt +0 -4
- crypticorn/klines/test/test_base_response_health_check_response.py +0 -56
- crypticorn/klines/test/test_base_response_list_funding_rate_response.py +0 -59
- crypticorn/klines/test/test_base_response_list_str.py +0 -56
- crypticorn/klines/test/test_base_response_ohlcv_response.py +0 -72
- crypticorn/klines/test/test_error_response.py +0 -57
- crypticorn/klines/test/test_exchange.py +0 -56
- crypticorn/klines/test/test_funding_rate_response.py +0 -56
- crypticorn/klines/test/test_funding_rates_api.py +0 -38
- crypticorn/klines/test/test_health_check_api.py +0 -38
- crypticorn/klines/test/test_health_check_response.py +0 -52
- crypticorn/klines/test/test_history_error_response.py +0 -53
- crypticorn/klines/test/test_history_no_data_response.py +0 -69
- crypticorn/klines/test/test_history_success_response.py +0 -87
- crypticorn/klines/test/test_http_validation_error.py +0 -58
- crypticorn/klines/test/test_market.py +0 -33
- crypticorn/klines/test/test_ohlcv_data_api.py +0 -38
- crypticorn/klines/test/test_ohlcv_response.py +0 -86
- crypticorn/klines/test/test_resolution.py +0 -33
- crypticorn/klines/test/test_response_get_history_udf_history_get.py +0 -89
- crypticorn/klines/test/test_search_symbol_response.py +0 -62
- crypticorn/klines/test/test_sort_direction.py +0 -33
- crypticorn/klines/test/test_symbol_group_response.py +0 -53
- crypticorn/klines/test/test_symbol_info_response.py +0 -84
- crypticorn/klines/test/test_symbol_type.py +0 -54
- crypticorn/klines/test/test_symbols_api.py +0 -38
- crypticorn/klines/test/test_timeframe.py +0 -33
- crypticorn/klines/test/test_udf_api.py +0 -80
- crypticorn/klines/test/test_udf_config_response.py +0 -95
- crypticorn/klines/test/test_validation_error.py +0 -60
- crypticorn/klines/test/test_validation_error_loc_inner.py +0 -50
- crypticorn/trade/requirements.txt +0 -4
- crypticorn-1.0.2rc3.dist-info/LICENSE.md +0 -19
- crypticorn-1.0.2rc3.dist-info/METADATA +0 -47
- crypticorn-1.0.2rc3.dist-info/RECORD +0 -128
- /crypticorn/{klines/test/__init__.py → auth/client/py.typed} +0 -0
- {crypticorn-1.0.2rc3.dist-info → crypticorn-2.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,220 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
Crypticorn Auth API
|
5
|
+
|
6
|
+
OpenAPI compliant REST API built using tRPC with Express
|
7
|
+
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
""" # noqa: E501
|
13
|
+
|
14
|
+
from typing import Any, Optional
|
15
|
+
from typing_extensions import Self
|
16
|
+
|
17
|
+
|
18
|
+
class OpenApiException(Exception):
|
19
|
+
"""The base exception class for all OpenAPIExceptions"""
|
20
|
+
|
21
|
+
|
22
|
+
class ApiTypeError(OpenApiException, TypeError):
|
23
|
+
def __init__(
|
24
|
+
self, msg, path_to_item=None, valid_classes=None, key_type=None
|
25
|
+
) -> None:
|
26
|
+
"""Raises an exception for TypeErrors
|
27
|
+
|
28
|
+
Args:
|
29
|
+
msg (str): the exception message
|
30
|
+
|
31
|
+
Keyword Args:
|
32
|
+
path_to_item (list): a list of keys an indices to get to the
|
33
|
+
current_item
|
34
|
+
None if unset
|
35
|
+
valid_classes (tuple): the primitive classes that current item
|
36
|
+
should be an instance of
|
37
|
+
None if unset
|
38
|
+
key_type (bool): False if our value is a value in a dict
|
39
|
+
True if it is a key in a dict
|
40
|
+
False if our item is an item in a list
|
41
|
+
None if unset
|
42
|
+
"""
|
43
|
+
self.path_to_item = path_to_item
|
44
|
+
self.valid_classes = valid_classes
|
45
|
+
self.key_type = key_type
|
46
|
+
full_msg = msg
|
47
|
+
if path_to_item:
|
48
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
49
|
+
super(ApiTypeError, self).__init__(full_msg)
|
50
|
+
|
51
|
+
|
52
|
+
class ApiValueError(OpenApiException, ValueError):
|
53
|
+
def __init__(self, msg, path_to_item=None) -> None:
|
54
|
+
"""
|
55
|
+
Args:
|
56
|
+
msg (str): the exception message
|
57
|
+
|
58
|
+
Keyword Args:
|
59
|
+
path_to_item (list) the path to the exception in the
|
60
|
+
received_data dict. None if unset
|
61
|
+
"""
|
62
|
+
|
63
|
+
self.path_to_item = path_to_item
|
64
|
+
full_msg = msg
|
65
|
+
if path_to_item:
|
66
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
67
|
+
super(ApiValueError, self).__init__(full_msg)
|
68
|
+
|
69
|
+
|
70
|
+
class ApiAttributeError(OpenApiException, AttributeError):
|
71
|
+
def __init__(self, msg, path_to_item=None) -> None:
|
72
|
+
"""
|
73
|
+
Raised when an attribute reference or assignment fails.
|
74
|
+
|
75
|
+
Args:
|
76
|
+
msg (str): the exception message
|
77
|
+
|
78
|
+
Keyword Args:
|
79
|
+
path_to_item (None/list) the path to the exception in the
|
80
|
+
received_data dict
|
81
|
+
"""
|
82
|
+
self.path_to_item = path_to_item
|
83
|
+
full_msg = msg
|
84
|
+
if path_to_item:
|
85
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
86
|
+
super(ApiAttributeError, self).__init__(full_msg)
|
87
|
+
|
88
|
+
|
89
|
+
class ApiKeyError(OpenApiException, KeyError):
|
90
|
+
def __init__(self, msg, path_to_item=None) -> None:
|
91
|
+
"""
|
92
|
+
Args:
|
93
|
+
msg (str): the exception message
|
94
|
+
|
95
|
+
Keyword Args:
|
96
|
+
path_to_item (None/list) the path to the exception in the
|
97
|
+
received_data dict
|
98
|
+
"""
|
99
|
+
self.path_to_item = path_to_item
|
100
|
+
full_msg = msg
|
101
|
+
if path_to_item:
|
102
|
+
full_msg = "{0} at {1}".format(msg, render_path(path_to_item))
|
103
|
+
super(ApiKeyError, self).__init__(full_msg)
|
104
|
+
|
105
|
+
|
106
|
+
class ApiException(OpenApiException):
|
107
|
+
|
108
|
+
def __init__(
|
109
|
+
self,
|
110
|
+
status=None,
|
111
|
+
reason=None,
|
112
|
+
http_resp=None,
|
113
|
+
*,
|
114
|
+
body: Optional[str] = None,
|
115
|
+
data: Optional[Any] = None,
|
116
|
+
) -> None:
|
117
|
+
self.status = status
|
118
|
+
self.reason = reason
|
119
|
+
self.body = body
|
120
|
+
self.data = data
|
121
|
+
self.headers = None
|
122
|
+
|
123
|
+
if http_resp:
|
124
|
+
if self.status is None:
|
125
|
+
self.status = http_resp.status
|
126
|
+
if self.reason is None:
|
127
|
+
self.reason = http_resp.reason
|
128
|
+
if self.body is None:
|
129
|
+
try:
|
130
|
+
self.body = http_resp.data.decode("utf-8")
|
131
|
+
except Exception:
|
132
|
+
pass
|
133
|
+
self.headers = http_resp.getheaders()
|
134
|
+
|
135
|
+
@classmethod
|
136
|
+
def from_response(
|
137
|
+
cls,
|
138
|
+
*,
|
139
|
+
http_resp,
|
140
|
+
body: Optional[str],
|
141
|
+
data: Optional[Any],
|
142
|
+
) -> Self:
|
143
|
+
if http_resp.status == 400:
|
144
|
+
raise BadRequestException(http_resp=http_resp, body=body, data=data)
|
145
|
+
|
146
|
+
if http_resp.status == 401:
|
147
|
+
raise UnauthorizedException(http_resp=http_resp, body=body, data=data)
|
148
|
+
|
149
|
+
if http_resp.status == 403:
|
150
|
+
raise ForbiddenException(http_resp=http_resp, body=body, data=data)
|
151
|
+
|
152
|
+
if http_resp.status == 404:
|
153
|
+
raise NotFoundException(http_resp=http_resp, body=body, data=data)
|
154
|
+
|
155
|
+
# Added new conditions for 409 and 422
|
156
|
+
if http_resp.status == 409:
|
157
|
+
raise ConflictException(http_resp=http_resp, body=body, data=data)
|
158
|
+
|
159
|
+
if http_resp.status == 422:
|
160
|
+
raise UnprocessableEntityException(
|
161
|
+
http_resp=http_resp, body=body, data=data
|
162
|
+
)
|
163
|
+
|
164
|
+
if 500 <= http_resp.status <= 599:
|
165
|
+
raise ServiceException(http_resp=http_resp, body=body, data=data)
|
166
|
+
raise ApiException(http_resp=http_resp, body=body, data=data)
|
167
|
+
|
168
|
+
def __str__(self):
|
169
|
+
"""Custom error messages for exception"""
|
170
|
+
error_message = "({0})\n" "Reason: {1}\n".format(self.status, self.reason)
|
171
|
+
if self.headers:
|
172
|
+
error_message += "HTTP response headers: {0}\n".format(self.headers)
|
173
|
+
|
174
|
+
if self.data or self.body:
|
175
|
+
error_message += "HTTP response body: {0}\n".format(self.data or self.body)
|
176
|
+
|
177
|
+
return error_message
|
178
|
+
|
179
|
+
|
180
|
+
class BadRequestException(ApiException):
|
181
|
+
pass
|
182
|
+
|
183
|
+
|
184
|
+
class NotFoundException(ApiException):
|
185
|
+
pass
|
186
|
+
|
187
|
+
|
188
|
+
class UnauthorizedException(ApiException):
|
189
|
+
pass
|
190
|
+
|
191
|
+
|
192
|
+
class ForbiddenException(ApiException):
|
193
|
+
pass
|
194
|
+
|
195
|
+
|
196
|
+
class ServiceException(ApiException):
|
197
|
+
pass
|
198
|
+
|
199
|
+
|
200
|
+
class ConflictException(ApiException):
|
201
|
+
"""Exception for HTTP 409 Conflict."""
|
202
|
+
|
203
|
+
pass
|
204
|
+
|
205
|
+
|
206
|
+
class UnprocessableEntityException(ApiException):
|
207
|
+
"""Exception for HTTP 422 Unprocessable Entity."""
|
208
|
+
|
209
|
+
pass
|
210
|
+
|
211
|
+
|
212
|
+
def render_path(path_to_item):
|
213
|
+
"""Returns a string representation of a path"""
|
214
|
+
result = ""
|
215
|
+
for pth in path_to_item:
|
216
|
+
if isinstance(pth, int):
|
217
|
+
result += "[{0}]".format(pth)
|
218
|
+
else:
|
219
|
+
result += "['{0}']".format(pth)
|
220
|
+
return result
|
@@ -0,0 +1,91 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
# flake8: noqa
|
4
|
+
"""
|
5
|
+
Crypticorn Auth API
|
6
|
+
|
7
|
+
OpenAPI compliant REST API built using tRPC with Express
|
8
|
+
|
9
|
+
The version of the OpenAPI document: 1.0.0
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
|
+
|
12
|
+
Do not edit the class manually.
|
13
|
+
""" # noqa: E501
|
14
|
+
|
15
|
+
|
16
|
+
# import models into model package
|
17
|
+
from crypticorn.auth.client.models.add_wallet200_response import AddWallet200Response
|
18
|
+
from crypticorn.auth.client.models.add_wallet_request import AddWalletRequest
|
19
|
+
from crypticorn.auth.client.models.authorize_user200_response import (
|
20
|
+
AuthorizeUser200Response,
|
21
|
+
)
|
22
|
+
from crypticorn.auth.client.models.authorize_user200_response_auth import (
|
23
|
+
AuthorizeUser200ResponseAuth,
|
24
|
+
)
|
25
|
+
from crypticorn.auth.client.models.authorize_user_request import AuthorizeUserRequest
|
26
|
+
from crypticorn.auth.client.models.create_user_request import CreateUserRequest
|
27
|
+
from crypticorn.auth.client.models.list_wallets200_response import (
|
28
|
+
ListWallets200Response,
|
29
|
+
)
|
30
|
+
from crypticorn.auth.client.models.list_wallets200_response_balances_inner import (
|
31
|
+
ListWallets200ResponseBalancesInner,
|
32
|
+
)
|
33
|
+
from crypticorn.auth.client.models.list_wallets200_response_balances_inner_sale_round import (
|
34
|
+
ListWallets200ResponseBalancesInnerSaleRound,
|
35
|
+
)
|
36
|
+
from crypticorn.auth.client.models.list_wallets200_response_balances_inner_wallet import (
|
37
|
+
ListWallets200ResponseBalancesInnerWallet,
|
38
|
+
)
|
39
|
+
from crypticorn.auth.client.models.list_wallets200_response_balances_inner_wallet_vesting_wallets_inner import (
|
40
|
+
ListWallets200ResponseBalancesInnerWalletVestingWalletsInner,
|
41
|
+
)
|
42
|
+
from crypticorn.auth.client.models.list_wallets200_response_data_inner import (
|
43
|
+
ListWallets200ResponseDataInner,
|
44
|
+
)
|
45
|
+
from crypticorn.auth.client.models.list_wallets200_response_user_value import (
|
46
|
+
ListWallets200ResponseUserValue,
|
47
|
+
)
|
48
|
+
from crypticorn.auth.client.models.logout_default_response import LogoutDefaultResponse
|
49
|
+
from crypticorn.auth.client.models.logout_default_response_issues_inner import (
|
50
|
+
LogoutDefaultResponseIssuesInner,
|
51
|
+
)
|
52
|
+
from crypticorn.auth.client.models.refresh_token_info200_response import (
|
53
|
+
RefreshTokenInfo200Response,
|
54
|
+
)
|
55
|
+
from crypticorn.auth.client.models.refresh_token_info200_response_user_session import (
|
56
|
+
RefreshTokenInfo200ResponseUserSession,
|
57
|
+
)
|
58
|
+
from crypticorn.auth.client.models.resend_verification_email_request import (
|
59
|
+
ResendVerificationEmailRequest,
|
60
|
+
)
|
61
|
+
from crypticorn.auth.client.models.revoke_user_tokens_request import (
|
62
|
+
RevokeUserTokensRequest,
|
63
|
+
)
|
64
|
+
from crypticorn.auth.client.models.rotate_tokens200_response import (
|
65
|
+
RotateTokens200Response,
|
66
|
+
)
|
67
|
+
from crypticorn.auth.client.models.token_info200_response import TokenInfo200Response
|
68
|
+
from crypticorn.auth.client.models.unlink_wallet_request import UnlinkWalletRequest
|
69
|
+
from crypticorn.auth.client.models.update_user_request import UpdateUserRequest
|
70
|
+
from crypticorn.auth.client.models.user_reset_password_request import (
|
71
|
+
UserResetPasswordRequest,
|
72
|
+
)
|
73
|
+
from crypticorn.auth.client.models.user_set_password_request import (
|
74
|
+
UserSetPasswordRequest,
|
75
|
+
)
|
76
|
+
from crypticorn.auth.client.models.verify200_response import Verify200Response
|
77
|
+
from crypticorn.auth.client.models.verify_email200_response import (
|
78
|
+
VerifyEmail200Response,
|
79
|
+
)
|
80
|
+
from crypticorn.auth.client.models.verify_email200_response_auth import (
|
81
|
+
VerifyEmail200ResponseAuth,
|
82
|
+
)
|
83
|
+
from crypticorn.auth.client.models.verify_email200_response_auth_auth import (
|
84
|
+
VerifyEmail200ResponseAuthAuth,
|
85
|
+
)
|
86
|
+
from crypticorn.auth.client.models.verify_email_request import VerifyEmailRequest
|
87
|
+
from crypticorn.auth.client.models.verify_wallet_request import VerifyWalletRequest
|
88
|
+
from crypticorn.auth.client.models.wallet_verified200_response import (
|
89
|
+
WalletVerified200Response,
|
90
|
+
)
|
91
|
+
from crypticorn.auth.client.models.whoami200_response import Whoami200Response
|
@@ -0,0 +1,86 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
Crypticorn Auth API
|
5
|
+
|
6
|
+
OpenAPI compliant REST API built using tRPC with Express
|
7
|
+
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
""" # noqa: E501
|
13
|
+
|
14
|
+
|
15
|
+
from __future__ import annotations
|
16
|
+
import pprint
|
17
|
+
import re # noqa: F401
|
18
|
+
import json
|
19
|
+
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
21
|
+
from typing import Any, ClassVar, Dict, List
|
22
|
+
from typing import Optional, Set
|
23
|
+
from typing_extensions import Self
|
24
|
+
|
25
|
+
|
26
|
+
class AddWallet200Response(BaseModel):
|
27
|
+
"""
|
28
|
+
AddWallet200Response
|
29
|
+
""" # noqa: E501
|
30
|
+
|
31
|
+
oob_code: StrictStr = Field(alias="oobCode")
|
32
|
+
message: StrictStr
|
33
|
+
__properties: ClassVar[List[str]] = ["oobCode", "message"]
|
34
|
+
|
35
|
+
model_config = ConfigDict(
|
36
|
+
populate_by_name=True,
|
37
|
+
validate_assignment=True,
|
38
|
+
protected_namespaces=(),
|
39
|
+
)
|
40
|
+
|
41
|
+
def to_str(self) -> str:
|
42
|
+
"""Returns the string representation of the model using alias"""
|
43
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
44
|
+
|
45
|
+
def to_json(self) -> str:
|
46
|
+
"""Returns the JSON representation of the model using alias"""
|
47
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
48
|
+
return json.dumps(self.to_dict())
|
49
|
+
|
50
|
+
@classmethod
|
51
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
52
|
+
"""Create an instance of AddWallet200Response from a JSON string"""
|
53
|
+
return cls.from_dict(json.loads(json_str))
|
54
|
+
|
55
|
+
def to_dict(self) -> Dict[str, Any]:
|
56
|
+
"""Return the dictionary representation of the model using alias.
|
57
|
+
|
58
|
+
This has the following differences from calling pydantic's
|
59
|
+
`self.model_dump(by_alias=True)`:
|
60
|
+
|
61
|
+
* `None` is only added to the output dict for nullable fields that
|
62
|
+
were set at model initialization. Other fields with value `None`
|
63
|
+
are ignored.
|
64
|
+
"""
|
65
|
+
excluded_fields: Set[str] = set([])
|
66
|
+
|
67
|
+
_dict = self.model_dump(
|
68
|
+
by_alias=True,
|
69
|
+
exclude=excluded_fields,
|
70
|
+
exclude_none=True,
|
71
|
+
)
|
72
|
+
return _dict
|
73
|
+
|
74
|
+
@classmethod
|
75
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
76
|
+
"""Create an instance of AddWallet200Response from a dict"""
|
77
|
+
if obj is None:
|
78
|
+
return None
|
79
|
+
|
80
|
+
if not isinstance(obj, dict):
|
81
|
+
return cls.model_validate(obj)
|
82
|
+
|
83
|
+
_obj = cls.model_validate(
|
84
|
+
{"oobCode": obj.get("oobCode"), "message": obj.get("message")}
|
85
|
+
)
|
86
|
+
return _obj
|
@@ -0,0 +1,107 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
Crypticorn Auth API
|
5
|
+
|
6
|
+
OpenAPI compliant REST API built using tRPC with Express
|
7
|
+
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
""" # noqa: E501
|
13
|
+
|
14
|
+
|
15
|
+
from __future__ import annotations
|
16
|
+
import pprint
|
17
|
+
import re # noqa: F401
|
18
|
+
import json
|
19
|
+
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional, Union
|
22
|
+
from typing import Optional, Set
|
23
|
+
from typing_extensions import Self
|
24
|
+
|
25
|
+
|
26
|
+
class AddWalletRequest(BaseModel):
|
27
|
+
"""
|
28
|
+
AddWalletRequest
|
29
|
+
""" # noqa: E501
|
30
|
+
|
31
|
+
host: StrictStr
|
32
|
+
origin: StrictStr
|
33
|
+
address: StrictStr
|
34
|
+
chain_id: Optional[Union[StrictFloat, StrictInt]] = Field(
|
35
|
+
default=1, alias="chainId"
|
36
|
+
)
|
37
|
+
statement: Optional[StrictStr] = "Sign in with Ethereum wallet"
|
38
|
+
__properties: ClassVar[List[str]] = [
|
39
|
+
"host",
|
40
|
+
"origin",
|
41
|
+
"address",
|
42
|
+
"chainId",
|
43
|
+
"statement",
|
44
|
+
]
|
45
|
+
|
46
|
+
model_config = ConfigDict(
|
47
|
+
populate_by_name=True,
|
48
|
+
validate_assignment=True,
|
49
|
+
protected_namespaces=(),
|
50
|
+
)
|
51
|
+
|
52
|
+
def to_str(self) -> str:
|
53
|
+
"""Returns the string representation of the model using alias"""
|
54
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
55
|
+
|
56
|
+
def to_json(self) -> str:
|
57
|
+
"""Returns the JSON representation of the model using alias"""
|
58
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
59
|
+
return json.dumps(self.to_dict())
|
60
|
+
|
61
|
+
@classmethod
|
62
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
63
|
+
"""Create an instance of AddWalletRequest from a JSON string"""
|
64
|
+
return cls.from_dict(json.loads(json_str))
|
65
|
+
|
66
|
+
def to_dict(self) -> Dict[str, Any]:
|
67
|
+
"""Return the dictionary representation of the model using alias.
|
68
|
+
|
69
|
+
This has the following differences from calling pydantic's
|
70
|
+
`self.model_dump(by_alias=True)`:
|
71
|
+
|
72
|
+
* `None` is only added to the output dict for nullable fields that
|
73
|
+
were set at model initialization. Other fields with value `None`
|
74
|
+
are ignored.
|
75
|
+
"""
|
76
|
+
excluded_fields: Set[str] = set([])
|
77
|
+
|
78
|
+
_dict = self.model_dump(
|
79
|
+
by_alias=True,
|
80
|
+
exclude=excluded_fields,
|
81
|
+
exclude_none=True,
|
82
|
+
)
|
83
|
+
return _dict
|
84
|
+
|
85
|
+
@classmethod
|
86
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
87
|
+
"""Create an instance of AddWalletRequest from a dict"""
|
88
|
+
if obj is None:
|
89
|
+
return None
|
90
|
+
|
91
|
+
if not isinstance(obj, dict):
|
92
|
+
return cls.model_validate(obj)
|
93
|
+
|
94
|
+
_obj = cls.model_validate(
|
95
|
+
{
|
96
|
+
"host": obj.get("host"),
|
97
|
+
"origin": obj.get("origin"),
|
98
|
+
"address": obj.get("address"),
|
99
|
+
"chainId": obj.get("chainId") if obj.get("chainId") is not None else 1,
|
100
|
+
"statement": (
|
101
|
+
obj.get("statement")
|
102
|
+
if obj.get("statement") is not None
|
103
|
+
else "Sign in with Ethereum wallet"
|
104
|
+
),
|
105
|
+
}
|
106
|
+
)
|
107
|
+
return _obj
|
@@ -0,0 +1,107 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
Crypticorn Auth API
|
5
|
+
|
6
|
+
OpenAPI compliant REST API built using tRPC with Express
|
7
|
+
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
""" # noqa: E501
|
13
|
+
|
14
|
+
|
15
|
+
from __future__ import annotations
|
16
|
+
import pprint
|
17
|
+
import re # noqa: F401
|
18
|
+
import json
|
19
|
+
|
20
|
+
from pydantic import BaseModel, ConfigDict
|
21
|
+
from typing import Any, ClassVar, Dict, List
|
22
|
+
from crypticorn.auth.client.models.authorize_user200_response_auth import (
|
23
|
+
AuthorizeUser200ResponseAuth,
|
24
|
+
)
|
25
|
+
from crypticorn.auth.client.models.whoami200_response import Whoami200Response
|
26
|
+
from typing import Optional, Set
|
27
|
+
from typing_extensions import Self
|
28
|
+
|
29
|
+
|
30
|
+
class AuthorizeUser200Response(BaseModel):
|
31
|
+
"""
|
32
|
+
AuthorizeUser200Response
|
33
|
+
""" # noqa: E501
|
34
|
+
|
35
|
+
user: Whoami200Response
|
36
|
+
auth: AuthorizeUser200ResponseAuth
|
37
|
+
__properties: ClassVar[List[str]] = ["user", "auth"]
|
38
|
+
|
39
|
+
model_config = ConfigDict(
|
40
|
+
populate_by_name=True,
|
41
|
+
validate_assignment=True,
|
42
|
+
protected_namespaces=(),
|
43
|
+
)
|
44
|
+
|
45
|
+
def to_str(self) -> str:
|
46
|
+
"""Returns the string representation of the model using alias"""
|
47
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
48
|
+
|
49
|
+
def to_json(self) -> str:
|
50
|
+
"""Returns the JSON representation of the model using alias"""
|
51
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
52
|
+
return json.dumps(self.to_dict())
|
53
|
+
|
54
|
+
@classmethod
|
55
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
56
|
+
"""Create an instance of AuthorizeUser200Response from a JSON string"""
|
57
|
+
return cls.from_dict(json.loads(json_str))
|
58
|
+
|
59
|
+
def to_dict(self) -> Dict[str, Any]:
|
60
|
+
"""Return the dictionary representation of the model using alias.
|
61
|
+
|
62
|
+
This has the following differences from calling pydantic's
|
63
|
+
`self.model_dump(by_alias=True)`:
|
64
|
+
|
65
|
+
* `None` is only added to the output dict for nullable fields that
|
66
|
+
were set at model initialization. Other fields with value `None`
|
67
|
+
are ignored.
|
68
|
+
"""
|
69
|
+
excluded_fields: Set[str] = set([])
|
70
|
+
|
71
|
+
_dict = self.model_dump(
|
72
|
+
by_alias=True,
|
73
|
+
exclude=excluded_fields,
|
74
|
+
exclude_none=True,
|
75
|
+
)
|
76
|
+
# override the default output from pydantic by calling `to_dict()` of user
|
77
|
+
if self.user:
|
78
|
+
_dict["user"] = self.user.to_dict()
|
79
|
+
# override the default output from pydantic by calling `to_dict()` of auth
|
80
|
+
if self.auth:
|
81
|
+
_dict["auth"] = self.auth.to_dict()
|
82
|
+
return _dict
|
83
|
+
|
84
|
+
@classmethod
|
85
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
86
|
+
"""Create an instance of AuthorizeUser200Response from a dict"""
|
87
|
+
if obj is None:
|
88
|
+
return None
|
89
|
+
|
90
|
+
if not isinstance(obj, dict):
|
91
|
+
return cls.model_validate(obj)
|
92
|
+
|
93
|
+
_obj = cls.model_validate(
|
94
|
+
{
|
95
|
+
"user": (
|
96
|
+
Whoami200Response.from_dict(obj["user"])
|
97
|
+
if obj.get("user") is not None
|
98
|
+
else None
|
99
|
+
),
|
100
|
+
"auth": (
|
101
|
+
AuthorizeUser200ResponseAuth.from_dict(obj["auth"])
|
102
|
+
if obj.get("auth") is not None
|
103
|
+
else None
|
104
|
+
),
|
105
|
+
}
|
106
|
+
)
|
107
|
+
return _obj
|