We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5e6263 commit 51bc424Copy full SHA for 51bc424
1 file changed
packages/opencode/src/server/routes/instance/httpapi/groups/session.ts
@@ -25,6 +25,8 @@ const QueryBoolean = Schema.Literals(["true", "false"]).pipe(
25
)
26
export const ListQuery = Schema.Struct({
27
directory: Schema.optional(Schema.String),
28
+ scope: Schema.optional(Schema.Literals(["project"])),
29
+ path: Schema.optional(Schema.String),
30
roots: Schema.optional(QueryBoolean),
31
start: Schema.optional(Schema.NumberFromString),
32
search: Schema.optional(Schema.String),
@@ -413,4 +415,3 @@ export const SessionApi = HttpApi.make("session")
413
415
description: "Experimental HttpApi surface for selected instance routes.",
414
416
}),
417
-
0 commit comments