We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
FileType
I was just generated the Email entity and there's a column named descriptionblobid of type FileType here's what I get in VsCode:
Email
descriptionblobid
// 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
The text was updated successfully, but these errors were encountered:
Hi @lalberto8085 - yes you are right - this is an issue with version 1 of dataverse-ify (scottdurow/dataverse-gen#12) - It is fixed in version 2 which is beta right now! https://github.com/scottdurow/dataverse-ify/blob/v2/UPGRADING.md
You can upgrade to version 2 by using npm install dataverse-ify@2 with npx dataverse-gen@2 But your workarounds are both good in the mean-time!
Sorry, something went wrong.
Thank you very much, I will give it a try asap
No branches or pull requests
I was just generated the
Email
entity and there's a column nameddescriptionblobid
of typeFileType
here's what I get in VsCode: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 withOR
and then fix every time we regenerate the file. Any advise is greatly appreciated, thanks
The text was updated successfully, but these errors were encountered: