게시물 Export 용량 기준 분할 추가 v1.5.25

This commit is contained in:
2026-06-01 16:20:35 +09:00
parent 5735fd5046
commit 212bd3f34f
14 changed files with 316 additions and 41 deletions

View File

@@ -13,6 +13,7 @@ const postExportJobInputSchema = z.object({
dateFrom: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional(),
dateTo: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional(),
chunkSize: z.number().int().min(1).max(500).optional(),
maxFileSizeBytes: z.number().int().min(10485760).max(2147483648).optional(),
retentionDays: z.number().int().min(1).max(100).optional()
}).default({})
@@ -120,6 +121,7 @@ export default defineEventHandler(async (event) => {
dateTo: dateRange.dateTo,
rangeLabel: dateRange.rangeLabel,
chunkSize: input.chunkSize,
maxFileSizeBytes: input.maxFileSizeBytes,
retentionDays: input.retentionDays
})