Valerionn

Results 9 comments of Valerionn

@jankapunkt A fix in the docs and Typescript types sounds good to me as well (then I won't have to manually cast the type there). I just found it weird...

> Hi, @justinsmid. Thanks for the request. I am curious, why doing something like this won't work for your use-case? > > ```ts > const user = await db.user.findUniqueOrThrow({ where:...

I have changed the types a bit and published a new version that you can install using ``` npm i -D @chax-at/[email protected] ``` In my simple example this works -...

I think this happens because the PrismaTestingHelper wraps the `cursorStream` call and assumes it returns a Promise like every other Prisma function, but `cursorStream` doesn't return a Promise. You can...

That's probably some weird interaction with the cursorstream package. Unfortunately, I currently don't have the time to debug this in detail (especially with Christmas coming up), and I also can't...

I've just released v1.2.0 with the broader types which fixes the typing problems at least and generally allows extended PrismaClients. I've closed the issue for now - but feel free...

I created a PF2e drag ruler integration for v12, if you're interested: https://github.com/Valerionn/foundry-dragruler-pf2e Since I created it today, I couldn't test it that thoroughly yet and haven't written a README...

@AshnakAGQ @smeeth123 @SilvesTheRog I've made my fork available for install until this PR is merged. You can install it by clicking on "Install Module" in Foundry and then manually copy/paste...

Did you try calling `SteamClient.Init(APP_ID, false);` instead of just `SteamClient.Init(APP_ID);`? This disables the call to `Dispatch.LoopClientAsync();` which looks like this: ```csharp while ( ClientPipe != 0 ) { Frame( ClientPipe...