()
| 1844 | } |
| 1845 | |
| 1846 | export function isConsumerSubscriber(): boolean { |
| 1847 | const subscriptionType = getSubscriptionType() |
| 1848 | return ( |
| 1849 | isClaudeAISubscriber() && |
| 1850 | subscriptionType !== null && |
| 1851 | isConsumerPlan(subscriptionType) |
| 1852 | ) |
| 1853 | } |
| 1854 | |
| 1855 | export type UserAccountInfo = { |
| 1856 | subscription?: string |
no test coverage detected