I want to set up field visibility rules for my fields. How can I do it?
I've noticed that I can create my own implementation of SchemaParser:

But when I started to override it, I've faced an issue. Ofc I don't want to write the whole logic from scratch, I want to extend existing SchemaParser: here I need to override the following method:

and toSchema():

And here I can tune visibility rules.
The problem is that one of the constructor arguments of SchemaParser is internal

And I can't reference this object in my code.

How to deal with it?