feat(core): session.pending.list API with pending-only session_pending storage (#36126)

This commit is contained in:
Kit Langton 2026-07-09 17:25:40 -04:00 committed by GitHub
commit a72992e00f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
43 changed files with 986 additions and 649 deletions

View file

@ -19,7 +19,7 @@ import { Skill as SkillSchema } from "./skill.js"
import { Money } from "./money.js"
import { Snapshot } from "./snapshot.js"
import { TokenUsage } from "./token-usage.js"
import { SessionInput } from "./session-input.js"
import { SessionPending } from "./session-pending.js"
export { FileAttachment }
@ -130,7 +130,7 @@ export const InputAdmitted = Event.durable({
schema: {
...Base,
inputID: SessionMessage.ID,
input: SessionInput.Message,
input: SessionPending.Message,
},
})
export type InputAdmitted = typeof InputAdmitted.Type