@argusoft/medplat-app-shell 1.0.6 → 1.0.8

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 (264) hide show
  1. package/package.json +139 -141
  2. package/src/GlobalErrorBoundary.jsx +31 -0
  3. package/src/SilentErrorFallback.jsx +68 -0
  4. package/src/TrackingProviderWrapper.jsx +40 -0
  5. package/src/_tests_/__mocks__/MockTranslationProvider.jsx +21 -0
  6. package/src/_tests_/__mocks__/ckeditor.js +45 -0
  7. package/src/_tests_/__mocks__/fileMock.js +1 -0
  8. package/src/_tests_/__mocks__/useranalytics.js +5 -0
  9. package/src/_tests_/views/components/Dashboard/DashboardUI.test.jsx +137 -0
  10. package/src/_tests_/views/components/Dashboard/DashboardUIMock.js +877 -0
  11. package/src/_tests_/views/components/ForgotPassword/ForgotPassword.test.jsx +314 -0
  12. package/src/_tests_/views/components/LocationDirective/LocationDirective.test.jsx.disable +229 -0
  13. package/src/_tests_/views/components/LocationDirective/mockLocationDirective.js +810 -0
  14. package/src/_tests_/views/components/LocationType/MockLocationType.js +42259 -0
  15. package/src/_tests_/views/components/LocationType/addlocationtype.test.jsx.disable +276 -0
  16. package/src/_tests_/views/components/LocationType/editlocationtype.test.jsx.disable +262 -0
  17. package/src/_tests_/views/components/LocationType/locationtype.test.jsx.disable +148 -0
  18. package/src/_tests_/views/components/Profile/UpdateProfileModalData.js +4396 -0
  19. package/src/_tests_/views/components/Profile/updateprofilemodal.test.jsx +282 -0
  20. package/src/_tests_/views/components/SideBar/MockSideBar.js +1379 -0
  21. package/src/_tests_/views/components/SideBar/SideBar.test.jsx +98 -0
  22. package/src/_tests_/views/components/SystemConfig/ManageSystemConfig/AddManageSystemConfig.test.jsx.disable +164 -0
  23. package/src/_tests_/views/components/SystemConfig/ManageSystemConfig/UpdateManageSystemConfig.test.jsx.disable +157 -0
  24. package/src/_tests_/views/components/SystemConfig/MockSystemConfig.js +1280 -0
  25. package/src/_tests_/views/components/SystemConfig/SystemConfig.test.jsx.disable +165 -0
  26. package/src/_tests_/views/components/login/Login.test.jsx +276 -0
  27. package/src/_tests_/views/components/login/MockAuthorise.js +2414 -0
  28. package/src/_tests_/views/components/login/ServiceResponse.js +595 -0
  29. package/src/_tests_/views/components/user/MockManageUser.js +7965 -0
  30. package/src/_tests_/views/components/user/manageuser.test.jsx.disable +989 -0
  31. package/src/_tests_/views/components/user/mockUsersData.js +582 -0
  32. package/src/assets/img/OASISLogin.png +0 -0
  33. package/src/assets/img/bahaarNew.png +0 -0
  34. package/src/assets/img/dnhdd4K.png +0 -0
  35. package/src/assets/img/govtofup.png +0 -0
  36. package/src/assets/img/sewarural4K.png +0 -0
  37. package/src/assets/img/techo4K.png +0 -0
  38. package/src/assets/img/up4K.png +0 -0
  39. package/src/common/HolidayList.jsx +573 -0
  40. package/src/common/MalaciaousInputUtil.js +23 -0
  41. package/src/common/SafeHtml.jsx +17 -0
  42. package/src/common/VersionManager.jsx +109 -0
  43. package/src/common/constants/PerformanceDashboard.js +514 -0
  44. package/src/common/constants/app.constant.js +781 -0
  45. package/src/common/constants/cccVerificationConstants.js +18 -0
  46. package/src/common/constants/fhsrConstant.js +33 -0
  47. package/src/common/constants/gvk-verification.constant.js +76 -0
  48. package/src/common/constants/search.constant.js +23 -0
  49. package/src/common/constants/teleconsulatationConstant.jsx +1339 -0
  50. package/src/common/directives/SearchTemplate.jsx +784 -0
  51. package/src/common/directives/SearchTemplate.scss +14 -0
  52. package/src/common/dynamicView/DynamicView.jsx +353 -0
  53. package/src/common/dynamicView/InputFieldComponent.jsx +1501 -0
  54. package/src/common/dynamicView/InputViewComponent.jsx +298 -0
  55. package/src/common/dynamicView/InputViewComponent.scss +15 -0
  56. package/src/common/env.js +5 -0
  57. package/src/common/filters/locationNameFilter.js +26 -0
  58. package/src/common/fontAwesomeIcons/FontAwesomeIcons.jsx +27 -0
  59. package/src/common/fontAwesomeIcons/FontAwesomeIconsNames.js +1968 -0
  60. package/src/common/fontPreferences/fontSizeProvider.jsx +34 -0
  61. package/src/common/fontPreferences/fontSizeSelector.jsx +116 -0
  62. package/src/common/getAssignedFeature/getAssignedFeature.js +32 -0
  63. package/src/common/interceptors/AxiosInterceptor.js +216 -0
  64. package/src/common/languageTranslator/TranslationContext.js +5 -0
  65. package/src/common/languageTranslator/TranslationProvider.jsx +24 -0
  66. package/src/common/languageTranslator/i18n.js +49 -0
  67. package/src/common/services/AuthenticateService.js +116 -0
  68. package/src/common/services/DownloadFile.js +35 -0
  69. package/src/common/services/ForgotPassword.js +18 -0
  70. package/src/common/services/FormConfiguratorService.js +195 -0
  71. package/src/common/services/GlobalApis.js +84 -0
  72. package/src/common/services/InterceptorNavigationService.js +17 -0
  73. package/src/common/services/LocationService.js +65 -0
  74. package/src/common/services/LocationType.js +11 -0
  75. package/src/common/services/QueryBuilder.js +36 -0
  76. package/src/common/services/Roles.js +28 -0
  77. package/src/common/services/SyncWithServer.js +15 -0
  78. package/src/common/services/SystemConfig.js +15 -0
  79. package/src/common/services/TranslationService.js +70 -0
  80. package/src/common/services/TwoFactorService.js +7 -0
  81. package/src/common/services/Users.js +91 -0
  82. package/src/common/services/Webtasks.js +27 -0
  83. package/src/common/services/util/Convert-pad-data-to-API-format.jsx +167 -0
  84. package/src/common/services/util/Convert-to-UI-format.jsx +82 -0
  85. package/src/common/services/util/EmptyPrescriptionPadData.jsx +11 -0
  86. package/src/common/services/util/GeneralUtil.js +456 -0
  87. package/src/common/services/util/Prescription-pad-util.js +339 -0
  88. package/src/common/services/util/PrescriptionPadData.js +67 -0
  89. package/src/common/services/util/PrescriptionpadCommonUtil.js +96 -0
  90. package/src/common/services/util/ReportFieldUtil.jsx +398 -0
  91. package/src/common/services/util/WebSocketContext.jsx +261 -0
  92. package/src/common/syncWithServer/SyncWithServerDialog.jsx +170 -0
  93. package/src/common/syncWithServer/SyncWithServerDialogSkeleton.jsx +67 -0
  94. package/src/common/tests/CustomWrapper.jsx +49 -0
  95. package/src/common/tests/TranslationWrapper.jsx +38 -0
  96. package/src/common/themeProvider/ColorInputs.jsx +97 -0
  97. package/src/common/themeProvider/EditableColorInput.jsx +128 -0
  98. package/src/common/themeProvider/ThemeEditor.jsx +319 -0
  99. package/src/common/themeProvider/ThemeProvider.jsx +210 -0
  100. package/src/common/themeProvider/themeConfig.js +558 -0
  101. package/src/common/toaster/toaster.jsx +30 -0
  102. package/src/firebaseConfig.js +24 -0
  103. package/src/global.scss +221 -0
  104. package/src/hooks/.gitkeep +0 -0
  105. package/src/hooks/useAESEncryption.js +56 -0
  106. package/src/hooks/useCaching.js +43 -0
  107. package/src/hooks/useDebounce.js +34 -0
  108. package/src/hooks/useDebounceFn.js +50 -0
  109. package/src/hooks/useDownloadPdf.js +358 -0
  110. package/src/hooks/useDownloadXlsx.js +55 -0
  111. package/src/hooks/useListValueFieldValues.js +30 -0
  112. package/src/hooks/useLocationHierarchies.js +63 -0
  113. package/src/hooks/useLocationHierarchyTranslate.js +16 -0
  114. package/src/hooks/useOnline.js +27 -0
  115. package/src/hooks/usePagination.js +63 -0
  116. package/src/hooks/useRefreshToken.js +87 -0
  117. package/src/hooks/useScript.js +25 -0
  118. package/src/hooks/useStopwatch.js +75 -0
  119. package/src/hooks/useTrackEvent.js +22 -0
  120. package/src/hooks/useWebAudioRecorder.js +115 -0
  121. package/src/layout/LoaderComponet.jsx +22 -0
  122. package/src/layout/LoaderContext.jsx +29 -0
  123. package/src/layout/mainLayout/AdaptiveZoom.jsx +27 -0
  124. package/src/layout/mainLayout/Chatbot.jsx +243 -0
  125. package/src/layout/mainLayout/Layout.jsx +445 -0
  126. package/src/layout/mainLayout/Profile/UpdateProfileModal.jsx +684 -0
  127. package/src/layout/mainLayout/header/LogoutModal.jsx +131 -0
  128. package/src/layout/mainLayout/header/Navbar.jsx +1677 -0
  129. package/src/layout/mainLayout/header/Navbar.scss +4 -0
  130. package/src/layout/mainLayout/header/index.js +0 -0
  131. package/src/layout/mainLayout/sidebar/SideBar.jsx +1402 -0
  132. package/src/layout/mainLayout/sidebar/Sidebar.css +159 -0
  133. package/src/layout/mainLayout/sidebar/index.js +0 -0
  134. package/src/logo.svg +1 -0
  135. package/src/reportWebVitals.js +13 -0
  136. package/src/setupFirebaseMessaging.js +28 -0
  137. package/src/setupTests.js +8 -0
  138. package/src/store/actions/AuthenticationActions.js +0 -0
  139. package/src/store/actions/ReportsActions.js +0 -0
  140. package/src/store/actions/TranslationAction.js +0 -0
  141. package/src/store/index.js +8 -0
  142. package/src/store/reducer.js +46 -0
  143. package/src/store/reducers/AuthenticationReducer.js +50 -0
  144. package/src/store/reducers/CalendarEventReducer.js +41 -0
  145. package/src/store/reducers/ConditionClipboardReducer.js +45 -0
  146. package/src/store/reducers/FeatureReducer.js +27 -0
  147. package/src/store/reducers/FormConfiguratorReducer.js +38 -0
  148. package/src/store/reducers/LoadingReducer.js +20 -0
  149. package/src/store/reducers/MembersAuthenticationReducer.js +28 -0
  150. package/src/store/reducers/PrescriptionPadReducer.js +329 -0
  151. package/src/store/reducers/QuestionaireReducer.js +29 -0
  152. package/src/store/reducers/ReportsReducer.js +24 -0
  153. package/src/store/reducers/SkeletonReducer.js +20 -0
  154. package/src/store/reducers/ThemeReducer.js +106 -0
  155. package/src/store/reducers/TranslationReducer.js +126 -0
  156. package/src/store/reducers/dashboardEditorSlice.js +77 -0
  157. package/src/store/reducers/districtHealthDashboardSlice.js +58 -0
  158. package/src/store/reducers/immunizationSlice.js +234 -0
  159. package/src/store/slices/dashboardPagesSlice.js +51 -0
  160. package/src/store/slices/dashboardSlice.js +14 -0
  161. package/src/utils/.gitkeep +0 -0
  162. package/src/utils/FormConstants.js +2629 -0
  163. package/src/utils/GujaratTopoChart.jsx +483 -0
  164. package/src/utils/UUIDgenerator.js +8 -0
  165. package/src/utils/appointment-utils/appointment-utils.js +123 -0
  166. package/src/utils/feature.js +42 -0
  167. package/src/utils/getThemeColor.js +12 -0
  168. package/src/utils/localStorageHelper.js +11 -0
  169. package/src/utils/notifications/enable-push-notifications.js +27 -0
  170. package/src/utils/resolveAppliedStyle.js +11 -0
  171. package/src/utils/themeConfigs.js +1483 -0
  172. package/src/views/custom-components/.gitkeep +0 -0
  173. package/src/views/custom-components/AgIconButton/RIf.jsx +14 -0
  174. package/src/views/custom-components/AgIconButton/button.jsx +108 -0
  175. package/src/views/custom-components/AgIconButton/waterDrop.jsx +95 -0
  176. package/src/views/custom-components/AgIconButton/waterDrop.scss +37 -0
  177. package/src/views/custom-components/AlertPlaceholder.jsx +32 -0
  178. package/src/views/custom-components/AllFaIconsSelector.jsx +56 -0
  179. package/src/views/custom-components/CkEditor/CkEditor.js +102 -0
  180. package/src/views/custom-components/CustomAccordion.jsx +72 -0
  181. package/src/views/custom-components/CustomActionIcons.jsx +118 -0
  182. package/src/views/custom-components/CustomAutoComplete.jsx +188 -0
  183. package/src/views/custom-components/CustomCheckBox.jsx +60 -0
  184. package/src/views/custom-components/CustomConfirmationModal.jsx +118 -0
  185. package/src/views/custom-components/CustomCountrySelect.jsx +129 -0
  186. package/src/views/custom-components/CustomDatePicker.jsx +122 -0
  187. package/src/views/custom-components/CustomDropdown.jsx +191 -0
  188. package/src/views/custom-components/CustomFileUpload.jsx +387 -0
  189. package/src/views/custom-components/CustomFullCalendar.jsx +514 -0
  190. package/src/views/custom-components/CustomInfiniteScroll.jsx +126 -0
  191. package/src/views/custom-components/CustomRadioComponent.jsx +65 -0
  192. package/src/views/custom-components/CustomStatsComponent.jsx +114 -0
  193. package/src/views/custom-components/CustomSvgUpload.jsx +170 -0
  194. package/src/views/custom-components/CustomSwitch.jsx +37 -0
  195. package/src/views/custom-components/CustomTabPanel.jsx +19 -0
  196. package/src/views/custom-components/CustomTextArea.jsx +62 -0
  197. package/src/views/custom-components/CustomTextArea.scss +27 -0
  198. package/src/views/custom-components/CustomTextField.jsx +116 -0
  199. package/src/views/custom-components/CustomToggleSwitch.jsx +138 -0
  200. package/src/views/custom-components/CustomTooltip.jsx +51 -0
  201. package/src/views/custom-components/CustomZoomImage.jsx +134 -0
  202. package/src/views/custom-components/CustomizedTable/CustomizedTableV2.jsx +1407 -0
  203. package/src/views/custom-components/CustomizedTable/VirtualizeTableBody.jsx +295 -0
  204. package/src/views/custom-components/CustomizedTable/helper.jsx +159 -0
  205. package/src/views/custom-components/CustomizedTable.jsx +532 -0
  206. package/src/views/custom-components/EditInputField.jsx +174 -0
  207. package/src/views/custom-components/FieldDescription.jsx +22 -0
  208. package/src/views/custom-components/FileDisplayComponent.jsx +138 -0
  209. package/src/views/custom-components/FormItem.jsx +53 -0
  210. package/src/views/custom-components/GenericChart.jsx +80 -0
  211. package/src/views/custom-components/InfoBadge.jsx +60 -0
  212. package/src/views/custom-components/PostgresEditor.jsx +801 -0
  213. package/src/views/custom-components/ResizableEditAutocompleteField.jsx +249 -0
  214. package/src/views/custom-components/ResizableEditInputField.jsx +215 -0
  215. package/src/views/custom-components/ResizeableEditSelectField.jsx +197 -0
  216. package/src/views/custom-components/SideOverlay.jsx +113 -0
  217. package/src/views/custom-components/SideOverlay.scss +42 -0
  218. package/src/views/custom-components/calendar.scss +571 -0
  219. package/src/views/feature-components/.gitkeep +0 -0
  220. package/src/views/feature-components/Dashboard/DashboardUI.jsx +1043 -0
  221. package/src/views/feature-components/Dashboard/DhnddModal/AshaDataQualityVerificationModal.jsx +278 -0
  222. package/src/views/feature-components/Dashboard/PinFeatureModal.jsx +143 -0
  223. package/src/views/feature-components/Dashboard/QuickLinks.jsx +163 -0
  224. package/src/views/feature-components/Dashboard/Taskbar.jsx +56 -0
  225. package/src/views/feature-components/Dashboard/WebtasksFilterForm.jsx +109 -0
  226. package/src/views/feature-components/Dashboard/WidgetCard.jsx +161 -0
  227. package/src/views/feature-components/Dashboard/actionModal.jsx +263 -0
  228. package/src/views/feature-components/Dashboard/ekavachModal/HealthWorkerIncorrectDetailsModal.jsx +332 -0
  229. package/src/views/feature-components/Dashboard/ekavachModal/MoMaternalDeathVerifcationModal.jsx +275 -0
  230. package/src/views/feature-components/Dashboard/ekavachModal/MoVerficationForChildScreeningMoadal.jsx +566 -0
  231. package/src/views/feature-components/FeatureUsageAnalytics/FeatureUsageAnalytics.jsx +989 -0
  232. package/src/views/feature-components/Features/NewServerManagement.jsx +217 -0
  233. package/src/views/feature-components/Features/ServerManagement.scss +120 -0
  234. package/src/views/feature-components/ForgotPassword/ForgotPassword.jsx +226 -0
  235. package/src/views/feature-components/LocationDirective/LocationDirective.jsx +992 -0
  236. package/src/views/feature-components/LocationDirective/LocationDirectiveV2.jsx +909 -0
  237. package/src/views/feature-components/NotFound.jsx +66 -0
  238. package/src/views/feature-components/Onboarding/Onboarding.jsx +1400 -0
  239. package/src/views/feature-components/Skeletons.js +115 -0
  240. package/src/views/feature-components/Unauthorized.jsx +48 -0
  241. package/src/views/feature-components/VerifyRoute.jsx +88 -0
  242. package/src/views/feature-components/YearlyRecap/YearlyRecap.jsx +357 -0
  243. package/src/views/feature-components/YearlyRecap/components/RecapSlide.jsx +183 -0
  244. package/src/views/feature-components/YearlyRecap/languageTranslator/TranslationContext.js +5 -0
  245. package/src/views/feature-components/YearlyRecap/languageTranslator/TranslationProvider.jsx +26 -0
  246. package/src/views/feature-components/YearlyRecap/languageTranslator/i18n.js +46 -0
  247. package/src/views/feature-components/YearlyRecap/languageTranslator/translations.json +167 -0
  248. package/src/views/feature-components/YearlyRecap/slides/IntroSlide.jsx +233 -0
  249. package/src/views/feature-components/YearlyRecap/slides/MaternalHealthSlide.jsx +146 -0
  250. package/src/views/feature-components/YearlyRecap/slides/MetricSlide.jsx +227 -0
  251. package/src/views/feature-components/YearlyRecap/slides/OutroSlide.jsx +701 -0
  252. package/src/views/feature-components/YearlyRecap/slides/ReachSlide.jsx +273 -0
  253. package/src/views/feature-components/login/Login.jsx +840 -0
  254. package/src/views/feature-components/login/Login.scss +154 -0
  255. package/src/views/feature-components/login/LoginConfigurator.jsx +1149 -0
  256. package/src/views/feature-components/login/TwoFactorSetupModal.jsx +411 -0
  257. package/src/views/feature-components/login/simplifyMenu.js +45 -0
  258. package/src/views/feature-components/system-config/ManageSystemConfigs.jsx +284 -0
  259. package/src/views/feature-components/system-config/SystemConfig.jsx +299 -0
  260. package/src/views/feature-components/users/ChangePasswordModal.jsx +243 -0
  261. package/src/views/feature-components/users/PasswordField.jsx +56 -0
  262. package/dist/index.css +0 -1
  263. package/dist/index.js +0 -32001
  264. package/dist/index.js.map +0 -1
