Update auth endpoints

This commit is contained in:
Andrew Kingston 2024-12-05 12:27:29 +00:00
parent f8f81fdd6d
commit dcb9fd2c53
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -7,6 +7,8 @@ import { BaseAPIClient } from "./types"
export interface AuthEndpoints {
logIn: (tenantId: string, username: string, password: string) => Promise<void>
// 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<void>
getInitInfo: () => Promise<any>
}