UNPKG

@vectorize-io/vectorize-client

Version:
33 lines (32 loc) 1.11 kB
/** * 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. */ /** * Configuration for Supabase connector * @export * @interface SUPABASEConfig */ export interface SUPABASEConfig { /** * Table Name. Example: Enter <table name> or <schema>.<table name> * @type {string} * @memberof SUPABASEConfig */ table: string; } /** * Check if a given object implements the SUPABASEConfig interface. */ export declare function instanceOfSUPABASEConfig(value: object): value is SUPABASEConfig; export declare function SUPABASEConfigFromJSON(json: any): SUPABASEConfig; export declare function SUPABASEConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): SUPABASEConfig; export declare function SUPABASEConfigToJSON(json: any): SUPABASEConfig; export declare function SUPABASEConfigToJSONTyped(value?: SUPABASEConfig | null, ignoreDiscriminator?: boolean): any;