MandarineSecurity.Auth.RequestAuthObj
import type { MandarineSecurity } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/security-core/mandarine-security.ns.ts";
const { RequestAuthObj } = MandarineSecurity.Auth;
Data present in request.authentication AUTH_SES_ID refers to the session id with the data of the user that was logged in through Mandarine's built-in authentication AUTH_EXPIRES refers to the time when the session will expire AUTH_PRINCIPAL refers to all the data that was loaded (following the UserDetails implementation)
interface RequestAuthObj {
AUTH_EXPIRES: Date;
AUTH_PRINCIPAL: any;
AUTH_SES_ID: string;
}