cloud-ide-lms-model 1.1.5 → 1.1.7

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.
Files changed (68) hide show
  1. package/lib/model/academics/academics_bonafide_request.d.ts +114 -0
  2. package/lib/model/academics/academics_bonafide_request.js +78 -0
  3. package/lib/model/academics/index.d.ts +1 -0
  4. package/lib/model/academics/index.js +1 -0
  5. package/lib/model/admission/admission_rte_details.d.ts +85 -0
  6. package/lib/model/admission/admission_rte_details.js +8 -0
  7. package/lib/model/admission/admission_vital_information.d.ts +69 -0
  8. package/lib/model/admission/admission_vital_information.js +8 -0
  9. package/lib/model/admission/index.d.ts +2 -0
  10. package/lib/model/admission/index.js +2 -0
  11. package/lib/model/core/core_workflow_config.d.ts +132 -0
  12. package/lib/model/core/core_workflow_config.js +92 -0
  13. package/lib/model/core/core_workflow_engine.d.ts +58 -0
  14. package/lib/model/core/core_workflow_engine.js +40 -0
  15. package/lib/model/core/core_workflow_registry.d.ts +113 -0
  16. package/lib/model/core/core_workflow_registry.js +71 -0
  17. package/lib/model/core/index.d.ts +3 -0
  18. package/lib/model/core/index.js +3 -0
  19. package/lib/model/email/email_list.d.ts +74 -0
  20. package/lib/model/email/email_list.js +96 -0
  21. package/lib/model/email/email_log.d.ts +63 -0
  22. package/lib/model/email/email_log.js +43 -0
  23. package/lib/model/email/email_reference.d.ts +74 -0
  24. package/lib/model/email/email_reference.js +81 -0
  25. package/lib/model/email/email_subscription.d.ts +80 -0
  26. package/lib/model/email/email_subscription.js +93 -0
  27. package/lib/model/email/email_template.d.ts +74 -0
  28. package/lib/model/email/email_template.js +93 -0
  29. package/lib/model/email/email_vendor.d.ts +73 -0
  30. package/lib/model/email/email_vendor.js +93 -0
  31. package/lib/model/email/index.d.ts +6 -0
  32. package/lib/model/email/index.js +22 -0
  33. package/lib/model/index.d.ts +1 -0
  34. package/lib/model/index.js +1 -0
  35. package/lib/routes/academicsRoutes.d.ts +4 -0
  36. package/lib/routes/academicsRoutes.js +4 -0
  37. package/lib/routes/admissionRoutes.d.ts +4 -0
  38. package/lib/routes/admissionRoutes.js +4 -0
  39. package/lib/routes/coreRoutes.d.ts +16 -0
  40. package/lib/routes/coreRoutes.js +16 -0
  41. package/lib/routes/emailRoutes.d.ts +32 -0
  42. package/lib/routes/emailRoutes.js +37 -0
  43. package/lib/routes/index.d.ts +1 -0
  44. package/lib/routes/index.js +1 -0
  45. package/lib/schema/academics/academics_bonafide_request.d.ts +18 -0
  46. package/lib/schema/academics/academics_bonafide_request.js +7 -0
  47. package/lib/schema/academics/index.d.ts +1 -0
  48. package/lib/schema/academics/index.js +1 -0
  49. package/lib/schema/admission/admission_application_main.d.ts +8 -0
  50. package/lib/schema/admission/admission_family_members.d.ts +1 -0
  51. package/lib/schema/admission/admission_rte_details.d.ts +33 -0
  52. package/lib/schema/admission/admission_rte_details.js +15 -0
  53. package/lib/schema/admission/admission_vital_information.d.ts +21 -0
  54. package/lib/schema/admission/admission_vital_information.js +15 -0
  55. package/lib/schema/admission/index.d.ts +2 -0
  56. package/lib/schema/admission/index.js +2 -0
  57. package/lib/schema/core/core_workflow_approver_rules.d.ts +18 -0
  58. package/lib/schema/core/core_workflow_approver_rules.js +7 -0
  59. package/lib/schema/core/core_workflow_config.d.ts +23 -0
  60. package/lib/schema/core/core_workflow_config.js +7 -0
  61. package/lib/schema/core/core_workflow_registry.d.ts +26 -0
  62. package/lib/schema/core/core_workflow_registry.js +7 -0
  63. package/lib/schema/core/core_workflow_transaction_history.d.ts +17 -0
  64. package/lib/schema/core/core_workflow_transaction_history.js +7 -0
  65. package/lib/schema/core/index.d.ts +4 -0
  66. package/lib/schema/core/index.js +4 -0
  67. package/lib/schema/email/email_reference.d.ts +1 -1
  68. package/package.json +1 -1
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.emailRoutesUrl = void 0;
4
+ /**
5
+ * Object containing URLs for email-related endpoints.
6
+ * These URLs are used for various email operations such as templates, references, vendors, lists, logs, and subscriptions.
7
+ */
8
+ const emailRoutesUrl = {
9
+ module: 'email',
10
+ /**
11
+ * Endpoint for email templates (email-template)
12
+ */
13
+ emailTemplate: 'email-template',
14
+ /**
15
+ * Endpoint for email references (email-reference)
16
+ */
17
+ emailReference: 'email-reference',
18
+ /**
19
+ * Endpoint for email vendors (email-vendor)
20
+ */
21
+ emailVendor: 'email-vendor',
22
+ /**
23
+ * Endpoint for email lists (email-list)
24
+ */
25
+ emailList: 'email-list',
26
+ /**
27
+ * Endpoint for email logs (email-log)
28
+ */
29
+ emailLog: 'email-log',
30
+ /**
31
+ * Endpoint for email subscriptions (email-subscription)
32
+ */
33
+ emailSubscription: 'email-subscription'
34
+ };
35
+ exports.emailRoutesUrl = emailRoutesUrl;
36
+ // Freeze the emailRoutesUrl object to prevent modifications
37
+ Object.freeze(emailRoutesUrl);
@@ -10,3 +10,4 @@ export * from './frontdeskRoutes';
10
10
  export * from './feesRoutes';
