new client version checking protocol (#859)

This commit is contained in:
Michael Quigley
2025-02-10 13:52:42 -05:00
parent e8691803b2
commit 92162d9e4f
35 changed files with 1589 additions and 20 deletions

View File

@ -1909,6 +1909,36 @@ func init() {
}
}
}
},
"post": {
"tags": [
"metadata"
],
"operationId": "clientVersionCheck",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"properties": {
"clientVersion": {
"type": "string"
}
}
}
}
],
"responses": {
"200": {
"description": "compatible"
},
"400": {
"description": "not compatible",
"schema": {
"type": "string"
}
}
}
}
}
},
@ -4114,6 +4144,36 @@ func init() {
}
}
}
},
"post": {
"tags": [
"metadata"
],
"operationId": "clientVersionCheck",
"parameters": [
{
"name": "body",
"in": "body",
"schema": {
"properties": {
"clientVersion": {
"type": "string"
}
}
}
}
],
"responses": {
"200": {
"description": "compatible"
},
"400": {
"description": "not compatible",
"schema": {
"type": "string"
}
}
}
}
}
},