File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 3
3
4
4
from aries_cloudcontroller .api import (
5
5
ActionMenuApi ,
6
+ AnoncredsCredentialDefinitionsApi ,
7
+ AnoncredsRevocationApi ,
8
+ AnoncredsSchemasApi ,
9
+ AnoncredsWalletUpgradeApi ,
6
10
BasicmessageApi ,
7
11
ConnectionApi ,
8
12
CredentialDefinitionApi ,
37
41
38
42
class AcaPyClient (AbstractAsyncContextManager ):
39
43
action_menu : ActionMenuApi
44
+ anoncreds_credential_definitions : AnoncredsCredentialDefinitionsApi
45
+ anoncreds_revocation : AnoncredsRevocationApi
46
+ anoncreds_schemas : AnoncredsSchemasApi
47
+ anoncreds_wallet_upgrade : AnoncredsWalletUpgradeApi
40
48
basicmessage : BasicmessageApi
41
49
connection : ConnectionApi
42
50
credential_definition : CredentialDefinitionApi
@@ -94,6 +102,12 @@ def __init__(
94
102
95
103
# Initialize the API modules
96
104
self .action_menu = ActionMenuApi (self .api_client )
105
+ self .anoncreds_credential_definitions = AnoncredsCredentialDefinitionsApi (
106
+ self .api_client
107
+ )
108
+ self .anoncreds_revocation = AnoncredsRevocationApi (self .api_client )
109
+ self .anoncreds_schemas = AnoncredsSchemasApi (self .api_client )
110
+ self .anoncreds_wallet_upgrade = AnoncredsWalletUpgradeApi (self .api_client )
97
111
self .basicmessage = BasicmessageApi (self .api_client )
98
112
self .connection = ConnectionApi (self .api_client )
99
113
self .credential_definition = CredentialDefinitionApi (self .api_client )
You can’t perform that action at this time.
0 commit comments