Track HTTP setting sources in timeline

This commit is contained in:
Gregory Schier
2026-05-17 10:07:12 -07:00
parent 0c97036864
commit 0a6aed6cc6
13 changed files with 1109 additions and 182 deletions
+8 -1
View File
@@ -258,7 +258,14 @@ export type HttpResponseEvent = {
* The `From` impl is in yaak-http to avoid circular dependencies.
*/
export type HttpResponseEventData =
| { type: "setting"; name: string; value: string }
| {
type: "setting";
name: string;
value: string;
source_model?: string;
source_id?: string;
source_name?: string;
}
| { type: "info"; message: string }
| {
type: "redirect";