|
3 | 3 |
|
4 | 4 | from aries_cloudcontroller.api import (
|
5 | 5 | ActionMenuApi,
|
6 |
| - AnoncredsCredentialDefinitionsApi, |
7 |
| - AnoncredsRevocationApi, |
8 |
| - AnoncredsSchemasApi, |
9 |
| - AnoncredsWalletUpgradeApi, |
| 6 | + AnonCredsCredentialDefinitionsApi, |
| 7 | + AnonCredsRevocationApi, |
| 8 | + AnonCredsSchemasApi, |
| 9 | + AnonCredsWalletUpgradeApi, |
10 | 10 | BasicmessageApi,
|
11 | 11 | ConnectionApi,
|
12 | 12 | CredentialDefinitionApi,
|
|
41 | 41 |
|
42 | 42 | class AcaPyClient(AbstractAsyncContextManager):
|
43 | 43 | action_menu: ActionMenuApi
|
44 |
| - anoncreds_credential_definitions: AnoncredsCredentialDefinitionsApi |
45 |
| - anoncreds_revocation: AnoncredsRevocationApi |
46 |
| - anoncreds_schemas: AnoncredsSchemasApi |
47 |
| - anoncreds_wallet_upgrade: AnoncredsWalletUpgradeApi |
| 44 | + anoncreds_credential_definitions: AnonCredsCredentialDefinitionsApi |
| 45 | + anoncreds_revocation: AnonCredsRevocationApi |
| 46 | + anoncreds_schemas: AnonCredsSchemasApi |
| 47 | + anoncreds_wallet_upgrade: AnonCredsWalletUpgradeApi |
48 | 48 | basicmessage: BasicmessageApi
|
49 | 49 | connection: ConnectionApi
|
50 | 50 | credential_definition: CredentialDefinitionApi
|
@@ -102,12 +102,12 @@ def __init__(
|
102 | 102 |
|
103 | 103 | # Initialize the API modules
|
104 | 104 | self.action_menu = ActionMenuApi(self.api_client)
|
105 |
| - self.anoncreds_credential_definitions = AnoncredsCredentialDefinitionsApi( |
| 105 | + self.anoncreds_credential_definitions = AnonCredsCredentialDefinitionsApi( |
106 | 106 | self.api_client
|
107 | 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) |
| 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) |
111 | 111 | self.basicmessage = BasicmessageApi(self.api_client)
|
112 | 112 | self.connection = ConnectionApi(self.api_client)
|
113 | 113 | self.credential_definition = CredentialDefinitionApi(self.api_client)
|
|
0 commit comments