New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@supabase/supabase-js

Package Overview
Dependencies
Maintainers
12
Versions
362
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@supabase/supabase-js - npm Package Compare versions

Comparing version 2.47.3 to 2.47.4-rc.1

9

dist/main/lib/types.d.ts

@@ -78,2 +78,9 @@ import { AuthClient } from '@supabase/auth-js';

};
export declare type GenericRelationship = {
foreignKeyName: string;
columns: string[];
isOneToOne?: boolean;
referencedRelation: string;
referencedColumns: string[];
};
export declare type GenericTable = {

@@ -83,2 +90,3 @@ Row: Record<string, unknown>;

Update: Record<string, unknown>;
Relationships: GenericRelationship[];
};

@@ -88,2 +96,3 @@ export declare type GenericUpdatableView = GenericTable;

Row: Record<string, unknown>;
Relationships: GenericRelationship[];
};

@@ -90,0 +99,0 @@ export declare type GenericView = GenericUpdatableView | GenericNonUpdatableView;

2

dist/main/lib/version.d.ts

@@ -1,2 +0,2 @@

export declare const version = "2.47.3";
export declare const version = "2.47.4-rc.1";
//# sourceMappingURL=version.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = '2.47.3';
exports.version = '2.47.4-rc.1';
//# sourceMappingURL=version.js.map

@@ -88,3 +88,3 @@ import { FunctionsClient } from '@supabase/functions-js';

count?: 'exact' | 'planned' | 'estimated';
}): PostgrestFilterBuilder<Schema, Fn['Returns'] extends any[] ? Fn['Returns'][number] extends Record<string, unknown> ? Fn['Returns'][number] : never : never, Fn['Returns']>;
}): PostgrestFilterBuilder<Schema, Fn['Returns'] extends any[] ? Fn['Returns'][number] extends Record<string, unknown> ? Fn['Returns'][number] : never : never, Fn['Returns'], FnName, null>;
/**

@@ -91,0 +91,0 @@ * Creates a Realtime channel with Broadcast, Presence, and Postgres Changes.

@@ -78,2 +78,9 @@ import { AuthClient } from '@supabase/auth-js';

};
export declare type GenericRelationship = {
foreignKeyName: string;
columns: string[];
isOneToOne?: boolean;
referencedRelation: string;
referencedColumns: string[];
};
export declare type GenericTable = {

@@ -83,2 +90,3 @@ Row: Record<string, unknown>;

Update: Record<string, unknown>;
Relationships: GenericRelationship[];
};

@@ -88,2 +96,3 @@ export declare type GenericUpdatableView = GenericTable;

Row: Record<string, unknown>;
Relationships: GenericRelationship[];
};

@@ -90,0 +99,0 @@ export declare type GenericView = GenericUpdatableView | GenericNonUpdatableView;

@@ -1,2 +0,2 @@

export declare const version = "2.47.3";
export declare const version = "2.47.4-rc.1";
//# sourceMappingURL=version.d.ts.map

@@ -1,2 +0,2 @@

export const version = '2.47.3';
export const version = '2.47.4-rc.1';
//# sourceMappingURL=version.js.map

@@ -88,3 +88,3 @@ import { FunctionsClient } from '@supabase/functions-js';

count?: 'exact' | 'planned' | 'estimated';
}): PostgrestFilterBuilder<Schema, Fn['Returns'] extends any[] ? Fn['Returns'][number] extends Record<string, unknown> ? Fn['Returns'][number] : never : never, Fn['Returns']>;
}): PostgrestFilterBuilder<Schema, Fn['Returns'] extends any[] ? Fn['Returns'][number] extends Record<string, unknown> ? Fn['Returns'][number] : never : never, Fn['Returns'], FnName, null>;
/**

@@ -91,0 +91,0 @@ * Creates a Realtime channel with Broadcast, Presence, and Postgres Changes.

{
"name": "@supabase/supabase-js",
"version": "2.47.3",
"version": "2.47.4-rc.1",
"description": "Isomorphic Javascript client for Supabase",

@@ -46,3 +46,3 @@ "keywords": [

"@supabase/node-fetch": "2.6.15",
"@supabase/postgrest-js": "1.16.3",
"@supabase/postgrest-js": "1.17.7",
"@supabase/realtime-js": "2.11.2",

@@ -49,0 +49,0 @@ "@supabase/storage-js": "2.7.1"

@@ -14,2 +14,3 @@ # `supabase-js` - Isomorphic JavaScript Client for Supabase.

Then you're able to import the library and establish the connection with the database:

@@ -16,0 +17,0 @@

@@ -83,2 +83,10 @@ import { AuthClient } from '@supabase/auth-js'

export type GenericRelationship = {
foreignKeyName: string
columns: string[]
isOneToOne?: boolean
referencedRelation: string
referencedColumns: string[]
}
export type GenericTable = {

@@ -88,2 +96,3 @@ Row: Record<string, unknown>

Update: Record<string, unknown>
Relationships: GenericRelationship[]
}

@@ -95,2 +104,3 @@

Row: Record<string, unknown>
Relationships: GenericRelationship[]
}

@@ -97,0 +107,0 @@

@@ -1,1 +0,1 @@

export const version = '2.47.3'
export const version = '2.47.4-rc.1'

@@ -227,3 +227,5 @@ import { FunctionsClient } from '@supabase/functions-js'

: never,
Fn['Returns']
Fn['Returns'],
FnName,
null
> {

@@ -230,0 +232,0 @@ return this.rest.rpc(fn, args, options)

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

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 too big to display

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