cloud-ide-lms-model 1.1.19 → 1.1.21
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.
- package/lib/common-types/common.js +6 -2
- package/lib/common-types/emailServiceConfig.js +2 -1
- package/lib/common-types/index.js +20 -4
- package/lib/common-types/jwtPayload.js +2 -1
- package/lib/common-types/userPermissions.js +2 -1
- package/lib/index.js +23 -7
- package/lib/middleware/index.js +17 -1
- package/lib/middleware/securityHeadersMiddleware.js +2 -1
- package/lib/model/academics/aca_academic_year.js +12 -5
- package/lib/model/academics/aca_academic_year_mapping.js +12 -5
- package/lib/model/academics/aca_class_prg_branch.js +15 -6
- package/lib/model/academics/aca_class_program_master.js +12 -5
- package/lib/model/academics/aca_class_program_term.js +13 -5
- package/lib/model/academics/aca_prg_trm_section.js +13 -5
- package/lib/model/academics/academics_bonafide_request.js +12 -4
- package/lib/model/academics/index.js +23 -7
- package/lib/model/accounts/acc_financial_config.js +10 -6
- package/lib/model/accounts/acc_financial_year.js +12 -5
- package/lib/model/accounts/acc_financial_year_mapping.js +12 -5
- package/lib/model/accounts/index.js +19 -3
- package/lib/model/admission/admission_application_main.js +8 -3
- package/lib/model/admission/admission_confirmation_types.js +12 -5
- package/lib/model/admission/admission_contact_addresses.js +2 -1
- package/lib/model/admission/admission_elective_detail.js +8 -3
- package/lib/model/admission/admission_family_members.js +2 -1
- package/lib/model/admission/admission_fee_snapshot.js +2 -1
- package/lib/model/admission/admission_rte_details.js +2 -1
- package/lib/model/admission/admission_vital_information.js +2 -1
- package/lib/model/admission/index.js +24 -8
- package/lib/model/app/app-build-config.model.js +8 -4
- package/lib/model/app/app-changelog.model.js +8 -4
- package/lib/model/app/app-deployment.model.js +8 -4
- package/lib/model/app/app-platform-link.model.js +8 -4
- package/lib/model/app/app-publish.model.js +8 -4
- package/lib/model/app/app-registration-start.model.js +8 -4
- package/lib/model/app/app-registration.model.js +8 -4
- package/lib/model/app/app-rollout-config.model.d.ts +59 -0
- package/lib/model/app/app-rollout-config.model.js +40 -0
- package/lib/model/app/app-statistics.model.d.ts +57 -0
- package/lib/model/app/app-statistics.model.js +40 -0
- package/lib/model/app/app-store-provider.model.js +8 -4
- package/lib/model/app/app-user-update-status.model.d.ts +63 -0
- package/lib/model/app/app-user-update-status.model.js +40 -0
- package/lib/model/app/app-version.model.js +8 -4
- package/lib/model/app/index.d.ts +3 -0
- package/lib/model/app/index.js +28 -9
- package/lib/model/auth/auth_user_mst.js +26 -16
- package/lib/model/auth/entity-switch.js +4 -2
- package/lib/model/auth/forgot-password.js +4 -2
- package/lib/model/auth/generate-view-only-token.js +4 -1
- package/lib/model/auth/index.js +23 -7
- package/lib/model/auth/login.js +5 -2
- package/lib/model/auth/register.js +4 -4
- package/lib/model/auth/reset-password.js +4 -2
- package/lib/model/common/index.js +17 -1
- package/lib/model/common/mongoose-object.js +2 -1
- package/lib/model/core/core_department.js +10 -3
- package/lib/model/core/core_designation.js +10 -3
- package/lib/model/core/core_designation_grade_level.js +13 -5
- package/lib/model/core/core_entity_access_pass_management.js +10 -3
- package/lib/model/core/core_file_manager.js +8 -4
- package/lib/model/core/core_general_master.js +14 -6
- package/lib/model/core/core_general_master_type.js +15 -7
- package/lib/model/core/core_iso_currency.js +6 -4
- package/lib/model/core/core_page_elements.js +14 -5
- package/lib/model/core/core_page_elements_mapping.js +12 -3
- package/lib/model/core/core_pin_code.js +4 -2
- package/lib/model/core/core_system_country.js +6 -3
- package/lib/model/core/core_system_entity.js +8 -5
- package/lib/model/core/core_system_menu.js +13 -6
- package/lib/model/core/core_system_nationality.js +6 -3
- package/lib/model/core/core_system_pages.js +13 -5
- package/lib/model/core/core_system_pages_theme.js +14 -3
- package/lib/model/core/core_system_theme_user_preferences.js +4 -3
- package/lib/model/core/core_system_themes.js +4 -2
- package/lib/model/core/core_user_role.js +10 -3
- package/lib/model/core/core_workflow_config.js +13 -4
- package/lib/model/core/core_workflow_engine.js +9 -2
- package/lib/model/core/core_workflow_registry.js +12 -4
- package/lib/model/core/dashboard-cards.js +9 -3
- package/lib/model/core/design-config.js +4 -2
- package/lib/model/core/financial_config.js +10 -6
- package/lib/model/core/index.js +43 -27
- package/lib/model/email/email_list.js +10 -4
- package/lib/model/email/email_log.js +8 -4
- package/lib/model/email/email_reference.js +10 -4
- package/lib/model/email/email_subscription.js +10 -4
- package/lib/model/email/email_template.js +10 -4
- package/lib/model/email/email_vendor.js +10 -4
- package/lib/model/email/index.js +22 -6
- package/lib/model/fees/fee_assignment.js +11 -6
- package/lib/model/fees/fee_discount_rule.js +12 -5
- package/lib/model/fees/fee_payment.js +11 -5
- package/lib/model/fees/fee_receipt_template.js +12 -5
- package/lib/model/fees/fee_structure.js +13 -5
- package/lib/model/fees/index.js +21 -5
- package/lib/model/frontdesk/fdsk_lead_assignment_detail.js +7 -4
- package/lib/model/frontdesk/fdsk_lead_config_master.js +12 -9
- package/lib/model/frontdesk/fdsk_leads.js +8 -5
- package/lib/model/frontdesk/index.js +19 -3
- package/lib/model/index.js +27 -11
- package/lib/model/notifications/index.js +17 -1
- package/lib/model/notifications/notification.js +10 -3
- package/lib/routes/academicsRoutes.js +4 -1
- package/lib/routes/accountsRoutes.js +4 -1
- package/lib/routes/admissionRoutes.js +4 -1
- package/lib/routes/appRoutes.js +4 -1
- package/lib/routes/authRoutes.js +4 -1
- package/lib/routes/commonRoutes.js +4 -1
- package/lib/routes/coreRoutes.js +4 -1
- package/lib/routes/designConfigRoutes.js +4 -1
- package/lib/routes/emailRoutes.js +4 -1
- package/lib/routes/feesRoutes.js +4 -1
- package/lib/routes/frontdeskRoutes.js +4 -1
- package/lib/routes/hostManagerRoutes.js +4 -1
- package/lib/routes/index.js +30 -14
- package/lib/routes/notificationRoutes.js +4 -1
- package/lib/routes/userRoutes.js +4 -1
- package/lib/schema/academics/aca_academic_year.js +4 -1
- package/lib/schema/academics/aca_academic_year_mapping.js +5 -2
- package/lib/schema/academics/aca_class_prg_branch.js +5 -2
- package/lib/schema/academics/aca_class_program_master.js +5 -2
- package/lib/schema/academics/aca_class_program_term.js +5 -2
- package/lib/schema/academics/aca_prg_trm_section.js +5 -2
- package/lib/schema/academics/academics_bonafide_request.js +4 -3
- package/lib/schema/academics/index.js +23 -7
- package/lib/schema/accounts/acc_financial_config.js +4 -2
- package/lib/schema/accounts/acc_financial_year.js +4 -1
- package/lib/schema/accounts/acc_financial_year_mapping.js +5 -2
- package/lib/schema/accounts/index.js +19 -3
- package/lib/schema/admission/admission_application_main.js +4 -3
- package/lib/schema/admission/admission_contact_addresses.js +7 -5
- package/lib/schema/admission/admission_document_uploads.js +4 -3
- package/lib/schema/admission/admission_elective_detail.js +4 -3
- package/lib/schema/admission/admission_family_members.js +5 -3
- package/lib/schema/admission/admission_fee_snapshot.js +2 -1
- package/lib/schema/admission/admission_rte_details.js +5 -2
- package/lib/schema/admission/admission_status_history.js +4 -3
- package/lib/schema/admission/admission_vital_information.js +5 -2
- package/lib/schema/admission/index.js +25 -9
- package/lib/schema/app/app_build_config_mst.js +4 -3
- package/lib/schema/app/app_platform_link_mst.js +4 -3
- package/lib/schema/app/app_publish_details_mst.js +4 -3
- package/lib/schema/app/app_registration_mst.js +4 -3
- package/lib/schema/app/app_registration_start_mst.js +4 -3
- package/lib/schema/app/app_rollout_config_mst.js +4 -3
- package/lib/schema/app/app_store_provider_mst.js +4 -3
- package/lib/schema/app/app_update_changelog_mst.js +4 -3
- package/lib/schema/app/app_update_deployment_mst.js +4 -3
- package/lib/schema/app/app_update_statistics_mst.js +4 -3
- package/lib/schema/app/app_user_update_status_mst.js +4 -3
- package/lib/schema/app/app_version_mst.js +4 -3
- package/lib/schema/app/index.js +28 -12
- package/lib/schema/auth/auth_logses.js +2 -1
- package/lib/schema/auth/auth_mpin.js +4 -3
- package/lib/schema/auth/auth_user_mst.js +4 -2
- package/lib/schema/auth/index.js +19 -3
- package/lib/schema/collection_names.js +4 -1
- package/lib/schema/core/core_board_exam_pattern.js +4 -3
- package/lib/schema/core/core_board_grade_system.js +4 -3
- package/lib/schema/core/core_dashboard_cards.js +2 -1
- package/lib/schema/core/core_department.js +2 -1
- package/lib/schema/core/core_designation.js +2 -1
- package/lib/schema/core/core_designation_grade_level.js +4 -2
- package/lib/schema/core/core_education_board.js +4 -3
- package/lib/schema/core/core_entity_access_pass_management.js +5 -1
- package/lib/schema/core/core_entity_mapping.js +5 -4
- package/lib/schema/core/core_entity_udise.js +4 -3
- package/lib/schema/core/core_file_manager.js +4 -3
- package/lib/schema/core/core_financial_config.js +4 -2
- package/lib/schema/core/core_general_master.js +4 -3
- package/lib/schema/core/core_general_master_type.js +4 -3
- package/lib/schema/core/core_iso_currency.js +2 -1
- package/lib/schema/core/core_language.js +2 -1
- package/lib/schema/core/core_page_elements.js +4 -3
- package/lib/schema/core/core_page_elements_mapping.js +2 -1
- package/lib/schema/core/core_page_grid.js +2 -1
- package/lib/schema/core/core_page_tab.js +2 -1
- package/lib/schema/core/core_pin_code.js +2 -1
- package/lib/schema/core/core_school_board_affiliation.js +4 -3
- package/lib/schema/core/core_system_config.js +4 -3
- package/lib/schema/core/core_system_country.js +2 -1
- package/lib/schema/core/core_system_entity.js +4 -3
- package/lib/schema/core/core_system_logs.js +4 -3
- package/lib/schema/core/core_system_menu.js +4 -3
- package/lib/schema/core/core_system_nationality.js +2 -1
- package/lib/schema/core/core_system_organization_themes.js +4 -3
- package/lib/schema/core/core_system_page_notes_manager.js +4 -2
- package/lib/schema/core/core_system_pages.js +4 -3
- package/lib/schema/core/core_system_pages_theme.js +2 -1
- package/lib/schema/core/core_system_theme_user_preferences.js +4 -3
- package/lib/schema/core/core_system_themes.js +4 -2
- package/lib/schema/core/core_user_attributes.js +4 -2
- package/lib/schema/core/core_user_contact_addresses.js +5 -2
- package/lib/schema/core/core_user_documents.js +5 -2
- package/lib/schema/core/core_user_family_details.js +5 -2
- package/lib/schema/core/core_user_role.js +5 -2
- package/lib/schema/core/core_user_role_exceptions.js +5 -2
- package/lib/schema/core/core_user_role_rights.js +5 -2
- package/lib/schema/core/core_user_type_mapping.js +2 -1
- package/lib/schema/core/core_workflow_approver_rules.js +4 -3
- package/lib/schema/core/core_workflow_config.js +4 -3
- package/lib/schema/core/core_workflow_registry.js +4 -3
- package/lib/schema/core/core_workflow_transaction_history.js +4 -3
- package/lib/schema/core/index.js +62 -46
- package/lib/schema/email/email_list.js +4 -3
- package/lib/schema/email/email_log.js +4 -3
- package/lib/schema/email/email_reference.js +4 -3
- package/lib/schema/email/email_subscription_vendor.js +4 -3
- package/lib/schema/email/email_templete.js +4 -3
- package/lib/schema/email/email_vendor.js +4 -3
- package/lib/schema/email/index.js +22 -6
- package/lib/schema/fees/fee_assignment.js +5 -1
- package/lib/schema/fees/fee_collection_config.js +4 -1
- package/lib/schema/fees/fee_discount.js +4 -1
- package/lib/schema/fees/fee_discount_rule.js +4 -1
- package/lib/schema/fees/fee_installment_config.js +4 -1
- package/lib/schema/fees/fee_installment_item.js +4 -1
- package/lib/schema/fees/fee_late_fee.js +4 -1
- package/lib/schema/fees/fee_late_fee_rule.js +4 -1
- package/lib/schema/fees/fee_payment.js +4 -1
- package/lib/schema/fees/fee_payment_item.js +4 -1
- package/lib/schema/fees/fee_receipt_template.js +4 -1
- package/lib/schema/fees/fee_refund.js +4 -1
- package/lib/schema/fees/fee_scholarship.js +4 -1
- package/lib/schema/fees/fee_structure.js +5 -2
- package/lib/schema/fees/fee_structure_item.js +4 -1
- package/lib/schema/fees/fee_transaction.js +4 -1
- package/lib/schema/fees/index.js +37 -16
- package/lib/schema/frontdesk/fdsk_lead_assignment_detail.js +5 -4
- package/lib/schema/frontdesk/fdsk_lead_config_master.js +5 -4
- package/lib/schema/frontdesk/fdsk_lead_detail.js +5 -4
- package/lib/schema/frontdesk/fdsk_lead_scheduling.js +5 -4
- package/lib/schema/frontdesk/fdsk_leads.js +5 -4
- package/lib/schema/frontdesk/index.js +21 -5
- package/lib/schema/index.js +27 -11
- package/lib/schema/notifications/index.js +17 -1
- package/lib/schema/notifications/notification.js +5 -2
- package/lib/services/index.js +17 -1
- package/lib/services/theme.service.js +2 -1
- package/lib/utilities/helpers/encryption.helper.js +4 -1
- package/lib/utilities/helpers/error.helper.js +8 -1
- package/lib/utilities/helpers/index.js +21 -5
- package/lib/utilities/helpers/response.helper.js +4 -1
- package/lib/utilities/helpers/string.helper.js +12 -5
- package/lib/utilities/helpers/type.hepler.js +2 -1
- package/lib/utilities/index.js +17 -1
- package/package.json +4 -9
|
@@ -1,12 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
/**
|
|
2
3
|
* Admission Vital Information Schema - TypeScript Interfaces
|
|
3
4
|
*
|
|
4
5
|
* Purpose: Type definitions for admission vital information
|
|
5
6
|
* Prefix: admvi_ (admission vital information)
|
|
6
7
|
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.AdmissionVitalInformation = exports.AdmissionVitalInformationBase = void 0;
|
|
7
10
|
class AdmissionVitalInformationBase {
|
|
8
11
|
}
|
|
12
|
+
exports.AdmissionVitalInformationBase = AdmissionVitalInformationBase;
|
|
9
13
|
class AdmissionVitalInformation extends AdmissionVitalInformationBase {
|
|
10
14
|
}
|
|
11
|
-
|
|
12
|
-
AdmissionVitalInformation };
|
|
15
|
+
exports.AdmissionVitalInformation = AdmissionVitalInformation;
|
|
@@ -1,9 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./admission_application_main"), exports);
|
|
18
|
+
__exportStar(require("./admission_elective_detail"), exports);
|
|
19
|
+
__exportStar(require("./admission_status_history"), exports);
|
|
20
|
+
__exportStar(require("./admission_document_uploads"), exports);
|
|
21
|
+
__exportStar(require("./admission_contact_addresses"), exports);
|
|
22
|
+
__exportStar(require("./admission_family_members"), exports);
|
|
23
|
+
__exportStar(require("./admission_fee_snapshot"), exports);
|
|
24
|
+
__exportStar(require("./admission_rte_details"), exports);
|
|
25
|
+
__exportStar(require("./admission_vital_information"), exports);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppBuildConfigMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppBuildConfigMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppBuildConfigMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppBuildConfigMst = IAppBuildConfigMst;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppPlatformLinkMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppPlatformLinkMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppPlatformLinkMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppPlatformLinkMst = IAppPlatformLinkMst;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppPublishDetailsMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppPublishDetailsMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppPublishDetailsMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppPublishDetailsMst = IAppPublishDetailsMst;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppRegistrationMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppRegistrationMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppRegistrationMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppRegistrationMst = IAppRegistrationMst;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppRegistrationStartMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppRegistrationStartMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppRegistrationStartMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppRegistrationStartMst = IAppRegistrationStartMst;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppRolloutConfigMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppRolloutConfigMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppRolloutConfigMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppRolloutConfigMst = IAppRolloutConfigMst;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppStoreProviderMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppStoreProviderMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppStoreProviderMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppStoreProviderMst = IAppStoreProviderMst;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppUpdateChangelogMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppUpdateChangelogMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppUpdateChangelogMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppUpdateChangelogMst = IAppUpdateChangelogMst;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppUpdateDeploymentMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppUpdateDeploymentMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppUpdateDeploymentMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppUpdateDeploymentMst = IAppUpdateDeploymentMst;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppUpdateStatisticsMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppUpdateStatisticsMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppUpdateStatisticsMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppUpdateStatisticsMst = IAppUpdateStatisticsMst;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppUserUpdateStatusMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppUserUpdateStatusMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppUserUpdateStatusMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppUserUpdateStatusMst = IAppUserUpdateStatusMst;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IAppVersionMst = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class IAppVersionMst {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { IAppVersionMst // interface
|
|
6
|
-
};
|
|
7
|
+
exports.IAppVersionMst = IAppVersionMst;
|
package/lib/schema/app/index.js
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./app_registration_mst"), exports);
|
|
18
|
+
__exportStar(require("./app_platform_link_mst"), exports);
|
|
19
|
+
__exportStar(require("./app_registration_start_mst"), exports);
|
|
20
|
+
__exportStar(require("./app_build_config_mst"), exports);
|
|
21
|
+
__exportStar(require("./app_store_provider_mst"), exports);
|
|
22
|
+
__exportStar(require("./app_publish_details_mst"), exports);
|
|
23
|
+
__exportStar(require("./app_version_mst"), exports);
|
|
24
|
+
__exportStar(require("./app_update_deployment_mst"), exports);
|
|
25
|
+
__exportStar(require("./app_update_changelog_mst"), exports);
|
|
26
|
+
__exportStar(require("./app_user_update_status_mst"), exports);
|
|
27
|
+
__exportStar(require("./app_update_statistics_mst"), exports);
|
|
28
|
+
__exportStar(require("./app_rollout_config_mst"), exports);
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/lib/schema/auth/index.js
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./auth_user_mst"), exports);
|
|
18
|
+
__exportStar(require("./auth_logses"), exports);
|
|
19
|
+
__exportStar(require("./auth_mpin"), exports);
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.COLLECTIONS = void 0;
|
|
1
4
|
const COLLECTIONS = {
|
|
2
5
|
// A - Academic Collections
|
|
3
6
|
aca_academic_year: "aca_academic_year",
|
|
@@ -109,4 +112,4 @@ const COLLECTIONS = {
|
|
|
109
112
|
subscriptions: "subscriptions",
|
|
110
113
|
subscription_payments: "subscription_payments"
|
|
111
114
|
};
|
|
112
|
-
|
|
115
|
+
exports.COLLECTIONS = COLLECTIONS;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CoreBoardExamPattern = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class CoreBoardExamPattern {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { CoreBoardExamPattern // interface
|
|
6
|
-
};
|
|
7
|
+
exports.CoreBoardExamPattern = CoreBoardExamPattern;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CoreBoardGradeSystem = void 0;
|
|
1
4
|
class CoreBoardGradeSystem {
|
|
2
5
|
}
|
|
3
|
-
|
|
4
|
-
export { CoreBoardGradeSystem // interface
|
|
5
|
-
};
|
|
6
|
+
exports.CoreBoardGradeSystem = CoreBoardGradeSystem;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CoreEducationBoard = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class CoreEducationBoard {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { CoreEducationBoard // interface
|
|
6
|
-
};
|
|
7
|
+
exports.CoreEducationBoard = CoreEducationBoard;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CoreEntityAccessPassManagement = exports.CoreEntityAccessPassManagementBase = void 0;
|
|
1
4
|
class CoreEntityAccessPassManagementBase {
|
|
2
5
|
}
|
|
6
|
+
exports.CoreEntityAccessPassManagementBase = CoreEntityAccessPassManagementBase;
|
|
3
7
|
class CoreEntityAccessPassManagement extends CoreEntityAccessPassManagementBase {
|
|
4
8
|
}
|
|
5
|
-
|
|
9
|
+
exports.CoreEntityAccessPassManagement = CoreEntityAccessPassManagement;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CoreEntityMappingBase = exports.CoreEntityMapping = void 0;
|
|
1
4
|
/* INTERFASE START */
|
|
2
5
|
class CoreEntityMappingBase {
|
|
3
6
|
}
|
|
7
|
+
exports.CoreEntityMappingBase = CoreEntityMappingBase;
|
|
4
8
|
class CoreEntityMapping extends CoreEntityMappingBase {
|
|
5
9
|
}
|
|
6
|
-
|
|
7
|
-
export { CoreEntityMapping, // interface
|
|
8
|
-
CoreEntityMappingBase // interface
|
|
9
|
-
};
|
|
10
|
+
exports.CoreEntityMapping = CoreEntityMapping;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CoreEntityUdise = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class CoreEntityUdise {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { CoreEntityUdise // interface
|
|
6
|
-
};
|
|
7
|
+
exports.CoreEntityUdise = CoreEntityUdise;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CoreFinancialConfig = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class CoreFinancialConfig {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { CoreFinancialConfig };
|
|
7
|
+
exports.CoreFinancialConfig = CoreFinancialConfig;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CoreSchoolBoardAffiliation = void 0;
|
|
1
4
|
/* INTERFACE START */
|
|
2
5
|
class CoreSchoolBoardAffiliation {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { CoreSchoolBoardAffiliation // interface
|
|
6
|
-
};
|
|
7
|
+
exports.CoreSchoolBoardAffiliation = CoreSchoolBoardAffiliation;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CoreSystemEntity = void 0;
|
|
1
4
|
/* INTERFASE START */
|
|
2
5
|
class CoreSystemEntity {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { CoreSystemEntity // interface
|
|
6
|
-
};
|
|
7
|
+
exports.CoreSystemEntity = CoreSystemEntity;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ICoreSylog = void 0;
|
|
1
4
|
/* INTERFASE START */
|
|
2
5
|
class ICoreSylog {
|
|
3
6
|
}
|
|
4
|
-
|
|
5
|
-
export { ICoreSylog // interface
|
|
6
|
-
};
|
|
7
|
+
exports.ICoreSylog = ICoreSylog;
|
|
7
8
|
/*
|
|
8
9
|
|| EXAMPLE for TRACE log type
|
|
9
10
|
||{
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
/* INTERFASE START */
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.ICoreSypn = void 0;
|
|
2
5
|
/* INTERFACE END */
|
|
3
6
|
/**
|
|
4
7
|
* @description core_system_page_notes_manager (Reference: sypn)
|
|
@@ -28,5 +31,4 @@ class ICoreSypn {
|
|
|
28
31
|
return errorLogger;
|
|
29
32
|
}
|
|
30
33
|
}
|
|
31
|
-
|
|
32
|
-
export { ICoreSypn };
|
|
34
|
+
exports.ICoreSypn = ICoreSypn;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|