tursodatabase / libsql-client-ts

TypeScript/JavaScript client API for libSQL
https://docs.turso.tech/sdk/ts/quickstart
MIT License
226 stars 32 forks source link

Convert booleans to integers instead of BigInt #137

Closed giovannibenussi closed 10 months ago

giovannibenussi commented 10 months ago

This PR fixes an issue where using booleans breaks some apps. At least it is breaking using Bun with Prisma as shown in this comment due to the usage of BigInt as values.

This PR changes the boolean value from BigInt to normal integers.