Refresh loaded summary schema fixtures

This commit is contained in:
canvrno-oai
2026-05-04 14:17:35 -07:00
parent a3f6451db9
commit bc358443c1
6 changed files with 50 additions and 43 deletions

View File

@@ -3683,6 +3683,10 @@
"null"
]
},
"includeSummaries": {
"description": "When true, include lightweight metadata for each loaded thread in the page.",
"type": "boolean"
},
"limit": {
"description": "Optional page size; defaults to no limit.",
"format": "uint32",
@@ -3691,10 +3695,6 @@
"integer",
"null"
]
},
"includeSummaries": {
"description": "When true, include lightweight metadata for each loaded thread in the page.",
"type": "boolean"
}
},
"type": "object"
@@ -6331,4 +6331,4 @@
}
],
"title": "ClientRequest"
}
}

View File

@@ -16210,6 +16210,10 @@
"null"
]
},
"includeSummaries": {
"description": "When true, include lightweight metadata for each loaded thread in the page.",
"type": "boolean"
},
"limit": {
"description": "Optional page size; defaults to no limit.",
"format": "uint32",
@@ -16218,10 +16222,6 @@
"integer",
"null"
]
},
"includeSummaries": {
"description": "When true, include lightweight metadata for each loaded thread in the page.",
"type": "boolean"
}
},
"title": "ThreadLoadedListParams",
@@ -16237,19 +16237,20 @@
},
"type": "array"
},
"summaries": {
"description": "Loaded-thread summaries for the returned page when `includeSummaries` is true. Empty when summaries were not requested.",
"items": {
"$ref": "#/definitions/v2/ThreadLoadedSummary"
},
"type": "array"
},
"nextCursor": {
"description": "Opaque cursor to pass to the next call to continue after the last item. if None, there are no more items to return.",
"type": [
"string",
"null"
]
},
"summaries": {
"default": [],
"description": "Loaded-thread summaries for the returned page when `includeSummaries` is true. Empty when summaries were not requested.",
"items": {
"$ref": "#/definitions/v2/ThreadLoadedSummary"
},
"type": "array"
}
},
"required": [
@@ -18305,4 +18306,4 @@
},
"title": "CodexAppServerProtocol",
"type": "object"
}
}

View File

@@ -14096,6 +14096,10 @@
"null"
]
},
"includeSummaries": {
"description": "When true, include lightweight metadata for each loaded thread in the page.",
"type": "boolean"
},
"limit": {
"description": "Optional page size; defaults to no limit.",
"format": "uint32",
@@ -14104,10 +14108,6 @@
"integer",
"null"
]
},
"includeSummaries": {
"description": "When true, include lightweight metadata for each loaded thread in the page.",
"type": "boolean"
}
},
"title": "ThreadLoadedListParams",
@@ -14123,19 +14123,20 @@
},
"type": "array"
},
"summaries": {
"description": "Loaded-thread summaries for the returned page when `includeSummaries` is true. Empty when summaries were not requested.",
"items": {
"$ref": "#/definitions/ThreadLoadedSummary"
},
"type": "array"
},
"nextCursor": {
"description": "Opaque cursor to pass to the next call to continue after the last item. if None, there are no more items to return.",
"type": [
"string",
"null"
]
},
"summaries": {
"default": [],
"description": "Loaded-thread summaries for the returned page when `includeSummaries` is true. Empty when summaries were not requested.",
"items": {
"$ref": "#/definitions/ThreadLoadedSummary"
},
"type": "array"
}
},
"required": [
@@ -16190,4 +16191,4 @@
},
"title": "CodexAppServerProtocolV2",
"type": "object"
}
}

View File

@@ -8,6 +8,10 @@
"null"
]
},
"includeSummaries": {
"description": "When true, include lightweight metadata for each loaded thread in the page.",
"type": "boolean"
},
"limit": {
"description": "Optional page size; defaults to no limit.",
"format": "uint32",
@@ -16,12 +20,8 @@
"integer",
"null"
]
},
"includeSummaries": {
"description": "When true, include lightweight metadata for each loaded thread in the page.",
"type": "boolean"
}
},
"title": "ThreadLoadedListParams",
"type": "object"
}
}

View File

@@ -43,19 +43,20 @@
},
"type": "array"
},
"summaries": {
"description": "Loaded-thread summaries for the returned page when `includeSummaries` is true. Empty when summaries were not requested.",
"items": {
"$ref": "#/definitions/ThreadLoadedSummary"
},
"type": "array"
},
"nextCursor": {
"description": "Opaque cursor to pass to the next call to continue after the last item. if None, there are no more items to return.",
"type": [
"string",
"null"
]
},
"summaries": {
"default": [],
"description": "Loaded-thread summaries for the returned page when `includeSummaries` is true. Empty when summaries were not requested.",
"items": {
"$ref": "#/definitions/ThreadLoadedSummary"
},
"type": "array"
}
},
"required": [
@@ -63,4 +64,4 @@
],
"title": "ThreadLoadedListResponse",
"type": "object"
}
}

View File

@@ -2,7 +2,11 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export type ThreadLoadedSummary = { id: string,
export type ThreadLoadedSummary = {
/**
* Thread id for a currently loaded session.
*/
id: string,
/**
* Parent thread id when this loaded thread is an AgentControl-spawned subagent.
*/