Skip to content

Commit f1827e4

Browse files
committed
🐛 Correctly add new APIs to AcaPyClient
1 parent 5583317 commit f1827e4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

aries_cloudcontroller/acapy_client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ def __init__(
117117
self.credential_definition = CredentialDefinitionApi(self.api_client)
118118
self.credentials = CredentialsApi(self.api_client)
119119
self.default = DefaultApi(self.api_client)
120+
self.did = DidApi(self.api_client)
120121
self.did_exchange = DidExchangeApi(self.api_client)
121122
self.did_rotate = DidRotateApi(self.api_client)
122123
self.discover_features = DiscoverFeaturesApi(self.api_client)
@@ -138,6 +139,7 @@ def __init__(
138139
self.server = ServerApi(self.api_client)
139140
self.settings = SettingsApi(self.api_client)
140141
self.trustping = TrustpingApi(self.api_client)
142+
self.vc = VcApi(self.api_client)
141143
self.wallet = WalletApi(self.api_client)
142144

143145
async def __aenter__(self):

0 commit comments

Comments
 (0)