@argusoft/medplat-app-shell 1.0.6 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (263) 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/utils/.gitkeep +0 -0
  161. package/src/utils/FormConstants.js +2629 -0
  162. package/src/utils/GujaratTopoChart.jsx +483 -0
  163. package/src/utils/UUIDgenerator.js +8 -0
  164. package/src/utils/appointment-utils/appointment-utils.js +123 -0
  165. package/src/utils/feature.js +42 -0
  166. package/src/utils/getThemeColor.js +12 -0
  167. package/src/utils/localStorageHelper.js +11 -0
  168. package/src/utils/notifications/enable-push-notifications.js +27 -0
  169. package/src/utils/resolveAppliedStyle.js +11 -0
  170. package/src/utils/themeConfigs.js +1483 -0
  171. package/src/views/custom-components/.gitkeep +0 -0
  172. package/src/views/custom-components/AgIconButton/RIf.jsx +14 -0
  173. package/src/views/custom-components/AgIconButton/button.jsx +108 -0
  174. package/src/views/custom-components/AgIconButton/waterDrop.jsx +95 -0
  175. package/src/views/custom-components/AgIconButton/waterDrop.scss +37 -0
  176. package/src/views/custom-components/AlertPlaceholder.jsx +32 -0
  177. package/src/views/custom-components/AllFaIconsSelector.jsx +56 -0
  178. package/src/views/custom-components/CkEditor/CkEditor.js +102 -0
  179. package/src/views/custom-components/CustomAccordion.jsx +72 -0
  180. package/src/views/custom-components/CustomActionIcons.jsx +118 -0
  181. package/src/views/custom-components/CustomAutoComplete.jsx +188 -0
  182. package/src/views/custom-components/CustomCheckBox.jsx +60 -0
  183. package/src/views/custom-components/CustomConfirmationModal.jsx +118 -0
  184. package/src/views/custom-components/CustomCountrySelect.jsx +129 -0
  185. package/src/views/custom-components/CustomDatePicker.jsx +122 -0
  186. package/src/views/custom-components/CustomDropdown.jsx +191 -0
  187. package/src/views/custom-components/CustomFileUpload.jsx +387 -0
  188. package/src/views/custom-components/CustomFullCalendar.jsx +514 -0
  189. package/src/views/custom-components/CustomInfiniteScroll.jsx +126 -0
  190. package/src/views/custom-components/CustomRadioComponent.jsx +65 -0
  191. package/src/views/custom-components/CustomStatsComponent.jsx +114 -0
  192. package/src/views/custom-components/CustomSvgUpload.jsx +170 -0
  193. package/src/views/custom-components/CustomSwitch.jsx +37 -0
  194. package/src/views/custom-components/CustomTabPanel.jsx +19 -0
  195. package/src/views/custom-components/CustomTextArea.jsx +62 -0
  196. package/src/views/custom-components/CustomTextArea.scss +27 -0
  197. package/src/views/custom-components/CustomTextField.jsx +116 -0
  198. package/src/views/custom-components/CustomToggleSwitch.jsx +138 -0
  199. package/src/views/custom-components/CustomTooltip.jsx +51 -0
  200. package/src/views/custom-components/CustomZoomImage.jsx +134 -0
  201. package/src/views/custom-components/CustomizedTable/CustomizedTableV2.jsx +1407 -0
  202. package/src/views/custom-components/CustomizedTable/VirtualizeTableBody.jsx +295 -0
  203. package/src/views/custom-components/CustomizedTable/helper.jsx +159 -0
  204. package/src/views/custom-components/CustomizedTable.jsx +532 -0
  205. package/src/views/custom-components/EditInputField.jsx +174 -0
  206. package/src/views/custom-components/FieldDescription.jsx +22 -0
  207. package/src/views/custom-components/FileDisplayComponent.jsx +138 -0
  208. package/src/views/custom-components/FormItem.jsx +53 -0
  209. package/src/views/custom-components/GenericChart.jsx +80 -0
  210. package/src/views/custom-components/InfoBadge.jsx +60 -0
  211. package/src/views/custom-components/PostgresEditor.jsx +801 -0
  212. package/src/views/custom-components/ResizableEditAutocompleteField.jsx +249 -0
  213. package/src/views/custom-components/ResizableEditInputField.jsx +215 -0
  214. package/src/views/custom-components/ResizeableEditSelectField.jsx +197 -0
  215. package/src/views/custom-components/SideOverlay.jsx +113 -0
  216. package/src/views/custom-components/SideOverlay.scss +42 -0
  217. package/src/views/custom-components/calendar.scss +571 -0
  218. package/src/views/feature-components/.gitkeep +0 -0
  219. package/src/views/feature-components/Dashboard/DashboardUI.jsx +1043 -0
  220. package/src/views/feature-components/Dashboard/DhnddModal/AshaDataQualityVerificationModal.jsx +278 -0
  221. package/src/views/feature-components/Dashboard/PinFeatureModal.jsx +143 -0
  222. package/src/views/feature-components/Dashboard/QuickLinks.jsx +163 -0
  223. package/src/views/feature-components/Dashboard/Taskbar.jsx +56 -0
  224. package/src/views/feature-components/Dashboard/WebtasksFilterForm.jsx +109 -0
  225. package/src/views/feature-components/Dashboard/WidgetCard.jsx +161 -0
  226. package/src/views/feature-components/Dashboard/actionModal.jsx +263 -0
  227. package/src/views/feature-components/Dashboard/ekavachModal/HealthWorkerIncorrectDetailsModal.jsx +332 -0
  228. package/src/views/feature-components/Dashboard/ekavachModal/MoMaternalDeathVerifcationModal.jsx +275 -0
  229. package/src/views/feature-components/Dashboard/ekavachModal/MoVerficationForChildScreeningMoadal.jsx +566 -0
  230. package/src/views/feature-components/FeatureUsageAnalytics/FeatureUsageAnalytics.jsx +989 -0
  231. package/src/views/feature-components/Features/NewServerManagement.jsx +217 -0
  232. package/src/views/feature-components/Features/ServerManagement.scss +120 -0
  233. package/src/views/feature-components/ForgotPassword/ForgotPassword.jsx +226 -0
  234. package/src/views/feature-components/LocationDirective/LocationDirective.jsx +992 -0
  235. package/src/views/feature-components/LocationDirective/LocationDirectiveV2.jsx +909 -0
  236. package/src/views/feature-components/NotFound.jsx +66 -0
  237. package/src/views/feature-components/Onboarding/Onboarding.jsx +1400 -0
  238. package/src/views/feature-components/Skeletons.js +115 -0
  239. package/src/views/feature-components/Unauthorized.jsx +48 -0
  240. package/src/views/feature-components/VerifyRoute.jsx +88 -0
  241. package/src/views/feature-components/YearlyRecap/YearlyRecap.jsx +357 -0
  242. package/src/views/feature-components/YearlyRecap/components/RecapSlide.jsx +183 -0
  243. package/src/views/feature-components/YearlyRecap/languageTranslator/TranslationContext.js +5 -0
  244. package/src/views/feature-components/YearlyRecap/languageTranslator/TranslationProvider.jsx +26 -0
  245. package/src/views/feature-components/YearlyRecap/languageTranslator/i18n.js +46 -0
  246. package/src/views/feature-components/YearlyRecap/languageTranslator/translations.json +167 -0
  247. package/src/views/feature-components/YearlyRecap/slides/IntroSlide.jsx +233 -0
  248. package/src/views/feature-components/YearlyRecap/slides/MaternalHealthSlide.jsx +146 -0
  249. package/src/views/feature-components/YearlyRecap/slides/MetricSlide.jsx +227 -0
  250. package/src/views/feature-components/YearlyRecap/slides/OutroSlide.jsx +701 -0
  251. package/src/views/feature-components/YearlyRecap/slides/ReachSlide.jsx +273 -0
  252. package/src/views/feature-components/login/Login.jsx +840 -0
  253. package/src/views/feature-components/login/Login.scss +154 -0
  254. package/src/views/feature-components/login/LoginConfigurator.jsx +1149 -0
  255. package/src/views/feature-components/login/TwoFactorSetupModal.jsx +411 -0
  256. package/src/views/feature-components/login/simplifyMenu.js +45 -0
  257. package/src/views/feature-components/system-config/ManageSystemConfigs.jsx +284 -0
  258. package/src/views/feature-components/system-config/SystemConfig.jsx +299 -0
  259. package/src/views/feature-components/users/ChangePasswordModal.jsx +243 -0
  260. package/src/views/feature-components/users/PasswordField.jsx +56 -0
  261. package/dist/index.css +0 -1
  262. package/dist/index.js +0 -32001
  263. package/dist/index.js.map +0 -1
