/*
 Generated by typeshare 1.13.0
*/

export type SessionId = string;

export interface AuthRequest {
	username: string;
	password: string;
}

export type AuthResponse = 
	| { type: "Success", content: SessionId }
	| { type: "PasswordReset", content: SessionId };