Does the Appium Event Listener API support taps & TouchAction?

I’m looking at https://github.com/appium/java-client/blob/master/docs/The-event_firing.md

I also found the class io.appium.java_client.events.DefaultAspect which has a list of hooks but it does not seem to include anything with io.appium.java_client.TouchAction such as tapping or swiping.

I’m looking for a solution to listen for all events that involve the driver performing “physical” interactions with the device. This would include taps, swipes, pinches, clicks, typing, etc. I see clicks and text actions are covered by the listener API but I’m not sure about the rest.

Thanks!