(
email: string,
featureName: string
)
| 110 | } |
| 111 | |
| 112 | async joinWaitlist( |
| 113 | email: string, |
| 114 | featureName: string |
| 115 | ): Promise<{ message: string }> { |
| 116 | return apiClient.post('/waitlist/signup', { |
| 117 | email, |
| 118 | featureName, |
| 119 | }); |
| 120 | } |
| 121 | |
| 122 | async getMyWaitlistEntries(): Promise<any[]> { |
| 123 | return apiClient.get('/waitlist/my-entries'); |
no test coverage detected