@supabase/postgrest-js
Advanced tools
Comparing version 1.9.2 to 1.10.0
@@ -153,3 +153,3 @@ "use strict"; | ||
in(column, values) { | ||
const cleanedValues = values | ||
const cleanedValues = Array.from(new Set(values)) | ||
.map((s) => { | ||
@@ -156,0 +156,0 @@ // handle postgrest reserved characters |
@@ -1,2 +0,2 @@ | ||
export declare const version = "1.9.2"; | ||
export declare const version = "1.10.0"; | ||
//# sourceMappingURL=version.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = void 0; | ||
exports.version = '1.9.2'; | ||
exports.version = '1.10.0'; | ||
//# sourceMappingURL=version.js.map |
@@ -148,3 +148,3 @@ import PostgrestTransformBuilder from './PostgrestTransformBuilder'; | ||
in(column, values) { | ||
const cleanedValues = values | ||
const cleanedValues = Array.from(new Set(values)) | ||
.map((s) => { | ||
@@ -151,0 +151,0 @@ // handle postgrest reserved characters |
@@ -1,2 +0,2 @@ | ||
export declare const version = "1.9.2"; | ||
export declare const version = "1.10.0"; | ||
//# sourceMappingURL=version.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export const version = '1.9.2'; | ||
export const version = '1.10.0'; | ||
//# sourceMappingURL=version.js.map |
{ | ||
"name": "@supabase/postgrest-js", | ||
"version": "1.9.2", | ||
"version": "1.10.0", | ||
"description": "Isomorphic PostgREST client", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -242,3 +242,3 @@ import PostgrestTransformBuilder from './PostgrestTransformBuilder' | ||
in(column: string, values: readonly unknown[]): this { | ||
const cleanedValues = values | ||
const cleanedValues = Array.from(new Set(values)) | ||
.map((s) => { | ||
@@ -245,0 +245,0 @@ // handle postgrest reserved characters |
@@ -1,1 +0,1 @@ | ||
export const version = '1.9.2' | ||
export const version = '1.10.0' |
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
361034