feat(app): harden cancellable LAPP turns
verify / verify (push) Has been cancelled

This commit is contained in:
Codex
2026-07-28 08:44:53 -04:00
parent 4831db1763
commit 23672e857b
26 changed files with 2822 additions and 167 deletions
@@ -0,0 +1,31 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LappConnectionTestResult",
"type": "object",
"properties": {
"diagnosticCode": {
"type": [
"string",
"null"
]
},
"message": {
"type": "string"
},
"modelId": {
"type": "string"
},
"ok": {
"type": "boolean"
},
"providerId": {
"type": "string"
}
},
"required": [
"ok",
"providerId",
"modelId",
"message"
]
}