@supabase/postgrest-js 2.105.5-beta.0 → 2.105.5-beta.5
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 +4 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +3 -0
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +4 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/PostgrestBuilder.ts +2 -2
- package/src/PostgrestError.ts +0 -6
- package/src/PostgrestFilterBuilder.ts +3 -0
- package/src/version.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -51,12 +51,6 @@ var PostgrestError = class extends Error {
|
|
|
51
51
|
*/
|
|
52
52
|
constructor(context) {
|
|
53
53
|
super(context.message);
|
|
54
|
-
Object.defineProperty(this, "message", {
|
|
55
|
-
value: context.message,
|
|
56
|
-
enumerable: true,
|
|
57
|
-
writable: true,
|
|
58
|
-
configurable: true
|
|
59
|
-
});
|
|
60
54
|
this.name = "PostgrestError";
|
|
61
55
|
this.details = context.details;
|
|
62
56
|
this.hint = context.hint;
|
|
@@ -395,7 +389,7 @@ var PostgrestBuilder = class {
|
|
|
395
389
|
}
|
|
396
390
|
return {
|
|
397
391
|
success: error === null,
|
|
398
|
-
error
|
|
392
|
+
error,
|
|
399
393
|
data,
|
|
400
394
|
count,
|
|
401
395
|
status,
|
|
@@ -1380,6 +1374,9 @@ var PostgrestFilterBuilder = class extends PostgrestTransformBuilder {
|
|
|
1380
1374
|
/**
|
|
1381
1375
|
* Match only rows where `column` is not equal to `value`.
|
|
1382
1376
|
*
|
|
1377
|
+
* This filter does not include rows where `column` is `NULL`. To match null
|
|
1378
|
+
* values, use `.is(column, null)` instead.
|
|
1379
|
+
*
|
|
1383
1380
|
* @param column - The column to filter on
|
|
1384
1381
|
* @param value - The value to filter with
|
|
1385
1382
|
*
|