(value: unknown)
| 364 | ] as const; |
| 365 | |
| 366 | export function isValidAgentVisibility(value: unknown): value is AgentVisibility { |
| 367 | return typeof value === 'string' && (VALID_AGENT_VISIBILITIES as readonly string[]).includes(value); |
| 368 | } |
| 369 | |
| 370 | /** |
| 371 | * Agent configuration stored in member profiles |
no outgoing calls
no test coverage detected