Mcp/bulk approval (#412)

* feat(pending-operations): implement bulk commit functionality with UI support

* feat(pending-operations): add bulk action labels and warnings for confirmation dialogs

* feat(pending-operations): enhance bulk commit functionality with rejection handling and summary updates
This commit is contained in:
Mattsson
2026-05-07 13:00:11 +02:00
committed by GitHub
parent a295b62bfb
commit dbe634d0aa
4 changed files with 674 additions and 8 deletions
+4
View File
@@ -573,6 +573,10 @@ export const PendingOperationsQuerySchema = z.object({
offset: z.coerce.number().int().nonnegative().default(0),
})
export const PendingOperationsBulkSchema = z.object({
ids: z.array(z.string().uuid()).min(1).max(100),
})
// ============================================================
// Voucher gap schemas
// ============================================================