You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Support Recursive JSON Type.
Describe the solution you'd like
Types like this work
type JSONContent {
type String
content JSONContent[]?
text String?
}
Describe alternatives you've considered
n/a
Additional context
Currently this type creates an error:
error TS7022: 'JSONContentSchema' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer.
5 export const JSONContentSchema = z.object({
~~~~~~~~~~~~~~~~~
: Error compiling generated code
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Support Recursive JSON Type.
Describe the solution you'd like
Types like this work
Describe alternatives you've considered
n/a
Additional context
Currently this type creates an error:
The text was updated successfully, but these errors were encountered: