diff --git a/packages/frontend-core/src/api/auth.ts b/packages/frontend-core/src/api/auth.ts index 406e2ef53b..09fbcdc416 100644 --- a/packages/frontend-core/src/api/auth.ts +++ b/packages/frontend-core/src/api/auth.ts @@ -7,6 +7,8 @@ import { BaseAPIClient } from "./types" export interface AuthEndpoints { logIn: (tenantId: string, username: string, password: string) => Promise + + // Missing request or response types logOut: () => Promise<{ message: string }> requestForgotPassword: ( tenantId: string, @@ -17,8 +19,6 @@ export interface AuthEndpoints { password: string, resetCode: string ) => Promise<{ message: string }> - - // Missing request or response types setInitInfo: (info: any) => Promise getInitInfo: () => Promise }