Stored Procedure Result

Hello,
I have application, where I use table result of stored procedure.
This worked fine, until some of recent actualization and now I can use only numeric result of stored procedure.
My setup is according to: https://www.radzen.com/documentation/ms-sql/#a-idstored-proceduresusing-stored-proceduresa
u

Screenshot 2020-12-10 151758

in result is just number:

It works fine on the SQL:

Numeric result indicates that the return type of the stored procedure is unknown.

Thank you for suggestion.
Issue was caused by usage of temp tables. I follower this blog and replaced temptable with Declared table type.

CREATE TABLE #temp (Col A type, ...
(doesn't work)
versus
DECLARE @temp TABLE (Col A type, ...
(does work)