UNPKG

@vectorize-io/vectorize-client

Version:
61 lines (60 loc) 2.13 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 SharePoint connector * @export * @interface SHAREPOINTConfig */ export interface SHAREPOINTConfig { /** * File Extensions * @type {Array<string>} * @memberof SHAREPOINTConfig */ fileExtensions: SHAREPOINTConfigFileExtensionsEnum; /** * Site Name(s). Example: Filter by site name. All sites if empty. * @type {Array<string>} * @memberof SHAREPOINTConfig */ sites?: Array<string>; /** * Read starting from this folder (optional). Example: Enter Folder path: /exampleFolder/subFolder * @type {string} * @memberof SHAREPOINTConfig */ folderPath?: string; } /** * @export */ export declare const SHAREPOINTConfigFileExtensionsEnum: { 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 Jpgjpegpngwebpsvggif: "jpg,jpeg,png,webp,svg,gif"; readonly Json: "json"; readonly Csv: "csv"; }; export type SHAREPOINTConfigFileExtensionsEnum = typeof SHAREPOINTConfigFileExtensionsEnum[keyof typeof SHAREPOINTConfigFileExtensionsEnum]; /** * Check if a given object implements the SHAREPOINTConfig interface. */ export declare function instanceOfSHAREPOINTConfig(value: object): value is SHAREPOINTConfig; export declare function SHAREPOINTConfigFromJSON(json: any): SHAREPOINTConfig; export declare function SHAREPOINTConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): SHAREPOINTConfig; export declare function SHAREPOINTConfigToJSON(json: any): SHAREPOINTConfig; export declare function SHAREPOINTConfigToJSONTyped(value?: SHAREPOINTConfig | null, ignoreDiscriminator?: boolean): any;