cloud-ide-lms-model 1.0.362 → 1.1.1

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.
@@ -28,6 +28,8 @@ declare class AuthUserMstCreatePayload {
28
28
  core_user_attributes: CoreUserAttributes[];
29
29
  core_entity_mapping?: CoreEntityMapping[];
30
30
  core_user_role_exceptions?: CoreUserRoleExceptions[];
31
+ syutm_user_type?: string;
32
+ syutm_type_specific_id?: string;
31
33
  constructor(init?: Partial<AuthUserMstCreatePayload>);
32
34
  Validate?(): Partial<AuthUserMstCreateErrorLogger>;
33
35
  }
@@ -24,6 +24,12 @@ interface designConfigResponseData {
24
24
  tab?: {
25
25
  [key: string]: ICoreTabs;
26
26
  };
27
+ rights?: {
28
+ [permissionId: string]: {
29
+ allowed: boolean;
30
+ source: 'role' | 'exception';
31
+ };
32
+ };
27
33
  }
28
34
  interface ICoreTabs extends ICoreSyptb {
29
35
  syptb_tabs_select: {
@@ -9,6 +9,8 @@ declare class FeeStructureItem {
9
9
  feesi_item_code?: string;
10
10
  feesi_item_name?: string;
11
11
  feesi_description?: string;
12
+ feesi_fee_type?: 'ONE_TIME' | 'RECURRING';
13
+ feesi_payment_frequency?: 'MONTHLY' | 'QUARTERLY' | 'SEMESTER' | 'ANNUAL' | 'ONE_TIME';
12
14
  feesi_amount?: number;
13
15
  feesi_is_amount_editable?: boolean;
14
16
  feesi_min_amount?: number;
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.362",
8
+ "version": "1.1.1",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",