cloud-ide-lms-model 1.0.48 → 1.0.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,20 @@
1
+ /**
2
+ * Object containing URLs for authentication-related endpoints.
3
+ * These URLs are used for various authentication operations such as sign-in, sign-out, etc.
4
+ */
1
5
  declare const authRoutesUrl: {
2
6
  module: string;
3
7
  /** Endpoint to get file details (sign-in)
4
8
  * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
5
9
  */
6
10
  signIn: string;
11
+ /** Endpoint to create a re-login session */
12
+ createReLoginSession: string;
13
+ /** Endpoint to reset the password */
7
14
  resetPassword: string;
15
+ /** Endpoint to initiate the forgot password process */
8
16
  forgotPassword: string;
17
+ /** Endpoint to sign out */
18
+ signOut: string;
9
19
  };
10
20
  export { authRoutesUrl };
@@ -1,14 +1,25 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.authRoutesUrl = void 0;
4
+ /**
5
+ * Object containing URLs for authentication-related endpoints.
6
+ * These URLs are used for various authentication operations such as sign-in, sign-out, etc.
7
+ */
4
8
  const authRoutesUrl = {
5
9
  module: 'auth',
6
10
  /** Endpoint to get file details (sign-in)
7
11
  * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
8
12
  */
9
13
  signIn: "sign-in",
14
+ /** Endpoint to create a re-login session */
15
+ createReLoginSession: 'create-relogin-session',
16
+ /** Endpoint to reset the password */
10
17
  resetPassword: "reset-password",
11
- forgotPassword: 'forgot-password'
18
+ /** Endpoint to initiate the forgot password process */
19
+ forgotPassword: 'forgot-password',
20
+ /** Endpoint to sign out */
21
+ signOut: 'sign-out',
12
22
  };
13
23
  exports.authRoutesUrl = authRoutesUrl;
24
+ // Freeze the authRoutesUrl object to prevent modifications
14
25
  Object.freeze(authRoutesUrl);
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "typescript": "^5.4.2"
6
6
  },
7
7
  "name": "cloud-ide-lms-model",
8
- "version": "1.0.48",
8
+ "version": "1.0.49",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",