@argusoft/medplat-app-shell 1.0.6 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (264) hide show
  1. package/package.json +139 -141
  2. package/src/GlobalErrorBoundary.jsx +31 -0
  3. package/src/SilentErrorFallback.jsx +68 -0
  4. package/src/TrackingProviderWrapper.jsx +40 -0
  5. package/src/_tests_/__mocks__/MockTranslationProvider.jsx +21 -0
  6. package/src/_tests_/__mocks__/ckeditor.js +45 -0
  7. package/src/_tests_/__mocks__/fileMock.js +1 -0
  8. package/src/_tests_/__mocks__/useranalytics.js +5 -0
  9. package/src/_tests_/views/components/Dashboard/DashboardUI.test.jsx +137 -0
  10. package/src/_tests_/views/components/Dashboard/DashboardUIMock.js +877 -0
  11. package/src/_tests_/views/components/ForgotPassword/ForgotPassword.test.jsx +314 -0
  12. package/src/_tests_/views/components/LocationDirective/LocationDirective.test.jsx.disable +229 -0
  13. package/src/_tests_/views/components/LocationDirective/mockLocationDirective.js +810 -0
  14. package/src/_tests_/views/components/LocationType/MockLocationType.js +42259 -0
  15. package/src/_tests_/views/components/LocationType/addlocationtype.test.jsx.disable +276 -0
  16. package/src/_tests_/views/components/LocationType/editlocationtype.test.jsx.disable +262 -0
  17. package/src/_tests_/views/components/LocationType/locationtype.test.jsx.disable +148 -0
  18. package/src/_tests_/views/components/Profile/UpdateProfileModalData.js +4396 -0
  19. package/src/_tests_/views/components/Profile/updateprofilemodal.test.jsx +282 -0
  20. package/src/_tests_/views/components/SideBar/MockSideBar.js +1379 -0
  21. package/src/_tests_/views/components/SideBar/SideBar.test.jsx +98 -0
  22. package/src/_tests_/views/components/SystemConfig/ManageSystemConfig/AddManageSystemConfig.test.jsx.disable +164 -0
  23. package/src/_tests_/views/components/SystemConfig/ManageSystemConfig/UpdateManageSystemConfig.test.jsx.disable +157 -0
  24. package/src/_tests_/views/components/SystemConfig/MockSystemConfig.js +1280 -0
  25. package/src/_tests_/views/components/SystemConfig/SystemConfig.test.jsx.disable +165 -0
  26. package/src/_tests_/views/components/login/Login.test.jsx +276 -0
  27. package/src/_tests_/views/components/login/MockAuthorise.js +2414 -0
  28. package/src/_tests_/views/components/login/ServiceResponse.js +595 -0
  29. package/src/_tests_/views/components/user/MockManageUser.js +7965 -0
  30. package/src/_tests_/views/components/user/manageuser.test.jsx.disable +989 -0
  31. package/src/_tests_/views/components/user/mockUsersData.js +582 -0
  32. package/src/assets/img/OASISLogin.png +0 -0
  33. package/src/assets/img/bahaarNew.png +0 -0
  34. package/src/assets/img/dnhdd4K.png +0 -0
  35. package/src/assets/img/govtofup.png +0 -0
  36. package/src/assets/img/sewarural4K.png +0 -0
  37. package/src/assets/img/techo4K.png +0 -0
  38. package/src/assets/img/up4K.png +0 -0
  39. package/src/common/HolidayList.jsx +573 -0
  40. package/src/common/MalaciaousInputUtil.js +23 -0
  41. package/src/common/SafeHtml.jsx +17 -0
  42. package/src/common/VersionManager.jsx +109 -0
  43. package/src/common/constants/PerformanceDashboard.js +514 -0
  44. package/src/common/constants/app.constant.js +781 -0
  45. package/src/common/constants/cccVerificationConstants.js +18 -0
  46. package/src/common/constants/fhsrConstant.js +33 -0
  47. package/src/common/constants/gvk-verification.constant.js +76 -0
  48. package/src/common/constants/search.constant.js +23 -0
  49. package/src/common/constants/teleconsulatationConstant.jsx +1339 -0
  50. package/src/common/directives/SearchTemplate.jsx +784 -0
  51. package/src/common/directives/SearchTemplate.scss +14 -0
  52. package/src/common/dynamicView/DynamicView.jsx +353 -0
  53. package/src/common/dynamicView/InputFieldComponent.jsx +1501 -0
  54. package/src/common/dynamicView/InputViewComponent.jsx +298 -0
  55. package/src/common/dynamicView/InputViewComponent.scss +15 -0
  56. package/src/common/env.js +5 -0
  57. package/src/common/filters/locationNameFilter.js +26 -0
  58. package/src/common/fontAwesomeIcons/FontAwesomeIcons.jsx +27 -0
  59. package/src/common/fontAwesomeIcons/FontAwesomeIconsNames.js +1968 -0
  60. package/src/common/fontPreferences/fontSizeProvider.jsx +34 -0
  61. package/src/common/fontPreferences/fontSizeSelector.jsx +116 -0
  62. package/src/common/getAssignedFeature/getAssignedFeature.js +32 -0
  63. package/src/common/interceptors/AxiosInterceptor.js +216 -0
  64. package/src/common/languageTranslator/TranslationContext.js +5 -0
  65. package/src/common/languageTranslator/TranslationProvider.jsx +24 -0
  66. package/src/common/languageTranslator/i18n.js +49 -0
  67. package/src/common/services/AuthenticateService.js +116 -0
  68. package/src/common/services/DownloadFile.js +35 -0
  69. package/src/common/services/ForgotPassword.js +18 -0
  70. package/src/common/services/FormConfiguratorService.js +195 -0
  71. package/src/common/services/GlobalApis.js +84 -0
  72. package/src/common/services/InterceptorNavigationService.js +17 -0
  73. package/src/common/services/LocationService.js +65 -0
  74. package/src/common/services/LocationType.js +11 -0
  75. package/src/common/services/QueryBuilder.js +36 -0
  76. package/src/common/services/Roles.js +28 -0
  77. package/src/common/services/SyncWithServer.js +15 -0
  78. package/src/common/services/SystemConfig.js +15 -0
  79. package/src/common/services/TranslationService.js +70 -0
  80. package/src/common/services/TwoFactorService.js +7 -0
  81. package/src/common/services/Users.js +91 -0
  82. package/src/common/services/Webtasks.js +27 -0
  83. package/src/common/services/util/Convert-pad-data-to-API-format.jsx +167 -0
  84. package/src/common/services/util/Convert-to-UI-format.jsx +82 -0
  85. package/src/common/services/util/EmptyPrescriptionPadData.jsx +11 -0
  86. package/src/common/services/util/GeneralUtil.js +456 -0
  87. package/src/common/services/util/Prescription-pad-util.js +339 -0
  88. package/src/common/services/util/PrescriptionPadData.js +67 -0
  89. package/src/common/services/util/PrescriptionpadCommonUtil.js +96 -0
  90. package/src/common/services/util/ReportFieldUtil.jsx +398 -0
  91. package/src/common/services/util/WebSocketContext.jsx +261 -0
  92. package/src/common/syncWithServer/SyncWithServerDialog.jsx +170 -0
  93. package/src/common/syncWithServer/SyncWithServerDialogSkeleton.jsx +67 -0
  94. package/src/common/tests/CustomWrapper.jsx +49 -0
  95. package/src/common/tests/TranslationWrapper.jsx +38 -0
  96. package/src/common/themeProvider/ColorInputs.jsx +97 -0
  97. package/src/common/themeProvider/EditableColorInput.jsx +128 -0
  98. package/src/common/themeProvider/ThemeEditor.jsx +319 -0
  99. package/src/common/themeProvider/ThemeProvider.jsx +210 -0
  100. package/src/common/themeProvider/themeConfig.js +558 -0
  101. package/src/common/toaster/toaster.jsx +30 -0
  102. package/src/firebaseConfig.js +24 -0
  103. package/src/global.scss +221 -0
  104. package/src/hooks/.gitkeep +0 -0
  105. package/src/hooks/useAESEncryption.js +56 -0
  106. package/src/hooks/useCaching.js +43 -0
  107. package/src/hooks/useDebounce.js +34 -0
  108. package/src/hooks/useDebounceFn.js +50 -0
  109. package/src/hooks/useDownloadPdf.js +358 -0
  110. package/src/hooks/useDownloadXlsx.js +55 -0
  111. package/src/hooks/useListValueFieldValues.js +30 -0
  112. package/src/hooks/useLocationHierarchies.js +63 -0
  113. package/src/hooks/useLocationHierarchyTranslate.js +16 -0
  114. package/src/hooks/useOnline.js +27 -0
  115. package/src/hooks/usePagination.js +63 -0
  116. package/src/hooks/useRefreshToken.js +87 -0
  117. package/src/hooks/useScript.js +25 -0
  118. package/src/hooks/useStopwatch.js +75 -0
  119. package/src/hooks/useTrackEvent.js +22 -0
  120. package/src/hooks/useWebAudioRecorder.js +115 -0
  121. package/src/layout/LoaderComponet.jsx +22 -0
  122. package/src/layout/LoaderContext.jsx +29 -0
  123. package/src/layout/mainLayout/AdaptiveZoom.jsx +27 -0
  124. package/src/layout/mainLayout/Chatbot.jsx +243 -0
  125. package/src/layout/mainLayout/Layout.jsx +445 -0
  126. package/src/layout/mainLayout/Profile/UpdateProfileModal.jsx +684 -0
  127. package/src/layout/mainLayout/header/LogoutModal.jsx +131 -0
  128. package/src/layout/mainLayout/header/Navbar.jsx +1677 -0
  129. package/src/layout/mainLayout/header/Navbar.scss +4 -0
  130. package/src/layout/mainLayout/header/index.js +0 -0
  131. package/src/layout/mainLayout/sidebar/SideBar.jsx +1402 -0
  132. package/src/layout/mainLayout/sidebar/Sidebar.css +159 -0
  133. package/src/layout/mainLayout/sidebar/index.js +0 -0
  134. package/src/logo.svg +1 -0
  135. package/src/reportWebVitals.js +13 -0
  136. package/src/setupFirebaseMessaging.js +28 -0
  137. package/src/setupTests.js +8 -0
  138. package/src/store/actions/AuthenticationActions.js +0 -0
  139. package/src/store/actions/ReportsActions.js +0 -0
  140. package/src/store/actions/TranslationAction.js +0 -0
  141. package/src/store/index.js +8 -0
  142. package/src/store/reducer.js +46 -0
  143. package/src/store/reducers/AuthenticationReducer.js +50 -0
  144. package/src/store/reducers/CalendarEventReducer.js +41 -0
  145. package/src/store/reducers/ConditionClipboardReducer.js +45 -0
  146. package/src/store/reducers/FeatureReducer.js +27 -0
  147. package/src/store/reducers/FormConfiguratorReducer.js +38 -0
  148. package/src/store/reducers/LoadingReducer.js +20 -0
  149. package/src/store/reducers/MembersAuthenticationReducer.js +28 -0
  150. package/src/store/reducers/PrescriptionPadReducer.js +329 -0
  151. package/src/store/reducers/QuestionaireReducer.js +29 -0
  152. package/src/store/reducers/ReportsReducer.js +24 -0
  153. package/src/store/reducers/SkeletonReducer.js +20 -0
  154. package/src/store/reducers/ThemeReducer.js +106 -0
  155. package/src/store/reducers/TranslationReducer.js +126 -0
  156. package/src/store/reducers/dashboardEditorSlice.js +77 -0
  157. package/src/store/reducers/districtHealthDashboardSlice.js +58 -0
  158. package/src/store/reducers/immunizationSlice.js +234 -0
  159. package/src/store/slices/dashboardPagesSlice.js +51 -0
  160. package/src/store/slices/dashboardSlice.js +14 -0
  161. package/src/utils/.gitkeep +0 -0
  162. package/src/utils/FormConstants.js +2629 -0
  163. package/src/utils/GujaratTopoChart.jsx +483 -0
  164. package/src/utils/UUIDgenerator.js +8 -0
  165. package/src/utils/appointment-utils/appointment-utils.js +123 -0
  166. package/src/utils/feature.js +42 -0
  167. package/src/utils/getThemeColor.js +12 -0
  168. package/src/utils/localStorageHelper.js +11 -0
  169. package/src/utils/notifications/enable-push-notifications.js +27 -0
  170. package/src/utils/resolveAppliedStyle.js +11 -0
  171. package/src/utils/themeConfigs.js +1483 -0
  172. package/src/views/custom-components/.gitkeep +0 -0
  173. package/src/views/custom-components/AgIconButton/RIf.jsx +14 -0
  174. package/src/views/custom-components/AgIconButton/button.jsx +108 -0
  175. package/src/views/custom-components/AgIconButton/waterDrop.jsx +95 -0
  176. package/src/views/custom-components/AgIconButton/waterDrop.scss +37 -0
  177. package/src/views/custom-components/AlertPlaceholder.jsx +32 -0
  178. package/src/views/custom-components/AllFaIconsSelector.jsx +56 -0
  179. package/src/views/custom-components/CkEditor/CkEditor.js +102 -0
  180. package/src/views/custom-components/CustomAccordion.jsx +72 -0
  181. package/src/views/custom-components/CustomActionIcons.jsx +118 -0
  182. package/src/views/custom-components/CustomAutoComplete.jsx +188 -0
  183. package/src/views/custom-components/CustomCheckBox.jsx +60 -0
  184. package/src/views/custom-components/CustomConfirmationModal.jsx +118 -0
  185. package/src/views/custom-components/CustomCountrySelect.jsx +129 -0
  186. package/src/views/custom-components/CustomDatePicker.jsx +122 -0
  187. package/src/views/custom-components/CustomDropdown.jsx +191 -0
  188. package/src/views/custom-components/CustomFileUpload.jsx +387 -0
  189. package/src/views/custom-components/CustomFullCalendar.jsx +514 -0
  190. package/src/views/custom-components/CustomInfiniteScroll.jsx +126 -0
  191. package/src/views/custom-components/CustomRadioComponent.jsx +65 -0
  192. package/src/views/custom-components/CustomStatsComponent.jsx +114 -0
  193. package/src/views/custom-components/CustomSvgUpload.jsx +170 -0
  194. package/src/views/custom-components/CustomSwitch.jsx +37 -0
  195. package/src/views/custom-components/CustomTabPanel.jsx +19 -0
  196. package/src/views/custom-components/CustomTextArea.jsx +62 -0
  197. package/src/views/custom-components/CustomTextArea.scss +27 -0
  198. package/src/views/custom-components/CustomTextField.jsx +116 -0
  199. package/src/views/custom-components/CustomToggleSwitch.jsx +138 -0
  200. package/src/views/custom-components/CustomTooltip.jsx +51 -0
  201. package/src/views/custom-components/CustomZoomImage.jsx +134 -0
  202. package/src/views/custom-components/CustomizedTable/CustomizedTableV2.jsx +1407 -0
  203. package/src/views/custom-components/CustomizedTable/VirtualizeTableBody.jsx +295 -0
  204. package/src/views/custom-components/CustomizedTable/helper.jsx +159 -0
  205. package/src/views/custom-components/CustomizedTable.jsx +532 -0
  206. package/src/views/custom-components/EditInputField.jsx +174 -0
  207. package/src/views/custom-components/FieldDescription.jsx +22 -0
  208. package/src/views/custom-components/FileDisplayComponent.jsx +138 -0
  209. package/src/views/custom-components/FormItem.jsx +53 -0
  210. package/src/views/custom-components/GenericChart.jsx +80 -0
  211. package/src/views/custom-components/InfoBadge.jsx +60 -0
  212. package/src/views/custom-components/PostgresEditor.jsx +801 -0
  213. package/src/views/custom-components/ResizableEditAutocompleteField.jsx +249 -0
  214. package/src/views/custom-components/ResizableEditInputField.jsx +215 -0
  215. package/src/views/custom-components/ResizeableEditSelectField.jsx +197 -0
  216. package/src/views/custom-components/SideOverlay.jsx +113 -0
  217. package/src/views/custom-components/SideOverlay.scss +42 -0
  218. package/src/views/custom-components/calendar.scss +571 -0
  219. package/src/views/feature-components/.gitkeep +0 -0
  220. package/src/views/feature-components/Dashboard/DashboardUI.jsx +1043 -0
  221. package/src/views/feature-components/Dashboard/DhnddModal/AshaDataQualityVerificationModal.jsx +278 -0
  222. package/src/views/feature-components/Dashboard/PinFeatureModal.jsx +143 -0
  223. package/src/views/feature-components/Dashboard/QuickLinks.jsx +163 -0
  224. package/src/views/feature-components/Dashboard/Taskbar.jsx +56 -0
  225. package/src/views/feature-components/Dashboard/WebtasksFilterForm.jsx +109 -0
  226. package/src/views/feature-components/Dashboard/WidgetCard.jsx +161 -0
  227. package/src/views/feature-components/Dashboard/actionModal.jsx +263 -0
  228. package/src/views/feature-components/Dashboard/ekavachModal/HealthWorkerIncorrectDetailsModal.jsx +332 -0
  229. package/src/views/feature-components/Dashboard/ekavachModal/MoMaternalDeathVerifcationModal.jsx +275 -0
  230. package/src/views/feature-components/Dashboard/ekavachModal/MoVerficationForChildScreeningMoadal.jsx +566 -0
  231. package/src/views/feature-components/FeatureUsageAnalytics/FeatureUsageAnalytics.jsx +989 -0
  232. package/src/views/feature-components/Features/NewServerManagement.jsx +217 -0
  233. package/src/views/feature-components/Features/ServerManagement.scss +120 -0
  234. package/src/views/feature-components/ForgotPassword/ForgotPassword.jsx +226 -0
  235. package/src/views/feature-components/LocationDirective/LocationDirective.jsx +992 -0
  236. package/src/views/feature-components/LocationDirective/LocationDirectiveV2.jsx +909 -0
  237. package/src/views/feature-components/NotFound.jsx +66 -0
  238. package/src/views/feature-components/Onboarding/Onboarding.jsx +1400 -0
  239. package/src/views/feature-components/Skeletons.js +115 -0
  240. package/src/views/feature-components/Unauthorized.jsx +48 -0
  241. package/src/views/feature-components/VerifyRoute.jsx +88 -0
  242. package/src/views/feature-components/YearlyRecap/YearlyRecap.jsx +357 -0
  243. package/src/views/feature-components/YearlyRecap/components/RecapSlide.jsx +183 -0
  244. package/src/views/feature-components/YearlyRecap/languageTranslator/TranslationContext.js +5 -0
  245. package/src/views/feature-components/YearlyRecap/languageTranslator/TranslationProvider.jsx +26 -0
  246. package/src/views/feature-components/YearlyRecap/languageTranslator/i18n.js +46 -0
  247. package/src/views/feature-components/YearlyRecap/languageTranslator/translations.json +167 -0
  248. package/src/views/feature-components/YearlyRecap/slides/IntroSlide.jsx +233 -0
  249. package/src/views/feature-components/YearlyRecap/slides/MaternalHealthSlide.jsx +146 -0
  250. package/src/views/feature-components/YearlyRecap/slides/MetricSlide.jsx +227 -0
  251. package/src/views/feature-components/YearlyRecap/slides/OutroSlide.jsx +701 -0
  252. package/src/views/feature-components/YearlyRecap/slides/ReachSlide.jsx +273 -0
  253. package/src/views/feature-components/login/Login.jsx +840 -0
  254. package/src/views/feature-components/login/Login.scss +154 -0
  255. package/src/views/feature-components/login/LoginConfigurator.jsx +1149 -0
  256. package/src/views/feature-components/login/TwoFactorSetupModal.jsx +411 -0
  257. package/src/views/feature-components/login/simplifyMenu.js +45 -0
  258. package/src/views/feature-components/system-config/ManageSystemConfigs.jsx +284 -0
  259. package/src/views/feature-components/system-config/SystemConfig.jsx +299 -0
  260. package/src/views/feature-components/users/ChangePasswordModal.jsx +243 -0
  261. package/src/views/feature-components/users/PasswordField.jsx +56 -0
  262. package/dist/index.css +0 -1
  263. package/dist/index.js +0 -32001
  264. package/dist/index.js.map +0 -1
