John Sanders

Results 66 comments of John Sanders

My earlier theory feels wrong, because the data length in the sessionControlClient test I mentioned isn't long enough to capture the missing keys. I assume that data was captured from...

I've modified the test to accept what I believe is a correct mid 0002 payload.

Just tried testing the reproduction from the original issue. It works with 7.3.0 (the version this one tested against), so that tells me this is not a regression, but a...

Also, I saw some similar issues here mention https://github.com/pigcan/extra-watch-webpack-plugin. I'm able to use this as a workaround.

Nice work, you beat me to the punch! [I had a fork](https://github.com/ferm10n/zod/commit/eaa771cba72c931717144ca595c1698e7ae2facc) that has pretty much the same changes, except I added to the `RefinementCtx` type and called it `refinementCtxExtra`...

My team and I also have an interest in something like this. We have a config object where a user can define conditional logic and use "variables". When a user...

I did some digging into the repo, and I think these are the modifications needed: - passing in extra context: - add an `extraCtx` prop to `ParseParams` type - add...

UPDATE: it seems like the [ZodUnion clears out the context](https://github.com/colinhacks/zod/blob/05d33f22b1001f29d8c3d2b1ded16a089a535072/src/types.ts#L2826), so these solutions don't work :( I have an idea for how to add this in formally, if it pans...

You might want to check out this plugin for yarn https://github.com/tophat/yarn-plugin-licenses

Just realized that the type for `stationID` is also wrong. The official protocol says it's supposed to be a number, but node-open-protocol tries to interpret it as a string! Updating...