cloud-ide-lms-model
Version:
Package for Model management of Cloud IDEsys LMS
174 lines (173 loc) • 5.25 kB
TypeScript
declare const coreRoutesUrl: {
module: string;
/** Endpoint to get file details (file-manager)
* for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1#bookmark=id.nhxx52qzdmct
*/
fileManager: string;
/**
* @description Endpoint to get sidebar menu (menu)
* for more details refer @link {https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit?pli=1&tab=t.0#bookmark=id.ze2wrml3eew3}
*/
getSidebarMenues: string;
/**
* @description Endpoint to insert list of country (iso-country-insert)
*/
isoCountryInsert: string;
/**
* @description Endpoint to create the language (create-language)
*/
createLanguage: string;
/**
* @description to get the notes taken by the user (get-system-page-notes-manager)
*/
systemPageNotesManager: string;
/**
* @description Endpoint to get the entitly list (get-entity-list)
*/
entity: string;
/**
* @description Endpoint to get the entity by id (entity-by-id)
*/
entityById: string;
/**
* @description Endpoint to get the entity by domain (entity-by-domain)
*/
entityByDomain: string;
/**
* @description Endpoint to get the general master (general-master)
*/
generalMaster: string;
/**
* @description Endpoint to get the pin code (pin-code)
*/
pinCode: string;
/**
* @description Endpoint to get the currency (currency)
*/
currency: string;
/**
* @description Endpoint to manage financial configuration (financial-config)
*/
financialConfig: string;
/**
* @description Endpoint to manage system configuration (system-config)
*/
systemConfig: string;
/**
* @description Endpoint to get the country (country)
*/
country: string;
/**
* @description Endpoint to get the nationality (nationality)
*/
nationality: string;
/**
* @description Endpoint to get the menu (menu)
*/
menu: string;
/**
* @description Endpoint to get the department (department)
*/
department: string;
/**
* @description Endpoint to get the designation (designation)
*/
designation: string;
/**
* @description Endpoint to get the grade level (grade-level)
*/
gradeLevel: string;
/**
* @description Endpoint to get the page (page)
*/
page: string;
/**
* @description Endpoint to get the page theme (page-theme)
*/
pageTheme: string;
/**
* @description Endpoint to get the page control (page-control)
*/
pageControl: string;
/**
* @description Endpoint to get the page control mapping (page-control-mapping)
*/
pageControlMapping: string;
/**
* @description Endpoint to get the general master type (general-master-type)
*/
generalMasterType: string;
/**
* @description Endpoint to get the user role (user-role)
*/
userRole: string;
/**
* @description Endpoint to get the class program master (class-program-master)
*/
classProgramMaster: string;
/**
* @description Endpoint to get the class program term (class-program-term)
*/
classProgramTerm: string;
/**
* @description Endpoint to get the program term section (program-term-section)
*/
programTermSection: string;
/**
* generic path to get the mapping of entity access pass management for any form
*/
coreEntityAccessPassManagement: string;
/**
* @description Endpoint to get the breadcrumb (breadcrumb)
*/
breadcrumb: string;
/**
* @description Endpoint to manage dashboard cards (dashboard-cards)
*/
dashboardCards: string;
/**
* @description Endpoint to manage workflow registry (workflow/registry)
*/
workflowRegistry: string;
/**
* @description Endpoint to manage workflow configuration (workflow/config)
*/
workflowConfig: string;
/**
* @description Endpoint to manage workflow engine operations (workflow)
*/
workflow: string;
/**
* @description Endpoint to get workflow status (workflow/status)
*/
workflowStatus: string;
/**
* @description Endpoint to manage school board affiliation (school-board-affiliation)
*/
schoolBoardAffiliation: string;
/**
* @description Endpoint to manage API endpoint master (api-endpoint-master)
*/
apiEndpointMaster: string;
/**
* @description Endpoint to manage document type registry (doc-type)
*/
docType: string;
/**
* @description Endpoint to manage document series master (doc-series)
*/
docSeries: string;
/**
* @description Endpoint to manage document series assignments (doc-series-assignment)
*/
docSeriesAssignment: string;
/**
* @description Endpoint to get selectable series for a doc type (doc-series-assignment/selectable)
*/
docSeriesSelectable: string;
/**
* @description Endpoint to preview next document number (doc-series/preview)
*/
docSeriesPreview: string;
};
export { coreRoutesUrl };