Asynch Paraview Proxies - how do I find what's supported?

Hello!!!

This is a question about Asynch Paraview. If there’s a better place to ask this questoin, let me know…
I’m building a POC with Trame and Asynch Paraview and I’m at the point where I need to do more than I can figure out from the two example apps (wavelet, rock)

In general, there doesn’t seem to be any documentation for any of the asynch microservices - like PipelineBuilder etc. Is this correct, or am I missing something?

My most immediate need to is to find out what filters are supported. In the snippet below I’m trying to use the Shrink filter, but this bombs with the below error

RuntimeError: Could not create proxyShrinkof groupfilters`

How do I find out what filters are supported and the properties that they support? And is there any documentation available that I’m missing?

        self.outline = await self._builder.CreateProxy(
            "filters", 
            "Shrink", 
            Input=self.reader
        )

That shrink filter should be there since it is defined here.
In the Remoting/Application/Resources/*.xml, you should be able to find all the available proxies.

I’m not sure why you are getting that runtime error.