@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.47 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 { FIRECRAWLAuthConfig } from './FIRECRAWLAuthConfig';
/**
*
* @export
* @interface Firecrawl
*/
export interface Firecrawl {
/**
* Name of the connector
* @type {string}
* @memberof Firecrawl
*/
name: string;
/**
* Connector type (must be "FIRECRAWL")
* @type {string}
* @memberof Firecrawl
*/
type: FirecrawlTypeEnum;
/**
*
* @type {FIRECRAWLAuthConfig}
* @memberof Firecrawl
*/
config: FIRECRAWLAuthConfig;
}
/**
* @export
*/
export declare const FirecrawlTypeEnum: {
readonly Firecrawl: "FIRECRAWL";
};
export type FirecrawlTypeEnum = typeof FirecrawlTypeEnum[keyof typeof FirecrawlTypeEnum];
/**
* Check if a given object implements the Firecrawl interface.
*/
export declare function instanceOfFirecrawl(value: object): value is Firecrawl;
export declare function FirecrawlFromJSON(json: any): Firecrawl;
export declare function FirecrawlFromJSONTyped(json: any, ignoreDiscriminator: boolean): Firecrawl;
export declare function FirecrawlToJSON(json: any): Firecrawl;
export declare function FirecrawlToJSONTyped(value?: Firecrawl | null, ignoreDiscriminator?: boolean): any;