@supabase/postgrest-js
Advanced tools
Comparing version 1.8.2 to 1.8.3
@@ -5,4 +5,4 @@ import PostgrestTransformBuilder from './PostgrestTransformBuilder'; | ||
export default class PostgrestFilterBuilder<Schema extends GenericSchema, Row extends Record<string, unknown>, Result, Relationships = unknown> extends PostgrestTransformBuilder<Schema, Row, Result, Relationships> { | ||
eq<ColumnName extends string & keyof Row>(column: ColumnName, value: Row[ColumnName]): this; | ||
eq(column: string, value: unknown): this; | ||
eq<ColumnName extends string & keyof Row>(column: ColumnName, value: NonNullable<Row[ColumnName]>): this; | ||
eq<Value extends unknown>(column: string, value: NonNullable<Value>): this; | ||
neq<ColumnName extends string & keyof Row>(column: ColumnName, value: Row[ColumnName]): this; | ||
@@ -9,0 +9,0 @@ neq(column: string, value: unknown): this; |
@@ -1,2 +0,2 @@ | ||
export declare const version = "1.8.2"; | ||
export declare const version = "1.8.3"; | ||
//# sourceMappingURL=version.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = void 0; | ||
exports.version = '1.8.2'; | ||
exports.version = '1.8.3'; | ||
//# sourceMappingURL=version.js.map |
@@ -5,4 +5,4 @@ import PostgrestTransformBuilder from './PostgrestTransformBuilder'; | ||
export default class PostgrestFilterBuilder<Schema extends GenericSchema, Row extends Record<string, unknown>, Result, Relationships = unknown> extends PostgrestTransformBuilder<Schema, Row, Result, Relationships> { | ||
eq<ColumnName extends string & keyof Row>(column: ColumnName, value: Row[ColumnName]): this; | ||
eq(column: string, value: unknown): this; | ||
eq<ColumnName extends string & keyof Row>(column: ColumnName, value: NonNullable<Row[ColumnName]>): this; | ||
eq<Value extends unknown>(column: string, value: NonNullable<Value>): this; | ||
neq<ColumnName extends string & keyof Row>(column: ColumnName, value: Row[ColumnName]): this; | ||
@@ -9,0 +9,0 @@ neq(column: string, value: unknown): this; |
@@ -1,2 +0,2 @@ | ||
export declare const version = "1.8.2"; | ||
export declare const version = "1.8.3"; | ||
//# sourceMappingURL=version.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export const version = '1.8.2'; | ||
export const version = '1.8.3'; | ||
//# sourceMappingURL=version.js.map |
{ | ||
"name": "@supabase/postgrest-js", | ||
"version": "1.8.2", | ||
"version": "1.8.3", | ||
"description": "Isomorphic PostgREST client", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -34,4 +34,7 @@ import PostgrestTransformBuilder from './PostgrestTransformBuilder' | ||
> extends PostgrestTransformBuilder<Schema, Row, Result, Relationships> { | ||
eq<ColumnName extends string & keyof Row>(column: ColumnName, value: Row[ColumnName]): this | ||
eq(column: string, value: unknown): this | ||
eq<ColumnName extends string & keyof Row>( | ||
column: ColumnName, | ||
value: NonNullable<Row[ColumnName]> | ||
): this | ||
eq<Value extends unknown>(column: string, value: NonNullable<Value>): this | ||
/** | ||
@@ -38,0 +41,0 @@ * Match only rows where `column` is equal to `value`. |
@@ -1,1 +0,1 @@ | ||
export const version = '1.8.2' | ||
export const version = '1.8.3' |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
342889
5777