refactor(core): resolve attachments durably at promotion

This commit is contained in:
Kit Langton 2026-07-02 09:48:02 -04:00
commit 994f55423a
14 changed files with 252 additions and 252 deletions

View file

@ -672,6 +672,7 @@ export type SessionContextOutput = {
readonly name?: string
readonly description?: string
readonly source?: { readonly start: number; readonly end: number; readonly text: string }
readonly resolved?: string
}>
readonly agents?: ReadonlyArray<{
readonly name: string
@ -901,6 +902,7 @@ export type SessionHistoryOutput = {
}>
}
readonly delivery: "steer" | "queue"
readonly resolutions?: ReadonlyArray<{ readonly uri: string; readonly resolved: string }>
}
}
| {
@ -1396,6 +1398,7 @@ export type SessionEventsOutput =
}>
}
readonly delivery: "steer" | "queue"
readonly resolutions?: ReadonlyArray<{ readonly uri: string; readonly resolved: string }>
}
}
| {
@ -1837,6 +1840,7 @@ export type SessionMessageOutput = {
readonly name?: string
readonly description?: string
readonly source?: { readonly start: number; readonly end: number; readonly text: string }
readonly resolved?: string
}>
readonly agents?: ReadonlyArray<{
readonly name: string
@ -2018,6 +2022,7 @@ export type MessageListOutput = {
readonly name?: string
readonly description?: string
readonly source?: { readonly start: number; readonly end: number; readonly text: string }
readonly resolved?: string
}>
readonly agents?: ReadonlyArray<{
readonly name: string
@ -3499,6 +3504,7 @@ export type EventSubscribeOutput =
}>
}
readonly delivery: "steer" | "queue"
readonly resolutions?: ReadonlyArray<{ readonly uri: string; readonly resolved: string }>
}
}
| {