I was just generated the Email entity and there's a column named descriptionblobid of type FileType here's what I get in VsCode:
// Description File Id FileType File that contains description content.
descriptionblobid?: FileType | null;
where FileType is unknown, I'm not using that field right now and I can think of a workaround for it that is just creating a utility file with
type FileSystem = string;
OR
descriptionblobid?: string | null;
and then fix every time we regenerate the file. Any advise is greatly appreciated, thanks