@supabase/postgrest-js 2.108.0 → 2.108.1-canary.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
@@ -543,6 +543,9 @@ var PostgrestBuilder = class {
543
543
  //#endregion
544
544
  //#region src/PostgrestTransformBuilder.ts
545
545
  var PostgrestTransformBuilder = class extends PostgrestBuilder {
546
+ throwOnError() {
547
+ return super.throwOnError();
548
+ }
546
549
  /**
547
550
  * Perform a SELECT on the query result.
548
551
  *
@@ -1354,6 +1357,9 @@ var PostgrestTransformBuilder = class extends PostgrestBuilder {
1354
1357
  //#region src/PostgrestFilterBuilder.ts
1355
1358
  const PostgrestReservedCharsRegexp = /* @__PURE__ */ new RegExp("[,()]");
1356
1359
  var PostgrestFilterBuilder = class extends PostgrestTransformBuilder {
1360
+ throwOnError() {
1361
+ return super.throwOnError();
1362
+ }
1357
1363
  /**
1358
1364
  * Match only rows where `column` is equal to `value`.
1359
1365
  *