()
| 1753 | } |
| 1754 | |
| 1755 | export function isTeamPremiumSubscriber(): boolean { |
| 1756 | return ( |
| 1757 | getSubscriptionType() === 'team' && |
| 1758 | getRateLimitTier() === 'default_claude_max_5x' |
| 1759 | ) |
| 1760 | } |
| 1761 | |
| 1762 | export function isEnterpriseSubscriber(): boolean { |
| 1763 | return getSubscriptionType() === 'enterprise' |
no test coverage detected