(token: string)
| 62 | }, |
| 63 | |
| 64 | async acceptInvite(token: string): Promise<void> { |
| 65 | await apiClient.post("/workspaces/accept-invite", null, { |
| 66 | params: { token }, |
| 67 | }); |
| 68 | }, |
| 69 | |
| 70 | async removeMember(workspaceId: string, memberId: string): Promise<void> { |
| 71 | await apiClient.delete(`/workspaces/${workspaceId}/members/${memberId}`); |