mirror of
https://github.com/block/goose.git
synced 2026-05-01 04:59:37 +00:00
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:
parent
26c5a6c1dd
commit
5a460fd3b1
10 changed files with 359 additions and 112 deletions
|
|
@ -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": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue