File bug directly (#6413)
Co-authored-by: Douwe Osinga <douwe@squareup.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -2531,6 +2531,26 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/system_info": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"super::routes::status"
|
||||
],
|
||||
"operationId": "system_info",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "System information",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/SystemInfo"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/telemetry/event": {
|
||||
"post": {
|
||||
"tags": [
|
||||
@@ -5711,6 +5731,44 @@
|
||||
"propertyName": "type"
|
||||
}
|
||||
},
|
||||
"SystemInfo": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"app_version",
|
||||
"os",
|
||||
"os_version",
|
||||
"architecture",
|
||||
"enabled_extensions"
|
||||
],
|
||||
"properties": {
|
||||
"app_version": {
|
||||
"type": "string"
|
||||
},
|
||||
"architecture": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled_extensions": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"model": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"os": {
|
||||
"type": "string"
|
||||
},
|
||||
"os_version": {
|
||||
"type": "string"
|
||||
},
|
||||
"provider": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"SystemNotificationContent": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
|
||||
Reference in New Issue
Block a user