chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-23 15:31:16 +00:00
parent 0517ab4695
commit 2cd89d64e9
2 changed files with 26 additions and 28 deletions

View File

@@ -62,7 +62,9 @@ export function toPartialRow(info: DeepPartial<Session.Info>) {
export default [ export default [
SyncEvent.project(Session.Event.Created, (db, data) => { SyncEvent.project(Session.Event.Created, (db, data) => {
db.insert(SessionTable).values(Session.toRow(data.info as Session.Info)).run() db.insert(SessionTable)
.values(Session.toRow(data.info as Session.Info))
.run()
}), }),
SyncEvent.project(Session.Event.Updated, (db, data) => { SyncEvent.project(Session.Event.Updated, (db, data) => {

View File

@@ -4174,34 +4174,30 @@
"parts": { "parts": {
"type": "array", "type": "array",
"items": { "items": {
"anyOf": [ "type": "object",
{ "properties": {
"type": "object", "id": {
"properties": { "type": "string",
"id": { "pattern": "^prt.*"
"type": "string", },
"pattern": "^prt.*" "type": {
}, "type": "string",
"type": { "const": "file"
"type": "string", },
"const": "file" "mime": {
}, "type": "string"
"mime": { },
"type": "string" "filename": {
}, "type": "string"
"filename": { },
"type": "string" "url": {
}, "type": "string"
"url": { },
"type": "string" "source": {
}, "$ref": "#/components/schemas/FilePartSource"
"source": {
"$ref": "#/components/schemas/FilePartSource"
}
},
"required": ["type", "mime", "url"]
} }
] },
"required": ["type", "mime", "url"]
} }
} }
}, },