UNPKG

@vectorize-io/vectorize-client

Version:
47 lines (46 loc) 1.56 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 Firecrawl connector * @export * @interface FIRECRAWLConfig */ export interface FIRECRAWLConfig { /** * Endpoint. Example: Choose which api endpoint to use * @type {string} * @memberof FIRECRAWLConfig */ endpoint: FIRECRAWLConfigEndpointEnum; /** * Request Body. Example: JSON config for firecrawl's /crawl or /scrape endpoint. * @type {object} * @memberof FIRECRAWLConfig */ request: object; } /** * @export */ export declare const FIRECRAWLConfigEndpointEnum: { readonly Crawl: "Crawl"; readonly Scrape: "Scrape"; }; export type FIRECRAWLConfigEndpointEnum = typeof FIRECRAWLConfigEndpointEnum[keyof typeof FIRECRAWLConfigEndpointEnum]; /** * Check if a given object implements the FIRECRAWLConfig interface. */ export declare function instanceOfFIRECRAWLConfig(value: object): value is FIRECRAWLConfig; export declare function FIRECRAWLConfigFromJSON(json: any): FIRECRAWLConfig; export declare function FIRECRAWLConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): FIRECRAWLConfig; export declare function FIRECRAWLConfigToJSON(json: any): FIRECRAWLConfig; export declare function FIRECRAWLConfigToJSONTyped(value?: FIRECRAWLConfig | null, ignoreDiscriminator?: boolean): any;