feat: added ai file sorting

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-04-14 01:43:30 -07:00
parent fa0b47dfca
commit 4bee367d4a
51 changed files with 1703 additions and 72 deletions

View file

@ -10,6 +10,7 @@ export const searchSpace = z.object({
citations_enabled: z.boolean(),
qna_custom_instructions: z.string().nullable(),
shared_memory_md: z.string().nullable().optional(),
ai_file_sort_enabled: z.boolean().optional().default(false),
member_count: z.number(),
is_owner: z.boolean(),
});
@ -56,6 +57,7 @@ export const updateSearchSpaceRequest = z.object({
citations_enabled: true,
qna_custom_instructions: true,
shared_memory_md: true,
ai_file_sort_enabled: true,
})
.partial(),
});