Rafał Witczak

Results 5 issues of Rafał Witczak

Currently datetime validator allows only offset in format `[+-]hh:mm`, but ISO-8601 defines also `[+-]hhmm` or `[+-]hh`. ``` z.string().datetime({offset: true}).parse("2022-01-01T00:00:00+01:00") // success z.string().datetime({offset: true}).parse("2022-01-01T00:00:00+0100") / error z.string().datetime({offset: true}).parse("2022-01-01T00:00:00+01") error ``` Current...

It would be nice to have possibility to include some dynamic variables in comment, like: - pull request name - pull request id - branch and base branch - author...

As far as I see, "Read access to administration, metadata, and single file" should be enough to configure this app using ".github/auto-comment.yml" file. "Read access to code" permission disallow this...

Hi, I found it as very useful tool for input validation in Typescript project, and so far seems to meet my use case. But for output (response) validation for me...

Fixes #1986. Prevents cloning of `bookmark` prop when splitting node. Current version: [bookmarks-current.pdf](https://github.com/user-attachments/files/23945851/bookmarks-current.pdf) Fixed version: [bookmarks-fixed.pdf](https://github.com/user-attachments/files/23945850/bookmarks-fixed.pdf) Code used to generate PDFs above: ```tsx import { Page, View, Text, Document }...