()
| 1685 | } |
| 1686 | |
| 1687 | export function isTeamPremiumSubscriber(): boolean { |
| 1688 | return ( |
| 1689 | getSubscriptionType() === 'team' && |
| 1690 | getRateLimitTier() === 'default_claude_max_5x' |
| 1691 | ) |
| 1692 | } |
| 1693 | |
| 1694 | export function isEnterpriseSubscriber(): boolean { |
| 1695 | return getSubscriptionType() === 'enterprise' |
no test coverage detected