Onur Elibol
Onur Elibol
@mrlubos I have got the same issue on my end, tried even with your fork but Literal declarations are being generated as optional. However I am not sure if this...
@mrlubos Unfortunately not able to share the full schema. This is the part that is treated as optional, with changed names. I could share this part with some changed names...
I think also minDate and currentValue of the input are 2 different things IMO. Mutating the actual value depending on the minDate does not really make sense. Even though if...
@lubber-de Regarding to your message before; if we assume that a form field "always" will be filled I agree, by design, it makes sense. But if the form field may...
@ferdikoomen this would be a great addition to the generator! Unfortunately the branch has conflicts now @Floppy012 please let me know if I can help!
@ferdikoomen please :) this feature would be a huge improvement to my codebase as well 🙏
@mrlubos thank you for the ping on the other side! Feels great to see that there is an alternative now with an active maintainer :) We will be moving to...
Hi there, first of thank you very much for this beautiful package! To raise up another problem related to namespaced enums; We had something like this in the **old package**:...
@mrlubos is there any updates with this?
[email protected] has the same problem ``` export function enumToPgEnum( myEnum: T, ): [T[keyof T], ...T[keyof T][]] { return Object.values(myEnum).map((value: any) => `${value}`) as any } export enum USER_ROLE { ADMIN...