Scope Types
AllowedScopesResponse
interface AllowedScopesResponse { keyPrefix: string; name: string; scopes: string[];}ScopeCategory
interface ScopeCategory { id: string; label: string; types: ScopeType[];}ScopeType
interface ScopeType { id: string; label: string; scopes: ScopeEntry[];}ScopeEntry
interface ScopeEntry { value: string; label: string;}ScopeValue
type ScopeValue = (typeof Scope)[keyof typeof Scope];