cloud-ide-lms-model 1.0.241 → 1.0.242

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.
@@ -0,0 +1,16 @@
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
+ */
5
+ declare const academicsRoutesUrl: {
6
+ module: string;
7
+ /** Endpoint to get academic year (academic-year)
8
+ * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
9
+ */
10
+ academicYear: string;
11
+ /**
12
+ * Endpoint to get academic year mapping (academic-year-mapping)
13
+ */
14
+ academicYearMapping: string;
15
+ };
16
+ export { academicsRoutesUrl };
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.academicsRoutesUrl = 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
+ */
8
+ const academicsRoutesUrl = {
9
+ module: 'academics',
10
+ /** Endpoint to get academic year (academic-year)
11
+ * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
12
+ */
13
+ academicYear: "academic-year",
14
+ /**
15
+ * Endpoint to get academic year mapping (academic-year-mapping)
16
+ */
17
+ academicYearMapping: "academic-year-mapping",
18
+ };
19
+ exports.academicsRoutesUrl = academicsRoutesUrl;
20
+ // Freeze the authRoutesUrl object to prevent modifications
21
+ Object.freeze(academicsRoutesUrl);
@@ -0,0 +1,16 @@
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
+ */
5
+ declare const accountsRoutesUrl: {
6
+ module: string;
7
+ /** Endpoint to get accounts year (accounts-year)
8
+ * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
9
+ */
10
+ financialYear: string;
11
+ /**
12
+ * Endpoint to get accounts year mapping (accounts-year-mapping)
13
+ */
14
+ financialYearMapping: string;
15
+ };
16
+ export { accountsRoutesUrl };
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.accountsRoutesUrl = 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
+ */
8
+ const accountsRoutesUrl = {
9
+ module: 'accounts',
10
+ /** Endpoint to get accounts year (accounts-year)
11
+ * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
12
+ */
13
+ financialYear: "financial-year",
14
+ /**
15
+ * Endpoint to get accounts year mapping (accounts-year-mapping)
16
+ */
17
+ financialYearMapping: "financial-year-mapping",
18
+ };
19
+ exports.accountsRoutesUrl = accountsRoutesUrl;
20
+ // Freeze the accountsRoutesUrl object to prevent modifications
21
+ Object.freeze(accountsRoutesUrl);
@@ -3,3 +3,5 @@ export * from './coreRoutes';
3
3
  export * from './designConfigRoutes';
4
4
  export * from './authRoutes';
5
5
  export * from './userRoutes';
6
+ export * from './academicsRoutes';
7
+ export * from './accountsRoutes';
@@ -19,3 +19,5 @@ __exportStar(require("./coreRoutes"), exports);
19
19
  __exportStar(require("./designConfigRoutes"), exports);
20
20
  __exportStar(require("./authRoutes"), exports);
21
21
  __exportStar(require("./userRoutes"), exports);
22
+ __exportStar(require("./academicsRoutes"), exports);
23
+ __exportStar(require("./accountsRoutes"), exports);
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.241",
8
+ "version": "1.0.242",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",