Voxelli

Results 4 issues of Voxelli

Input [https://cdn.discordapp.com/attachments/875525041989750815/898710282631794708/1.gif](url) Output [https://cdn.discordapp.com/attachments/875525041989750815/898710297655779348/2.gif](url) ` const GifCopied = new GifFrame( new BitmapImage(jimpCopied.bitmap, { disposalMethod: frame.disposalMethod, delayCentisecs: frame.delayCentisecs, }) ); const codec = new GifCodec(); await codec.encodeGif(frames, { loops: 0 }).then((encodedGIF)...

### Is there an existing issue for this? - [X] I have searched the existing issues ### Description of the bug Can't find the exact line this parse error is...

Enum should have number or string as a type in the json schema. For native enums, it should also include `x-enumNames` ```ts z.object({ id: z.string(), role: z.enum(['Admin', 'Member', 'Owner']), joinedAt:...