feat(core): Update list folders endpoint to support filter excludeFolderIdAndDescendants (no-changelog) (#13880)

This commit is contained in:
Ricardo Espinoza
2025-03-13 09:56:12 -04:00
committed by GitHub
parent c646346c54
commit 03f70b5079
3 changed files with 75 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ export const filterSchema = z
parentFolderId: z.string().optional(),
name: z.string().optional(),
tags: z.array(z.string()).optional(),
excludeFolderIdAndDescendants: z.string().optional(),
})
.strict();