@supabase/postgrest-js 3.0.0-next.11 → 3.0.0-next.13
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.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/PostgrestFilterBuilder.ts +4 -2
- package/src/version.ts +1 -1
package/package.json
CHANGED
|
@@ -1747,7 +1747,8 @@ export default class PostgrestFilterBuilder<
|
|
|
1747
1747
|
RelationName,
|
|
1748
1748
|
Relationships,
|
|
1749
1749
|
Method
|
|
1750
|
-
>
|
|
1750
|
+
> &
|
|
1751
|
+
this
|
|
1751
1752
|
not<ColumnName extends string & keyof Row>(
|
|
1752
1753
|
column: ColumnName,
|
|
1753
1754
|
operator: FilterOperator,
|
|
@@ -1816,7 +1817,8 @@ export default class PostgrestFilterBuilder<
|
|
|
1816
1817
|
column: string,
|
|
1817
1818
|
operator: string,
|
|
1818
1819
|
value: unknown
|
|
1819
|
-
): PostgrestFilterBuilder<ClientOptions, Schema, any, any, RelationName, Relationships, Method>
|
|
1820
|
+
): PostgrestFilterBuilder<ClientOptions, Schema, any, any, RelationName, Relationships, Method> &
|
|
1821
|
+
this {
|
|
1820
1822
|
this.url.searchParams.append(column, `not.${operator}.${value}`)
|
|
1821
1823
|
return this as any
|
|
1822
1824
|
}
|
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 = '3.0.0-next.
|
|
7
|
+
export const version = '3.0.0-next.13'
|