feat(i18n): extend content translation storage

This commit is contained in:
poyrazavsever
2026-07-21 12:48:46 +03:00
parent 570b0774bd
commit 206484f0eb
11 changed files with 8647 additions and 24 deletions
+1
View File
@@ -232,6 +232,7 @@ export const chatMessageCreateSchema = z.object({
role: z.enum(chatMessageRoles),
content: z.string().trim().min(1).max(100_000),
contextJournalEntryIds: z.array(resourceIdSchema).max(100).default([]),
sourceLocale: z.string().trim().min(2).max(12).nullable().optional(),
});
export const proposalCreateSchema = z.object({