@@ -0,0 +1,582 @@
1
+ export const mockUsersData = [
2
+ {
3
+ id: 10,
4
+ userName: 'ajvasava2',
5
+ contactNumber: '7874752209',
6
+ firstName: 'Amitaben',
7
+ lastName: 'parmar',
8
+ roleName: 'ASHA',
9
+ displayState: 'ACTIVE',
10
+ title: 'Mrs',
11
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >limodra >limodara >sukvana',
12
+ },
13
+ {
14
+ id: 47,
15
+ userName: 'arvasava56',
16
+ contactNumber: '7574862246',
17
+ firstName: 'radhika',
18
+ lastName: 'VAGHELA',
19
+ roleName: 'ASHA',
20
+ displayState: 'ACTIVE',
21
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kochbar >Debar >Debar',
22
+ imeiNumber: '359932077567213',
23
+ },
24
+ {
25
+ id: 37,
26
+ userName: 'bbvasava5',
27
+ contactNumber: '6359169076',
28
+ firstName: 'VINABEN',
29
+ lastName: 'MACHHAR',
30
+ roleName: 'ASHA',
31
+ displayState: 'ACTIVE',
32
+ areaOfIntervention:
33
+ 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kantipada >Kantipada >Nishal faliya to Pipli faliya<br>Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kantipada >Kantipada >Forest Company',
34
+ imeiNumber: '359932077567148',
35
+ },
36
+ {
37
+ id: 38,
38
+ userName: 'bvvasava4',
39
+ contactNumber: '6354986451',
40
+ firstName: 'Ambaben',
41
+ lastName: 'PRAJAPATI',
42
+ roleName: 'ASHA',
43
+ displayState: 'ACTIVE',
44
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kantipada >Kantipada >Bhagat faliyu',
45
+ imeiNumber: '359932077567437',
46
+ },
47
+ {
48
+ id: 15,
49
+ userName: 'dipatel5',
50
+ contactNumber: '9913891713',
51
+ firstName: 'BHARTIBEN',
52
+ lastName: 'PANCHAL',
53
+ roleName: 'ASHA',
54
+ displayState: 'ACTIVE',
55
+ title: 'Mrs',
56
+ areaOfIntervention:
57
+ 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >sultanpura >sulatanapura >sulatanapura 4',
58
+ imeiNumber: '359932077517473',
59
+ },
60
+ {
61
+ id: 51,
62
+ userName: 'drvasava37',
63
+ contactNumber: '9586918297',
64
+ firstName: 'KHUSHBU',
65
+ lastName: 'Agravat',
66
+ roleName: 'ASHA',
67
+ displayState: 'ACTIVE',
68
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >THAVA >Bilatha >Bilatha >Bilatha',
69
+ imeiNumber: '359932077563386',
70
+ },
71
+ {
72
+ id: 20,
73
+ userName: 'facjhagadiaone',
74
+ contactNumber: '9998367316',
75
+ firstName: 'Nilambhai',
76
+ lastName: 'Prajapati',
77
+ roleName: 'Asha Facilitator',
78
+ displayState: 'ACTIVE',
79
+ areaOfIntervention: 'Gujarat',
80
+ },
81
+ {
82
+ id: 49,
83
+ userName: 'gvvasava35',
84
+ contactNumber: '9725509531',
85
+ firstName: 'hansha',
86
+ lastName: 'Prajapati',
87
+ roleName: 'ASHA',
88
+ displayState: 'ACTIVE',
89
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kochbar >Kochbar >Kochbar company',
90
+ imeiNumber: '359932077350370',
91
+ },
92
+ {
93
+ id: 31,
94
+ userName: 'hrvasava9',
95
+ contactNumber: '7567472320',
96
+ firstName: 'ANITABEN',
97
+ lastName: 'PANCHAL',
98
+ roleName: 'ASHA',
99
+ displayState: 'ACTIVE',
100
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >shankoi >shankoi >shankoi Ashram faliyu',
101
+ imeiNumber: '359932077567304',
102
+ },
103
+ {
104
+ id: 14,
105
+ userName: 'ipparmar2',
106
+ contactNumber: '7285202475',
107
+ firstName: 'sumitraben',
108
+ lastName: 'Rathwa',
109
+ roleName: 'ASHA',
110
+ displayState: 'ACTIVE',
111
+ title: 'Mrs',
112
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >motasajha >MOTA SANJA >MOTA SANJA',
113
+ imeiNumber: '359932077517291',
114
+ },
115
+ {
116
+ id: 27,
117
+ userName: 'jbvasava4',
118
+ contactNumber: '7574628142',
119
+ firstName: 'KAJALBEN',
120
+ lastName: 'vaghela',
121
+ roleName: 'ASHA',
122
+ displayState: 'ACTIVE',
123
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kharetha >Movi >Movi',
124
+ imeiNumber: '359932077197151',
125
+ },
126
+ {
127
+ id: 42,
128
+ userName: 'jgvasava2',
129
+ contactNumber: '7801984242',
130
+ firstName: 'yogitaben',
131
+ lastName: 'CHAWDA',
132
+ roleName: 'ASHA',
133
+ displayState: 'ACTIVE',
134
+ areaOfIntervention:
135
+ 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Galiba >Galiba >Navi vasahat<br>Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Galiba >Galiba >Mandir faliyu',
136
+ imeiNumber: '359932077308725',
137
+ },
138
+ {
139
+ id: 39,
140
+ userName: 'jjvasava8',
141
+ contactNumber: '6359544553',
142
+ firstName: 'Kishnaben',
143
+ lastName: 'NAI',
144
+ roleName: 'ASHA',
145
+ displayState: 'ACTIVE',
146
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kochbar >Kochbar >Kochbar',
147
+ imeiNumber: '359932077567254',
148
+ },
149
+ {
150
+ id: 25,
151
+ userName: 'jmvasava45',
152
+ contactNumber: '7567568224',
153
+ firstName: 'ASHABENA',
154
+ lastName: 'bhoraniya',
155
+ roleName: 'ASHA',
156
+ displayState: 'ACTIVE',
157
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >MORIYANA >Mota malpor >Mota malpor >Office faliyu',
158
+ imeiNumber: '359932077308659',
159
+ },
160
+ {
161
+ id: 43,
162
+ userName: 'jrvasava7',
163
+ contactNumber: '6359434535',
164
+ firstName: 'Lataben',
165
+ lastName: 'NAYAK',
166
+ roleName: 'ASHA',
167
+ displayState: 'ACTIVE',
168
+ areaOfIntervention:
169
+ 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Galiba >Galiba >School faliyu<br>Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Galiba >Kund >Kund',
170
+ imeiNumber: '359932077308816',
171
+ },
172
+ {
173
+ id: 45,
174
+ userName: 'jrvasava9',
175
+ contactNumber: '7567188492',
176
+ firstName: 'JAMNABEN',
177
+ lastName: 'Rathod',
178
+ roleName: 'ASHA',
179
+ displayState: 'ACTIVE',
180
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Valpor >Valpor >Valpor',
181
+ imeiNumber: '359932077567254',
182
+ },
183
+ {
184
+ id: 18,
185
+ userName: 'kjvasava7',
186
+ contactNumber: '7567185346',
187
+ firstName: 'Manishben',
188
+ lastName: 'Jadav',
189
+ roleName: 'ASHA',
190
+ displayState: 'ACTIVE',
191
+ title: 'Mrs',
192
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >Jhagadia >KHARIA >khareeya',
193
+ imeiNumber: '359932077308840',
194
+ },
195
+ {
196
+ id: 7,
197
+ userName: 'kmvasava9',
198
+ contactNumber: '9974257826',
199
+ firstName: 'JYOTIBEN',
200
+ lastName: 'Patel',
201
+ roleName: 'ASHA',
202
+ displayState: 'ACTIVE',
203
+ title: 'Mrs',
204
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >motasajha >JHAGADIA (2) >MOHAN FALIYU',
205
+ imeiNumber: '359932077517226',
206
+ },
207
+ {
208
+ id: 11,
209
+ userName: 'knvarde',
210
+ contactNumber: '8733446224',
211
+ firstName: 'SUDHABEN',
212
+ lastName: 'ROHIT',
213
+ roleName: 'ASHA',
214
+ displayState: 'ACTIVE',
215
+ title: 'Mrs',
216
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >motasajha >JHAGADIA (2) >JHAGADIA 5',
217
+ imeiNumber: '359932077517424',
218
+ },
219
+ {
220
+ id: 35,
221
+ userName: 'krvasava13',
222
+ contactNumber: '7567301888',
223
+ firstName: 'Priti',
224
+ lastName: 'VINJVA',
225
+ roleName: 'ASHA',
226
+ displayState: 'ACTIVE',
227
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kochbar >Dholekham >Dholekham',
228
+ imeiNumber: '866045043794179',
229
+ },
230
+ {
231
+ id: 41,
232
+ userName: 'ksvasava45',
233
+ contactNumber: '7567744563',
234
+ firstName: 'SAROJBEN',
235
+ lastName: 'CHAUHAN',
236
+ roleName: 'ASHA',
237
+ displayState: 'ACTIVE',
238
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >MORIYANA >Anjoli >Anjoli >Patelfaliyu',
239
+ imeiNumber: '359932077308907',
240
+ },
241
+ {
242
+ id: 3,
243
+ userName: 'lkahir',
244
+ contactNumber: '9825332080',
245
+ firstName: 'Jyotsanaben',
246
+ lastName: 'LALANI',
247
+ roleName: 'ASHA',
248
+ displayState: 'ACTIVE',
249
+ title: 'Mrs',
250
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >ratanpor >simdhara >SIMADHARA',
251
+ imeiNumber: '359932077308717',
252
+ },
253
+ {
254
+ id: 21,
255
+ userName: 'lmjhagadia',
256
+ contactNumber: '9904218869',
257
+ firstName: 'MOHAMMADSOHEB',
258
+ lastName: 'Sathvara',
259
+ roleName: 'Logistics Manager',
260
+ displayState: 'INACTIVE',
261
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA',
262
+ },
263
+ {
264
+ id: 13,
265
+ userName: 'lrvasava2',
266
+ contactNumber: '7567270154',
267
+ firstName: 'Banu',
268
+ lastName: 'Patel',
269
+ roleName: 'ASHA',
270
+ displayState: 'ACTIVE',
271
+ title: 'Mrs',
272
+ areaOfIntervention:
273
+ 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >sultanpura >sulatanapura >sulatanapura 1',
274
+ imeiNumber: '359932077517267',
275
+ },
276
+ {
277
+ id: 8,
278
+ userName: 'mojhagadia',
279
+ contactNumber: '8980693721',
280
+ firstName: 'Pradhumansingh',
281
+ lastName: 'asari',
282
+ roleName: 'MO PHC',
283
+ displayState: 'INACTIVE',
284
+ title: 'Dr',
285
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia',
286
+ },
287
+ {
288
+ id: 9,
289
+ userName: 'mrvasava02',
290
+ contactNumber: '9687420236',
291
+ firstName: 'Samina',
292
+ lastName: 'Patel',
293
+ roleName: 'ASHA',
294
+ displayState: 'ACTIVE',
295
+ title: 'Mrs',
296
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >ratanpor >ratanapore >RATANPOR',
297
+ imeiNumber: '359932077517184',
298
+ },
299
+ {
300
+ id: 46,
301
+ userName: 'mrvasava45',
302
+ contactNumber: '8200334186',
303
+ firstName: 'Geetaben',
304
+ lastName: 'CHAUHAN',
305
+ roleName: 'ASHA',
306
+ displayState: 'ACTIVE',
307
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >MORIYANA >Anjoli >Ramkot >Ramkot',
308
+ imeiNumber: '359932077308923',
309
+ },
310
+ {
311
+ id: 30,
312
+ userName: 'mrvasava8',
313
+ contactNumber: '7874629648',
314
+ firstName: 'Heena',
315
+ lastName: 'BHIL',
316
+ roleName: 'ASHA',
317
+ displayState: 'ACTIVE',
318
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >shankoi >shankoi >Shankoi Patel faliyu',
319
+ imeiNumber: '359932077567288',
320
+ },
321
+ {
322
+ id: 50,
323
+ userName: 'msvasava45',
324
+ contactNumber: '7567222882',
325
+ firstName: 'daliben',
326
+ lastName: 'BARIA',
327
+ roleName: 'ASHA',
328
+ displayState: 'ACTIVE',
329
+ areaOfIntervention:
330
+ 'Gujarat >Vadodara Region >Bharuch >NETRANG >MORIYANA >Moriana >Moriana >Dumalafaliyu<br>Gujarat >Vadodara Region >Bharuch >NETRANG >MORIYANA >Moriana >Moriana >Moriya',
331
+ imeiNumber: '359932077308733',
332
+ },
333
+ {
334
+ id: 23,
335
+ userName: 'msvasava8',
336
+ contactNumber: '9512507427',
337
+ firstName: 'Manharba',
338
+ lastName: 'CHUDASMA',
339
+ roleName: 'ASHA',
340
+ displayState: 'ACTIVE',
341
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Valpor >Rupghat >Rupghat',
342
+ imeiNumber: '359932077393594',
343
+ },
344
+ {
345
+ id: 5,
346
+ userName: 'nlvasava',
347
+ contactNumber: '940844653',
348
+ firstName: 'Ramilaben',
349
+ lastName: 'Ozariya',
350
+ roleName: 'ASHA',
351
+ displayState: 'ACTIVE',
352
+ title: 'Mrs',
353
+ areaOfIntervention:
354
+ 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >motasajha >JHAGADIA (2) >JHAGADIA 6 GAYTRI FALIYU<br>Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >motasajha >JHAGADIA (2) >JHAGADIA 4',
355
+ imeiNumber: '359932077308402',
356
+ loginCode: 'XIDU13',
357
+ },
358
+ {
359
+ id: 22,
360
+ userName: 'nsvasava4',
361
+ contactNumber: '7069969063',
362
+ firstName: 'sabistabanuben',
363
+ lastName: 'PARMAR',
364
+ roleName: 'ASHA',
365
+ displayState: 'ACTIVE',
366
+ title: 'Ms',
367
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kantipada >Timla >Timla',
368
+ imeiNumber: '359932077567239',
369
+ },
370
+ {
371
+ id: 6,
372
+ userName: 'ntmaurya',
373
+ contactNumber: '6359655430',
374
+ firstName: 'Madhuben',
375
+ lastName: 'SOLANKI',
376
+ roleName: 'ASHA',
377
+ displayState: 'ACTIVE',
378
+ title: 'Mrs',
379
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >limodra >Vaghpura >VAGHPURA',
380
+ imeiNumber: '911612001986066',
381
+ },
382
+ {
383
+ id: 12,
384
+ userName: 'pnpatel31',
385
+ contactNumber: '8980859218',
386
+ firstName: 'Hansaben',
387
+ lastName: 'Godhaniya',
388
+ roleName: 'ASHA',
389
+ displayState: 'ACTIVE',
390
+ title: 'Mrs',
391
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >Jhagadia >JAGHADIA >GOKUL NAGAR',
392
+ imeiNumber: '359932077517259',
393
+ },
394
+ {
395
+ id: 36,
396
+ userName: 'pnvasava3',
397
+ contactNumber: '8140602606',
398
+ firstName: 'PARULBEN',
399
+ lastName: 'Roulji',
400
+ roleName: 'ASHA',
401
+ displayState: 'ACTIVE',
402
+ title: 'Mrs',
403
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >limodra >karad >KARAD',
404
+ imeiNumber: '359932077517622',
405
+ },
406
+ {
407
+ id: 28,
408
+ userName: 'prvasava4',
409
+ contactNumber: '7574190074',
410
+ firstName: 'REKHABEN',
411
+ lastName: 'Halpati',
412
+ roleName: 'ASHA',
413
+ displayState: 'ACTIVE',
414
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Galiba >Vandarveli >Vandarveli',
415
+ imeiNumber: '359932077567296',
416
+ },
417
+ {
418
+ id: 17,
419
+ userName: 'rbvasava5',
420
+ contactNumber: '8347382316',
421
+ firstName: 'CHAMPABEN',
422
+ lastName: 'Thakar',
423
+ roleName: 'ASHA',
424
+ displayState: 'ACTIVE',
425
+ title: 'Mrs',
426
+ areaOfIntervention:
427
+ 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >ratanpor >JHAGADIA NAVINAGARI >jagadiya navee nagaree',
428
+ imeiNumber: '359932077308774',
429
+ },
430
+ {
431
+ id: 33,
432
+ userName: 'rcvasava45',
433
+ contactNumber: '7567958224',
434
+ firstName: 'RIZVANABEN',
435
+ lastName: 'Purani',
436
+ roleName: 'ASHA',
437
+ displayState: 'ACTIVE',
438
+ areaOfIntervention:
439
+ 'Gujarat >Vadodara Region >Bharuch >NETRANG >MORIYANA >Mota malpor >Mota malpor >Tekrafaliyu<br>Gujarat >Vadodara Region >Bharuch >NETRANG >MORIYANA >Moriana >Gambhirpura >Gambhirpura',
440
+ imeiNumber: '359932077393420',
441
+ },
442
+ {
443
+ id: 29,
444
+ userName: 'savasava14',
445
+ contactNumber: '972466718',
446
+ firstName: 'Kanchanben',
447
+ lastName: 'Halpati',
448
+ roleName: 'ASHA',
449
+ displayState: 'ACTIVE',
450
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >shankoi >shankoi >Shankoi faliyu',
451
+ imeiNumber: '359932077567338',
452
+ },
453
+ {
454
+ id: 4,
455
+ userName: 'savasava9',
456
+ contactNumber: '7574443311',
457
+ firstName: 'Hetalben',
458
+ lastName: 'BAMBHANIYA',
459
+ roleName: 'ASHA',
460
+ displayState: 'ACTIVE',
461
+ title: 'Mrs',
462
+ areaOfIntervention:
463
+ 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >Jhagadia >JAGHADIA >TEKARA FALIYA<br>Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >Jhagadia >JAGHADIA >TAVAR ROAD<br>Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >Jhagadia >JAGHADIA >POLICE LINE<br>Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >Jhagadia >JAGHADIA >NARHARI CHAL',
464
+ imeiNumber: '359932077517515',
465
+ },
466
+ {
467
+ id: 32,
468
+ userName: 'sbvasava9',
469
+ contactNumber: '8758266875',
470
+ firstName: 'GITABEN',
471
+ lastName: 'sodha',
472
+ roleName: 'ASHA',
473
+ displayState: 'ACTIVE',
474
+ areaOfIntervention:
475
+ 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kharetha >Kharetha >Rajpipla Netrang mukhya marg',
476
+ imeiNumber: '359932077567478',
477
+ },
478
+ {
479
+ id: 34,
480
+ userName: 'scvasava7',
481
+ contactNumber: '8347913676',
482
+ firstName: 'bharati',
483
+ lastName: 'Chavda',
484
+ roleName: 'ASHA',
485
+ displayState: 'ACTIVE',
486
+ title: 'Mrs',
487
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kantipada >jarana >Zarna',
488
+ imeiNumber: '359932077567080',
489
+ },
490
+ {
491
+ id: 40,
492
+ userName: 'sdvasava55',
493
+ contactNumber: '6352582195',
494
+ firstName: 'PANCHIBEN',
495
+ lastName: 'KAPURIYA',
496
+ roleName: 'ASHA',
497
+ displayState: 'ACTIVE',
498
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >MORIYANA >Anjoli >Anjoli >Sarpanchfaliyu',
499
+ imeiNumber: '359932077308386',
500
+ },
501
+ {
502
+ id: 19,
503
+ userName: 'srvasava15',
504
+ contactNumber: '7567367408',
505
+ firstName: 'PUSHPABEN',
506
+ lastName: 'KOLI',
507
+ roleName: 'ASHA',
508
+ displayState: 'ACTIVE',
509
+ title: 'Mrs',
510
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >limodra >limodara >leemodra 2',
511
+ imeiNumber: '359932077308857',
512
+ },
513
+ {
514
+ id: 44,
515
+ userName: 'ssvasava50',
516
+ contactNumber: '982413458',
517
+ firstName: 'HANSHABEN',
518
+ lastName: 'vadhu',
519
+ roleName: 'ASHA',
520
+ displayState: 'ACTIVE',
521
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Valpor >Fichvada >Fichvada',
522
+ imeiNumber: '359932077567353',
523
+ },
524
+ {
525
+ id: 1,
526
+ userName: 'superadmin',
527
+ contactNumber: '7069209012',
528
+ firstName: 'Super',
529
+ lastName: 'Admin',
530
+ roleName: 'Super Admin',
531
+ displayState: 'ACTIVE',
532
+ areaOfIntervention: 'Gujarat',
533
+ },
534
+ {
535
+ id: 26,
536
+ userName: 'trvasava2',
537
+ contactNumber: '9924139222',
538
+ firstName: 'DEVALIBEN',
539
+ lastName: 'RAJPUT',
540
+ roleName: 'ASHA',
541
+ displayState: 'ACTIVE',
542
+ areaOfIntervention:
543
+ 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kharetha >Kharetha >Anganvadi faliyu<br>Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kharetha >Kharetha >Mandir faliyu',
544
+ imeiNumber: '359932077567221',
545
+ },
546
+ {
547
+ id: 16,
548
+ userName: 'vdvasava6',
549
+ contactNumber: '8980859506',
550
+ firstName: 'Savitaben',
551
+ lastName: 'Goradiya',
552
+ roleName: 'ASHA',
553
+ displayState: 'ACTIVE',
554
+ title: 'Mrs',
555
+ areaOfIntervention:
556
+ 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >limodra >kunvarpara >KUVAR PARA<br>Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >limodra >હરીપુરા >hareepara',
557
+ imeiNumber: '359932077517341',
558
+ },
559
+ {
560
+ id: 48,
561
+ userName: 'vrbhagat',
562
+ contactNumber: '8980553802',
563
+ firstName: 'Sarifabibi',
564
+ lastName: 'gahla',
565
+ roleName: 'ASHA',
566
+ displayState: 'ACTIVE',
567
+ title: 'Mrs',
568
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >JHAGADIA >Jhagadia >limodra >andharkachala >ANDHARKACHALA',
569
+ imeiNumber: '359932077517507',
570
+ },
571
+ {
572
+ id: 24,
573
+ userName: 'vvvasava1',
574
+ contactNumber: '8238463175',
575
+ firstName: 'KAPILABEN',
576
+ lastName: 'KARMUR',
577
+ roleName: 'ASHA',
578
+ displayState: 'ACTIVE',
579
+ areaOfIntervention: 'Gujarat >Vadodara Region >Bharuch >NETRANG >KHARETHA >Kharetha >Yaal >Yaal',
580
+ imeiNumber: '359932077567460',
581
+ },
582
+ ];
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file