@@ -0,0 +1,4396 @@
1
+ export const DemoUserData = {
2
+ data: {
3
+ id: 74724,
4
+ fullName: 'Mikita Talati',
5
+ userName: 'mtalati',
6
+ contactNumber: '1234567890',
7
+ firstName: 'Mikita',
8
+ middleName: '',
9
+ lastName: 'Talati',
10
+ gender: 'M',
11
+ prefferedLanguage: 'EN',
12
+ state: 'ACTIVE',
13
+ roleId: 96,
14
+ createdBy: 66522,
15
+ createdOn: 1570183317081,
16
+ roleName: 'Argus Admin',
17
+ addedLocations: [
18
+ {
19
+ id: 294441,
20
+ userId: 74724,
21
+ locationId: 2,
22
+ type: 'S',
23
+ name: 'Gujarat',
24
+ level: 1,
25
+ state: 'ACTIVE',
26
+ createdBy: 66522,
27
+ createdOn: 1570183317950,
28
+ locationFullName: 'Gujarat',
29
+ },
30
+ ],
31
+ title: 'Mr',
32
+ noOfAttempts: 0,
33
+ infrastructureIds: [],
34
+ },
35
+ };
36
+
37
+ export const DemoBankData = {
38
+ data: {
39
+ code: 'get_bank_names_for_pbi',
40
+ result: [
41
+ {
42
+ id: 3038,
43
+ is_active: true,
44
+ is_archive: false,
45
+ last_modified_by: 'dshah',
46
+ last_modified_on: 1733984032084,
47
+ value: 'Bank of Baroda',
48
+ field_key: 'PBI_BANK_NAME',
49
+ file_size: 0,
50
+ multimedia_type: null,
51
+ code: null,
52
+ Date: null,
53
+ column2: null,
54
+ column3: null,
55
+ column4: null,
56
+ column5: null,
57
+ column6: null,
58
+ column7: null,
59
+ column8: null,
60
+ column9: null,
61
+ column10: null,
62
+ list_order: null,
63
+ additional_detail: null,
64
+ constant: null,
65
+ },
66
+ {
67
+ id: 3039,
68
+ is_active: true,
69
+ is_archive: false,
70
+ last_modified_by: 'dshah',
71
+ last_modified_on: 1733984032084,
72
+ value: 'Bank of India',
73
+ field_key: 'PBI_BANK_NAME',
74
+ file_size: 0,
75
+ multimedia_type: null,
76
+ code: null,
77
+ Date: null,
78
+ column2: null,
79
+ column3: null,
80
+ column4: null,
81
+ column5: null,
82
+ column6: null,
83
+ column7: null,
84
+ column8: null,
85
+ column9: null,
86
+ column10: null,
87
+ list_order: null,
88
+ additional_detail: null,
89
+ constant: null,
90
+ },
91
+ {
92
+ id: 3040,
93
+ is_active: true,
94
+ is_archive: false,
95
+ last_modified_by: 'dshah',
96
+ last_modified_on: 1733984032084,
97
+ value: 'Bank of Maharashtra',
98
+ field_key: 'PBI_BANK_NAME',
99
+ file_size: 0,
100
+ multimedia_type: null,
101
+ code: null,
102
+ Date: null,
103
+ column2: null,
104
+ column3: null,
105
+ column4: null,
106
+ column5: null,
107
+ column6: null,
108
+ column7: null,
109
+ column8: null,
110
+ column9: null,
111
+ column10: null,
112
+ list_order: null,
113
+ additional_detail: null,
114
+ constant: null,
115
+ },
116
+ {
117
+ id: 3041,
118
+ is_active: true,
119
+ is_archive: false,
120
+ last_modified_by: 'dshah',
121
+ last_modified_on: 1733984032084,
122
+ value: 'Canara Bank',
123
+ field_key: 'PBI_BANK_NAME',
124
+ file_size: 0,
125
+ multimedia_type: null,
126
+ code: null,
127
+ Date: null,
128
+ column2: null,
129
+ column3: null,
130
+ column4: null,
131
+ column5: null,
132
+ column6: null,
133
+ column7: null,
134
+ column8: null,
135
+ column9: null,
136
+ column10: null,
137
+ list_order: null,
138
+ additional_detail: null,
139
+ constant: null,
140
+ },
141
+ {
142
+ id: 3042,
143
+ is_active: true,
144
+ is_archive: false,
145
+ last_modified_by: 'dshah',
146
+ last_modified_on: 1733984032084,
147
+ value: 'Central Bank of India',
148
+ field_key: 'PBI_BANK_NAME',
149
+ file_size: 0,
150
+ multimedia_type: null,
151
+ code: null,
152
+ Date: null,
153
+ column2: null,
154
+ column3: null,
155
+ column4: null,
156
+ column5: null,
157
+ column6: null,
158
+ column7: null,
159
+ column8: null,
160
+ column9: null,
161
+ column10: null,
162
+ list_order: null,
163
+ additional_detail: null,
164
+ constant: null,
165
+ },
166
+ {
167
+ id: 3043,
168
+ is_active: true,
169
+ is_archive: false,
170
+ last_modified_by: 'dshah',
171
+ last_modified_on: 1733984032084,
172
+ value: 'Indian Bank',
173
+ field_key: 'PBI_BANK_NAME',
174
+ file_size: 0,
175
+ multimedia_type: null,
176
+ code: null,
177
+ Date: null,
178
+ column2: null,
179
+ column3: null,
180
+ column4: null,
181
+ column5: null,
182
+ column6: null,
183
+ column7: null,
184
+ column8: null,
185
+ column9: null,
186
+ column10: null,
187
+ list_order: null,
188
+ additional_detail: null,
189
+ constant: null,
190
+ },
191
+ {
192
+ id: 3044,
193
+ is_active: true,
194
+ is_archive: false,
195
+ last_modified_by: 'dshah',
196
+ last_modified_on: 1733984032084,
197
+ value: 'Indian Overseas Bank',
198
+ field_key: 'PBI_BANK_NAME',
199
+ file_size: 0,
200
+ multimedia_type: null,
201
+ code: null,
202
+ Date: null,
203
+ column2: null,
204
+ column3: null,
205
+ column4: null,
206
+ column5: null,
207
+ column6: null,
208
+ column7: null,
209
+ column8: null,
210
+ column9: null,
211
+ column10: null,
212
+ list_order: null,
213
+ additional_detail: null,
214
+ constant: null,
215
+ },
216
+ {
217
+ id: 3045,
218
+ is_active: true,
219
+ is_archive: false,
220
+ last_modified_by: 'dshah',
221
+ last_modified_on: 1733984032084,
222
+ value: 'Punjab & Sind Bank',
223
+ field_key: 'PBI_BANK_NAME',
224
+ file_size: 0,
225
+ multimedia_type: null,
226
+ code: null,
227
+ Date: null,
228
+ column2: null,
229
+ column3: null,
230
+ column4: null,
231
+ column5: null,
232
+ column6: null,
233
+ column7: null,
234
+ column8: null,
235
+ column9: null,
236
+ column10: null,
237
+ list_order: null,
238
+ additional_detail: null,
239
+ constant: null,
240
+ },
241
+ {
242
+ id: 3046,
243
+ is_active: true,
244
+ is_archive: false,
245
+ last_modified_by: 'dshah',
246
+ last_modified_on: 1733984032084,
247
+ value: 'Punjab National Bank',
248
+ field_key: 'PBI_BANK_NAME',
249
+ file_size: 0,
250
+ multimedia_type: null,
251
+ code: null,
252
+ Date: null,
253
+ column2: null,
254
+ column3: null,
255
+ column4: null,
256
+ column5: null,
257
+ column6: null,
258
+ column7: null,
259
+ column8: null,
260
+ column9: null,
261
+ column10: null,
262
+ list_order: null,
263
+ additional_detail: null,
264
+ constant: null,
265
+ },
266
+ {
267
+ id: 3047,
268
+ is_active: true,
269
+ is_archive: false,
270
+ last_modified_by: 'dshah',
271
+ last_modified_on: 1733984032084,
272
+ value: 'State Bank of India',
273
+ field_key: 'PBI_BANK_NAME',
274
+ file_size: 0,
275
+ multimedia_type: null,
276
+ code: null,
277
+ Date: null,
278
+ column2: null,
279
+ column3: null,
280
+ column4: null,
281
+ column5: null,
282
+ column6: null,
283
+ column7: null,
284
+ column8: null,
285
+ column9: null,
286
+ column10: null,
287
+ list_order: null,
288
+ additional_detail: null,
289
+ constant: null,
290
+ },
291
+ {
292
+ id: 3048,
293
+ is_active: true,
294
+ is_archive: false,
295
+ last_modified_by: 'dshah',
296
+ last_modified_on: 1733984032084,
297
+ value: 'UCO Bank',
298
+ field_key: 'PBI_BANK_NAME',
299
+ file_size: 0,
300
+ multimedia_type: null,
301
+ code: null,
302
+ Date: null,
303
+ column2: null,
304
+ column3: null,
305
+ column4: null,
306
+ column5: null,
307
+ column6: null,
308
+ column7: null,
309
+ column8: null,
310
+ column9: null,
311
+ column10: null,
312
+ list_order: null,
313
+ additional_detail: null,
314
+ constant: null,
315
+ },
316
+ {
317
+ id: 3049,
318
+ is_active: true,
319
+ is_archive: false,
320
+ last_modified_by: 'dshah',
321
+ last_modified_on: 1733984032084,
322
+ value: 'Union Bank of India',
323
+ field_key: 'PBI_BANK_NAME',
324
+ file_size: 0,
325
+ multimedia_type: null,
326
+ code: null,
327
+ Date: null,
328
+ column2: null,
329
+ column3: null,
330
+ column4: null,
331
+ column5: null,
332
+ column6: null,
333
+ column7: null,
334
+ column8: null,
335
+ column9: null,
336
+ column10: null,
337
+ list_order: null,
338
+ additional_detail: null,
339
+ constant: null,
340
+ },
341
+ {
342
+ id: 3050,
343
+ is_active: true,
344
+ is_archive: false,
345
+ last_modified_by: 'dshah',
346
+ last_modified_on: 1733984032084,
347
+ value: 'Axis Bank Ltd.',
348
+ field_key: 'PBI_BANK_NAME',
349
+ file_size: 0,
350
+ multimedia_type: null,
351
+ code: null,
352
+ Date: null,
353
+ column2: null,
354
+ column3: null,
355
+ column4: null,
356
+ column5: null,
357
+ column6: null,
358
+ column7: null,
359
+ column8: null,
360
+ column9: null,
361
+ column10: null,
362
+ list_order: null,
363
+ additional_detail: null,
364
+ constant: null,
365
+ },
366
+ {
367
+ id: 3051,
368
+ is_active: true,
369
+ is_archive: false,
370
+ last_modified_by: 'dshah',
371
+ last_modified_on: 1733984032084,
372
+ value: 'Bandhan Bank Ltd.',
373
+ field_key: 'PBI_BANK_NAME',
374
+ file_size: 0,
375
+ multimedia_type: null,
376
+ code: null,
377
+ Date: null,
378
+ column2: null,
379
+ column3: null,
380
+ column4: null,
381
+ column5: null,
382
+ column6: null,
383
+ column7: null,
384
+ column8: null,
385
+ column9: null,
386
+ column10: null,
387
+ list_order: null,
388
+ additional_detail: null,
389
+ constant: null,
390
+ },
391
+ {
392
+ id: 3052,
393
+ is_active: true,
394
+ is_archive: false,
395
+ last_modified_by: 'dshah',
396
+ last_modified_on: 1733984032084,
397
+ value: 'CSB Bank Ltd.',
398
+ field_key: 'PBI_BANK_NAME',
399
+ file_size: 0,
400
+ multimedia_type: null,
401
+ code: null,
402
+ Date: null,
403
+ column2: null,
404
+ column3: null,
405
+ column4: null,
406
+ column5: null,
407
+ column6: null,
408
+ column7: null,
409
+ column8: null,
410
+ column9: null,
411
+ column10: null,
412
+ list_order: null,
413
+ additional_detail: null,
414
+ constant: null,
415
+ },
416
+ {
417
+ id: 3053,
418
+ is_active: true,
419
+ is_archive: false,
420
+ last_modified_by: 'dshah',
421
+ last_modified_on: 1733984032084,
422
+ value: 'City Union Bank Ltd.',
423
+ field_key: 'PBI_BANK_NAME',
424
+ file_size: 0,
425
+ multimedia_type: null,
426
+ code: null,
427
+ Date: null,
428
+ column2: null,
429
+ column3: null,
430
+ column4: null,
431
+ column5: null,
432
+ column6: null,
433
+ column7: null,
434
+ column8: null,
435
+ column9: null,
436
+ column10: null,
437
+ list_order: null,
438
+ additional_detail: null,
439
+ constant: null,
440
+ },
441
+ {
442
+ id: 3054,
443
+ is_active: true,
444
+ is_archive: false,
445
+ last_modified_by: 'dshah',
446
+ last_modified_on: 1733984032084,
447
+ value: 'DCB Bank Ltd.',
448
+ field_key: 'PBI_BANK_NAME',
449
+ file_size: 0,
450
+ multimedia_type: null,
451
+ code: null,
452
+ Date: null,
453
+ column2: null,
454
+ column3: null,
455
+ column4: null,
456
+ column5: null,
457
+ column6: null,
458
+ column7: null,
459
+ column8: null,
460
+ column9: null,
461
+ column10: null,
462
+ list_order: null,
463
+ additional_detail: null,
464
+ constant: null,
465
+ },
466
+ {
467
+ id: 3055,
468
+ is_active: true,
469
+ is_archive: false,
470
+ last_modified_by: 'dshah',
471
+ last_modified_on: 1733984032084,
472
+ value: 'Dhanlaxmi Bank Ltd.',
473
+ field_key: 'PBI_BANK_NAME',
474
+ file_size: 0,
475
+ multimedia_type: null,
476
+ code: null,
477
+ Date: null,
478
+ column2: null,
479
+ column3: null,
480
+ column4: null,
481
+ column5: null,
482
+ column6: null,
483
+ column7: null,
484
+ column8: null,
485
+ column9: null,
486
+ column10: null,
487
+ list_order: null,
488
+ additional_detail: null,
489
+ constant: null,
490
+ },
491
+ {
492
+ id: 3056,
493
+ is_active: true,
494
+ is_archive: false,
495
+ last_modified_by: 'dshah',
496
+ last_modified_on: 1733984032084,
497
+ value: 'Federal Bank Ltd.',
498
+ field_key: 'PBI_BANK_NAME',
499
+ file_size: 0,
500
+ multimedia_type: null,
501
+ code: null,
502
+ Date: null,
503
+ column2: null,
504
+ column3: null,
505
+ column4: null,
506
+ column5: null,
507
+ column6: null,
508
+ column7: null,
509
+ column8: null,
510
+ column9: null,
511
+ column10: null,
512
+ list_order: null,
513
+ additional_detail: null,
514
+ constant: null,
515
+ },
516
+ {
517
+ id: 3057,
518
+ is_active: true,
519
+ is_archive: false,
520
+ last_modified_by: 'dshah',
521
+ last_modified_on: 1733984032084,
522
+ value: 'HDFC Bank Ltd',
523
+ field_key: 'PBI_BANK_NAME',
524
+ file_size: 0,
525
+ multimedia_type: null,
526
+ code: null,
527
+ Date: null,
528
+ column2: null,
529
+ column3: null,
530
+ column4: null,
531
+ column5: null,
532
+ column6: null,
533
+ column7: null,
534
+ column8: null,
535
+ column9: null,
536
+ column10: null,
537
+ list_order: null,
538
+ additional_detail: null,
539
+ constant: null,
540
+ },
541
+ {
542
+ id: 3058,
543
+ is_active: true,
544
+ is_archive: false,
545
+ last_modified_by: 'dshah',
546
+ last_modified_on: 1733984032084,
547
+ value: 'ICICI Bank Ltd.',
548
+ field_key: 'PBI_BANK_NAME',
549
+ file_size: 0,
550
+ multimedia_type: null,
551
+ code: null,
552
+ Date: null,
553
+ column2: null,
554
+ column3: null,
555
+ column4: null,
556
+ column5: null,
557
+ column6: null,
558
+ column7: null,
559
+ column8: null,
560
+ column9: null,
561
+ column10: null,
562
+ list_order: null,
563
+ additional_detail: null,
564
+ constant: null,
565
+ },
566
+ {
567
+ id: 3059,
568
+ is_active: true,
569
+ is_archive: false,
570
+ last_modified_by: 'dshah',
571
+ last_modified_on: 1733984032084,
572
+ value: 'Induslnd Bank Ltd',
573
+ field_key: 'PBI_BANK_NAME',
574
+ file_size: 0,
575
+ multimedia_type: null,
576
+ code: null,
577
+ Date: null,
578
+ column2: null,
579
+ column3: null,
580
+ column4: null,
581
+ column5: null,
582
+ column6: null,
583
+ column7: null,
584
+ column8: null,
585
+ column9: null,
586
+ column10: null,
587
+ list_order: null,
588
+ additional_detail: null,
589
+ constant: null,
590
+ },
591
+ {
592
+ id: 3060,
593
+ is_active: true,
594
+ is_archive: false,
595
+ last_modified_by: 'dshah',
596
+ last_modified_on: 1733984032084,
597
+ value: 'IDFC First Bank Ltd.',
598
+ field_key: 'PBI_BANK_NAME',
599
+ file_size: 0,
600
+ multimedia_type: null,
601
+ code: null,
602
+ Date: null,
603
+ column2: null,
604
+ column3: null,
605
+ column4: null,
606
+ column5: null,
607
+ column6: null,
608
+ column7: null,
609
+ column8: null,
610
+ column9: null,
611
+ column10: null,
612
+ list_order: null,
613
+ additional_detail: null,
614
+ constant: null,
615
+ },
616
+ {
617
+ id: 3061,
618
+ is_active: true,
619
+ is_archive: false,
620
+ last_modified_by: 'dshah',
621
+ last_modified_on: 1733984032084,
622
+ value: 'Jammu & Kashmir Bank Ltd.',
623
+ field_key: 'PBI_BANK_NAME',
624
+ file_size: 0,
625
+ multimedia_type: null,
626
+ code: null,
627
+ Date: null,
628
+ column2: null,
629
+ column3: null,
630
+ column4: null,
631
+ column5: null,
632
+ column6: null,
633
+ column7: null,
634
+ column8: null,
635
+ column9: null,
636
+ column10: null,
637
+ list_order: null,
638
+ additional_detail: null,
639
+ constant: null,
640
+ },
641
+ {
642
+ id: 3062,
643
+ is_active: true,
644
+ is_archive: false,
645
+ last_modified_by: 'dshah',
646
+ last_modified_on: 1733984032084,
647
+ value: 'Karnataka Bank Ltd.',
648
+ field_key: 'PBI_BANK_NAME',
649
+ file_size: 0,
650
+ multimedia_type: null,
651
+ code: null,
652
+ Date: null,
653
+ column2: null,
654
+ column3: null,
655
+ column4: null,
656
+ column5: null,
657
+ column6: null,
658
+ column7: null,
659
+ column8: null,
660
+ column9: null,
661
+ column10: null,
662
+ list_order: null,
663
+ additional_detail: null,
664
+ constant: null,
665
+ },
666
+ {
667
+ id: 3063,
668
+ is_active: true,
669
+ is_archive: false,
670
+ last_modified_by: 'dshah',
671
+ last_modified_on: 1733984032084,
672
+ value: 'Karur Vysya Bank Ltd.',
673
+ field_key: 'PBI_BANK_NAME',
674
+ file_size: 0,
675
+ multimedia_type: null,
676
+ code: null,
677
+ Date: null,
678
+ column2: null,
679
+ column3: null,
680
+ column4: null,
681
+ column5: null,
682
+ column6: null,
683
+ column7: null,
684
+ column8: null,
685
+ column9: null,
686
+ column10: null,
687
+ list_order: null,
688
+ additional_detail: null,
689
+ constant: null,
690
+ },
691
+ {
692
+ id: 3064,
693
+ is_active: true,
694
+ is_archive: false,
695
+ last_modified_by: 'dshah',
696
+ last_modified_on: 1733984032084,
697
+ value: 'Kotak Mahindra Bank Ltd',
698
+ field_key: 'PBI_BANK_NAME',
699
+ file_size: 0,
700
+ multimedia_type: null,
701
+ code: null,
702
+ Date: null,
703
+ column2: null,
704
+ column3: null,
705
+ column4: null,
706
+ column5: null,
707
+ column6: null,
708
+ column7: null,
709
+ column8: null,
710
+ column9: null,
711
+ column10: null,
712
+ list_order: null,
713
+ additional_detail: null,
714
+ constant: null,
715
+ },
716
+ {
717
+ id: 3065,
718
+ is_active: true,
719
+ is_archive: false,
720
+ last_modified_by: 'dshah',
721
+ last_modified_on: 1733984032084,
722
+ value: 'Nainital Bank Ltd.',
723
+ field_key: 'PBI_BANK_NAME',
724
+ file_size: 0,
725
+ multimedia_type: null,
726
+ code: null,
727
+ Date: null,
728
+ column2: null,
729
+ column3: null,
730
+ column4: null,
731
+ column5: null,
732
+ column6: null,
733
+ column7: null,
734
+ column8: null,
735
+ column9: null,
736
+ column10: null,
737
+ list_order: null,
738
+ additional_detail: null,
739
+ constant: null,
740
+ },
741
+ {
742
+ id: 3066,
743
+ is_active: true,
744
+ is_archive: false,
745
+ last_modified_by: 'dshah',
746
+ last_modified_on: 1733984032084,
747
+ value: 'RBL Bank Ltd.',
748
+ field_key: 'PBI_BANK_NAME',
749
+ file_size: 0,
750
+ multimedia_type: null,
751
+ code: null,
752
+ Date: null,
753
+ column2: null,
754
+ column3: null,
755
+ column4: null,
756
+ column5: null,
757
+ column6: null,
758
+ column7: null,
759
+ column8: null,
760
+ column9: null,
761
+ column10: null,
762
+ list_order: null,
763
+ additional_detail: null,
764
+ constant: null,
765
+ },
766
+ {
767
+ id: 3067,
768
+ is_active: true,
769
+ is_archive: false,
770
+ last_modified_by: 'dshah',
771
+ last_modified_on: 1733984032084,
772
+ value: 'South Indian Bank Ltd.',
773
+ field_key: 'PBI_BANK_NAME',
774
+ file_size: 0,
775
+ multimedia_type: null,
776
+ code: null,
777
+ Date: null,
778
+ column2: null,
779
+ column3: null,
780
+ column4: null,
781
+ column5: null,
782
+ column6: null,
783
+ column7: null,
784
+ column8: null,
785
+ column9: null,
786
+ column10: null,
787
+ list_order: null,
788
+ additional_detail: null,
789
+ constant: null,
790
+ },
791
+ {
792
+ id: 3068,
793
+ is_active: true,
794
+ is_archive: false,
795
+ last_modified_by: 'dshah',
796
+ last_modified_on: 1733984032084,
797
+ value: 'Tamilnad Mercantile Bank Ltd.',
798
+ field_key: 'PBI_BANK_NAME',
799
+ file_size: 0,
800
+ multimedia_type: null,
801
+ code: null,
802
+ Date: null,
803
+ column2: null,
804
+ column3: null,
805
+ column4: null,
806
+ column5: null,
807
+ column6: null,
808
+ column7: null,
809
+ column8: null,
810
+ column9: null,
811
+ column10: null,
812
+ list_order: null,
813
+ additional_detail: null,
814
+ constant: null,
815
+ },
816
+ {
817
+ id: 3069,
818
+ is_active: true,
819
+ is_archive: false,
820
+ last_modified_by: 'dshah',
821
+ last_modified_on: 1733984032084,
822
+ value: 'YES Bank Ltd.',
823
+ field_key: 'PBI_BANK_NAME',
824
+ file_size: 0,
825
+ multimedia_type: null,
826
+ code: null,
827
+ Date: null,
828
+ column2: null,
829
+ column3: null,
830
+ column4: null,
831
+ column5: null,
832
+ column6: null,
833
+ column7: null,
834
+ column8: null,
835
+ column9: null,
836
+ column10: null,
837
+ list_order: null,
838
+ additional_detail: null,
839
+ constant: null,
840
+ },
841
+ {
842
+ id: 3070,
843
+ is_active: true,
844
+ is_archive: false,
845
+ last_modified_by: 'dshah',
846
+ last_modified_on: 1733984032084,
847
+ value: 'IDBI Bank Ltd.',
848
+ field_key: 'PBI_BANK_NAME',
849
+ file_size: 0,
850
+ multimedia_type: null,
851
+ code: null,
852
+ Date: null,
853
+ column2: null,
854
+ column3: null,
855
+ column4: null,
856
+ column5: null,
857
+ column6: null,
858
+ column7: null,
859
+ column8: null,
860
+ column9: null,
861
+ column10: null,
862
+ list_order: null,
863
+ additional_detail: null,
864
+ constant: null,
865
+ },
866
+ {
867
+ id: 3071,
868
+ is_active: true,
869
+ is_archive: false,
870
+ last_modified_by: 'dshah',
871
+ last_modified_on: 1733984032084,
872
+ value: 'Au Small Finance Bank Limited',
873
+ field_key: 'PBI_BANK_NAME',
874
+ file_size: 0,
875
+ multimedia_type: null,
876
+ code: null,
877
+ Date: null,
878
+ column2: null,
879
+ column3: null,
880
+ column4: null,
881
+ column5: null,
882
+ column6: null,
883
+ column7: null,
884
+ column8: null,
885
+ column9: null,
886
+ column10: null,
887
+ list_order: null,
888
+ additional_detail: null,
889
+ constant: null,
890
+ },
891
+ {
892
+ id: 3072,
893
+ is_active: true,
894
+ is_archive: false,
895
+ last_modified_by: 'dshah',
896
+ last_modified_on: 1733984032084,
897
+ value: 'Capital Small Finance Bank Limited',
898
+ field_key: 'PBI_BANK_NAME',
899
+ file_size: 0,
900
+ multimedia_type: null,
901
+ code: null,
902
+ Date: null,
903
+ column2: null,
904
+ column3: null,
905
+ column4: null,
906
+ column5: null,
907
+ column6: null,
908
+ column7: null,
909
+ column8: null,
910
+ column9: null,
911
+ column10: null,
912
+ list_order: null,
913
+ additional_detail: null,
914
+ constant: null,
915
+ },
916
+ {
917
+ id: 3073,
918
+ is_active: true,
919
+ is_archive: false,
920
+ last_modified_by: 'dshah',
921
+ last_modified_on: 1733984032084,
922
+ value: 'Equitas Small Finance Bank Limited',
923
+ field_key: 'PBI_BANK_NAME',
924
+ file_size: 0,
925
+ multimedia_type: null,
926
+ code: null,
927
+ Date: null,
928
+ column2: null,
929
+ column3: null,
930
+ column4: null,
931
+ column5: null,
932
+ column6: null,
933
+ column7: null,
934
+ column8: null,
935
+ column9: null,
936
+ column10: null,
937
+ list_order: null,
938
+ additional_detail: null,
939
+ constant: null,
940
+ },
941
+ {
942
+ id: 3074,
943
+ is_active: true,
944
+ is_archive: false,
945
+ last_modified_by: 'dshah',
946
+ last_modified_on: 1733984032084,
947
+ value: 'Suryoday Small Finance Bank Limited',
948
+ field_key: 'PBI_BANK_NAME',
949
+ file_size: 0,
950
+ multimedia_type: null,
951
+ code: null,
952
+ Date: null,
953
+ column2: null,
954
+ column3: null,
955
+ column4: null,
956
+ column5: null,
957
+ column6: null,
958
+ column7: null,
959
+ column8: null,
960
+ column9: null,
961
+ column10: null,
962
+ list_order: null,
963
+ additional_detail: null,
964
+ constant: null,
965
+ },
966
+ {
967
+ id: 3075,
968
+ is_active: true,
969
+ is_archive: false,
970
+ last_modified_by: 'dshah',
971
+ last_modified_on: 1733984032084,
972
+ value: 'Ujjivan Small Finance Bank Limited',
973
+ field_key: 'PBI_BANK_NAME',
974
+ file_size: 0,
975
+ multimedia_type: null,
976
+ code: null,
977
+ Date: null,
978
+ column2: null,
979
+ column3: null,
980
+ column4: null,
981
+ column5: null,
982
+ column6: null,
983
+ column7: null,
984
+ column8: null,
985
+ column9: null,
986
+ column10: null,
987
+ list_order: null,
988
+ additional_detail: null,
989
+ constant: null,
990
+ },
991
+ {
992
+ id: 3076,
993
+ is_active: true,
994
+ is_archive: false,
995
+ last_modified_by: 'dshah',
996
+ last_modified_on: 1733984032084,
997
+ value: 'Utkarsh Small Finance Bank Limited',
998
+ field_key: 'PBI_BANK_NAME',
999
+ file_size: 0,
1000
+ multimedia_type: null,
1001
+ code: null,
1002
+ Date: null,
1003
+ column2: null,
1004
+ column3: null,
1005
+ column4: null,
1006
+ column5: null,
1007
+ column6: null,
1008
+ column7: null,
1009
+ column8: null,
1010
+ column9: null,
1011
+ column10: null,
1012
+ list_order: null,
1013
+ additional_detail: null,
1014
+ constant: null,
1015
+ },
1016
+ {
1017
+ id: 3077,
1018
+ is_active: true,
1019
+ is_archive: false,
1020
+ last_modified_by: 'dshah',
1021
+ last_modified_on: 1733984032084,
1022
+ value: 'ESAF Small Finance Bank Limited',
1023
+ field_key: 'PBI_BANK_NAME',
1024
+ file_size: 0,
1025
+ multimedia_type: null,
1026
+ code: null,
1027
+ Date: null,
1028
+ column2: null,
1029
+ column3: null,
1030
+ column4: null,
1031
+ column5: null,
1032
+ column6: null,
1033
+ column7: null,
1034
+ column8: null,
1035
+ column9: null,
1036
+ column10: null,
1037
+ list_order: null,
1038
+ additional_detail: null,
1039
+ constant: null,
1040
+ },
1041
+ {
1042
+ id: 3078,
1043
+ is_active: true,
1044
+ is_archive: false,
1045
+ last_modified_by: 'dshah',
1046
+ last_modified_on: 1733984032084,
1047
+ value: 'Fincare Small Finance Bank Limited',
1048
+ field_key: 'PBI_BANK_NAME',
1049
+ file_size: 0,
1050
+ multimedia_type: null,
1051
+ code: null,
1052
+ Date: null,
1053
+ column2: null,
1054
+ column3: null,
1055
+ column4: null,
1056
+ column5: null,
1057
+ column6: null,
1058
+ column7: null,
1059
+ column8: null,
1060
+ column9: null,
1061
+ column10: null,
1062
+ list_order: null,
1063
+ additional_detail: null,
1064
+ constant: null,
1065
+ },
1066
+ {
1067
+ id: 3079,
1068
+ is_active: true,
1069
+ is_archive: false,
1070
+ last_modified_by: 'dshah',
1071
+ last_modified_on: 1733984032084,
1072
+ value: 'Jana Small Finance Bank Limited',
1073
+ field_key: 'PBI_BANK_NAME',
1074
+ file_size: 0,
1075
+ multimedia_type: null,
1076
+ code: null,
1077
+ Date: null,
1078
+ column2: null,
1079
+ column3: null,
1080
+ column4: null,
1081
+ column5: null,
1082
+ column6: null,
1083
+ column7: null,
1084
+ column8: null,
1085
+ column9: null,
1086
+ column10: null,
1087
+ list_order: null,
1088
+ additional_detail: null,
1089
+ constant: null,
1090
+ },
1091
+ {
1092
+ id: 3080,
1093
+ is_active: true,
1094
+ is_archive: false,
1095
+ last_modified_by: 'dshah',
1096
+ last_modified_on: 1733984032084,
1097
+ value: 'North East Small Finance Bank Limited',
1098
+ field_key: 'PBI_BANK_NAME',
1099
+ file_size: 0,
1100
+ multimedia_type: null,
1101
+ code: null,
1102
+ Date: null,
1103
+ column2: null,
1104
+ column3: null,
1105
+ column4: null,
1106
+ column5: null,
1107
+ column6: null,
1108
+ column7: null,
1109
+ column8: null,
1110
+ column9: null,
1111
+ column10: null,
1112
+ list_order: null,
1113
+ additional_detail: null,
1114
+ constant: null,
1115
+ },
1116
+ {
1117
+ id: 3081,
1118
+ is_active: true,
1119
+ is_archive: false,
1120
+ last_modified_by: 'dshah',
1121
+ last_modified_on: 1733984032084,
1122
+ value: 'Shivalik Small Finance Bank Limited',
1123
+ field_key: 'PBI_BANK_NAME',
1124
+ file_size: 0,
1125
+ multimedia_type: null,
1126
+ code: null,
1127
+ Date: null,
1128
+ column2: null,
1129
+ column3: null,
1130
+ column4: null,
1131
+ column5: null,
1132
+ column6: null,
1133
+ column7: null,
1134
+ column8: null,
1135
+ column9: null,
1136
+ column10: null,
1137
+ list_order: null,
1138
+ additional_detail: null,
1139
+ constant: null,
1140
+ },
1141
+ {
1142
+ id: 3082,
1143
+ is_active: true,
1144
+ is_archive: false,
1145
+ last_modified_by: 'dshah',
1146
+ last_modified_on: 1733984032084,
1147
+ value: 'Unity Small Finance Bank Limited',
1148
+ field_key: 'PBI_BANK_NAME',
1149
+ file_size: 0,
1150
+ multimedia_type: null,
1151
+ code: null,
1152
+ Date: null,
1153
+ column2: null,
1154
+ column3: null,
1155
+ column4: null,
1156
+ column5: null,
1157
+ column6: null,
1158
+ column7: null,
1159
+ column8: null,
1160
+ column9: null,
1161
+ column10: null,
1162
+ list_order: null,
1163
+ additional_detail: null,
1164
+ constant: null,
1165
+ },
1166
+ {
1167
+ id: 3083,
1168
+ is_active: true,
1169
+ is_archive: false,
1170
+ last_modified_by: 'dshah',
1171
+ last_modified_on: 1733984032084,
1172
+ value: 'Andhra Pragathi Grameena Bank',
1173
+ field_key: 'PBI_BANK_NAME',
1174
+ file_size: 0,
1175
+ multimedia_type: null,
1176
+ code: null,
1177
+ Date: null,
1178
+ column2: null,
1179
+ column3: null,
1180
+ column4: null,
1181
+ column5: null,
1182
+ column6: null,
1183
+ column7: null,
1184
+ column8: null,
1185
+ column9: null,
1186
+ column10: null,
1187
+ list_order: null,
1188
+ additional_detail: null,
1189
+ constant: null,
1190
+ },
1191
+ {
1192
+ id: 3084,
1193
+ is_active: true,
1194
+ is_archive: false,
1195
+ last_modified_by: 'dshah',
1196
+ last_modified_on: 1733984032084,
1197
+ value: 'Andhra Pradesh Grameena Vikas Bank',
1198
+ field_key: 'PBI_BANK_NAME',
1199
+ file_size: 0,
1200
+ multimedia_type: null,
1201
+ code: null,
1202
+ Date: null,
1203
+ column2: null,
1204
+ column3: null,
1205
+ column4: null,
1206
+ column5: null,
1207
+ column6: null,
1208
+ column7: null,
1209
+ column8: null,
1210
+ column9: null,
1211
+ column10: null,
1212
+ list_order: null,
1213
+ additional_detail: null,
1214
+ constant: null,
1215
+ },
1216
+ {
1217
+ id: 3085,
1218
+ is_active: true,
1219
+ is_archive: false,
1220
+ last_modified_by: 'dshah',
1221
+ last_modified_on: 1733984032084,
1222
+ value: 'Arunachal Pradesh Rural Bank',
1223
+ field_key: 'PBI_BANK_NAME',
1224
+ file_size: 0,
1225
+ multimedia_type: null,
1226
+ code: null,
1227
+ Date: null,
1228
+ column2: null,
1229
+ column3: null,
1230
+ column4: null,
1231
+ column5: null,
1232
+ column6: null,
1233
+ column7: null,
1234
+ column8: null,
1235
+ column9: null,
1236
+ column10: null,
1237
+ list_order: null,
1238
+ additional_detail: null,
1239
+ constant: null,
1240
+ },
1241
+ {
1242
+ id: 3086,
1243
+ is_active: true,
1244
+ is_archive: false,
1245
+ last_modified_by: 'dshah',
1246
+ last_modified_on: 1733984032084,
1247
+ value: 'Aryavart Bank',
1248
+ field_key: 'PBI_BANK_NAME',
1249
+ file_size: 0,
1250
+ multimedia_type: null,
1251
+ code: null,
1252
+ Date: null,
1253
+ column2: null,
1254
+ column3: null,
1255
+ column4: null,
1256
+ column5: null,
1257
+ column6: null,
1258
+ column7: null,
1259
+ column8: null,
1260
+ column9: null,
1261
+ column10: null,
1262
+ list_order: null,
1263
+ additional_detail: null,
1264
+ constant: null,
1265
+ },
1266
+ {
1267
+ id: 3087,
1268
+ is_active: true,
1269
+ is_archive: false,
1270
+ last_modified_by: 'dshah',
1271
+ last_modified_on: 1733984032084,
1272
+ value: 'Assam Gramin Vikash Bank',
1273
+ field_key: 'PBI_BANK_NAME',
1274
+ file_size: 0,
1275
+ multimedia_type: null,
1276
+ code: null,
1277
+ Date: null,
1278
+ column2: null,
1279
+ column3: null,
1280
+ column4: null,
1281
+ column5: null,
1282
+ column6: null,
1283
+ column7: null,
1284
+ column8: null,
1285
+ column9: null,
1286
+ column10: null,
1287
+ list_order: null,
1288
+ additional_detail: null,
1289
+ constant: null,
1290
+ },
1291
+ {
1292
+ id: 3088,
1293
+ is_active: true,
1294
+ is_archive: false,
1295
+ last_modified_by: 'dshah',
1296
+ last_modified_on: 1733984032084,
1297
+ value: 'Bangiya Gramin Vikas Bank',
1298
+ field_key: 'PBI_BANK_NAME',
1299
+ file_size: 0,
1300
+ multimedia_type: null,
1301
+ code: null,
1302
+ Date: null,
1303
+ column2: null,
1304
+ column3: null,
1305
+ column4: null,
1306
+ column5: null,
1307
+ column6: null,
1308
+ column7: null,
1309
+ column8: null,
1310
+ column9: null,
1311
+ column10: null,
1312
+ list_order: null,
1313
+ additional_detail: null,
1314
+ constant: null,
1315
+ },
1316
+ {
1317
+ id: 3089,
1318
+ is_active: true,
1319
+ is_archive: false,
1320
+ last_modified_by: 'dshah',
1321
+ last_modified_on: 1733984032084,
1322
+ value: 'Baroda Gujarat Gramin Bank',
1323
+ field_key: 'PBI_BANK_NAME',
1324
+ file_size: 0,
1325
+ multimedia_type: null,
1326
+ code: null,
1327
+ Date: null,
1328
+ column2: null,
1329
+ column3: null,
1330
+ column4: null,
1331
+ column5: null,
1332
+ column6: null,
1333
+ column7: null,
1334
+ column8: null,
1335
+ column9: null,
1336
+ column10: null,
1337
+ list_order: null,
1338
+ additional_detail: null,
1339
+ constant: null,
1340
+ },
1341
+ {
1342
+ id: 3090,
1343
+ is_active: true,
1344
+ is_archive: false,
1345
+ last_modified_by: 'dshah',
1346
+ last_modified_on: 1733984032084,
1347
+ value: 'Baroda Rajasthan Kshetriya Gramin Bank',
1348
+ field_key: 'PBI_BANK_NAME',
1349
+ file_size: 0,
1350
+ multimedia_type: null,
1351
+ code: null,
1352
+ Date: null,
1353
+ column2: null,
1354
+ column3: null,
1355
+ column4: null,
1356
+ column5: null,
1357
+ column6: null,
1358
+ column7: null,
1359
+ column8: null,
1360
+ column9: null,
1361
+ column10: null,
1362
+ list_order: null,
1363
+ additional_detail: null,
1364
+ constant: null,
1365
+ },
1366
+ {
1367
+ id: 3091,
1368
+ is_active: true,
1369
+ is_archive: false,
1370
+ last_modified_by: 'dshah',
1371
+ last_modified_on: 1733984032084,
1372
+ value: 'Baroda UP Bank',
1373
+ field_key: 'PBI_BANK_NAME',
1374
+ file_size: 0,
1375
+ multimedia_type: null,
1376
+ code: null,
1377
+ Date: null,
1378
+ column2: null,
1379
+ column3: null,
1380
+ column4: null,
1381
+ column5: null,
1382
+ column6: null,
1383
+ column7: null,
1384
+ column8: null,
1385
+ column9: null,
1386
+ column10: null,
1387
+ list_order: null,
1388
+ additional_detail: null,
1389
+ constant: null,
1390
+ },
1391
+ {
1392
+ id: 3092,
1393
+ is_active: true,
1394
+ is_archive: false,
1395
+ last_modified_by: 'dshah',
1396
+ last_modified_on: 1733984032084,
1397
+ value: 'Chaitanya Godavari Grameena Bank',
1398
+ field_key: 'PBI_BANK_NAME',
1399
+ file_size: 0,
1400
+ multimedia_type: null,
1401
+ code: null,
1402
+ Date: null,
1403
+ column2: null,
1404
+ column3: null,
1405
+ column4: null,
1406
+ column5: null,
1407
+ column6: null,
1408
+ column7: null,
1409
+ column8: null,
1410
+ column9: null,
1411
+ column10: null,
1412
+ list_order: null,
1413
+ additional_detail: null,
1414
+ constant: null,
1415
+ },
1416
+ {
1417
+ id: 3093,
1418
+ is_active: true,
1419
+ is_archive: false,
1420
+ last_modified_by: 'dshah',
1421
+ last_modified_on: 1733984032084,
1422
+ value: 'Chhattisgarh Rajya Gramin Bank',
1423
+ field_key: 'PBI_BANK_NAME',
1424
+ file_size: 0,
1425
+ multimedia_type: null,
1426
+ code: null,
1427
+ Date: null,
1428
+ column2: null,
1429
+ column3: null,
1430
+ column4: null,
1431
+ column5: null,
1432
+ column6: null,
1433
+ column7: null,
1434
+ column8: null,
1435
+ column9: null,
1436
+ column10: null,
1437
+ list_order: null,
1438
+ additional_detail: null,
1439
+ constant: null,
1440
+ },
1441
+ {
1442
+ id: 3094,
1443
+ is_active: true,
1444
+ is_archive: false,
1445
+ last_modified_by: 'dshah',
1446
+ last_modified_on: 1733984032084,
1447
+ value: 'Dakshin Bihar Gramin Bank',
1448
+ field_key: 'PBI_BANK_NAME',
1449
+ file_size: 0,
1450
+ multimedia_type: null,
1451
+ code: null,
1452
+ Date: null,
1453
+ column2: null,
1454
+ column3: null,
1455
+ column4: null,
1456
+ column5: null,
1457
+ column6: null,
1458
+ column7: null,
1459
+ column8: null,
1460
+ column9: null,
1461
+ column10: null,
1462
+ list_order: null,
1463
+ additional_detail: null,
1464
+ constant: null,
1465
+ },
1466
+ {
1467
+ id: 3095,
1468
+ is_active: true,
1469
+ is_archive: false,
1470
+ last_modified_by: 'dshah',
1471
+ last_modified_on: 1733984032084,
1472
+ value: 'Ellaquai Dehati Bank',
1473
+ field_key: 'PBI_BANK_NAME',
1474
+ file_size: 0,
1475
+ multimedia_type: null,
1476
+ code: null,
1477
+ Date: null,
1478
+ column2: null,
1479
+ column3: null,
1480
+ column4: null,
1481
+ column5: null,
1482
+ column6: null,
1483
+ column7: null,
1484
+ column8: null,
1485
+ column9: null,
1486
+ column10: null,
1487
+ list_order: null,
1488
+ additional_detail: null,
1489
+ constant: null,
1490
+ },
1491
+ {
1492
+ id: 3096,
1493
+ is_active: true,
1494
+ is_archive: false,
1495
+ last_modified_by: 'dshah',
1496
+ last_modified_on: 1733984032084,
1497
+ value: 'Himachal Pradesh Gramin Bank',
1498
+ field_key: 'PBI_BANK_NAME',
1499
+ file_size: 0,
1500
+ multimedia_type: null,
1501
+ code: null,
1502
+ Date: null,
1503
+ column2: null,
1504
+ column3: null,
1505
+ column4: null,
1506
+ column5: null,
1507
+ column6: null,
1508
+ column7: null,
1509
+ column8: null,
1510
+ column9: null,
1511
+ column10: null,
1512
+ list_order: null,
1513
+ additional_detail: null,
1514
+ constant: null,
1515
+ },
1516
+ {
1517
+ id: 3097,
1518
+ is_active: true,
1519
+ is_archive: false,
1520
+ last_modified_by: 'dshah',
1521
+ last_modified_on: 1733984032084,
1522
+ value: 'J&K Grameen Bank',
1523
+ field_key: 'PBI_BANK_NAME',
1524
+ file_size: 0,
1525
+ multimedia_type: null,
1526
+ code: null,
1527
+ Date: null,
1528
+ column2: null,
1529
+ column3: null,
1530
+ column4: null,
1531
+ column5: null,
1532
+ column6: null,
1533
+ column7: null,
1534
+ column8: null,
1535
+ column9: null,
1536
+ column10: null,
1537
+ list_order: null,
1538
+ additional_detail: null,
1539
+ constant: null,
1540
+ },
1541
+ {
1542
+ id: 3098,
1543
+ is_active: true,
1544
+ is_archive: false,
1545
+ last_modified_by: 'dshah',
1546
+ last_modified_on: 1733984032084,
1547
+ value: 'Kerala Gramin Bank',
1548
+ field_key: 'PBI_BANK_NAME',
1549
+ file_size: 0,
1550
+ multimedia_type: null,
1551
+ code: null,
1552
+ Date: null,
1553
+ column2: null,
1554
+ column3: null,
1555
+ column4: null,
1556
+ column5: null,
1557
+ column6: null,
1558
+ column7: null,
1559
+ column8: null,
1560
+ column9: null,
1561
+ column10: null,
1562
+ list_order: null,
1563
+ additional_detail: null,
1564
+ constant: null,
1565
+ },
1566
+ {
1567
+ id: 3099,
1568
+ is_active: true,
1569
+ is_archive: false,
1570
+ last_modified_by: 'dshah',
1571
+ last_modified_on: 1733984032084,
1572
+ value: 'Madhya Pradesh Gramin Bank',
1573
+ field_key: 'PBI_BANK_NAME',
1574
+ file_size: 0,
1575
+ multimedia_type: null,
1576
+ code: null,
1577
+ Date: null,
1578
+ column2: null,
1579
+ column3: null,
1580
+ column4: null,
1581
+ column5: null,
1582
+ column6: null,
1583
+ column7: null,
1584
+ column8: null,
1585
+ column9: null,
1586
+ column10: null,
1587
+ list_order: null,
1588
+ additional_detail: null,
1589
+ constant: null,
1590
+ },
1591
+ {
1592
+ id: 3100,
1593
+ is_active: true,
1594
+ is_archive: false,
1595
+ last_modified_by: 'dshah',
1596
+ last_modified_on: 1733984032084,
1597
+ value: 'Madhyanchal Gramin Bank',
1598
+ field_key: 'PBI_BANK_NAME',
1599
+ file_size: 0,
1600
+ multimedia_type: null,
1601
+ code: null,
1602
+ Date: null,
1603
+ column2: null,
1604
+ column3: null,
1605
+ column4: null,
1606
+ column5: null,
1607
+ column6: null,
1608
+ column7: null,
1609
+ column8: null,
1610
+ column9: null,
1611
+ column10: null,
1612
+ list_order: null,
1613
+ additional_detail: null,
1614
+ constant: null,
1615
+ },
1616
+ {
1617
+ id: 3101,
1618
+ is_active: true,
1619
+ is_archive: false,
1620
+ last_modified_by: 'dshah',
1621
+ last_modified_on: 1733984032084,
1622
+ value: 'Paschim Banga Gramin Bank',
1623
+ field_key: 'PBI_BANK_NAME',
1624
+ file_size: 0,
1625
+ multimedia_type: null,
1626
+ code: null,
1627
+ Date: null,
1628
+ column2: null,
1629
+ column3: null,
1630
+ column4: null,
1631
+ column5: null,
1632
+ column6: null,
1633
+ column7: null,
1634
+ column8: null,
1635
+ column9: null,
1636
+ column10: null,
1637
+ list_order: null,
1638
+ additional_detail: null,
1639
+ constant: null,
1640
+ },
1641
+ {
1642
+ id: 3102,
1643
+ is_active: true,
1644
+ is_archive: false,
1645
+ last_modified_by: 'dshah',
1646
+ last_modified_on: 1733984032084,
1647
+ value: 'Prathama UP Gramin Bank',
1648
+ field_key: 'PBI_BANK_NAME',
1649
+ file_size: 0,
1650
+ multimedia_type: null,
1651
+ code: null,
1652
+ Date: null,
1653
+ column2: null,
1654
+ column3: null,
1655
+ column4: null,
1656
+ column5: null,
1657
+ column6: null,
1658
+ column7: null,
1659
+ column8: null,
1660
+ column9: null,
1661
+ column10: null,
1662
+ list_order: null,
1663
+ additional_detail: null,
1664
+ constant: null,
1665
+ },
1666
+ {
1667
+ id: 3103,
1668
+ is_active: true,
1669
+ is_archive: false,
1670
+ last_modified_by: 'dshah',
1671
+ last_modified_on: 1733984032084,
1672
+ value: 'Puduvai Bharathiar Grama Bank',
1673
+ field_key: 'PBI_BANK_NAME',
1674
+ file_size: 0,
1675
+ multimedia_type: null,
1676
+ code: null,
1677
+ Date: null,
1678
+ column2: null,
1679
+ column3: null,
1680
+ column4: null,
1681
+ column5: null,
1682
+ column6: null,
1683
+ column7: null,
1684
+ column8: null,
1685
+ column9: null,
1686
+ column10: null,
1687
+ list_order: null,
1688
+ additional_detail: null,
1689
+ constant: null,
1690
+ },
1691
+ {
1692
+ id: 3104,
1693
+ is_active: true,
1694
+ is_archive: false,
1695
+ last_modified_by: 'dshah',
1696
+ last_modified_on: 1733984032084,
1697
+ value: 'Punjab Gramin Bank',
1698
+ field_key: 'PBI_BANK_NAME',
1699
+ file_size: 0,
1700
+ multimedia_type: null,
1701
+ code: null,
1702
+ Date: null,
1703
+ column2: null,
1704
+ column3: null,
1705
+ column4: null,
1706
+ column5: null,
1707
+ column6: null,
1708
+ column7: null,
1709
+ column8: null,
1710
+ column9: null,
1711
+ column10: null,
1712
+ list_order: null,
1713
+ additional_detail: null,
1714
+ constant: null,
1715
+ },
1716
+ {
1717
+ id: 3105,
1718
+ is_active: true,
1719
+ is_archive: false,
1720
+ last_modified_by: 'dshah',
1721
+ last_modified_on: 1733984032084,
1722
+ value: 'Rajasthan Marudhara Gramin Bank',
1723
+ field_key: 'PBI_BANK_NAME',
1724
+ file_size: 0,
1725
+ multimedia_type: null,
1726
+ code: null,
1727
+ Date: null,
1728
+ column2: null,
1729
+ column3: null,
1730
+ column4: null,
1731
+ column5: null,
1732
+ column6: null,
1733
+ column7: null,
1734
+ column8: null,
1735
+ column9: null,
1736
+ column10: null,
1737
+ list_order: null,
1738
+ additional_detail: null,
1739
+ constant: null,
1740
+ },
1741
+ {
1742
+ id: 3106,
1743
+ is_active: true,
1744
+ is_archive: false,
1745
+ last_modified_by: 'dshah',
1746
+ last_modified_on: 1733984032084,
1747
+ value: 'Saptagiri Grameena Bank',
1748
+ field_key: 'PBI_BANK_NAME',
1749
+ file_size: 0,
1750
+ multimedia_type: null,
1751
+ code: null,
1752
+ Date: null,
1753
+ column2: null,
1754
+ column3: null,
1755
+ column4: null,
1756
+ column5: null,
1757
+ column6: null,
1758
+ column7: null,
1759
+ column8: null,
1760
+ column9: null,
1761
+ column10: null,
1762
+ list_order: null,
1763
+ additional_detail: null,
1764
+ constant: null,
1765
+ },
1766
+ {
1767
+ id: 3107,
1768
+ is_active: true,
1769
+ is_archive: false,
1770
+ last_modified_by: 'dshah',
1771
+ last_modified_on: 1733984032084,
1772
+ value: 'Sarva Haryana Gramin Bank',
1773
+ field_key: 'PBI_BANK_NAME',
1774
+ file_size: 0,
1775
+ multimedia_type: null,
1776
+ code: null,
1777
+ Date: null,
1778
+ column2: null,
1779
+ column3: null,
1780
+ column4: null,
1781
+ column5: null,
1782
+ column6: null,
1783
+ column7: null,
1784
+ column8: null,
1785
+ column9: null,
1786
+ column10: null,
1787
+ list_order: null,
1788
+ additional_detail: null,
1789
+ constant: null,
1790
+ },
1791
+ {
1792
+ id: 3108,
1793
+ is_active: true,
1794
+ is_archive: false,
1795
+ last_modified_by: 'dshah',
1796
+ last_modified_on: 1733984032084,
1797
+ value: 'Saurashtra Gramin Bank',
1798
+ field_key: 'PBI_BANK_NAME',
1799
+ file_size: 0,
1800
+ multimedia_type: null,
1801
+ code: null,
1802
+ Date: null,
1803
+ column2: null,
1804
+ column3: null,
1805
+ column4: null,
1806
+ column5: null,
1807
+ column6: null,
1808
+ column7: null,
1809
+ column8: null,
1810
+ column9: null,
1811
+ column10: null,
1812
+ list_order: null,
1813
+ additional_detail: null,
1814
+ constant: null,
1815
+ },
1816
+ {
1817
+ id: 3109,
1818
+ is_active: true,
1819
+ is_archive: false,
1820
+ last_modified_by: 'dshah',
1821
+ last_modified_on: 1733984032084,
1822
+ value: 'Utkal Grameen bank',
1823
+ field_key: 'PBI_BANK_NAME',
1824
+ file_size: 0,
1825
+ multimedia_type: null,
1826
+ code: null,
1827
+ Date: null,
1828
+ column2: null,
1829
+ column3: null,
1830
+ column4: null,
1831
+ column5: null,
1832
+ column6: null,
1833
+ column7: null,
1834
+ column8: null,
1835
+ column9: null,
1836
+ column10: null,
1837
+ list_order: null,
1838
+ additional_detail: null,
1839
+ constant: null,
1840
+ },
1841
+ {
1842
+ id: 3110,
1843
+ is_active: true,
1844
+ is_archive: false,
1845
+ last_modified_by: 'dshah',
1846
+ last_modified_on: 1733984032084,
1847
+ value: 'Uttar Bihar Gramin Bank',
1848
+ field_key: 'PBI_BANK_NAME',
1849
+ file_size: 0,
1850
+ multimedia_type: null,
1851
+ code: null,
1852
+ Date: null,
1853
+ column2: null,
1854
+ column3: null,
1855
+ column4: null,
1856
+ column5: null,
1857
+ column6: null,
1858
+ column7: null,
1859
+ column8: null,
1860
+ column9: null,
1861
+ column10: null,
1862
+ list_order: null,
1863
+ additional_detail: null,
1864
+ constant: null,
1865
+ },
1866
+ {
1867
+ id: 3111,
1868
+ is_active: true,
1869
+ is_archive: false,
1870
+ last_modified_by: 'dshah',
1871
+ last_modified_on: 1733984032084,
1872
+ value: 'Uttarakhand Gramin Bank',
1873
+ field_key: 'PBI_BANK_NAME',
1874
+ file_size: 0,
1875
+ multimedia_type: null,
1876
+ code: null,
1877
+ Date: null,
1878
+ column2: null,
1879
+ column3: null,
1880
+ column4: null,
1881
+ column5: null,
1882
+ column6: null,
1883
+ column7: null,
1884
+ column8: null,
1885
+ column9: null,
1886
+ column10: null,
1887
+ list_order: null,
1888
+ additional_detail: null,
1889
+ constant: null,
1890
+ },
1891
+ {
1892
+ id: 3112,
1893
+ is_active: true,
1894
+ is_archive: false,
1895
+ last_modified_by: 'dshah',
1896
+ last_modified_on: 1733984032084,
1897
+ value: 'Uttarbanga Kshetriya Gramin Bank',
1898
+ field_key: 'PBI_BANK_NAME',
1899
+ file_size: 0,
1900
+ multimedia_type: null,
1901
+ code: null,
1902
+ Date: null,
1903
+ column2: null,
1904
+ column3: null,
1905
+ column4: null,
1906
+ column5: null,
1907
+ column6: null,
1908
+ column7: null,
1909
+ column8: null,
1910
+ column9: null,
1911
+ column10: null,
1912
+ list_order: null,
1913
+ additional_detail: null,
1914
+ constant: null,
1915
+ },
1916
+ {
1917
+ id: 3113,
1918
+ is_active: true,
1919
+ is_archive: false,
1920
+ last_modified_by: 'dshah',
1921
+ last_modified_on: 1733984032084,
1922
+ value: 'Vidharbha Konkan Gramin Bank',
1923
+ field_key: 'PBI_BANK_NAME',
1924
+ file_size: 0,
1925
+ multimedia_type: null,
1926
+ code: null,
1927
+ Date: null,
1928
+ column2: null,
1929
+ column3: null,
1930
+ column4: null,
1931
+ column5: null,
1932
+ column6: null,
1933
+ column7: null,
1934
+ column8: null,
1935
+ column9: null,
1936
+ column10: null,
1937
+ list_order: null,
1938
+ additional_detail: null,
1939
+ constant: null,
1940
+ },
1941
+ ],
1942
+ parameters: null,
1943
+ sequence: null,
1944
+ },
1945
+ };
1946
+
1947
+ export const DemoActiveLanguage = {
1948
+ data: [
1949
+ {
1950
+ createdBy: -1,
1951
+ createdOn: 1698402070206,
1952
+ modifiedBy: 69851,
1953
+ modifiedOn: 1700205004968,
1954
+ id: 1,
1955
+ languageKey: 'gu',
1956
+ languageValue: 'Gujarati',
1957
+ isLtr: true,
1958
+ active: true,
1959
+ language_key: 'gu',
1960
+ language_value: 'Gujarati',
1961
+ is_ltr: true,
1962
+ is_active: true,
1963
+ },
1964
+ {
1965
+ createdBy: 97076,
1966
+ createdOn: 1698402663612,
1967
+ modifiedBy: 69851,
1968
+ modifiedOn: 1700205396291,
1969
+ id: 3,
1970
+ languageKey: 'hi',
1971
+ languageValue: 'Hindi',
1972
+ isLtr: true,
1973
+ active: true,
1974
+ language_key: 'hi',
1975
+ language_value: 'Hindi',
1976
+ is_ltr: true,
1977
+ is_active: true,
1978
+ },
1979
+ ],
1980
+ };
1981
+
1982
+ export const mockedToken = {
1983
+ access_token: '8b0609b2-2f27-4ae5-8647-4c941a2572df',
1984
+ token_type: 'bearer',
1985
+ refresh_token: '7ff4b3a2-497b-4007-b8d4-6259f6e7264b',
1986
+ expires_in: 1799,
1987
+ scope: 'write',
1988
+ };
1989
+
1990
+ export const mockedMenuItems = {
1991
+ 'techo.dashboard.cccverification': {
1992
+ id: 199,
1993
+ name: 'Command and Control Center',
1994
+ navigationState: 'techo.dashboard.cccverification',
1995
+ featureJson: '{"canFollowUpOverdueServices":true}',
1996
+ },
1997
+ 'techo.manage.moverification': {
1998
+ id: 10,
1999
+ name: 'MO Re-Verification - Level 2',
2000
+ navigationState: 'techo.manage.moverification',
2001
+ featureJson: '{}',
2002
+ },
2003
+ "techo.report.view({id:'8b437996-4334-473f-923e-47b43efe56ee'})": {
2004
+ id: 263,
2005
+ name: 'CFHC Report',
2006
+ navigationState: "techo.report.view({id:'8b437996-4334-473f-923e-47b43efe56ee'})",
2007
+ featureJson: '{"canDrillDown":true}',
2008
+ isDynamicReport: true,
2009
+ },
2010
+ 'techo.manage.fhsrverification': {
2011
+ id: 9,
2012
+ name: 'MO CHFC Re-Verification',
2013
+ navigationState: 'techo.manage.fhsrverification',
2014
+ featureJson: '{}',
2015
+ },
2016
+ 'techo.dashboard.fhs': {
2017
+ id: 5,
2018
+ name: 'FHS Dashboard',
2019
+ navigationState: 'techo.dashboard.fhs',
2020
+ featureJson: '{}',
2021
+ },
2022
+ 'techo.dashboard.gvkverification': {
2023
+ id: 12,
2024
+ name: 'Call Center Verification',
2025
+ navigationState: 'techo.dashboard.gvkverification',
2026
+ featureJson:
2027
+ '{"canAbsentVerification":false,"canFamilyVerification":false,"canGvkImmunisationVerification":false,"canHighriskFollowupVerification":false,"canPregnancyRegistrationsVerification":false,"canHighriskFollowupVerificationFowFhw":false,"canPregnancyRegistrationsPhoneNumberVerification":false,"canMemberMigrationOutVerification":false,"canMemberMigrationInVerification":false,"canDuplicateMemberVerification":true,"canPerformEligibleCoupleCounselling":false,"canBeneficiaryServiceVerification":false,"canAnc4Schedule":false,"canFamilyMigrationOutVerification":false}',
2028
+ },
2029
+ 'techo.manage.ancSearch': {
2030
+ id: 152,
2031
+ name: 'ANC Service Visit',
2032
+ navigationState: 'techo.manage.ancSearch',
2033
+ featureJson: '{"isShowHIPModal":true,"isShowConsentList":true,"isShowHealthIdModal":true}',
2034
+ },
2035
+ 'techo.manage.query': {
2036
+ id: 19,
2037
+ name: 'Query Builder',
2038
+ navigationState: 'techo.manage.query',
2039
+ featureJson: '{}',
2040
+ },
2041
+ 'techo.notification.all': {
2042
+ id: 18,
2043
+ name: 'Events Configured',
2044
+ navigationState: 'techo.notification.all',
2045
+ featureJson: '{}',
2046
+ },
2047
+ 'techo.manage.servermanage': {
2048
+ id: 150,
2049
+ name: 'Server Management',
2050
+ navigationState: 'techo.manage.servermanage',
2051
+ },
2052
+ 'techo.manage.systemconfigs': {
2053
+ id: 313,
2054
+ name: 'Manage System Configurations',
2055
+ navigationState: 'techo.manage.systemconfigs',
2056
+ featureJson: '{"canAdd":false}',
2057
+ },
2058
+ 'techo.manage.syncServerManage': {
2059
+ id: 325,
2060
+ name: 'Sync Server Management',
2061
+ navigationState: 'techo.manage.syncServerManage',
2062
+ featureJson: '{}',
2063
+ },
2064
+ 'techo.manage.manage-widgets': {
2065
+ id: 166,
2066
+ name: 'Widgets management',
2067
+ navigationState: 'techo.manage.manage-widgets',
2068
+ featureJson: '{}',
2069
+ },
2070
+ 'techo.manage.queryexcelsheetgenerator': {
2071
+ id: 228,
2072
+ name: 'Query Excel Sheet Generator',
2073
+ navigationState: 'techo.manage.queryexcelsheetgenerator',
2074
+ },
2075
+ 'techo.querymanagement': {
2076
+ id: 285,
2077
+ name: 'Query Management Tool',
2078
+ navigationState: 'techo.querymanagement',
2079
+ featureJson: '{}',
2080
+ },
2081
+ 'techo.admin.systemConstraints': {
2082
+ id: 347,
2083
+ name: 'Form Configurator',
2084
+ navigationState: 'techo.admin.systemConstraints',
2085
+ featureJson: '{}',
2086
+ },
2087
+ 'techo.manage.featureSync': {
2088
+ id: 324,
2089
+ name: 'Manage Feature Syncing',
2090
+ navigationState: 'techo.manage.featureSync',
2091
+ featureJson: '{}',
2092
+ },
2093
+ 'techo.manage.notification': {
2094
+ id: 25,
2095
+ name: 'Manage Notification',
2096
+ navigationState: 'techo.manage.notification',
2097
+ featureJson: '{}',
2098
+ },
2099
+ 'techo.manage.tipsoftheday': {
2100
+ id: 231,
2101
+ name: 'Tip Of The Day',
2102
+ navigationState: 'techo.manage.tipsoftheday',
2103
+ featureJson:
2104
+ '{"canAddNewTipOfTheDay":true,"canManageEnglishTipOfTheDay":true,"canManageHindiTipOfTheDay":true,"canManageGujaratiTipOfTheDay":true}',
2105
+ },
2106
+ 'techo.manage.contentPreviewConfig': {
2107
+ id: 236,
2108
+ name: 'Content Preview Config',
2109
+ navigationState: 'techo.manage.contentPreviewConfig',
2110
+ },
2111
+ 'techo.manage.faqs': {
2112
+ id: 226,
2113
+ name: 'Manage FAQ',
2114
+ navigationState: 'techo.manage.faqs',
2115
+ featureJson:
2116
+ '{"canAddMasterQuestion":true, "canManageEnglishQuestion":true, "canManageHindiQuestion":true,\r\n "canManageGujaratiQuestion":true}',
2117
+ },
2118
+ 'techo.manage.timelineconfigs': {
2119
+ id: 242,
2120
+ name: 'Timeline Configuration',
2121
+ navigationState: 'techo.manage.timelineconfigs',
2122
+ featureJson:
2123
+ '{"canAddNewTimeline":true,"canManageEnglishTimeline":true,"canManageHindiTimeline":true,"canManageGujaratiTimeline":true}',
2124
+ },
2125
+ 'techo.manage.cardconfigs': {
2126
+ id: 225,
2127
+ name: 'Card Configuration',
2128
+ navigationState: 'techo.manage.cardconfigs',
2129
+ featureJson:
2130
+ '{"canAddMasterCard":true,"canModifyEnglishCard":true,"canModifyHindiCard":true,"canModifyGujaratiCard":true}',
2131
+ },
2132
+ 'techo.manage.valuesnmultimedia': {
2133
+ id: 68,
2134
+ name: 'Manage Values And Multimedia',
2135
+ navigationState: 'techo.manage.valuesnmultimedia',
2136
+ featureJson: '{}',
2137
+ },
2138
+ 'techo.manage.manageOpdLabTest': {
2139
+ id: 272,
2140
+ name: 'Manage OPD Lab Test',
2141
+ navigationState: 'techo.manage.manageOpdLabTest',
2142
+ featureJson: '{}',
2143
+ },
2144
+ 'techo.manage.menu': {
2145
+ id: 4,
2146
+ name: 'Features',
2147
+ navigationState: 'techo.manage.menu',
2148
+ featureJson: '{}',
2149
+ },
2150
+ 'techo.dashboard.callcenter': {
2151
+ id: 232,
2152
+ name: 'Call Center Dashboard',
2153
+ navigationState: 'techo.dashboard.callcenter',
2154
+ },
2155
+ 'techo.manage.translator-label': {
2156
+ id: 67,
2157
+ name: 'Manage Translations',
2158
+ navigationState: 'techo.manage.translator-label',
2159
+ featureJson: '{}',
2160
+ },
2161
+ 'techo.manage.mobileMenuManagement': {
2162
+ id: 359,
2163
+ name: 'Mobile Menu Management',
2164
+ navigationState: 'techo.manage.mobileMenuManagement',
2165
+ featureJson: '{"canDrillDown":true}',
2166
+ isDynamicReport: true,
2167
+ },
2168
+ 'techo.manage.drtechoUserApproval': {
2169
+ id: 222,
2170
+ name: 'Dr. Techo User Approval',
2171
+ navigationState: 'techo.manage.drtechoUserApproval',
2172
+ },
2173
+ 'techo.manage.healthInfrastructureApproval': {
2174
+ id: 221,
2175
+ name: 'Health Infrastructure Approval',
2176
+ navigationState: 'techo.manage.healthInfrastructureApproval',
2177
+ },
2178
+ 'techo.manage.dynamicform': {
2179
+ id: 274,
2180
+ name: 'Dynamic Form Builder',
2181
+ navigationState: 'techo.manage.dynamicform',
2182
+ featureJson: '{}',
2183
+ },
2184
+ 'techo.manage.featureUsage': {
2185
+ id: 312,
2186
+ name: 'Feature Usage Analytics',
2187
+ navigationState: 'techo.manage.featureUsage',
2188
+ featureJson: '{}',
2189
+ },
2190
+ 'techo.manage.sohElementConfiguration': {
2191
+ id: 260,
2192
+ name: 'Element Configuration',
2193
+ navigationState: 'techo.manage.sohElementConfiguration',
2194
+ featureJson: '{"normal":true,"advanced":true}',
2195
+ },
2196
+ 'techo.manage.sohApp': {
2197
+ id: 309,
2198
+ name: 'SoH Application',
2199
+ navigationState: 'techo.manage.sohApp',
2200
+ featureJson: '{}',
2201
+ },
2202
+ "techo.report.view({id:'f4530015-fd6d-45bf-9b50-c2fb1f3c2976'})": {
2203
+ id: 233,
2204
+ name: 'State Of Health - Elements',
2205
+ navigationState: "techo.report.view({id:'f4530015-fd6d-45bf-9b50-c2fb1f3c2976'})",
2206
+ featureJson: '{"canDrillDown":true}',
2207
+ isDynamicReport: true,
2208
+ },
2209
+ 'techo.manage.mobileFeatureManagement': {
2210
+ id: 351,
2211
+ name: 'Mobile Feature Management',
2212
+ navigationState: 'techo.manage.mobileFeatureManagement',
2213
+ featureJson: '{"canDrillDown":true}',
2214
+ isDynamicReport: true,
2215
+ },
2216
+ 'techo.manage.role': {
2217
+ id: 6,
2218
+ name: 'Role',
2219
+ navigationState: 'techo.manage.role',
2220
+ featureJson: '{}',
2221
+ },
2222
+ 'techo.manage.pushnotificationtype': {
2223
+ id: 368,
2224
+ name: 'Push Notification Type',
2225
+ navigationState: 'techo.manage.pushnotificationtype',
2226
+ },
2227
+ 'techo.manage.configureRbskDefects': {
2228
+ id: 256,
2229
+ name: 'Configure RBSK defects',
2230
+ navigationState: 'techo.manage.configureRbskDefects',
2231
+ featureJson: '{}',
2232
+ },
2233
+ 'techo.manage.teamtypes': {
2234
+ id: 316,
2235
+ name: 'Team Type Config',
2236
+ navigationState: 'techo.manage.teamtypes',
2237
+ featureJson: '{}',
2238
+ },
2239
+ 'techo.report.all': {
2240
+ id: 14,
2241
+ name: 'Reports',
2242
+ navigationState: 'techo.report.all',
2243
+ featureJson: '{"basic":true,"advanced":true}',
2244
+ },
2245
+ 'techo.manage.lmsdashboard': {
2246
+ id: 360,
2247
+ name: 'LMS Dashboard',
2248
+ navigationState: 'techo.manage.lmsdashboard',
2249
+ },
2250
+ 'techo.training.traineeStatus': {
2251
+ id: 11,
2252
+ name: 'Trainee Status',
2253
+ navigationState: 'techo.training.traineeStatus',
2254
+ featureJson: '{}',
2255
+ },
2256
+ 'techo.manage.courselist': {
2257
+ id: 2,
2258
+ name: 'Course',
2259
+ navigationState: 'techo.manage.courselist',
2260
+ featureJson: '{"canRefreshCourseSize": false}',
2261
+ },
2262
+ 'techo.training.dashboard': {
2263
+ id: 8,
2264
+ name: 'My Training Dashboard',
2265
+ navigationState: 'techo.training.dashboard',
2266
+ featureJson: '{}',
2267
+ },
2268
+ 'techo.training.questionsetlist': {
2269
+ id: 344,
2270
+ name: 'Question Set Configuration',
2271
+ navigationState: 'techo.training.questionsetlist',
2272
+ featureJson: '{}',
2273
+ },
2274
+ 'techo.training.scheduled': {
2275
+ id: 7,
2276
+ name: 'Training Schedule',
2277
+ navigationState: 'techo.training.scheduled',
2278
+ featureJson: '{"canMarkAttendance":false}',
2279
+ },
2280
+ 'techo.manage.lmsdashboardv2': {
2281
+ id: 377,
2282
+ name: 'LMS Dashboard V2',
2283
+ navigationState: 'techo.manage.lmsdashboardv2',
2284
+ },
2285
+ 'techo.ncd.followupscreenlisting': {
2286
+ id: 363,
2287
+ name: 'Consultant Followup Screen members',
2288
+ navigationState: 'techo.ncd.followupscreenlisting',
2289
+ featureJson: '{}',
2290
+ },
2291
+ "techo.report.view({id:'598bde2d-dd11-40bd-aea8-a946a9925e53'})": {
2292
+ id: 142,
2293
+ name: 'NCD Screening Status',
2294
+ navigationState: "techo.report.view({id:'598bde2d-dd11-40bd-aea8-a946a9925e53'})",
2295
+ featureJson: '{"canDrillDown":true}',
2296
+ isDynamicReport: true,
2297
+ },
2298
+ "techo.report.view({id:'04737cee-18b2-4d04-bb14-0d9ee73c67d1'})": {
2299
+ id: 207,
2300
+ name: 'NCD Progress tracking report',
2301
+ navigationState: "techo.report.view({id:'04737cee-18b2-4d04-bb14-0d9ee73c67d1'})",
2302
+ featureJson: '{"canDrillDown":true}',
2303
+ isDynamicReport: true,
2304
+ },
2305
+ 'techo.ncd.members': {
2306
+ id: 148,
2307
+ name: 'Referred Patients',
2308
+ navigationState: 'techo.ncd.members',
2309
+ featureJson: '{"isShowHealthIdModal":true,"isShowHIPModal":false, "canExamine":true}',
2310
+ },
2311
+ 'techo.dashboard.ncdscreeningdashboard': {
2312
+ id: 147,
2313
+ name: 'NCD Screening Dashboard',
2314
+ navigationState: 'techo.dashboard.ncdscreeningdashboard',
2315
+ },
2316
+ 'techo.ncd.druginventory': {
2317
+ id: 362,
2318
+ name: 'Drug Inventory',
2319
+ navigationState: 'techo.ncd.druginventory',
2320
+ featureJson: '{}',
2321
+ },
2322
+ 'techo.ncd.moreviewscreen': {
2323
+ id: 364,
2324
+ name: 'MBBS MO Review Screen',
2325
+ navigationState: 'techo.ncd.moreviewscreen',
2326
+ featureJson: '{}',
2327
+ },
2328
+ 'techo.ncd.familyqrcode': {
2329
+ id: 370,
2330
+ name: 'Family QR Code Generation',
2331
+ navigationState: 'techo.ncd.familyqrcode',
2332
+ featureJson: '{}',
2333
+ },
2334
+ 'techo.manage.districtperformancedashboard': {
2335
+ id: 332,
2336
+ name: 'District Factsheet',
2337
+ navigationState: 'techo.manage.districtperformancedashboard',
2338
+ },
2339
+ "techo.report.view({id:'30361882-8b62-43d1-ac89-3465a522d258'})": {
2340
+ id: 61,
2341
+ name: '0-5 Years Child Survey Screened by ANM',
2342
+ navigationState: "techo.report.view({id:'30361882-8b62-43d1-ac89-3465a522d258'})",
2343
+ featureJson: '{"canDrillDown":true}',
2344
+ isDynamicReport: true,
2345
+ },
2346
+ "techo.report.view({id:'070f118c-2d09-4a4f-9430-2cb5f1290997'})": {
2347
+ id: 56,
2348
+ name: 'Location Detail Report',
2349
+ navigationState: "techo.report.view({id:'070f118c-2d09-4a4f-9430-2cb5f1290997'})",
2350
+ featureJson: '{"canDrillDown":true}',
2351
+ isDynamicReport: true,
2352
+ },
2353
+ "techo.report.view({id:'5e97d86e-23cd-4e22-8c64-351fcfc85b85'})": {
2354
+ id: 198,
2355
+ name: 'Login Rate(Location-wise)',
2356
+ navigationState: "techo.report.view({id:'5e97d86e-23cd-4e22-8c64-351fcfc85b85'})",
2357
+ featureJson: '{"canDrillDown":true}',
2358
+ isDynamicReport: true,
2359
+ },
2360
+ "techo.report.view({id:'cbfd33e2-b399-45e8-b974-12edacb16e81'})": {
2361
+ id: 317,
2362
+ name: 'Age-Wise Detail Report',
2363
+ navigationState: "techo.report.view({id:'cbfd33e2-b399-45e8-b974-12edacb16e81'})",
2364
+ featureJson: '{"canDrillDown":true}',
2365
+ isDynamicReport: true,
2366
+ },
2367
+ "techo.report.view({id:'74481c42-5a91-4ba0-990a-e77e3326a0a9'})": {
2368
+ id: 333,
2369
+ name: 'HMIS Report',
2370
+ navigationState: "techo.report.view({id:'74481c42-5a91-4ba0-990a-e77e3326a0a9'})",
2371
+ featureJson: '{"canDrillDown":true}',
2372
+ isDynamicReport: true,
2373
+ },
2374
+ "techo.report.view({id:'e6a2a260-d703-4e9a-8433-303bbfeffe96'})": {
2375
+ id: 337,
2376
+ name: 'Age-Wise Detail Report - V2',
2377
+ navigationState: "techo.report.view({id:'e6a2a260-d703-4e9a-8433-303bbfeffe96'})",
2378
+ featureJson: '{"canDrillDown":true}',
2379
+ isDynamicReport: true,
2380
+ },
2381
+ "techo.report.view({id:'35fd1c4f-8f60-4f06-a59a-5207bcaff76a'})": {
2382
+ id: 329,
2383
+ name: 'CMTC/NRC Facility Monitoring - V3',
2384
+ navigationState: "techo.report.view({id:'35fd1c4f-8f60-4f06-a59a-5207bcaff76a'})",
2385
+ featureJson: '{"canDrillDown":true}',
2386
+ isDynamicReport: true,
2387
+ },
2388
+ "techo.report.view({id:'0b023663-e4e3-4687-b310-7a1316f40db9'})": {
2389
+ id: 91,
2390
+ name: 'MO Performance Report',
2391
+ navigationState: "techo.report.view({id:'0b023663-e4e3-4687-b310-7a1316f40db9'})",
2392
+ featureJson: '{"canDrillDown":true}',
2393
+ isDynamicReport: true,
2394
+ },
2395
+ "techo.report.view({id:'075efd07-0e27-4b3e-8a41-384906b39b5f'})": {
2396
+ id: 328,
2397
+ name: 'Nutrition Screening Center wise Report - V2',
2398
+ navigationState: "techo.report.view({id:'075efd07-0e27-4b3e-8a41-384906b39b5f'})",
2399
+ featureJson: '{"canDrillDown":true}',
2400
+ isDynamicReport: true,
2401
+ },
2402
+ "techo.report.view({id:'125d2193-e798-4baa-b074-de305e1e1854'})": {
2403
+ id: 330,
2404
+ name: 'CMTC/NRC Follow-up Visit - V3',
2405
+ navigationState: "techo.report.view({id:'125d2193-e798-4baa-b074-de305e1e1854'})",
2406
+ featureJson: '{"canDrillDown":true}',
2407
+ isDynamicReport: true,
2408
+ },
2409
+ 'techo.manage.staffsmsconfigs': {
2410
+ id: 258,
2411
+ name: 'Staff Sms Configuration',
2412
+ navigationState: 'techo.manage.staffsmsconfigs',
2413
+ featureJson: '{"canManageAllSms":true}',
2414
+ },
2415
+ "techo.report.view({id:'97cf4b39-d28b-4043-a113-f63ecc854c8c'})": {
2416
+ id: 115,
2417
+ name: 'LBW Child Registered',
2418
+ navigationState: "techo.report.view({id:'97cf4b39-d28b-4043-a113-f63ecc854c8c'})",
2419
+ featureJson: '{"canDrillDown":true}',
2420
+ isDynamicReport: true,
2421
+ },
2422
+ "techo.report.view({id:'bb544914-fe96-411d-8094-cf344da5506f'})": {
2423
+ id: 138,
2424
+ name: 'State Level Monthly Compilation Sheet for Screening of Birth Defects',
2425
+ navigationState: "techo.report.view({id:'bb544914-fe96-411d-8094-cf344da5506f'})",
2426
+ featureJson: '{"canDrillDown":true}',
2427
+ isDynamicReport: true,
2428
+ },
2429
+ "techo.report.view({id:'830503de-d1b5-431d-bf04-670d90ab621f'})": {
2430
+ id: 139,
2431
+ name: 'Child Health Services Provided during the year (Monthly)',
2432
+ navigationState: "techo.report.view({id:'830503de-d1b5-431d-bf04-670d90ab621f'})",
2433
+ featureJson: '{"canDrillDown":true}',
2434
+ isDynamicReport: true,
2435
+ },
2436
+ "techo.report.view({id:'c62ab8b4-25bd-4325-87e5-73d8be8d0536'})": {
2437
+ id: 146,
2438
+ name: 'Child Health Services Provided during the year (Yearly)',
2439
+ navigationState: "techo.report.view({id:'c62ab8b4-25bd-4325-87e5-73d8be8d0536'})",
2440
+ featureJson: '{"canDrillDown":true}',
2441
+ isDynamicReport: true,
2442
+ },
2443
+ "techo.report.view({id:'3b51ed26-a317-4344-8eb3-e14a462bfd5f'})": {
2444
+ id: 116,
2445
+ name: 'Infant and Neonatal Deaths Report',
2446
+ navigationState: "techo.report.view({id:'3b51ed26-a317-4344-8eb3-e14a462bfd5f'})",
2447
+ featureJson: '{"canDrillDown":true}',
2448
+ isDynamicReport: true,
2449
+ },
2450
+ "techo.report.view({id:'d8deb91d-cac2-41a6-9eb2-ea6a86b04156'})": {
2451
+ id: 297,
2452
+ name: 'Positive Case Detail',
2453
+ navigationState: "techo.report.view({id:'d8deb91d-cac2-41a6-9eb2-ea6a86b04156'})",
2454
+ featureJson: '{"canDrillDown":true}',
2455
+ isDynamicReport: true,
2456
+ },
2457
+ "techo.report.view({id:'a048689a-407a-4efc-b396-dc7319694465'})": {
2458
+ id: 306,
2459
+ name: 'Facility Status Report',
2460
+ navigationState: "techo.report.view({id:'a048689a-407a-4efc-b396-dc7319694465'})",
2461
+ featureJson: '{"canDrillDown":true}',
2462
+ isDynamicReport: true,
2463
+ },
2464
+ "techo.report.view({id:'10cd7d75-3875-4ffa-abc3-286ef330f2a2'})": {
2465
+ id: 299,
2466
+ name: 'IDSP2 Cluster Survey Detail',
2467
+ navigationState: "techo.report.view({id:'10cd7d75-3875-4ffa-abc3-286ef330f2a2'})",
2468
+ featureJson: '{"canDrillDown":true}',
2469
+ isDynamicReport: true,
2470
+ },
2471
+ "techo.report.view({id:'dddd3017-40db-4142-8c39-fe15ff3149a5'})": {
2472
+ id: 304,
2473
+ name: 'Lab wise Sample Status',
2474
+ navigationState: "techo.report.view({id:'dddd3017-40db-4142-8c39-fe15ff3149a5'})",
2475
+ featureJson: '{"canDrillDown":true}',
2476
+ isDynamicReport: true,
2477
+ },
2478
+ "techo.report.view({id:'a85ade02-d6db-4d19-89fb-77907a582e25'})": {
2479
+ id: 302,
2480
+ name: 'Infrastructure Wise Component Availability',
2481
+ navigationState: "techo.report.view({id:'a85ade02-d6db-4d19-89fb-77907a582e25'})",
2482
+ featureJson: '{"canDrillDown":true}',
2483
+ isDynamicReport: true,
2484
+ },
2485
+ "techo.report.view({id:'047b61cf-cc04-4931-b0f8-24cb9d2ab46d'})": {
2486
+ id: 298,
2487
+ name: 'Covid2019 Hospitalwise detail',
2488
+ navigationState: "techo.report.view({id:'047b61cf-cc04-4931-b0f8-24cb9d2ab46d'})",
2489
+ featureJson: '{"canDrillDown":true}',
2490
+ isDynamicReport: true,
2491
+ },
2492
+ 'techo.manage.anganwadi': {
2493
+ id: 15,
2494
+ name: 'Manage Anganwadis',
2495
+ navigationState: 'techo.manage.anganwadi',
2496
+ featureJson: '{"canEdit":true}',
2497
+ },
2498
+ 'techo.manage.systemcode': {
2499
+ id: 323,
2500
+ name: 'System Code Management Tool',
2501
+ navigationState: 'techo.manage.systemcode',
2502
+ featureJson: '{}',
2503
+ },
2504
+ "techo.report.view({id:'2669b516-dde5-4410-9dfd-c62e44fe4f68'})": {
2505
+ id: 137,
2506
+ name: "Child's DOB base report for OPV/DPT booster and 2nd dose of Measles Service",
2507
+ navigationState: "techo.report.view({id:'2669b516-dde5-4410-9dfd-c62e44fe4f68'})",
2508
+ featureJson: '{"canDrillDown":true}',
2509
+ isDynamicReport: true,
2510
+ },
2511
+ "techo.report.view({id:'a9452880-acae-4735-b7cd-2d7a2854b789'})": {
2512
+ id: 136,
2513
+ name: 'Monitoring BCG Vaccine as per DOB',
2514
+ navigationState: "techo.report.view({id:'a9452880-acae-4735-b7cd-2d7a2854b789'})",
2515
+ featureJson: '{"canDrillDown":true}',
2516
+ isDynamicReport: true,
2517
+ },
2518
+ "techo.report.view({id:'3d09f721-c91a-4bc3-b2a9-b9db65373ef1'})": {
2519
+ id: 113,
2520
+ name: 'Services Provided to the Children Registered during the Year ( 1 to 6 Year )',
2521
+ navigationState: "techo.report.view({id:'3d09f721-c91a-4bc3-b2a9-b9db65373ef1'})",
2522
+ featureJson: '{"canDrillDown":true}',
2523
+ isDynamicReport: true,
2524
+ },
2525
+ "techo.report.view({id:'8d0a9e76-4d45-493f-8d1d-5371d11995c1'})": {
2526
+ id: 141,
2527
+ name: 'Child for monitoring of Pentavalent 3 Vaccine as per Date of Birth',
2528
+ navigationState: "techo.report.view({id:'8d0a9e76-4d45-493f-8d1d-5371d11995c1'})",
2529
+ featureJson: '{"canDrillDown":true}',
2530
+ isDynamicReport: true,
2531
+ },
2532
+ "techo.report.view({id:'8480f7bc-63ac-4c0f-a3fb-f7ffa4a1363f'})": {
2533
+ id: 114,
2534
+ name: 'Services Provided to the Children Registered during the Year ( 0 to 1 Year )',
2535
+ navigationState: "techo.report.view({id:'8480f7bc-63ac-4c0f-a3fb-f7ffa4a1363f'})",
2536
+ featureJson: '{"canDrillDown":true}',
2537
+ isDynamicReport: true,
2538
+ },
2539
+ "techo.report.view({id:'9a5effbe-d7cf-4b0b-8352-02ef09e583bf'})": {
2540
+ id: 140,
2541
+ name: 'Immunization Services Provided to Children with Date of Birth',
2542
+ navigationState: "techo.report.view({id:'9a5effbe-d7cf-4b0b-8352-02ef09e583bf'})",
2543
+ featureJson: '{"canDrillDown":true}',
2544
+ isDynamicReport: true,
2545
+ },
2546
+ "techo.report.view({id:'814b7881-1c68-477c-80de-3a098fa81561'})": {
2547
+ id: 248,
2548
+ name: 'Sms Count Report',
2549
+ navigationState: "techo.report.view({id:'814b7881-1c68-477c-80de-3a098fa81561'})",
2550
+ featureJson: '{"canDrillDown":true}',
2551
+ isDynamicReport: true,
2552
+ },
2553
+ "techo.report.view({id:'920a9dff-1def-49b3-945b-2bd05fd6a509'})": {
2554
+ id: 202,
2555
+ name: 'Concurrent PMSMA Report (Monthly)',
2556
+ navigationState: "techo.report.view({id:'920a9dff-1def-49b3-945b-2bd05fd6a509'})",
2557
+ featureJson: '{"canDrillDown":true}',
2558
+ isDynamicReport: true,
2559
+ },
2560
+ "techo.report.view({id:'4627210e-2108-45dd-9bf7-e8b2b934d659'})": {
2561
+ id: 183,
2562
+ name: 'LGD Code Remaining',
2563
+ navigationState: "techo.report.view({id:'4627210e-2108-45dd-9bf7-e8b2b934d659'})",
2564
+ featureJson: '{"canDrillDown":true}',
2565
+ isDynamicReport: true,
2566
+ },
2567
+ "techo.report.view({id:'ee98259d-4c96-4aab-b30e-0c87abeea575'})": {
2568
+ id: 171,
2569
+ name: 'CBAC Form Fillup Count User Wise',
2570
+ navigationState: "techo.report.view({id:'ee98259d-4c96-4aab-b30e-0c87abeea575'})",
2571
+ featureJson: '{"canDrillDown":true}',
2572
+ isDynamicReport: true,
2573
+ },
2574
+ "techo.report.view({id:'0945ad64-b65a-4a24-ac60-4ae91906c497'})": {
2575
+ id: 335,
2576
+ name: 'PMSMA Services Statistics Report during the year',
2577
+ navigationState: "techo.report.view({id:'0945ad64-b65a-4a24-ac60-4ae91906c497'})",
2578
+ featureJson: '{"canDrillDown":true}',
2579
+ isDynamicReport: true,
2580
+ },
2581
+ "techo.report.view({id:'98c9c8d8-7fdc-4163-b36d-26de0f2442aa'})": {
2582
+ id: 185,
2583
+ name: 'E-mamta Code Remaining',
2584
+ navigationState: "techo.report.view({id:'98c9c8d8-7fdc-4163-b36d-26de0f2442aa'})",
2585
+ featureJson: '{"canDrillDown":true}',
2586
+ isDynamicReport: true,
2587
+ },
2588
+ "techo.report.view({id:'7709cfc5-35d3-4d31-aaa7-68e00987ce1b'})": {
2589
+ id: 262,
2590
+ name: 'Location Wise Task Completion',
2591
+ navigationState: "techo.report.view({id:'7709cfc5-35d3-4d31-aaa7-68e00987ce1b'})",
2592
+ featureJson: '{"canDrillDown":true}',
2593
+ isDynamicReport: true,
2594
+ },
2595
+ "techo.report.view({id:'5f517733-6f24-43b1-8858-c8cc95dfd3bf'})": {
2596
+ id: 184,
2597
+ name: 'MCTS PHC Not In TeCHO+',
2598
+ navigationState: "techo.report.view({id:'5f517733-6f24-43b1-8858-c8cc95dfd3bf'})",
2599
+ featureJson: '{"canDrillDown":true}',
2600
+ isDynamicReport: true,
2601
+ },
2602
+ "techo.report.view({id:'20828757-6774-403f-ae70-083c59229090'})": {
2603
+ id: 133,
2604
+ name: 'Details of Locations not deleted with delete label',
2605
+ navigationState: "techo.report.view({id:'20828757-6774-403f-ae70-083c59229090'})",
2606
+ featureJson: '{"canDrillDown":true}',
2607
+ isDynamicReport: true,
2608
+ },
2609
+ "techo.report.view({id:'38fe43c3-3fc3-42e7-aa15-ca971412907c'})": {
2610
+ id: 201,
2611
+ name: 'Cheeranjivi Yojana deliveries Report',
2612
+ navigationState: "techo.report.view({id:'38fe43c3-3fc3-42e7-aa15-ca971412907c'})",
2613
+ featureJson: '{"canDrillDown":true}',
2614
+ isDynamicReport: true,
2615
+ },
2616
+ 'techo.manage.expectedTarget': {
2617
+ id: 176,
2618
+ name: 'Location Wise Expected Target',
2619
+ navigationState: 'techo.manage.expectedTarget',
2620
+ featureJson: '{"canLock":true,"canUnlock":true}',
2621
+ },
2622
+ "techo.report.view({id:'9b9c4aea-449d-435a-9eb6-7a9c36a58028'})": {
2623
+ id: 334,
2624
+ name: 'CM Dashboard OPD IPD report',
2625
+ navigationState: "techo.report.view({id:'9b9c4aea-449d-435a-9eb6-7a9c36a58028'})",
2626
+ featureJson: '{"canDrillDown":true}',
2627
+ isDynamicReport: true,
2628
+ },
2629
+ "techo.report.view({id:'daf5f0c8-1bdd-4370-8f30-d282dc95c219'})": {
2630
+ id: 200,
2631
+ name: 'Janani Shishu Suraksha Karykram Report',
2632
+ navigationState: "techo.report.view({id:'daf5f0c8-1bdd-4370-8f30-d282dc95c219'})",
2633
+ featureJson: '{"canDrillDown":true}',
2634
+ isDynamicReport: true,
2635
+ },
2636
+ 'techo.manage.pregregedit': {
2637
+ id: 187,
2638
+ name: 'TEMP - UPDATE PREGNANCY SERVICE DATE',
2639
+ navigationState: 'techo.manage.pregregedit',
2640
+ },
2641
+ 'techo.manage.facilityPerformancedynamic': {
2642
+ id: 157,
2643
+ name: 'Facility Performance',
2644
+ navigationState: 'techo.manage.facilityPerformancedynamic',
2645
+ },
2646
+ 'techo.manage.wpdSearch': {
2647
+ id: 111,
2648
+ name: 'Institutional Delivery Reg. Form',
2649
+ navigationState: 'techo.manage.wpdSearch',
2650
+ featureJson: '{"isShowHIPModal": false, "isShowConsentList": false, "isShowHealthIdModal": true}',
2651
+ },
2652
+ 'techo.manage.outPatientTreatmentSearch': {
2653
+ id: 273,
2654
+ name: 'Out-Patient Treatment (OPD)',
2655
+ navigationState: 'techo.manage.outPatientTreatmentSearch',
2656
+ featureJson: '{"canManageRegistration":true,"canManageTreatment":true,"canManageMedicines":true}',
2657
+ },
2658
+ 'techo.manage.childServiceSearch': {
2659
+ id: 151,
2660
+ name: 'Child Service Visit',
2661
+ navigationState: 'techo.manage.childServiceSearch',
2662
+ },
2663
+ 'techo.manage.pncSearch': {
2664
+ id: 149,
2665
+ name: 'PNC Institution Form',
2666
+ navigationState: 'techo.manage.pncSearch',
2667
+ },
2668
+ 'techo.manage.sicklecellSearch': {
2669
+ id: 246,
2670
+ name: 'Sickle Cell Screening',
2671
+ navigationState: 'techo.manage.sicklecellSearch',
2672
+ },
2673
+ 'techo.manage.fpChangeSearch': {
2674
+ id: 210,
2675
+ name: 'Family Planning Service Visit',
2676
+ navigationState: 'techo.manage.fpChangeSearch',
2677
+ featureJson: '{}',
2678
+ },
2679
+ 'techo.manage.verifiedfamilymoving': {
2680
+ id: 120,
2681
+ name: 'Verified Family Moving',
2682
+ navigationState: 'techo.manage.verifiedfamilymoving',
2683
+ featureJson: '{"canSearchByLocation":true,"canSearchByFamilyId":true,"canSearchByMemberHealthId":true}',
2684
+ },
2685
+ 'techo.manage.mobilelibrary': {
2686
+ id: 165,
2687
+ name: 'Mobile Library',
2688
+ navigationState: 'techo.manage.mobilelibrary',
2689
+ },
2690
+ 'techo.manage.usergeoservices': {
2691
+ id: 193,
2692
+ name: 'User GEO Services',
2693
+ navigationState: 'techo.manage.usergeoservices',
2694
+ },
2695
+ 'techo.manage.familymoving': {
2696
+ id: 71,
2697
+ name: 'Family Moving',
2698
+ navigationState: 'techo.manage.familymoving',
2699
+ featureJson:
2700
+ '{"canSearchByLocation":true,"canSearchByFamilyId":true,"canSearchByMemberHealthId":true,"canSearchArchived":true,"canMarkUnverified":true}',
2701
+ },
2702
+ 'techo.manage.announcements': {
2703
+ id: 74,
2704
+ name: 'Announcements',
2705
+ navigationState: 'techo.manage.announcements',
2706
+ },
2707
+ 'techo.manage.schools': {
2708
+ id: 257,
2709
+ name: 'Manage Schools',
2710
+ navigationState: 'techo.manage.schools',
2711
+ },
2712
+ "techo.report.view({id:'93aa5943-e930-473f-bda5-34cc8acdfb4e'})": {
2713
+ id: 279,
2714
+ name: 'IDSP Screening Status Report',
2715
+ navigationState: "techo.report.view({id:'93aa5943-e930-473f-bda5-34cc8acdfb4e'})",
2716
+ featureJson: '{"canDrillDown":true}',
2717
+ isDynamicReport: true,
2718
+ },
2719
+ 'techo.manage.idspFormS': {
2720
+ id: 277,
2721
+ name: 'Form S',
2722
+ navigationState: 'techo.manage.idspFormS',
2723
+ featureJson: '{}',
2724
+ },
2725
+ 'techo.manage.profileHpId': {
2726
+ id: 373,
2727
+ name: 'Profile Healthcare Professional ID',
2728
+ navigationState: 'techo.manage.profileHpId',
2729
+ },
2730
+ "techo.report.view({id:'a9b65472-b8a5-420a-9696-d43099d12e42'})": {
2731
+ id: 367,
2732
+ name: 'LMS Report',
2733
+ navigationState: "techo.report.view({id:'a9b65472-b8a5-420a-9696-d43099d12e42'})",
2734
+ featureJson: '{"canDrillDown":true}',
2735
+ isDynamicReport: true,
2736
+ },
2737
+ "techo.report.view({id:'b827d60c-5bd2-485d-811c-c79000e95a1b'})": {
2738
+ id: 94,
2739
+ name: 'Urban FHS Count',
2740
+ navigationState: "techo.report.view({id:'b827d60c-5bd2-485d-811c-c79000e95a1b'})",
2741
+ featureJson: '{"canDrillDown":true}',
2742
+ isDynamicReport: true,
2743
+ },
2744
+ 'techo.manage.cerebralpalsysearch': {
2745
+ id: 154,
2746
+ name: 'Suspected CP',
2747
+ navigationState: 'techo.manage.cerebralpalsysearch',
2748
+ },
2749
+ 'techo.manage.searchfeature': {
2750
+ id: 144,
2751
+ name: 'Helpdesk Tool - Search',
2752
+ navigationState: 'techo.manage.searchfeature',
2753
+ featureJson:
2754
+ '{"canModifyMemberDob":true,"canModifyMemberGender":true,"canModifyPregnancyRegDate":true,"canModifyLmpDate":true,"canModifyAncServiceDate":true,"canModifyWpdServiceDate":true,"canModifyWpdDeliveryDate":true,"canModifyPncServiceDate":true,"canModifyChvServiceDate":true,"canModifyImmuGivenDate":true,"canModifyWpdDeliveryPlace":true,"canMarkAsEligibleCouple":true,"canMarkMemberAsArchive":false,"canMarkAsWrongDelivery":true}',
2755
+ },
2756
+ 'techo.manage.userinformation': {
2757
+ id: 130,
2758
+ name: 'User Information',
2759
+ navigationState: 'techo.manage.userinformation',
2760
+ featureJson: '{}',
2761
+ },
2762
+ 'techo.manage.childscreeninglist': {
2763
+ id: 112,
2764
+ name: 'CMTC/NRC Child Screening',
2765
+ navigationState: 'techo.manage.childscreeninglist',
2766
+ featureJson: '{"isShowHealthIdModal":true,"isShowHIPModal":false}',
2767
+ },
2768
+ 'techo.dashboard.gvkCallEffectivenessReports': {
2769
+ id: 219,
2770
+ name: 'GVK : Call Effectiveness Reports',
2771
+ navigationState: 'techo.dashboard.gvkCallEffectivenessReports',
2772
+ },
2773
+ "techo.report.view({id:'c646bf05-ac1b-459a-a332-e2870e44eb84'})": {
2774
+ id: 128,
2775
+ name: 'Indradhanush Call Status Report - Location Wise',
2776
+ navigationState: "techo.report.view({id:'c646bf05-ac1b-459a-a332-e2870e44eb84'})",
2777
+ featureJson: '{"canDrillDown":true}',
2778
+ isDynamicReport: true,
2779
+ },
2780
+ "techo.report.view({id:'3471d85e-4150-4f2d-beef-d6a68589ad9a'})": {
2781
+ id: 126,
2782
+ name: 'Indradhanush Call Report - User Wise',
2783
+ navigationState: "techo.report.view({id:'3471d85e-4150-4f2d-beef-d6a68589ad9a'})",
2784
+ featureJson: '{"canDrillDown":true}',
2785
+ isDynamicReport: true,
2786
+ },
2787
+ "techo.report.view({id:'8d071c53-75b4-44d1-8196-24c37cbdafe5'})": {
2788
+ id: 129,
2789
+ name: 'Indradhanush Call Status Report - User Wise',
2790
+ navigationState: "techo.report.view({id:'8d071c53-75b4-44d1-8196-24c37cbdafe5'})",
2791
+ featureJson: '{"canDrillDown":true}',
2792
+ isDynamicReport: true,
2793
+ },
2794
+ "techo.report.view({id:'f88835d4-c557-4401-b62c-79504515642c'})": {
2795
+ id: 131,
2796
+ name: 'FHS Call Report - Location wise',
2797
+ navigationState: "techo.report.view({id:'f88835d4-c557-4401-b62c-79504515642c'})",
2798
+ featureJson: '{"canDrillDown":true}',
2799
+ isDynamicReport: true,
2800
+ },
2801
+ "techo.report.view({id:'ca91bef6-5705-4d0d-95c6-84a0d5cbb808'})": {
2802
+ id: 132,
2803
+ name: 'FHS Call Report - User Wise',
2804
+ navigationState: "techo.report.view({id:'ca91bef6-5705-4d0d-95c6-84a0d5cbb808'})",
2805
+ featureJson: '{"canDrillDown":true}',
2806
+ isDynamicReport: true,
2807
+ },
2808
+ 'techo.manage.dtcInterface': {
2809
+ id: 275,
2810
+ name: 'DTC Interface',
2811
+ navigationState: 'techo.manage.dtcInterface',
2812
+ featureJson: '{}',
2813
+ },
2814
+ 'techo.manage.covidtravellers': {
2815
+ id: 276,
2816
+ name: 'Covid Travellers Screening',
2817
+ navigationState: 'techo.manage.covidtravellers',
2818
+ },
2819
+ 'techo.manage.covid19healthinfrastructures': {
2820
+ id: 292,
2821
+ name: 'Manage Health Infrastructure',
2822
+ navigationState: 'techo.manage.covid19healthinfrastructures',
2823
+ featureJson:
2824
+ '{"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}',
2825
+ },
2826
+ 'techo.manage.covidLabTestEntry': {
2827
+ id: 296,
2828
+ name: 'OPD Lab Test Entry',
2829
+ navigationState: 'techo.manage.covidLabTestEntry',
2830
+ featureJson: '{}',
2831
+ },
2832
+ 'techo.manage.symptomaticMembersHeatmap': {
2833
+ id: 288,
2834
+ name: 'Spatial Distribution Of Cases',
2835
+ navigationState: 'techo.manage.symptomaticMembersHeatmap',
2836
+ },
2837
+ 'techo.manage.locationClusterManagement': {
2838
+ id: 301,
2839
+ name: 'Cluster Management',
2840
+ navigationState: 'techo.manage.locationClusterManagement',
2841
+ featureJson: '{}',
2842
+ },
2843
+ 'techo.manage.emodashboard': {
2844
+ id: 294,
2845
+ name: 'Suspect List',
2846
+ navigationState: 'techo.manage.emodashboard',
2847
+ featureJson:
2848
+ '{"canAccessReferredForCovidLabTest":true,"canAccessApprovedForCovidLabTest":true,"canAccessReferredPatientsStatus":true}',
2849
+ },
2850
+ 'techo.manage.covidcases': {
2851
+ id: 281,
2852
+ name: 'Contact Tracing',
2853
+ navigationState: 'techo.manage.covidcases',
2854
+ },
2855
+ 'techo.manage.labtest': {
2856
+ id: 291,
2857
+ name: 'Lab',
2858
+ navigationState: 'techo.manage.labtest',
2859
+ featureJson:
2860
+ '{"canSampleCollect":true,"canSampleReceive":true,"canSampleResult":true,"canIndeterminate":true,"canTransfer":true,"canResultConfirm":true}',
2861
+ },
2862
+ 'techo.manage.104calls': {
2863
+ id: 284,
2864
+ name: 'Track 104 Calls',
2865
+ navigationState: 'techo.manage.104calls',
2866
+ },
2867
+ 'techo.manage.labinfrastructure': {
2868
+ id: 300,
2869
+ name: 'Manage Lab Infrastructure',
2870
+ navigationState: 'techo.manage.labinfrastructure',
2871
+ },
2872
+ 'techo.manage.covidAdmission': {
2873
+ id: 290,
2874
+ name: 'Hospital Admission',
2875
+ navigationState: 'techo.manage.covidAdmission',
2876
+ featureJson:
2877
+ '{"isShowReferredAdmissionTab":true,"isShowSuspectAdmittedCasesTab":true,"isShowConfirmedAdmittedCasesTab":true,"isShowAdmitButton":true,"isShowCheckUpButton":true,"isShowDischargeButton":true,"isShowNewAdmissionButton":true,"isShowReferInTab":true,"isShowReferOutTab":true,"isShowReferInAdmitButton":true,"isShowEditButton":true,"isShowPrintButton":true}',
2878
+ },
2879
+ 'techo.manage.covid19Dashboard': {
2880
+ id: 283,
2881
+ name: 'Rapid Response Dashboard',
2882
+ navigationState: 'techo.manage.covid19Dashboard',
2883
+ },
2884
+ 'techo.manage.uploadlocation': {
2885
+ id: 13,
2886
+ name: 'Upload Location',
2887
+ navigationState: 'techo.manage.uploadlocation',
2888
+ featureJson: '{}',
2889
+ },
2890
+ 'techo.manage.healthinfrastructures': {
2891
+ id: 122,
2892
+ name: 'Health Facility Mapping',
2893
+ navigationState: 'techo.manage.healthinfrastructures',
2894
+ featureJson:
2895
+ '{"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,"canEditChiranjeevi":true,"canEditUsgFacility":true,"canEditVentilators":false,"canLinkHfrFacility":true,"canEditPediatrician":true,"canEditPmjayFacility":true,"canEditDefibrillators":false,"manageBasedOnLocation":true,"canEditCovid19Hospital":true,"canEditOxygenCylinders":false,"canEditReferralFacility":true,"manageBasedOnAssignment":true,"canManageHealthInfraType":true}',
2896
+ },
2897
+ 'techo.manage.users': {
2898
+ id: 1,
2899
+ name: 'Users',
2900
+ navigationState: 'techo.manage.users',
2901
+ featureJson:
2902
+ '{"canAdd":true,"canEdit":true,"canUnlockUser":true,"canEditPassword":true,"canEditUserName":true,"canEditBankDetails":true}',
2903
+ },
2904
+ 'techo.dashboard.webtasks': {
2905
+ id: 109,
2906
+ name: 'Web Tasks',
2907
+ navigationState: 'techo.dashboard.webtasks',
2908
+ },
2909
+ 'techo.manage.servicedeliverylocation': {
2910
+ id: 197,
2911
+ name: 'Place of Service Delivery',
2912
+ navigationState: 'techo.manage.servicedeliverylocation',
2913
+ },
2914
+ "techo.report.view({id:'dc464f6b-91ad-47d6-b652-609126ac316d'})": {
2915
+ id: 93,
2916
+ name: 'Pregnant Women Report',
2917
+ navigationState: "techo.report.view({id:'dc464f6b-91ad-47d6-b652-609126ac316d'})",
2918
+ featureJson: '{"canDrillDown":true}',
2919
+ isDynamicReport: true,
2920
+ },
2921
+ "techo.report.view({id:'1422e079-a449-4935-9275-b10f69d80341'})": {
2922
+ id: 270,
2923
+ name: 'Maternal Death Causewise',
2924
+ navigationState: "techo.report.view({id:'1422e079-a449-4935-9275-b10f69d80341'})",
2925
+ featureJson: '{"canDrillDown":true}',
2926
+ isDynamicReport: true,
2927
+ },
2928
+ "techo.report.view({id:'b4c2d5f1-96f4-46ef-8afa-0515b63bb10f'})": {
2929
+ id: 175,
2930
+ name: 'Maternal Health Services Provided During The Year (Monthly)',
2931
+ navigationState: "techo.report.view({id:'b4c2d5f1-96f4-46ef-8afa-0515b63bb10f'})",
2932
+ featureJson: '{"canDrillDown":true}',
2933
+ isDynamicReport: true,
2934
+ },
2935
+ 'techo.manage.uploaduser': {
2936
+ id: 349,
2937
+ name: 'Upload User',
2938
+ navigationState: 'techo.manage.uploaduser',
2939
+ featureJson: '{}',
2940
+ },
2941
+ 'techo.manage.mobilemangementinfo': {
2942
+ id: 158,
2943
+ name: 'Mobile Management',
2944
+ navigationState: 'techo.manage.mobilemangementinfo',
2945
+ },
2946
+ 'techo.manage.locationtype': {
2947
+ id: 340,
2948
+ name: 'Location Type',
2949
+ navigationState: 'techo.manage.locationtype',
2950
+ featureJson: '{}',
2951
+ },
2952
+ 'techo.report.familyreport': {
2953
+ id: 70,
2954
+ name: 'FHS Family Report',
2955
+ navigationState: 'techo.report.familyreport',
2956
+ featureJson: '{}',
2957
+ },
2958
+ "techo.report.view({id:'9a9d3e2e-c5e5-4aa6-adc3-e84a511e5e3d'})": {
2959
+ id: 92,
2960
+ name: 'RCH TRAINING COUNT REPORT',
2961
+ navigationState: "techo.report.view({id:'9a9d3e2e-c5e5-4aa6-adc3-e84a511e5e3d'})",
2962
+ featureJson: '{"canDrillDown":true}',
2963
+ isDynamicReport: true,
2964
+ },
2965
+ 'techo.manage.performancedashboard': {
2966
+ id: 339,
2967
+ name: 'Performance Dashboard',
2968
+ navigationState: 'techo.manage.performancedashboard',
2969
+ featureJson: '{}',
2970
+ },
2971
+ 'techo.manage.createAbhaNumber': {
2972
+ id: 361,
2973
+ name: 'Create And Link Abha Number',
2974
+ navigationState: 'techo.manage.createAbhaNumber',
2975
+ },
2976
+ 'techo.manage.wards': {
2977
+ id: 259,
2978
+ name: 'Manage Location Wards',
2979
+ navigationState: 'techo.manage.wards',
2980
+ },
2981
+ 'techo.manage.rchLocations': {
2982
+ id: 315,
2983
+ name: 'RCH Locations',
2984
+ navigationState: 'techo.manage.rchLocations',
2985
+ },
2986
+ 'techo.manage.rchregister': {
2987
+ id: 211,
2988
+ name: 'RCH Register',
2989
+ navigationState: 'techo.manage.rchregister',
2990
+ featureJson: '{}',
2991
+ },
2992
+ 'techo.manage.pushnotification': {
2993
+ id: 369,
2994
+ name: 'Push Notification Configuration',
2995
+ navigationState: 'techo.manage.pushnotification',
2996
+ featureJson: '{"canAccessQueryBased":false\t}',
2997
+ },
2998
+ 'techo.manage.loginHfrId': {
2999
+ id: 375,
3000
+ name: 'Login Health Facility Registry',
3001
+ navigationState: 'techo.manage.loginHfrId',
3002
+ },
3003
+ 'techo.manage.smstype': {
3004
+ id: 345,
3005
+ name: 'SMS Type',
3006
+ navigationState: 'techo.manage.smstype',
3007
+ featureJson: '{}',
3008
+ },
3009
+ 'techo.manage.memberserviceregister': {
3010
+ id: 191,
3011
+ name: 'Service Register',
3012
+ navigationState: 'techo.manage.memberserviceregister',
3013
+ featureJson: '{}',
3014
+ },
3015
+ "techo.report.view({id:'7436038d-30e5-495a-9ead-cbffc292dd31'})": {
3016
+ id: 241,
3017
+ name: 'Mobile App Version Count',
3018
+ navigationState: "techo.report.view({id:'7436038d-30e5-495a-9ead-cbffc292dd31'})",
3019
+ featureJson: '{"canDrillDown":true}',
3020
+ isDynamicReport: true,
3021
+ },
3022
+ 'techo.manage.createHpId': {
3023
+ id: 371,
3024
+ name: 'Create Healthcare Professional ID',
3025
+ navigationState: 'techo.manage.createHpId',
3026
+ },
3027
+ 'techo.manage.npcblist': {
3028
+ id: 190,
3029
+ name: 'National Programme For Control of Blindness',
3030
+ navigationState: 'techo.manage.npcblist',
3031
+ },
3032
+ 'techo.manage.teams': {
3033
+ id: 264,
3034
+ name: 'Manage Teams',
3035
+ navigationState: 'techo.manage.teams',
3036
+ featureJson: '{}',
3037
+ },
3038
+ 'techo.manage.fhsworkbargraph': {
3039
+ id: 72,
3040
+ name: 'FHS Work Progress',
3041
+ navigationState: 'techo.manage.fhsworkbargraph',
3042
+ featureJson: '{}',
3043
+ },
3044
+ 'techo.manage.userhealthapproval': {
3045
+ id: 182,
3046
+ name: 'State Of Health User Approval',
3047
+ navigationState: 'techo.manage.userhealthapproval',
3048
+ featureJson: '{}',
3049
+ },
3050
+ 'techo.manage.duplicateMemberVerification': {
3051
+ id: 177,
3052
+ name: 'Duplicate Member Verification',
3053
+ navigationState: 'techo.manage.duplicateMemberVerification',
3054
+ featureJson: '{}',
3055
+ },
3056
+ 'techo.manage.loginHpId': {
3057
+ id: 372,
3058
+ name: 'Login Healthcare Professional ID',
3059
+ navigationState: 'techo.manage.loginHpId',
3060
+ },
3061
+ 'techo.manage.location': {
3062
+ id: 17,
3063
+ name: 'Locations',
3064
+ navigationState: 'techo.manage.location',
3065
+ featureJson: '{"canAdd":true,"canEdit":false,"canChangeTranslation":true}',
3066
+ },
3067
+ 'techo.manage.migrations': {
3068
+ id: 153,
3069
+ name: 'Manage Migrations',
3070
+ navigationState: 'techo.manage.migrations',
3071
+ featureJson: '{}',
3072
+ },
3073
+ 'techo.manage.uploadDocument': {
3074
+ id: 186,
3075
+ name: 'Upload Document',
3076
+ navigationState: 'techo.manage.uploadDocument',
3077
+ },
3078
+ "techo.report.view({id:'5b4e2c7a-a8c0-4247-8d1e-b4914a3422ae'})": {
3079
+ id: 286,
3080
+ name: 'Dr techo status detail report',
3081
+ navigationState: "techo.report.view({id:'5b4e2c7a-a8c0-4247-8d1e-b4914a3422ae'})",
3082
+ featureJson: '{"canDrillDown":true}',
3083
+ isDynamicReport: true,
3084
+ },
3085
+ };
3086
+
3087
+ export const mockedLoggedInUserDetails = {
3088
+ id: 97084,
3089
+ name: 'Pratham Prajapati',
3090
+ emailId: 'Na',
3091
+ userName: 'ppratham',
3092
+ roleId: 96,
3093
+ roleName: 'Argus Admin',
3094
+ minLocationId: 550513,
3095
+ minLocationName: 'ગાંધીનગર ઝોન',
3096
+ minLocationLevel: 2,
3097
+ rchInstitutionId: null,
3098
+ languagePreference: 'en',
3099
+ mobileNumber: null,
3100
+ gender: 'M',
3101
+ address: null,
3102
+ dob: null,
3103
+ userLastLogin: 1725438624124,
3104
+ roleCode: 'argusadmin',
3105
+ features: {
3106
+ fhs: [
3107
+ {
3108
+ id: 199,
3109
+ name: 'Command and Control Center',
3110
+ navigationState: 'techo.dashboard.cccverification',
3111
+ featureJson: '{"canFollowUpOverdueServices":true}',
3112
+ },
3113
+ {
3114
+ id: 10,
3115
+ name: 'MO Re-Verification - Level 2',
3116
+ navigationState: 'techo.manage.moverification',
3117
+ featureJson: '{}',
3118
+ },
3119
+ {
3120
+ id: 263,
3121
+ name: 'CFHC Report',
3122
+ navigationState: "techo.report.view({id:'8b437996-4334-473f-923e-47b43efe56ee'})",
3123
+ featureJson: '{"canDrillDown":true}',
3124
+ isDynamicReport: true,
3125
+ },
3126
+ {
3127
+ id: 9,
3128
+ name: 'MO CHFC Re-Verification',
3129
+ navigationState: 'techo.manage.fhsrverification',
3130
+ featureJson: '{}',
3131
+ },
3132
+ {
3133
+ id: 5,
3134
+ name: 'FHS Dashboard',
3135
+ navigationState: 'techo.dashboard.fhs',
3136
+ featureJson: '{}',
3137
+ },
3138
+ {
3139
+ id: 12,
3140
+ name: 'Call Center Verification',
3141
+ navigationState: 'techo.dashboard.gvkverification',
3142
+ featureJson:
3143
+ '{"canAbsentVerification":false,"canFamilyVerification":false,"canGvkImmunisationVerification":false,"canHighriskFollowupVerification":false,"canPregnancyRegistrationsVerification":false,"canHighriskFollowupVerificationFowFhw":false,"canPregnancyRegistrationsPhoneNumberVerification":false,"canMemberMigrationOutVerification":false,"canMemberMigrationInVerification":false,"canDuplicateMemberVerification":true,"canPerformEligibleCoupleCounselling":false,"canBeneficiaryServiceVerification":false,"canAnc4Schedule":false,"canFamilyMigrationOutVerification":false}',
3144
+ },
3145
+ ],
3146
+ mch: [
3147
+ {
3148
+ id: 152,
3149
+ name: 'ANC Service Visit',
3150
+ navigationState: 'techo.manage.ancSearch',
3151
+ featureJson: '{"isShowHIPModal":true,"isShowConsentList":true,"isShowHealthIdModal":true}',
3152
+ },
3153
+ ],
3154
+ admin: [
3155
+ {
3156
+ id: 24,
3157
+ name: 'Application Management',
3158
+ navigationState: 'techo.manage.query',
3159
+ isGroup: true,
3160
+ subGroups: [
3161
+ {
3162
+ id: 19,
3163
+ name: 'Query Builder',
3164
+ navigationState: 'techo.manage.query',
3165
+ featureJson: '{}',
3166
+ },
3167
+ {
3168
+ id: 18,
3169
+ name: 'Events Configured',
3170
+ navigationState: 'techo.notification.all',
3171
+ featureJson: '{}',
3172
+ },
3173
+ {
3174
+ id: 150,
3175
+ name: 'Server Management',
3176
+ navigationState: 'techo.manage.servermanage',
3177
+ },
3178
+ {
3179
+ id: 313,
3180
+ name: 'Manage System Configurations',
3181
+ navigationState: 'techo.manage.systemconfigs',
3182
+ featureJson: '{"canAdd":false}',
3183
+ },
3184
+ {
3185
+ id: 325,
3186
+ name: 'Sync Server Management',
3187
+ navigationState: 'techo.manage.syncServerManage',
3188
+ featureJson: '{}',
3189
+ },
3190
+ {
3191
+ id: 166,
3192
+ name: 'Widgets management',
3193
+ navigationState: 'techo.manage.manage-widgets',
3194
+ featureJson: '{}',
3195
+ },
3196
+ {
3197
+ id: 228,
3198
+ name: 'Query Excel Sheet Generator',
3199
+ navigationState: 'techo.manage.queryexcelsheetgenerator',
3200
+ },
3201
+ {
3202
+ id: 285,
3203
+ name: 'Query Management Tool',
3204
+ navigationState: 'techo.querymanagement',
3205
+ featureJson: '{}',
3206
+ },
3207
+ {
3208
+ id: 347,
3209
+ name: 'Form Configurator',
3210
+ navigationState: 'techo.admin.systemConstraints',
3211
+ featureJson: '{}',
3212
+ },
3213
+ {
3214
+ id: 324,
3215
+ name: 'Manage Feature Syncing',
3216
+ navigationState: 'techo.manage.featureSync',
3217
+ featureJson: '{}',
3218
+ },
3219
+ {
3220
+ id: 25,
3221
+ name: 'Manage Notification',
3222
+ navigationState: 'techo.manage.notification',
3223
+ featureJson: '{}',
3224
+ },
3225
+ ],
3226
+ featureJson: '{}',
3227
+ },
3228
+ {
3229
+ id: 16,
3230
+ name: 'My Techo',
3231
+ navigationState: 'techo.manage.tipsoftheday',
3232
+ isGroup: true,
3233
+ subGroups: [
3234
+ {
3235
+ id: 231,
3236
+ name: 'Tip Of The Day',
3237
+ navigationState: 'techo.manage.tipsoftheday',
3238
+ featureJson:
3239
+ '{"canAddNewTipOfTheDay":true,"canManageEnglishTipOfTheDay":true,"canManageHindiTipOfTheDay":true,"canManageGujaratiTipOfTheDay":true}',
3240
+ },
3241
+ {
3242
+ id: 236,
3243
+ name: 'Content Preview Config',
3244
+ navigationState: 'techo.manage.contentPreviewConfig',
3245
+ },
3246
+ {
3247
+ id: 226,
3248
+ name: 'Manage FAQ',
3249
+ navigationState: 'techo.manage.faqs',
3250
+ featureJson:
3251
+ '{"canAddMasterQuestion":true, "canManageEnglishQuestion":true, "canManageHindiQuestion":true,\r\n "canManageGujaratiQuestion":true}',
3252
+ },
3253
+ {
3254
+ id: 242,
3255
+ name: 'Timeline Configuration',
3256
+ navigationState: 'techo.manage.timelineconfigs',
3257
+ featureJson:
3258
+ '{"canAddNewTimeline":true,"canManageEnglishTimeline":true,"canManageHindiTimeline":true,"canManageGujaratiTimeline":true}',
3259
+ },
3260
+ {
3261
+ id: 225,
3262
+ name: 'Card Configuration',
3263
+ navigationState: 'techo.manage.cardconfigs',
3264
+ featureJson:
3265
+ '{"canAddMasterCard":true,"canModifyEnglishCard":true,"canModifyHindiCard":true,"canModifyGujaratiCard":true}',
3266
+ },
3267
+ ],
3268
+ featureJson:
3269
+ '{"canAddNewTipOfTheDay":true,"canManageEnglishTipOfTheDay":true,"canManageHindiTipOfTheDay":true,"canManageGujaratiTipOfTheDay":true}',
3270
+ },
3271
+ {
3272
+ id: 68,
3273
+ name: 'Manage Values And Multimedia',
3274
+ navigationState: 'techo.manage.valuesnmultimedia',
3275
+ featureJson: '{}',
3276
+ },
3277
+ {
3278
+ id: 21,
3279
+ name: 'Manage OPD',
3280
+ navigationState: 'techo.manage.manageOpdLabTest',
3281
+ isGroup: true,
3282
+ subGroups: [
3283
+ {
3284
+ id: 272,
3285
+ name: 'Manage OPD Lab Test',
3286
+ navigationState: 'techo.manage.manageOpdLabTest',
3287
+ featureJson: '{}',
3288
+ },
3289
+ ],
3290
+ featureJson: '{}',
3291
+ },
3292
+ {
3293
+ id: 4,
3294
+ name: 'Features',
3295
+ navigationState: 'techo.manage.menu',
3296
+ featureJson: '{}',
3297
+ },
3298
+ {
3299
+ id: 18,
3300
+ name: 'GVK Call Center',
3301
+ navigationState: 'techo.dashboard.callcenter',
3302
+ isGroup: true,
3303
+ subGroups: [
3304
+ {
3305
+ id: 232,
3306
+ name: 'Call Center Dashboard',
3307
+ navigationState: 'techo.dashboard.callcenter',
3308
+ },
3309
+ ],
3310
+ },
3311
+ {
3312
+ id: 67,
3313
+ name: 'Manage Translations',
3314
+ navigationState: 'techo.manage.translator-label',
3315
+ featureJson: '{}',
3316
+ },
3317
+ {
3318
+ id: 359,
3319
+ name: 'Mobile Menu Management',
3320
+ navigationState: 'techo.manage.mobileMenuManagement',
3321
+ featureJson: '{"canDrillDown":true}',
3322
+ isDynamicReport: true,
3323
+ },
3324
+ {
3325
+ id: 15,
3326
+ name: 'Dr. Techo',
3327
+ navigationState: 'techo.manage.drtechoUserApproval',
3328
+ isGroup: true,
3329
+ subGroups: [
3330
+ {
3331
+ id: 222,
3332
+ name: 'Dr. Techo User Approval',
3333
+ navigationState: 'techo.manage.drtechoUserApproval',
3334
+ },
3335
+ {
3336
+ id: 221,
3337
+ name: 'Health Infrastructure Approval',
3338
+ navigationState: 'techo.manage.healthInfrastructureApproval',
3339
+ },
3340
+ ],
3341
+ },
3342
+ {
3343
+ id: 274,
3344
+ name: 'Dynamic Form Builder',
3345
+ navigationState: 'techo.manage.dynamicform',
3346
+ featureJson: '{}',
3347
+ },
3348
+ {
3349
+ id: 312,
3350
+ name: 'Feature Usage Analytics',
3351
+ navigationState: 'techo.manage.featureUsage',
3352
+ featureJson: '{}',
3353
+ },
3354
+ {
3355
+ id: 20,
3356
+ name: 'State of Health',
3357
+ navigationState: 'techo.manage.sohElementConfiguration',
3358
+ isGroup: true,
3359
+ subGroups: [
3360
+ {
3361
+ id: 260,
3362
+ name: 'Element Configuration',
3363
+ navigationState: 'techo.manage.sohElementConfiguration',
3364
+ featureJson: '{"normal":true,"advanced":true}',
3365
+ },
3366
+ {
3367
+ id: 309,
3368
+ name: 'SoH Application',
3369
+ navigationState: 'techo.manage.sohApp',
3370
+ featureJson: '{}',
3371
+ },
3372
+ {
3373
+ id: 233,
3374
+ name: 'State Of Health - Elements',
3375
+ navigationState: "techo.report.view({id:'f4530015-fd6d-45bf-9b50-c2fb1f3c2976'})",
3376
+ featureJson: '{"canDrillDown":true}',
3377
+ isDynamicReport: true,
3378
+ },
3379
+ ],
3380
+ featureJson: '{"normal":true,"advanced":true}',
3381
+ },
3382
+ {
3383
+ id: 351,
3384
+ name: 'Mobile Feature Management',
3385
+ navigationState: 'techo.manage.mobileFeatureManagement',
3386
+ featureJson: '{"canDrillDown":true}',
3387
+ isDynamicReport: true,
3388
+ },
3389
+ {
3390
+ id: 6,
3391
+ name: 'Role',
3392
+ navigationState: 'techo.manage.role',
3393
+ featureJson: '{}',
3394
+ },
3395
+ {
3396
+ id: 368,
3397
+ name: 'Push Notification Type',
3398
+ navigationState: 'techo.manage.pushnotificationtype',
3399
+ },
3400
+ {
3401
+ id: 19,
3402
+ name: 'RBSK',
3403
+ navigationState: 'techo.manage.configureRbskDefects',
3404
+ isGroup: true,
3405
+ subGroups: [
3406
+ {
3407
+ id: 256,
3408
+ name: 'Configure RBSK defects',
3409
+ navigationState: 'techo.manage.configureRbskDefects',
3410
+ featureJson: '{}',
3411
+ },
3412
+ ],
3413
+ featureJson: '{}',
3414
+ },
3415
+ {
3416
+ id: 316,
3417
+ name: 'Team Type Config',
3418
+ navigationState: 'techo.manage.teamtypes',
3419
+ featureJson: '{}',
3420
+ },
3421
+ {
3422
+ id: 14,
3423
+ name: 'Reports',
3424
+ navigationState: 'techo.report.all',
3425
+ featureJson: '{"basic":true,"advanced":true}',
3426
+ },
3427
+ ],
3428
+ training: [
3429
+ {
3430
+ id: 360,
3431
+ name: 'LMS Dashboard',
3432
+ navigationState: 'techo.manage.lmsdashboard',
3433
+ },
3434
+ {
3435
+ id: 11,
3436
+ name: 'Trainee Status',
3437
+ navigationState: 'techo.training.traineeStatus',
3438
+ featureJson: '{}',
3439
+ },
3440
+ {
3441
+ id: 2,
3442
+ name: 'Course',
3443
+ navigationState: 'techo.manage.courselist',
3444
+ featureJson: '{"canRefreshCourseSize": false}',
3445
+ },
3446
+ {
3447
+ id: 8,
3448
+ name: 'My Training Dashboard',
3449
+ navigationState: 'techo.training.dashboard',
3450
+ featureJson: '{}',
3451
+ },
3452
+ {
3453
+ id: 344,
3454
+ name: 'Question Set Configuration',
3455
+ navigationState: 'techo.training.questionsetlist',
3456
+ featureJson: '{}',
3457
+ },
3458
+ {
3459
+ id: 7,
3460
+ name: 'Training Schedule',
3461
+ navigationState: 'techo.training.scheduled',
3462
+ featureJson: '{"canMarkAttendance":false}',
3463
+ },
3464
+ {
3465
+ id: 377,
3466
+ name: 'LMS Dashboard V2',
3467
+ navigationState: 'techo.manage.lmsdashboardv2',
3468
+ },
3469
+ ],
3470
+ ncd: [
3471
+ {
3472
+ id: 363,
3473
+ name: 'Consultant Followup Screen members',
3474
+ navigationState: 'techo.ncd.followupscreenlisting',
3475
+ featureJson: '{}',
3476
+ },
3477
+ {
3478
+ id: 28,
3479
+ name: 'NCD Reports',
3480
+ navigationState: "techo.report.view({id:'598bde2d-dd11-40bd-aea8-a946a9925e53'})",
3481
+ isGroup: true,
3482
+ subGroups: [
3483
+ {
3484
+ id: 142,
3485
+ name: 'NCD Screening Status',
3486
+ navigationState: "techo.report.view({id:'598bde2d-dd11-40bd-aea8-a946a9925e53'})",
3487
+ featureJson: '{"canDrillDown":true}',
3488
+ isDynamicReport: true,
3489
+ },
3490
+ {
3491
+ id: 207,
3492
+ name: 'NCD Progress tracking report',
3493
+ navigationState: "techo.report.view({id:'04737cee-18b2-4d04-bb14-0d9ee73c67d1'})",
3494
+ featureJson: '{"canDrillDown":true}',
3495
+ isDynamicReport: true,
3496
+ },
3497
+ ],
3498
+ featureJson: '{"canDrillDown":true}',
3499
+ isDynamicReport: true,
3500
+ },
3501
+ {
3502
+ id: 148,
3503
+ name: 'Referred Patients',
3504
+ navigationState: 'techo.ncd.members',
3505
+ featureJson: '{"isShowHealthIdModal":true,"isShowHIPModal":false, "canExamine":true}',
3506
+ },
3507
+ {
3508
+ id: 147,
3509
+ name: 'NCD Screening Dashboard',
3510
+ navigationState: 'techo.dashboard.ncdscreeningdashboard',
3511
+ },
3512
+ {
3513
+ id: 362,
3514
+ name: 'Drug Inventory',
3515
+ navigationState: 'techo.ncd.druginventory',
3516
+ featureJson: '{}',
3517
+ },
3518
+ {
3519
+ id: 364,
3520
+ name: 'MBBS MO Review Screen',
3521
+ navigationState: 'techo.ncd.moreviewscreen',
3522
+ featureJson: '{}',
3523
+ },
3524
+ {
3525
+ id: 370,
3526
+ name: 'Family QR Code Generation',
3527
+ navigationState: 'techo.ncd.familyqrcode',
3528
+ featureJson: '{}',
3529
+ },
3530
+ ],
3531
+ manage: [
3532
+ {
3533
+ id: 3,
3534
+ name: 'Reports',
3535
+ navigationState: 'techo.manage.districtperformancedashboard',
3536
+ isGroup: true,
3537
+ subGroups: [
3538
+ {
3539
+ id: 332,
3540
+ name: 'District Factsheet',
3541
+ navigationState: 'techo.manage.districtperformancedashboard',
3542
+ },
3543
+ {
3544
+ id: 61,
3545
+ name: '0-5 Years Child Survey Screened by ANM',
3546
+ navigationState: "techo.report.view({id:'30361882-8b62-43d1-ac89-3465a522d258'})",
3547
+ featureJson: '{"canDrillDown":true}',
3548
+ isDynamicReport: true,
3549
+ },
3550
+ {
3551
+ id: 56,
3552
+ name: 'Location Detail Report',
3553
+ navigationState: "techo.report.view({id:'070f118c-2d09-4a4f-9430-2cb5f1290997'})",
3554
+ featureJson: '{"canDrillDown":true}',
3555
+ isDynamicReport: true,
3556
+ },
3557
+ {
3558
+ id: 198,
3559
+ name: 'Login Rate(Location-wise)',
3560
+ navigationState: "techo.report.view({id:'5e97d86e-23cd-4e22-8c64-351fcfc85b85'})",
3561
+ featureJson: '{"canDrillDown":true}',
3562
+ isDynamicReport: true,
3563
+ },
3564
+ {
3565
+ id: 317,
3566
+ name: 'Age-Wise Detail Report',
3567
+ navigationState: "techo.report.view({id:'cbfd33e2-b399-45e8-b974-12edacb16e81'})",
3568
+ featureJson: '{"canDrillDown":true}',
3569
+ isDynamicReport: true,
3570
+ },
3571
+ {
3572
+ id: 333,
3573
+ name: 'HMIS Report',
3574
+ navigationState: "techo.report.view({id:'74481c42-5a91-4ba0-990a-e77e3326a0a9'})",
3575
+ featureJson: '{"canDrillDown":true}',
3576
+ isDynamicReport: true,
3577
+ },
3578
+ {
3579
+ id: 337,
3580
+ name: 'Age-Wise Detail Report - V2',
3581
+ navigationState: "techo.report.view({id:'e6a2a260-d703-4e9a-8433-303bbfeffe96'})",
3582
+ featureJson: '{"canDrillDown":true}',
3583
+ isDynamicReport: true,
3584
+ },
3585
+ {
3586
+ id: 329,
3587
+ name: 'CMTC/NRC Facility Monitoring - V3',
3588
+ navigationState: "techo.report.view({id:'35fd1c4f-8f60-4f06-a59a-5207bcaff76a'})",
3589
+ featureJson: '{"canDrillDown":true}',
3590
+ isDynamicReport: true,
3591
+ },
3592
+ {
3593
+ id: 91,
3594
+ name: 'MO Performance Report',
3595
+ navigationState: "techo.report.view({id:'0b023663-e4e3-4687-b310-7a1316f40db9'})",
3596
+ featureJson: '{"canDrillDown":true}',
3597
+ isDynamicReport: true,
3598
+ },
3599
+ {
3600
+ id: 328,
3601
+ name: 'Nutrition Screening Center wise Report - V2',
3602
+ navigationState: "techo.report.view({id:'075efd07-0e27-4b3e-8a41-384906b39b5f'})",
3603
+ featureJson: '{"canDrillDown":true}',
3604
+ isDynamicReport: true,
3605
+ },
3606
+ {
3607
+ id: 330,
3608
+ name: 'CMTC/NRC Follow-up Visit - V3',
3609
+ navigationState: "techo.report.view({id:'125d2193-e798-4baa-b074-de305e1e1854'})",
3610
+ featureJson: '{"canDrillDown":true}',
3611
+ isDynamicReport: true,
3612
+ },
3613
+ ],
3614
+ },
3615
+ {
3616
+ id: 258,
3617
+ name: 'Staff Sms Configuration',
3618
+ navigationState: 'techo.manage.staffsmsconfigs',
3619
+ featureJson: '{"canManageAllSms":true}',
3620
+ },
3621
+ {
3622
+ id: 9,
3623
+ name: 'Child Report 2',
3624
+ navigationState: "techo.report.view({id:'97cf4b39-d28b-4043-a113-f63ecc854c8c'})",
3625
+ isGroup: true,
3626
+ subGroups: [
3627
+ {
3628
+ id: 115,
3629
+ name: 'LBW Child Registered',
3630
+ navigationState: "techo.report.view({id:'97cf4b39-d28b-4043-a113-f63ecc854c8c'})",
3631
+ featureJson: '{"canDrillDown":true}',
3632
+ isDynamicReport: true,
3633
+ },
3634
+ {
3635
+ id: 138,
3636
+ name: 'State Level Monthly Compilation Sheet for Screening of Birth Defects',
3637
+ navigationState: "techo.report.view({id:'bb544914-fe96-411d-8094-cf344da5506f'})",
3638
+ featureJson: '{"canDrillDown":true}',
3639
+ isDynamicReport: true,
3640
+ },
3641
+ {
3642
+ id: 139,
3643
+ name: 'Child Health Services Provided during the year (Monthly)',
3644
+ navigationState: "techo.report.view({id:'830503de-d1b5-431d-bf04-670d90ab621f'})",
3645
+ featureJson: '{"canDrillDown":true}',
3646
+ isDynamicReport: true,
3647
+ },
3648
+ {
3649
+ id: 146,
3650
+ name: 'Child Health Services Provided during the year (Yearly)',
3651
+ navigationState: "techo.report.view({id:'c62ab8b4-25bd-4325-87e5-73d8be8d0536'})",
3652
+ featureJson: '{"canDrillDown":true}',
3653
+ isDynamicReport: true,
3654
+ },
3655
+ {
3656
+ id: 116,
3657
+ name: 'Infant and Neonatal Deaths Report',
3658
+ navigationState: "techo.report.view({id:'3b51ed26-a317-4344-8eb3-e14a462bfd5f'})",
3659
+ featureJson: '{"canDrillDown":true}',
3660
+ isDynamicReport: true,
3661
+ },
3662
+ ],
3663
+ featureJson: '{"canDrillDown":true}',
3664
+ isDynamicReport: true,
3665
+ },
3666
+ {
3667
+ id: 26,
3668
+ name: 'COVID-19 Report',
3669
+ navigationState: "techo.report.view({id:'d8deb91d-cac2-41a6-9eb2-ea6a86b04156'})",
3670
+ isGroup: true,
3671
+ subGroups: [
3672
+ {
3673
+ id: 297,
3674
+ name: 'Positive Case Detail',
3675
+ navigationState: "techo.report.view({id:'d8deb91d-cac2-41a6-9eb2-ea6a86b04156'})",
3676
+ featureJson: '{"canDrillDown":true}',
3677
+ isDynamicReport: true,
3678
+ },
3679
+ {
3680
+ id: 306,
3681
+ name: 'Facility Status Report',
3682
+ navigationState: "techo.report.view({id:'a048689a-407a-4efc-b396-dc7319694465'})",
3683
+ featureJson: '{"canDrillDown":true}',
3684
+ isDynamicReport: true,
3685
+ },
3686
+ {
3687
+ id: 299,
3688
+ name: 'IDSP2 Cluster Survey Detail',
3689
+ navigationState: "techo.report.view({id:'10cd7d75-3875-4ffa-abc3-286ef330f2a2'})",
3690
+ featureJson: '{"canDrillDown":true}',
3691
+ isDynamicReport: true,
3692
+ },
3693
+ {
3694
+ id: 304,
3695
+ name: 'Lab wise Sample Status',
3696
+ navigationState: "techo.report.view({id:'dddd3017-40db-4142-8c39-fe15ff3149a5'})",
3697
+ featureJson: '{"canDrillDown":true}',
3698
+ isDynamicReport: true,
3699
+ },
3700
+ {
3701
+ id: 302,
3702
+ name: 'Infrastructure Wise Component Availability',
3703
+ navigationState: "techo.report.view({id:'a85ade02-d6db-4d19-89fb-77907a582e25'})",
3704
+ featureJson: '{"canDrillDown":true}',
3705
+ isDynamicReport: true,
3706
+ },
3707
+ {
3708
+ id: 298,
3709
+ name: 'Covid2019 Hospitalwise detail',
3710
+ navigationState: "techo.report.view({id:'047b61cf-cc04-4931-b0f8-24cb9d2ab46d'})",
3711
+ featureJson: '{"canDrillDown":true}',
3712
+ isDynamicReport: true,
3713
+ },
3714
+ ],
3715
+ featureJson: '{"canDrillDown":true}',
3716
+ isDynamicReport: true,
3717
+ },
3718
+ {
3719
+ id: 15,
3720
+ name: 'Manage Anganwadis',
3721
+ navigationState: 'techo.manage.anganwadi',
3722
+ featureJson: '{"canEdit":true}',
3723
+ },
3724
+ {
3725
+ id: 323,
3726
+ name: 'System Code Management Tool',
3727
+ navigationState: 'techo.manage.systemcode',
3728
+ featureJson: '{}',
3729
+ },
3730
+ {
3731
+ id: 5,
3732
+ name: 'Child Reports',
3733
+ navigationState: "techo.report.view({id:'2669b516-dde5-4410-9dfd-c62e44fe4f68'})",
3734
+ isGroup: true,
3735
+ subGroups: [
3736
+ {
3737
+ id: 137,
3738
+ name: "Child's DOB base report for OPV/DPT booster and 2nd dose of Measles Service",
3739
+ navigationState: "techo.report.view({id:'2669b516-dde5-4410-9dfd-c62e44fe4f68'})",
3740
+ featureJson: '{"canDrillDown":true}',
3741
+ isDynamicReport: true,
3742
+ },
3743
+ {
3744
+ id: 136,
3745
+ name: 'Monitoring BCG Vaccine as per DOB',
3746
+ navigationState: "techo.report.view({id:'a9452880-acae-4735-b7cd-2d7a2854b789'})",
3747
+ featureJson: '{"canDrillDown":true}',
3748
+ isDynamicReport: true,
3749
+ },
3750
+ {
3751
+ id: 113,
3752
+ name: 'Services Provided to the Children Registered during the Year ( 1 to 6 Year )',
3753
+ navigationState: "techo.report.view({id:'3d09f721-c91a-4bc3-b2a9-b9db65373ef1'})",
3754
+ featureJson: '{"canDrillDown":true}',
3755
+ isDynamicReport: true,
3756
+ },
3757
+ {
3758
+ id: 141,
3759
+ name: 'Child for monitoring of Pentavalent 3 Vaccine as per Date of Birth',
3760
+ navigationState: "techo.report.view({id:'8d0a9e76-4d45-493f-8d1d-5371d11995c1'})",
3761
+ featureJson: '{"canDrillDown":true}',
3762
+ isDynamicReport: true,
3763
+ },
3764
+ {
3765
+ id: 114,
3766
+ name: 'Services Provided to the Children Registered during the Year ( 0 to 1 Year )',
3767
+ navigationState: "techo.report.view({id:'8480f7bc-63ac-4c0f-a3fb-f7ffa4a1363f'})",
3768
+ featureJson: '{"canDrillDown":true}',
3769
+ isDynamicReport: true,
3770
+ },
3771
+ {
3772
+ id: 140,
3773
+ name: 'Immunization Services Provided to Children with Date of Birth',
3774
+ navigationState: "techo.report.view({id:'9a5effbe-d7cf-4b0b-8352-02ef09e583bf'})",
3775
+ featureJson: '{"canDrillDown":true}',
3776
+ isDynamicReport: true,
3777
+ },
3778
+ ],
3779
+ featureJson: '{"canDrillDown":true}',
3780
+ isDynamicReport: true,
3781
+ },
3782
+ {
3783
+ id: 7,
3784
+ name: 'Administration',
3785
+ navigationState: "techo.report.view({id:'814b7881-1c68-477c-80de-3a098fa81561'})",
3786
+ isGroup: true,
3787
+ subGroups: [
3788
+ {
3789
+ id: 248,
3790
+ name: 'Sms Count Report',
3791
+ navigationState: "techo.report.view({id:'814b7881-1c68-477c-80de-3a098fa81561'})",
3792
+ featureJson: '{"canDrillDown":true}',
3793
+ isDynamicReport: true,
3794
+ },
3795
+ {
3796
+ id: 202,
3797
+ name: 'Concurrent PMSMA Report (Monthly)',
3798
+ navigationState: "techo.report.view({id:'920a9dff-1def-49b3-945b-2bd05fd6a509'})",
3799
+ featureJson: '{"canDrillDown":true}',
3800
+ isDynamicReport: true,
3801
+ },
3802
+ {
3803
+ id: 183,
3804
+ name: 'LGD Code Remaining',
3805
+ navigationState: "techo.report.view({id:'4627210e-2108-45dd-9bf7-e8b2b934d659'})",
3806
+ featureJson: '{"canDrillDown":true}',
3807
+ isDynamicReport: true,
3808
+ },
3809
+ {
3810
+ id: 171,
3811
+ name: 'CBAC Form Fillup Count User Wise',
3812
+ navigationState: "techo.report.view({id:'ee98259d-4c96-4aab-b30e-0c87abeea575'})",
3813
+ featureJson: '{"canDrillDown":true}',
3814
+ isDynamicReport: true,
3815
+ },
3816
+ {
3817
+ id: 335,
3818
+ name: 'PMSMA Services Statistics Report during the year',
3819
+ navigationState: "techo.report.view({id:'0945ad64-b65a-4a24-ac60-4ae91906c497'})",
3820
+ featureJson: '{"canDrillDown":true}',
3821
+ isDynamicReport: true,
3822
+ },
3823
+ {
3824
+ id: 185,
3825
+ name: 'E-mamta Code Remaining',
3826
+ navigationState: "techo.report.view({id:'98c9c8d8-7fdc-4163-b36d-26de0f2442aa'})",
3827
+ featureJson: '{"canDrillDown":true}',
3828
+ isDynamicReport: true,
3829
+ },
3830
+ {
3831
+ id: 262,
3832
+ name: 'Location Wise Task Completion',
3833
+ navigationState: "techo.report.view({id:'7709cfc5-35d3-4d31-aaa7-68e00987ce1b'})",
3834
+ featureJson: '{"canDrillDown":true}',
3835
+ isDynamicReport: true,
3836
+ },
3837
+ {
3838
+ id: 184,
3839
+ name: 'MCTS PHC Not In TeCHO+',
3840
+ navigationState: "techo.report.view({id:'5f517733-6f24-43b1-8858-c8cc95dfd3bf'})",
3841
+ featureJson: '{"canDrillDown":true}',
3842
+ isDynamicReport: true,
3843
+ },
3844
+ {
3845
+ id: 133,
3846
+ name: 'Details of Locations not deleted with delete label',
3847
+ navigationState: "techo.report.view({id:'20828757-6774-403f-ae70-083c59229090'})",
3848
+ featureJson: '{"canDrillDown":true}',
3849
+ isDynamicReport: true,
3850
+ },
3851
+ {
3852
+ id: 201,
3853
+ name: 'Cheeranjivi Yojana deliveries Report',
3854
+ navigationState: "techo.report.view({id:'38fe43c3-3fc3-42e7-aa15-ca971412907c'})",
3855
+ featureJson: '{"canDrillDown":true}',
3856
+ isDynamicReport: true,
3857
+ },
3858
+ {
3859
+ id: 176,
3860
+ name: 'Location Wise Expected Target',
3861
+ navigationState: 'techo.manage.expectedTarget',
3862
+ featureJson: '{"canLock":true,"canUnlock":true}',
3863
+ },
3864
+ {
3865
+ id: 334,
3866
+ name: 'CM Dashboard OPD IPD report',
3867
+ navigationState: "techo.report.view({id:'9b9c4aea-449d-435a-9eb6-7a9c36a58028'})",
3868
+ featureJson: '{"canDrillDown":true}',
3869
+ isDynamicReport: true,
3870
+ },
3871
+ {
3872
+ id: 200,
3873
+ name: 'Janani Shishu Suraksha Karykram Report',
3874
+ navigationState: "techo.report.view({id:'daf5f0c8-1bdd-4370-8f30-d282dc95c219'})",
3875
+ featureJson: '{"canDrillDown":true}',
3876
+ isDynamicReport: true,
3877
+ },
3878
+ ],
3879
+ featureJson: '{"canDrillDown":true}',
3880
+ isDynamicReport: true,
3881
+ },
3882
+ {
3883
+ id: 187,
3884
+ name: 'TEMP - UPDATE PREGNANCY SERVICE DATE',
3885
+ navigationState: 'techo.manage.pregregedit',
3886
+ },
3887
+ {
3888
+ id: 10,
3889
+ name: 'Facility Data Entry',
3890
+ navigationState: 'techo.manage.facilityPerformancedynamic',
3891
+ isGroup: true,
3892
+ subGroups: [
3893
+ {
3894
+ id: 157,
3895
+ name: 'Facility Performance',
3896
+ navigationState: 'techo.manage.facilityPerformancedynamic',
3897
+ },
3898
+ {
3899
+ id: 111,
3900
+ name: 'Institutional Delivery Reg. Form',
3901
+ navigationState: 'techo.manage.wpdSearch',
3902
+ featureJson: '{"isShowHIPModal": false, "isShowConsentList": false, "isShowHealthIdModal": true}',
3903
+ },
3904
+ {
3905
+ id: 273,
3906
+ name: 'Out-Patient Treatment (OPD)',
3907
+ navigationState: 'techo.manage.outPatientTreatmentSearch',
3908
+ featureJson: '{"canManageRegistration":true,"canManageTreatment":true,"canManageMedicines":true}',
3909
+ },
3910
+ {
3911
+ id: 151,
3912
+ name: 'Child Service Visit',
3913
+ navigationState: 'techo.manage.childServiceSearch',
3914
+ },
3915
+ {
3916
+ id: 149,
3917
+ name: 'PNC Institution Form',
3918
+ navigationState: 'techo.manage.pncSearch',
3919
+ },
3920
+ {
3921
+ id: 246,
3922
+ name: 'Sickle Cell Screening',
3923
+ navigationState: 'techo.manage.sicklecellSearch',
3924
+ },
3925
+ {
3926
+ id: 210,
3927
+ name: 'Family Planning Service Visit',
3928
+ navigationState: 'techo.manage.fpChangeSearch',
3929
+ featureJson: '{}',
3930
+ },
3931
+ ],
3932
+ },
3933
+ {
3934
+ id: 120,
3935
+ name: 'Verified Family Moving',
3936
+ navigationState: 'techo.manage.verifiedfamilymoving',
3937
+ featureJson: '{"canSearchByLocation":true,"canSearchByFamilyId":true,"canSearchByMemberHealthId":true}',
3938
+ },
3939
+ {
3940
+ id: 165,
3941
+ name: 'Mobile Library',
3942
+ navigationState: 'techo.manage.mobilelibrary',
3943
+ },
3944
+ {
3945
+ id: 193,
3946
+ name: 'User GEO Services',
3947
+ navigationState: 'techo.manage.usergeoservices',
3948
+ },
3949
+ {
3950
+ id: 71,
3951
+ name: 'Family Moving',
3952
+ navigationState: 'techo.manage.familymoving',
3953
+ featureJson:
3954
+ '{"canSearchByLocation":true,"canSearchByFamilyId":true,"canSearchByMemberHealthId":true,"canSearchArchived":true,"canMarkUnverified":true}',
3955
+ },
3956
+ {
3957
+ id: 74,
3958
+ name: 'Announcements',
3959
+ navigationState: 'techo.manage.announcements',
3960
+ },
3961
+ {
3962
+ id: 257,
3963
+ name: 'Manage Schools',
3964
+ navigationState: 'techo.manage.schools',
3965
+ },
3966
+ {
3967
+ id: 23,
3968
+ name: 'IDSP',
3969
+ navigationState: "techo.report.view({id:'93aa5943-e930-473f-bda5-34cc8acdfb4e'})",
3970
+ isGroup: true,
3971
+ subGroups: [
3972
+ {
3973
+ id: 279,
3974
+ name: 'IDSP Screening Status Report',
3975
+ navigationState: "techo.report.view({id:'93aa5943-e930-473f-bda5-34cc8acdfb4e'})",
3976
+ featureJson: '{"canDrillDown":true}',
3977
+ isDynamicReport: true,
3978
+ },
3979
+ {
3980
+ id: 277,
3981
+ name: 'Form S',
3982
+ navigationState: 'techo.manage.idspFormS',
3983
+ featureJson: '{}',
3984
+ },
3985
+ ],
3986
+ featureJson: '{"canDrillDown":true}',
3987
+ isDynamicReport: true,
3988
+ },
3989
+ {
3990
+ id: 373,
3991
+ name: 'Profile Healthcare Professional ID',
3992
+ navigationState: 'techo.manage.profileHpId',
3993
+ },
3994
+ {
3995
+ id: 367,
3996
+ name: 'LMS Report',
3997
+ navigationState: "techo.report.view({id:'a9b65472-b8a5-420a-9696-d43099d12e42'})",
3998
+ featureJson: '{"canDrillDown":true}',
3999
+ isDynamicReport: true,
4000
+ },
4001
+ {
4002
+ id: 94,
4003
+ name: 'Urban FHS Count',
4004
+ navigationState: "techo.report.view({id:'b827d60c-5bd2-485d-811c-c79000e95a1b'})",
4005
+ featureJson: '{"canDrillDown":true}',
4006
+ isDynamicReport: true,
4007
+ },
4008
+ {
4009
+ id: 154,
4010
+ name: 'Suspected CP',
4011
+ navigationState: 'techo.manage.cerebralpalsysearch',
4012
+ },
4013
+ {
4014
+ id: 144,
4015
+ name: 'Helpdesk Tool - Search',
4016
+ navigationState: 'techo.manage.searchfeature',
4017
+ featureJson:
4018
+ '{"canModifyMemberDob":true,"canModifyMemberGender":true,"canModifyPregnancyRegDate":true,"canModifyLmpDate":true,"canModifyAncServiceDate":true,"canModifyWpdServiceDate":true,"canModifyWpdDeliveryDate":true,"canModifyPncServiceDate":true,"canModifyChvServiceDate":true,"canModifyImmuGivenDate":true,"canModifyWpdDeliveryPlace":true,"canMarkAsEligibleCouple":true,"canMarkMemberAsArchive":false,"canMarkAsWrongDelivery":true}',
4019
+ },
4020
+ {
4021
+ id: 130,
4022
+ name: 'User Information',
4023
+ navigationState: 'techo.manage.userinformation',
4024
+ featureJson: '{}',
4025
+ },
4026
+ {
4027
+ id: 112,
4028
+ name: 'CMTC/NRC Child Screening',
4029
+ navigationState: 'techo.manage.childscreeninglist',
4030
+ featureJson: '{"isShowHealthIdModal":true,"isShowHIPModal":false}',
4031
+ },
4032
+ {
4033
+ id: 6,
4034
+ name: 'GVK Call Center Report',
4035
+ navigationState: 'techo.dashboard.gvkCallEffectivenessReports',
4036
+ isGroup: true,
4037
+ subGroups: [
4038
+ {
4039
+ id: 219,
4040
+ name: 'GVK : Call Effectiveness Reports',
4041
+ navigationState: 'techo.dashboard.gvkCallEffectivenessReports',
4042
+ },
4043
+ {
4044
+ id: 128,
4045
+ name: 'Indradhanush Call Status Report - Location Wise',
4046
+ navigationState: "techo.report.view({id:'c646bf05-ac1b-459a-a332-e2870e44eb84'})",
4047
+ featureJson: '{"canDrillDown":true}',
4048
+ isDynamicReport: true,
4049
+ },
4050
+ {
4051
+ id: 126,
4052
+ name: 'Indradhanush Call Report - User Wise',
4053
+ navigationState: "techo.report.view({id:'3471d85e-4150-4f2d-beef-d6a68589ad9a'})",
4054
+ featureJson: '{"canDrillDown":true}',
4055
+ isDynamicReport: true,
4056
+ },
4057
+ {
4058
+ id: 129,
4059
+ name: 'Indradhanush Call Status Report - User Wise',
4060
+ navigationState: "techo.report.view({id:'8d071c53-75b4-44d1-8196-24c37cbdafe5'})",
4061
+ featureJson: '{"canDrillDown":true}',
4062
+ isDynamicReport: true,
4063
+ },
4064
+ {
4065
+ id: 131,
4066
+ name: 'FHS Call Report - Location wise',
4067
+ navigationState: "techo.report.view({id:'f88835d4-c557-4401-b62c-79504515642c'})",
4068
+ featureJson: '{"canDrillDown":true}',
4069
+ isDynamicReport: true,
4070
+ },
4071
+ {
4072
+ id: 132,
4073
+ name: 'FHS Call Report - User Wise',
4074
+ navigationState: "techo.report.view({id:'ca91bef6-5705-4d0d-95c6-84a0d5cbb808'})",
4075
+ featureJson: '{"canDrillDown":true}',
4076
+ isDynamicReport: true,
4077
+ },
4078
+ ],
4079
+ },
4080
+ {
4081
+ id: 22,
4082
+ name: 'COVID-19',
4083
+ navigationState: 'techo.manage.dtcInterface',
4084
+ isGroup: true,
4085
+ subGroups: [
4086
+ {
4087
+ id: 275,
4088
+ name: 'DTC Interface',
4089
+ navigationState: 'techo.manage.dtcInterface',
4090
+ featureJson: '{}',
4091
+ },
4092
+ {
4093
+ id: 276,
4094
+ name: 'Covid Travellers Screening',
4095
+ navigationState: 'techo.manage.covidtravellers',
4096
+ },
4097
+ {
4098
+ id: 292,
4099
+ name: 'Manage Health Infrastructure',
4100
+ navigationState: 'techo.manage.covid19healthinfrastructures',
4101
+ featureJson:
4102
+ '{"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}',
4103
+ },
4104
+ {
4105
+ id: 296,
4106
+ name: 'OPD Lab Test Entry',
4107
+ navigationState: 'techo.manage.covidLabTestEntry',
4108
+ featureJson: '{}',
4109
+ },
4110
+ {
4111
+ id: 288,
4112
+ name: 'Spatial Distribution Of Cases',
4113
+ navigationState: 'techo.manage.symptomaticMembersHeatmap',
4114
+ },
4115
+ {
4116
+ id: 301,
4117
+ name: 'Cluster Management',
4118
+ navigationState: 'techo.manage.locationClusterManagement',
4119
+ featureJson: '{}',
4120
+ },
4121
+ {
4122
+ id: 294,
4123
+ name: 'Suspect List',
4124
+ navigationState: 'techo.manage.emodashboard',
4125
+ featureJson:
4126
+ '{"canAccessReferredForCovidLabTest":true,"canAccessApprovedForCovidLabTest":true,"canAccessReferredPatientsStatus":true}',
4127
+ },
4128
+ {
4129
+ id: 281,
4130
+ name: 'Contact Tracing',
4131
+ navigationState: 'techo.manage.covidcases',
4132
+ },
4133
+ {
4134
+ id: 291,
4135
+ name: 'Lab',
4136
+ navigationState: 'techo.manage.labtest',
4137
+ featureJson:
4138
+ '{"canSampleCollect":true,"canSampleReceive":true,"canSampleResult":true,"canIndeterminate":true,"canTransfer":true,"canResultConfirm":true}',
4139
+ },
4140
+ {
4141
+ id: 284,
4142
+ name: 'Track 104 Calls',
4143
+ navigationState: 'techo.manage.104calls',
4144
+ },
4145
+ {
4146
+ id: 300,
4147
+ name: 'Manage Lab Infrastructure',
4148
+ navigationState: 'techo.manage.labinfrastructure',
4149
+ },
4150
+ {
4151
+ id: 290,
4152
+ name: 'Hospital Admission',
4153
+ navigationState: 'techo.manage.covidAdmission',
4154
+ featureJson:
4155
+ '{"isShowReferredAdmissionTab":true,"isShowSuspectAdmittedCasesTab":true,"isShowConfirmedAdmittedCasesTab":true,"isShowAdmitButton":true,"isShowCheckUpButton":true,"isShowDischargeButton":true,"isShowNewAdmissionButton":true,"isShowReferInTab":true,"isShowReferOutTab":true,"isShowReferInAdmitButton":true,"isShowEditButton":true,"isShowPrintButton":true}',
4156
+ },
4157
+ {
4158
+ id: 283,
4159
+ name: 'Rapid Response Dashboard',
4160
+ navigationState: 'techo.manage.covid19Dashboard',
4161
+ },
4162
+ ],
4163
+ featureJson: '{}',
4164
+ },
4165
+ {
4166
+ id: 13,
4167
+ name: 'Upload Location',
4168
+ navigationState: 'techo.manage.uploadlocation',
4169
+ featureJson: '{}',
4170
+ },
4171
+ {
4172
+ id: 122,
4173
+ name: 'Health Facility Mapping',
4174
+ navigationState: 'techo.manage.healthinfrastructures',
4175
+ featureJson:
4176
+ '{"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,"canEditChiranjeevi":true,"canEditUsgFacility":true,"canEditVentilators":false,"canLinkHfrFacility":true,"canEditPediatrician":true,"canEditPmjayFacility":true,"canEditDefibrillators":false,"manageBasedOnLocation":true,"canEditCovid19Hospital":true,"canEditOxygenCylinders":false,"canEditReferralFacility":true,"manageBasedOnAssignment":true,"canManageHealthInfraType":true}',
4177
+ },
4178
+ {
4179
+ id: 1,
4180
+ name: 'Users',
4181
+ navigationState: 'techo.manage.users',
4182
+ featureJson:
4183
+ '{"canAdd":true,"canEdit":true,"canUnlockUser":true,"canEditPassword":true,"canEditUserName":true,"canEditBankDetails":true}',
4184
+ },
4185
+ {
4186
+ id: 109,
4187
+ name: 'Web Tasks',
4188
+ navigationState: 'techo.dashboard.webtasks',
4189
+ },
4190
+ {
4191
+ id: 197,
4192
+ name: 'Place of Service Delivery',
4193
+ navigationState: 'techo.manage.servicedeliverylocation',
4194
+ },
4195
+ {
4196
+ id: 4,
4197
+ name: 'Maternal Reports',
4198
+ navigationState: "techo.report.view({id:'dc464f6b-91ad-47d6-b652-609126ac316d'})",
4199
+ isGroup: true,
4200
+ subGroups: [
4201
+ {
4202
+ id: 93,
4203
+ name: 'Pregnant Women Report',
4204
+ navigationState: "techo.report.view({id:'dc464f6b-91ad-47d6-b652-609126ac316d'})",
4205
+ featureJson: '{"canDrillDown":true}',
4206
+ isDynamicReport: true,
4207
+ },
4208
+ {
4209
+ id: 270,
4210
+ name: 'Maternal Death Causewise',
4211
+ navigationState: "techo.report.view({id:'1422e079-a449-4935-9275-b10f69d80341'})",
4212
+ featureJson: '{"canDrillDown":true}',
4213
+ isDynamicReport: true,
4214
+ },
4215
+ {
4216
+ id: 175,
4217
+ name: 'Maternal Health Services Provided During The Year (Monthly)',
4218
+ navigationState: "techo.report.view({id:'b4c2d5f1-96f4-46ef-8afa-0515b63bb10f'})",
4219
+ featureJson: '{"canDrillDown":true}',
4220
+ isDynamicReport: true,
4221
+ },
4222
+ ],
4223
+ featureJson: '{"canDrillDown":true}',
4224
+ isDynamicReport: true,
4225
+ },
4226
+ {
4227
+ id: 349,
4228
+ name: 'Upload User',
4229
+ navigationState: 'techo.manage.uploaduser',
4230
+ featureJson: '{}',
4231
+ },
4232
+ {
4233
+ id: 158,
4234
+ name: 'Mobile Management',
4235
+ navigationState: 'techo.manage.mobilemangementinfo',
4236
+ },
4237
+ {
4238
+ id: 340,
4239
+ name: 'Location Type',
4240
+ navigationState: 'techo.manage.locationtype',
4241
+ featureJson: '{}',
4242
+ },
4243
+ {
4244
+ id: 70,
4245
+ name: 'FHS Family Report',
4246
+ navigationState: 'techo.report.familyreport',
4247
+ featureJson: '{}',
4248
+ },
4249
+ {
4250
+ id: 92,
4251
+ name: 'RCH TRAINING COUNT REPORT',
4252
+ navigationState: "techo.report.view({id:'9a9d3e2e-c5e5-4aa6-adc3-e84a511e5e3d'})",
4253
+ featureJson: '{"canDrillDown":true}',
4254
+ isDynamicReport: true,
4255
+ },
4256
+ {
4257
+ id: 339,
4258
+ name: 'Performance Dashboard',
4259
+ navigationState: 'techo.manage.performancedashboard',
4260
+ featureJson: '{}',
4261
+ },
4262
+ {
4263
+ id: 361,
4264
+ name: 'Create And Link Abha Number',
4265
+ navigationState: 'techo.manage.createAbhaNumber',
4266
+ },
4267
+ {
4268
+ id: 25,
4269
+ name: 'RCH Data Push',
4270
+ navigationState: 'techo.manage.wards',
4271
+ isGroup: true,
4272
+ subGroups: [
4273
+ {
4274
+ id: 259,
4275
+ name: 'Manage Location Wards',
4276
+ navigationState: 'techo.manage.wards',
4277
+ },
4278
+ {
4279
+ id: 315,
4280
+ name: 'RCH Locations',
4281
+ navigationState: 'techo.manage.rchLocations',
4282
+ },
4283
+ ],
4284
+ },
4285
+ {
4286
+ id: 211,
4287
+ name: 'RCH Register',
4288
+ navigationState: 'techo.manage.rchregister',
4289
+ featureJson: '{}',
4290
+ },
4291
+ {
4292
+ id: 369,
4293
+ name: 'Push Notification Configuration',
4294
+ navigationState: 'techo.manage.pushnotification',
4295
+ featureJson: '{"canAccessQueryBased":false\t}',
4296
+ },
4297
+ {
4298
+ id: 375,
4299
+ name: 'Login Health Facility Registry',
4300
+ navigationState: 'techo.manage.loginHfrId',
4301
+ },
4302
+ {
4303
+ id: 345,
4304
+ name: 'SMS Type',
4305
+ navigationState: 'techo.manage.smstype',
4306
+ featureJson: '{}',
4307
+ },
4308
+ {
4309
+ id: 191,
4310
+ name: 'Service Register',
4311
+ navigationState: 'techo.manage.memberserviceregister',
4312
+ featureJson: '{}',
4313
+ },
4314
+ {
4315
+ id: 241,
4316
+ name: 'Mobile App Version Count',
4317
+ navigationState: "techo.report.view({id:'7436038d-30e5-495a-9ead-cbffc292dd31'})",
4318
+ featureJson: '{"canDrillDown":true}',
4319
+ isDynamicReport: true,
4320
+ },
4321
+ {
4322
+ id: 371,
4323
+ name: 'Create Healthcare Professional ID',
4324
+ navigationState: 'techo.manage.createHpId',
4325
+ },
4326
+ {
4327
+ id: 190,
4328
+ name: 'National Programme For Control of Blindness',
4329
+ navigationState: 'techo.manage.npcblist',
4330
+ },
4331
+ {
4332
+ id: 264,
4333
+ name: 'Manage Teams',
4334
+ navigationState: 'techo.manage.teams',
4335
+ featureJson: '{}',
4336
+ },
4337
+ {
4338
+ id: 72,
4339
+ name: 'FHS Work Progress',
4340
+ navigationState: 'techo.manage.fhsworkbargraph',
4341
+ featureJson: '{}',
4342
+ },
4343
+ {
4344
+ id: 182,
4345
+ name: 'State Of Health User Approval',
4346
+ navigationState: 'techo.manage.userhealthapproval',
4347
+ featureJson: '{}',
4348
+ },
4349
+ {
4350
+ id: 177,
4351
+ name: 'Duplicate Member Verification',
4352
+ navigationState: 'techo.manage.duplicateMemberVerification',
4353
+ featureJson: '{}',
4354
+ },
4355
+ {
4356
+ id: 372,
4357
+ name: 'Login Healthcare Professional ID',
4358
+ navigationState: 'techo.manage.loginHpId',
4359
+ },
4360
+ {
4361
+ id: 17,
4362
+ name: 'Locations',
4363
+ navigationState: 'techo.manage.location',
4364
+ featureJson: '{"canAdd":true,"canEdit":false,"canChangeTranslation":true}',
4365
+ },
4366
+ {
4367
+ id: 153,
4368
+ name: 'Manage Migrations',
4369
+ navigationState: 'techo.manage.migrations',
4370
+ featureJson: '{}',
4371
+ },
4372
+ {
4373
+ id: 186,
4374
+ name: 'Upload Document',
4375
+ navigationState: 'techo.manage.uploadDocument',
4376
+ },
4377
+ {
4378
+ id: 15,
4379
+ name: 'Dr. Techo',
4380
+ navigationState: "techo.report.view({id:'5b4e2c7a-a8c0-4247-8d1e-b4914a3422ae'})",
4381
+ isGroup: true,
4382
+ subGroups: [
4383
+ {
4384
+ id: 286,
4385
+ name: 'Dr techo status detail report',
4386
+ navigationState: "techo.report.view({id:'5b4e2c7a-a8c0-4247-8d1e-b4914a3422ae'})",
4387
+ featureJson: '{"canDrillDown":true}',
4388
+ isDynamicReport: true,
4389
+ },
4390
+ ],
4391
+ featureJson: '{"canDrillDown":true}',
4392
+ isDynamicReport: true,
4393
+ },
4394
+ ],
4395
+ },
4396
+ };