@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
56 lines (55 loc) • 1.94 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.
*/
/**
* Configuration for OneDrive connector
* @export
* @interface ONEDRIVEConfig
*/
export interface ONEDRIVEConfig {
/**
* File Extensions
* @type {Array<string>}
* @memberof ONEDRIVEConfig
*/
fileExtensions: ONEDRIVEConfigFileExtensionsEnum;
/**
* Read starting from this folder (optional). Example: Enter Folder path: /exampleFolder/subFolder
* @type {string}
* @memberof ONEDRIVEConfig
*/
pathPrefix?: string;
}
/**
* @export
*/
export declare const ONEDRIVEConfigFileExtensionsEnum: {
readonly Pdf: "pdf";
readonly Docdocxgdocodtrtfepub: "doc,docx,gdoc,odt,rtf,epub";
readonly Pptpptxgslides: "ppt,pptx,gslides";
readonly Xlsxlsxgsheetsods: "xls,xlsx,gsheets,ods";
readonly Emlmsg: "eml,msg";
readonly Txt: "txt";
readonly Htmlhtm: "html,htm";
readonly Md: "md";
readonly Jpgjpegpngwebpsvggif: "jpg,jpeg,png,webp,svg,gif";
readonly Json: "json";
readonly Csv: "csv";
};
export type ONEDRIVEConfigFileExtensionsEnum = typeof ONEDRIVEConfigFileExtensionsEnum[keyof typeof ONEDRIVEConfigFileExtensionsEnum];
/**
* Check if a given object implements the ONEDRIVEConfig interface.
*/
export declare function instanceOfONEDRIVEConfig(value: object): value is ONEDRIVEConfig;
export declare function ONEDRIVEConfigFromJSON(json: any): ONEDRIVEConfig;
export declare function ONEDRIVEConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): ONEDRIVEConfig;
export declare function ONEDRIVEConfigToJSON(json: any): ONEDRIVEConfig;
export declare function ONEDRIVEConfigToJSONTyped(value?: ONEDRIVEConfig | null, ignoreDiscriminator?: boolean): any;