cloud-ide-lms-model 1.0.28 → 1.0.29

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,8 @@
1
+ declare const authRoutesUrl: {
2
+ module: string;
3
+ /** Endpoint to get file details (sign-in)
4
+ * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
5
+ */
6
+ signIn: string;
7
+ };
8
+ export { authRoutesUrl };
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.authRoutesUrl = void 0;
4
+ const authRoutesUrl = {
5
+ module: 'auth',
6
+ /** Endpoint to get file details (sign-in)
7
+ * for more details refer {@link https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.sxfaxi4qxff3}
8
+ */
9
+ signIn: "sign-in"
10
+ };
11
+ exports.authRoutesUrl = authRoutesUrl;
12
+ Object.freeze(authRoutesUrl);
@@ -1,3 +1,4 @@
1
1
  export * from './hostManagerRoutes';
2
2
  export * from './coreRoutes';
3
3
  export * from './designConfigRoutes';
4
+ export * from './authRoutes';
@@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./hostManagerRoutes"), exports);
18
18
  __exportStar(require("./coreRoutes"), exports);
19
19
  __exportStar(require("./designConfigRoutes"), exports);
20
+ __exportStar(require("./authRoutes"), exports);
@@ -2,22 +2,24 @@ import { controlType, labelPlacementType, themeSize } from "../../common-types";
2
2
  interface ICoreSype {
3
3
  _id?: string;
4
4
  sype_key: string;
5
- sype_type?: controlType;
6
- sype_placeholder?: string;
7
- sype_auto_complete?: string;
8
5
  sype_page_id_sypg?: string;
9
6
  sype_label?: string;
10
- sype_label_placement?: labelPlacementType;
11
- sype_helper_text_collapse?: boolean;
7
+ sype_auto_complete?: string;
8
+ sype_type?: controlType;
9
+ sype_option_key?: string;
10
+ sype_placeholder?: string;
12
11
  sype_min_length?: number;
13
12
  sype_max_length?: number;
14
- sype_width?: number;
15
- sype_size?: themeSize;
16
13
  sype_regex?: string;
17
14
  sype_required?: boolean;
18
- sype_tooltip?: string;
19
15
  sype_disabled?: boolean;
16
+ sype_width?: number;
17
+ sype_height?: number;
18
+ sype_label_placement?: labelPlacementType;
19
+ sype_helper_text_collapse?: boolean;
20
20
  sype_default?: boolean | string | number;
21
+ sype_tooltip?: string;
22
+ sype_size?: themeSize;
21
23
  sype_isactive?: boolean;
22
24
  }
23
25
  export { ICoreSype };
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.28",
8
+ "version": "1.0.29",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",