()
| 1681 | } |
| 1682 | |
| 1683 | export function isTeamPremiumSubscriber(): boolean { |
| 1684 | return ( |
| 1685 | getSubscriptionType() === 'team' && |
| 1686 | getRateLimitTier() === 'default_claude_max_5x' |
| 1687 | ) |
| 1688 | } |
| 1689 | |
| 1690 | export function isEnterpriseSubscriber(): boolean { |
| 1691 | return getSubscriptionType() === 'enterprise' |
no test coverage detected