Joshua Sosso

Results 40 comments of Joshua Sosso

I would also very much like this feature. We have 3.5 million records in Algolia right now and it's costing a pretty penny, but our data model has a lot...

Ran into this issue. I was able to get it working by running ``` pnpm prisma generate ``` Instead of ``` prisma generate ```

Hey @insanebaba what version of node are you running? I was running into a similar error in node `v20.12.2`. However when I downgraded to `v20.11.1` the error went away

Playing around with it more it looks like the following line is causing the issue: ```dart hmssdk = HMSSDK( hmsTrackSettings: trackSettings, // this line causes the crash hmsLogSettings: logSettings )...

No this is happening in our own app. Although we have been referencing the example apps.

In the example app `HMSAudioTrackSettings` is being initialized with audio source set to a value and `HMSVideoTrackSettings` is being initialized with forceSoftwareDecoder having a value set as well. In our...

@ygit The fix for this was in https://github.com/100mslive/100ms-flutter/tree/fixedDefaultSimulcastSettings Has this been added to the latest release?

If I may make a proposal. I don't think appending "Type" to the end of the exported typescript types is a good approach. In the Typebox documentation they do not...

Okay, sure! I'll prep a PR once I get home In a few hours

If anyone is trying to get http2 to work I was able to get up and running with [node-spdy](https://github.com/spdy-http2/node-spdy). Here's some example code: ```ts import { readFileSync } from 'fs';...