@@ -68,7 +68,7 @@ def __init__(self, **kwargs):
6868 async def link (
6969 self ,
7070 link_request : LinkRequest ,
71- auth_credentials : Annotated [AuthCredentials , Depends (AuthFactory )],
71+ auth_credentials : Annotated [AuthCredentials , Depends (AuthFactory () )],
7272 ) -> LinkResponse :
7373 """
7474 Link ID to Financial Address
@@ -151,7 +151,7 @@ async def link(
151151 async def resolve (
152152 self ,
153153 resolve_request : ResolveRequest ,
154- auth_credentials : Annotated [AuthCredentials , Depends (AuthFactory )],
154+ auth_credentials : Annotated [AuthCredentials , Depends (AuthFactory () )],
155155 ) -> ResolveResponse :
156156 """
157157 Resolve ID to Financial Address
@@ -200,7 +200,7 @@ async def resolve(
200200 async def unlink (
201201 self ,
202202 unlink_request : UnlinkRequest ,
203- auth_credentials : Annotated [AuthCredentials , Depends (AuthFactory )],
203+ auth_credentials : Annotated [AuthCredentials , Depends (AuthFactory () )],
204204 ) -> UnlinkResponse :
205205 """
206206 Unlink ID from Financial Address
@@ -248,7 +248,7 @@ async def unlink(
248248 async def update (
249249 self ,
250250 update_request : UpdateRequest ,
251- auth_credentials : Annotated [AuthCredentials , Depends (AuthFactory )],
251+ auth_credentials : Annotated [AuthCredentials , Depends (AuthFactory () )],
252252 ) -> UpdateResponse :
253253 """
254254 Update ID to Financial Address mapping
0 commit comments