feat: 移除项目创建任务数量上限

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-01-19 13:57:44 +08:00
co-authored by Claude
parent 13acdd426b
commit 70f6f52459
+1 -1
View File
@@ -74,7 +74,7 @@ export const CreateDiscoveryTaskSchema = WebhookAuthSchema.extend({
tasks: z.array(z.object({
sourceUrl: z.string().url().max(2000),
sourceType: z.string().max(50).default('manual'),
})).min(1).max(50)
})).min(1)
})
export const UpdateDiscoveryTaskSchema = z.object({