@supabase/postgrest-js 2.103.0 → 2.103.1-canary.0
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/PostgrestBuilder.ts +3 -1
- package/src/version.ts +1 -1
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) {
|