@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/dist/index.cjs CHANGED
@@ -264,7 +264,7 @@ var PostgrestBuilder = class {
264
264
  res$1 = await _fetch(_this.url.toString(), {
265
265
  method: _this.method,
266
266
  headers: requestHeaders,
267
- body: JSON.stringify(_this.body),
267
+ body: JSON.stringify(_this.body, (_, value) => typeof value === "bigint" ? value.toString() : value),
268
268
  signal: _this.signal
269
269
  });
270
270
  } catch (fetchError) {