crypticorn 2.0.1__py3-none-any.whl → 2.1.1__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/__init__.py +7 -0
- crypticorn/auth/client/api/auth_api.py +1020 -46
- crypticorn/auth/client/models/__init__.py +7 -0
- crypticorn/auth/client/models/create_api_key200_response.py +83 -0
- crypticorn/auth/client/models/create_api_key_request.py +138 -0
- crypticorn/auth/client/models/get_api_keys200_response_inner.py +141 -0
- crypticorn/auth/client/models/oauth_callback200_response.py +109 -0
- crypticorn/auth/client/models/oauth_callback200_response_user.py +104 -0
- crypticorn/common/auth.py +5 -5
- crypticorn/common/auth_client.py +63 -29
- crypticorn/common/scopes.py +26 -18
- {crypticorn-2.0.1.dist-info → crypticorn-2.1.1.dist-info}/METADATA +10 -10
- {crypticorn-2.0.1.dist-info → crypticorn-2.1.1.dist-info}/RECORD +15 -10
- {crypticorn-2.0.1.dist-info → crypticorn-2.1.1.dist-info}/WHEEL +0 -0
- {crypticorn-2.0.1.dist-info → crypticorn-2.1.1.dist-info}/top_level.txt +0 -0
@@ -44,7 +44,14 @@ from crypticorn.auth.client.models.authorize_user200_response_auth import (
|
|
44
44
|
AuthorizeUser200ResponseAuth,
|
45
45
|
)
|
46
46
|
from crypticorn.auth.client.models.authorize_user_request import AuthorizeUserRequest
|
47
|
+
from crypticorn.auth.client.models.create_api_key200_response import (
|
48
|
+
CreateApiKey200Response,
|
49
|
+
)
|
50
|
+
from crypticorn.auth.client.models.create_api_key_request import CreateApiKeyRequest
|
47
51
|
from crypticorn.auth.client.models.create_user_request import CreateUserRequest
|
52
|
+
from crypticorn.auth.client.models.get_api_keys200_response_inner import (
|
53
|
+
GetApiKeys200ResponseInner,
|
54
|
+
)
|
48
55
|
from crypticorn.auth.client.models.list_wallets200_response import (
|
49
56
|
ListWallets200Response,
|
50
57
|
)
|