chore: drop allowlist entries for deleted restart-operation files

cms removed hooks/use-restart-operation.ts and the plugins.tsx restart
streaming; neither needs a manual-client exemption anymore.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Alex Dunmow 2026-07-06 00:24:43 +08:00
parent 1693ced112
commit 422674ded0

View File

@ -39,13 +39,11 @@ var allowedFrontendFiles = map[string]bool{
// command palette); generated per-RPC hooks can't express this without 10
// independent hook instances and manual aggregation.
"hooks/use-entity-search.ts": true,
"routes/admin/plugins.tsx": true, // Server-streaming (for await...of) — useMutation doesn't support streaming
"hooks/use-restart-operation.ts": true, // Server-streaming + raw Connect envelope for cross-origin orchestrator stream
"routes/admin/menus.tsx": true, // Imperative async callback in useCallback
"components/data-platform/tables/creation-wizard.tsx": true, // useMutation has serialization bug with oneof fields
// SiteAgentService.SendMessage is a Connect server-streaming RPC consumed
// with `for await` — generated Connect Query hooks are unary-only and
// cannot express a streaming turn (same reason as use-restart-operation).
// cannot express a streaming turn.
"components/site-agent/use-site-agent-stream.ts": true,
// Registry browse/detail call the ORCHESTRATOR's public Connect endpoints