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:
2026-03-27 10:47:30 +01:00
parent fa3c92379f
commit 412c25f184
14 changed files with 164 additions and 15 deletions

View File

@@ -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": {

View File

@@ -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": {