fix: onboarding endpoints send token secret (#4575)

This commit is contained in:
Jack Amadeo
2025-09-09 13:43:46 -04:00
committed by GitHub
parent 0a4c60998f
commit 2080425d9a
7 changed files with 135 additions and 36 deletions
+55
View File
@@ -886,6 +886,46 @@
]
}
},
"/handle_openrouter": {
"post": {
"tags": [
"super::routes::setup"
],
"operationId": "start_openrouter_setup",
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SetupResponse"
}
}
}
}
}
}
},
"/handle_tetrate": {
"post": {
"tags": [
"super::routes::setup"
],
"operationId": "start_tetrate_setup",
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SetupResponse"
}
}
}
}
}
}
},
"/recipes/create": {
"post": {
"tags": [
@@ -3608,6 +3648,21 @@
}
}
},
"SetupResponse": {
"type": "object",
"required": [
"success",
"message"
],
"properties": {
"message": {
"type": "string"
},
"success": {
"type": "boolean"
}
}
},
"StartAgentRequest": {
"type": "object",
"required": [