cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
27 lines (26 loc) • 1.05 kB
TypeScript
/**
* Object containing URLs for authentication-related endpoints.
* These URLs are used for various authentication operations such as sign-in, sign-out, etc.
*/
declare const authRoutesUrl: {
module: string;
/** Endpoint to get file details (sign-in)
* for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
*/
signIn: string;
/** Endpoint to create a re-login session */
createReLoginSession: string;
/** Endpoint to reset the password */
resetPassword: string;
/** Endpoint to initiate the forgot password process */
forgotPassword: string;
/** Endpoint to sign out */
signOut: string;
/** Endpoint to generate view-only token for public APIs */
generateViewOnlyToken: string;
/** Endpoint to switch entity for logged-in user */
switchEntity: string;
/** Endpoint to get login test credentials for an entity */
loginTestConfig: string;
};
export { authRoutesUrl };