@@ -0,0 +1,1379 @@
1
+ export const subGroupsMock = [
2
+ {
3
+ name: 'fhs',
4
+ subGroups: [
5
+ {
6
+ id: 199,
7
+ name: 'Command and Control Center',
8
+ navigationState: 'techo.dashboard.cccverification',
9
+ featureJson: '{"canFollowUpOverdueServices":true}',
10
+ },
11
+ {
12
+ id: 10,
13
+ name: 'MO Re-Verification - Level 2',
14
+ navigationState: 'techo.manage.moverification',
15
+ featureJson: '{}',
16
+ },
17
+ {
18
+ id: 5,
19
+ name: 'FHS Dashboard',
20
+ navigationState: 'techo.dashboard.fhs',
21
+ featureJson: '{}',
22
+ },
23
+ {
24
+ id: 12,
25
+ name: 'Call Center Verification',
26
+ navigationState: 'techo.dashboard.gvkverification',
27
+ featureJson:
28
+ '{"canAnc4Schedule":false,"canAbsentVerification":false,"canFamilyVerification":false,"canNcdScreeningVerification":false,"canDuplicateMemberVerification":false,"canGvkImmunisationVerification":true,"canHighriskFollowupVerification":false,"canMemberMigrationInVerification":false,"canBeneficiaryServiceVerification":false,"canFamilyMigrationOutVerification":false,"canMemberMigrationOutVerification":false,"canPerformEligibleCoupleCounselling":false,"canHighriskFollowupVerificationFowFhw":false,"canPregnancyRegistrationsVerification":false,"canPregnancyRegistrationsPhoneNumberVerification":false,"canVeryHighRiskVerification":false}',
29
+ },
30
+ {
31
+ id: 263,
32
+ name: 'CFHC Report',
33
+ navigationState: "techo.report.view({id:'8b437996-4334-473f-923e-47b43efe56ee'})",
34
+ featureJson: '{"canDrillDown":true}',
35
+ isDynamicReport: true,
36
+ },
37
+ {
38
+ id: 9,
39
+ name: 'MO CFHC Re-Verification',
40
+ navigationState: 'techo.manage.fhsrverification',
41
+ featureJson: '{}',
42
+ },
43
+ ],
44
+ },
45
+ // {
46
+ // "name": "mch",
47
+ // "subGroups": [
48
+ // {
49
+ // "id": 152,
50
+ // "name": "ANC Service Visit",
51
+ // "navigationState": "techo.manage.ancSearch",
52
+ // "featureJson": "{\"isShowHealthIdModal\":false,\"isShowHIPModal\":false,\"isShowConsentList\":true}"
53
+ // }
54
+ // ]
55
+ // },
56
+ // {
57
+ // "name": "report",
58
+ // "subGroups": [
59
+ // {
60
+ // "id": 408,
61
+ // "name": "Report Performance Analysis",
62
+ // "navigationState": "techo.report.view({id:'5cb12801-209d-4774-949e-d48acb0452c4'})",
63
+ // "featureJson": "{\"canDrillDown\":true}",
64
+ // "isDynamicReport": true
65
+ // },
66
+ // {
67
+ // "id": 414,
68
+ // "name": "Blood Group Analysis",
69
+ // "navigationState": "techo.report.view({id:'bd19ee24-38b4-4f00-a450-6ff6cdd6932b'})",
70
+ // "featureJson": "{\"canDrillDown\":true}",
71
+ // "isDynamicReport": true
72
+ // }
73
+ // ]
74
+ // },
75
+ // {
76
+ // "name": "admin",
77
+ // "subGroups": [
78
+ // {
79
+ // "id": 16,
80
+ // "name": "My Techo",
81
+ // "navigationState": "techo.manage.timelineconfigs",
82
+ // "isGroup": true,
83
+ // "subGroups": [
84
+ // {
85
+ // "id": 242,
86
+ // "name": "Timeline Configuration",
87
+ // "navigationState": "techo.manage.timelineconfigs",
88
+ // "featureJson": "{\"canAddNewTimeline\":true,\"canManageEnglishTimeline\":true,\"canManageHindiTimeline\":true,\"canManageGujaratiTimeline\":true}"
89
+ // },
90
+ // {
91
+ // "id": 226,
92
+ // "name": "Manage FAQ",
93
+ // "navigationState": "techo.manage.faqs",
94
+ // "featureJson": "{\"canAddMasterQuestion\":true, \"canManageEnglishQuestion\":true, \"canManageHindiQuestion\":true,\r\n \"canManageGujaratiQuestion\":true}"
95
+ // },
96
+ // {
97
+ // "id": 225,
98
+ // "name": "Card Configuration",
99
+ // "navigationState": "techo.manage.cardconfigs",
100
+ // "featureJson": "{\"canAddMasterCard\":true,\"canModifyEnglishCard\":true,\"canModifyHindiCard\":true,\"canModifyGujaratiCard\":true}"
101
+ // },
102
+ // {
103
+ // "id": 231,
104
+ // "name": "Tip Of The Day",
105
+ // "navigationState": "techo.manage.tipsoftheday",
106
+ // "featureJson": "{\"canAddNewTipOfTheDay\":true,\"canManageEnglishTipOfTheDay\":true,\"canManageHindiTipOfTheDay\":true,\"canManageGujaratiTipOfTheDay\":true}"
107
+ // },
108
+ // {
109
+ // "id": 236,
110
+ // "name": "Content Preview Config",
111
+ // "navigationState": "techo.manage.contentPreviewConfig"
112
+ // }
113
+ // ],
114
+ // "featureJson": "{\"canAddNewTimeline\":true,\"canManageEnglishTimeline\":true,\"canManageHindiTimeline\":true,\"canManageGujaratiTimeline\":true}"
115
+ // },
116
+ // {
117
+ // "id": 21,
118
+ // "name": "Manage OPD",
119
+ // "navigationState": "techo.manage.manageOpdLabTest",
120
+ // "isGroup": true,
121
+ // "subGroups": [
122
+ // {
123
+ // "id": 272,
124
+ // "name": "Manage OPD Lab Test",
125
+ // "navigationState": "techo.manage.manageOpdLabTest",
126
+ // "featureJson": "{}"
127
+ // }
128
+ // ],
129
+ // "featureJson": "{}"
130
+ // },
131
+ // {
132
+ // "id": 20,
133
+ // "name": "State of Health",
134
+ // "navigationState": "techo.report.view({id:'f4530015-fd6d-45bf-9b50-c2fb1f3c2976'})",
135
+ // "isGroup": true,
136
+ // "subGroups": [
137
+ // {
138
+ // "id": 233,
139
+ // "name": "State Of Health - Elements",
140
+ // "navigationState": "techo.report.view({id:'f4530015-fd6d-45bf-9b50-c2fb1f3c2976'})",
141
+ // "featureJson": "{\"canDrillDown\":true}",
142
+ // "isDynamicReport": true
143
+ // },
144
+ // {
145
+ // "id": 309,
146
+ // "name": "SoH Application",
147
+ // "navigationState": "techo.manage.sohApp",
148
+ // "featureJson": "{}"
149
+ // },
150
+ // {
151
+ // "id": 260,
152
+ // "name": "Element Configuration",
153
+ // "navigationState": "techo.manage.sohElementConfiguration",
154
+ // "featureJson": "{\"normal\":true,\"advanced\":true}"
155
+ // }
156
+ // ],
157
+ // "featureJson": "{\"canDrillDown\":true}",
158
+ // "isDynamicReport": true
159
+ // },
160
+ // {
161
+ // "id": 24,
162
+ // "name": "Application Management",
163
+ // "navigationState": "techo.notification.all",
164
+ // "isGroup": true,
165
+ // "subGroups": [
166
+ // {
167
+ // "id": 18,
168
+ // "name": "Events Configured",
169
+ // "navigationState": "techo.notification.all",
170
+ // "featureJson": "{}"
171
+ // },
172
+ // {
173
+ // "id": 19,
174
+ // "name": "Query Builder",
175
+ // "navigationState": "techo.manage.query",
176
+ // "featureJson": "{}"
177
+ // },
178
+ // {
179
+ // "id": 25,
180
+ // "name": "Manage Notification",
181
+ // "navigationState": "techo.manage.notification",
182
+ // "featureJson": "{}"
183
+ // },
184
+ // {
185
+ // "id": 313,
186
+ // "name": "Manage System Configurations",
187
+ // "navigationState": "techo.manage.systemconfigs",
188
+ // "featureJson": "{\"canAdd\":true}"
189
+ // },
190
+ // {
191
+ // "id": 228,
192
+ // "name": "Query Excel Sheet Generator",
193
+ // "navigationState": "techo.manage.queryexcelsheetgenerator"
194
+ // },
195
+ // {
196
+ // "id": 166,
197
+ // "name": "Widgets management",
198
+ // "navigationState": "techo.manage.manage-widgets",
199
+ // "featureJson": "{}"
200
+ // },
201
+ // {
202
+ // "id": 324,
203
+ // "name": "Manage Feature Syncing",
204
+ // "navigationState": "techo.manage.featureSync",
205
+ // "featureJson": "{}"
206
+ // },
207
+ // {
208
+ // "id": 150,
209
+ // "name": "Server Management",
210
+ // "navigationState": "techo.manage.servermanage"
211
+ // },
212
+ // {
213
+ // "id": 285,
214
+ // "name": "Query Management Tool",
215
+ // "navigationState": "techo.querymanagement",
216
+ // "featureJson": "{}"
217
+ // }
218
+ // ],
219
+ // "featureJson": "{}"
220
+ // },
221
+ // {
222
+ // "id": 68,
223
+ // "name": "Manage Values And Multimedia",
224
+ // "navigationState": "techo.manage.valuesnmultimedia",
225
+ // "featureJson": "{}"
226
+ // },
227
+ // {
228
+ // "id": 15,
229
+ // "name": "Dr. Techo",
230
+ // "navigationState": "techo.manage.drtechoUserApproval",
231
+ // "isGroup": true,
232
+ // "subGroups": [
233
+ // {
234
+ // "id": 222,
235
+ // "name": "Dr. Techo User Approval",
236
+ // "navigationState": "techo.manage.drtechoUserApproval"
237
+ // },
238
+ // {
239
+ // "id": 221,
240
+ // "name": "Health Infrastructure Approval",
241
+ // "navigationState": "techo.manage.healthInfrastructureApproval"
242
+ // }
243
+ // ]
244
+ // },
245
+ // {
246
+ // "id": 274,
247
+ // "name": "Dynamic Form Builder",
248
+ // "navigationState": "techo.manage.dynamicform",
249
+ // "featureJson": "{}"
250
+ // },
251
+ // {
252
+ // "id": 316,
253
+ // "name": "Team Type Config",
254
+ // "navigationState": "techo.manage.teamtypes",
255
+ // "featureJson": "{}"
256
+ // },
257
+ // {
258
+ // "id": 373,
259
+ // "name": "Self Help Group Incentive Approval",
260
+ // "navigationState": "techo.manage.selfhelpGroupApproval",
261
+ // "featureJson": "{}"
262
+ // },
263
+ // {
264
+ // "id": 376,
265
+ // "name": "Self Help Group Incentive Member Details",
266
+ // "navigationState": "techo.manage.selfhelpGroupMembers",
267
+ // "featureJson": "{}"
268
+ // },
269
+ // {
270
+ // "id": 377,
271
+ // "name": "Self Help Group Incentive",
272
+ // "navigationState": "techo.manage.shgIncentive",
273
+ // "featureJson": "{\"canApprove\":true,\"canPaymentApprove\":true}"
274
+ // },
275
+ // {
276
+ // "id": 19,
277
+ // "name": "RBSK",
278
+ // "navigationState": "techo.manage.configureRbskDefects",
279
+ // "isGroup": true,
280
+ // "subGroups": [
281
+ // {
282
+ // "id": 256,
283
+ // "name": "Configure RBSK defects",
284
+ // "navigationState": "techo.manage.configureRbskDefects",
285
+ // "featureJson": "{}"
286
+ // }
287
+ // ],
288
+ // "featureJson": "{}"
289
+ // },
290
+ // {
291
+ // "id": 4,
292
+ // "name": "Features",
293
+ // "navigationState": "techo.manage.menu",
294
+ // "featureJson": "{}"
295
+ // },
296
+ // {
297
+ // "id": 14,
298
+ // "name": "Reports",
299
+ // "navigationState": "techo.report.all",
300
+ // "featureJson": "{\"basic\":true,\"advanced\":true}"
301
+ // },
302
+ // {
303
+ // "id": 6,
304
+ // "name": "Role",
305
+ // "navigationState": "techo.manage.role",
306
+ // "featureJson": "{}"
307
+ // },
308
+ // {
309
+ // "id": 374,
310
+ // "name": "Asha Incentive Approval",
311
+ // "navigationState": "techo.manage.ashaApproval"
312
+ // },
313
+ // {
314
+ // "id": 67,
315
+ // "name": "Manage Translations",
316
+ // "navigationState": "techo.manage.translator-label",
317
+ // "featureJson": "{}",
318
+ // "description": "Translate labels from English to Gujarati and vice versa"
319
+ // },
320
+ // {
321
+ // "id": 467,
322
+ // "name": "Manage Translation",
323
+ // "navigationState": "techo.manage.manageTranslation",
324
+ // "featureJson": "{\"canManage\":true,\"canViewKey\":true}"
325
+ // },
326
+ // {
327
+ // "id": 349,
328
+ // "name": "Analytics Dashboard",
329
+ // "navigationState": "techo.manage.analyticsdashboard",
330
+ // "featureJson": "{}"
331
+ // },
332
+ // {
333
+ // "id": 18,
334
+ // "name": "GVK Call Center",
335
+ // "navigationState": "techo.dashboard.callcenter",
336
+ // "isGroup": true,
337
+ // "subGroups": [
338
+ // {
339
+ // "id": 232,
340
+ // "name": "Call Center Dashboard",
341
+ // "navigationState": "techo.dashboard.callcenter"
342
+ // }
343
+ // ]
344
+ // }
345
+ // ]
346
+ // },
347
+ // {
348
+ // "name": "training",
349
+ // "subGroups": [
350
+ // {
351
+ // "id": 2,
352
+ // "name": "Course",
353
+ // "navigationState": "techo.manage.courselist",
354
+ // "featureJson": "{\"canRefreshCourseSize\": false}"
355
+ // },
356
+ // {
357
+ // "id": 338,
358
+ // "name": "Question Set Configuration",
359
+ // "navigationState": "techo.training.questionsetlist",
360
+ // "featureJson": "{}"
361
+ // },
362
+ // {
363
+ // "id": 11,
364
+ // "name": "Trainee Status",
365
+ // "navigationState": "techo.training.traineeStatus",
366
+ // "featureJson": "{}"
367
+ // },
368
+ // {
369
+ // "id": 341,
370
+ // "name": "LMS Dashboard",
371
+ // "navigationState": "techo.manage.lmsdashboard"
372
+ // },
373
+ // {
374
+ // "id": 8,
375
+ // "name": "My Training Dashboard",
376
+ // "navigationState": "techo.training.dashboard",
377
+ // "featureJson": "{}"
378
+ // },
379
+ // {
380
+ // "id": 7,
381
+ // "name": "Training Schedule",
382
+ // "navigationState": "techo.training.scheduled",
383
+ // "featureJson": "{\"canMarkAttendance\":true}"
384
+ // }
385
+ // ]
386
+ // },
387
+ // {
388
+ // "name": "ncd",
389
+ // "subGroups": [
390
+ // {
391
+ // "id": 148,
392
+ // "name": "Referred Patients",
393
+ // "navigationState": "techo.ncd.members",
394
+ // "featureJson": "{\"isShowHealthIdModal\":true,\"isShowHIPModal\":false, \"canExamine\":true}"
395
+ // },
396
+ // {
397
+ // "id": 32,
398
+ // "name": "NCD Reports",
399
+ // "navigationState": "techo.report.view({id:'598bde2d-dd11-40bd-aea8-a946a9925e53'})",
400
+ // "isGroup": true,
401
+ // "subGroups": [
402
+ // {
403
+ // "id": 142,
404
+ // "name": "NCD Screening Status",
405
+ // "navigationState": "techo.report.view({id:'598bde2d-dd11-40bd-aea8-a946a9925e53'})",
406
+ // "featureJson": "{\"canDrillDown\":true}",
407
+ // "isDynamicReport": true
408
+ // },
409
+ // {
410
+ // "id": 207,
411
+ // "name": "NCD Progress tracking report",
412
+ // "navigationState": "techo.report.view({id:'04737cee-18b2-4d04-bb14-0d9ee73c67d1'})",
413
+ // "featureJson": "{\"canDrillDown\":true}",
414
+ // "isDynamicReport": true
415
+ // }
416
+ // ],
417
+ // "featureJson": "{\"canDrillDown\":true}",
418
+ // "isDynamicReport": true
419
+ // },
420
+ // {
421
+ // "id": 147,
422
+ // "name": "NCD Screening Dashboard",
423
+ // "navigationState": "techo.dashboard.ncdscreeningdashboard"
424
+ // }
425
+ // ]
426
+ // },
427
+ // {
428
+ // "name": "manage",
429
+ // "subGroups": [
430
+ // {
431
+ // "id": 22,
432
+ // "name": "COVID-19",
433
+ // "navigationState": "techo.manage.104calls",
434
+ // "isGroup": true,
435
+ // "subGroups": [
436
+ // {
437
+ // "id": 284,
438
+ // "name": "Track 104 Calls",
439
+ // "navigationState": "techo.manage.104calls"
440
+ // },
441
+ // {
442
+ // "id": 288,
443
+ // "name": "Spatial Distribution Of Cases",
444
+ // "navigationState": "techo.manage.symptomaticMembersHeatmap"
445
+ // },
446
+ // {
447
+ // "id": 301,
448
+ // "name": "Cluster Management",
449
+ // "navigationState": "techo.manage.locationClusterManagement",
450
+ // "featureJson": "{}"
451
+ // },
452
+ // {
453
+ // "id": 276,
454
+ // "name": "Covid Travellers Screening",
455
+ // "navigationState": "techo.manage.covidtravellers"
456
+ // },
457
+ // {
458
+ // "id": 291,
459
+ // "name": "Lab",
460
+ // "navigationState": "techo.manage.labtest",
461
+ // "featureJson": "{\"canSampleCollect\":true,\"canSampleReceive\":true,\"canSampleResult\":true,\"canIndeterminate\":true,\"canTransfer\":true,\"canResultConfirm\":true}"
462
+ // },
463
+ // {
464
+ // "id": 294,
465
+ // "name": "Suspect List",
466
+ // "navigationState": "techo.manage.emodashboard",
467
+ // "featureJson": "{\"canAccessReferredForCovidLabTest\":true,\"canAccessApprovedForCovidLabTest\":true,\"canAccessReferredPatientsStatus\":true}"
468
+ // },
469
+ // {
470
+ // "id": 292,
471
+ // "name": "Manage Health Infrastructure",
472
+ // "navigationState": "techo.manage.covid19healthinfrastructures",
473
+ // "featureJson": "{\"canAdd\":false,\"canEditBloodBank\":false,\"canEdit\":false,\"canChangeLocation\":false,\"canEditFru\":false,\"canEditPediatrician\":false,\"canEditCmtc\":false,\"canEditNrc\":false,\"canEditGynaec\":false,\"canEditSncu\":false,\"canEditChiranjeevi\":false,\"canEditBalsakha1\":false,\"canEditBalsakha3\":false,\"canEditUsgFacility\":false,\"canEditReferralFacility\":false,\"canEditMaYojna\":false,\"canEditPmjayFacility\":false,\"canEditNpcb\":false,\"canEditNcd\":false,\"canEditHWC\":false,\"canEditIdsp\":false,\"canEditCovid19Lab\":false,\"canEditCovid19Hospital\":false,\"canEditLabTest\":false,\"manageBasedOnLocation\":false,\"manageBasedOnAssignment\":false}"
474
+ // },
475
+ // {
476
+ // "id": 296,
477
+ // "name": "OPD Lab Test Entry",
478
+ // "navigationState": "techo.manage.covidLabTestEntry",
479
+ // "featureJson": "{}"
480
+ // },
481
+ // {
482
+ // "id": 275,
483
+ // "name": "DTC Interface",
484
+ // "navigationState": "techo.manage.dtcInterface",
485
+ // "featureJson": "{}"
486
+ // },
487
+ // {
488
+ // "id": 281,
489
+ // "name": "Contact Tracing",
490
+ // "navigationState": "techo.manage.covidcases"
491
+ // },
492
+ // {
493
+ // "id": 283,
494
+ // "name": "Rapid Response Dashboard",
495
+ // "navigationState": "techo.manage.covid19Dashboard"
496
+ // },
497
+ // {
498
+ // "id": 300,
499
+ // "name": "Manage Lab Infrastructure",
500
+ // "navigationState": "techo.manage.labinfrastructure"
501
+ // },
502
+ // {
503
+ // "id": 290,
504
+ // "name": "Hospital Admission",
505
+ // "navigationState": "techo.manage.covidAdmission",
506
+ // "featureJson": "{\"isShowReferredAdmissionTab\":true,\"isShowSuspectAdmittedCasesTab\":true,\"isShowConfirmedAdmittedCasesTab\":true,\"isShowAdmitButton\":true,\"isShowCheckUpButton\":true,\"isShowDischargeButton\":true,\"isShowNewAdmissionButton\":true,\"isShowReferInTab\":true,\"isShowReferOutTab\":true,\"isShowReferInAdmitButton\":true,\"isShowEditButton\":true,\"isShowPrintButton\":true}"
507
+ // }
508
+ // ]
509
+ // },
510
+ // {
511
+ // "id": 397,
512
+ // "name": "RBSK Birth Defect Report",
513
+ // "navigationState": "techo.manage.rbskBirthDefectReport",
514
+ // "featureJson": "{}"
515
+ // },
516
+ // {
517
+ // "id": 74,
518
+ // "name": "Announcements",
519
+ // "navigationState": "techo.manage.announcements"
520
+ // },
521
+ // {
522
+ // "id": 5,
523
+ // "name": "Child Reports",
524
+ // "navigationState": "techo.report.view({id:'8d0a9e76-4d45-493f-8d1d-5371d11995c1'})",
525
+ // "isGroup": true,
526
+ // "subGroups": [
527
+ // {
528
+ // "id": 141,
529
+ // "name": "Child for monitoring of Pentavalent 3 Vaccine as per Date of Birth",
530
+ // "navigationState": "techo.report.view({id:'8d0a9e76-4d45-493f-8d1d-5371d11995c1'})",
531
+ // "featureJson": "{\"canDrillDown\":true}",
532
+ // "isDynamicReport": true
533
+ // },
534
+ // {
535
+ // "id": 136,
536
+ // "name": "Monitoring BCG Vaccine as per DOB",
537
+ // "navigationState": "techo.report.view({id:'a9452880-acae-4735-b7cd-2d7a2854b789'})",
538
+ // "featureJson": "{\"canDrillDown\":true}",
539
+ // "isDynamicReport": true
540
+ // },
541
+ // {
542
+ // "id": 113,
543
+ // "name": "Services Provided to the Children Registered during the Year ( 1 to 6 Year )",
544
+ // "navigationState": "techo.report.view({id:'3d09f721-c91a-4bc3-b2a9-b9db65373ef1'})",
545
+ // "featureJson": "{\"canDrillDown\":true}",
546
+ // "isDynamicReport": true
547
+ // },
548
+ // {
549
+ // "id": 215,
550
+ // "name": "Live Birth By Gender Report",
551
+ // "navigationState": "techo.report.view({id:'2a962ca4-5552-4dcd-9293-ee0b6946a1ba'})",
552
+ // "featureJson": "{\"canDrillDown\":true}",
553
+ // "isDynamicReport": true
554
+ // },
555
+ // {
556
+ // "id": 137,
557
+ // "name": "Child's DOB base report for OPV/DPT booster and 2nd dose of Measles Service",
558
+ // "navigationState": "techo.report.view({id:'2669b516-dde5-4410-9dfd-c62e44fe4f68'})",
559
+ // "featureJson": "{\"canDrillDown\":true}",
560
+ // "isDynamicReport": true
561
+ // },
562
+ // {
563
+ // "id": 140,
564
+ // "name": "Immunization Services Provided to Children with Date of Birth",
565
+ // "navigationState": "techo.report.view({id:'9a5effbe-d7cf-4b0b-8352-02ef09e583bf'})",
566
+ // "featureJson": "{\"canDrillDown\":true}",
567
+ // "isDynamicReport": true
568
+ // },
569
+ // {
570
+ // "id": 114,
571
+ // "name": "Services Provided to the Children Registered during the Year ( 0 to 1 Year )",
572
+ // "navigationState": "techo.report.view({id:'8480f7bc-63ac-4c0f-a3fb-f7ffa4a1363f'})",
573
+ // "featureJson": "{\"canDrillDown\":true}",
574
+ // "isDynamicReport": true
575
+ // }
576
+ // ],
577
+ // "featureJson": "{\"canDrillDown\":true}",
578
+ // "isDynamicReport": true
579
+ // },
580
+ // {
581
+ // "id": 402,
582
+ // "name": "District Tracking Dashboard",
583
+ // "navigationState": "techo.manage.aspirationmainpagedashboard"
584
+ // },
585
+ // {
586
+ // "id": 71,
587
+ // "name": "Family Moving",
588
+ // "navigationState": "techo.manage.familymoving",
589
+ // "featureJson": "{\"canSearchByLocation\":true,\"canSearchByFamilyId\":true,\"canSearchByMemberHealthId\":true,\"canSearchArchived\":true,\"canMarkUnverified\":true}"
590
+ // },
591
+ // {
592
+ // "id": 392,
593
+ // "name": "Very High Risk Delivery Approval",
594
+ // "navigationState": "techo.manage.veryhighriskdeliveryapproval",
595
+ // "featureJson": "{}"
596
+ // },
597
+ // {
598
+ // "id": 112,
599
+ // "name": "CMTC/NRC Child Screening",
600
+ // "navigationState": "techo.manage.childscreeninglist",
601
+ // "featureJson": "{\"isShowHealthIdModal\":true,\"isShowHIPModal\":false}"
602
+ // },
603
+ // {
604
+ // "id": 365,
605
+ // "name": "Student Screening",
606
+ // "navigationState": "techo.manage.rbskSearch",
607
+ // "featureJson": "{\"showAllSections\":true,\"canSelectAnganwadi\":true,\"canFillSAMScreening\":true,\"canFill4DScreeningForm\":true,\"canSelectNonSchoolGoingStudent\":true}"
608
+ // },
609
+ // {
610
+ // "id": 340,
611
+ // "name": "Location Type",
612
+ // "navigationState": "techo.manage.locationtype",
613
+ // "featureJson": "{}"
614
+ // },
615
+ // {
616
+ // "id": 26,
617
+ // "name": "COVID-19 Report",
618
+ // "navigationState": "techo.report.view({id:'dddd3017-40db-4142-8c39-fe15ff3149a5'})",
619
+ // "isGroup": true,
620
+ // "subGroups": [
621
+ // {
622
+ // "id": 304,
623
+ // "name": "Lab wise Sample Status",
624
+ // "navigationState": "techo.report.view({id:'dddd3017-40db-4142-8c39-fe15ff3149a5'})",
625
+ // "featureJson": "{\"canDrillDown\":true}",
626
+ // "isDynamicReport": true
627
+ // },
628
+ // {
629
+ // "id": 302,
630
+ // "name": "Infrastructure Wise Component Availability",
631
+ // "navigationState": "techo.report.view({id:'a85ade02-d6db-4d19-89fb-77907a582e25'})",
632
+ // "featureJson": "{\"canDrillDown\":true}",
633
+ // "isDynamicReport": true
634
+ // },
635
+ // {
636
+ // "id": 306,
637
+ // "name": "Facility Status Report",
638
+ // "navigationState": "techo.report.view({id:'a048689a-407a-4efc-b396-dc7319694465'})",
639
+ // "featureJson": "{\"canDrillDown\":true}",
640
+ // "isDynamicReport": true
641
+ // },
642
+ // {
643
+ // "id": 297,
644
+ // "name": "Positive Case Detail",
645
+ // "navigationState": "techo.report.view({id:'d8deb91d-cac2-41a6-9eb2-ea6a86b04156'})",
646
+ // "featureJson": "{\"canDrillDown\":true}",
647
+ // "isDynamicReport": true
648
+ // },
649
+ // {
650
+ // "id": 299,
651
+ // "name": "IDSP2 Cluster Survey Detail",
652
+ // "navigationState": "techo.report.view({id:'10cd7d75-3875-4ffa-abc3-286ef330f2a2'})",
653
+ // "featureJson": "{\"canDrillDown\":true}",
654
+ // "isDynamicReport": true
655
+ // },
656
+ // {
657
+ // "id": 298,
658
+ // "name": "Hospitalwise detail",
659
+ // "navigationState": "techo.report.view({id:'047b61cf-cc04-4931-b0f8-24cb9d2ab46d'})",
660
+ // "featureJson": "{\"canDrillDown\":true}",
661
+ // "isDynamicReport": true
662
+ // }
663
+ // ],
664
+ // "featureJson": "{\"canDrillDown\":true}",
665
+ // "isDynamicReport": true
666
+ // },
667
+ // {
668
+ // "id": 264,
669
+ // "name": "Manage Teams",
670
+ // "navigationState": "techo.manage.teams",
671
+ // "featureJson": "{}"
672
+ // },
673
+ // {
674
+ // "id": 3,
675
+ // "name": "Reports",
676
+ // "navigationState": "techo.report.view({id:'48aca73b-b4d5-4cad-98d6-4271e6b318e8'})",
677
+ // "isGroup": true,
678
+ // "subGroups": [
679
+ // {
680
+ // "id": 320,
681
+ // "name": "HMIS Report",
682
+ // "navigationState": "techo.report.view({id:'48aca73b-b4d5-4cad-98d6-4271e6b318e8'})",
683
+ // "featureJson": "{\"canDrillDown\":true}",
684
+ // "isDynamicReport": true
685
+ // },
686
+ // {
687
+ // "id": 326,
688
+ // "name": "District Factsheet",
689
+ // "navigationState": "techo.manage.districtperformancedashboard"
690
+ // },
691
+ // {
692
+ // "id": 61,
693
+ // "name": "0-5 Years Child Survey Screened by ANM",
694
+ // "navigationState": "techo.report.view({id:'30361882-8b62-43d1-ac89-3465a522d258'})",
695
+ // "featureJson": "{\"canDrillDown\":true}",
696
+ // "isDynamicReport": true
697
+ // },
698
+ // {
699
+ // "id": 91,
700
+ // "name": "MO Performance Report",
701
+ // "navigationState": "techo.report.view({id:'0b023663-e4e3-4687-b310-7a1316f40db9'})",
702
+ // "featureJson": "{\"canDrillDown\":true}",
703
+ // "isDynamicReport": true
704
+ // },
705
+ // {
706
+ // "id": 198,
707
+ // "name": "Login Rate(Location-wise)",
708
+ // "navigationState": "techo.report.view({id:'5e97d86e-23cd-4e22-8c64-351fcfc85b85'})",
709
+ // "featureJson": "{\"canDrillDown\":true}",
710
+ // "isDynamicReport": true
711
+ // },
712
+ // {
713
+ // "id": 56,
714
+ // "name": "Location Detail Report",
715
+ // "navigationState": "techo.report.view({id:'070f118c-2d09-4a4f-9430-2cb5f1290997'})",
716
+ // "featureJson": "{\"canDrillDown\":true}",
717
+ // "isDynamicReport": true
718
+ // },
719
+ // {
720
+ // "id": 317,
721
+ // "name": "Age-Wise Detail Report",
722
+ // "navigationState": "techo.report.view({id:'cbfd33e2-b399-45e8-b974-12edacb16e81'})",
723
+ // "featureJson": "{\"canDrillDown\":true}",
724
+ // "isDynamicReport": true
725
+ // }
726
+ // ],
727
+ // "featureJson": "{\"canDrillDown\":true}",
728
+ // "isDynamicReport": true
729
+ // },
730
+ // {
731
+ // "id": 370,
732
+ // "name": "RBSK Team Microplanning",
733
+ // "navigationState": "techo.manage.rbskstudentscreeningestimation",
734
+ // "featureJson": "{\"canDeleteEstimation\":true}"
735
+ // },
736
+ // {
737
+ // "id": 6,
738
+ // "name": "GVK Call Center Report",
739
+ // "navigationState": "techo.report.view({id:'8d071c53-75b4-44d1-8196-24c37cbdafe5'})",
740
+ // "isGroup": true,
741
+ // "subGroups": [
742
+ // {
743
+ // "id": 129,
744
+ // "name": "Indradhanush Call Status Report - User Wise",
745
+ // "navigationState": "techo.report.view({id:'8d071c53-75b4-44d1-8196-24c37cbdafe5'})",
746
+ // "featureJson": "{\"canDrillDown\":true}",
747
+ // "isDynamicReport": true
748
+ // },
749
+ // {
750
+ // "id": 128,
751
+ // "name": "Indradhanush Call Status Report - Location Wise",
752
+ // "navigationState": "techo.report.view({id:'c646bf05-ac1b-459a-a332-e2870e44eb84'})",
753
+ // "featureJson": "{\"canDrillDown\":true}",
754
+ // "isDynamicReport": true
755
+ // },
756
+ // {
757
+ // "id": 132,
758
+ // "name": "FHS Call Report - User Wise",
759
+ // "navigationState": "techo.report.view({id:'ca91bef6-5705-4d0d-95c6-84a0d5cbb808'})",
760
+ // "featureJson": "{\"canDrillDown\":true}",
761
+ // "isDynamicReport": true
762
+ // },
763
+ // {
764
+ // "id": 131,
765
+ // "name": "FHS Call Report - Location wise",
766
+ // "navigationState": "techo.report.view({id:'f88835d4-c557-4401-b62c-79504515642c'})",
767
+ // "featureJson": "{\"canDrillDown\":true}",
768
+ // "isDynamicReport": true
769
+ // },
770
+ // {
771
+ // "id": 219,
772
+ // "name": "GVK : Call Effectiveness Reports",
773
+ // "navigationState": "techo.dashboard.gvkCallEffectivenessReports"
774
+ // },
775
+ // {
776
+ // "id": 126,
777
+ // "name": "Indradhanush Call Report - User Wise",
778
+ // "navigationState": "techo.report.view({id:'3471d85e-4150-4f2d-beef-d6a68589ad9a'})",
779
+ // "featureJson": "{\"canDrillDown\":true}",
780
+ // "isDynamicReport": true
781
+ // }
782
+ // ],
783
+ // "featureJson": "{\"canDrillDown\":true}",
784
+ // "isDynamicReport": true
785
+ // },
786
+ // {
787
+ // "id": 15,
788
+ // "name": "Dr. Techo",
789
+ // "navigationState": "techo.report.view({id:'5b4e2c7a-a8c0-4247-8d1e-b4914a3422ae'})",
790
+ // "isGroup": true,
791
+ // "subGroups": [
792
+ // {
793
+ // "id": 286,
794
+ // "name": "Dr techo status detail report",
795
+ // "navigationState": "techo.report.view({id:'5b4e2c7a-a8c0-4247-8d1e-b4914a3422ae'})",
796
+ // "featureJson": "{\"canDrillDown\":true}",
797
+ // "isDynamicReport": true
798
+ // }
799
+ // ],
800
+ // "featureJson": "{\"canDrillDown\":true}",
801
+ // "isDynamicReport": true
802
+ // },
803
+ // {
804
+ // "id": 369,
805
+ // "name": "RBSK Link Student",
806
+ // "navigationState": "techo.manage.rbskstudentlinking"
807
+ // },
808
+ // {
809
+ // "id": 187,
810
+ // "name": "TEMP - UPDATE PREGNANCY SERVICE DATE",
811
+ // "navigationState": "techo.manage.pregregedit"
812
+ // },
813
+ // {
814
+ // "id": 7,
815
+ // "name": "Administration",
816
+ // "navigationState": "techo.report.view({id:'38fe43c3-3fc3-42e7-aa15-ca971412907c'})",
817
+ // "isGroup": true,
818
+ // "subGroups": [
819
+ // {
820
+ // "id": 201,
821
+ // "name": "Cheeranjivi Yojana deliveries Report",
822
+ // "navigationState": "techo.report.view({id:'38fe43c3-3fc3-42e7-aa15-ca971412907c'})",
823
+ // "featureJson": "{\"canDrillDown\":true}",
824
+ // "isDynamicReport": true
825
+ // },
826
+ // {
827
+ // "id": 248,
828
+ // "name": "Sms Count Report",
829
+ // "navigationState": "techo.report.view({id:'814b7881-1c68-477c-80de-3a098fa81561'})",
830
+ // "featureJson": "{\"canDrillDown\":true}",
831
+ // "isDynamicReport": true
832
+ // },
833
+ // {
834
+ // "id": 176,
835
+ // "name": "Location Wise Expected Target",
836
+ // "navigationState": "techo.manage.expectedTarget",
837
+ // "featureJson": "{\"canLock\":true,\"canUnlock\":true}"
838
+ // },
839
+ // {
840
+ // "id": 262,
841
+ // "name": "Location Wise Task Completion",
842
+ // "navigationState": "techo.report.view({id:'7709cfc5-35d3-4d31-aaa7-68e00987ce1b'})",
843
+ // "featureJson": "{\"canDrillDown\":true}",
844
+ // "isDynamicReport": true
845
+ // },
846
+ // {
847
+ // "id": 202,
848
+ // "name": "PMSMA Services Statistics Report",
849
+ // "navigationState": "techo.report.view({id:'920a9dff-1def-49b3-945b-2bd05fd6a509'})",
850
+ // "featureJson": "{\"canDrillDown\":true}",
851
+ // "isDynamicReport": true
852
+ // },
853
+ // {
854
+ // "id": 185,
855
+ // "name": "E-mamta Code Remaining",
856
+ // "navigationState": "techo.report.view({id:'98c9c8d8-7fdc-4163-b36d-26de0f2442aa'})",
857
+ // "featureJson": "{\"canDrillDown\":true}",
858
+ // "isDynamicReport": true
859
+ // },
860
+ // {
861
+ // "id": 184,
862
+ // "name": "MCTS PHC Not In TeCHO+",
863
+ // "navigationState": "techo.report.view({id:'5f517733-6f24-43b1-8858-c8cc95dfd3bf'})",
864
+ // "featureJson": "{\"canDrillDown\":true}",
865
+ // "isDynamicReport": true
866
+ // },
867
+ // {
868
+ // "id": 200,
869
+ // "name": "Janani Shishu Suraksha Karykram Report",
870
+ // "navigationState": "techo.report.view({id:'daf5f0c8-1bdd-4370-8f30-d282dc95c219'})",
871
+ // "featureJson": "{\"canDrillDown\":true}",
872
+ // "isDynamicReport": true
873
+ // },
874
+ // {
875
+ // "id": 133,
876
+ // "name": "Details of Locations not deleted with delete label",
877
+ // "navigationState": "techo.report.view({id:'20828757-6774-403f-ae70-083c59229090'})",
878
+ // "featureJson": "{\"canDrillDown\":true}",
879
+ // "isDynamicReport": true
880
+ // },
881
+ // {
882
+ // "id": 183,
883
+ // "name": "LGD Code Remaining",
884
+ // "navigationState": "techo.report.view({id:'4627210e-2108-45dd-9bf7-e8b2b934d659'})",
885
+ // "featureJson": "{\"canDrillDown\":true}",
886
+ // "isDynamicReport": true
887
+ // }
888
+ // ],
889
+ // "featureJson": "{\"canDrillDown\":true}",
890
+ // "isDynamicReport": true
891
+ // },
892
+ // {
893
+ // "id": 426,
894
+ // "name": "PM- Family Care Tracker ( FCT)",
895
+ // "navigationState": "techo.manage.rchOverviewDashboard"
896
+ // },
897
+ // {
898
+ // "id": 258,
899
+ // "name": "Staff Sms Configuration",
900
+ // "navigationState": "techo.manage.staffsmsconfigs",
901
+ // "featureJson": "{\"canManageAllSms\":true}"
902
+ // },
903
+ // {
904
+ // "id": 394,
905
+ // "name": "Namoshree Second Level Approval",
906
+ // "navigationState": "techo.manage.namoshreeDistrictApproval"
907
+ // },
908
+ // {
909
+ // "id": 158,
910
+ // "name": "Mobile Management",
911
+ // "navigationState": "techo.manage.mobilemangementinfo"
912
+ // },
913
+ // {
914
+ // "id": 396,
915
+ // "name": "Bank details not found members",
916
+ // "navigationState": "techo.manage.noBankDetailMembers"
917
+ // },
918
+ // {
919
+ // "id": 4,
920
+ // "name": "Maternal Reports",
921
+ // "navigationState": "techo.report.view({id:'b4c2d5f1-96f4-46ef-8afa-0515b63bb10f'})",
922
+ // "isGroup": true,
923
+ // "subGroups": [
924
+ // {
925
+ // "id": 175,
926
+ // "name": "Maternal Health Services Provided During The Year (Monthly)",
927
+ // "navigationState": "techo.report.view({id:'b4c2d5f1-96f4-46ef-8afa-0515b63bb10f'})",
928
+ // "featureJson": "{\"canDrillDown\":true}",
929
+ // "isDynamicReport": true
930
+ // },
931
+ // {
932
+ // "id": 343,
933
+ // "name": "Status of Syphilis testing in Pregnant Women",
934
+ // "navigationState": "techo.report.view({id:'c9d05f43-9954-4241-ab9e-5ef60b1e84da'})",
935
+ // "featureJson": "{\"canDrillDown\":true}",
936
+ // "isDynamicReport": true
937
+ // },
938
+ // {
939
+ // "id": 270,
940
+ // "name": "Maternal Death Causewise",
941
+ // "navigationState": "techo.report.view({id:'1422e079-a449-4935-9275-b10f69d80341'})",
942
+ // "featureJson": "{\"canDrillDown\":true}",
943
+ // "isDynamicReport": true
944
+ // },
945
+ // {
946
+ // "id": 93,
947
+ // "name": "Pregnant Women Report",
948
+ // "navigationState": "techo.report.view({id:'dc464f6b-91ad-47d6-b652-609126ac316d'})",
949
+ // "featureJson": "{\"canDrillDown\":true}",
950
+ // "isDynamicReport": true
951
+ // }
952
+ // ],
953
+ // "featureJson": "{\"canDrillDown\":true}",
954
+ // "isDynamicReport": true
955
+ // },
956
+ // {
957
+ // "id": 10,
958
+ // "name": "Facility Data Entry",
959
+ // "navigationState": "techo.manage.childServiceSearch",
960
+ // "isGroup": true,
961
+ // "subGroups": [
962
+ // {
963
+ // "id": 151,
964
+ // "name": "Child Service Visit",
965
+ // "navigationState": "techo.manage.childServiceSearch"
966
+ // },
967
+ // {
968
+ // "id": 111,
969
+ // "name": "Institutional Delivery Reg. Form",
970
+ // "navigationState": "techo.manage.wpdSearch",
971
+ // "featureJson": "{\"isShowHIPModal\": false, \"isShowConsentList\": false, \"isShowHealthIdModal\": true}"
972
+ // },
973
+ // {
974
+ // "id": 273,
975
+ // "name": "Out-Patient Treatment (OPD)",
976
+ // "navigationState": "techo.manage.outPatientTreatmentSearch",
977
+ // "featureJson": "{\"canManageRegistration\":true,\"canManageTreatment\":true,\"canManageMedicines\":true}"
978
+ // },
979
+ // {
980
+ // "id": 149,
981
+ // "name": "PNC Institution Form",
982
+ // "navigationState": "techo.manage.pncSearch"
983
+ // },
984
+ // {
985
+ // "id": 210,
986
+ // "name": "Family Planning Service Visit",
987
+ // "navigationState": "techo.manage.fpChangeSearch"
988
+ // },
989
+ // {
990
+ // "id": 157,
991
+ // "name": "Facility Performance",
992
+ // "navigationState": "techo.manage.facilityPerformance"
993
+ // },
994
+ // {
995
+ // "id": 246,
996
+ // "name": "Sickle Cell Screening",
997
+ // "navigationState": "techo.manage.sicklecellSearch"
998
+ // }
999
+ // ]
1000
+ // },
1001
+ // {
1002
+ // "id": 9,
1003
+ // "name": "Child Report 2",
1004
+ // "navigationState": "techo.report.view({id:'97cf4b39-d28b-4043-a113-f63ecc854c8c'})",
1005
+ // "isGroup": true,
1006
+ // "subGroups": [
1007
+ // {
1008
+ // "id": 115,
1009
+ // "name": "LBW Child Registered",
1010
+ // "navigationState": "techo.report.view({id:'97cf4b39-d28b-4043-a113-f63ecc854c8c'})",
1011
+ // "featureJson": "{\"canDrillDown\":true}",
1012
+ // "isDynamicReport": true
1013
+ // },
1014
+ // {
1015
+ // "id": 116,
1016
+ // "name": "Infant and Neonatal Deaths Report",
1017
+ // "navigationState": "techo.report.view({id:'3b51ed26-a317-4344-8eb3-e14a462bfd5f'})",
1018
+ // "featureJson": "{\"canDrillDown\":true}",
1019
+ // "isDynamicReport": true
1020
+ // },
1021
+ // {
1022
+ // "id": 139,
1023
+ // "name": "Child Health Services Provided during the year (Monthly)",
1024
+ // "navigationState": "techo.report.view({id:'830503de-d1b5-431d-bf04-670d90ab621f'})",
1025
+ // "featureJson": "{\"canDrillDown\":true}",
1026
+ // "isDynamicReport": true
1027
+ // },
1028
+ // {
1029
+ // "id": 138,
1030
+ // "name": "State Level Monthly Compilation Sheet for Screening of Birth Defects",
1031
+ // "navigationState": "techo.report.view({id:'bb544914-fe96-411d-8094-cf344da5506f'})",
1032
+ // "featureJson": "{\"canDrillDown\":true}",
1033
+ // "isDynamicReport": true
1034
+ // },
1035
+ // {
1036
+ // "id": 146,
1037
+ // "name": "Child Health Services Provided during the year (Yearly)",
1038
+ // "navigationState": "techo.report.view({id:'c62ab8b4-25bd-4325-87e5-73d8be8d0536'})",
1039
+ // "featureJson": "{\"canDrillDown\":true}",
1040
+ // "isDynamicReport": true
1041
+ // }
1042
+ // ],
1043
+ // "featureJson": "{\"canDrillDown\":true}",
1044
+ // "isDynamicReport": true
1045
+ // },
1046
+ // {
1047
+ // "id": 120,
1048
+ // "name": "Verified Family Moving",
1049
+ // "navigationState": "techo.manage.verifiedfamilymoving",
1050
+ // "featureJson": "{\"canSearchByLocation\":true,\"canSearchByFamilyId\":true,\"canSearchByMemberHealthId\":true}"
1051
+ // },
1052
+ // {
1053
+ // "id": 190,
1054
+ // "name": "National Programme For Control of Blindness",
1055
+ // "navigationState": "techo.manage.npcblist"
1056
+ // },
1057
+ // {
1058
+ // "id": 388,
1059
+ // "name": "Mamta Campaign List",
1060
+ // "navigationState": "techo.manage.mamtacampaignlist"
1061
+ // },
1062
+ // {
1063
+ // "id": 72,
1064
+ // "name": "FHS Work Progress",
1065
+ // "navigationState": "techo.manage.fhsworkbargraph",
1066
+ // "featureJson": "{}"
1067
+ // },
1068
+ // {
1069
+ // "id": 154,
1070
+ // "name": "Suspected CP",
1071
+ // "navigationState": "techo.manage.cerebralpalsysearch"
1072
+ // },
1073
+ // {
1074
+ // "id": 144,
1075
+ // "name": "Helpdesk Tool - Search",
1076
+ // "navigationState": "techo.manage.searchfeature",
1077
+ // "featureJson": "{\"canModifyLmpDate\":true,\"canModifyHivState\":true,\"canModifyMemberDob\":true,\"canModifyVdrlState\":true,\"canRevertMigration\":true,\"canEditHysterectomy\":true,\"canModifyHbsagState\":true,\"canEditSickleCellTest\":true,\"canModifyMemberGender\":true,\"canMarkAsWrongDelivery\":true,\"canMarkMemberAsArchive\":true,\"canModifyImmuGivenDate\":true,\"canMarkAsEligibleCouple\":true,\"canModifyAncServiceDate\":true,\"canModifyChvServiceDate\":true,\"canModifyMenopauseState\":true,\"canModifyPncServiceDate\":true,\"canModifyWpdServiceDate\":true,\"canModifyWpdDeliveryDate\":true,\"canModifyPregnancyRegDate\":true,\"canModifyWpdDeliveryPlace\":true,\"canModifyWpdDischargeDate\":true,\"canModifyCaesareanCountState\":true,\"canUnarchive\":true,\"canResync\":true}"
1078
+ // },
1079
+ // {
1080
+ // "id": 241,
1081
+ // "name": "Mobile App Version Count",
1082
+ // "navigationState": "techo.report.view({id:'7436038d-30e5-495a-9ead-cbffc292dd31'})",
1083
+ // "featureJson": "{\"canDrillDown\":true}",
1084
+ // "isDynamicReport": true
1085
+ // },
1086
+ // {
1087
+ // "id": 418,
1088
+ // "name": "RBSK Referred Student Treatment",
1089
+ // "navigationState": "techo.manage.rbskReferredTreatment",
1090
+ // "featureJson": "{\"canFillTreatmentForm\":true}",
1091
+ // "isDynamicReport": false
1092
+ // },
1093
+ // {
1094
+ // "id": 30,
1095
+ // "name": "Self Help Group",
1096
+ // "navigationState": "techo.manage.shgassign",
1097
+ // "isGroup": true,
1098
+ // "subGroups": [
1099
+ // {
1100
+ // "id": 371,
1101
+ // "name": "Assign Self Help Group",
1102
+ // "navigationState": "techo.manage.shgassign",
1103
+ // "featureJson": "{}"
1104
+ // }
1105
+ // ],
1106
+ // "featureJson": "{}"
1107
+ // },
1108
+ // {
1109
+ // "id": 191,
1110
+ // "name": "Service Register",
1111
+ // "navigationState": "techo.manage.memberserviceregister",
1112
+ // "featureJson": "{}"
1113
+ // },
1114
+ // {
1115
+ // "id": 323,
1116
+ // "name": "System Code Management Tool",
1117
+ // "navigationState": "techo.manage.systemcode",
1118
+ // "featureJson": "{}"
1119
+ // },
1120
+ // {
1121
+ // "id": 23,
1122
+ // "name": "IDSP",
1123
+ // "navigationState": "techo.manage.idspFormS",
1124
+ // "isGroup": true,
1125
+ // "subGroups": [
1126
+ // {
1127
+ // "id": 277,
1128
+ // "name": "Form S",
1129
+ // "navigationState": "techo.manage.idspFormS",
1130
+ // "featureJson": "{}"
1131
+ // },
1132
+ // {
1133
+ // "id": 279,
1134
+ // "name": "IDSP Screening Status Report",
1135
+ // "navigationState": "techo.report.view({id:'93aa5943-e930-473f-bda5-34cc8acdfb4e'})",
1136
+ // "featureJson": "{\"canDrillDown\":true}",
1137
+ // "isDynamicReport": true
1138
+ // }
1139
+ // ],
1140
+ // "featureJson": "{}"
1141
+ // },
1142
+ // {
1143
+ // "id": 31,
1144
+ // "name": "LLM POC",
1145
+ // "navigationState": "techo.manage.autoquerygenerator",
1146
+ // "isGroup": true,
1147
+ // "subGroups": [
1148
+ // {
1149
+ // "id": 399,
1150
+ // "name": "Auto Query Generator",
1151
+ // "navigationState": "techo.manage.autoquerygenerator"
1152
+ // },
1153
+ // {
1154
+ // "id": 409,
1155
+ // "name": "LLM Medical",
1156
+ // "navigationState": "techo.manage.medical",
1157
+ // "featureJson": "{}"
1158
+ // },
1159
+ // {
1160
+ // "id": 401,
1161
+ // "name": "Conversation Collection",
1162
+ // "navigationState": "techo.manage.conversationcollection"
1163
+ // }
1164
+ // ]
1165
+ // },
1166
+ // {
1167
+ // "id": 186,
1168
+ // "name": "Upload Document",
1169
+ // "navigationState": "techo.manage.uploadDocument"
1170
+ // },
1171
+ // {
1172
+ // "id": 70,
1173
+ // "name": "FHS Family Report",
1174
+ // "navigationState": "techo.report.familyreport",
1175
+ // "featureJson": "{}"
1176
+ // },
1177
+ // {
1178
+ // "id": 122,
1179
+ // "name": "Health Facility Mapping",
1180
+ // "navigationState": "techo.manage.healthinfrastructures",
1181
+ // "featureJson": "{\"canAdd\":true,\"canEdit\":true,\"canEditFru\":true,\"canEditHWC\":true,\"canEditNcd\":true,\"canEditNrc\":true,\"canEditCmtc\":true,\"canEditIdsp\":true,\"canEditNpcb\":true,\"canEditSncu\":true,\"canEditGynaec\":true,\"canEditLabTest\":true,\"canEditMaYojna\":true,\"canEditBalsakha1\":true,\"canEditBalsakha3\":true,\"canEditBloodBank\":true,\"canChangeLocation\":true,\"canEditCovid19Lab\":true,\"canUpdateSchedule\":true,\"canEditChiranjeevi\":true,\"canEditUsgFacility\":true,\"canLinkHfrFacility\":true,\"canEditPediatrician\":true,\"canEditPmjayFacility\":true,\"manageBasedOnLocation\":true,\"canEditCovid19Hospital\":true,\"canEditReferralFacility\":true,\"manageBasedOnAssignment\":true,\"canManageHealthInfraType\":true}"
1182
+ // },
1183
+ // {
1184
+ // "id": 92,
1185
+ // "name": "RCH TRAINING COUNT REPORT",
1186
+ // "navigationState": "techo.report.view({id:'9a9d3e2e-c5e5-4aa6-adc3-e84a511e5e3d'})",
1187
+ // "featureJson": "{\"canDrillDown\":true}",
1188
+ // "isDynamicReport": true
1189
+ // },
1190
+ // {
1191
+ // "id": 389,
1192
+ // "name": "Mamta Campaign Dashboard",
1193
+ // "navigationState": "techo.manage.mamtacampaign"
1194
+ // },
1195
+ // {
1196
+ // "id": 391,
1197
+ // "name": "Namoshree MO Approval",
1198
+ // "navigationState": "techo.manage.namoshreeMoApproval"
1199
+ // },
1200
+ // {
1201
+ // "id": 382,
1202
+ // "name": "ABHA Number",
1203
+ // "navigationState": "techo.manage.abhaNumber"
1204
+ // },
1205
+ // {
1206
+ // "id": 368,
1207
+ // "name": "RBSK Add Student",
1208
+ // "navigationState": "techo.manage.rbskAddStudent",
1209
+ // "featureJson": "{\"canSelectAnganwadi\":true}"
1210
+ // },
1211
+ // {
1212
+ // "id": 390,
1213
+ // "name": "HNEL Dashboard",
1214
+ // "navigationState": "techo.manage.hnelblockdashboard",
1215
+ // "featureJson": "{}"
1216
+ // },
1217
+ // {
1218
+ // "id": 211,
1219
+ // "name": "RCH Register",
1220
+ // "navigationState": "techo.manage.rchregister",
1221
+ // "featureJson": "{}"
1222
+ // },
1223
+ // {
1224
+ // "id": 410,
1225
+ // "name": "Revert Family Archival",
1226
+ // "navigationState": "techo.report.view({id:'cd298e3f-ca2d-4a44-b430-38aca261b2fe'})",
1227
+ // "featureJson": "{\"canDrillDown\":true}",
1228
+ // "isDynamicReport": true
1229
+ // },
1230
+ // {
1231
+ // "id": 177,
1232
+ // "name": "Duplicate Member Verification",
1233
+ // "navigationState": "techo.manage.duplicateMemberVerification",
1234
+ // "featureJson": "{}"
1235
+ // },
1236
+ // {
1237
+ // "id": 153,
1238
+ // "name": "Manage Migrations",
1239
+ // "navigationState": "techo.manage.migrations",
1240
+ // "featureJson": "{}"
1241
+ // },
1242
+ // {
1243
+ // "id": 25,
1244
+ // "name": "RCH Data Push",
1245
+ // "navigationState": "techo.manage.wards",
1246
+ // "isGroup": true,
1247
+ // "subGroups": [
1248
+ // {
1249
+ // "id": 259,
1250
+ // "name": "Manage Location Wards",
1251
+ // "navigationState": "techo.manage.wards"
1252
+ // },
1253
+ // {
1254
+ // "id": 315,
1255
+ // "name": "RCH Locations",
1256
+ // "navigationState": "techo.manage.rchLocations"
1257
+ // }
1258
+ // ]
1259
+ // },
1260
+ // {
1261
+ // "id": 378,
1262
+ // "name": "Attendance Module Configuration",
1263
+ // "navigationState": "techo.manage.attendancetypelist",
1264
+ // "featureJson": "{\"canAddCode\":true}"
1265
+ // },
1266
+ // {
1267
+ // "id": 130,
1268
+ // "name": "User Information",
1269
+ // "navigationState": "techo.manage.userinformation",
1270
+ // "featureJson": "{}"
1271
+ // },
1272
+ // {
1273
+ // "id": 109,
1274
+ // "name": "Web Tasks",
1275
+ // "navigationState": "techo.dashboard.webtasks"
1276
+ // },
1277
+ // {
1278
+ // "id": 1,
1279
+ // "name": "Users",
1280
+ // "navigationState": "techo.manage.users",
1281
+ // "featureJson": "{\"canAdd\":true,\"canEdit\":true,\"canUnlockUser\":false,\"canEditIsNodal\":true,\"canEditPassword\":true,\"canEditUserName\":true}"
1282
+ // },
1283
+ // {
1284
+ // "id": 380,
1285
+ // "name": "Attendance Marking",
1286
+ // "navigationState": "techo.manage.attendancemarkinglist",
1287
+ // "featureJson": "{}"
1288
+ // },
1289
+ // {
1290
+ // "id": 428,
1291
+ // "name": "SHRBSK Schedule Tele Monitoring Session",
1292
+ // "navigationState": "techo.manage.schedTeleMonitSession",
1293
+ // "featureJson": "{}"
1294
+ // },
1295
+ // {
1296
+ // "id": 13,
1297
+ // "name": "Upload Location",
1298
+ // "navigationState": "techo.manage.uploadlocation",
1299
+ // "featureJson": "{}"
1300
+ // },
1301
+ // {
1302
+ // "id": 386,
1303
+ // "name": "Action Dashboard",
1304
+ // "navigationState": "techo.manage.actiondashboard",
1305
+ // "featureJson": "{}"
1306
+ // },
1307
+ // {
1308
+ // "id": 411,
1309
+ // "name": "State Health Dashboard",
1310
+ // "navigationState": "techo.manage.statehealthdashboard",
1311
+ // "featureJson": "{}"
1312
+ // },
1313
+ // {
1314
+ // "id": 197,
1315
+ // "name": "Place of Service Delivery",
1316
+ // "navigationState": "techo.manage.servicedeliverylocation"
1317
+ // },
1318
+ // {
1319
+ // "id": 182,
1320
+ // "name": "State Of Health User Approval",
1321
+ // "navigationState": "techo.manage.userhealthapproval",
1322
+ // "featureJson": "{}"
1323
+ // },
1324
+ // {
1325
+ // "id": 165,
1326
+ // "name": "Mobile Library",
1327
+ // "navigationState": "techo.manage.mobilelibrary"
1328
+ // },
1329
+ // {
1330
+ // "id": 17,
1331
+ // "name": "Locations",
1332
+ // "navigationState": "techo.manage.location",
1333
+ // "featureJson": "{\"canAdd\":true,\"canEdit\":true,\"canEditLGDCode\":false}"
1334
+ // },
1335
+ // {
1336
+ // "id": 94,
1337
+ // "name": "Urban FHS Count",
1338
+ // "navigationState": "techo.report.view({id:'b827d60c-5bd2-485d-811c-c79000e95a1b'})",
1339
+ // "featureJson": "{\"canDrillDown\":true}",
1340
+ // "isDynamicReport": true
1341
+ // },
1342
+ // {
1343
+ // "id": 339,
1344
+ // "name": "SMS Type",
1345
+ // "navigationState": "techo.manage.smstype",
1346
+ // "featureJson": "{}"
1347
+ // },
1348
+ // {
1349
+ // "id": 257,
1350
+ // "name": "Manage Schools",
1351
+ // "navigationState": "techo.manage.schools",
1352
+ // "featureJson": "{\"canEditCode\":true}"
1353
+ // },
1354
+ // {
1355
+ // "id": 429,
1356
+ // "name": "SHRBSK Manage Tele Monitoring Session",
1357
+ // "navigationState": "techo.manage.mngTeleMonitSession",
1358
+ // "featureJson": "{}"
1359
+ // },
1360
+ // {
1361
+ // "id": 383,
1362
+ // "name": "Manage manual indicators for dashboards",
1363
+ // "navigationState": "techo.manage.manageindicator",
1364
+ // "featureJson": "{}"
1365
+ // },
1366
+ // {
1367
+ // "id": 193,
1368
+ // "name": "User GEO Services",
1369
+ // "navigationState": "techo.manage.usergeoservices"
1370
+ // },
1371
+ // {
1372
+ // "id": 15,
1373
+ // "name": "Manage Anganwadis",
1374
+ // "navigationState": "techo.manage.anganwadi",
1375
+ // "featureJson": "{\"canEdit\":true}"
1376
+ // }
1377
+ // ]
1378
+ // }
1379
+ ];