**Describe the bug** The actions parameter of the ApplicationIntegrationToolset class has the wrong type. The type [currently in the codebase](https://github.com/google/adk-python/blob/13ff009d34836a80f107cb43a632df15f7c215e4/src/google/adk/tools/application_integration_tool/application_integration_toolset.py#L90) is `Optional[str]`, however the [example in the comments](https://github.com/google/adk-python/blob/13ff009d34836a80f107cb43a632df15f7c215e4/src/google/adk/tools/application_integration_tool/application_integration_toolset.py#L71) and usage as an [argument in the instantiation of IntegrationClient](https://github.com/google/adk-python/blob/13ff009d34836a80f107cb43a632df15f7c215e4/src/google/adk/tools/application_integration_tool/application_integration_toolset.py#L150) indicate the type should actually be `Optional[list[str]]`