14
14
from functools import partial , wraps
15
15
import json
16
16
from os import getenv
17
- from typing import Any , Awaitable , Callable , Optional , TypeVar , cast
17
+ from typing import Any , Awaitable , Callable , Mapping , Optional , TypeVar , cast
18
18
19
19
from httpx import AsyncClient
20
20
@@ -157,7 +157,7 @@ async def get_invite(self) -> str:
157
157
)
158
158
return invitation .invitation_url
159
159
160
- async def receive_invitation (self , invite : dict ) -> ConnRecord :
160
+ async def receive_invitation (self , invite : dict ) -> Mapping [ str , Any ] :
161
161
oob_record = await self .controller .post (
162
162
"/out-of-band/receive-invitation" ,
163
163
json = invite ,
@@ -166,7 +166,6 @@ async def receive_invitation(self, invite: dict) -> ConnRecord:
166
166
167
167
conn_record = await self .controller .record_with_values (
168
168
"connections" ,
169
- record_type = ConnRecord ,
170
169
invitation_msg_id = oob_record ["invi_msg_id" ],
171
170
rfc23_state = "completed" ,
172
171
)
@@ -220,10 +219,10 @@ async def main():
220
219
conn_record = await agent .receive_invitation (invite )
221
220
222
221
print ("Proxy and agent are now connected." )
223
- print (f"Proxy connection id: { conn_record . connection_id } " )
222
+ print (f"Proxy connection id: { conn_record [ ' connection_id' ] } " )
224
223
225
- assert isinstance (conn_record . connection_id , str )
226
- mediation_id = await agent .request_mediation (conn_record . connection_id )
224
+ assert isinstance (conn_record [ " connection_id" ] , str )
225
+ mediation_id = await agent .request_mediation (conn_record [ " connection_id" ] )
227
226
print ("Proxy has granted mediation to agent." )
228
227
print (f"Proxy mediation id: { mediation_id } " )
229
228
0 commit comments