11
11
  export * from './notificationRoutes';
12
12
  export * from './admissionRoutes';
13
+ export * from './emailRoutes';
@@ -26,3 +26,4 @@ __exportStar(require("./frontdeskRoutes"), exports);
26
26
  __exportStar(require("./feesRoutes"), exports);
27
27
  __exportStar(require("./notificationRoutes"), exports);
28
28
  __exportStar(require("./admissionRoutes"), exports);
29
+ __exportStar(require("./emailRoutes"), exports);
@@ -0,0 +1,18 @@
1
+ declare class IAcademicsBonafideRequest {
2
+ _id?: string;
3
+ abnr_request_number?: string;
4
+ abnr_student_id?: string;
5
+ abnr_student_id_auth?: string;
6
+ abnr_purpose?: string;
7
+ abnr_request_date?: Date;
8
+ abnr_status_id_sygms?: string;
9
+ abnr_current_step?: number;
10
+ abnr_workflow_id_wfrg?: string;
11
+ abnr_requested_by_user?: string;
12
+ abnr_soft_copy_id_cyfm?: string;
13
+ abnr_stamped_copy_id_cyfm?: string;
14
+ abnr_completed_date?: Date;
15
+ abnr_entity_id_syen?: string;
16
+ abnr_isactive?: boolean;
17
+ }
18
+ export { IAcademicsBonafideRequest };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IAcademicsBonafideRequest = void 0;
4
+ /* INTERFACE START */
5
+ class IAcademicsBonafideRequest {
6
+ }
7
+ exports.IAcademicsBonafideRequest = IAcademicsBonafideRequest;
@@ -4,3 +4,4 @@ export * from './aca_class_program_master';
4
4
  export * from './aca_class_program_term';
5
5
  export * from './aca_prg_trm_section';
6
6
  export * from './aca_class_prg_branch';
7
+ export * from './academics_bonafide_request';
@@ -20,3 +20,4 @@ __exportStar(require("./aca_class_program_master"), exports);
20
20
  __exportStar(require("./aca_class_program_term"), exports);
21
21
  __exportStar(require("./aca_prg_trm_section"), exports);
22
22
  __exportStar(require("./aca_class_prg_branch"), exports);
