debounce keys with a maximum size of 512

This commit is contained in:
Eric Allam
2025-12-17 16:33:32 +00:00
parent 36cded7fce
commit f0484209a2
+2 -2
View File
@@ -205,7 +205,7 @@ export const TriggerTaskRequestBody = z.object({
region: z.string().optional(),
debounce: z
.object({
key: z.string(),
key: z.string().max(512),
delay: z.string(),
})
.optional(),
@@ -259,7 +259,7 @@ export const BatchTriggerTaskItem = z.object({
region: z.string().optional(),
debounce: z
.object({
key: z.string(),
key: z.string().max(512),
delay: z.string(),
})
.optional(),