@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,877 @@
1
+ export const mockGetCountResponse = {
2
+ data: [
3
+ {
4
+ id: 83,
5
+ name: '12qwqqdq',
6
+ count: 0,
7
+ dueCount: 0,
8
+ colorCode: null,
9
+ orderNo: 123232,
10
+ webTasks: null,
11
+ isLocationBasedFilterRequired: null,
12
+ fetchUptoLevel: null,
13
+ requiredUptoLevel: null,
14
+ isFetchAccordingAOI: null,
15
+ },
16
+ {
17
+ id: 63,
18
+ name: 'MO death verification from CHFC',
19
+ count: 45,
20
+ dueCount: 0,
21
+ colorCode: null,
22
+ orderNo: null,
23
+ webTasks: null,
24
+ isLocationBasedFilterRequired: null,
25
+ fetchUptoLevel: null,
26
+ requiredUptoLevel: null,
27
+ isFetchAccordingAOI: null,
28
+ },
29
+ {
30
+ id: 16,
31
+ name: 'Still Birth Verification Mo',
32
+ count: 3,
33
+ dueCount: 0,
34
+ colorCode: '#467d22',
35
+ orderNo: null,
36
+ webTasks: null,
37
+ isLocationBasedFilterRequired: true,
38
+ fetchUptoLevel: 6,
39
+ requiredUptoLevel: 1,
40
+ isFetchAccordingAOI: true,
41
+ },
42
+ {
43
+ id: 62,
44
+ name: 'CFHC- confirmed disease',
45
+ count: 0,
46
+ dueCount: 0,
47
+ colorCode: '#900404',
48
+ orderNo: null,
49
+ webTasks: null,
50
+ isLocationBasedFilterRequired: true,
51
+ fetchUptoLevel: 6,
52
+ requiredUptoLevel: 1,
53
+ isFetchAccordingAOI: null,
54
+ },
55
+ {
56
+ id: 82,
57
+ name: 'ABCD',
58
+ count: 0,
59
+ dueCount: 0,
60
+ colorCode: null,
61
+ orderNo: null,
62
+ webTasks: null,
63
+ isLocationBasedFilterRequired: null,
64
+ fetchUptoLevel: null,
65
+ requiredUptoLevel: null,
66
+ isFetchAccordingAOI: null,
67
+ },
68
+ {
69
+ id: 15,
70
+ name: 'Twin Deliveries Verification',
71
+ count: 5,
72
+ dueCount: 0,
73
+ colorCode: '#7d78e9',
74
+ orderNo: null,
75
+ webTasks: null,
76
+ isLocationBasedFilterRequired: true,
77
+ fetchUptoLevel: 6,
78
+ requiredUptoLevel: 1,
79
+ isFetchAccordingAOI: true,
80
+ },
81
+ {
82
+ id: 26,
83
+ name: 'Child High Risk Notification Mo',
84
+ count: 32,
85
+ dueCount: 0,
86
+ colorCode: '#fa1638',
87
+ orderNo: null,
88
+ webTasks: null,
89
+ isLocationBasedFilterRequired: true,
90
+ fetchUptoLevel: 6,
91
+ requiredUptoLevel: 1,
92
+ isFetchAccordingAOI: true,
93
+ },
94
+ {
95
+ id: 57,
96
+ name: 'CHO-HWC Not Logged In for 4 days',
97
+ count: 0,
98
+ dueCount: 0,
99
+ colorCode: null,
100
+ orderNo: null,
101
+ webTasks: null,
102
+ isLocationBasedFilterRequired: true,
103
+ fetchUptoLevel: 6,
104
+ requiredUptoLevel: 1,
105
+ isFetchAccordingAOI: null,
106
+ },
107
+ {
108
+ id: 24,
109
+ name: 'High Risk Notification MO',
110
+ count: 45,
111
+ dueCount: 0,
112
+ colorCode: '#df0000',
113
+ orderNo: 6,
114
+ webTasks: null,
115
+ isLocationBasedFilterRequired: true,
116
+ fetchUptoLevel: 6,
117
+ requiredUptoLevel: 1,
118
+ isFetchAccordingAOI: true,
119
+ },
120
+ {
121
+ id: 61,
122
+ name: 'CFHC - suspected Disease',
123
+ count: 181,
124
+ dueCount: 0,
125
+ colorCode: '#a9012f',
126
+ orderNo: null,
127
+ webTasks: null,
128
+ isLocationBasedFilterRequired: true,
129
+ fetchUptoLevel: 8,
130
+ requiredUptoLevel: 1,
131
+ isFetchAccordingAOI: true,
132
+ },
133
+ {
134
+ id: 33,
135
+ name: 'THO Not Logged in for Last 4 Days',
136
+ count: 0,
137
+ dueCount: 0,
138
+ colorCode: null,
139
+ orderNo: null,
140
+ webTasks: null,
141
+ isLocationBasedFilterRequired: true,
142
+ fetchUptoLevel: 6,
143
+ requiredUptoLevel: 1,
144
+ isFetchAccordingAOI: true,
145
+ },
146
+ ],
147
+ };
148
+
149
+ export const mockRetrieveBasketPreferenceByUserIdResponse = {
150
+ data: {
151
+ taskbar: 'show',
152
+ baskets: [62, 33, 26, 16],
153
+ },
154
+ };
155
+
156
+ export const mockGetWebtasksBasketDetailsResponse = {
157
+ data: [
158
+ {
159
+ taskId: 53092160,
160
+ details: {
161
+ Name: 'કિરણ કીરણસિંહ કાપડી(A114135436N)',
162
+ 'Date of delivery': '18-11-2020',
163
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > અસલાલી > અસલાલી',
164
+ 'Family Contact Detail': 'રાજુ શંભુભાઇ સુજિત્રા (N/A)',
165
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
166
+ },
167
+ actions: null,
168
+ isActionRequired: true,
169
+ isOtherDetailsRequired: false,
170
+ selectedAction: null,
171
+ otherDetail: null,
172
+ },
173
+ {
174
+ taskId: 53265080,
175
+ details: {
176
+ Name: 'મીનાબેન હાર્દિક ભોઈ(A115471378N)',
177
+ 'Date of delivery': '01-02-2021',
178
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > અસલાલી > અસલાલી > પકોડી વાળાના મકાન',
179
+ 'Family Contact Detail': ' (N/A)',
180
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
181
+ },
182
+ actions: null,
183
+ isActionRequired: true,
184
+ isOtherDetailsRequired: false,
185
+ selectedAction: null,
186
+ otherDetail: null,
187
+ },
188
+ {
189
+ taskId: 53800401,
190
+ details: {
191
+ Name: 'શ્રધ્ધાબેન રાકેશભાઈ જોષી(A91357056N)',
192
+ 'Date of delivery': '05-08-2021',
193
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > અસલાલી > અસલાલી > વણકર વાસ',
194
+ 'Family Contact Detail': 'શ્રધ્ધાબેન રાકેશભાઈ જોષી (9265911125)',
195
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
196
+ },
197
+ actions: null,
198
+ isActionRequired: true,
199
+ isOtherDetailsRequired: false,
200
+ selectedAction: null,
201
+ otherDetail: null,
202
+ },
203
+ ],
204
+ };
205
+
206
+ export const mockDeathVerificationDetailsResponse = {
207
+ data: [
208
+ {
209
+ taskId: 42221777,
210
+ details: {
211
+ Name: 'વૈભવ વિરેન્દ્રભાઈ ઠાકોર(A014270476)(FM/2009/2838470)',
212
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > પ્રજાપતિ વાસ',
213
+ 'Death Date': '21/03/2013',
214
+ 'Family Contact Detail': 'ઈન્દ્રજીતસિંહ ભગવાનદાસ ચુુનારા (9664126622)',
215
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
216
+ },
217
+ actions: null,
218
+ isActionRequired: true,
219
+ isOtherDetailsRequired: false,
220
+ selectedAction: null,
221
+ otherDetail: null,
222
+ },
223
+ {
224
+ taskId: 42221779,
225
+ details: {
226
+ Name: 'વર્ષાબેન જીજ્ઞેશભાઈ અગ્રવાલ(A014334551)(FM/2009/2851013)',
227
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > પટેલ વાસ',
228
+ 'Death Date': '21/03/2012',
229
+ 'Family Contact Detail': 'વિસતભાઈ ધરમભાઈ ઠાકોર (9104535311)',
230
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
231
+ },
232
+ actions: null,
233
+ isActionRequired: true,
234
+ isOtherDetailsRequired: false,
235
+ selectedAction: null,
236
+ otherDetail: null,
237
+ },
238
+ {
239
+ taskId: 42310044,
240
+ details: {
241
+ Name: 'મુકુલ વિજય ઠાકોર(A010635755)(FM/2009/2121732)',
242
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > ભોઈ વાસ',
243
+ 'Death Date': '22/03/2017',
244
+ 'Family Contact Detail': 'દશરથભાઈ પદ્મશાલી (9925436091)',
245
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
246
+ },
247
+ actions: null,
248
+ isActionRequired: true,
249
+ isOtherDetailsRequired: false,
250
+ selectedAction: null,
251
+ otherDetail: null,
252
+ },
253
+ {
254
+ taskId: 42401284,
255
+ details: {
256
+ Name: 'રુદ્રાક્ષ પ્રકાશભાઈ સોનારા(A019791084)(FM/2009/3796582)',
257
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > પાલડી-કાંકજ > પાલડી-કાંકજ > ચુનારા વાસ',
258
+ 'Death Date': '13/05/2019',
259
+ 'Family Contact Detail': 'વાસુદેવ દલસુખભાઈ મોદ (9737309198)',
260
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
261
+ },
262
+ actions: null,
263
+ isActionRequired: true,
264
+ isOtherDetailsRequired: false,
265
+ selectedAction: null,
266
+ otherDetail: null,
267
+ },
268
+ {
269
+ taskId: 42488459,
270
+ details: {
271
+ Name: 'રેખાબેન માનસુખભાઈ રાજગોર(A016216451)(FM/2010/3136997)',
272
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > વસઇ > મહીજડા > ઠાકોર વાસ',
273
+ 'Death Date': '23/02/2017',
274
+ 'Family Contact Detail': 'પંકજ ધનજીભાઈ ઠાકોર (N/A)',
275
+ 'FHW Name': 'REKHABEN SADIYA(jlparmar1) (9909459457)',
276
+ },
277
+ actions: null,
278
+ isActionRequired: true,
279
+ isOtherDetailsRequired: false,
280
+ selectedAction: null,
281
+ otherDetail: null,
282
+ },
283
+ {
284
+ taskId: 43028316,
285
+ details: {
286
+ Name: 'મંજુલા મહેશભાઈ પટેલ(A016601412)(FM/2010/3183344)',
287
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > વસઇ > મહીજડા > ઠાકોર વાસ',
288
+ 'Death Date': '26/10/2018',
289
+ 'Family Contact Detail': 'બેબી(નિલમબેન હરિનભાઇ રાવલ) નરેશભાઈ પટેલ (7046152480)',
290
+ 'FHW Name': 'REKHABEN SADIYA(jlparmar1) (9909459457)',
291
+ },
292
+ actions: null,
293
+ isActionRequired: true,
294
+ isOtherDetailsRequired: false,
295
+ selectedAction: null,
296
+ otherDetail: null,
297
+ },
298
+ {
299
+ taskId: 43120469,
300
+ details: {
301
+ Name: 'દક્ષા બેન વિજય પ્રજાપતિ(A006704480)(FM/2009/1348584)',
302
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ટીંબા > દરબાર વાસ',
303
+ 'Death Date': '31/03/2013',
304
+ 'Family Contact Detail': 'સુયૅજીત - શર્મા (9924341703)',
305
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
306
+ },
307
+ actions: null,
308
+ isActionRequired: true,
309
+ isOtherDetailsRequired: false,
310
+ selectedAction: null,
311
+ otherDetail: null,
312
+ },
313
+ {
314
+ taskId: 43120470,
315
+ details: {
316
+ Name: 'હંસાબેન ભાગઁવ કશવાલ(A016639383)(FM/2010/3187949)',
317
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ટીંબા > ઠાકોર વાસ',
318
+ 'Death Date': '31/03/2015',
319
+ 'Family Contact Detail': 'રેનીશ નવીનભાઈ ભરવાડ (958640101)',
320
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
321
+ },
322
+ actions: null,
323
+ isActionRequired: true,
324
+ isOtherDetailsRequired: false,
325
+ selectedAction: null,
326
+ otherDetail: null,
327
+ },
328
+ {
329
+ taskId: 43120471,
330
+ details: {
331
+ Name: 'મીરાબેન વિષ્ણુભાઈ પટણી(A013640002)(FM/2009/2714500)',
332
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > ઠાકોરવાસ',
333
+ 'Death Date': '31/03/2015',
334
+ 'Family Contact Detail': 'પુનમ હીરાભાઈ બારડ (7600414110)',
335
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
336
+ },
337
+ actions: null,
338
+ isActionRequired: true,
339
+ isOtherDetailsRequired: false,
340
+ selectedAction: null,
341
+ otherDetail: null,
342
+ },
343
+ {
344
+ taskId: 43212440,
345
+ details: {
346
+ Name: 'કેલવી સુરેશભાઈ પટેલ(A016279123)(FM/2010/3145043)',
347
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > વસઇ > મહીજડા > ઠાકોર વાસ',
348
+ 'Death Date': '10/06/2014',
349
+ 'Family Contact Detail': 'મયંક દિનેશભાઈ ચૌહાણ (N/A)',
350
+ 'FHW Name': 'REKHABEN SADIYA(jlparmar1) (9909459457)',
351
+ },
352
+ actions: null,
353
+ isActionRequired: true,
354
+ isOtherDetailsRequired: false,
355
+ selectedAction: null,
356
+ otherDetail: null,
357
+ },
358
+ {
359
+ taskId: 43398670,
360
+ details: {
361
+ Name: 'મોહિત પી પટેલ(A90766010N)(FM/2018/2527462N)',
362
+ Location:
363
+ 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ કોર્પોરેશન > ઉત્તર ઝોન > ઇન્ડીયા કોલોની > ઇન્ડીયા કોલોની 2 > માર્તુશકિત સોસાયટી > માર્તુશકિત સોસાયટી',
364
+ 'Death Date': '04/01/2018',
365
+ 'Family Contact Detail': 'બાબો વનરાજભાઇ ભોઈ કિરણ પ્રજાપતિ (9924761897)',
366
+ 'FHW Name': 'Sonbai Vankar(udparmar9) (7069506393)',
367
+ },
368
+ actions: null,
369
+ isActionRequired: true,
370
+ isOtherDetailsRequired: false,
371
+ selectedAction: null,
372
+ otherDetail: null,
373
+ },
374
+ {
375
+ taskId: 43399961,
376
+ details: {
377
+ Name: 'હીના ધૂળાભાઇ સૈયદ(A85000857N)(FM/2018/1524309N)',
378
+ Location:
379
+ 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ કોર્પોરેશન > ઉત્તર ઝોન > ઇન્ડીયા કોલોની > ઇન્ડીયા કોલોની 2 > માર્તુશકિત સોસાયટી > માર્તુશકિત સોસાયટી',
380
+ 'Death Date': '14/06/2018',
381
+ 'Family Contact Detail': 'ગણપતભાઈ હેમચંદભાઇ ગોહિલ (9726475129)',
382
+ 'FHW Name': 'Sonbai Vankar(udparmar9) (7069506393)',
383
+ },
384
+ actions: null,
385
+ isActionRequired: true,
386
+ isOtherDetailsRequired: false,
387
+ selectedAction: null,
388
+ otherDetail: null,
389
+ },
390
+ {
391
+ taskId: 43399962,
392
+ details: {
393
+ Name: 'મુકેશ લાદુજી ચુનારા(A013638656)(FM/2009/2714247)',
394
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > દરબારવાસ',
395
+ 'Death Date': '01/04/2015',
396
+ 'Family Contact Detail': 'શ્રીનિવાસ મનજિભાઇ ભોઇ (9898476598)',
397
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
398
+ },
399
+ actions: null,
400
+ isActionRequired: true,
401
+ isOtherDetailsRequired: false,
402
+ selectedAction: null,
403
+ otherDetail: null,
404
+ },
405
+ {
406
+ taskId: 43399963,
407
+ details: {
408
+ Name: 'કિશ રતીલાલ રાવળ(A013669267)(FM/2009/2720273)',
409
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > દરબારવાસ',
410
+ 'Death Date': '03/04/2014',
411
+ 'Family Contact Detail': 'બેબી(વ‍િજયાબેન દેવકરણભાઇ ચાવડા મનુભાઈ ચુનારા (N/A)',
412
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
413
+ },
414
+ actions: null,
415
+ isActionRequired: true,
416
+ isOtherDetailsRequired: false,
417
+ selectedAction: null,
418
+ otherDetail: null,
419
+ },
420
+ {
421
+ taskId: 43399964,
422
+ details: {
423
+ Name: 'યશવંત કનુભાઇ પરમાર(A013684389)(FM/2009/2723111)',
424
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > દરબારવાસ',
425
+ 'Death Date': '03/03/2016',
426
+ 'Family Contact Detail': 'મણીબેન રમેશભાઈ વાઘેલા (9426618800)',
427
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
428
+ },
429
+ actions: null,
430
+ isActionRequired: true,
431
+ isOtherDetailsRequired: false,
432
+ selectedAction: null,
433
+ otherDetail: null,
434
+ },
435
+ {
436
+ taskId: 43400399,
437
+ details: {
438
+ Name: 'નિરંજનાબેન પ્રતાપજી ઠાકકર(A85799836N)(FM/2018/1617642N)',
439
+ Location:
440
+ 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ કોર્પોરેશન > ઉત્તર ઝોન > ઇન્ડીયા કોલોની > ઇન્ડીયા કોલોની 5 > આમ્રપાલી ફલેટ > આમ્રપાલી ફલેટ',
441
+ 'Death Date': '02/03/2019',
442
+ 'Family Contact Detail': 'હષઁદભાઇ શંભુભાઈ ખીમાણી (7984838498)',
443
+ 'FHW Name': 'BINAL Mehta(lnkhant) (7573619528)',
444
+ },
445
+ actions: null,
446
+ isActionRequired: true,
447
+ isOtherDetailsRequired: false,
448
+ selectedAction: null,
449
+ otherDetail: null,
450
+ },
451
+ {
452
+ taskId: 43401674,
453
+ details: {
454
+ Name: 'સીતારામ - ઠાકોર(A038654751)(FM/2009/7449186)',
455
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > મીરોલી > મીરોલી > પટેલ વાસ',
456
+ 'Death Date': '25/11/2014',
457
+ 'Family Contact Detail': 'પાયલ જયંતિલાલ ચુનારા (992482160)',
458
+ 'FHW Name': 'Jayshreeben Maru(vmtrivedi2) (9537598807)',
459
+ },
460
+ actions: null,
461
+ isActionRequired: true,
462
+ isOtherDetailsRequired: false,
463
+ selectedAction: null,
464
+ otherDetail: null,
465
+ },
466
+ {
467
+ taskId: 43490302,
468
+ details: {
469
+ Name: 'વીરલભાઇ નાથાભાઇ ભરવાડ(A013702406)(FM/2009/2726368)',
470
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > દરબારવાસ',
471
+ 'Death Date': '04/04/2017',
472
+ 'Family Contact Detail': 'ગજાનન સુરેશભાઈ ઠાકોર (N/A)',
473
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
474
+ },
475
+ actions: null,
476
+ isActionRequired: true,
477
+ isOtherDetailsRequired: false,
478
+ selectedAction: null,
479
+ otherDetail: null,
480
+ },
481
+ {
482
+ taskId: 43490306,
483
+ details: {
484
+ Name: 'વિશ્વાસ જીતેન્દ્ર (A010222758)(FM/2009/2040616)',
485
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > ઠાકોરવાસ',
486
+ 'Death Date': '04/02/2015',
487
+ 'Family Contact Detail': 'અલકા હેમંતકુમાર પટેલ (9173685727)',
488
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
489
+ },
490
+ actions: null,
491
+ isActionRequired: true,
492
+ isOtherDetailsRequired: false,
493
+ selectedAction: null,
494
+ otherDetail: null,
495
+ },
496
+ {
497
+ taskId: 43571450,
498
+ details: {
499
+ Name: 'રમણલાલ કેતનભાઇ ચૌહાણ(A010603097)(FM/2009/2115361)',
500
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > ભંગી વાસ',
501
+ 'Death Date': '04/04/2017',
502
+ 'Family Contact Detail': ' (N/A)',
503
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
504
+ },
505
+ actions: null,
506
+ isActionRequired: true,
507
+ isOtherDetailsRequired: false,
508
+ selectedAction: null,
509
+ otherDetail: null,
510
+ },
511
+ {
512
+ taskId: 43573658,
513
+ details: {
514
+ Name: 'દેવાંગ અજમલભાઇ ઠાકોર(A016930666)(FM/2009/3232214)',
515
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > મેલડી ઓરડી',
516
+ 'Death Date': '05/04/2010',
517
+ 'Family Contact Detail': 'સોમાભાઇ વાડીલાલ પરમાર (N/A)',
518
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
519
+ },
520
+ actions: null,
521
+ isActionRequired: true,
522
+ isOtherDetailsRequired: false,
523
+ selectedAction: null,
524
+ otherDetail: null,
525
+ },
526
+ {
527
+ taskId: 43669656,
528
+ details: {
529
+ Name: 'ગલાબભાઇ પંકજભાઈ મહેતા(A010543892)(FM/2009/2103752)',
530
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > ઠાકોરવાસ',
531
+ 'Death Date': '06/04/2017',
532
+ 'Family Contact Detail': 'રાજુબેન જશુભાઇ ભોઇ (987957044)',
533
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
534
+ },
535
+ actions: null,
536
+ isActionRequired: true,
537
+ isOtherDetailsRequired: false,
538
+ selectedAction: null,
539
+ otherDetail: null,
540
+ },
541
+ {
542
+ taskId: 43670043,
543
+ details: {
544
+ Name: 'સાહીલ કીરણ ચુનારા કીરણ ચુનારા ઘર્મેશભાઇ -(A016045567)(FM/2010/3115744)',
545
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > માળી વાસ',
546
+ 'Death Date': '06/04/2019',
547
+ 'Family Contact Detail': 'ધીરજ ધીરુભાઈ શાહ (N/A)',
548
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
549
+ },
550
+ actions: null,
551
+ isActionRequired: true,
552
+ isOtherDetailsRequired: false,
553
+ selectedAction: null,
554
+ otherDetail: null,
555
+ },
556
+ {
557
+ taskId: 43670044,
558
+ details: {
559
+ Name: 'સોહિલ વિઠ્ઠલભાઈ પટેલ(A016030010)(FM/2010/3113946)',
560
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > ઓડ > ઓડ > માળી વાસ',
561
+ 'Death Date': '06/04/2019',
562
+ 'Family Contact Detail': 'જયશ્રીબેન પ્રકાશભાઈ (9925649795)',
563
+ 'FHW Name': 'Urmilaben khadam(pcsumesra) (6359359250)',
564
+ },
565
+ actions: null,
566
+ isActionRequired: true,
567
+ isOtherDetailsRequired: false,
568
+ selectedAction: null,
569
+ otherDetail: null,
570
+ },
571
+ {
572
+ taskId: 43854850,
573
+ details: {
574
+ Name: 'ચતુરભાઇ પ્રવિણભાઈ પટેલ(A88996956N)(FM/2018/2146429N)',
575
+ Location:
576
+ 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ કોર્પોરેશન > ઉત્તર ઝોન > ઇન્ડીયા કોલોની > ઇન્ડીયા કોલોની 6 > પ્રતિક ટેનામેન્ટ > દર્શિલ',
577
+ 'Death Date': '16/01/2020',
578
+ 'Family Contact Detail': 'સતિશ ભાઈ ઘર્મેશભાઇ ચોહાણ (9824253354)',
579
+ 'FHW Name': 'Niketa Vankar(kndabhi1) (7265711632)',
580
+ },
581
+ actions: null,
582
+ isActionRequired: true,
583
+ isOtherDetailsRequired: false,
584
+ selectedAction: null,
585
+ otherDetail: null,
586
+ },
587
+ {
588
+ taskId: 43854851,
589
+ details: {
590
+ Name: ' અલ્પાબેન જયરામભાઇ ઠાકોર(A043737189)(FM/2009/8424356)',
591
+ Location:
592
+ 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ કોર્પોરેશન > ઉત્તર ઝોન > ઇન્ડીયા કોલોની > ઇન્ડીયા કોલોની 6 > પૂજન ફલેટ > દીપક ભાવના સોસાયટી',
593
+ 'Death Date': '04/11/2015',
594
+ 'Family Contact Detail': 'રમેશભાઈ જીવા અગ્રવાલ (9974589380)',
595
+ 'FHW Name': 'Niketa Vankar(kndabhi1) (7265711632)',
596
+ },
597
+ actions: null,
598
+ isActionRequired: true,
599
+ isOtherDetailsRequired: false,
600
+ selectedAction: null,
601
+ otherDetail: null,
602
+ },
603
+ {
604
+ taskId: 44671196,
605
+ details: {
606
+ Name: 'બંસી અમિત પાડેય(A83038263N)(FM/2018/1316637N)',
607
+ Location:
608
+ 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ કોર્પોરેશન > ઉત્તર ઝોન > ઇન્ડીયા કોલોની > ઇન્ડીયા કોલોની 6 > અંજલી ફલેટ > શ્રધ્ધા એપાર્ટમેન્ટ',
609
+ 'Death Date': '31/05/2016',
610
+ 'Family Contact Detail': 'પંકજભાઇ પુજાજી રાઠોડ (9913484312)',
611
+ 'FHW Name': 'Niketa Vankar(kndabhi1) (7265711632)',
612
+ },
613
+ actions: null,
614
+ isActionRequired: true,
615
+ isOtherDetailsRequired: false,
616
+ selectedAction: null,
617
+ otherDetail: null,
618
+ },
619
+ {
620
+ taskId: 45030107,
621
+ details: {
622
+ Name: 'શ્લોક ભરતભાઇ શેખાવત(A016441689)(FM/2010/3165698)',
623
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > પાલડી-કાંકજ > નવાપુરા > જુના નવાપુરા',
624
+ 'Death Date': '13/06/2019',
625
+ 'Family Contact Detail': 'બેબી(હેતલબેન વિનોદભાઇ ઠાકોર) રેવાભાઇ પ્રજાપતિ (8758558868)',
626
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
627
+ },
628
+ actions: null,
629
+ isActionRequired: true,
630
+ isOtherDetailsRequired: false,
631
+ selectedAction: null,
632
+ otherDetail: null,
633
+ },
634
+ {
635
+ taskId: 45121159,
636
+ details: {
637
+ Name: 'સાનુર ચીમનભાઈ કાથરીયા(A035942933)(FM/2009/6931151)',
638
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > પાલડી-કાંકજ > પાલડી-કાંકજ > ડોડીયા વાસ',
639
+ 'Death Date': '21/11/2019',
640
+ 'Family Contact Detail': 'રમેશભાઈ કનકદાસ પટેલ (957441586)',
641
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
642
+ },
643
+ actions: null,
644
+ isActionRequired: true,
645
+ isOtherDetailsRequired: false,
646
+ selectedAction: null,
647
+ otherDetail: null,
648
+ },
649
+ {
650
+ taskId: 46025163,
651
+ details: {
652
+ Name: 'આરતીબેન રમણભાઇ વેકરીયા(A82196663N)(FM/2009/8884082)',
653
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > મીરોલી > મીરોલી > 20 ઓરડી',
654
+ 'Death Date': '19/04/2019',
655
+ 'Family Contact Detail': 'અશ્વિનભાઈ લક્ષ્‍મણભાઇ ભારવડ (9978283188)',
656
+ 'FHW Name': 'Jayshreeben Maru(vmtrivedi2) (9537598807)',
657
+ },
658
+ actions: null,
659
+ isActionRequired: true,
660
+ isOtherDetailsRequired: false,
661
+ selectedAction: null,
662
+ otherDetail: null,
663
+ },
664
+ {
665
+ taskId: 46205180,
666
+ details: {
667
+ Name: 'સ્મિતાબેન અમિતભાઈ ગોહીલ(A91318777N)(FM/2018/2644662N)',
668
+ Location:
669
+ 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ કોર્પોરેશન > ઉત્તર ઝોન > ઇન્ડીયા કોલોની > ઇન્ડીયા કોલોની 2 > માર્તુશકિત સોસાયટી > માર્તુશકિત સોસાયટી',
670
+ 'Death Date': '29/12/2017',
671
+ 'Family Contact Detail': 'બાબો(સોનલબેન જયેશભાઇ તીવારી) ખીમજીભાઈ પટેલ (7668583651)',
672
+ 'FHW Name': 'Sonbai Vankar(udparmar9) (7069506393)',
673
+ },
674
+ actions: null,
675
+ isActionRequired: true,
676
+ isOtherDetailsRequired: false,
677
+ selectedAction: null,
678
+ otherDetail: null,
679
+ },
680
+ {
681
+ taskId: 46388905,
682
+ details: {
683
+ Name: 'સુનીતા નટવરભાઈ ભીલ(A89409469N)(FM/2018/2233068N)',
684
+ Location:
685
+ 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ કોર્પોરેશન > ઉત્તર ઝોન > ઇન્ડીયા કોલોની > ઇન્ડીયા કોલોની 2 > સર્વોદય સોસાયટી > જય સોમનાથ',
686
+ 'Death Date': '10/05/2018',
687
+ 'Family Contact Detail': 'હીતેશ પ્રભાતભાઈ બોરસે (9375328627)',
688
+ 'FHW Name': 'Sonbai Vankar(udparmar9) (7069506393)',
689
+ },
690
+ actions: null,
691
+ isActionRequired: true,
692
+ isOtherDetailsRequired: false,
693
+ selectedAction: null,
694
+ otherDetail: null,
695
+ },
696
+ {
697
+ taskId: 47535711,
698
+ details: {
699
+ Name: 'વિવેક અમરતભાઇ ભોઈ(A016775903)(FM/2010/3205404)',
700
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > મીરોલી > મીરોલી > વણકર વાસ',
701
+ 'Death Date': '09/04/2020',
702
+ 'Family Contact Detail': 'યશ્વી બોથાભાઈ કોરિ (9923620351)',
703
+ 'FHW Name': 'Jayshreeben Maru(vmtrivedi2) (9537598807)',
704
+ },
705
+ actions: null,
706
+ isActionRequired: true,
707
+ isOtherDetailsRequired: false,
708
+ selectedAction: null,
709
+ otherDetail: null,
710
+ },
711
+ {
712
+ taskId: 47635532,
713
+ details: {
714
+ Name: 'જૈનિલ સુમિતભાઈ પટેલ સુમિતભાઈ પ ભગવાનદાસ પટેલ(A016633206)(FM/2010/3187437)',
715
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > મીરોલી > મીરોલી > વણકર વાસ',
716
+ 'Death Date': '16/01/2019',
717
+ 'Family Contact Detail': 'ગણપતભાઈ હાર્દિક ચૌહાણ (9512816189)',
718
+ 'FHW Name': 'Jayshreeben Maru(vmtrivedi2) (9537598807)',
719
+ },
720
+ actions: null,
721
+ isActionRequired: true,
722
+ isOtherDetailsRequired: false,
723
+ selectedAction: null,
724
+ otherDetail: null,
725
+ },
726
+ {
727
+ taskId: 48025742,
728
+ details: {
729
+ Name: 'બેબી(મીના ) શ્વેતકેતુ પટણી(A104005334N)(FM/2019/5290806N)',
730
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > મીરોલી > મીરોલી > ઠાકોર વાસ',
731
+ 'Death Date': '16/10/2019',
732
+ 'Family Contact Detail': 'કાંતાબેન સુરેશભાઈ બારોટ (7359761271)',
733
+ 'FHW Name': 'Jayshreeben Maru(vmtrivedi2) (9537598807)',
734
+ },
735
+ actions: null,
736
+ isActionRequired: true,
737
+ isOtherDetailsRequired: false,
738
+ selectedAction: null,
739
+ otherDetail: null,
740
+ },
741
+ {
742
+ taskId: 54215901,
743
+ details: {
744
+ Name: 'raja j k(A115543686N)(FM/2023/7475542N)',
745
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > અસલાલી > અસલાલી > તુલસી વાસ',
746
+ 'Death Date': null,
747
+ 'Family Contact Detail': 'jayant g k (9899565659)',
748
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
749
+ },
750
+ actions: null,
751
+ isActionRequired: true,
752
+ isOtherDetailsRequired: false,
753
+ selectedAction: null,
754
+ otherDetail: null,
755
+ },
756
+ {
757
+ taskId: 54215902,
758
+ details: {
759
+ Name: 'chotu j patel(A115543689N)(FM/2023/7475543N)',
760
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > અસલાલી > અસલાલી > અશ્નાપુરી સોસા',
761
+ 'Death Date': null,
762
+ 'Family Contact Detail': 'jay k patel (9895959959)',
763
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
764
+ },
765
+ actions: null,
766
+ isActionRequired: true,
767
+ isOtherDetailsRequired: false,
768
+ selectedAction: null,
769
+ otherDetail: null,
770
+ },
771
+ {
772
+ taskId: 54215905,
773
+ details: {
774
+ Name: 'choti j patel(A115543690N)(FM/2023/7475543N)',
775
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > અસલાલી > અસલાલી > અશ્નાપુરી સોસા',
776
+ 'Death Date': '01/01/2023',
777
+ 'Family Contact Detail': 'jay k patel (9895959959)',
778
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
779
+ },
780
+ actions: null,
781
+ isActionRequired: true,
782
+ isOtherDetailsRequired: false,
783
+ selectedAction: null,
784
+ otherDetail: null,
785
+ },
786
+ {
787
+ taskId: 54215906,
788
+ details: {
789
+ Name: 'jaya m patel(A115543704N)(FM/2023/7475546N)',
790
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > અસલાલી > અસલાલી > અશ્નાપુરી સોસા',
791
+ 'Death Date': null,
792
+ 'Family Contact Detail': 'manhar j patel (9895665626)',
793
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
794
+ },
795
+ actions: null,
796
+ isActionRequired: true,
797
+ isOtherDetailsRequired: false,
798
+ selectedAction: null,
799
+ otherDetail: null,
800
+ },
801
+ {
802
+ taskId: 54215909,
803
+ details: {
804
+ Name: 'mit m patel(A115543705N)(FM/2023/7475546N)',
805
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > અસલાલી > અસલાલી > અશ્નાપુરી સોસા',
806
+ 'Death Date': '01/01/2023',
807
+ 'Family Contact Detail': 'manhar j patel (9895665626)',
808
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
809
+ },
810
+ actions: null,
811
+ isActionRequired: true,
812
+ isOtherDetailsRequired: false,
813
+ selectedAction: null,
814
+ otherDetail: null,
815
+ },
816
+ {
817
+ taskId: 54215912,
818
+ details: {
819
+ Name: 'jia manoj k(A115543712N)(FM/2023/7475549N)',
820
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > પાલડી-કાંકજ > પાલડી-કાંકજ > ,સરદાર આવાસ',
821
+ 'Death Date': '21/02/2022',
822
+ 'Family Contact Detail': 'manoj c k (9898995959)',
823
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
824
+ },
825
+ actions: null,
826
+ isActionRequired: true,
827
+ isOtherDetailsRequired: false,
828
+ selectedAction: null,
829
+ otherDetail: null,
830
+ },
831
+ {
832
+ taskId: 54215913,
833
+ details: {
834
+ Name: 'jane k p(A115543718N)(FM/2023/7475550N)',
835
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > અસલાલી > અસલાલી > તુલસી વાસ',
836
+ 'Death Date': '01/01/2018',
837
+ 'Family Contact Detail': 'roshan j k (9898959599)',
838
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
839
+ },
840
+ actions: null,
841
+ isActionRequired: true,
842
+ isOtherDetailsRequired: false,
843
+ selectedAction: null,
844
+ otherDetail: null,
845
+ },
846
+ {
847
+ taskId: 54215914,
848
+ details: {
849
+ Name: 'q w e(A115543719N)(FM/2023/7475542N)',
850
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > અસલાલી > અસલાલી > તુલસી વાસ',
851
+ 'Death Date': null,
852
+ 'Family Contact Detail': 'jayant g k (9899565659)',
853
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
854
+ },
855
+ actions: null,
856
+ isActionRequired: true,
857
+ isOtherDetailsRequired: false,
858
+ selectedAction: null,
859
+ otherDetail: null,
860
+ },
861
+ {
862
+ taskId: 54215915,
863
+ details: {
864
+ Name: 'r t y(A115543720N)(FM/2023/7475542N)',
865
+ Location: 'Gujarat > અમદાવાદ ઝોન > અમદાવાદ > દસક્રોઈ > અસલાલી > અસલાલી > અસલાલી > તુલસી વાસ',
866
+ 'Death Date': '01/01/2021',
867
+ 'Family Contact Detail': 'jayant g k (9899565659)',
868
+ 'FHW Name': 'Bhanuben JOSHI(vjkachhi) (7069828789)',
869
+ },
870
+ actions: null,
871
+ isActionRequired: true,
872
+ isOtherDetailsRequired: false,
873
+ selectedAction: null,
874
+ otherDetail: null,
875
+ },
876
+ ],
877
+ };