게시물 Export 용량 기준 분할 추가 v1.5.25
This commit is contained in:
@@ -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
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user