fix(documents): folderId=empty-string normalises to null at validator

The hub UI sends folderId='' when the user picks "root-only" in the
folder sidebar. The Zod validator was accepting it as a string and
the service then ran eq(folderId, '') instead of isNull(folderId),
returning zero results.

Adding a .transform on folderId converts empty string to null at the
boundary so the service receives the expected nullable shape. Pre-
existing bug from Wave 11.B that the hub rebuild made more visible.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-11 13:10:19 +02:00
parent ab798947d8
commit 0804944647
2 changed files with 10 additions and 2 deletions

View File

@@ -86,7 +86,11 @@ export const listDocumentsSchema = baseListQuerySchema
interestId: z.string().optional(),
clientId: z.string().optional(),
documentType: z.string().optional(),
folderId: z.string().nullable().optional(),
folderId: z
.string()
.nullable()
.optional()
.transform((v) => (v === '' ? null : v)),
includeDescendants: z.coerce.boolean().optional(),
status: z.string().optional(),
/** Hub tab filter - applies tab-specific status / signer-membership constraints. */

View File

@@ -24,7 +24,11 @@ export const listFilesSchema = baseListQuerySchema
yachtId: z.string().optional(),
companyId: z.string().optional(),
category: z.string().optional(),
folderId: z.string().uuid().optional(),
folderId: z
.string()
.uuid()
.optional()
.transform((v) => (v === '' ? null : v)),
/** Entity-aggregated projection params — mutually exclusive with folderId. */
entityType: z.enum(['client', 'company', 'yacht']).optional(),
entityId: z.string().uuid().optional(),