cloud-ide-lms-model 1.1.22 → 1.1.24

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.
@@ -17,7 +17,11 @@ type IFinancialYearMappingToggleStatusErrorLogger = {
17
17
  [key in keyof MFinancialYearMappingToggleStatusPayload]: string;
18
18
  };
19
19
  declare class MFinancialYearMapping extends MTableQueries {
20
+ accfymp_id?: string;
20
21
  accfymp_financial_year_id_accyr?: string;
22
+ accfymp_entity_id_syen?: string;
23
+ accfymp_islocked?: boolean;
24
+ accfymp_iscurrent?: boolean;
21
25
  constructor(init: MFinancialYearMapping);
22
26
  Validate?(): Partial<IFinancialYearMappingErrorLogger>;
23
27
  }
@@ -18,6 +18,8 @@ type AuthUserMstCreateErrorLogger = {
18
18
  declare class AuthUserMstListPayload extends MTableQueries {
19
19
  syenm_entity_id_syen?: string;
20
20
  syutm_user_type?: string;
21
+ syutm_user_type_nin?: string[];
22
+ syutm_user_type_in?: string[];
21
23
  constructor(init: AuthUserMstListPayload);
22
24
  Validate?(): Partial<AuthUserMstListErrorLogger>;
23
25
  }
@@ -79,6 +79,7 @@ interface FdskLeadConfigMasterGetByIdResponse extends FdskLeadConfigMasterBase {
79
79
  _id?: string;
80
80
  user_fullname?: string;
81
81
  };
82
+ fdlcm_entity_id_syen?: string;
82
83
  }
83
84
  export { IFdskLeadConfigMasterErrorLogger, //interface
84
85
  IFdskLeadConfigMasterGetByIdErrorLogger, //interface
@@ -11,6 +11,7 @@ declare class FdskLeadConfigMaster extends FdskLeadConfigMasterBase {
11
11
  fdlcm_lead_created_for_id_sygms?: string;
12
12
  fdlcm_defalut_priority_id_sygms?: string;
13
13
  fdlcm_default_counselor_id_user?: string;
14
+ fdlcm_entity_id_syen?: string;
14
15
  }
15
16
  export { FdskLeadConfigMaster, // interface
16
17
  FdskLeadConfigMasterBase };
package/package.json CHANGED
@@ -1,9 +1,6 @@
1
1
  {
2
- "devDependencies": {
3
- "typescript": "^5.4.2"
4
- },
5
2
  "name": "cloud-ide-lms-model",
6
- "version": "1.1.22",
3
+ "version": "1.1.24",
7
4
  "description": "Package for Model management of Cloud IDEsys LMS",
8
5
  "main": "lib/index.js",
9
6
  "types": "lib/index.d.ts",
@@ -23,9 +20,10 @@
23
20
  },
24
21
  "author": "ankush bhure",
25
22
  "license": "ISC",
26
- "files": ["lib/**/*"],
27
- "dependencies": {
28
- },
23
+ "files": [
24
+ "lib/**/*"
25
+ ],
26
+ "dependencies": {},
29
27
  "devDependencies": {
30
28
  "typescript": "^5.4.2"
31
29
  }