Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@supabase/postgrest-js

Package Overview
Dependencies
Maintainers
9
Versions
135
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@supabase/postgrest-js - npm Package Compare versions

Comparing version 1.9.2 to 1.10.0

2

dist/main/PostgrestFilterBuilder.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc