app-server: Add platform os and family to init response

This commit is contained in:
Ruslan Nigmatullin
2026-03-12 16:39:39 -07:00
parent a2546d5dff
commit b3b66e3739
8 changed files with 41 additions and 5 deletions

View File

@@ -2147,11 +2147,19 @@
"InitializeResponse": {
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"platformFamily": {
"type": "string"
},
"platformOs": {
"type": "string"
},
"userAgent": {
"type": "string"
}
},
"required": [
"platformFamily",
"platformOs",
"userAgent"
],
"title": "InitializeResponse",