cloud-ide-lms-model 1.0.195 → 1.0.197

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,7 +1,8 @@
1
1
  import { MTableQueries } from "../../common-types";
2
2
  import { ICoreSygmt } from "../../schema";
3
3
  import { controllerResponse } from "../../utilities";
4
- export interface IGeneralMasterTypeListRequest extends MTableQueries {
4
+ export declare class IGeneralMasterTypeListRequest extends MTableQueries {
5
+ constructor(init: Partial<IGeneralMasterTypeListRequest>);
5
6
  }
6
7
  export interface IGeneralMasterTypeListResponse {
7
8
  success: boolean;
@@ -1,7 +1,16 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MGeneralMasterTypeToggleStatusPayload = exports.MGeneralMasterTypeGetByIdPayload = exports.MGeneralMasterTypeDeletePayload = exports.MGeneralMasterType = void 0;
3
+ exports.MGeneralMasterTypeToggleStatusPayload = exports.MGeneralMasterTypeGetByIdPayload = exports.MGeneralMasterTypeDeletePayload = exports.MGeneralMasterType = exports.IGeneralMasterTypeListRequest = void 0;
4
+ const common_types_1 = require("../../common-types");
4
5
  const schema_1 = require("../../schema");
6
+ // Request payload for getting list of General Master Types
7
+ class IGeneralMasterTypeListRequest extends common_types_1.MTableQueries {
8
+ constructor(init) {
9
+ super(init);
10
+ Object.assign(this, init);
11
+ }
12
+ }
13
+ exports.IGeneralMasterTypeListRequest = IGeneralMasterTypeListRequest;
5
14
  // Model class for General Master Type operations
6
15
  class MGeneralMasterType extends schema_1.ICoreSygmt {
7
16
  constructor(init) {
@@ -5,6 +5,6 @@ declare class ICoreSygmt {
5
5
  sygmt_desc?: string;
6
6
  sygmt_isactive?: boolean;
7
7
  sygmt_configuration?: object;
8
- sygmt_id_sygmt?: string;
8
+ sygmt_id_sygmt?: string | null;
9
9
  }
10
10
  export { ICoreSygmt };
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.195",
8
+ "version": "1.0.197",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",