23
+ __exportStar(require("./academics_bonafide_request"), exports);
@@ -17,6 +17,14 @@ declare class AdmissionApplicationMain {
17
17
  admap_marital_status?: string;
18
18
  admap_blood_group_id_sygms?: string;
19
19
  admap_photo_id_cyfm?: string;
20
+ admap_identification_status_id_sygms?: string;
21
+ admap_is_rte_scheme?: boolean;
22
+ admap_grn?: string;
23
+ admap_grn_authority_id_edbrd?: string;
24
+ admap_handicap_certificate_id_cyfm?: string;
25
+ admap_handicap_certificate_number?: string;
26
+ admap_handicap_percentage?: number;
27
+ admap_accessibility_requirements?: string;
20
28
  admap_primary_email?: string;
21
29
  admap_alternative_email?: string;
22
30
  admap_mobile_phone?: string;
@@ -46,6 +46,7 @@ declare class AdmissionFamilyMembersBase {
46
46
  admfm_financial_responsibility?: boolean;
47
47
  admfm_family_member_id_user?: string;
48
48
  admfm_remarks?: string;
49
+ admfm_identification_status_id_sygms?: string;
49
50
  admfm_isactive?: boolean;
50
51
  }
51
52
  declare class AdmissionFamilyMembers extends AdmissionFamilyMembersBase {
@@ -0,0 +1,33 @@
1
+ /**
2
+ * Admission RTE (Right to Education) Details Schema - TypeScript Interfaces
3
+ *
4
+ * Purpose: Type definitions for admission RTE details
5
+ * Prefix: admrte_ (admission RTE)
6
+ */
7
+ declare class AdmissionRteDetailsBase {
8
+ _id?: string;
9
+ admrte_admission_id_admap?: string;
10
+ admrte_reference_table?: string;
11
+ admrte_reference_id?: string;
12
+ admrte_rte_certificate_number?: string;
13
+ admrte_rte_certificate_date?: Date;
14
+ admrte_rte_category_id_sygms?: string;
15
+ admrte_income_certificate_number?: string;
16
+ admrte_income_certificate_date?: Date;
17
+ admrte_income_certificate_id_cyfm?: string;
18
+ admrte_caste_certificate_number?: string;
19
+ admrte_caste_certificate_date?: Date;
20
+ admrte_caste_certificate_id_cyfm?: string;
21
+ admrte_caste_category_id_sygms?: string;
22
+ admrte_bpl_card_number?: string;
23
+ admrte_bpl_card_id_cyfm?: string;
24
+ admrte_annual_income?: number;
25
+ admrte_annual_income_currency_id_syic?: string;
26
+ admrte_rte_quota_percentage?: number;
27
+ admrte_remarks?: string;
28
+ admrte_isactive?: boolean;
29
+ }
30
+ declare class AdmissionRteDetails extends AdmissionRteDetailsBase {
31
+ }
32
+ export { AdmissionRteDetailsBase, // Base interface
33
+ AdmissionRteDetails };
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ * Admission RTE (Right to Education) Details Schema - TypeScript Interfaces
4
+ *
5
+ * Purpose: Type definitions for admission RTE details
6
+ * Prefix: admrte_ (admission RTE)
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.AdmissionRteDetails = exports.AdmissionRteDetailsBase = void 0;
10
+ class AdmissionRteDetailsBase {
11
+ }
12
+ exports.AdmissionRteDetailsBase = AdmissionRteDetailsBase;
13
+ class AdmissionRteDetails extends AdmissionRteDetailsBase {
14
+ }
15
+ exports.AdmissionRteDetails = AdmissionRteDetails;
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Admission Vital Information Schema - TypeScript Interfaces
3
+ *
4
+ * Purpose: Type definitions for admission vital information
5
+ * Prefix: admvi_ (admission vital information)
6
+ */
7
+ declare class AdmissionVitalInformationBase {
8
+ _id?: string;
9
+ admvi_admission_id_admap?: string;
10
+ admvi_vital_type_id_sygms?: string;
11
+ admvi_value?: string;
12
+ admvi_unit_id_sygms?: string;
13
+ admvi_captured_date?: Date;
14
+ admvi_captured_by_user?: string;
15
+ admvi_remarks?: string;
16
+ admvi_isactive?: boolean;
17
+ }
18
+ declare class AdmissionVitalInformation extends AdmissionVitalInformationBase {
19
+ }
20
+ export { AdmissionVitalInformationBase, // Base interface
21
+ AdmissionVitalInformation };
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ * Admission Vital Information Schema - TypeScript Interfaces
4
+ *
5
+ * Purpose: Type definitions for admission vital information
6
+ * Prefix: admvi_ (admission vital information)
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.AdmissionVitalInformation = exports.AdmissionVitalInformationBase = void 0;
10
+ class AdmissionVitalInformationBase {
11
+ }
12
+ exports.AdmissionVitalInformationBase = AdmissionVitalInformationBase;
13
+ class AdmissionVitalInformation extends AdmissionVitalInformationBase {
14
+ }
15
+ exports.AdmissionVitalInformation = AdmissionVitalInformation;
@@ -5,3 +5,5 @@ export * from './admission_document_uploads';
5
5
  export * from './admission_contact_addresses';
6
6
  export * from './admission_family_members';
7
7
  export * from './admission_fee_snapshot';
8
+ export * from './admission_rte_details';
9
+ export * from './admission_vital_information';
@@ -21,3 +21,5 @@ __exportStar(require("./admission_document_uploads"), exports);
21
21
  __exportStar(require("./admission_contact_addresses"), exports);
22
22
  __exportStar(require("./admission_family_members"), exports);
23
23
  __exportStar(require("./admission_fee_snapshot"), exports);
24
+ __exportStar(require("./admission_rte_details"), exports);
25
+ __exportStar(require("./admission_vital_information"), exports);
@@ -0,0 +1,18 @@
1
+ declare class ICoreWorkflowApproverRules {
2
+ _id?: string;
3
+ wfar_workflow_config_id_wfcfg?: string;
4
+ wfar_approval_group_id?: string;
5
+ wfar_group_approval_type_id_sygms?: string;
6
+ wfar_rule_type_id_sygms?: string;
7
+ wfar_rule_value?: string;
8
+ wfar_rule_operator_id_sygms?: string;
9
+ wfar_combined_filters?: any;
10
+ wfar_priority?: number;
11
+ wfar_condition?: any;
12
+ wfar_is_optional?: boolean;
13
+ wfar_min_approvals?: number;
14
+ wfar_valid_from_date?: Date;
15
+ wfar_valid_to_date?: Date;
16
+ wfar_isactive?: boolean;
17
+ }
18
+ export { ICoreWorkflowApproverRules };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ICoreWorkflowApproverRules = void 0;
4
+ /* INTERFACE START */
5
+ class ICoreWorkflowApproverRules {
6
+ }
7
+ exports.ICoreWorkflowApproverRules = ICoreWorkflowApproverRules;
@@ -0,0 +1,23 @@
1
+ declare class ICoreWorkflowConfig {
2
+ _id?: string;
3
+ wfcfg_workflow_id_wfrg?: string;
4
+ wfcfg_step_number?: number;
5
+ wfcfg_step_name?: string;
6
+ wfcfg_approval_type_id_sygms?: string;
7
+ wfcfg_approval_logic?: any;
8
+ wfcfg_allow_edit?: boolean;
9
+ wfcfg_allow_reject?: boolean;
10
+ wfcfg_allow_request_changes?: boolean;
11
+ wfcfg_timeout_hours?: number;
12
+ wfcfg_escalation_step?: number;
13
+ wfcfg_use_fallback?: boolean;
14
+ wfcfg_valid_from_date?: Date;
15
+ wfcfg_valid_to_date?: Date;
16
+ wfcfg_isactive?: boolean;
17
+ wfcfg_fallback_user_id_auth?: string;
18
+ wfcfg_fallback_designation_id?: string;
19
+ wfcfg_fallback_department_id?: string;
20
+ wfcfg_fallback_role_id?: string;
21
+ wfcfg_notify_all_approvers?: boolean;
22
+ }
23
+ export { ICoreWorkflowConfig };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ICoreWorkflowConfig = void 0;
4
+ /* INTERFACE START */
5
+ class ICoreWorkflowConfig {
6
+ }
7
+ exports.ICoreWorkflowConfig = ICoreWorkflowConfig;
@@ -0,0 +1,26 @@
1
+ declare class ICoreWorkflowRegistry {
2
+ _id?: string;
3
+ wfrg_workflow_code?: string;
4
+ wfrg_title?: string;
5
+ wfrg_desc?: string;
6
+ wfrg_category_id_sygms?: string;
7
+ wfrg_entity_id_syen?: string;
8
+ wfrg_page_id_sypg?: string;
9
+ wfrg_menu_id_syme?: string;
10
+ wfrg_component_selector?: string;
11
+ wfrg_component_path?: string;
12
+ wfrg_query_params?: any;
13
+ wfrg_view_mode_id_sygms?: string;
14
+ wfrg_trigger_type_id_sygms?: string;
15
+ wfrg_trigger_condition?: any;
16
+ wfrg_auto_initialize?: boolean;
17
+ wfrg_isactive?: boolean;
18
+ wfrg_valid_from_date?: Date;
19
+ wfrg_valid_to_date?: Date;
20
+ wfrg_reinitialize_on_edit?: boolean;
21
+ wfrg_notify_approvers_on_final_status?: boolean;
22
+ wfrg_show_approver_names?: boolean;
23
+ wfrg_mask_approver_info?: boolean;
24
+ wfrg_configuration?: any;
25
+ }
26
+ export { ICoreWorkflowRegistry };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ICoreWorkflowRegistry = void 0;
4
+ /* INTERFACE START */
5
+ class ICoreWorkflowRegistry {
6
+ }
7
+ exports.ICoreWorkflowRegistry = ICoreWorkflowRegistry;
@@ -0,0 +1,17 @@
1
+ declare class ICoreWorkflowTransactionHistory {
2
+ _id?: string;
3
+ wfth_workflow_id_wfrg?: string;
4
+ wfth_request_id?: string;
5
+ wfth_request_table?: string;
6
+ wfth_step_number?: number;
7
+ wfth_action_type_id_sygms?: string;
8
+ wfth_action_by_user?: string;
9
+ wfth_action_date?: Date;
10
+ wfth_comments?: string;
11
+ wfth_previous_values?: any;
12
+ wfth_new_values?: any;
13
+ wfth_attachments?: string[];
14
+ wfth_notification_sent?: boolean;
15
+ wfth_entity_id_syen?: string;
16
+ }
17
+ export { ICoreWorkflowTransactionHistory };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ICoreWorkflowTransactionHistory = void 0;
4
+ /* INTERFACE START */
5
+ class ICoreWorkflowTransactionHistory {
6
+ }
7
+ exports.ICoreWorkflowTransactionHistory = ICoreWorkflowTransactionHistory;
@@ -40,3 +40,7 @@ export * from './core_board_grade_system';
40
40
  export * from './core_school_board_affiliation';
41
41
  export * from './core_user_type_mapping';
42
42
  export * from './core_dashboard_cards';
43
+ export * from './core_workflow_registry';
44
+ export * from './core_workflow_config';
45
+ export * from './core_workflow_approver_rules';
46
+ export * from './core_workflow_transaction_history';
@@ -56,3 +56,7 @@ __exportStar(require("./core_board_grade_system"), exports);
56
56
  __exportStar(require("./core_school_board_affiliation"), exports);
57
57
  __exportStar(require("./core_user_type_mapping"), exports);
58
58
  __exportStar(require("./core_dashboard_cards"), exports);
59
+ __exportStar(require("./core_workflow_registry"), exports);
60
+ __exportStar(require("./core_workflow_config"), exports);
61
+ __exportStar(require("./core_workflow_approver_rules"), exports);
62
+ __exportStar(require("./core_workflow_transaction_history"), exports);
@@ -2,7 +2,7 @@ declare class IEmailReference {
2
2
  eref_reference: string;
3
3
  eref_sender_id_elst: string;
4
4
  eref_receiver_id_elst: string;
5
- eref_var: boolean;
5
+ eref_var: string[];
6
6
  eref_isactive: boolean;
7
7
  }
8
8
  export { IEmailReference };
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.1.5",
8
+ "version": "1.1.7",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",