(payload: UpdateAccountRequest)
| 617 | ); |
| 618 | }, |
| 619 | updateAccount(payload: UpdateAccountRequest) { |
| 620 | return withLegacyFallback<OpenConfig>( |
| 621 | openApiV1.updateAuthAccount({ body: payload }), |
| 622 | () => httpClient.post<ApiEnvelope<OpenConfig>>('/api/auth/account/edit', payload), |
| 623 | ); |
| 624 | }, |
| 625 | }; |
| 626 | |
| 627 | export const apiKeyApi = { |
nothing calls this directly
no test coverage detected