Add AI parsing and graph parsing status; update related hooks and localization; modify microtime values in config and state files
This commit is contained in:
@@ -216,6 +216,45 @@
|
||||
"maxLength": 500,
|
||||
"tooltip": true,
|
||||
"isCustom": true
|
||||
},
|
||||
"aiParsingStatus": {
|
||||
"type": "enum",
|
||||
"required": false,
|
||||
"options": [
|
||||
"unknown",
|
||||
"parsing",
|
||||
"complete",
|
||||
"complete_with_failures"
|
||||
],
|
||||
"style": {
|
||||
"unknown": "default",
|
||||
"parsing": "info",
|
||||
"complete": "success",
|
||||
"complete_with_failures": "warning"
|
||||
},
|
||||
"default": "unknown",
|
||||
"readOnly": true,
|
||||
"tooltip": true,
|
||||
"isCustom": true
|
||||
},
|
||||
"graphParsingStatus": {
|
||||
"type": "enum",
|
||||
"required": false,
|
||||
"options": [
|
||||
"no_graph",
|
||||
"parsing",
|
||||
"complete",
|
||||
"unclean"
|
||||
],
|
||||
"style": {
|
||||
"no_graph": "default",
|
||||
"parsing": "info",
|
||||
"complete": "success",
|
||||
"unclean": "warning"
|
||||
},
|
||||
"default": "no_graph",
|
||||
"tooltip": true,
|
||||
"isCustom": true
|
||||
}
|
||||
},
|
||||
"links": {
|
||||
|
||||
@@ -213,6 +213,24 @@
|
||||
"maxLength": 255,
|
||||
"tooltip": true,
|
||||
"isCustom": true
|
||||
},
|
||||
"aiParsingStatus": {
|
||||
"type": "enum",
|
||||
"options": [
|
||||
"unknown",
|
||||
"parsing",
|
||||
"complete",
|
||||
"failed"
|
||||
],
|
||||
"style": {
|
||||
"unknown": "default",
|
||||
"parsing": "info",
|
||||
"complete": "success",
|
||||
"failed": "danger"
|
||||
},
|
||||
"default": "unknown",
|
||||
"tooltip": true,
|
||||
"isCustom": true
|
||||
}
|
||||
},
|
||||
"links": {
|
||||
|
||||
Reference in New Issue
Block a user