/** Must stay in sync with backend/src/services/CapabilityRegistry.ts */ export const CAPABILITIES = [ 'stacks', 'containers', 'resources', 'templates', 'global-logs', 'system-stats', 'fleet', 'auto-updates', 'labels', 'webhooks', 'network-topology', 'notifications', 'notification-routing', 'host-console', 'container-exec', 'audit-log', 'scheduled-ops', 'sso', 'api-tokens', 'users', 'registries', 'self-update', ] as const; export type Capability = (typeof CAPABILITIES)[number];