Jakob Heuser

Results 17 comments of Jakob Heuser

We're using JS here, but the following is `TokenRefreshLink` rewritten into a single file. The problem was that the queue system was calling `toKey` which was removed as unreliable. The...

Hey @pezholio, how difficult would it be to rework the storage pieces you've got here into something closer `botkit`'s Storage API [example here](https://github.com/howdyai/botkit/blob/master/lib/storage/simple_storage.js)? This way there's a consistent API for...

I think a good starting change on this would just to be altering the behavior of `SchemaConfig.customPrintSchemaFn` to match the documentation and actually override the printed schema instead of force-injecting...

Just encountered this. We were able to work around this by using the `await lock.acquire()` api.

While JavaScript doesn't natively allow for this (everything's a runtime variable), you may be able to solve what you are trying to do with some sort of class registry: ```...

This appears fixed in `12.3.1`. My `.next/server/middleware-manifest.json` was moved to version 2 when I ran `next build` after upgrading, and the file includes the `functions` block. ```json { "sortedMiddleware": [],...

As pointed out by ahmedosama, the basic typings are validated automatically by GraphQL. For typing beyond this, I do create a specific "business logic" schema such as `z.string().min(3).max(10).parse(input.memberId)` as these...

Hey, thanks for reporting this! Can you share your `app.json`? Redactions are okay, I just need to see how the plugin is being included.

Everything looks right, and we didn't change any entry points going from 45-46. A few things I'd double check: 1. `expo-community-flipper` is in your package.json and in the same dependency...

> Small update: the plugin does currently not work SDK 47 Yeah. #38 is tracking the remaining sdk47 changes. In sdk47, it appears the expo prebuild template is no longer...