@supabase/postgrest-js 2.105.4 → 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 +3 -0
- 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 +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/PostgrestFilterBuilder.ts +3 -0
- package/src/version.ts +1 -1
package/package.json
CHANGED
|
@@ -176,6 +176,9 @@ export default class PostgrestFilterBuilder<
|
|
|
176
176
|
/**
|
|
177
177
|
* Match only rows where `column` is not equal to `value`.
|
|
178
178
|
*
|
|
179
|
+
* This filter does not include rows where `column` is `NULL`. To match null
|
|
180
|
+
* values, use `.is(column, null)` instead.
|
|
181
|
+
*
|
|
179
182
|
* @param column - The column to filter on
|
|
180
183
|
* @param value - The value to filter with
|
|
181
184
|
*
|
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.105.
|
|
7
|
+
export const version = '2.105.5-beta.5'
|