(tier: MembershipTier | null | undefined)
| 104 | * agents as publicly listed and to view the members-only discovery pool). |
| 105 | */ |
| 106 | export function hasApiAccess(tier: MembershipTier | null | undefined): boolean { |
| 107 | if (!tier) return false; |
| 108 | return (API_ACCESS_TIERS as readonly string[]).includes(tier); |
| 109 | } |
| 110 | |
| 111 | export interface Organization { |
| 112 | workos_organization_id: string; |
no outgoing calls
no test coverage detected