UNPKG

@vectorize-io/vectorize-client

Version:
57 lines (56 loc) 1.74 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. */ /** * Authentication configuration for Supabase * @export * @interface SUPABASEAuthConfig */ export interface SUPABASEAuthConfig { /** * Host. Example: Enter the host of the deployment * @type {string} * @memberof SUPABASEAuthConfig */ host: string; /** * Port. Example: Enter the port of the deployment * @type {number} * @memberof SUPABASEAuthConfig */ port?: number; /** * Database. Example: Enter the database name * @type {string} * @memberof SUPABASEAuthConfig */ database: string; /** * Username. Example: Enter the username * @type {string} * @memberof SUPABASEAuthConfig */ username: string; /** * Password. Example: Enter the username's password * @type {string} * @memberof SUPABASEAuthConfig */ password: string; } /** * Check if a given object implements the SUPABASEAuthConfig interface. */ export declare function instanceOfSUPABASEAuthConfig(value: object): value is SUPABASEAuthConfig; export declare function SUPABASEAuthConfigFromJSON(json: any): SUPABASEAuthConfig; export declare function SUPABASEAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): SUPABASEAuthConfig; export declare function SUPABASEAuthConfigToJSON(json: any): SUPABASEAuthConfig; export declare function SUPABASEAuthConfigToJSONTyped(value?: SUPABASEAuthConfig | null, ignoreDiscriminator?: boolean): any;