@supabase/postgrest-js 2.103.1-beta.0 → 2.103.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/postgrest-js",
3
- "version": "2.103.1-beta.0",
3
+ "version": "2.103.1",
4
4
  "description": "Isomorphic PostgREST client",
5
5
  "keywords": [
6
6
  "postgrest",
@@ -318,7 +318,9 @@ export default abstract class PostgrestBuilder<
318
318
  res = await _fetch(this.url.toString(), {
319
319
  method: this.method,
320
320
  headers: requestHeaders,
321
- body: JSON.stringify(this.body),
321
+ body: JSON.stringify(this.body, (_, value) =>
322
+ typeof value === 'bigint' ? value.toString() : value
323
+ ),
322
324
  signal: this.signal,
323
325
  })
324
326
  } catch (fetchError: any) {
package/src/version.ts CHANGED
@@ -4,4 +4,4 @@
4
4
  // - Debugging and support (identifying which version is running)
5
5
  // - Telemetry and logging (version reporting in errors/analytics)
6
6
  // - Ensuring build artifacts match the published package version
7
- export const version = '2.103.1-beta.0'
7
+ export const version = '2.103.1'