2828 GetExtendedAgentCardRequest ,
2929 GetTaskPushNotificationConfigRequest ,
3030 GetTaskRequest ,
31- ListTaskPushNotificationConfigRequest ,
32- ListTaskPushNotificationConfigResponse ,
31+ ListTaskPushNotificationConfigsRequest ,
32+ ListTaskPushNotificationConfigsResponse ,
3333 ListTasksRequest ,
3434 ListTasksResponse ,
3535 SendMessageRequest ,
@@ -369,14 +369,14 @@ async def get_task_callback(
369369
370370 async def list_task_callback (
371371 self ,
372- request : ListTaskPushNotificationConfigRequest ,
372+ request : ListTaskPushNotificationConfigsRequest ,
373373 * ,
374374 context : ClientCallContext | None = None ,
375375 extensions : list [str ] | None = None ,
376- ) -> ListTaskPushNotificationConfigResponse :
376+ ) -> ListTaskPushNotificationConfigsResponse :
377377 """Lists push notification configurations for a specific task."""
378378 rpc_request = JSONRPC20Request (
379- method = 'ListTaskPushNotificationConfig ' ,
379+ method = 'ListTaskPushNotificationConfigs ' ,
380380 params = json_format .MessageToDict (request ),
381381 _id = str (uuid4 ()),
382382 )
@@ -385,7 +385,7 @@ async def list_task_callback(
385385 extensions if extensions is not None else self .extensions ,
386386 )
387387 payload , modified_kwargs = await self ._apply_interceptors (
388- 'ListTaskPushNotificationConfig ' ,
388+ 'ListTaskPushNotificationConfigs ' ,
389389 cast ('dict[str, Any]' , rpc_request .data ),
390390 modified_kwargs ,
391391 context ,
@@ -394,10 +394,10 @@ async def list_task_callback(
394394 json_rpc_response = JSONRPC20Response (** response_data )
395395 if json_rpc_response .error :
396396 raise A2AClientJSONRPCError (json_rpc_response .error )
397- response : ListTaskPushNotificationConfigResponse = (
397+ response : ListTaskPushNotificationConfigsResponse = (
398398 json_format .ParseDict (
399399 json_rpc_response .result ,
400- ListTaskPushNotificationConfigResponse (),
400+ ListTaskPushNotificationConfigsResponse (),
401401 )
402402 )
403403 return response
0 commit comments