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:
Douwe Osinga 2026-01-12 12:13:01 -05:00 committed by GitHub
parent 26c5a6c1dd
commit 5a460fd3b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 359 additions and 112 deletions

View file

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