chore: generate

This commit is contained in:
opencode-agent[bot]
2026-06-02 04:14:16 +00:00
parent c1c02f80dd
commit 497ff36e91
+22 -10
View File
@@ -18304,7 +18304,7 @@
"items": { "items": {
"type": "array", "type": "array",
"items": { "items": {
"$ref": "#/components/schemas/SessionInfo" "$ref": "#/components/schemas/SessionV2Info"
} }
}, },
"cursor": { "cursor": {
@@ -20995,7 +20995,20 @@
"required": ["action", "effect", "resource"], "required": ["action", "effect", "resource"],
"additionalProperties": false "additionalProperties": false
}, },
"SessionInfo": { "LocationRef": {
"type": "object",
"properties": {
"directory": {
"type": "string"
},
"workspaceID": {
"type": "string"
}
},
"required": ["directory"],
"additionalProperties": false
},
"SessionV2Info": {
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "id": {
@@ -21009,13 +21022,6 @@
"projectID": { "projectID": {
"type": "string" "type": "string"
}, },
"workspaceID": {
"type": "string",
"pattern": "^wrk"
},
"path": {
"type": "string"
},
"agent": { "agent": {
"type": "string" "type": "string"
}, },
@@ -21085,9 +21091,15 @@
}, },
"title": { "title": {
"type": "string" "type": "string"
},
"location": {
"$ref": "#/components/schemas/LocationRef"
},
"subpath": {
"type": "string"
} }
}, },
"required": ["id", "projectID", "cost", "tokens", "time", "title"], "required": ["id", "projectID", "cost", "tokens", "time", "title", "location"],
"additionalProperties": false "additionalProperties": false
}, },
"SessionDelivery": { "SessionDelivery": {