@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.44 kB
TypeScript
/**
* Vectorize API
* API for Vectorize services (Beta)
*
* The version of the OpenAPI document: 0.1.2
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { SUPABASEAuthConfig } from './SUPABASEAuthConfig';
/**
*
* @export
* @interface Supabase
*/
export interface Supabase {
/**
* Name of the connector
* @type {string}
* @memberof Supabase
*/
name: string;
/**
* Connector type (must be "SUPABASE")
* @type {string}
* @memberof Supabase
*/
type: SupabaseTypeEnum;
/**
*
* @type {SUPABASEAuthConfig}
* @memberof Supabase
*/
config: SUPABASEAuthConfig;
}
/**
* @export
*/
export declare const SupabaseTypeEnum: {
readonly Supabase: "SUPABASE";
};
export type SupabaseTypeEnum = typeof SupabaseTypeEnum[keyof typeof SupabaseTypeEnum];
/**
* Check if a given object implements the Supabase interface.
*/
export declare function instanceOfSupabase(value: object): value is Supabase;
export declare function SupabaseFromJSON(json: any): Supabase;
export declare function SupabaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): Supabase;
export declare function SupabaseToJSON(json: any): Supabase;
export declare function SupabaseToJSONTyped(value?: Supabase | null, ignoreDiscriminator?: boolean): any;