(body: unknown)
| 47 | } |
| 48 | |
| 49 | const jsonPost = (body: unknown): RequestInit => ({ |
| 50 | method: 'POST', |
| 51 | headers: { 'Content-Type': 'application/json' }, |
| 52 | body: JSON.stringify(body), |
| 53 | }); |
| 54 | |
| 55 | export const client = { |
| 56 | activate: (body: ActivateRequest): Promise<ActivateResponse | ServiceError> => { |