Marker type emitted when OpenAPI $ref resolution hits the type-level recursion depth limit. Instead of silently falling back to Record<string, FieldOverride>, produces this branded type so consumers can detect it via conditional types.
Record<string, FieldOverride>
Usage:
type Fields = InferRequestBodyFields<Doc, "/users", "post">;type IsFallback = Fields extends __SchemaInferenceFellBack ? true : false; Copy
type Fields = InferRequestBodyFields<Doc, "/users", "post">;type IsFallback = Fields extends __SchemaInferenceFellBack ? true : false;
Readonly
Marker type emitted when OpenAPI $ref resolution hits the type-level recursion depth limit. Instead of silently falling back to
Record<string, FieldOverride>, produces this branded type so consumers can detect it via conditional types.Usage: