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

@supabase/supabase-js

Package Overview
Dependencies
Maintainers
9
Versions
339
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.41.0 to 2.41.1

4

dist/main/index.d.ts
import SupabaseClient from './SupabaseClient';
import type { GenericSchema, SupabaseClientOptions } from './lib/types';
export * from '@supabase/gotrue-js';
export type { User as AuthUser, Session as AuthSession } from '@supabase/gotrue-js';
export * from '@supabase/auth-js';
export type { User as AuthUser, Session as AuthSession } from '@supabase/auth-js';
export type { PostgrestResponse, PostgrestSingleResponse, PostgrestMaybeSingleResponse, PostgrestError, } from '@supabase/postgrest-js';

@@ -6,0 +6,0 @@ export { FunctionsHttpError, FunctionsFetchError, FunctionsRelayError, FunctionsError, FunctionInvokeOptions, FunctionRegion, } from '@supabase/functions-js';

@@ -22,3 +22,3 @@ "use strict";

const SupabaseClient_1 = __importDefault(require("./SupabaseClient"));
__exportStar(require("@supabase/gotrue-js"), exports);
__exportStar(require("@supabase/auth-js"), exports);
var functions_js_1 = require("@supabase/functions-js");

@@ -25,0 +25,0 @@ Object.defineProperty(exports, "FunctionsHttpError", { enumerable: true, get: function () { return functions_js_1.FunctionsHttpError; } });

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

