chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-28 01:50:04 +00:00
parent 892fd85ba7
commit bad4599bf9
2 changed files with 32 additions and 7 deletions
@@ -147,7 +147,11 @@ export const providerHandlers = Layer.unwrap(
}) })
return HttpApiBuilder.group(ProviderApi, "provider", (handlers) => return HttpApiBuilder.group(ProviderApi, "provider", (handlers) =>
handlers.handle("list", list).handle("auth", auth).handleRaw("authorize", authorizeRaw).handle("callback", callback), handlers
.handle("list", list)
.handle("auth", auth)
.handleRaw("authorize", authorizeRaw)
.handle("callback", callback),
) )
}), }),
).pipe( ).pipe(
+27 -6
View File
@@ -2168,8 +2168,15 @@
"in": "query", "in": "query",
"name": "roots", "name": "roots",
"schema": { "schema": {
"type": "string", "anyOf": [
"enum": ["true", "false"] {
"type": "boolean"
},
{
"type": "string",
"enum": ["true", "false"]
}
]
}, },
"description": "Only return root sessions (no parentID)" "description": "Only return root sessions (no parentID)"
}, },
@@ -2209,8 +2216,15 @@
"in": "query", "in": "query",
"name": "archived", "name": "archived",
"schema": { "schema": {
"type": "string", "anyOf": [
"enum": ["true", "false"] {
"type": "boolean"
},
{
"type": "string",
"enum": ["true", "false"]
}
]
}, },
"description": "Include archived sessions (default false)" "description": "Include archived sessions (default false)"
} }
@@ -2310,8 +2324,15 @@
"in": "query", "in": "query",
"name": "roots", "name": "roots",
"schema": { "schema": {
"type": "string", "anyOf": [
"enum": ["true", "false"] {
"type": "boolean"
},
{
"type": "string",
"enum": ["true", "false"]
}
]
}, },
"description": "Only return root sessions (no parentID)" "description": "Only return root sessions (no parentID)"
}, },