Material Graph Params Verse Fields Binding Validation Rejection

So I am VERY new to UEFN and I’ve been looking into way to add 2D animated sprite sheets
I got it sort of working with Flipbooks but it’s very limited and doesn’t fulfill my needs

So I went looking for ways to render animated 2D sheets manually
Looked for things such as clip rects or changing vertex buffer data none seem available…
Then I realized I could do it by changing the UV in the Material Graph! But I needed to pass the frame data (X, Y, Width, Height) from Verse back to the Material Graph to use them for the UV
Then I found the right thing for that I believe and that is Verse Fields Binding
I binded the parameters to Verse on my Material and properly got them visible in Verse

Now I wanted to try running the thing, I hit launch and validation failed with this

LogValkyrieValidation: Error: Disallowed reference to /Script/VerseTypeEditorRuntime.VerseInternalFieldBindingPassthrough, Referenced by: Content/NewFolder/Mats/Animated2DMat.uasset (Material), Plugin: MyProject.
LogValkyrieValidation: Error: Disallowed reference to /Script/VerseTypeEditorRuntime.VerseInternalFieldBindingTruncate, Referenced by: Content/NewFolder/Mats/Animated2DMat.uasset (Material), Plugin: MyProject.
LogValkyrieValidation: Error: Disallowed reference to /Script/VerseTypeAssetInterop.VerseTypeAssetInteropContainer, Referenced by: Content/NewFolder/Mats/Animated2DMat.uasset (Material), Plugin: MyProject.
LogValkyrieSyncProject: Display: Profile SyncProject.Validate.SentryValidation.ValidateFolder, 0.070368
UEFNValidation: Error: Disallowed reference to /Script/VerseTypeEditorRuntime.VerseInternalFieldBindingPassthrough, Referenced by: See below for asset list, Plugin: MyProject.
UEFNValidation: Error: /MyProject/NewFolder/Mats/Animated2DMat
UEFNValidation: Error: Disallowed reference to /Script/VerseTypeEditorRuntime.VerseInternalFieldBindingTruncate, Referenced by: See below for asset list, Plugin: MyProject.
UEFNValidation: Error: /MyProject/NewFolder/Mats/Animated2DMat
UEFNValidation: Error: Disallowed reference to /Script/VerseTypeAssetInterop.VerseTypeAssetInteropContainer, Referenced by: See below for asset list, Plugin: MyProject.
UEFNValidation: Error: /MyProject/NewFolder/Mats/Animated2DMat

I am very lost at why this is rejected when variables pretty much default being bound?
This is how the Material Graph is like right now