fix(acp): separate acp sessions from user sessions (#7857)

Signed-off-by: Rabi Mishra <mishra.rabi@gmail.com>
Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Rabi Mishra
2026-03-26 22:22:42 +05:30
committed by GitHub
parent 3d8d2aa2dc
commit f5ad3384b8
7 changed files with 251 additions and 52 deletions
+2 -1
View File
@@ -7904,7 +7904,8 @@
"sub_agent",
"hidden",
"terminal",
"gateway"
"gateway",
"acp"
]
},
"SessionsQuery": {
+1 -1
View File
@@ -1276,7 +1276,7 @@ export type SessionReplyResponse = {
request_id: string;
};
export type SessionType = 'user' | 'scheduled' | 'sub_agent' | 'hidden' | 'terminal' | 'gateway';
export type SessionType = 'user' | 'scheduled' | 'sub_agent' | 'hidden' | 'terminal' | 'gateway' | 'acp';
export type SessionsQuery = {
limit: number;