Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions aries_cloudcontroller/acapy_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
CredentialDefinitionApi,
CredentialsApi,
DefaultApi,
DidApi,
DidExchangeApi,
DidRotateApi,
DiscoverFeaturesApi,
Expand All @@ -33,6 +34,7 @@
ServerApi,
SettingsApi,
TrustpingApi,
VcApi,
WalletApi,
)
from aries_cloudcontroller.api_client import ApiClient
Expand All @@ -50,6 +52,7 @@ class AcaPyClient(AbstractAsyncContextManager):
credential_definition: CredentialDefinitionApi
credentials: CredentialsApi
default: DefaultApi
did: DidApi
did_exchange: DidExchangeApi
did_rotate: DidRotateApi
discover_features: DiscoverFeaturesApi
Expand All @@ -71,6 +74,7 @@ class AcaPyClient(AbstractAsyncContextManager):
server: ServerApi
settings: SettingsApi
trustping: TrustpingApi
vc: VcApi
wallet: WalletApi

def __init__(
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def parse_requirements(filename: str):
if __name__ == "__main__":
setup(
name=PACKAGE_NAME,
version="1.3.0-20250507",
version="1.3.0-20250509",
description="A simple python client for controlling an ACA-Py agent",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down