tika-api
Version:
Apache Tika promise based API client
13 lines (12 loc) • 479 B
JavaScript
export default class TikaDefinitions {}
//
TikaDefinitions.StatusCode = {
OK: 200,
NoContent: 204, //No content (for example when we are unpacking file without attachments)
UnknownFileType: 415, //Unknown file type
Unparsable: 422, //Unparsable document of known type (password protected documents and unsupported versions like Biff5 Excel)
InternalError: 500 //Internal error
};
//
TikaDefinitions.MetadataFile = '__METADATA__';
TikaDefinitions.TextFile = '__TEXT__';