import { GoTrueClient } from '@supabase/gotrue-js';
import { AuthClient } from '@supabase/auth-js';
import { SupabaseAuthClientOptions } from './types';
export declare class SupabaseAuthClient extends GoTrueClient {
export declare class SupabaseAuthClient extends AuthClient {
constructor(options: SupabaseAuthClientOptions);
}
//# sourceMappingURL=SupabaseAuthClient.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.SupabaseAuthClient = void 0;
const gotrue_js_1 = require("@supabase/gotrue-js");
class SupabaseAuthClient extends gotrue_js_1.GoTrueClient {
const auth_js_1 = require("@supabase/auth-js");
class SupabaseAuthClient extends auth_js_1.AuthClient {
constructor(options) {

@@ -7,0 +7,0 @@ super(options);

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

import { GoTrueClient } from '@supabase/gotrue-js';
import { AuthClient } from '@supabase/auth-js';
import { RealtimeClientOptions } from '@supabase/realtime-js';
import { PostgrestError } from '@supabase/postgrest-js';
declare type GoTrueClientOptions = ConstructorParameters<typeof GoTrueClient>[0];
export interface SupabaseAuthClientOptions extends GoTrueClientOptions {
declare type AuthClientOptions = ConstructorParameters<typeof AuthClient>[0];
export interface SupabaseAuthClientOptions extends AuthClientOptions {
}

@@ -7,0 +7,0 @@ export declare type Fetch = typeof fetch;

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

export declare const version = "2.41.0";
export declare const version = "2.41.1";
//# sourceMappingURL=version.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = void 0;
exports.version = '2.41.0';
exports.version = '2.41.1';
//# sourceMappingURL=version.js.map
import SupabaseClient from './SupabaseClient';
import type { GenericSchema, SupabaseClientOptions } from './lib/types';
export * from '@supabase/gotrue-js';
export type { User as AuthUser, Session as AuthSession } from '@supabase/gotrue-js';
export * from '@supabase/auth-js';
export type { User as AuthUser, Session as AuthSession } from '@supabase/auth-js';
export type { PostgrestResponse, PostgrestSingleResponse, PostgrestMaybeSingleResponse, PostgrestError, } from '@supabase/postgrest-js';

@@ -6,0 +6,0 @@ export { FunctionsHttpError, FunctionsFetchError, FunctionsRelayError, FunctionsError, FunctionInvokeOptions, FunctionRegion, } from '@supabase/functions-js';

import SupabaseClient from './SupabaseClient';
export * from '@supabase/gotrue-js';
export * from '@supabase/auth-js';
export { FunctionsHttpError, FunctionsFetchError, FunctionsRelayError, FunctionsError, FunctionRegion, } from '@supabase/functions-js';

@@ -4,0 +4,0 @@ export * from '@supabase/realtime-js';

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

import { GoTrueClient } from '@supabase/gotrue-js';
import { AuthClient } from '@supabase/auth-js';
import { SupabaseAuthClientOptions } from './types';
export declare class SupabaseAuthClient extends GoTrueClient {
export declare class SupabaseAuthClient extends AuthClient {
constructor(options: SupabaseAuthClientOptions);
}
//# sourceMappingURL=SupabaseAuthClient.d.ts.map

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

import { GoTrueClient } from '@supabase/gotrue-js';
export class SupabaseAuthClient extends GoTrueClient {
import { AuthClient } from '@supabase/auth-js';
export class SupabaseAuthClient extends AuthClient {
constructor(options) {

@@ -4,0 +4,0 @@ super(options);

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

import { GoTrueClient } from '@supabase/gotrue-js';
import { AuthClient } from '@supabase/auth-js';
import { RealtimeClientOptions } from '@supabase/realtime-js';
import { PostgrestError } from '@supabase/postgrest-js';
declare type GoTrueClientOptions = ConstructorParameters<typeof GoTrueClient>[0];
export interface SupabaseAuthClientOptions extends GoTrueClientOptions {
declare type AuthClientOptions = ConstructorParameters<typeof AuthClient>[0];
export interface SupabaseAuthClientOptions extends AuthClientOptions {
}

@@ -7,0 +7,0 @@ export declare type Fetch = typeof fetch;

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

export declare const version = "2.41.0";
export declare const version = "2.41.1";
//# sourceMappingURL=version.d.ts.map

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

export const version = '2.41.0';
export const version = '2.41.1';
//# sourceMappingURL=version.js.map
{
"name": "@supabase/supabase-js",
"version": "2.41.0",
"version": "2.41.1",
"description": "Isomorphic Javascript client for Supabase",

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

"@supabase/functions-js": "2.2.2",
"@supabase/gotrue-js": "2.62.2",
"@supabase/auth-js": "2.63.0",
"@supabase/node-fetch": "2.6.15",

@@ -47,0 +47,0 @@ "@supabase/postgrest-js": "1.9.2",

import SupabaseClient from './SupabaseClient'
import type { GenericSchema, SupabaseClientOptions } from './lib/types'
export * from '@supabase/gotrue-js'
export type { User as AuthUser, Session as AuthSession } from '@supabase/gotrue-js'
export * from '@supabase/auth-js'
export type { User as AuthUser, Session as AuthSession } from '@supabase/auth-js'
export type {

@@ -7,0 +7,0 @@ PostgrestResponse,

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

import { GoTrueClient } from '@supabase/gotrue-js'
import { AuthClient } from '@supabase/auth-js'
import { SupabaseAuthClientOptions } from './types'
export class SupabaseAuthClient extends GoTrueClient {
export class SupabaseAuthClient extends AuthClient {
constructor(options: SupabaseAuthClientOptions) {

@@ -6,0 +6,0 @@ super(options)

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

import { GoTrueClient } from '@supabase/gotrue-js'
import { AuthClient } from '@supabase/auth-js'
import { RealtimeClientOptions } from '@supabase/realtime-js'
import { PostgrestError } from '@supabase/postgrest-js'
type GoTrueClientOptions = ConstructorParameters<typeof GoTrueClient>[0]
type AuthClientOptions = ConstructorParameters<typeof AuthClient>[0]
export interface SupabaseAuthClientOptions extends GoTrueClientOptions {}
export interface SupabaseAuthClientOptions extends AuthClientOptions {}

@@ -9,0 +9,0 @@ export type Fetch = typeof fetch

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

export const version = '2.41.0'
export const version = '2.41.1'
import { FunctionsClient } from '@supabase/functions-js'
import { AuthChangeEvent } from '@supabase/gotrue-js'
import { AuthChangeEvent } from '@supabase/auth-js'
import {

@@ -4,0 +4,0 @@ PostgrestClient,

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