| 10 | type Interval = 'month' | 'year'; |
| 11 | |
| 12 | interface Answers { |
| 13 | isProduction: boolean; |
| 14 | organizationId: string; |
| 15 | userId: string; |
| 16 | interval: Interval; |
| 17 | price: number; |
| 18 | eventsLimit: number; |
| 19 | polarOrganizationId: string; |
| 20 | polarApiKey: string; |
| 21 | } |
| 22 | |
| 23 | async function promptForInput() { |
| 24 | // Get all organizations first |
nothing calls this directly
no outgoing calls
no test coverage detected