| 1 | // Loops related types will go here |
| 2 | |
| 3 | export interface LoopsEmailData { |
| 4 | email: string |
| 5 | lastName?: string |
| 6 | organizationName: string |
| 7 | inviterName: string |
| 8 | invitationUrl: string |
| 9 | role?: string |
| 10 | // For generic subject/message emails |
| 11 | subject?: string |
| 12 | message?: string |
| 13 | } |
| 14 | |
| 15 | export interface LoopsResponse { |
| 16 | success: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected