UNPKG

@itwin/insights-client

Version:

Insights client for the iTwin platform

28 lines 946 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LogLevelEntry = exports.ExtractionState = void 0; /** * Allowed current state of extraction. * @export * @interface ExtractionState */ var ExtractionState; (function (ExtractionState) { ExtractionState["Queued"] = "Queued"; ExtractionState["Running"] = "Running"; ExtractionState["Succeeded"] = "Succeeded"; ExtractionState["PartiallySucceeded"] = "PartiallySucceeded"; ExtractionState["Failed"] = "Failed"; })(ExtractionState || (exports.ExtractionState = ExtractionState = {})); /** * Level of the log entry. * @export * @interface LogLevelEntry */ var LogLevelEntry; (function (LogLevelEntry) { LogLevelEntry["Information"] = "Information"; LogLevelEntry["Warning"] = "Warning"; LogLevelEntry["Error"] = "Error"; })(LogLevelEntry || (exports.LogLevelEntry = LogLevelEntry = {})); //# sourceMappingURL=Extraction.js.map