data-grid-workspace 0.0.120

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 (325) hide show
  1. package/.editorconfig +16 -0
  2. package/.vscode/extensions.json +4 -0
  3. package/.vscode/launch.json +20 -0
  4. package/.vscode/tasks.json +42 -0
  5. package/README.md +265 -0
  6. package/angular.json +144 -0
  7. package/backup-04112025/projects/data-grid/README.md +24 -0
  8. package/backup-04112025/projects/data-grid/ng-package.json +18 -0
  9. package/backup-04112025/projects/data-grid/package-lock.json +25 -0
  10. package/backup-04112025/projects/data-grid/package.json +23 -0
  11. package/backup-04112025/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  12. package/backup-04112025/projects/data-grid/src/lib/data-grid/animations.ts +228 -0
  13. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.html +5356 -0
  14. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.scss +2005 -0
  15. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  16. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.ts +5368 -0
  17. package/backup-04112025/projects/data-grid/src/lib/data-grid/statuses.ts +49 -0
  18. package/backup-04112025/projects/data-grid/src/lib/data-grid.module.ts +19 -0
  19. package/backup-04112025/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  20. package/backup-04112025/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  21. package/backup-04112025/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  22. package/backup-04112025/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  23. package/backup-04112025/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  24. package/backup-04112025/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  25. package/backup-04112025/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  26. package/backup-04112025/projects/data-grid/src/lib/services/cell-selection.service.ts +205 -0
  27. package/backup-04112025/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  28. package/backup-04112025/projects/data-grid/src/lib/services/common.service.ts +278 -0
  29. package/backup-04112025/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  30. package/backup-04112025/projects/data-grid/src/lib/services/copy-service.service.ts +252 -0
  31. package/backup-04112025/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  32. package/backup-04112025/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  33. package/backup-04112025/projects/data-grid/src/lib/services/export.service.spec.ts +16 -0
  34. package/backup-04112025/projects/data-grid/src/lib/services/export.service.ts +189 -0
  35. package/backup-04112025/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  36. package/backup-04112025/projects/data-grid/src/lib/services/split-columns.service.ts +148 -0
  37. package/backup-04112025/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  38. package/backup-04112025/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  39. package/backup-04112025/projects/data-grid/src/public-api.ts +6 -0
  40. package/backup-04112025/projects/data-grid/src/typings.d.ts +4 -0
  41. package/backup-04112025/projects/data-grid/tsconfig.lib.json +19 -0
  42. package/backup-04112025/projects/data-grid/tsconfig.lib.prod.json +10 -0
  43. package/backup-04112025/projects/data-grid/tsconfig.spec.json +14 -0
  44. package/backup-29-10-2025/projects/data-grid/README.md +24 -0
  45. package/backup-29-10-2025/projects/data-grid/ng-package.json +10 -0
  46. package/backup-29-10-2025/projects/data-grid/package-lock.json +25 -0
  47. package/backup-29-10-2025/projects/data-grid/package.json +12 -0
  48. package/backup-29-10-2025/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  49. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/animations.ts +228 -0
  50. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.html +5236 -0
  51. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.scss +1717 -0
  52. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  53. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.ts +5092 -0
  54. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/statuses.ts +47 -0
  55. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.module.ts +19 -0
  56. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  57. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  58. package/backup-29-10-2025/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  59. package/backup-29-10-2025/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  60. package/backup-29-10-2025/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  61. package/backup-29-10-2025/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  62. package/backup-29-10-2025/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  63. package/backup-29-10-2025/projects/data-grid/src/lib/services/cell-selection.service.ts +205 -0
  64. package/backup-29-10-2025/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  65. package/backup-29-10-2025/projects/data-grid/src/lib/services/common.service.ts +274 -0
  66. package/backup-29-10-2025/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  67. package/backup-29-10-2025/projects/data-grid/src/lib/services/copy-service.service.ts +251 -0
  68. package/backup-29-10-2025/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  69. package/backup-29-10-2025/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  70. package/backup-29-10-2025/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  71. package/backup-29-10-2025/projects/data-grid/src/lib/services/split-columns.service.ts +148 -0
  72. package/backup-29-10-2025/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  73. package/backup-29-10-2025/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  74. package/backup-29-10-2025/projects/data-grid/src/public-api.ts +6 -0
  75. package/backup-29-10-2025/projects/data-grid/tsconfig.lib.json +16 -0
  76. package/backup-29-10-2025/projects/data-grid/tsconfig.lib.prod.json +10 -0
  77. package/backup-29-10-2025/projects/data-grid/tsconfig.spec.json +14 -0
  78. package/image.png +0 -0
  79. package/package.json +52 -0
  80. package/projects/data-grid/README.md +324 -0
  81. package/projects/data-grid/ng-package.json +19 -0
  82. package/projects/data-grid/package-lock.json +25 -0
  83. package/projects/data-grid/package.json +38 -0
  84. package/projects/data-grid/src/lib/assets/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf +0 -0
  85. package/projects/data-grid/src/lib/assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf +0 -0
  86. package/projects/data-grid/src/lib/assets/fonts/Inter/OFL.txt +93 -0
  87. package/projects/data-grid/src/lib/assets/fonts/Inter/README.txt +118 -0
  88. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Black.ttf +0 -0
  89. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-BlackItalic.ttf +0 -0
  90. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Bold.ttf +0 -0
  91. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-BoldItalic.ttf +0 -0
  92. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraBold.ttf +0 -0
  93. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraBoldItalic.ttf +0 -0
  94. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraLight.ttf +0 -0
  95. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraLightItalic.ttf +0 -0
  96. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Italic.ttf +0 -0
  97. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Light.ttf +0 -0
  98. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-LightItalic.ttf +0 -0
  99. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Medium.ttf +0 -0
  100. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-MediumItalic.ttf +0 -0
  101. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Regular.ttf +0 -0
  102. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-SemiBold.ttf +0 -0
  103. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-SemiBoldItalic.ttf +0 -0
  104. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Thin.ttf +0 -0
  105. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ThinItalic.ttf +0 -0
  106. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Black.ttf +0 -0
  107. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-BlackItalic.ttf +0 -0
  108. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Bold.ttf +0 -0
  109. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-BoldItalic.ttf +0 -0
  110. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraBold.ttf +0 -0
  111. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraBoldItalic.ttf +0 -0
  112. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraLight.ttf +0 -0
  113. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraLightItalic.ttf +0 -0
  114. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Italic.ttf +0 -0
  115. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Light.ttf +0 -0
  116. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-LightItalic.ttf +0 -0
  117. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Medium.ttf +0 -0
  118. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-MediumItalic.ttf +0 -0
  119. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Regular.ttf +0 -0
  120. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-SemiBold.ttf +0 -0
  121. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-SemiBoldItalic.ttf +0 -0
  122. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Thin.ttf +0 -0
  123. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ThinItalic.ttf +0 -0
  124. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Black.ttf +0 -0
  125. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-BlackItalic.ttf +0 -0
  126. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Bold.ttf +0 -0
  127. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-BoldItalic.ttf +0 -0
  128. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraBold.ttf +0 -0
  129. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraBoldItalic.ttf +0 -0
  130. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraLight.ttf +0 -0
  131. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraLightItalic.ttf +0 -0
  132. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Italic.ttf +0 -0
  133. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Light.ttf +0 -0
  134. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-LightItalic.ttf +0 -0
  135. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Medium.ttf +0 -0
  136. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-MediumItalic.ttf +0 -0
  137. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Regular.ttf +0 -0
  138. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-SemiBold.ttf +0 -0
  139. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-SemiBoldItalic.ttf +0 -0
  140. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Thin.ttf +0 -0
  141. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ThinItalic.ttf +0 -0
  142. package/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  143. package/projects/data-grid/src/lib/data-grid/animations.ts +267 -0
  144. package/projects/data-grid/src/lib/data-grid/data-grid.component.html +5759 -0
  145. package/projects/data-grid/src/lib/data-grid/data-grid.component.scss +2154 -0
  146. package/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  147. package/projects/data-grid/src/lib/data-grid/data-grid.component.ts +6773 -0
  148. package/projects/data-grid/src/lib/data-grid/data-grid.tokens.ts +4 -0
  149. package/projects/data-grid/src/lib/data-grid/statuses.ts +49 -0
  150. package/projects/data-grid/src/lib/data-grid.module.ts +23 -0
  151. package/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  152. package/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  153. package/projects/data-grid/src/lib/directives/cell-editor.directive.spec.ts +11 -0
  154. package/projects/data-grid/src/lib/directives/cell-editor.directive.ts +88 -0
  155. package/projects/data-grid/src/lib/directives/cell-render-init.directive.spec.ts +11 -0
  156. package/projects/data-grid/src/lib/directives/cell-render-init.directive.ts +98 -0
  157. package/projects/data-grid/src/lib/directives/cellHost.directive.spec.ts +11 -0
  158. package/projects/data-grid/src/lib/directives/cellHost.directive.ts +10 -0
  159. package/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  160. package/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  161. package/projects/data-grid/src/lib/interfaces/data-grid-config.ts.ts +136 -0
  162. package/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  163. package/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  164. package/projects/data-grid/src/lib/pipes/format-currency.pipe.spec.ts +11 -0
  165. package/projects/data-grid/src/lib/pipes/format-currency.pipe.ts +59 -0
  166. package/projects/data-grid/src/lib/pipes/format-index.pipe.spec.ts +11 -0
  167. package/projects/data-grid/src/lib/pipes/format-index.pipe.ts +20 -0
  168. package/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  169. package/projects/data-grid/src/lib/services/cell-selection.service.ts +372 -0
  170. package/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  171. package/projects/data-grid/src/lib/services/common.service.ts +395 -0
  172. package/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  173. package/projects/data-grid/src/lib/services/copy-service.service.ts +252 -0
  174. package/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  175. package/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  176. package/projects/data-grid/src/lib/services/export.service.spec.ts +16 -0
  177. package/projects/data-grid/src/lib/services/export.service.ts +189 -0
  178. package/projects/data-grid/src/lib/services/row-action.service.ts +203 -0
  179. package/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  180. package/projects/data-grid/src/lib/services/split-columns.service.ts +168 -0
  181. package/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  182. package/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  183. package/projects/data-grid/src/lib/styles/font-style.css +34 -0
  184. package/projects/data-grid/src/public-api.ts +8 -0
  185. package/projects/data-grid/src/typings.d.ts +4 -0
  186. package/projects/data-grid/tsconfig.lib.json +19 -0
  187. package/projects/data-grid/tsconfig.lib.prod.json +10 -0
  188. package/projects/data-grid/tsconfig.spec.json +14 -0
  189. package/src/app/app.component.html +61 -0
  190. package/src/app/app.component.scss +1 -0
  191. package/src/app/app.component.spec.ts +27 -0
  192. package/src/app/app.component.ts +166 -0
  193. package/src/app/app.module.ts +33 -0
  194. package/src/app/dropdown-filter/dropdown-filter.component.css +122 -0
  195. package/src/app/dropdown-filter/dropdown-filter.component.html +118 -0
  196. package/src/app/dropdown-filter/dropdown-filter.component.spec.ts +28 -0
  197. package/src/app/dropdown-filter/dropdown-filter.component.ts +139 -0
  198. package/src/app/status-cell/status-cell.component.css +0 -0
  199. package/src/app/status-cell/status-cell.component.html +1 -0
  200. package/src/app/status-cell/status-cell.component.spec.ts +28 -0
  201. package/src/app/status-cell/status-cell.component.ts +18 -0
  202. package/src/app/status-cell-editor/status-cell-editor.component.css +0 -0
  203. package/src/app/status-cell-editor/status-cell-editor.component.html +12 -0
  204. package/src/app/status-cell-editor/status-cell-editor.component.spec.ts +28 -0
  205. package/src/app/status-cell-editor/status-cell-editor.component.ts +77 -0
  206. package/src/app/sub-category-cell-component/sub-category-cell-component.component.css +6 -0
  207. package/src/app/sub-category-cell-component/sub-category-cell-component.component.html +3 -0
  208. package/src/app/sub-category-cell-component/sub-category-cell-component.component.spec.ts +28 -0
  209. package/src/app/sub-category-cell-component/sub-category-cell-component.component.ts +26 -0
  210. package/src/app/testing-data/api-translation/data.ts +1929 -0
  211. package/src/app/testing-data/assets-category/data.ts +1410 -0
  212. package/src/app/testing-data/assets-list/data.ts +26633 -0
  213. package/src/app/testing-data/invoices/data.ts +3698 -0
  214. package/src/app/testing-data/manage-employee/data.ts +83205 -0
  215. package/src/app/testing-data/single-day-timesheet/data.ts +4450 -0
  216. package/src/app/testing-data/task-management/tasks.ts +2536 -0
  217. package/src/app/testing-data/translation.ts +135580 -0
  218. package/src/app/testing-data/writeup/data.ts +29506 -0
  219. package/src/assets/.gitkeep +0 -0
  220. package/src/assets/data-grid/document-icons/Newxlsx.svg +19 -0
  221. package/src/assets/data-grid/document-icons/Presentation.pptx +0 -0
  222. package/src/assets/data-grid/document-icons/Untitled spreadsheet.xlsx +0 -0
  223. package/src/assets/data-grid/document-icons/bell-icon.svg +31 -0
  224. package/src/assets/data-grid/document-icons/blank sheet ppt.pptx +0 -0
  225. package/src/assets/data-grid/document-icons/blank-docs-file.docx +0 -0
  226. package/src/assets/data-grid/document-icons/csv.svg +34 -0
  227. package/src/assets/data-grid/document-icons/doc.svg +34 -0
  228. package/src/assets/data-grid/document-icons/document-download.svg +18 -0
  229. package/src/assets/data-grid/document-icons/document-upload.svg +6 -0
  230. package/src/assets/data-grid/document-icons/docx.svg +35 -0
  231. package/src/assets/data-grid/document-icons/downloadDOC.svg +7 -0
  232. package/src/assets/data-grid/document-icons/edit-doc.svg +6 -0
  233. package/src/assets/data-grid/document-icons/empty-trash.svg +47 -0
  234. package/src/assets/data-grid/document-icons/jpeg.svg +40 -0
  235. package/src/assets/data-grid/document-icons/jpg.svg +24 -0
  236. package/src/assets/data-grid/document-icons/loading gif.gif +0 -0
  237. package/src/assets/data-grid/document-icons/more-Icon.svg +19 -0
  238. package/src/assets/data-grid/document-icons/mp4.svg +28 -0
  239. package/src/assets/data-grid/document-icons/my-request-empty.svg +37 -0
  240. package/src/assets/data-grid/document-icons/newDoc.svg +16 -0
  241. package/src/assets/data-grid/document-icons/newppt.svg +16 -0
  242. package/src/assets/data-grid/document-icons/overDue.svg +8 -0
  243. package/src/assets/data-grid/document-icons/ownerShare.svg +13 -0
  244. package/src/assets/data-grid/document-icons/pdf.svg +36 -0
  245. package/src/assets/data-grid/document-icons/permanantDelete.svg +4 -0
  246. package/src/assets/data-grid/document-icons/png.svg +53 -0
  247. package/src/assets/data-grid/document-icons/ppt.svg +24 -0
  248. package/src/assets/data-grid/document-icons/pptx.svg +25 -0
  249. package/src/assets/data-grid/document-icons/restore-delete.svg +4 -0
  250. package/src/assets/data-grid/document-icons/restoreTrash.svg +10 -0
  251. package/src/assets/data-grid/document-icons/send-2.svg +16 -0
  252. package/src/assets/data-grid/document-icons/send-request-empty.svg +41 -0
  253. package/src/assets/data-grid/document-icons/shareIcon.svg +6 -0
  254. package/src/assets/data-grid/document-icons/sharedFileIcon.svg +6 -0
  255. package/src/assets/data-grid/document-icons/sharedriveempty.svg +40 -0
  256. package/src/assets/data-grid/document-icons/task-square.svg +25 -0
  257. package/src/assets/data-grid/document-icons/trash-01.svg +3 -0
  258. package/src/assets/data-grid/document-icons/trashRestore.svg +4 -0
  259. package/src/assets/data-grid/document-icons/txt.svg +34 -0
  260. package/src/assets/data-grid/document-icons/uploadFile.svg +16 -0
  261. package/src/assets/data-grid/document-icons/uploadfilefolder.svg +40 -0
  262. package/src/assets/data-grid/document-icons/xls.svg +34 -0
  263. package/src/assets/data-grid/document-icons/xlsx.svg +36 -0
  264. package/src/assets/data-grid/icons/Buttons.svg +3 -0
  265. package/src/assets/data-grid/icons/High.svg +3 -0
  266. package/src/assets/data-grid/icons/Low.svg +3 -0
  267. package/src/assets/data-grid/icons/Medium.svg +3 -0
  268. package/src/assets/data-grid/icons/Vector.svg +3 -0
  269. package/src/assets/data-grid/icons/arrow-counterclockwise.svg +4 -0
  270. package/src/assets/data-grid/icons/arrow-down.svg +3 -0
  271. package/src/assets/data-grid/icons/arrow-left.svg +3 -0
  272. package/src/assets/data-grid/icons/arrow-right-solid-full.svg +1 -0
  273. package/src/assets/data-grid/icons/arrow-right.svg +10 -0
  274. package/src/assets/data-grid/icons/arrow-up.svg +3 -0
  275. package/src/assets/data-grid/icons/arrows-angle-expand.svg +3 -0
  276. package/src/assets/data-grid/icons/arrows-expand-vertical.svg +3 -0
  277. package/src/assets/data-grid/icons/arrows-move.svg +3 -0
  278. package/src/assets/data-grid/icons/attachments.svg +3 -0
  279. package/src/assets/data-grid/icons/ban.svg +3 -0
  280. package/src/assets/data-grid/icons/check-blue.svg +3 -0
  281. package/src/assets/data-grid/icons/chevron-down.svg +3 -0
  282. package/src/assets/data-grid/icons/chevron-right.svg +3 -0
  283. package/src/assets/data-grid/icons/comments.svg +3 -0
  284. package/src/assets/data-grid/icons/cross-primary.svg +3 -0
  285. package/src/assets/data-grid/icons/dash.svg +3 -0
  286. package/src/assets/data-grid/icons/delete.svg +3 -0
  287. package/src/assets/data-grid/icons/diagram-3.svg +3 -0
  288. package/src/assets/data-grid/icons/download.svg +5 -0
  289. package/src/assets/data-grid/icons/edit.svg +3 -0
  290. package/src/assets/data-grid/icons/expend.svg +3 -0
  291. package/src/assets/data-grid/icons/eye-cross.svg +10 -0
  292. package/src/assets/data-grid/icons/eye.svg +4 -0
  293. package/src/assets/data-grid/icons/filter-2.svg +5 -0
  294. package/src/assets/data-grid/icons/grid-3x2-gap.svg +3 -0
  295. package/src/assets/data-grid/icons/grip-vertical.svg +8 -0
  296. package/src/assets/data-grid/icons/horizontal-dots.svg +5 -0
  297. package/src/assets/data-grid/icons/justify.svg +3 -0
  298. package/src/assets/data-grid/icons/layout-three-columns.svg +3 -0
  299. package/src/assets/data-grid/icons/list-details.svg +8 -0
  300. package/src/assets/data-grid/icons/minimize.svg +4 -0
  301. package/src/assets/data-grid/icons/pin-blue.svg +5 -0
  302. package/src/assets/data-grid/icons/pin-left.svg +3 -0
  303. package/src/assets/data-grid/icons/pin-right.svg +3 -0
  304. package/src/assets/data-grid/icons/pin.svg +5 -0
  305. package/src/assets/data-grid/icons/plus.svg +3 -0
  306. package/src/assets/data-grid/icons/resize-handle.svg +3 -0
  307. package/src/assets/data-grid/icons/search.svg +3 -0
  308. package/src/assets/data-grid/icons/settings-2.svg +3 -0
  309. package/src/assets/data-grid/icons/sort-asc.svg +4 -0
  310. package/src/assets/data-grid/icons/sort-desc.svg +4 -0
  311. package/src/assets/data-grid/icons/star-blue.svg +3 -0
  312. package/src/assets/data-grid/icons/star.svg +3 -0
  313. package/src/assets/data-grid/icons/table-2.svg +3 -0
  314. package/src/assets/data-grid/icons/three-dots-vertical.svg +5 -0
  315. package/src/assets/data-grid/icons/trash-red.svg +7 -0
  316. package/src/assets/data-grid/icons/ui-checks-grid.svg +3 -0
  317. package/src/assets/data-grid/icons/x.svg +3 -0
  318. package/src/assets/data-grid/icons/zoom-charge.svg +4 -0
  319. package/src/favicon.ico +0 -0
  320. package/src/index.html +19 -0
  321. package/src/main.ts +7 -0
  322. package/src/styles.scss +3 -0
  323. package/tsconfig.app.json +14 -0
  324. package/tsconfig.json +44 -0
  325. package/tsconfig.spec.json +14 -0
@@ -0,0 +1,4450 @@
1
+
2
+ export const data = {
3
+ "data": {
4
+ "getEmployeeTimeSheetAttendanceList": {
5
+ "config": {
6
+ "page": 1,
7
+ "limit": 50,
8
+ "totalPages": 1,
9
+ "totalResults": 39,
10
+ "no_of_records": 50,
11
+ "type": "AttendanceListing",
12
+ "actions": [],
13
+ "columns": [
14
+ {
15
+ "_id": "690d8468b1ab1b34be414d57",
16
+ "field": "User.image",
17
+ "header": "Image",
18
+ "type": "image",
19
+ "search": null,
20
+ "is_search_able": false,
21
+ "query": {
22
+ "first_condition": null,
23
+ "second_condition": null,
24
+ "first_value": null,
25
+ "second_value": null,
26
+ "condition": null,
27
+ "__typename": "queryType"
28
+ },
29
+ "is_visible": true,
30
+ "pinned": "",
31
+ "is_groupable": false,
32
+ "column_data": [],
33
+ "filterValue": null,
34
+ "column_dropdown_value": null,
35
+ "is_sortable": false,
36
+ "is_amount": false,
37
+ is_editable: true,
38
+ "__typename": "listingColumnsType"
39
+ },
40
+ {
41
+ "_id": "690d8468b1ab1b34be414d58",
42
+ "field": "User.full_name",
43
+ "header": "Employee Name",
44
+ "type": "string",
45
+ "search": null,
46
+ "is_search_able": true,
47
+ "query": {
48
+ "first_condition": null,
49
+ "second_condition": null,
50
+ "first_value": null,
51
+ "second_value": null,
52
+ "condition": null,
53
+ "__typename": "queryType"
54
+ },
55
+ "is_visible": true,
56
+ "pinned": "",
57
+ "is_groupable": true,
58
+ "column_data": [],
59
+ "filterValue": null,
60
+ "column_dropdown_value": null,
61
+ "is_sortable": true,
62
+ is_editable: true,
63
+ "is_amount": false,
64
+ "__typename": "listingColumnsType"
65
+ },
66
+ {
67
+ "_id": "690d8468b1ab1b34be414d59",
68
+ "field": "User.email",
69
+ "header": "Email",
70
+ "type": "string",
71
+ "search": null,
72
+ "is_search_able": true,
73
+ "query": {
74
+ "first_condition": null,
75
+ "second_condition": null,
76
+ "first_value": null,
77
+ "second_value": null,
78
+ "condition": null,
79
+ "__typename": "queryType"
80
+ },
81
+ "is_visible": false,
82
+ "width": 150,
83
+ "pinned": "",
84
+ "is_groupable": false,
85
+ "column_data": [],
86
+ "filterValue": null,
87
+ "column_dropdown_value": null,
88
+ "is_sortable": true,
89
+ "is_amount": false,
90
+ is_editable: true,
91
+ "__typename": "listingColumnsType"
92
+ },
93
+ {
94
+ "_id": "690d8468b1ab1b34be414d5a",
95
+ "field": "User.phone",
96
+ "header": "Phone",
97
+ "type": "string",
98
+ "search": null,
99
+ "is_search_able": true,
100
+ "query": {
101
+ "first_condition": null,
102
+ "second_condition": null,
103
+ "first_value": null,
104
+ "second_value": null,
105
+ "condition": null,
106
+ "__typename": "queryType"
107
+ },
108
+ "is_visible": false,
109
+ "width": 150,
110
+ "pinned": "",
111
+ "is_groupable": false,
112
+ "column_data": [],
113
+ "filterValue": null,
114
+ "column_dropdown_value": null,
115
+ "is_sortable": false,
116
+ "is_amount": false,
117
+ is_editable: true,
118
+ "__typename": "listingColumnsType"
119
+ },
120
+ {
121
+ "_id": "690d8468b1ab1b34be414d5b",
122
+ "field": "attendanceDate",
123
+ "header": "Date",
124
+ "type": "date",
125
+ "search": null,
126
+ "is_search_able": true,
127
+ "query": {
128
+ "first_condition": null,
129
+ "second_condition": null,
130
+ "first_value": null,
131
+ "second_value": null,
132
+ "condition": null,
133
+ "__typename": "queryType"
134
+ },
135
+ "is_visible": true,
136
+ "pinned": "",
137
+ "is_groupable": true,
138
+ "column_data": [],
139
+ "filterValue": null,
140
+ "column_dropdown_value": null,
141
+ "is_sortable": true,
142
+ "is_amount": false,
143
+ is_editable: true,
144
+ "__typename": "listingColumnsType"
145
+ },
146
+ {
147
+ "_id": "690d8468b1ab1b34be414d5c",
148
+ "field": "clock_out_time",
149
+ "header": "Clock Out",
150
+ "type": "",
151
+ "search": null,
152
+ "is_search_able": false,
153
+ "query": {
154
+ "first_condition": null,
155
+ "second_condition": null,
156
+ "first_value": null,
157
+ "second_value": null,
158
+ "condition": null,
159
+ "__typename": "queryType"
160
+ },
161
+ "is_visible": true,
162
+ "width": 369,
163
+ "pinned": "",
164
+ "is_groupable": false,
165
+ "column_data": [],
166
+ "filterValue": null,
167
+ "column_dropdown_value": null,
168
+ "is_sortable": false,
169
+ "is_amount": false,
170
+ is_editable: true,
171
+ "__typename": "listingColumnsType"
172
+ },
173
+ {
174
+ "_id": "690d8468b1ab1b34be414d5d",
175
+ "field": "clock_in_time",
176
+ "header": "Clock In",
177
+ "type": "",
178
+ "search": null,
179
+ "is_search_able": false,
180
+ "query": {
181
+ "first_condition": null,
182
+ "second_condition": null,
183
+ "first_value": null,
184
+ "second_value": null,
185
+ "condition": null,
186
+ "__typename": "queryType"
187
+ },
188
+ "is_visible": true,
189
+ "width": 252,
190
+ "pinned": "",
191
+ "is_groupable": false,
192
+ "column_data": [],
193
+ "filterValue": null,
194
+ "column_dropdown_value": null,
195
+ "is_sortable": false,
196
+ "is_amount": false,
197
+ is_editable: true,
198
+ "__typename": "listingColumnsType"
199
+ },
200
+ {
201
+ "_id": "690d8468b1ab1b34be414d5e",
202
+ "field": "attendanceStatus",
203
+ "header": "Attendance Status",
204
+ "type": "string",
205
+ "search": null,
206
+ "is_search_able": true,
207
+ "query": {
208
+ "first_condition": null,
209
+ "second_condition": null,
210
+ "first_value": null,
211
+ "second_value": null,
212
+ "condition": null,
213
+ "__typename": "queryType"
214
+ },
215
+ "is_visible": false,
216
+ "width": 242,
217
+ "pinned": "",
218
+ "is_groupable": true,
219
+ "column_data": [],
220
+ "filterValue": null,
221
+ "column_dropdown_value": null,
222
+ "is_sortable": true,
223
+ "is_amount": false,
224
+ is_editable: true,
225
+ "__typename": "listingColumnsType"
226
+ },
227
+ {
228
+ "_id": "690d8468b1ab1b34be414d5f",
229
+ "field": "total_hours_logged",
230
+ "header": "Total Hours",
231
+ "type": "number",
232
+ "search": null,
233
+ "is_search_able": false,
234
+ "query": {
235
+ "first_condition": null,
236
+ "second_condition": null,
237
+ "first_value": null,
238
+ "second_value": null,
239
+ "condition": null,
240
+ "__typename": "queryType"
241
+ },
242
+ "is_visible": false,
243
+ "width": 248,
244
+ "pinned": "",
245
+ "is_groupable": false,
246
+ "column_data": [],
247
+ "filterValue": null,
248
+ "column_dropdown_value": null,
249
+ "is_sortable": true,
250
+ "is_amount": false,
251
+ is_editable: true,
252
+ "__typename": "listingColumnsType"
253
+ },
254
+ {
255
+ "_id": "690d8468b1ab1b34be414d60",
256
+ "field": "breaks",
257
+ "header": "Breaks",
258
+ "type": "string",
259
+ "search": null,
260
+ "is_search_able": false,
261
+ "query": {
262
+ "first_condition": null,
263
+ "second_condition": null,
264
+ "first_value": null,
265
+ "second_value": null,
266
+ "condition": null,
267
+ "__typename": "queryType"
268
+ },
269
+ "is_visible": false,
270
+ "width": 450,
271
+ "pinned": "",
272
+ "is_groupable": false,
273
+ "column_data": [],
274
+ "filterValue": null,
275
+ "column_dropdown_value": null,
276
+ "is_sortable": false,
277
+ "is_amount": false,
278
+ is_editable: true,
279
+ "__typename": "listingColumnsType"
280
+ },
281
+ {
282
+ "_id": "690d8468b1ab1b34be414d61",
283
+ "field": "status",
284
+ "header": "Status",
285
+ "type": "dropdown",
286
+ "search": null,
287
+ "is_search_able": true,
288
+ "query": {
289
+ "first_condition": null,
290
+ "second_condition": null,
291
+ "first_value": null,
292
+ "second_value": null,
293
+ "condition": null,
294
+ "__typename": "queryType"
295
+ },
296
+ "is_visible": false,
297
+ "width": 302,
298
+ "pinned": "",
299
+ "is_groupable": true,
300
+ "column_data": [
301
+ "clocked in",
302
+ "clocked out",
303
+ "absent",
304
+ "on leave",
305
+ "holiday"
306
+ ],
307
+ "filterValue": null,
308
+ "column_dropdown_value": null,
309
+ "is_sortable": false,
310
+ "is_amount": false,
311
+ is_editable: true,
312
+ "__typename": "listingColumnsType"
313
+ },
314
+ {
315
+ "_id": "690d8468b1ab1b34be414d62",
316
+ "field": "total_wages",
317
+ "header": "Total Wages",
318
+ "type": "currency",
319
+ "search": null,
320
+ "is_search_able": false,
321
+ "query": {
322
+ "first_condition": null,
323
+ "second_condition": null,
324
+ "first_value": null,
325
+ "second_value": null,
326
+ "condition": null,
327
+ "__typename": "queryType"
328
+ },
329
+ "is_visible": false,
330
+ "pinned": "",
331
+ "is_groupable": false,
332
+ "column_data": [],
333
+ "filterValue": null,
334
+ "column_dropdown_value": null,
335
+ "is_sortable": true,
336
+ "is_amount": false,
337
+ is_editable: true,
338
+ "__typename": "listingColumnsType"
339
+ },
340
+ {
341
+ "_id": "690d8468b1ab1b34be414d63",
342
+ "field": "is_payroll_processed",
343
+ "header": "Payroll Processed",
344
+ "type": "boolean",
345
+ "search": null,
346
+ "is_search_able": false,
347
+ "query": {
348
+ "first_condition": null,
349
+ "second_condition": null,
350
+ "first_value": null,
351
+ "second_value": null,
352
+ "condition": null,
353
+ "__typename": "queryType"
354
+ },
355
+ "is_visible": false,
356
+ "pinned": "",
357
+ "is_groupable": false,
358
+ "column_data": [],
359
+ "filterValue": null,
360
+ "column_dropdown_value": null,
361
+ "is_sortable": false,
362
+ "is_amount": false,
363
+ is_editable: true,
364
+ "__typename": "listingColumnsType"
365
+ },
366
+ {
367
+ "_id": "690d8468b1ab1b34be414d64",
368
+ "field": "short_breaks",
369
+ "header": "Short Breaks",
370
+ "type": "string",
371
+ "search": null,
372
+ "is_search_able": false,
373
+ "query": {
374
+ "first_condition": null,
375
+ "second_condition": null,
376
+ "first_value": null,
377
+ "second_value": null,
378
+ "condition": null,
379
+ "__typename": "queryType"
380
+ },
381
+ "is_visible": false,
382
+ "pinned": "",
383
+ "is_groupable": false,
384
+ "column_data": [],
385
+ "filterValue": null,
386
+ "column_dropdown_value": null,
387
+ "is_sortable": false,
388
+ "is_amount": false,
389
+ is_editable: true,
390
+ "__typename": "listingColumnsType"
391
+ },
392
+ {
393
+ "_id": "690d8468b1ab1b34be414d65",
394
+ "field": "short_leave",
395
+ "header": "Short Leave",
396
+ "type": "Number",
397
+ "search": null,
398
+ "is_search_able": true,
399
+ "query": {
400
+ "first_condition": null,
401
+ "second_condition": null,
402
+ "first_value": null,
403
+ "second_value": null,
404
+ "condition": null,
405
+ "__typename": "queryType"
406
+ },
407
+ "is_visible": false,
408
+ "pinned": "",
409
+ "is_groupable": true,
410
+ "column_data": [],
411
+ "filterValue": null,
412
+ "column_dropdown_value": null,
413
+ "is_sortable": true,
414
+ "is_amount": false,
415
+ is_editable: true,
416
+ "__typename": "listingColumnsType"
417
+ },
418
+ {
419
+ "_id": "690d8468b1ab1b34be414d66",
420
+ "field": "is_un_restricted",
421
+ "header": "Restriction",
422
+ "type": "number",
423
+ "search": null,
424
+ "is_search_able": false,
425
+ "query": {
426
+ "first_condition": null,
427
+ "second_condition": null,
428
+ "first_value": null,
429
+ "second_value": null,
430
+ "condition": null,
431
+ "__typename": "queryType"
432
+ },
433
+ "is_visible": false,
434
+ "pinned": "",
435
+ "is_groupable": false,
436
+ "column_data": [],
437
+ "filterValue": null,
438
+ "column_dropdown_value": null,
439
+ "is_sortable": true,
440
+ "is_amount": false,
441
+ is_editable: true,
442
+ "__typename": "listingColumnsType"
443
+ },
444
+ {
445
+ "_id": "690d8468b1ab1b34be414d67",
446
+ "field": "manually_logs",
447
+ "header": "Manual Logs",
448
+ "type": "string",
449
+ "search": null,
450
+ "is_search_able": false,
451
+ "query": {
452
+ "first_condition": null,
453
+ "second_condition": null,
454
+ "first_value": null,
455
+ "second_value": null,
456
+ "condition": null,
457
+ "__typename": "queryType"
458
+ },
459
+ "is_visible": false,
460
+ "width": 150,
461
+ "pinned": "",
462
+ "is_groupable": false,
463
+ "column_data": [],
464
+ "filterValue": null,
465
+ "column_dropdown_value": null,
466
+ "is_sortable": false,
467
+ "is_amount": false,
468
+ is_editable: true,
469
+ "__typename": "listingColumnsType"
470
+ }
471
+ ],
472
+ "table_preset": [
473
+ {
474
+ "activeFilters": false,
475
+ "columns": [
476
+ {
477
+ "type": "image",
478
+ "search": null,
479
+ "query": null,
480
+ "_id": null,
481
+ "column_data": [],
482
+ "column_dropdown_value": null,
483
+ "field": "User.image",
484
+ "filterValue": null,
485
+ "header": "Image",
486
+ "is_amount": null,
487
+ "is_groupable": false,
488
+ "is_search_able": false,
489
+ "is_sortable": false,
490
+ "is_visible": false,
491
+ "pinned": "",
492
+ "__typename": "listingColumnsType"
493
+ },
494
+ {
495
+ "type": "string",
496
+ "search": null,
497
+ "query": null,
498
+ "_id": null,
499
+ "column_data": [],
500
+ "column_dropdown_value": null,
501
+ "field": "User.full_name",
502
+ "filterValue": null,
503
+ "header": "Employee Name",
504
+ "is_amount": null,
505
+ "is_groupable": true,
506
+ "is_search_able": true,
507
+ "is_sortable": true,
508
+ "is_visible": false,
509
+ "pinned": "",
510
+ "__typename": "listingColumnsType"
511
+ },
512
+ {
513
+ "width": 150,
514
+ "type": "string",
515
+ "search": null,
516
+ "query": null,
517
+ "_id": null,
518
+ "column_data": [],
519
+ "column_dropdown_value": null,
520
+ "field": "User.email",
521
+ "filterValue": null,
522
+ "header": "Email",
523
+ "is_amount": null,
524
+ "is_groupable": false,
525
+ "is_search_able": true,
526
+ "is_sortable": true,
527
+ "is_visible": false,
528
+ "pinned": "",
529
+ "__typename": "listingColumnsType"
530
+ },
531
+ {
532
+ "width": 150,
533
+ "type": "string",
534
+ "search": null,
535
+ "query": null,
536
+ "_id": null,
537
+ "column_data": [],
538
+ "column_dropdown_value": null,
539
+ "field": "User.phone",
540
+ "filterValue": null,
541
+ "header": "Phone",
542
+ "is_amount": null,
543
+ "is_groupable": false,
544
+ "is_search_able": true,
545
+ "is_sortable": false,
546
+ "is_visible": false,
547
+ "pinned": "",
548
+ "__typename": "listingColumnsType"
549
+ },
550
+ {
551
+ "type": "date",
552
+ "search": null,
553
+ "query": null,
554
+ "_id": null,
555
+ "column_data": [],
556
+ "column_dropdown_value": null,
557
+ "field": "attendanceDate",
558
+ "filterValue": null,
559
+ "header": "Date",
560
+ "is_amount": null,
561
+ "is_groupable": true,
562
+ "is_search_able": true,
563
+ "is_sortable": true,
564
+ "is_visible": false,
565
+ "pinned": "",
566
+ "__typename": "listingColumnsType"
567
+ },
568
+ {
569
+ "width": 369,
570
+ "type": "",
571
+ "search": null,
572
+ "query": null,
573
+ "_id": null,
574
+ "column_data": [],
575
+ "column_dropdown_value": null,
576
+ "field": "clock_out_time",
577
+ "filterValue": null,
578
+ "header": "Clock Out",
579
+ "is_amount": null,
580
+ "is_groupable": false,
581
+ "is_search_able": false,
582
+ "is_sortable": false,
583
+ "is_visible": false,
584
+ "pinned": "",
585
+ "__typename": "listingColumnsType"
586
+ },
587
+ {
588
+ "width": 252,
589
+ "type": "",
590
+ "search": null,
591
+ "query": null,
592
+ "_id": null,
593
+ "column_data": [],
594
+ "column_dropdown_value": null,
595
+ "field": "clock_in_time",
596
+ "filterValue": null,
597
+ "header": "Clock In",
598
+ "is_amount": null,
599
+ "is_groupable": false,
600
+ "is_search_able": false,
601
+ "is_sortable": false,
602
+ "is_visible": false,
603
+ "pinned": "",
604
+ "__typename": "listingColumnsType"
605
+ },
606
+ {
607
+ "width": 242,
608
+ "type": "string",
609
+ "search": null,
610
+ "query": null,
611
+ "_id": null,
612
+ "column_data": [],
613
+ "column_dropdown_value": null,
614
+ "field": "attendanceStatus",
615
+ "filterValue": null,
616
+ "header": "Attendance Status",
617
+ "is_amount": null,
618
+ "is_groupable": true,
619
+ "is_search_able": true,
620
+ "is_sortable": true,
621
+ "is_visible": false,
622
+ "pinned": "",
623
+ "__typename": "listingColumnsType"
624
+ },
625
+ {
626
+ "width": 248,
627
+ "type": "number",
628
+ "search": null,
629
+ "query": null,
630
+ "_id": null,
631
+ "column_data": [],
632
+ "column_dropdown_value": null,
633
+ "field": "total_hours_logged",
634
+ "filterValue": null,
635
+ "header": "Total Hours",
636
+ "is_amount": null,
637
+ "is_groupable": false,
638
+ "is_search_able": false,
639
+ "is_sortable": true,
640
+ "is_visible": false,
641
+ "pinned": "",
642
+ "__typename": "listingColumnsType"
643
+ },
644
+ {
645
+ "width": 450,
646
+ "type": "string",
647
+ "search": null,
648
+ "query": null,
649
+ "_id": null,
650
+ "column_data": [],
651
+ "column_dropdown_value": null,
652
+ "field": "breaks",
653
+ "filterValue": null,
654
+ "header": "Breaks",
655
+ "is_amount": null,
656
+ "is_groupable": false,
657
+ "is_search_able": false,
658
+ "is_sortable": false,
659
+ "is_visible": false,
660
+ "pinned": "",
661
+ "__typename": "listingColumnsType"
662
+ },
663
+ {
664
+ "width": 302,
665
+ "type": "dropdown",
666
+ "search": null,
667
+ "query": null,
668
+ "_id": null,
669
+ "column_data": [
670
+ "clocked in",
671
+ "clocked out",
672
+ "absent",
673
+ "on leave",
674
+ "holiday"
675
+ ],
676
+ "column_dropdown_value": null,
677
+ "field": "status",
678
+ "filterValue": null,
679
+ "header": "Status",
680
+ "is_amount": null,
681
+ "is_groupable": true,
682
+ "is_search_able": true,
683
+ "is_sortable": false,
684
+ "is_visible": false,
685
+ "pinned": "",
686
+ "__typename": "listingColumnsType"
687
+ },
688
+ {
689
+ "type": "currency",
690
+ "search": null,
691
+ "query": null,
692
+ "_id": null,
693
+ "column_data": [],
694
+ "column_dropdown_value": null,
695
+ "field": "total_wages",
696
+ "filterValue": null,
697
+ "header": "Total Wages",
698
+ "is_amount": null,
699
+ "is_groupable": false,
700
+ "is_search_able": false,
701
+ "is_sortable": true,
702
+ "is_visible": false,
703
+ "pinned": "",
704
+ "__typename": "listingColumnsType"
705
+ },
706
+ {
707
+ "type": "boolean",
708
+ "search": null,
709
+ "query": null,
710
+ "_id": null,
711
+ "column_data": [],
712
+ "column_dropdown_value": null,
713
+ "field": "is_payroll_processed",
714
+ "filterValue": null,
715
+ "header": "Payroll Processed",
716
+ "is_amount": null,
717
+ "is_groupable": false,
718
+ "is_search_able": false,
719
+ "is_sortable": false,
720
+ "is_visible": false,
721
+ "pinned": "",
722
+ "__typename": "listingColumnsType"
723
+ },
724
+ {
725
+ "type": "string",
726
+ "search": null,
727
+ "query": null,
728
+ "_id": null,
729
+ "column_data": [],
730
+ "column_dropdown_value": null,
731
+ "field": "short_breaks",
732
+ "filterValue": null,
733
+ "header": "Short Breaks",
734
+ "is_amount": null,
735
+ "is_groupable": false,
736
+ "is_search_able": false,
737
+ "is_sortable": false,
738
+ "is_visible": false,
739
+ "pinned": "",
740
+ "__typename": "listingColumnsType"
741
+ },
742
+ {
743
+ "type": "Number",
744
+ "search": null,
745
+ "query": null,
746
+ "_id": null,
747
+ "column_data": [],
748
+ "column_dropdown_value": null,
749
+ "field": "short_leave",
750
+ "filterValue": null,
751
+ "header": "Short Leave",
752
+ "is_amount": null,
753
+ "is_groupable": true,
754
+ "is_search_able": true,
755
+ "is_sortable": true,
756
+ "is_visible": false,
757
+ "pinned": "",
758
+ "__typename": "listingColumnsType"
759
+ },
760
+ {
761
+ "type": "number",
762
+ "search": null,
763
+ "query": null,
764
+ "_id": null,
765
+ "column_data": [],
766
+ "column_dropdown_value": null,
767
+ "field": "is_un_restricted",
768
+ "filterValue": null,
769
+ "header": "Restriction",
770
+ "is_amount": null,
771
+ "is_groupable": false,
772
+ "is_search_able": false,
773
+ "is_sortable": true,
774
+ "is_visible": false,
775
+ "pinned": "",
776
+ "__typename": "listingColumnsType"
777
+ },
778
+ {
779
+ "width": 150,
780
+ "type": "string",
781
+ "search": null,
782
+ "query": null,
783
+ "_id": null,
784
+ "column_data": [],
785
+ "column_dropdown_value": null,
786
+ "field": "manually_logs",
787
+ "filterValue": null,
788
+ "header": "Manual Logs",
789
+ "is_amount": null,
790
+ "is_groupable": false,
791
+ "is_search_able": false,
792
+ "is_sortable": false,
793
+ "is_visible": false,
794
+ "pinned": "",
795
+ "__typename": "listingColumnsType"
796
+ }
797
+ ],
798
+ "config": {
799
+ "bodyTextFontsSize": 14,
800
+ "fontFaimly": "sans-serif",
801
+ "globalSearch": "",
802
+ "headerTextFontsSize": 14,
803
+ "selectedTableLayout": "medium",
804
+ "showVerticalBorder": true,
805
+ "__typename": "TableConfigListing"
806
+ },
807
+ "filters": [],
808
+ "id": "690ae50d37b678105dc85413",
809
+ "is_default": false,
810
+ "is_temp": true,
811
+ "loadingCall": true,
812
+ "name": "ASA",
813
+ "type": "AttendanceListing",
814
+ "__typename": "listingTablePreset"
815
+ }
816
+ ],
817
+ "filters": [],
818
+ "__typename": "dataTableConfig"
819
+ },
820
+ "dailyClockHistoryList": {
821
+ "results": [
822
+ {
823
+ "BusinessLocation": null,
824
+ "clock_out_time": null,
825
+ "clock_in_time": null,
826
+ "clockedInStatus": "",
827
+ "clockedOutStatus": "",
828
+ "is_back_pay": false,
829
+ "is_over_time_public_holiday": false,
830
+ "Payroll": null,
831
+ "Schedule": {
832
+ "_id": "67bd56be81daa471a30f5487",
833
+ "schedule_date": "2025-11-06",
834
+ "__typename": "Schedule"
835
+ },
836
+ "User": {
837
+ "_id": "66d057f048e8588e75e4d860",
838
+ "full_name": "Zubair Azam",
839
+ "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057f048e8588e75e4d860/sizes/36/1730800550036_.png",
840
+ "email": "zubair@4iisolutions.com",
841
+ "phone": "+923499487385",
842
+ "department": [
843
+ {
844
+ "_id": "66d044b3e240a11b39d6600f",
845
+ "department_name": "Quality Assurance Department",
846
+ "__typename": "Department"
847
+ }
848
+ ],
849
+ "__typename": "UserBasicInfo"
850
+ },
851
+ "UserHistory": null,
852
+ "_id": "690c478112f5627bd04db869",
853
+ "attendanceDate": "2025-11-06",
854
+ "attendanceStatus": "Absent",
855
+ "attendance_adjusted_by": null,
856
+ "attendance_date": "2025-11-06T04:00:00.000Z",
857
+ "attendance_log_detail": [],
858
+ "breaks": [
859
+ {
860
+ "_id": "689049534e1868de6131b13e",
861
+ "break_in_time": null,
862
+ "break_out_time": null,
863
+ "message": null,
864
+ "breakInstatus": null,
865
+ "breakId": null,
866
+ "breakType": null,
867
+ "title": null,
868
+ "breakTypeId": null,
869
+ "break_duration": 45,
870
+ "minimum_break_percentage": 0,
871
+ "__typename": "BreakClockedHistory"
872
+ },
873
+ {
874
+ "_id": "689049534e1868de6131b13f",
875
+ "break_in_time": null,
876
+ "break_out_time": null,
877
+ "message": null,
878
+ "breakInstatus": null,
879
+ "breakId": null,
880
+ "breakType": null,
881
+ "title": null,
882
+ "breakTypeId": null,
883
+ "break_duration": 15,
884
+ "minimum_break_percentage": 0,
885
+ "__typename": "BreakClockedHistory"
886
+ },
887
+ {
888
+ "_id": "689049534e1868de6131b140",
889
+ "break_in_time": null,
890
+ "break_out_time": null,
891
+ "message": null,
892
+ "breakInstatus": null,
893
+ "breakId": null,
894
+ "breakType": null,
895
+ "title": null,
896
+ "breakTypeId": null,
897
+ "break_duration": 15,
898
+ "minimum_break_percentage": 0,
899
+ "__typename": "BreakClockedHistory"
900
+ }
901
+ ],
902
+ "is_attendance_maually_adjusted": false,
903
+ "is_over_time_weekend": false,
904
+ "is_paid_public_holiday": false,
905
+ "is_paid_weekend": false,
906
+ "is_payroll_processed": false,
907
+ "is_public_holiday": false,
908
+ "is_public_holiday_off": false,
909
+ "is_un_restricted": false,
910
+ "is_update_pending": false,
911
+ "is_weekend": false,
912
+ "logged_seconds": 0,
913
+ "logs": [
914
+ {
915
+ "log_status": "marked_absent_by_system",
916
+ "break_id": null,
917
+ "total_minutes": null,
918
+ "log_date": "2025-11-06T07:00:17.814Z",
919
+ "__typename": "logType"
920
+ }
921
+ ],
922
+ "manually_logs": [],
923
+ "message": null,
924
+ "newWriteUp": null,
925
+ "normal_time_minutes_logged": 0,
926
+ "over_time_minutes_logged": 0,
927
+ "total_wages": "0",
928
+ "status": "clocked_out",
929
+ "total_working_hours_logged": "0",
930
+ "total_working_minutes_logged": "0",
931
+ "short_leave": [],
932
+ "short_breaks": {
933
+ "short_break_duration": null,
934
+ "short_break_name": null,
935
+ "__typename": "shortBreak"
936
+ },
937
+ "__typename": "ClockedHistory"
938
+ },
939
+ {
940
+ "BusinessLocation": null,
941
+ "clock_out_time": null,
942
+ "clock_in_time": null,
943
+ "clockedInStatus": "",
944
+ "clockedOutStatus": "",
945
+ "is_back_pay": false,
946
+ "is_over_time_public_holiday": false,
947
+ "Payroll": null,
948
+ "Schedule": {
949
+ "_id": "688c569aa2d286be77f736e9",
950
+ "schedule_date": "2025-11-06",
951
+ "__typename": "Schedule"
952
+ },
953
+ "User": {
954
+ "_id": "66d057f148e8588e75e4db48",
955
+ "full_name": "Faheem Ashraf",
956
+ "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057f148e8588e75e4db48/sizes/36/1730891484983_.png",
957
+ "email": "faheem@4iisolutions.com",
958
+ "phone": "+923366545180",
959
+ "department": [
960
+ {
961
+ "_id": "66d04588e240a11b39d660c6",
962
+ "department_name": "Frontend Development Department",
963
+ "__typename": "Department"
964
+ }
965
+ ],
966
+ "__typename": "UserBasicInfo"
967
+ },
968
+ "UserHistory": null,
969
+ "_id": "690c478112f5627bd04db85b",
970
+ "attendanceDate": "2025-11-06",
971
+ "attendanceStatus": "Absent",
972
+ "attendance_adjusted_by": null,
973
+ "attendance_date": "2025-11-06T06:00:00.000Z",
974
+ "attendance_log_detail": [],
975
+ "breaks": [
976
+ {
977
+ "_id": "688c5694a2d286be77f7315e",
978
+ "break_in_time": null,
979
+ "break_out_time": null,
980
+ "message": null,
981
+ "breakInstatus": null,
982
+ "breakId": null,
983
+ "breakType": null,
984
+ "title": null,
985
+ "breakTypeId": null,
986
+ "break_duration": 45,
987
+ "minimum_break_percentage": 0,
988
+ "__typename": "BreakClockedHistory"
989
+ },
990
+ {
991
+ "_id": "688c5694a2d286be77f7315f",
992
+ "break_in_time": null,
993
+ "break_out_time": null,
994
+ "message": null,
995
+ "breakInstatus": null,
996
+ "breakId": null,
997
+ "breakType": null,
998
+ "title": null,
999
+ "breakTypeId": null,
1000
+ "break_duration": 15,
1001
+ "minimum_break_percentage": 0,
1002
+ "__typename": "BreakClockedHistory"
1003
+ },
1004
+ {
1005
+ "_id": "688c5694a2d286be77f73160",
1006
+ "break_in_time": null,
1007
+ "break_out_time": null,
1008
+ "message": null,
1009
+ "breakInstatus": null,
1010
+ "breakId": null,
1011
+ "breakType": null,
1012
+ "title": null,
1013
+ "breakTypeId": null,
1014
+ "break_duration": 15,
1015
+ "minimum_break_percentage": 0,
1016
+ "__typename": "BreakClockedHistory"
1017
+ }
1018
+ ],
1019
+ "is_attendance_maually_adjusted": false,
1020
+ "is_over_time_weekend": false,
1021
+ "is_paid_public_holiday": false,
1022
+ "is_paid_weekend": false,
1023
+ "is_payroll_processed": false,
1024
+ "is_public_holiday": false,
1025
+ "is_public_holiday_off": false,
1026
+ "is_un_restricted": false,
1027
+ "is_update_pending": false,
1028
+ "is_weekend": false,
1029
+ "logged_seconds": 0,
1030
+ "logs": [
1031
+ {
1032
+ "log_status": "marked_absent_by_system",
1033
+ "break_id": null,
1034
+ "total_minutes": null,
1035
+ "log_date": "2025-11-06T07:00:17.793Z",
1036
+ "__typename": "logType"
1037
+ }
1038
+ ],
1039
+ "manually_logs": [],
1040
+ "message": null,
1041
+ "newWriteUp": null,
1042
+ "normal_time_minutes_logged": 0,
1043
+ "over_time_minutes_logged": 0,
1044
+ "total_wages": "0",
1045
+ "status": "clocked_out",
1046
+ "total_working_hours_logged": "0",
1047
+ "total_working_minutes_logged": "0",
1048
+ "short_leave": [],
1049
+ "short_breaks": {
1050
+ "short_break_duration": null,
1051
+ "short_break_name": null,
1052
+ "__typename": "shortBreak"
1053
+ },
1054
+ "__typename": "ClockedHistory"
1055
+ },
1056
+ {
1057
+ "BusinessLocation": null,
1058
+ "clock_out_time": null,
1059
+ "clock_in_time": null,
1060
+ "clockedInStatus": "",
1061
+ "clockedOutStatus": "",
1062
+ "is_back_pay": false,
1063
+ "is_over_time_public_holiday": false,
1064
+ "Payroll": null,
1065
+ "Schedule": {
1066
+ "_id": "688a1848a2d286be77c0b1a5",
1067
+ "schedule_date": "2025-11-06",
1068
+ "__typename": "Schedule"
1069
+ },
1070
+ "User": {
1071
+ "_id": "686cee3d703f535e0f38f38d",
1072
+ "full_name": "Rida Zainab",
1073
+ "logo": null,
1074
+ "email": "rida@4iisolutions.com",
1075
+ "phone": "+923172600410",
1076
+ "department": [
1077
+ {
1078
+ "_id": "66d044b3e240a11b39d6600f",
1079
+ "department_name": "Quality Assurance Department",
1080
+ "__typename": "Department"
1081
+ }
1082
+ ],
1083
+ "__typename": "UserBasicInfo"
1084
+ },
1085
+ "UserHistory": null,
1086
+ "_id": "690c397337b678105de67d82",
1087
+ "attendanceDate": "2025-11-06",
1088
+ "attendanceStatus": "Absent",
1089
+ "attendance_adjusted_by": null,
1090
+ "attendance_date": "2025-11-06T05:00:00.000Z",
1091
+ "attendance_log_detail": [],
1092
+ "breaks": [
1093
+ {
1094
+ "_id": "688a1848a2d286be77c0b1a6",
1095
+ "break_in_time": null,
1096
+ "break_out_time": null,
1097
+ "message": null,
1098
+ "breakInstatus": null,
1099
+ "breakId": null,
1100
+ "breakType": null,
1101
+ "title": null,
1102
+ "breakTypeId": null,
1103
+ "break_duration": 45,
1104
+ "minimum_break_percentage": 0,
1105
+ "__typename": "BreakClockedHistory"
1106
+ }
1107
+ ],
1108
+ "is_attendance_maually_adjusted": false,
1109
+ "is_over_time_weekend": false,
1110
+ "is_paid_public_holiday": false,
1111
+ "is_paid_weekend": false,
1112
+ "is_payroll_processed": false,
1113
+ "is_public_holiday": false,
1114
+ "is_public_holiday_off": false,
1115
+ "is_un_restricted": false,
1116
+ "is_update_pending": false,
1117
+ "is_weekend": false,
1118
+ "logged_seconds": 0,
1119
+ "logs": [
1120
+ {
1121
+ "log_status": "marked_absent_by_system",
1122
+ "break_id": null,
1123
+ "total_minutes": null,
1124
+ "log_date": "2025-11-06T06:00:19.848Z",
1125
+ "__typename": "logType"
1126
+ }
1127
+ ],
1128
+ "manually_logs": [],
1129
+ "message": null,
1130
+ "newWriteUp": null,
1131
+ "normal_time_minutes_logged": 0,
1132
+ "over_time_minutes_logged": 0,
1133
+ "total_wages": "0",
1134
+ "status": "clocked_out",
1135
+ "total_working_hours_logged": "0",
1136
+ "total_working_minutes_logged": "0",
1137
+ "short_leave": [],
1138
+ "short_breaks": {
1139
+ "short_break_duration": null,
1140
+ "short_break_name": null,
1141
+ "__typename": "shortBreak"
1142
+ },
1143
+ "__typename": "ClockedHistory"
1144
+ },
1145
+ {
1146
+ "BusinessLocation": null,
1147
+ "clock_out_time": null,
1148
+ "clock_in_time": null,
1149
+ "clockedInStatus": "",
1150
+ "clockedOutStatus": "",
1151
+ "is_back_pay": false,
1152
+ "is_over_time_public_holiday": false,
1153
+ "Payroll": null,
1154
+ "Schedule": {
1155
+ "_id": "688a1882a2d286be77c0db55",
1156
+ "schedule_date": "2025-11-06",
1157
+ "__typename": "Schedule"
1158
+ },
1159
+ "User": {
1160
+ "_id": "66d057e048e8588e75e4b7dd",
1161
+ "full_name": "Shamila Dawood",
1162
+ "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057e048e8588e75e4b7dd/sizes/36/1731563817433_.png",
1163
+ "email": "shumaila@4iisolutions.com",
1164
+ "phone": "+923184449329",
1165
+ "department": [
1166
+ {
1167
+ "_id": "66d04443e240a11b39d65fd5",
1168
+ "department_name": "HR Department",
1169
+ "__typename": "Department"
1170
+ }
1171
+ ],
1172
+ "__typename": "UserBasicInfo"
1173
+ },
1174
+ "UserHistory": null,
1175
+ "_id": "690c397337b678105de67d6b",
1176
+ "attendanceDate": "2025-11-06",
1177
+ "attendanceStatus": "Absent",
1178
+ "attendance_adjusted_by": null,
1179
+ "attendance_date": "2025-11-06T05:00:00.000Z",
1180
+ "attendance_log_detail": [],
1181
+ "breaks": [
1182
+ {
1183
+ "_id": "688a1847a2d286be77c0ac6e",
1184
+ "break_in_time": null,
1185
+ "break_out_time": null,
1186
+ "message": null,
1187
+ "breakInstatus": null,
1188
+ "breakId": null,
1189
+ "breakType": null,
1190
+ "title": null,
1191
+ "breakTypeId": null,
1192
+ "break_duration": 45,
1193
+ "minimum_break_percentage": 0,
1194
+ "__typename": "BreakClockedHistory"
1195
+ }
1196
+ ],
1197
+ "is_attendance_maually_adjusted": false,
1198
+ "is_over_time_weekend": false,
1199
+ "is_paid_public_holiday": false,
1200
+ "is_paid_weekend": false,
1201
+ "is_payroll_processed": false,
1202
+ "is_public_holiday": false,
1203
+ "is_public_holiday_off": false,
1204
+ "is_un_restricted": false,
1205
+ "is_update_pending": false,
1206
+ "is_weekend": false,
1207
+ "logged_seconds": 0,
1208
+ "logs": [
1209
+ {
1210
+ "log_status": "marked_absent_by_system",
1211
+ "break_id": null,
1212
+ "total_minutes": null,
1213
+ "log_date": "2025-11-06T06:00:19.831Z",
1214
+ "__typename": "logType"
1215
+ }
1216
+ ],
1217
+ "manually_logs": [],
1218
+ "message": null,
1219
+ "newWriteUp": null,
1220
+ "normal_time_minutes_logged": 0,
1221
+ "over_time_minutes_logged": 0,
1222
+ "total_wages": "0",
1223
+ "status": "clocked_out",
1224
+ "total_working_hours_logged": "0",
1225
+ "total_working_minutes_logged": "0",
1226
+ "short_leave": [],
1227
+ "short_breaks": {
1228
+ "short_break_duration": null,
1229
+ "short_break_name": null,
1230
+ "__typename": "shortBreak"
1231
+ },
1232
+ "__typename": "ClockedHistory"
1233
+ },
1234
+ {
1235
+ "BusinessLocation": null,
1236
+ "clock_out_time": null,
1237
+ "clock_in_time": null,
1238
+ "clockedInStatus": "",
1239
+ "clockedOutStatus": "",
1240
+ "is_back_pay": false,
1241
+ "is_over_time_public_holiday": false,
1242
+ "Payroll": null,
1243
+ "Schedule": {
1244
+ "_id": "688a1882a2d286be77c0dc37",
1245
+ "schedule_date": "2025-11-06",
1246
+ "__typename": "Schedule"
1247
+ },
1248
+ "User": {
1249
+ "_id": "66d057fb48e8588e75e4efb9",
1250
+ "full_name": "Aiman Shahzadi",
1251
+ "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057fb48e8588e75e4efb9/sizes/36/1757333392975_.png",
1252
+ "email": "aiman@4iisolutions.com",
1253
+ "phone": "+923185124402",
1254
+ "department": [
1255
+ {
1256
+ "_id": "66d044b3e240a11b39d6600f",
1257
+ "department_name": "Quality Assurance Department",
1258
+ "__typename": "Department"
1259
+ }
1260
+ ],
1261
+ "__typename": "UserBasicInfo"
1262
+ },
1263
+ "UserHistory": null,
1264
+ "_id": "690c397337b678105de67d55",
1265
+ "attendanceDate": "2025-11-06",
1266
+ "attendanceStatus": "Absent",
1267
+ "attendance_adjusted_by": null,
1268
+ "attendance_date": "2025-11-06T05:00:00.000Z",
1269
+ "attendance_log_detail": [],
1270
+ "breaks": [
1271
+ {
1272
+ "_id": "688a1847a2d286be77c0ae1d",
1273
+ "break_in_time": null,
1274
+ "break_out_time": null,
1275
+ "message": null,
1276
+ "breakInstatus": null,
1277
+ "breakId": null,
1278
+ "breakType": null,
1279
+ "title": null,
1280
+ "breakTypeId": null,
1281
+ "break_duration": 45,
1282
+ "minimum_break_percentage": 0,
1283
+ "__typename": "BreakClockedHistory"
1284
+ }
1285
+ ],
1286
+ "is_attendance_maually_adjusted": false,
1287
+ "is_over_time_weekend": false,
1288
+ "is_paid_public_holiday": false,
1289
+ "is_paid_weekend": false,
1290
+ "is_payroll_processed": false,
1291
+ "is_public_holiday": false,
1292
+ "is_public_holiday_off": false,
1293
+ "is_un_restricted": false,
1294
+ "is_update_pending": false,
1295
+ "is_weekend": false,
1296
+ "logged_seconds": 0,
1297
+ "logs": [
1298
+ {
1299
+ "log_status": "marked_absent_by_system",
1300
+ "break_id": null,
1301
+ "total_minutes": null,
1302
+ "log_date": "2025-11-06T06:00:19.811Z",
1303
+ "__typename": "logType"
1304
+ }
1305
+ ],
1306
+ "manually_logs": [],
1307
+ "message": null,
1308
+ "newWriteUp": null,
1309
+ "normal_time_minutes_logged": 0,
1310
+ "over_time_minutes_logged": 0,
1311
+ "total_wages": "0",
1312
+ "status": "clocked_out",
1313
+ "total_working_hours_logged": "0",
1314
+ "total_working_minutes_logged": "0",
1315
+ "short_leave": [],
1316
+ "short_breaks": {
1317
+ "short_break_duration": null,
1318
+ "short_break_name": null,
1319
+ "__typename": "shortBreak"
1320
+ },
1321
+ "__typename": "ClockedHistory"
1322
+ },
1323
+ {
1324
+ "BusinessLocation": null,
1325
+ "clock_out_time": null,
1326
+ "clock_in_time": null,
1327
+ "clockedInStatus": "",
1328
+ "clockedOutStatus": "",
1329
+ "is_back_pay": false,
1330
+ "is_over_time_public_holiday": false,
1331
+ "Payroll": null,
1332
+ "Schedule": {
1333
+ "_id": "67f5f7d0373c9f5f2a6abe56",
1334
+ "schedule_date": "2025-11-06",
1335
+ "__typename": "Schedule"
1336
+ },
1337
+ "User": {
1338
+ "_id": "674d8fa1ddf2c8ed59e7c399",
1339
+ "full_name": "Sami Mahmood",
1340
+ "logo": null,
1341
+ "email": "sami@4iisolutions.com",
1342
+ "phone": "+923334227322",
1343
+ "department": [
1344
+ {
1345
+ "_id": "66d0451ee240a11b39d660b1",
1346
+ "department_name": "Backend Development Department",
1347
+ "__typename": "Department"
1348
+ }
1349
+ ],
1350
+ "__typename": "UserBasicInfo"
1351
+ },
1352
+ "UserHistory": null,
1353
+ "_id": "690c397337b678105de67d4a",
1354
+ "attendanceDate": "2025-11-06",
1355
+ "attendanceStatus": "Absent",
1356
+ "attendance_adjusted_by": null,
1357
+ "attendance_date": "2025-11-06T05:00:00.000Z",
1358
+ "attendance_log_detail": [],
1359
+ "breaks": [
1360
+ {
1361
+ "_id": "687f3b426190c39df0b9fb72",
1362
+ "break_in_time": null,
1363
+ "break_out_time": null,
1364
+ "message": null,
1365
+ "breakInstatus": null,
1366
+ "breakId": null,
1367
+ "breakType": null,
1368
+ "title": null,
1369
+ "breakTypeId": null,
1370
+ "break_duration": 60,
1371
+ "minimum_break_percentage": 0,
1372
+ "__typename": "BreakClockedHistory"
1373
+ }
1374
+ ],
1375
+ "is_attendance_maually_adjusted": false,
1376
+ "is_over_time_weekend": false,
1377
+ "is_paid_public_holiday": false,
1378
+ "is_paid_weekend": false,
1379
+ "is_payroll_processed": false,
1380
+ "is_public_holiday": false,
1381
+ "is_public_holiday_off": false,
1382
+ "is_un_restricted": false,
1383
+ "is_update_pending": false,
1384
+ "is_weekend": false,
1385
+ "logged_seconds": 0,
1386
+ "logs": [
1387
+ {
1388
+ "log_status": "marked_absent_by_system",
1389
+ "break_id": null,
1390
+ "total_minutes": null,
1391
+ "log_date": "2025-11-06T06:00:19.802Z",
1392
+ "__typename": "logType"
1393
+ }
1394
+ ],
1395
+ "manually_logs": [],
1396
+ "message": null,
1397
+ "newWriteUp": null,
1398
+ "normal_time_minutes_logged": 0,
1399
+ "over_time_minutes_logged": 0,
1400
+ "total_wages": "0",
1401
+ "status": "clocked_out",
1402
+ "total_working_hours_logged": "0",
1403
+ "total_working_minutes_logged": "0",
1404
+ "short_leave": [],
1405
+ "short_breaks": {
1406
+ "short_break_duration": null,
1407
+ "short_break_name": null,
1408
+ "__typename": "shortBreak"
1409
+ },
1410
+ "__typename": "ClockedHistory"
1411
+ },
1412
+ {
1413
+ "BusinessLocation": null,
1414
+ "clock_out_time": null,
1415
+ "clock_in_time": null,
1416
+ "clockedInStatus": "",
1417
+ "clockedOutStatus": "",
1418
+ "is_back_pay": false,
1419
+ "is_over_time_public_holiday": false,
1420
+ "Payroll": null,
1421
+ "Schedule": {
1422
+ "_id": "67bd54b781daa471a30e1506",
1423
+ "schedule_date": "2025-11-06",
1424
+ "__typename": "Schedule"
1425
+ },
1426
+ "User": {
1427
+ "_id": "66d057f348e8588e75e4de2e",
1428
+ "full_name": "Abdul Basit",
1429
+ "logo": null,
1430
+ "email": "basit@4iisolutions.com",
1431
+ "phone": "+923366691119",
1432
+ "department": [
1433
+ {
1434
+ "_id": "66d04588e240a11b39d660c6",
1435
+ "department_name": "Frontend Development Department",
1436
+ "__typename": "Department"
1437
+ }
1438
+ ],
1439
+ "__typename": "UserBasicInfo"
1440
+ },
1441
+ "UserHistory": null,
1442
+ "_id": "690c2b6637b678105de4e32b",
1443
+ "attendanceDate": "2025-11-06",
1444
+ "attendanceStatus": "Absent",
1445
+ "attendance_adjusted_by": null,
1446
+ "attendance_date": "2025-11-06T04:00:00.000Z",
1447
+ "attendance_log_detail": [],
1448
+ "breaks": [
1449
+ {
1450
+ "_id": "67bd54b781daa471a30e1507",
1451
+ "break_in_time": null,
1452
+ "break_out_time": null,
1453
+ "message": null,
1454
+ "breakInstatus": null,
1455
+ "breakId": null,
1456
+ "breakType": null,
1457
+ "title": null,
1458
+ "breakTypeId": null,
1459
+ "break_duration": 60,
1460
+ "minimum_break_percentage": 0,
1461
+ "__typename": "BreakClockedHistory"
1462
+ }
1463
+ ],
1464
+ "is_attendance_maually_adjusted": false,
1465
+ "is_over_time_weekend": false,
1466
+ "is_paid_public_holiday": false,
1467
+ "is_paid_weekend": false,
1468
+ "is_payroll_processed": false,
1469
+ "is_public_holiday": false,
1470
+ "is_public_holiday_off": false,
1471
+ "is_un_restricted": false,
1472
+ "is_update_pending": false,
1473
+ "is_weekend": false,
1474
+ "logged_seconds": 0,
1475
+ "logs": [
1476
+ {
1477
+ "log_status": "marked_absent_by_system",
1478
+ "break_id": null,
1479
+ "total_minutes": null,
1480
+ "log_date": "2025-11-06T05:00:22.454Z",
1481
+ "__typename": "logType"
1482
+ }
1483
+ ],
1484
+ "manually_logs": [],
1485
+ "message": null,
1486
+ "newWriteUp": null,
1487
+ "normal_time_minutes_logged": 0,
1488
+ "over_time_minutes_logged": 0,
1489
+ "total_wages": "0",
1490
+ "status": "clocked_out",
1491
+ "total_working_hours_logged": "0",
1492
+ "total_working_minutes_logged": "0",
1493
+ "short_leave": [],
1494
+ "short_breaks": {
1495
+ "short_break_duration": null,
1496
+ "short_break_name": null,
1497
+ "__typename": "shortBreak"
1498
+ },
1499
+ "__typename": "ClockedHistory"
1500
+ },
1501
+ {
1502
+ "BusinessLocation": null,
1503
+ "clock_out_time": null,
1504
+ "clock_in_time": null,
1505
+ "clockedInStatus": "",
1506
+ "clockedOutStatus": "",
1507
+ "is_back_pay": false,
1508
+ "is_over_time_public_holiday": false,
1509
+ "Payroll": null,
1510
+ "Schedule": {
1511
+ "_id": "67bd54f281daa471a30e37fc",
1512
+ "schedule_date": "2025-11-06",
1513
+ "__typename": "Schedule"
1514
+ },
1515
+ "User": {
1516
+ "_id": "66d057ea48e8588e75e4ccc6",
1517
+ "full_name": "Azhar Abbas",
1518
+ "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057ea48e8588e75e4ccc6/sizes/36/1730805216685_.png",
1519
+ "email": "azhar@4iisolutions.com",
1520
+ "phone": "+923466969193",
1521
+ "department": [
1522
+ {
1523
+ "_id": "66d0451ee240a11b39d660b1",
1524
+ "department_name": "Backend Development Department",
1525
+ "__typename": "Department"
1526
+ }
1527
+ ],
1528
+ "__typename": "UserBasicInfo"
1529
+ },
1530
+ "UserHistory": null,
1531
+ "_id": "690c2b6637b678105de4e2a8",
1532
+ "attendanceDate": "2025-11-06",
1533
+ "attendanceStatus": "Absent",
1534
+ "attendance_adjusted_by": null,
1535
+ "attendance_date": "2025-11-06T04:00:00.000Z",
1536
+ "attendance_log_detail": [],
1537
+ "breaks": [
1538
+ {
1539
+ "_id": "67bd54f281daa471a30e37fd",
1540
+ "break_in_time": null,
1541
+ "break_out_time": null,
1542
+ "message": null,
1543
+ "breakInstatus": null,
1544
+ "breakId": null,
1545
+ "breakType": null,
1546
+ "title": null,
1547
+ "breakTypeId": null,
1548
+ "break_duration": 60,
1549
+ "minimum_break_percentage": 0,
1550
+ "__typename": "BreakClockedHistory"
1551
+ }
1552
+ ],
1553
+ "is_attendance_maually_adjusted": false,
1554
+ "is_over_time_weekend": false,
1555
+ "is_paid_public_holiday": false,
1556
+ "is_paid_weekend": false,
1557
+ "is_payroll_processed": false,
1558
+ "is_public_holiday": false,
1559
+ "is_public_holiday_off": false,
1560
+ "is_un_restricted": false,
1561
+ "is_update_pending": false,
1562
+ "is_weekend": false,
1563
+ "logged_seconds": 0,
1564
+ "logs": [
1565
+ {
1566
+ "log_status": "marked_absent_by_system",
1567
+ "break_id": null,
1568
+ "total_minutes": null,
1569
+ "log_date": "2025-11-06T05:00:22.296Z",
1570
+ "__typename": "logType"
1571
+ }
1572
+ ],
1573
+ "manually_logs": [],
1574
+ "message": null,
1575
+ "newWriteUp": null,
1576
+ "normal_time_minutes_logged": 0,
1577
+ "over_time_minutes_logged": 0,
1578
+ "total_wages": "0",
1579
+ "status": "clocked_out",
1580
+ "total_working_hours_logged": "0",
1581
+ "total_working_minutes_logged": "0",
1582
+ "short_leave": [],
1583
+ "short_breaks": {
1584
+ "short_break_duration": null,
1585
+ "short_break_name": null,
1586
+ "__typename": "shortBreak"
1587
+ },
1588
+ "__typename": "ClockedHistory"
1589
+ },
1590
+ {
1591
+ "BusinessLocation": null,
1592
+ "clock_out_time": null,
1593
+ "clock_in_time": null,
1594
+ "clockedInStatus": "",
1595
+ "clockedOutStatus": "",
1596
+ "is_back_pay": false,
1597
+ "is_over_time_public_holiday": false,
1598
+ "Payroll": null,
1599
+ "Schedule": {
1600
+ "_id": "67bd557e81daa471a30e89f0",
1601
+ "schedule_date": "2025-11-06",
1602
+ "__typename": "Schedule"
1603
+ },
1604
+ "User": {
1605
+ "_id": "66fcf2025355f0cc24f78f46",
1606
+ "full_name": "Muhammad Hamza",
1607
+ "logo": null,
1608
+ "email": "hamza@4iisolutions.com",
1609
+ "phone": "+923045884368",
1610
+ "department": [
1611
+ {
1612
+ "_id": "66d0451ee240a11b39d660b1",
1613
+ "department_name": "Backend Development Department",
1614
+ "__typename": "Department"
1615
+ }
1616
+ ],
1617
+ "__typename": "UserBasicInfo"
1618
+ },
1619
+ "UserHistory": null,
1620
+ "_id": "690c2b6637b678105de4e22c",
1621
+ "attendanceDate": "2025-11-06",
1622
+ "attendanceStatus": "Absent",
1623
+ "attendance_adjusted_by": null,
1624
+ "attendance_date": "2025-11-06T04:00:00.000Z",
1625
+ "attendance_log_detail": [],
1626
+ "breaks": [
1627
+ {
1628
+ "_id": "67bd557e81daa471a30e89f1",
1629
+ "break_in_time": null,
1630
+ "break_out_time": null,
1631
+ "message": null,
1632
+ "breakInstatus": null,
1633
+ "breakId": null,
1634
+ "breakType": null,
1635
+ "title": null,
1636
+ "breakTypeId": null,
1637
+ "break_duration": 60,
1638
+ "minimum_break_percentage": 0,
1639
+ "__typename": "BreakClockedHistory"
1640
+ }
1641
+ ],
1642
+ "is_attendance_maually_adjusted": false,
1643
+ "is_over_time_weekend": false,
1644
+ "is_paid_public_holiday": false,
1645
+ "is_paid_weekend": false,
1646
+ "is_payroll_processed": false,
1647
+ "is_public_holiday": false,
1648
+ "is_public_holiday_off": false,
1649
+ "is_un_restricted": false,
1650
+ "is_update_pending": false,
1651
+ "is_weekend": false,
1652
+ "logged_seconds": 0,
1653
+ "logs": [
1654
+ {
1655
+ "log_status": "marked_absent_by_system",
1656
+ "break_id": null,
1657
+ "total_minutes": null,
1658
+ "log_date": "2025-11-06T05:00:22.169Z",
1659
+ "__typename": "logType"
1660
+ }
1661
+ ],
1662
+ "manually_logs": [],
1663
+ "message": null,
1664
+ "newWriteUp": null,
1665
+ "normal_time_minutes_logged": 0,
1666
+ "over_time_minutes_logged": 0,
1667
+ "total_wages": "0",
1668
+ "status": "clocked_out",
1669
+ "total_working_hours_logged": "0",
1670
+ "total_working_minutes_logged": "0",
1671
+ "short_leave": [],
1672
+ "short_breaks": {
1673
+ "short_break_duration": null,
1674
+ "short_break_name": null,
1675
+ "__typename": "shortBreak"
1676
+ },
1677
+ "__typename": "ClockedHistory"
1678
+ },
1679
+ {
1680
+ "BusinessLocation": null,
1681
+ "clock_out_time": null,
1682
+ "clock_in_time": null,
1683
+ "clockedInStatus": "",
1684
+ "clockedOutStatus": "",
1685
+ "is_back_pay": false,
1686
+ "is_over_time_public_holiday": false,
1687
+ "Payroll": null,
1688
+ "Schedule": {
1689
+ "_id": "67bd554a81daa471a30e6e50",
1690
+ "schedule_date": "2025-11-06",
1691
+ "__typename": "Schedule"
1692
+ },
1693
+ "User": {
1694
+ "_id": "66d057fd48e8588e75e4f2ac",
1695
+ "full_name": "Muhammad Afaq Raja",
1696
+ "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057fd48e8588e75e4f2ac/sizes/36/1730801161032_.png",
1697
+ "email": "afaq@4iisolutions.com",
1698
+ "phone": "+923355274763",
1699
+ "department": [
1700
+ {
1701
+ "_id": "66d04588e240a11b39d660c6",
1702
+ "department_name": "Frontend Development Department",
1703
+ "__typename": "Department"
1704
+ }
1705
+ ],
1706
+ "__typename": "UserBasicInfo"
1707
+ },
1708
+ "UserHistory": null,
1709
+ "_id": "690c2b6637b678105de4e228",
1710
+ "attendanceDate": "2025-11-06",
1711
+ "attendanceStatus": "Absent",
1712
+ "attendance_adjusted_by": null,
1713
+ "attendance_date": "2025-11-06T04:00:00.000Z",
1714
+ "attendance_log_detail": [],
1715
+ "breaks": [
1716
+ {
1717
+ "_id": "67bd554a81daa471a30e6e51",
1718
+ "break_in_time": null,
1719
+ "break_out_time": null,
1720
+ "message": null,
1721
+ "breakInstatus": null,
1722
+ "breakId": null,
1723
+ "breakType": null,
1724
+ "title": null,
1725
+ "breakTypeId": null,
1726
+ "break_duration": 60,
1727
+ "minimum_break_percentage": 0,
1728
+ "__typename": "BreakClockedHistory"
1729
+ }
1730
+ ],
1731
+ "is_attendance_maually_adjusted": false,
1732
+ "is_over_time_weekend": false,
1733
+ "is_paid_public_holiday": false,
1734
+ "is_paid_weekend": false,
1735
+ "is_payroll_processed": false,
1736
+ "is_public_holiday": false,
1737
+ "is_public_holiday_off": false,
1738
+ "is_un_restricted": false,
1739
+ "is_update_pending": false,
1740
+ "is_weekend": false,
1741
+ "logged_seconds": 0,
1742
+ "logs": [
1743
+ {
1744
+ "log_status": "marked_absent_by_system",
1745
+ "break_id": null,
1746
+ "total_minutes": null,
1747
+ "log_date": "2025-11-06T05:00:22.166Z",
1748
+ "__typename": "logType"
1749
+ }
1750
+ ],
1751
+ "manually_logs": [],
1752
+ "message": null,
1753
+ "newWriteUp": null,
1754
+ "normal_time_minutes_logged": 0,
1755
+ "over_time_minutes_logged": 0,
1756
+ "total_wages": "0",
1757
+ "status": "clocked_out",
1758
+ "total_working_hours_logged": "0",
1759
+ "total_working_minutes_logged": "0",
1760
+ "short_leave": [],
1761
+ "short_breaks": {
1762
+ "short_break_duration": null,
1763
+ "short_break_name": null,
1764
+ "__typename": "shortBreak"
1765
+ },
1766
+ "__typename": "ClockedHistory"
1767
+ },
1768
+ {
1769
+ "BusinessLocation": null,
1770
+ "clock_out_time": null,
1771
+ "clock_in_time": null,
1772
+ "clockedInStatus": "",
1773
+ "clockedOutStatus": "",
1774
+ "is_back_pay": false,
1775
+ "is_over_time_public_holiday": false,
1776
+ "Payroll": null,
1777
+ "Schedule": {
1778
+ "_id": "67bd566481daa471a30f139c",
1779
+ "schedule_date": "2025-11-06",
1780
+ "__typename": "Schedule"
1781
+ },
1782
+ "User": {
1783
+ "_id": "66d057ee48e8588e75e4d57a",
1784
+ "full_name": "Sohaib Sardar",
1785
+ "logo": null,
1786
+ "email": "sohaib@4iisolutions.com",
1787
+ "phone": "+923356668456",
1788
+ "department": [
1789
+ {
1790
+ "_id": "66d04588e240a11b39d660c6",
1791
+ "department_name": "Frontend Development Department",
1792
+ "__typename": "Department"
1793
+ }
1794
+ ],
1795
+ "__typename": "UserBasicInfo"
1796
+ },
1797
+ "UserHistory": null,
1798
+ "_id": "690c2b6637b678105de4e206",
1799
+ "attendanceDate": "2025-11-06",
1800
+ "attendanceStatus": "Absent",
1801
+ "attendance_adjusted_by": null,
1802
+ "attendance_date": "2025-11-06T04:00:00.000Z",
1803
+ "attendance_log_detail": [],
1804
+ "breaks": [
1805
+ {
1806
+ "_id": "67bd566481daa471a30f139d",
1807
+ "break_in_time": null,
1808
+ "break_out_time": null,
1809
+ "message": null,
1810
+ "breakInstatus": null,
1811
+ "breakId": null,
1812
+ "breakType": null,
1813
+ "title": null,
1814
+ "breakTypeId": null,
1815
+ "break_duration": 60,
1816
+ "minimum_break_percentage": 0,
1817
+ "__typename": "BreakClockedHistory"
1818
+ }
1819
+ ],
1820
+ "is_attendance_maually_adjusted": false,
1821
+ "is_over_time_weekend": false,
1822
+ "is_paid_public_holiday": false,
1823
+ "is_paid_weekend": false,
1824
+ "is_payroll_processed": false,
1825
+ "is_public_holiday": false,
1826
+ "is_public_holiday_off": false,
1827
+ "is_un_restricted": false,
1828
+ "is_update_pending": false,
1829
+ "is_weekend": false,
1830
+ "logged_seconds": 0,
1831
+ "logs": [
1832
+ {
1833
+ "log_status": "marked_absent_by_system",
1834
+ "break_id": null,
1835
+ "total_minutes": null,
1836
+ "log_date": "2025-11-06T05:00:22.101Z",
1837
+ "__typename": "logType"
1838
+ }
1839
+ ],
1840
+ "manually_logs": [],
1841
+ "message": null,
1842
+ "newWriteUp": null,
1843
+ "normal_time_minutes_logged": 0,
1844
+ "over_time_minutes_logged": 0,
1845
+ "total_wages": "0",
1846
+ "status": "clocked_out",
1847
+ "total_working_hours_logged": "0",
1848
+ "total_working_minutes_logged": "0",
1849
+ "short_leave": [],
1850
+ "short_breaks": {
1851
+ "short_break_duration": null,
1852
+ "short_break_name": null,
1853
+ "__typename": "shortBreak"
1854
+ },
1855
+ "__typename": "ClockedHistory"
1856
+ },
1857
+ {
1858
+ "BusinessLocation": null,
1859
+ "clock_out_time": null,
1860
+ "clock_in_time": null,
1861
+ "clockedInStatus": "",
1862
+ "clockedOutStatus": "",
1863
+ "is_back_pay": false,
1864
+ "is_over_time_public_holiday": false,
1865
+ "Payroll": null,
1866
+ "Schedule": {
1867
+ "_id": "67bd566581daa471a30f182d",
1868
+ "schedule_date": "2025-11-06",
1869
+ "__typename": "Schedule"
1870
+ },
1871
+ "User": {
1872
+ "_id": "66d057fb48e8588e75e4efc6",
1873
+ "full_name": "Tariq Sherazi",
1874
+ "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057fb48e8588e75e4efc6/sizes/36/1730867828074_.png",
1875
+ "email": "tariq@4iisolutions.com",
1876
+ "phone": "+923038806600",
1877
+ "department": [
1878
+ {
1879
+ "_id": "66d0451ee240a11b39d660b1",
1880
+ "department_name": "Backend Development Department",
1881
+ "__typename": "Department"
1882
+ }
1883
+ ],
1884
+ "__typename": "UserBasicInfo"
1885
+ },
1886
+ "UserHistory": null,
1887
+ "_id": "690c2b6637b678105de4e1fc",
1888
+ "attendanceDate": "2025-11-06",
1889
+ "attendanceStatus": "Absent",
1890
+ "attendance_adjusted_by": null,
1891
+ "attendance_date": "2025-11-06T04:00:00.000Z",
1892
+ "attendance_log_detail": [],
1893
+ "breaks": [
1894
+ {
1895
+ "_id": "67bd566581daa471a30f182e",
1896
+ "break_in_time": null,
1897
+ "break_out_time": null,
1898
+ "message": null,
1899
+ "breakInstatus": null,
1900
+ "breakId": null,
1901
+ "breakType": null,
1902
+ "title": null,
1903
+ "breakTypeId": null,
1904
+ "break_duration": 60,
1905
+ "minimum_break_percentage": 0,
1906
+ "__typename": "BreakClockedHistory"
1907
+ }
1908
+ ],
1909
+ "is_attendance_maually_adjusted": false,
1910
+ "is_over_time_weekend": false,
1911
+ "is_paid_public_holiday": false,
1912
+ "is_paid_weekend": false,
1913
+ "is_payroll_processed": false,
1914
+ "is_public_holiday": false,
1915
+ "is_public_holiday_off": false,
1916
+ "is_un_restricted": false,
1917
+ "is_update_pending": false,
1918
+ "is_weekend": false,
1919
+ "logged_seconds": 0,
1920
+ "logs": [
1921
+ {
1922
+ "log_status": "marked_absent_by_system",
1923
+ "break_id": null,
1924
+ "total_minutes": null,
1925
+ "log_date": "2025-11-06T05:00:22.094Z",
1926
+ "__typename": "logType"
1927
+ }
1928
+ ],
1929
+ "manually_logs": [],
1930
+ "message": null,
1931
+ "newWriteUp": null,
1932
+ "normal_time_minutes_logged": 0,
1933
+ "over_time_minutes_logged": 0,
1934
+ "total_wages": "0",
1935
+ "status": "clocked_out",
1936
+ "total_working_hours_logged": "0",
1937
+ "total_working_minutes_logged": "0",
1938
+ "short_leave": [],
1939
+ "short_breaks": {
1940
+ "short_break_duration": null,
1941
+ "short_break_name": null,
1942
+ "__typename": "shortBreak"
1943
+ },
1944
+ "__typename": "ClockedHistory"
1945
+ },
1946
+ // {
1947
+ // "BusinessLocation": null,
1948
+ // "clock_out_time": null,
1949
+ // "clock_in_time": null,
1950
+ // "clockedInStatus": "",
1951
+ // "clockedOutStatus": "",
1952
+ // "is_back_pay": false,
1953
+ // "is_over_time_public_holiday": false,
1954
+ // "Payroll": null,
1955
+ // "Schedule": {
1956
+ // "_id": "67bd54ac81daa471a30e11ce",
1957
+ // "schedule_date": "2025-11-06",
1958
+ // "__typename": "Schedule"
1959
+ // },
1960
+ // "User": {
1961
+ // "_id": "66d057f748e8588e75e4e6ed",
1962
+ // "full_name": "Abubakar Sidique",
1963
+ // "logo": null,
1964
+ // "email": "abubakar@4iisolutions.com",
1965
+ // "phone": "+923473689443",
1966
+ // "department": [
1967
+ // {
1968
+ // "_id": "66d04588e240a11b39d660c6",
1969
+ // "department_name": "Frontend Development Department",
1970
+ // "__typename": "Department"
1971
+ // }
1972
+ // ],
1973
+ // "__typename": "UserBasicInfo"
1974
+ // },
1975
+ // "UserHistory": null,
1976
+ // "_id": "690c2b6637b678105de4e1f8",
1977
+ // "attendanceDate": "2025-11-06",
1978
+ // "attendanceStatus": "Absent",
1979
+ // "attendance_adjusted_by": null,
1980
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
1981
+ // "attendance_log_detail": [],
1982
+ // "breaks": [
1983
+ // {
1984
+ // "_id": "67bd54ac81daa471a30e11cf",
1985
+ // "break_in_time": null,
1986
+ // "break_out_time": null,
1987
+ // "message": null,
1988
+ // "breakInstatus": null,
1989
+ // "breakId": null,
1990
+ // "breakType": null,
1991
+ // "title": null,
1992
+ // "breakTypeId": null,
1993
+ // "break_duration": 60,
1994
+ // "minimum_break_percentage": 0,
1995
+ // "__typename": "BreakClockedHistory"
1996
+ // }
1997
+ // ],
1998
+ // "is_attendance_maually_adjusted": false,
1999
+ // "is_over_time_weekend": false,
2000
+ // "is_paid_public_holiday": false,
2001
+ // "is_paid_weekend": false,
2002
+ // "is_payroll_processed": false,
2003
+ // "is_public_holiday": false,
2004
+ // "is_public_holiday_off": false,
2005
+ // "is_un_restricted": false,
2006
+ // "is_update_pending": false,
2007
+ // "is_weekend": false,
2008
+ // "logged_seconds": 0,
2009
+ // "logs": [
2010
+ // {
2011
+ // "log_status": "marked_absent_by_system",
2012
+ // "break_id": null,
2013
+ // "total_minutes": null,
2014
+ // "log_date": "2025-11-06T05:00:22.090Z",
2015
+ // "__typename": "logType"
2016
+ // }
2017
+ // ],
2018
+ // "manually_logs": [],
2019
+ // "message": null,
2020
+ // "newWriteUp": null,
2021
+ // "normal_time_minutes_logged": 0,
2022
+ // "over_time_minutes_logged": 0,
2023
+ // "total_wages": "0",
2024
+ // "status": "clocked_out",
2025
+ // "total_working_hours_logged": "0",
2026
+ // "total_working_minutes_logged": "0",
2027
+ // "short_leave": [],
2028
+ // "short_breaks": {
2029
+ // "short_break_duration": null,
2030
+ // "short_break_name": null,
2031
+ // "__typename": "shortBreak"
2032
+ // },
2033
+ // "__typename": "ClockedHistory"
2034
+ // },
2035
+ // {
2036
+ // "BusinessLocation": null,
2037
+ // "clock_out_time": null,
2038
+ // "clock_in_time": null,
2039
+ // "clockedInStatus": "",
2040
+ // "clockedOutStatus": "",
2041
+ // "is_back_pay": false,
2042
+ // "is_over_time_public_holiday": false,
2043
+ // "Payroll": null,
2044
+ // "Schedule": {
2045
+ // "_id": "67bd54fa81daa471a30e4092",
2046
+ // "schedule_date": "2025-11-06",
2047
+ // "__typename": "Schedule"
2048
+ // },
2049
+ // "User": {
2050
+ // "_id": "66d057e848e8588e75e4c9e0",
2051
+ // "full_name": "Asad Awan",
2052
+ // "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057e848e8588e75e4c9e0/sizes/36/1730800961028_.png",
2053
+ // "email": "asad@4iisolutions.com",
2054
+ // "phone": "+923045203200",
2055
+ // "department": [
2056
+ // {
2057
+ // "_id": "66d0451ee240a11b39d660b1",
2058
+ // "department_name": "Backend Development Department",
2059
+ // "__typename": "Department"
2060
+ // },
2061
+ // {
2062
+ // "_id": "66d04588e240a11b39d660c6",
2063
+ // "department_name": "Frontend Development Department",
2064
+ // "__typename": "Department"
2065
+ // }
2066
+ // ],
2067
+ // "__typename": "UserBasicInfo"
2068
+ // },
2069
+ // "UserHistory": null,
2070
+ // "_id": "690c2b6637b678105de4e1f4",
2071
+ // "attendanceDate": "2025-11-06",
2072
+ // "attendanceStatus": "Absent",
2073
+ // "attendance_adjusted_by": null,
2074
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
2075
+ // "attendance_log_detail": [],
2076
+ // "breaks": [
2077
+ // {
2078
+ // "_id": "67bd54fa81daa471a30e4093",
2079
+ // "break_in_time": null,
2080
+ // "break_out_time": null,
2081
+ // "message": null,
2082
+ // "breakInstatus": null,
2083
+ // "breakId": null,
2084
+ // "breakType": null,
2085
+ // "title": null,
2086
+ // "breakTypeId": null,
2087
+ // "break_duration": 60,
2088
+ // "minimum_break_percentage": 0,
2089
+ // "__typename": "BreakClockedHistory"
2090
+ // }
2091
+ // ],
2092
+ // "is_attendance_maually_adjusted": false,
2093
+ // "is_over_time_weekend": false,
2094
+ // "is_paid_public_holiday": false,
2095
+ // "is_paid_weekend": false,
2096
+ // "is_payroll_processed": false,
2097
+ // "is_public_holiday": false,
2098
+ // "is_public_holiday_off": false,
2099
+ // "is_un_restricted": false,
2100
+ // "is_update_pending": false,
2101
+ // "is_weekend": false,
2102
+ // "logged_seconds": 0,
2103
+ // "logs": [
2104
+ // {
2105
+ // "log_status": "marked_absent_by_system",
2106
+ // "break_id": null,
2107
+ // "total_minutes": null,
2108
+ // "log_date": "2025-11-06T05:00:22.087Z",
2109
+ // "__typename": "logType"
2110
+ // }
2111
+ // ],
2112
+ // "manually_logs": [],
2113
+ // "message": null,
2114
+ // "newWriteUp": null,
2115
+ // "normal_time_minutes_logged": 0,
2116
+ // "over_time_minutes_logged": 0,
2117
+ // "total_wages": "0",
2118
+ // "status": "clocked_out",
2119
+ // "total_working_hours_logged": "0",
2120
+ // "total_working_minutes_logged": "0",
2121
+ // "short_leave": [],
2122
+ // "short_breaks": {
2123
+ // "short_break_duration": null,
2124
+ // "short_break_name": null,
2125
+ // "__typename": "shortBreak"
2126
+ // },
2127
+ // "__typename": "ClockedHistory"
2128
+ // },
2129
+ // {
2130
+ // "BusinessLocation": null,
2131
+ // "clock_out_time": null,
2132
+ // "clock_in_time": null,
2133
+ // "clockedInStatus": "",
2134
+ // "clockedOutStatus": "",
2135
+ // "is_back_pay": false,
2136
+ // "is_over_time_public_holiday": false,
2137
+ // "Payroll": null,
2138
+ // "Schedule": {
2139
+ // "_id": "67bd55f581daa471a30ecec2",
2140
+ // "schedule_date": "2025-11-06",
2141
+ // "__typename": "Schedule"
2142
+ // },
2143
+ // "User": {
2144
+ // "_id": "66d0580648e8588e75e5042a",
2145
+ // "full_name": "Naveed Asghar",
2146
+ // "logo": null,
2147
+ // "email": "asghar@4iisolutions.com",
2148
+ // "phone": "+923320969545",
2149
+ // "department": [
2150
+ // {
2151
+ // "_id": "66d0451ee240a11b39d660b1",
2152
+ // "department_name": "Backend Development Department",
2153
+ // "__typename": "Department"
2154
+ // }
2155
+ // ],
2156
+ // "__typename": "UserBasicInfo"
2157
+ // },
2158
+ // "UserHistory": null,
2159
+ // "_id": "690c2b6637b678105de4e1f0",
2160
+ // "attendanceDate": "2025-11-06",
2161
+ // "attendanceStatus": "Absent",
2162
+ // "attendance_adjusted_by": null,
2163
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
2164
+ // "attendance_log_detail": [],
2165
+ // "breaks": [
2166
+ // {
2167
+ // "_id": "67bd55f581daa471a30ecec3",
2168
+ // "break_in_time": null,
2169
+ // "break_out_time": null,
2170
+ // "message": null,
2171
+ // "breakInstatus": null,
2172
+ // "breakId": null,
2173
+ // "breakType": null,
2174
+ // "title": null,
2175
+ // "breakTypeId": null,
2176
+ // "break_duration": 60,
2177
+ // "minimum_break_percentage": 0,
2178
+ // "__typename": "BreakClockedHistory"
2179
+ // }
2180
+ // ],
2181
+ // "is_attendance_maually_adjusted": false,
2182
+ // "is_over_time_weekend": false,
2183
+ // "is_paid_public_holiday": false,
2184
+ // "is_paid_weekend": false,
2185
+ // "is_payroll_processed": false,
2186
+ // "is_public_holiday": false,
2187
+ // "is_public_holiday_off": false,
2188
+ // "is_un_restricted": false,
2189
+ // "is_update_pending": false,
2190
+ // "is_weekend": false,
2191
+ // "logged_seconds": 0,
2192
+ // "logs": [
2193
+ // {
2194
+ // "log_status": "marked_absent_by_system",
2195
+ // "break_id": null,
2196
+ // "total_minutes": null,
2197
+ // "log_date": "2025-11-06T05:00:22.084Z",
2198
+ // "__typename": "logType"
2199
+ // }
2200
+ // ],
2201
+ // "manually_logs": [],
2202
+ // "message": null,
2203
+ // "newWriteUp": null,
2204
+ // "normal_time_minutes_logged": 0,
2205
+ // "over_time_minutes_logged": 0,
2206
+ // "total_wages": "0",
2207
+ // "status": "clocked_out",
2208
+ // "total_working_hours_logged": "0",
2209
+ // "total_working_minutes_logged": "0",
2210
+ // "short_leave": [],
2211
+ // "short_breaks": {
2212
+ // "short_break_duration": null,
2213
+ // "short_break_name": null,
2214
+ // "__typename": "shortBreak"
2215
+ // },
2216
+ // "__typename": "ClockedHistory"
2217
+ // },
2218
+ // {
2219
+ // "BusinessLocation": null,
2220
+ // "clock_out_time": null,
2221
+ // "clock_in_time": null,
2222
+ // "clockedInStatus": "",
2223
+ // "clockedOutStatus": "",
2224
+ // "is_back_pay": false,
2225
+ // "is_over_time_public_holiday": false,
2226
+ // "Payroll": null,
2227
+ // "Schedule": {
2228
+ // "_id": "67bd564c81daa471a30f0829",
2229
+ // "schedule_date": "2025-11-06",
2230
+ // "__typename": "Schedule"
2231
+ // },
2232
+ // "User": {
2233
+ // "_id": "66f1000dca1e401930696884",
2234
+ // "full_name": "Shafaqat Siddique",
2235
+ // "logo": null,
2236
+ // "email": "Shafaqat@4iisolutions.com",
2237
+ // "phone": "+923333066920",
2238
+ // "department": [
2239
+ // {
2240
+ // "_id": "66d0462fe240a11b39d67aa7",
2241
+ // "department_name": "DevOps and Network Administration Department",
2242
+ // "__typename": "Department"
2243
+ // }
2244
+ // ],
2245
+ // "__typename": "UserBasicInfo"
2246
+ // },
2247
+ // "UserHistory": null,
2248
+ // "_id": "690c2b6637b678105de4e1ec",
2249
+ // "attendanceDate": "2025-11-06",
2250
+ // "attendanceStatus": "Absent",
2251
+ // "attendance_adjusted_by": null,
2252
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
2253
+ // "attendance_log_detail": [],
2254
+ // "breaks": [
2255
+ // {
2256
+ // "_id": "67bd564c81daa471a30f082a",
2257
+ // "break_in_time": null,
2258
+ // "break_out_time": null,
2259
+ // "message": null,
2260
+ // "breakInstatus": null,
2261
+ // "breakId": null,
2262
+ // "breakType": null,
2263
+ // "title": null,
2264
+ // "breakTypeId": null,
2265
+ // "break_duration": 60,
2266
+ // "minimum_break_percentage": 0,
2267
+ // "__typename": "BreakClockedHistory"
2268
+ // }
2269
+ // ],
2270
+ // "is_attendance_maually_adjusted": false,
2271
+ // "is_over_time_weekend": false,
2272
+ // "is_paid_public_holiday": false,
2273
+ // "is_paid_weekend": false,
2274
+ // "is_payroll_processed": false,
2275
+ // "is_public_holiday": false,
2276
+ // "is_public_holiday_off": false,
2277
+ // "is_un_restricted": false,
2278
+ // "is_update_pending": false,
2279
+ // "is_weekend": false,
2280
+ // "logged_seconds": 0,
2281
+ // "logs": [
2282
+ // {
2283
+ // "log_status": "marked_absent_by_system",
2284
+ // "break_id": null,
2285
+ // "total_minutes": null,
2286
+ // "log_date": "2025-11-06T05:00:22.081Z",
2287
+ // "__typename": "logType"
2288
+ // }
2289
+ // ],
2290
+ // "manually_logs": [],
2291
+ // "message": null,
2292
+ // "newWriteUp": null,
2293
+ // "normal_time_minutes_logged": 0,
2294
+ // "over_time_minutes_logged": 0,
2295
+ // "total_wages": "0",
2296
+ // "status": "clocked_out",
2297
+ // "total_working_hours_logged": "0",
2298
+ // "total_working_minutes_logged": "0",
2299
+ // "short_leave": [],
2300
+ // "short_breaks": {
2301
+ // "short_break_duration": null,
2302
+ // "short_break_name": null,
2303
+ // "__typename": "shortBreak"
2304
+ // },
2305
+ // "__typename": "ClockedHistory"
2306
+ // },
2307
+ // {
2308
+ // "BusinessLocation": null,
2309
+ // "clock_out_time": null,
2310
+ // "clock_in_time": null,
2311
+ // "clockedInStatus": "",
2312
+ // "clockedOutStatus": "",
2313
+ // "is_back_pay": false,
2314
+ // "is_over_time_public_holiday": false,
2315
+ // "Payroll": null,
2316
+ // "Schedule": {
2317
+ // "_id": "67bd55db81daa471a30ec0e5",
2318
+ // "schedule_date": "2025-11-06",
2319
+ // "__typename": "Schedule"
2320
+ // },
2321
+ // "User": {
2322
+ // "_id": "66d057f848e8588e75e4e9d3",
2323
+ // "full_name": "Naeem Khan",
2324
+ // "logo": null,
2325
+ // "email": "naeem@4iisolutions.com",
2326
+ // "phone": "+923409192279",
2327
+ // "department": [
2328
+ // {
2329
+ // "_id": "66d04588e240a11b39d660c6",
2330
+ // "department_name": "Frontend Development Department",
2331
+ // "__typename": "Department"
2332
+ // }
2333
+ // ],
2334
+ // "__typename": "UserBasicInfo"
2335
+ // },
2336
+ // "UserHistory": null,
2337
+ // "_id": "690c2b6637b678105de4e1e6",
2338
+ // "attendanceDate": "2025-11-06",
2339
+ // "attendanceStatus": "Absent",
2340
+ // "attendance_adjusted_by": null,
2341
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
2342
+ // "attendance_log_detail": [],
2343
+ // "breaks": [
2344
+ // {
2345
+ // "_id": "67bd55db81daa471a30ec0e6",
2346
+ // "break_in_time": null,
2347
+ // "break_out_time": null,
2348
+ // "message": null,
2349
+ // "breakInstatus": null,
2350
+ // "breakId": null,
2351
+ // "breakType": null,
2352
+ // "title": null,
2353
+ // "breakTypeId": null,
2354
+ // "break_duration": 60,
2355
+ // "minimum_break_percentage": 0,
2356
+ // "__typename": "BreakClockedHistory"
2357
+ // }
2358
+ // ],
2359
+ // "is_attendance_maually_adjusted": false,
2360
+ // "is_over_time_weekend": false,
2361
+ // "is_paid_public_holiday": false,
2362
+ // "is_paid_weekend": false,
2363
+ // "is_payroll_processed": false,
2364
+ // "is_public_holiday": false,
2365
+ // "is_public_holiday_off": false,
2366
+ // "is_un_restricted": false,
2367
+ // "is_update_pending": false,
2368
+ // "is_weekend": false,
2369
+ // "logged_seconds": 0,
2370
+ // "logs": [
2371
+ // {
2372
+ // "log_status": "marked_absent_by_system",
2373
+ // "break_id": null,
2374
+ // "total_minutes": null,
2375
+ // "log_date": "2025-11-06T05:00:22.075Z",
2376
+ // "__typename": "logType"
2377
+ // }
2378
+ // ],
2379
+ // "manually_logs": [],
2380
+ // "message": null,
2381
+ // "newWriteUp": null,
2382
+ // "normal_time_minutes_logged": 0,
2383
+ // "over_time_minutes_logged": 0,
2384
+ // "total_wages": "0",
2385
+ // "status": "clocked_out",
2386
+ // "total_working_hours_logged": "0",
2387
+ // "total_working_minutes_logged": "0",
2388
+ // "short_leave": [],
2389
+ // "short_breaks": {
2390
+ // "short_break_duration": null,
2391
+ // "short_break_name": null,
2392
+ // "__typename": "shortBreak"
2393
+ // },
2394
+ // "__typename": "ClockedHistory"
2395
+ // },
2396
+ // {
2397
+ // "BusinessLocation": null,
2398
+ // "clock_out_time": null,
2399
+ // "clock_in_time": null,
2400
+ // "clockedInStatus": "",
2401
+ // "clockedOutStatus": "",
2402
+ // "is_back_pay": false,
2403
+ // "is_over_time_public_holiday": false,
2404
+ // "Payroll": null,
2405
+ // "Schedule": {
2406
+ // "_id": "67bd552881daa471a30e5899",
2407
+ // "schedule_date": "2025-11-06",
2408
+ // "__typename": "Schedule"
2409
+ // },
2410
+ // "User": {
2411
+ // "_id": "66d057fe48e8588e75e4f59f",
2412
+ // "full_name": "Gulshan Islam",
2413
+ // "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057fe48e8588e75e4f59f/sizes/36/1730800295495_.png",
2414
+ // "email": "gulshan@4iisolutions.com",
2415
+ // "phone": "+923353443510",
2416
+ // "department": [
2417
+ // {
2418
+ // "_id": "66d0451ee240a11b39d660b1",
2419
+ // "department_name": "Backend Development Department",
2420
+ // "__typename": "Department"
2421
+ // }
2422
+ // ],
2423
+ // "__typename": "UserBasicInfo"
2424
+ // },
2425
+ // "UserHistory": null,
2426
+ // "_id": "690c2b6637b678105de4e1e2",
2427
+ // "attendanceDate": "2025-11-06",
2428
+ // "attendanceStatus": "Absent",
2429
+ // "attendance_adjusted_by": null,
2430
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
2431
+ // "attendance_log_detail": [],
2432
+ // "breaks": [
2433
+ // {
2434
+ // "_id": "67bd552881daa471a30e589a",
2435
+ // "break_in_time": null,
2436
+ // "break_out_time": null,
2437
+ // "message": null,
2438
+ // "breakInstatus": null,
2439
+ // "breakId": null,
2440
+ // "breakType": null,
2441
+ // "title": null,
2442
+ // "breakTypeId": null,
2443
+ // "break_duration": 60,
2444
+ // "minimum_break_percentage": 0,
2445
+ // "__typename": "BreakClockedHistory"
2446
+ // }
2447
+ // ],
2448
+ // "is_attendance_maually_adjusted": false,
2449
+ // "is_over_time_weekend": false,
2450
+ // "is_paid_public_holiday": false,
2451
+ // "is_paid_weekend": false,
2452
+ // "is_payroll_processed": false,
2453
+ // "is_public_holiday": false,
2454
+ // "is_public_holiday_off": false,
2455
+ // "is_un_restricted": false,
2456
+ // "is_update_pending": false,
2457
+ // "is_weekend": false,
2458
+ // "logged_seconds": 0,
2459
+ // "logs": [
2460
+ // {
2461
+ // "log_status": "marked_absent_by_system",
2462
+ // "break_id": null,
2463
+ // "total_minutes": null,
2464
+ // "log_date": "2025-11-06T05:00:22.072Z",
2465
+ // "__typename": "logType"
2466
+ // }
2467
+ // ],
2468
+ // "manually_logs": [],
2469
+ // "message": null,
2470
+ // "newWriteUp": null,
2471
+ // "normal_time_minutes_logged": 0,
2472
+ // "over_time_minutes_logged": 0,
2473
+ // "total_wages": "0",
2474
+ // "status": "clocked_out",
2475
+ // "total_working_hours_logged": "0",
2476
+ // "total_working_minutes_logged": "0",
2477
+ // "short_leave": [],
2478
+ // "short_breaks": {
2479
+ // "short_break_duration": null,
2480
+ // "short_break_name": null,
2481
+ // "__typename": "shortBreak"
2482
+ // },
2483
+ // "__typename": "ClockedHistory"
2484
+ // },
2485
+ // {
2486
+ // "BusinessLocation": null,
2487
+ // "clock_out_time": null,
2488
+ // "clock_in_time": null,
2489
+ // "clockedInStatus": "",
2490
+ // "clockedOutStatus": "",
2491
+ // "is_back_pay": false,
2492
+ // "is_over_time_public_holiday": false,
2493
+ // "Payroll": null,
2494
+ // "Schedule": {
2495
+ // "_id": "688c5790a2d286be77f78419",
2496
+ // "schedule_date": "2025-11-06",
2497
+ // "__typename": "Schedule"
2498
+ // },
2499
+ // "User": {
2500
+ // "_id": "66d057fe48e8588e75e4f592",
2501
+ // "full_name": "Naveed Razzaq",
2502
+ // "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057fe48e8588e75e4f592/sizes/36/1724936201864_.png",
2503
+ // "email": "naveed@4iisolutions.com",
2504
+ // "phone": "+923155660461",
2505
+ // "department": [
2506
+ // {
2507
+ // "_id": "66d044b3e240a11b39d6600f",
2508
+ // "department_name": "Quality Assurance Department",
2509
+ // "__typename": "Department"
2510
+ // }
2511
+ // ],
2512
+ // "__typename": "UserBasicInfo"
2513
+ // },
2514
+ // "UserHistory": null,
2515
+ // "_id": "690c2b6637b678105de4e1dc",
2516
+ // "attendanceDate": "2025-11-06",
2517
+ // "attendanceStatus": "Absent",
2518
+ // "attendance_adjusted_by": null,
2519
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
2520
+ // "attendance_log_detail": [],
2521
+ // "breaks": [
2522
+ // {
2523
+ // "_id": "688c5784a2d286be77f7701f",
2524
+ // "break_in_time": null,
2525
+ // "break_out_time": null,
2526
+ // "message": null,
2527
+ // "breakInstatus": null,
2528
+ // "breakId": null,
2529
+ // "breakType": null,
2530
+ // "title": null,
2531
+ // "breakTypeId": null,
2532
+ // "break_duration": 45,
2533
+ // "minimum_break_percentage": 0,
2534
+ // "__typename": "BreakClockedHistory"
2535
+ // },
2536
+ // {
2537
+ // "_id": "688c5784a2d286be77f77020",
2538
+ // "break_in_time": null,
2539
+ // "break_out_time": null,
2540
+ // "message": null,
2541
+ // "breakInstatus": null,
2542
+ // "breakId": null,
2543
+ // "breakType": null,
2544
+ // "title": null,
2545
+ // "breakTypeId": null,
2546
+ // "break_duration": 15,
2547
+ // "minimum_break_percentage": 0,
2548
+ // "__typename": "BreakClockedHistory"
2549
+ // },
2550
+ // {
2551
+ // "_id": "688c5784a2d286be77f77021",
2552
+ // "break_in_time": null,
2553
+ // "break_out_time": null,
2554
+ // "message": null,
2555
+ // "breakInstatus": null,
2556
+ // "breakId": null,
2557
+ // "breakType": null,
2558
+ // "title": null,
2559
+ // "breakTypeId": null,
2560
+ // "break_duration": 15,
2561
+ // "minimum_break_percentage": 0,
2562
+ // "__typename": "BreakClockedHistory"
2563
+ // }
2564
+ // ],
2565
+ // "is_attendance_maually_adjusted": false,
2566
+ // "is_over_time_weekend": false,
2567
+ // "is_paid_public_holiday": false,
2568
+ // "is_paid_weekend": false,
2569
+ // "is_payroll_processed": false,
2570
+ // "is_public_holiday": false,
2571
+ // "is_public_holiday_off": false,
2572
+ // "is_un_restricted": false,
2573
+ // "is_update_pending": false,
2574
+ // "is_weekend": false,
2575
+ // "logged_seconds": 0,
2576
+ // "logs": [
2577
+ // {
2578
+ // "log_status": "marked_absent_by_system",
2579
+ // "break_id": null,
2580
+ // "total_minutes": null,
2581
+ // "log_date": "2025-11-06T05:00:22.069Z",
2582
+ // "__typename": "logType"
2583
+ // }
2584
+ // ],
2585
+ // "manually_logs": [],
2586
+ // "message": null,
2587
+ // "newWriteUp": null,
2588
+ // "normal_time_minutes_logged": 0,
2589
+ // "over_time_minutes_logged": 0,
2590
+ // "total_wages": "0",
2591
+ // "status": "clocked_out",
2592
+ // "total_working_hours_logged": "0",
2593
+ // "total_working_minutes_logged": "0",
2594
+ // "short_leave": [],
2595
+ // "short_breaks": {
2596
+ // "short_break_duration": null,
2597
+ // "short_break_name": null,
2598
+ // "__typename": "shortBreak"
2599
+ // },
2600
+ // "__typename": "ClockedHistory"
2601
+ // },
2602
+ // {
2603
+ // "BusinessLocation": null,
2604
+ // "clock_out_time": null,
2605
+ // "clock_in_time": null,
2606
+ // "clockedInStatus": "",
2607
+ // "clockedOutStatus": "",
2608
+ // "is_back_pay": false,
2609
+ // "is_over_time_public_holiday": false,
2610
+ // "Payroll": null,
2611
+ // "Schedule": {
2612
+ // "_id": "688c5790a2d286be77f78489",
2613
+ // "schedule_date": "2025-11-06",
2614
+ // "__typename": "Schedule"
2615
+ // },
2616
+ // "User": {
2617
+ // "_id": "66d0580d48e8588e75e512c2",
2618
+ // "full_name": "Nabeel Ahmed",
2619
+ // "logo": null,
2620
+ // "email": "nabeel@4iisolutions.com",
2621
+ // "phone": "+923175445704",
2622
+ // "department": [
2623
+ // {
2624
+ // "_id": "66d04588e240a11b39d660c6",
2625
+ // "department_name": "Frontend Development Department",
2626
+ // "__typename": "Department"
2627
+ // }
2628
+ // ],
2629
+ // "__typename": "UserBasicInfo"
2630
+ // },
2631
+ // "UserHistory": null,
2632
+ // "_id": "690c2b6637b678105de4e1d6",
2633
+ // "attendanceDate": "2025-11-06",
2634
+ // "attendanceStatus": "Absent",
2635
+ // "attendance_adjusted_by": null,
2636
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
2637
+ // "attendance_log_detail": [],
2638
+ // "breaks": [
2639
+ // {
2640
+ // "_id": "688c5784a2d286be77f770c7",
2641
+ // "break_in_time": null,
2642
+ // "break_out_time": null,
2643
+ // "message": null,
2644
+ // "breakInstatus": null,
2645
+ // "breakId": null,
2646
+ // "breakType": null,
2647
+ // "title": null,
2648
+ // "breakTypeId": null,
2649
+ // "break_duration": 45,
2650
+ // "minimum_break_percentage": 0,
2651
+ // "__typename": "BreakClockedHistory"
2652
+ // },
2653
+ // {
2654
+ // "_id": "688c5784a2d286be77f770c8",
2655
+ // "break_in_time": null,
2656
+ // "break_out_time": null,
2657
+ // "message": null,
2658
+ // "breakInstatus": null,
2659
+ // "breakId": null,
2660
+ // "breakType": null,
2661
+ // "title": null,
2662
+ // "breakTypeId": null,
2663
+ // "break_duration": 15,
2664
+ // "minimum_break_percentage": 0,
2665
+ // "__typename": "BreakClockedHistory"
2666
+ // },
2667
+ // {
2668
+ // "_id": "688c5784a2d286be77f770c9",
2669
+ // "break_in_time": null,
2670
+ // "break_out_time": null,
2671
+ // "message": null,
2672
+ // "breakInstatus": null,
2673
+ // "breakId": null,
2674
+ // "breakType": null,
2675
+ // "title": null,
2676
+ // "breakTypeId": null,
2677
+ // "break_duration": 15,
2678
+ // "minimum_break_percentage": 0,
2679
+ // "__typename": "BreakClockedHistory"
2680
+ // }
2681
+ // ],
2682
+ // "is_attendance_maually_adjusted": false,
2683
+ // "is_over_time_weekend": false,
2684
+ // "is_paid_public_holiday": false,
2685
+ // "is_paid_weekend": false,
2686
+ // "is_payroll_processed": false,
2687
+ // "is_public_holiday": false,
2688
+ // "is_public_holiday_off": false,
2689
+ // "is_un_restricted": false,
2690
+ // "is_update_pending": false,
2691
+ // "is_weekend": false,
2692
+ // "logged_seconds": 0,
2693
+ // "logs": [
2694
+ // {
2695
+ // "log_status": "marked_absent_by_system",
2696
+ // "break_id": null,
2697
+ // "total_minutes": null,
2698
+ // "log_date": "2025-11-06T05:00:22.065Z",
2699
+ // "__typename": "logType"
2700
+ // }
2701
+ // ],
2702
+ // "manually_logs": [],
2703
+ // "message": null,
2704
+ // "newWriteUp": null,
2705
+ // "normal_time_minutes_logged": 0,
2706
+ // "over_time_minutes_logged": 0,
2707
+ // "total_wages": "0",
2708
+ // "status": "clocked_out",
2709
+ // "total_working_hours_logged": "0",
2710
+ // "total_working_minutes_logged": "0",
2711
+ // "short_leave": [],
2712
+ // "short_breaks": {
2713
+ // "short_break_duration": null,
2714
+ // "short_break_name": null,
2715
+ // "__typename": "shortBreak"
2716
+ // },
2717
+ // "__typename": "ClockedHistory"
2718
+ // },
2719
+ // {
2720
+ // "BusinessLocation": null,
2721
+ // "clock_out_time": null,
2722
+ // "clock_in_time": null,
2723
+ // "clockedInStatus": "",
2724
+ // "clockedOutStatus": "",
2725
+ // "is_back_pay": false,
2726
+ // "is_over_time_public_holiday": false,
2727
+ // "Payroll": null,
2728
+ // "Schedule": {
2729
+ // "_id": "68063bf1d87bfd0131690cf7",
2730
+ // "schedule_date": "2025-11-06",
2731
+ // "__typename": "Schedule"
2732
+ // },
2733
+ // "User": {
2734
+ // "_id": "680637a7d87bfd0131683185",
2735
+ // "full_name": "Khurram Shahzad",
2736
+ // "logo": null,
2737
+ // "email": "khurrram@4iisolutons.com",
2738
+ // "phone": "+923165303316",
2739
+ // "department": [
2740
+ // {
2741
+ // "_id": "66d044b3e240a11b39d6600f",
2742
+ // "department_name": "Quality Assurance Department",
2743
+ // "__typename": "Department"
2744
+ // }
2745
+ // ],
2746
+ // "__typename": "UserBasicInfo"
2747
+ // },
2748
+ // "UserHistory": null,
2749
+ // "_id": "690c2b6637b678105de4e1d1",
2750
+ // "attendanceDate": "2025-11-06",
2751
+ // "attendanceStatus": "Absent",
2752
+ // "attendance_adjusted_by": null,
2753
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
2754
+ // "attendance_log_detail": [],
2755
+ // "breaks": [
2756
+ // {
2757
+ // "_id": "68063bf1d87bfd0131690cf8",
2758
+ // "break_in_time": null,
2759
+ // "break_out_time": null,
2760
+ // "message": null,
2761
+ // "breakInstatus": null,
2762
+ // "breakId": null,
2763
+ // "breakType": null,
2764
+ // "title": null,
2765
+ // "breakTypeId": null,
2766
+ // "break_duration": 60,
2767
+ // "minimum_break_percentage": 0,
2768
+ // "__typename": "BreakClockedHistory"
2769
+ // }
2770
+ // ],
2771
+ // "is_attendance_maually_adjusted": false,
2772
+ // "is_over_time_weekend": false,
2773
+ // "is_paid_public_holiday": false,
2774
+ // "is_paid_weekend": false,
2775
+ // "is_payroll_processed": false,
2776
+ // "is_public_holiday": false,
2777
+ // "is_public_holiday_off": false,
2778
+ // "is_un_restricted": false,
2779
+ // "is_update_pending": false,
2780
+ // "is_weekend": false,
2781
+ // "logged_seconds": 0,
2782
+ // "logs": [
2783
+ // {
2784
+ // "log_status": "marked_absent_by_system",
2785
+ // "break_id": null,
2786
+ // "total_minutes": null,
2787
+ // "log_date": "2025-11-06T05:00:22.059Z",
2788
+ // "__typename": "logType"
2789
+ // }
2790
+ // ],
2791
+ // "manually_logs": [],
2792
+ // "message": null,
2793
+ // "newWriteUp": null,
2794
+ // "normal_time_minutes_logged": 0,
2795
+ // "over_time_minutes_logged": 0,
2796
+ // "total_wages": "0",
2797
+ // "status": "clocked_out",
2798
+ // "total_working_hours_logged": "0",
2799
+ // "total_working_minutes_logged": "0",
2800
+ // "short_leave": [],
2801
+ // "short_breaks": {
2802
+ // "short_break_duration": null,
2803
+ // "short_break_name": null,
2804
+ // "__typename": "shortBreak"
2805
+ // },
2806
+ // "__typename": "ClockedHistory"
2807
+ // },
2808
+ // {
2809
+ // "BusinessLocation": null,
2810
+ // "clock_out_time": null,
2811
+ // "clock_in_time": null,
2812
+ // "clockedInStatus": "",
2813
+ // "clockedOutStatus": "",
2814
+ // "is_back_pay": false,
2815
+ // "is_over_time_public_holiday": false,
2816
+ // "Payroll": null,
2817
+ // "Schedule": {
2818
+ // "_id": "67bd555181daa471a30e70ba",
2819
+ // "schedule_date": "2025-11-06",
2820
+ // "__typename": "Schedule"
2821
+ // },
2822
+ // "User": {
2823
+ // "_id": "66d057f448e8588e75e4e114",
2824
+ // "full_name": "Muhammad Ali",
2825
+ // "logo": null,
2826
+ // "email": "mali@4iisolutions.com",
2827
+ // "phone": "+923464920781",
2828
+ // "department": [
2829
+ // {
2830
+ // "_id": "66d04588e240a11b39d660c6",
2831
+ // "department_name": "Frontend Development Department",
2832
+ // "__typename": "Department"
2833
+ // }
2834
+ // ],
2835
+ // "__typename": "UserBasicInfo"
2836
+ // },
2837
+ // "UserHistory": null,
2838
+ // "_id": "690c2b6637b678105de4e1cd",
2839
+ // "attendanceDate": "2025-11-06",
2840
+ // "attendanceStatus": "Absent",
2841
+ // "attendance_adjusted_by": null,
2842
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
2843
+ // "attendance_log_detail": [],
2844
+ // "breaks": [
2845
+ // {
2846
+ // "_id": "67bd555181daa471a30e70bb",
2847
+ // "break_in_time": null,
2848
+ // "break_out_time": null,
2849
+ // "message": null,
2850
+ // "breakInstatus": null,
2851
+ // "breakId": null,
2852
+ // "breakType": null,
2853
+ // "title": null,
2854
+ // "breakTypeId": null,
2855
+ // "break_duration": 60,
2856
+ // "minimum_break_percentage": 0,
2857
+ // "__typename": "BreakClockedHistory"
2858
+ // }
2859
+ // ],
2860
+ // "is_attendance_maually_adjusted": false,
2861
+ // "is_over_time_weekend": false,
2862
+ // "is_paid_public_holiday": false,
2863
+ // "is_paid_weekend": false,
2864
+ // "is_payroll_processed": false,
2865
+ // "is_public_holiday": false,
2866
+ // "is_public_holiday_off": false,
2867
+ // "is_un_restricted": false,
2868
+ // "is_update_pending": false,
2869
+ // "is_weekend": false,
2870
+ // "logged_seconds": 0,
2871
+ // "logs": [
2872
+ // {
2873
+ // "log_status": "marked_absent_by_system",
2874
+ // "break_id": null,
2875
+ // "total_minutes": null,
2876
+ // "log_date": "2025-11-06T05:00:22.056Z",
2877
+ // "__typename": "logType"
2878
+ // }
2879
+ // ],
2880
+ // "manually_logs": [],
2881
+ // "message": null,
2882
+ // "newWriteUp": null,
2883
+ // "normal_time_minutes_logged": 0,
2884
+ // "over_time_minutes_logged": 0,
2885
+ // "total_wages": "0",
2886
+ // "status": "clocked_out",
2887
+ // "total_working_hours_logged": "0",
2888
+ // "total_working_minutes_logged": "0",
2889
+ // "short_leave": [],
2890
+ // "short_breaks": {
2891
+ // "short_break_duration": null,
2892
+ // "short_break_name": null,
2893
+ // "__typename": "shortBreak"
2894
+ // },
2895
+ // "__typename": "ClockedHistory"
2896
+ // },
2897
+ // {
2898
+ // "BusinessLocation": null,
2899
+ // "clock_out_time": null,
2900
+ // "clock_in_time": null,
2901
+ // "clockedInStatus": "",
2902
+ // "clockedOutStatus": "",
2903
+ // "is_back_pay": false,
2904
+ // "is_over_time_public_holiday": false,
2905
+ // "Payroll": null,
2906
+ // "Schedule": {
2907
+ // "_id": "67bd568b81daa471a30f3011",
2908
+ // "schedule_date": "2025-11-06",
2909
+ // "__typename": "Schedule"
2910
+ // },
2911
+ // "User": {
2912
+ // "_id": "67860d0aa21835b0e25bc207",
2913
+ // "full_name": "Wajahat Bashir",
2914
+ // "logo": null,
2915
+ // "email": "wajahat@4iisolutions.com",
2916
+ // "phone": "+923014666605",
2917
+ // "department": [
2918
+ // {
2919
+ // "_id": "680a58f30a9846ef11505682",
2920
+ // "department_name": "Magento Development Department",
2921
+ // "__typename": "Department"
2922
+ // }
2923
+ // ],
2924
+ // "__typename": "UserBasicInfo"
2925
+ // },
2926
+ // "UserHistory": null,
2927
+ // "_id": "690c2b6637b678105de4e1c9",
2928
+ // "attendanceDate": "2025-11-06",
2929
+ // "attendanceStatus": "Absent",
2930
+ // "attendance_adjusted_by": null,
2931
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
2932
+ // "attendance_log_detail": [],
2933
+ // "breaks": [
2934
+ // {
2935
+ // "_id": "67bd568b81daa471a30f3012",
2936
+ // "break_in_time": null,
2937
+ // "break_out_time": null,
2938
+ // "message": null,
2939
+ // "breakInstatus": null,
2940
+ // "breakId": null,
2941
+ // "breakType": null,
2942
+ // "title": null,
2943
+ // "breakTypeId": null,
2944
+ // "break_duration": 60,
2945
+ // "minimum_break_percentage": 0,
2946
+ // "__typename": "BreakClockedHistory"
2947
+ // }
2948
+ // ],
2949
+ // "is_attendance_maually_adjusted": false,
2950
+ // "is_over_time_weekend": false,
2951
+ // "is_paid_public_holiday": false,
2952
+ // "is_paid_weekend": false,
2953
+ // "is_payroll_processed": false,
2954
+ // "is_public_holiday": false,
2955
+ // "is_public_holiday_off": false,
2956
+ // "is_un_restricted": false,
2957
+ // "is_update_pending": false,
2958
+ // "is_weekend": false,
2959
+ // "logged_seconds": 0,
2960
+ // "logs": [
2961
+ // {
2962
+ // "log_status": "marked_absent_by_system",
2963
+ // "break_id": null,
2964
+ // "total_minutes": null,
2965
+ // "log_date": "2025-11-06T05:00:22.053Z",
2966
+ // "__typename": "logType"
2967
+ // }
2968
+ // ],
2969
+ // "manually_logs": [],
2970
+ // "message": null,
2971
+ // "newWriteUp": null,
2972
+ // "normal_time_minutes_logged": 0,
2973
+ // "over_time_minutes_logged": 0,
2974
+ // "total_wages": "0",
2975
+ // "status": "clocked_out",
2976
+ // "total_working_hours_logged": "0",
2977
+ // "total_working_minutes_logged": "0",
2978
+ // "short_leave": [],
2979
+ // "short_breaks": {
2980
+ // "short_break_duration": null,
2981
+ // "short_break_name": null,
2982
+ // "__typename": "shortBreak"
2983
+ // },
2984
+ // "__typename": "ClockedHistory"
2985
+ // },
2986
+ // {
2987
+ // "BusinessLocation": null,
2988
+ // "clock_out_time": null,
2989
+ // "clock_in_time": null,
2990
+ // "clockedInStatus": "",
2991
+ // "clockedOutStatus": "",
2992
+ // "is_back_pay": false,
2993
+ // "is_over_time_public_holiday": false,
2994
+ // "Payroll": null,
2995
+ // "Schedule": {
2996
+ // "_id": "683ff06bbe23b02cb051db6b",
2997
+ // "schedule_date": "2025-11-06",
2998
+ // "__typename": "Schedule"
2999
+ // },
3000
+ // "User": {
3001
+ // "_id": "683fd3a9be23b02cb04f7289",
3002
+ // "full_name": "Waqar Nawaz",
3003
+ // "logo": null,
3004
+ // "email": "waqar@4iisolutions.com",
3005
+ // "phone": "+923118871780",
3006
+ // "department": [
3007
+ // {
3008
+ // "_id": "66d0451ee240a11b39d660b1",
3009
+ // "department_name": "Backend Development Department",
3010
+ // "__typename": "Department"
3011
+ // }
3012
+ // ],
3013
+ // "__typename": "UserBasicInfo"
3014
+ // },
3015
+ // "UserHistory": null,
3016
+ // "_id": "690c2b6637b678105de4e1c4",
3017
+ // "attendanceDate": "2025-11-06",
3018
+ // "attendanceStatus": "Absent",
3019
+ // "attendance_adjusted_by": null,
3020
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
3021
+ // "attendance_log_detail": [],
3022
+ // "breaks": [
3023
+ // {
3024
+ // "_id": "683ff06bbe23b02cb051db6c",
3025
+ // "break_in_time": null,
3026
+ // "break_out_time": null,
3027
+ // "message": null,
3028
+ // "breakInstatus": null,
3029
+ // "breakId": null,
3030
+ // "breakType": null,
3031
+ // "title": null,
3032
+ // "breakTypeId": null,
3033
+ // "break_duration": 60,
3034
+ // "minimum_break_percentage": 0,
3035
+ // "__typename": "BreakClockedHistory"
3036
+ // }
3037
+ // ],
3038
+ // "is_attendance_maually_adjusted": false,
3039
+ // "is_over_time_weekend": false,
3040
+ // "is_paid_public_holiday": false,
3041
+ // "is_paid_weekend": false,
3042
+ // "is_payroll_processed": false,
3043
+ // "is_public_holiday": false,
3044
+ // "is_public_holiday_off": false,
3045
+ // "is_un_restricted": false,
3046
+ // "is_update_pending": false,
3047
+ // "is_weekend": false,
3048
+ // "logged_seconds": 0,
3049
+ // "logs": [
3050
+ // {
3051
+ // "log_status": "marked_absent_by_system",
3052
+ // "break_id": null,
3053
+ // "total_minutes": null,
3054
+ // "log_date": "2025-11-06T05:00:22.048Z",
3055
+ // "__typename": "logType"
3056
+ // }
3057
+ // ],
3058
+ // "manually_logs": [],
3059
+ // "message": null,
3060
+ // "newWriteUp": null,
3061
+ // "normal_time_minutes_logged": 0,
3062
+ // "over_time_minutes_logged": 0,
3063
+ // "total_wages": "0",
3064
+ // "status": "clocked_out",
3065
+ // "total_working_hours_logged": "0",
3066
+ // "total_working_minutes_logged": "0",
3067
+ // "short_leave": [],
3068
+ // "short_breaks": {
3069
+ // "short_break_duration": null,
3070
+ // "short_break_name": null,
3071
+ // "__typename": "shortBreak"
3072
+ // },
3073
+ // "__typename": "ClockedHistory"
3074
+ // },
3075
+ // {
3076
+ // "BusinessLocation": null,
3077
+ // "clock_out_time": null,
3078
+ // "clock_in_time": null,
3079
+ // "clockedInStatus": "",
3080
+ // "clockedOutStatus": "",
3081
+ // "is_back_pay": false,
3082
+ // "is_over_time_public_holiday": false,
3083
+ // "Payroll": null,
3084
+ // "Schedule": {
3085
+ // "_id": "67bd54b381daa471a30e136f",
3086
+ // "schedule_date": "2025-11-06",
3087
+ // "__typename": "Schedule"
3088
+ // },
3089
+ // "User": {
3090
+ // "_id": "66d0580748e8588e75e50710",
3091
+ // "full_name": "Abdul Wahid",
3092
+ // "logo": null,
3093
+ // "email": "wahid@4iisolutions.com",
3094
+ // "phone": "+923425446611",
3095
+ // "department": [
3096
+ // {
3097
+ // "_id": "66d04474e240a11b39d65ffb",
3098
+ // "department_name": "Mobile App Dev Department",
3099
+ // "__typename": "Department"
3100
+ // }
3101
+ // ],
3102
+ // "__typename": "UserBasicInfo"
3103
+ // },
3104
+ // "UserHistory": null,
3105
+ // "_id": "690c2b6637b678105de4e1c0",
3106
+ // "attendanceDate": "2025-11-06",
3107
+ // "attendanceStatus": "Absent",
3108
+ // "attendance_adjusted_by": null,
3109
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
3110
+ // "attendance_log_detail": [],
3111
+ // "breaks": [
3112
+ // {
3113
+ // "_id": "68becca043634eb58599728e",
3114
+ // "break_in_time": null,
3115
+ // "break_out_time": null,
3116
+ // "message": null,
3117
+ // "breakInstatus": null,
3118
+ // "breakId": null,
3119
+ // "breakType": null,
3120
+ // "title": null,
3121
+ // "breakTypeId": null,
3122
+ // "break_duration": 60,
3123
+ // "minimum_break_percentage": 0,
3124
+ // "__typename": "BreakClockedHistory"
3125
+ // }
3126
+ // ],
3127
+ // "is_attendance_maually_adjusted": false,
3128
+ // "is_over_time_weekend": false,
3129
+ // "is_paid_public_holiday": false,
3130
+ // "is_paid_weekend": false,
3131
+ // "is_payroll_processed": false,
3132
+ // "is_public_holiday": false,
3133
+ // "is_public_holiday_off": false,
3134
+ // "is_un_restricted": false,
3135
+ // "is_update_pending": false,
3136
+ // "is_weekend": false,
3137
+ // "logged_seconds": 0,
3138
+ // "logs": [
3139
+ // {
3140
+ // "log_status": "marked_absent_by_system",
3141
+ // "break_id": null,
3142
+ // "total_minutes": null,
3143
+ // "log_date": "2025-11-06T05:00:22.045Z",
3144
+ // "__typename": "logType"
3145
+ // }
3146
+ // ],
3147
+ // "manually_logs": [],
3148
+ // "message": null,
3149
+ // "newWriteUp": null,
3150
+ // "normal_time_minutes_logged": 0,
3151
+ // "over_time_minutes_logged": 0,
3152
+ // "total_wages": "0",
3153
+ // "status": "clocked_out",
3154
+ // "total_working_hours_logged": "0",
3155
+ // "total_working_minutes_logged": "0",
3156
+ // "short_leave": [],
3157
+ // "short_breaks": {
3158
+ // "short_break_duration": null,
3159
+ // "short_break_name": null,
3160
+ // "__typename": "shortBreak"
3161
+ // },
3162
+ // "__typename": "ClockedHistory"
3163
+ // },
3164
+ // {
3165
+ // "BusinessLocation": null,
3166
+ // "clock_out_time": null,
3167
+ // "clock_in_time": null,
3168
+ // "clockedInStatus": "",
3169
+ // "clockedOutStatus": "",
3170
+ // "is_back_pay": false,
3171
+ // "is_over_time_public_holiday": false,
3172
+ // "Payroll": null,
3173
+ // "Schedule": {
3174
+ // "_id": "67bd551381daa471a30e4eba",
3175
+ // "schedule_date": "2025-11-06",
3176
+ // "__typename": "Schedule"
3177
+ // },
3178
+ // "User": {
3179
+ // "_id": "6780e9516455df29cd8ede6d",
3180
+ // "full_name": "Faizan Ali",
3181
+ // "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/6780e9516455df29cd8ede6d/sizes/36/1737974455373_.png",
3182
+ // "email": "faizan@4iisolutions.com",
3183
+ // "phone": "+923346590944",
3184
+ // "department": [
3185
+ // {
3186
+ // "_id": "66d04443e240a11b39d65fd5",
3187
+ // "department_name": "HR Department",
3188
+ // "__typename": "Department"
3189
+ // }
3190
+ // ],
3191
+ // "__typename": "UserBasicInfo"
3192
+ // },
3193
+ // "UserHistory": null,
3194
+ // "_id": "690c2b6637b678105de4e1bc",
3195
+ // "attendanceDate": "2025-11-06",
3196
+ // "attendanceStatus": "Absent",
3197
+ // "attendance_adjusted_by": null,
3198
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
3199
+ // "attendance_log_detail": [],
3200
+ // "breaks": [
3201
+ // {
3202
+ // "_id": "67bd551381daa471a30e4ebb",
3203
+ // "break_in_time": null,
3204
+ // "break_out_time": null,
3205
+ // "message": null,
3206
+ // "breakInstatus": null,
3207
+ // "breakId": null,
3208
+ // "breakType": null,
3209
+ // "title": null,
3210
+ // "breakTypeId": null,
3211
+ // "break_duration": 60,
3212
+ // "minimum_break_percentage": 0,
3213
+ // "__typename": "BreakClockedHistory"
3214
+ // }
3215
+ // ],
3216
+ // "is_attendance_maually_adjusted": false,
3217
+ // "is_over_time_weekend": false,
3218
+ // "is_paid_public_holiday": false,
3219
+ // "is_paid_weekend": false,
3220
+ // "is_payroll_processed": false,
3221
+ // "is_public_holiday": false,
3222
+ // "is_public_holiday_off": false,
3223
+ // "is_un_restricted": false,
3224
+ // "is_update_pending": false,
3225
+ // "is_weekend": false,
3226
+ // "logged_seconds": 0,
3227
+ // "logs": [
3228
+ // {
3229
+ // "log_status": "marked_absent_by_system",
3230
+ // "break_id": null,
3231
+ // "total_minutes": null,
3232
+ // "log_date": "2025-11-06T05:00:22.042Z",
3233
+ // "__typename": "logType"
3234
+ // }
3235
+ // ],
3236
+ // "manually_logs": [],
3237
+ // "message": null,
3238
+ // "newWriteUp": null,
3239
+ // "normal_time_minutes_logged": 0,
3240
+ // "over_time_minutes_logged": 0,
3241
+ // "total_wages": "0",
3242
+ // "status": "clocked_out",
3243
+ // "total_working_hours_logged": "0",
3244
+ // "total_working_minutes_logged": "0",
3245
+ // "short_leave": [],
3246
+ // "short_breaks": {
3247
+ // "short_break_duration": null,
3248
+ // "short_break_name": null,
3249
+ // "__typename": "shortBreak"
3250
+ // },
3251
+ // "__typename": "ClockedHistory"
3252
+ // },
3253
+ // {
3254
+ // "BusinessLocation": null,
3255
+ // "clock_out_time": null,
3256
+ // "clock_in_time": null,
3257
+ // "clockedInStatus": "",
3258
+ // "clockedOutStatus": "",
3259
+ // "is_back_pay": false,
3260
+ // "is_over_time_public_holiday": false,
3261
+ // "Payroll": null,
3262
+ // "Schedule": {
3263
+ // "_id": "67bd562381daa471a30eebb2",
3264
+ // "schedule_date": "2025-11-06",
3265
+ // "__typename": "Schedule"
3266
+ // },
3267
+ // "User": {
3268
+ // "_id": "66d0581148e8588e75e51b74",
3269
+ // "full_name": "Nouman Ullah",
3270
+ // "logo": null,
3271
+ // "email": "noman@4iisolutions.com",
3272
+ // "phone": "+923160918291",
3273
+ // "department": [
3274
+ // {
3275
+ // "_id": "66d0451ee240a11b39d660b1",
3276
+ // "department_name": "Backend Development Department",
3277
+ // "__typename": "Department"
3278
+ // }
3279
+ // ],
3280
+ // "__typename": "UserBasicInfo"
3281
+ // },
3282
+ // "UserHistory": null,
3283
+ // "_id": "690c2b6637b678105de4e1b7",
3284
+ // "attendanceDate": "2025-11-06",
3285
+ // "attendanceStatus": "Absent",
3286
+ // "attendance_adjusted_by": null,
3287
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
3288
+ // "attendance_log_detail": [],
3289
+ // "breaks": [
3290
+ // {
3291
+ // "_id": "67bd562381daa471a30eebb3",
3292
+ // "break_in_time": null,
3293
+ // "break_out_time": null,
3294
+ // "message": null,
3295
+ // "breakInstatus": null,
3296
+ // "breakId": null,
3297
+ // "breakType": null,
3298
+ // "title": null,
3299
+ // "breakTypeId": null,
3300
+ // "break_duration": 60,
3301
+ // "minimum_break_percentage": 0,
3302
+ // "__typename": "BreakClockedHistory"
3303
+ // }
3304
+ // ],
3305
+ // "is_attendance_maually_adjusted": false,
3306
+ // "is_over_time_weekend": false,
3307
+ // "is_paid_public_holiday": false,
3308
+ // "is_paid_weekend": false,
3309
+ // "is_payroll_processed": false,
3310
+ // "is_public_holiday": false,
3311
+ // "is_public_holiday_off": false,
3312
+ // "is_un_restricted": false,
3313
+ // "is_update_pending": false,
3314
+ // "is_weekend": false,
3315
+ // "logged_seconds": 0,
3316
+ // "logs": [
3317
+ // {
3318
+ // "log_status": "marked_absent_by_system",
3319
+ // "break_id": null,
3320
+ // "total_minutes": null,
3321
+ // "log_date": "2025-11-06T05:00:22.037Z",
3322
+ // "__typename": "logType"
3323
+ // }
3324
+ // ],
3325
+ // "manually_logs": [],
3326
+ // "message": null,
3327
+ // "newWriteUp": null,
3328
+ // "normal_time_minutes_logged": 0,
3329
+ // "over_time_minutes_logged": 0,
3330
+ // "total_wages": "0",
3331
+ // "status": "clocked_out",
3332
+ // "total_working_hours_logged": "0",
3333
+ // "total_working_minutes_logged": "0",
3334
+ // "short_leave": [],
3335
+ // "short_breaks": {
3336
+ // "short_break_duration": null,
3337
+ // "short_break_name": null,
3338
+ // "__typename": "shortBreak"
3339
+ // },
3340
+ // "__typename": "ClockedHistory"
3341
+ // },
3342
+ // {
3343
+ // "BusinessLocation": null,
3344
+ // "clock_out_time": null,
3345
+ // "clock_in_time": null,
3346
+ // "clockedInStatus": "",
3347
+ // "clockedOutStatus": "",
3348
+ // "is_back_pay": false,
3349
+ // "is_over_time_public_holiday": false,
3350
+ // "Payroll": null,
3351
+ // "Schedule": {
3352
+ // "_id": "67bd54e681daa471a30e3357",
3353
+ // "schedule_date": "2025-11-06",
3354
+ // "__typename": "Schedule"
3355
+ // },
3356
+ // "User": {
3357
+ // "_id": "66d057e748e8588e75e4c6fa",
3358
+ // "full_name": "Aqib khan",
3359
+ // "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057e748e8588e75e4c6fa/sizes/36/1730800072011_.png",
3360
+ // "email": "aqib@4iisolutions.com",
3361
+ // "phone": "+923405505445",
3362
+ // "department": [
3363
+ // {
3364
+ // "_id": "66d04474e240a11b39d65ffb",
3365
+ // "department_name": "Mobile App Dev Department",
3366
+ // "__typename": "Department"
3367
+ // }
3368
+ // ],
3369
+ // "__typename": "UserBasicInfo"
3370
+ // },
3371
+ // "UserHistory": null,
3372
+ // "_id": "690c2b6637b678105de4e1b2",
3373
+ // "attendanceDate": "2025-11-06",
3374
+ // "attendanceStatus": "Absent",
3375
+ // "attendance_adjusted_by": null,
3376
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
3377
+ // "attendance_log_detail": [],
3378
+ // "breaks": [
3379
+ // {
3380
+ // "_id": "67bd54e681daa471a30e3358",
3381
+ // "break_in_time": null,
3382
+ // "break_out_time": null,
3383
+ // "message": null,
3384
+ // "breakInstatus": null,
3385
+ // "breakId": null,
3386
+ // "breakType": null,
3387
+ // "title": null,
3388
+ // "breakTypeId": null,
3389
+ // "break_duration": 60,
3390
+ // "minimum_break_percentage": 0,
3391
+ // "__typename": "BreakClockedHistory"
3392
+ // }
3393
+ // ],
3394
+ // "is_attendance_maually_adjusted": false,
3395
+ // "is_over_time_weekend": false,
3396
+ // "is_paid_public_holiday": false,
3397
+ // "is_paid_weekend": false,
3398
+ // "is_payroll_processed": false,
3399
+ // "is_public_holiday": false,
3400
+ // "is_public_holiday_off": false,
3401
+ // "is_un_restricted": false,
3402
+ // "is_update_pending": false,
3403
+ // "is_weekend": false,
3404
+ // "logged_seconds": 0,
3405
+ // "logs": [
3406
+ // {
3407
+ // "log_status": "marked_absent_by_system",
3408
+ // "break_id": null,
3409
+ // "total_minutes": null,
3410
+ // "log_date": "2025-11-06T05:00:22.032Z",
3411
+ // "__typename": "logType"
3412
+ // }
3413
+ // ],
3414
+ // "manually_logs": [],
3415
+ // "message": null,
3416
+ // "newWriteUp": null,
3417
+ // "normal_time_minutes_logged": 0,
3418
+ // "over_time_minutes_logged": 0,
3419
+ // "total_wages": "0",
3420
+ // "status": "clocked_out",
3421
+ // "total_working_hours_logged": "0",
3422
+ // "total_working_minutes_logged": "0",
3423
+ // "short_leave": [],
3424
+ // "short_breaks": {
3425
+ // "short_break_duration": null,
3426
+ // "short_break_name": null,
3427
+ // "__typename": "shortBreak"
3428
+ // },
3429
+ // "__typename": "ClockedHistory"
3430
+ // },
3431
+ // {
3432
+ // "BusinessLocation": null,
3433
+ // "clock_out_time": null,
3434
+ // "clock_in_time": null,
3435
+ // "clockedInStatus": "",
3436
+ // "clockedOutStatus": "",
3437
+ // "is_back_pay": false,
3438
+ // "is_over_time_public_holiday": false,
3439
+ // "Payroll": null,
3440
+ // "Schedule": {
3441
+ // "_id": "67bd562981daa471a30ef291",
3442
+ // "schedule_date": "2025-11-06",
3443
+ // "__typename": "Schedule"
3444
+ // },
3445
+ // "User": {
3446
+ // "_id": "6788f2ecf8deecbb7d4e85c2",
3447
+ // "full_name": "Raheel Shaukat",
3448
+ // "logo": null,
3449
+ // "email": "raheel@4iisolutions.com",
3450
+ // "phone": "+923135352992",
3451
+ // "department": [
3452
+ // {
3453
+ // "_id": "680a58f30a9846ef11505682",
3454
+ // "department_name": "Magento Development Department",
3455
+ // "__typename": "Department"
3456
+ // }
3457
+ // ],
3458
+ // "__typename": "UserBasicInfo"
3459
+ // },
3460
+ // "UserHistory": null,
3461
+ // "_id": "690c2b6637b678105de4e1ae",
3462
+ // "attendanceDate": "2025-11-06",
3463
+ // "attendanceStatus": "Absent",
3464
+ // "attendance_adjusted_by": null,
3465
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
3466
+ // "attendance_log_detail": [],
3467
+ // "breaks": [
3468
+ // {
3469
+ // "_id": "67bd562981daa471a30ef292",
3470
+ // "break_in_time": null,
3471
+ // "break_out_time": null,
3472
+ // "message": null,
3473
+ // "breakInstatus": null,
3474
+ // "breakId": null,
3475
+ // "breakType": null,
3476
+ // "title": null,
3477
+ // "breakTypeId": null,
3478
+ // "break_duration": 60,
3479
+ // "minimum_break_percentage": 0,
3480
+ // "__typename": "BreakClockedHistory"
3481
+ // }
3482
+ // ],
3483
+ // "is_attendance_maually_adjusted": false,
3484
+ // "is_over_time_weekend": false,
3485
+ // "is_paid_public_holiday": false,
3486
+ // "is_paid_weekend": false,
3487
+ // "is_payroll_processed": false,
3488
+ // "is_public_holiday": false,
3489
+ // "is_public_holiday_off": false,
3490
+ // "is_un_restricted": false,
3491
+ // "is_update_pending": false,
3492
+ // "is_weekend": false,
3493
+ // "logged_seconds": 0,
3494
+ // "logs": [
3495
+ // {
3496
+ // "log_status": "marked_absent_by_system",
3497
+ // "break_id": null,
3498
+ // "total_minutes": null,
3499
+ // "log_date": "2025-11-06T05:00:22.029Z",
3500
+ // "__typename": "logType"
3501
+ // }
3502
+ // ],
3503
+ // "manually_logs": [],
3504
+ // "message": null,
3505
+ // "newWriteUp": null,
3506
+ // "normal_time_minutes_logged": 0,
3507
+ // "over_time_minutes_logged": 0,
3508
+ // "total_wages": "0",
3509
+ // "status": "clocked_out",
3510
+ // "total_working_hours_logged": "0",
3511
+ // "total_working_minutes_logged": "0",
3512
+ // "short_leave": [],
3513
+ // "short_breaks": {
3514
+ // "short_break_duration": null,
3515
+ // "short_break_name": null,
3516
+ // "__typename": "shortBreak"
3517
+ // },
3518
+ // "__typename": "ClockedHistory"
3519
+ // },
3520
+ // {
3521
+ // "BusinessLocation": null,
3522
+ // "clock_out_time": null,
3523
+ // "clock_in_time": null,
3524
+ // "clockedInStatus": "",
3525
+ // "clockedOutStatus": "",
3526
+ // "is_back_pay": false,
3527
+ // "is_over_time_public_holiday": false,
3528
+ // "Payroll": null,
3529
+ // "Schedule": {
3530
+ // "_id": "67bd568b81daa471a30f2dc3",
3531
+ // "schedule_date": "2025-11-06",
3532
+ // "__typename": "Schedule"
3533
+ // },
3534
+ // "User": {
3535
+ // "_id": "66d0580348e8588e75e4fe51",
3536
+ // "full_name": "Zaid khan",
3537
+ // "logo": null,
3538
+ // "email": "zaid@4iisolutions.com",
3539
+ // "phone": "+923109903596",
3540
+ // "department": [
3541
+ // {
3542
+ // "_id": "66d04474e240a11b39d65ffb",
3543
+ // "department_name": "Mobile App Dev Department",
3544
+ // "__typename": "Department"
3545
+ // }
3546
+ // ],
3547
+ // "__typename": "UserBasicInfo"
3548
+ // },
3549
+ // "UserHistory": null,
3550
+ // "_id": "690c2b6637b678105de4e1aa",
3551
+ // "attendanceDate": "2025-11-06",
3552
+ // "attendanceStatus": "Absent",
3553
+ // "attendance_adjusted_by": null,
3554
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
3555
+ // "attendance_log_detail": [],
3556
+ // "breaks": [
3557
+ // {
3558
+ // "_id": "67bd568b81daa471a30f2dc4",
3559
+ // "break_in_time": null,
3560
+ // "break_out_time": null,
3561
+ // "message": null,
3562
+ // "breakInstatus": null,
3563
+ // "breakId": null,
3564
+ // "breakType": null,
3565
+ // "title": null,
3566
+ // "breakTypeId": null,
3567
+ // "break_duration": 60,
3568
+ // "minimum_break_percentage": 0,
3569
+ // "__typename": "BreakClockedHistory"
3570
+ // }
3571
+ // ],
3572
+ // "is_attendance_maually_adjusted": false,
3573
+ // "is_over_time_weekend": false,
3574
+ // "is_paid_public_holiday": false,
3575
+ // "is_paid_weekend": false,
3576
+ // "is_payroll_processed": false,
3577
+ // "is_public_holiday": false,
3578
+ // "is_public_holiday_off": false,
3579
+ // "is_un_restricted": false,
3580
+ // "is_update_pending": false,
3581
+ // "is_weekend": false,
3582
+ // "logged_seconds": 0,
3583
+ // "logs": [
3584
+ // {
3585
+ // "log_status": "marked_absent_by_system",
3586
+ // "break_id": null,
3587
+ // "total_minutes": null,
3588
+ // "log_date": "2025-11-06T05:00:22.026Z",
3589
+ // "__typename": "logType"
3590
+ // }
3591
+ // ],
3592
+ // "manually_logs": [],
3593
+ // "message": null,
3594
+ // "newWriteUp": null,
3595
+ // "normal_time_minutes_logged": 0,
3596
+ // "over_time_minutes_logged": 0,
3597
+ // "total_wages": "0",
3598
+ // "status": "clocked_out",
3599
+ // "total_working_hours_logged": "0",
3600
+ // "total_working_minutes_logged": "0",
3601
+ // "short_leave": [],
3602
+ // "short_breaks": {
3603
+ // "short_break_duration": null,
3604
+ // "short_break_name": null,
3605
+ // "__typename": "shortBreak"
3606
+ // },
3607
+ // "__typename": "ClockedHistory"
3608
+ // },
3609
+ // {
3610
+ // "BusinessLocation": null,
3611
+ // "clock_out_time": null,
3612
+ // "clock_in_time": null,
3613
+ // "clockedInStatus": "",
3614
+ // "clockedOutStatus": "",
3615
+ // "is_back_pay": false,
3616
+ // "is_over_time_public_holiday": false,
3617
+ // "Payroll": null,
3618
+ // "Schedule": {
3619
+ // "_id": "67bd56b181daa471a30f4924",
3620
+ // "schedule_date": "2025-11-06",
3621
+ // "__typename": "Schedule"
3622
+ // },
3623
+ // "User": {
3624
+ // "_id": "66d0580b48e8588e75e50fdc",
3625
+ // "full_name": "Zia Uddin",
3626
+ // "logo": null,
3627
+ // "email": "zia@4iisolutions.com",
3628
+ // "phone": "+923489605703",
3629
+ // "department": [
3630
+ // {
3631
+ // "_id": "66d0451ee240a11b39d660b1",
3632
+ // "department_name": "Backend Development Department",
3633
+ // "__typename": "Department"
3634
+ // }
3635
+ // ],
3636
+ // "__typename": "UserBasicInfo"
3637
+ // },
3638
+ // "UserHistory": null,
3639
+ // "_id": "690c2b6637b678105de4e1a6",
3640
+ // "attendanceDate": "2025-11-06",
3641
+ // "attendanceStatus": "Absent",
3642
+ // "attendance_adjusted_by": null,
3643
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
3644
+ // "attendance_log_detail": [],
3645
+ // "breaks": [
3646
+ // {
3647
+ // "_id": "67bd56b181daa471a30f4925",
3648
+ // "break_in_time": null,
3649
+ // "break_out_time": null,
3650
+ // "message": null,
3651
+ // "breakInstatus": null,
3652
+ // "breakId": null,
3653
+ // "breakType": null,
3654
+ // "title": null,
3655
+ // "breakTypeId": null,
3656
+ // "break_duration": 60,
3657
+ // "minimum_break_percentage": 0,
3658
+ // "__typename": "BreakClockedHistory"
3659
+ // }
3660
+ // ],
3661
+ // "is_attendance_maually_adjusted": false,
3662
+ // "is_over_time_weekend": false,
3663
+ // "is_paid_public_holiday": false,
3664
+ // "is_paid_weekend": false,
3665
+ // "is_payroll_processed": false,
3666
+ // "is_public_holiday": false,
3667
+ // "is_public_holiday_off": false,
3668
+ // "is_un_restricted": false,
3669
+ // "is_update_pending": false,
3670
+ // "is_weekend": false,
3671
+ // "logged_seconds": 0,
3672
+ // "logs": [
3673
+ // {
3674
+ // "log_status": "marked_absent_by_system",
3675
+ // "break_id": null,
3676
+ // "total_minutes": null,
3677
+ // "log_date": "2025-11-06T05:00:22.022Z",
3678
+ // "__typename": "logType"
3679
+ // }
3680
+ // ],
3681
+ // "manually_logs": [],
3682
+ // "message": null,
3683
+ // "newWriteUp": null,
3684
+ // "normal_time_minutes_logged": 0,
3685
+ // "over_time_minutes_logged": 0,
3686
+ // "total_wages": "0",
3687
+ // "status": "clocked_out",
3688
+ // "total_working_hours_logged": "0",
3689
+ // "total_working_minutes_logged": "0",
3690
+ // "short_leave": [],
3691
+ // "short_breaks": {
3692
+ // "short_break_duration": null,
3693
+ // "short_break_name": null,
3694
+ // "__typename": "shortBreak"
3695
+ // },
3696
+ // "__typename": "ClockedHistory"
3697
+ // },
3698
+ // {
3699
+ // "BusinessLocation": null,
3700
+ // "clock_out_time": null,
3701
+ // "clock_in_time": null,
3702
+ // "clockedInStatus": "",
3703
+ // "clockedOutStatus": "",
3704
+ // "is_back_pay": false,
3705
+ // "is_over_time_public_holiday": false,
3706
+ // "Payroll": null,
3707
+ // "Schedule": {
3708
+ // "_id": "688c5790a2d286be77f78621",
3709
+ // "schedule_date": "2025-11-06",
3710
+ // "__typename": "Schedule"
3711
+ // },
3712
+ // "User": {
3713
+ // "_id": "676559ae1f87c1ce40a96830",
3714
+ // "full_name": "Anees Ahmad",
3715
+ // "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/676559ae1f87c1ce40a96830/sizes/36/1756712524229_.png",
3716
+ // "email": "Anees@4iisolutions.com",
3717
+ // "phone": "+923035619057",
3718
+ // "department": [
3719
+ // {
3720
+ // "_id": "66d04474e240a11b39d65ffb",
3721
+ // "department_name": "Mobile App Dev Department",
3722
+ // "__typename": "Department"
3723
+ // }
3724
+ // ],
3725
+ // "__typename": "UserBasicInfo"
3726
+ // },
3727
+ // "UserHistory": null,
3728
+ // "_id": "690c2b6637b678105de4e1a0",
3729
+ // "attendanceDate": "2025-11-06",
3730
+ // "attendanceStatus": "Absent",
3731
+ // "attendance_adjusted_by": null,
3732
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
3733
+ // "attendance_log_detail": [],
3734
+ // "breaks": [
3735
+ // {
3736
+ // "_id": "688c5784a2d286be77f77330",
3737
+ // "break_in_time": null,
3738
+ // "break_out_time": null,
3739
+ // "message": null,
3740
+ // "breakInstatus": null,
3741
+ // "breakId": null,
3742
+ // "breakType": null,
3743
+ // "title": null,
3744
+ // "breakTypeId": null,
3745
+ // "break_duration": 45,
3746
+ // "minimum_break_percentage": 0,
3747
+ // "__typename": "BreakClockedHistory"
3748
+ // },
3749
+ // {
3750
+ // "_id": "688c5784a2d286be77f77331",
3751
+ // "break_in_time": null,
3752
+ // "break_out_time": null,
3753
+ // "message": null,
3754
+ // "breakInstatus": null,
3755
+ // "breakId": null,
3756
+ // "breakType": null,
3757
+ // "title": null,
3758
+ // "breakTypeId": null,
3759
+ // "break_duration": 15,
3760
+ // "minimum_break_percentage": 0,
3761
+ // "__typename": "BreakClockedHistory"
3762
+ // },
3763
+ // {
3764
+ // "_id": "688c5784a2d286be77f77332",
3765
+ // "break_in_time": null,
3766
+ // "break_out_time": null,
3767
+ // "message": null,
3768
+ // "breakInstatus": null,
3769
+ // "breakId": null,
3770
+ // "breakType": null,
3771
+ // "title": null,
3772
+ // "breakTypeId": null,
3773
+ // "break_duration": 15,
3774
+ // "minimum_break_percentage": 0,
3775
+ // "__typename": "BreakClockedHistory"
3776
+ // }
3777
+ // ],
3778
+ // "is_attendance_maually_adjusted": false,
3779
+ // "is_over_time_weekend": false,
3780
+ // "is_paid_public_holiday": false,
3781
+ // "is_paid_weekend": false,
3782
+ // "is_payroll_processed": false,
3783
+ // "is_public_holiday": false,
3784
+ // "is_public_holiday_off": false,
3785
+ // "is_un_restricted": false,
3786
+ // "is_update_pending": false,
3787
+ // "is_weekend": false,
3788
+ // "logged_seconds": 0,
3789
+ // "logs": [
3790
+ // {
3791
+ // "log_status": "marked_absent_by_system",
3792
+ // "break_id": null,
3793
+ // "total_minutes": null,
3794
+ // "log_date": "2025-11-06T05:00:22.019Z",
3795
+ // "__typename": "logType"
3796
+ // }
3797
+ // ],
3798
+ // "manually_logs": [],
3799
+ // "message": null,
3800
+ // "newWriteUp": null,
3801
+ // "normal_time_minutes_logged": 0,
3802
+ // "over_time_minutes_logged": 0,
3803
+ // "total_wages": "0",
3804
+ // "status": "clocked_out",
3805
+ // "total_working_hours_logged": "0",
3806
+ // "total_working_minutes_logged": "0",
3807
+ // "short_leave": [],
3808
+ // "short_breaks": {
3809
+ // "short_break_duration": null,
3810
+ // "short_break_name": null,
3811
+ // "__typename": "shortBreak"
3812
+ // },
3813
+ // "__typename": "ClockedHistory"
3814
+ // },
3815
+ // {
3816
+ // "BusinessLocation": null,
3817
+ // "clock_out_time": null,
3818
+ // "clock_in_time": null,
3819
+ // "clockedInStatus": "",
3820
+ // "clockedOutStatus": "",
3821
+ // "is_back_pay": false,
3822
+ // "is_over_time_public_holiday": false,
3823
+ // "Payroll": null,
3824
+ // "Schedule": {
3825
+ // "_id": "67bd556781daa471a30e82af",
3826
+ // "schedule_date": "2025-11-06",
3827
+ // "__typename": "Schedule"
3828
+ // },
3829
+ // "User": {
3830
+ // "_id": "66d057e648e8588e75e4c405",
3831
+ // "full_name": "Muhammad Asif",
3832
+ // "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057e648e8588e75e4c405/sizes/36/1730801362795_.png",
3833
+ // "email": "asif@4iisolutions.com",
3834
+ // "phone": "+923095410253",
3835
+ // "department": [
3836
+ // {
3837
+ // "_id": "66d04588e240a11b39d660c6",
3838
+ // "department_name": "Frontend Development Department",
3839
+ // "__typename": "Department"
3840
+ // }
3841
+ // ],
3842
+ // "__typename": "UserBasicInfo"
3843
+ // },
3844
+ // "UserHistory": null,
3845
+ // "_id": "690c2b6637b678105de4e19a",
3846
+ // "attendanceDate": "2025-11-06",
3847
+ // "attendanceStatus": "Absent",
3848
+ // "attendance_adjusted_by": null,
3849
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
3850
+ // "attendance_log_detail": [],
3851
+ // "breaks": [
3852
+ // {
3853
+ // "_id": "68a765a2bceceda893618774",
3854
+ // "break_in_time": null,
3855
+ // "break_out_time": null,
3856
+ // "message": null,
3857
+ // "breakInstatus": null,
3858
+ // "breakId": null,
3859
+ // "breakType": null,
3860
+ // "title": null,
3861
+ // "breakTypeId": null,
3862
+ // "break_duration": 60,
3863
+ // "minimum_break_percentage": 0,
3864
+ // "__typename": "BreakClockedHistory"
3865
+ // }
3866
+ // ],
3867
+ // "is_attendance_maually_adjusted": false,
3868
+ // "is_over_time_weekend": false,
3869
+ // "is_paid_public_holiday": false,
3870
+ // "is_paid_weekend": false,
3871
+ // "is_payroll_processed": false,
3872
+ // "is_public_holiday": false,
3873
+ // "is_public_holiday_off": false,
3874
+ // "is_un_restricted": false,
3875
+ // "is_update_pending": false,
3876
+ // "is_weekend": false,
3877
+ // "logged_seconds": 0,
3878
+ // "logs": [
3879
+ // {
3880
+ // "log_status": "marked_absent_by_system",
3881
+ // "break_id": null,
3882
+ // "total_minutes": null,
3883
+ // "log_date": "2025-11-06T05:00:22.012Z",
3884
+ // "__typename": "logType"
3885
+ // }
3886
+ // ],
3887
+ // "manually_logs": [],
3888
+ // "message": null,
3889
+ // "newWriteUp": null,
3890
+ // "normal_time_minutes_logged": 0,
3891
+ // "over_time_minutes_logged": 0,
3892
+ // "total_wages": "0",
3893
+ // "status": "clocked_out",
3894
+ // "total_working_hours_logged": "0",
3895
+ // "total_working_minutes_logged": "0",
3896
+ // "short_leave": [],
3897
+ // "short_breaks": {
3898
+ // "short_break_duration": null,
3899
+ // "short_break_name": null,
3900
+ // "__typename": "shortBreak"
3901
+ // },
3902
+ // "__typename": "ClockedHistory"
3903
+ // },
3904
+ // {
3905
+ // "BusinessLocation": null,
3906
+ // "clock_out_time": null,
3907
+ // "clock_in_time": null,
3908
+ // "clockedInStatus": "",
3909
+ // "clockedOutStatus": "",
3910
+ // "is_back_pay": false,
3911
+ // "is_over_time_public_holiday": false,
3912
+ // "Payroll": null,
3913
+ // "Schedule": {
3914
+ // "_id": "67f8a745fcadaa1f2cf105c2",
3915
+ // "schedule_date": "2025-11-06",
3916
+ // "__typename": "Schedule"
3917
+ // },
3918
+ // "User": {
3919
+ // "_id": "66d057eb48e8588e75e4cfac",
3920
+ // "full_name": "Abad ul Haq",
3921
+ // "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057eb48e8588e75e4cfac/sizes/36/1725965725794_.png",
3922
+ // "email": "abad@4iisolutions.com",
3923
+ // "phone": "+923200566202",
3924
+ // "department": [
3925
+ // {
3926
+ // "_id": "66d044b3e240a11b39d6600f",
3927
+ // "department_name": "Quality Assurance Department",
3928
+ // "__typename": "Department"
3929
+ // }
3930
+ // ],
3931
+ // "__typename": "UserBasicInfo"
3932
+ // },
3933
+ // "UserHistory": null,
3934
+ // "_id": "690c2b6537b678105de4e185",
3935
+ // "attendanceDate": "2025-11-06",
3936
+ // "attendanceStatus": "Absent",
3937
+ // "attendance_adjusted_by": null,
3938
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
3939
+ // "attendance_log_detail": [],
3940
+ // "breaks": [
3941
+ // {
3942
+ // "_id": "67f8a745fcadaa1f2cf105c3",
3943
+ // "break_in_time": null,
3944
+ // "break_out_time": null,
3945
+ // "message": null,
3946
+ // "breakInstatus": null,
3947
+ // "breakId": null,
3948
+ // "breakType": null,
3949
+ // "title": null,
3950
+ // "breakTypeId": null,
3951
+ // "break_duration": 60,
3952
+ // "minimum_break_percentage": 0,
3953
+ // "__typename": "BreakClockedHistory"
3954
+ // }
3955
+ // ],
3956
+ // "is_attendance_maually_adjusted": false,
3957
+ // "is_over_time_weekend": false,
3958
+ // "is_paid_public_holiday": false,
3959
+ // "is_paid_weekend": false,
3960
+ // "is_payroll_processed": false,
3961
+ // "is_public_holiday": false,
3962
+ // "is_public_holiday_off": false,
3963
+ // "is_un_restricted": false,
3964
+ // "is_update_pending": false,
3965
+ // "is_weekend": false,
3966
+ // "logged_seconds": 0,
3967
+ // "logs": [
3968
+ // {
3969
+ // "log_status": "marked_absent_by_system",
3970
+ // "break_id": null,
3971
+ // "total_minutes": null,
3972
+ // "log_date": "2025-11-06T05:00:21.998Z",
3973
+ // "__typename": "logType"
3974
+ // }
3975
+ // ],
3976
+ // "manually_logs": [],
3977
+ // "message": null,
3978
+ // "newWriteUp": null,
3979
+ // "normal_time_minutes_logged": 0,
3980
+ // "over_time_minutes_logged": 0,
3981
+ // "total_wages": "0",
3982
+ // "status": "clocked_out",
3983
+ // "total_working_hours_logged": "0",
3984
+ // "total_working_minutes_logged": "0",
3985
+ // "short_leave": [],
3986
+ // "short_breaks": {
3987
+ // "short_break_duration": null,
3988
+ // "short_break_name": null,
3989
+ // "__typename": "shortBreak"
3990
+ // },
3991
+ // "__typename": "ClockedHistory"
3992
+ // },
3993
+ // {
3994
+ // "BusinessLocation": null,
3995
+ // "clock_out_time": null,
3996
+ // "clock_in_time": null,
3997
+ // "clockedInStatus": "",
3998
+ // "clockedOutStatus": "",
3999
+ // "is_back_pay": false,
4000
+ // "is_over_time_public_holiday": false,
4001
+ // "Payroll": null,
4002
+ // "Schedule": {
4003
+ // "_id": "67bd56ac81daa471a30f4022",
4004
+ // "schedule_date": "2025-11-06",
4005
+ // "__typename": "Schedule"
4006
+ // },
4007
+ // "User": {
4008
+ // "_id": "66d057f648e8588e75e4e3fa",
4009
+ // "full_name": "Zeeshan Ullah",
4010
+ // "logo": null,
4011
+ // "email": "zeeshan@4iisolutions.com",
4012
+ // "phone": "+923115522511",
4013
+ // "department": [
4014
+ // {
4015
+ // "_id": "66d0451ee240a11b39d660b1",
4016
+ // "department_name": "Backend Development Department",
4017
+ // "__typename": "Department"
4018
+ // }
4019
+ // ],
4020
+ // "__typename": "UserBasicInfo"
4021
+ // },
4022
+ // "UserHistory": null,
4023
+ // "_id": "690c2b6537b678105de4e181",
4024
+ // "attendanceDate": "2025-11-06",
4025
+ // "attendanceStatus": "Absent",
4026
+ // "attendance_adjusted_by": null,
4027
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
4028
+ // "attendance_log_detail": [],
4029
+ // "breaks": [
4030
+ // {
4031
+ // "_id": "67bd56ac81daa471a30f4023",
4032
+ // "break_in_time": null,
4033
+ // "break_out_time": null,
4034
+ // "message": null,
4035
+ // "breakInstatus": null,
4036
+ // "breakId": null,
4037
+ // "breakType": null,
4038
+ // "title": null,
4039
+ // "breakTypeId": null,
4040
+ // "break_duration": 60,
4041
+ // "minimum_break_percentage": 0,
4042
+ // "__typename": "BreakClockedHistory"
4043
+ // }
4044
+ // ],
4045
+ // "is_attendance_maually_adjusted": false,
4046
+ // "is_over_time_weekend": false,
4047
+ // "is_paid_public_holiday": false,
4048
+ // "is_paid_weekend": false,
4049
+ // "is_payroll_processed": false,
4050
+ // "is_public_holiday": false,
4051
+ // "is_public_holiday_off": false,
4052
+ // "is_un_restricted": false,
4053
+ // "is_update_pending": false,
4054
+ // "is_weekend": false,
4055
+ // "logged_seconds": 0,
4056
+ // "logs": [
4057
+ // {
4058
+ // "log_status": "marked_absent_by_system",
4059
+ // "break_id": null,
4060
+ // "total_minutes": null,
4061
+ // "log_date": "2025-11-06T05:00:21.995Z",
4062
+ // "__typename": "logType"
4063
+ // }
4064
+ // ],
4065
+ // "manually_logs": [],
4066
+ // "message": null,
4067
+ // "newWriteUp": null,
4068
+ // "normal_time_minutes_logged": 0,
4069
+ // "over_time_minutes_logged": 0,
4070
+ // "total_wages": "0",
4071
+ // "status": "clocked_out",
4072
+ // "total_working_hours_logged": "0",
4073
+ // "total_working_minutes_logged": "0",
4074
+ // "short_leave": [],
4075
+ // "short_breaks": {
4076
+ // "short_break_duration": null,
4077
+ // "short_break_name": null,
4078
+ // "__typename": "shortBreak"
4079
+ // },
4080
+ // "__typename": "ClockedHistory"
4081
+ // },
4082
+ // {
4083
+ // "BusinessLocation": null,
4084
+ // "clock_out_time": null,
4085
+ // "clock_in_time": null,
4086
+ // "clockedInStatus": "",
4087
+ // "clockedOutStatus": "",
4088
+ // "is_back_pay": false,
4089
+ // "is_over_time_public_holiday": false,
4090
+ // "Payroll": null,
4091
+ // "Schedule": {
4092
+ // "_id": "67bd553281daa471a30e5b20",
4093
+ // "schedule_date": "2025-11-06",
4094
+ // "__typename": "Schedule"
4095
+ // },
4096
+ // "User": {
4097
+ // "_id": "66d057fa48e8588e75e4ecb9",
4098
+ // "full_name": "Hanzala Khan",
4099
+ // "logo": null,
4100
+ // "email": "hanzala@4iisolutions.com",
4101
+ // "phone": "+923155364675",
4102
+ // "department": [
4103
+ // {
4104
+ // "_id": "66d0451ee240a11b39d660b1",
4105
+ // "department_name": "Backend Development Department",
4106
+ // "__typename": "Department"
4107
+ // }
4108
+ // ],
4109
+ // "__typename": "UserBasicInfo"
4110
+ // },
4111
+ // "UserHistory": null,
4112
+ // "_id": "690c2b6537b678105de4e16d",
4113
+ // "attendanceDate": "2025-11-06",
4114
+ // "attendanceStatus": "Absent",
4115
+ // "attendance_adjusted_by": null,
4116
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
4117
+ // "attendance_log_detail": [],
4118
+ // "breaks": [
4119
+ // {
4120
+ // "_id": "67bd553281daa471a30e5b21",
4121
+ // "break_in_time": null,
4122
+ // "break_out_time": null,
4123
+ // "message": null,
4124
+ // "breakInstatus": null,
4125
+ // "breakId": null,
4126
+ // "breakType": null,
4127
+ // "title": null,
4128
+ // "breakTypeId": null,
4129
+ // "break_duration": 60,
4130
+ // "minimum_break_percentage": 0,
4131
+ // "__typename": "BreakClockedHistory"
4132
+ // }
4133
+ // ],
4134
+ // "is_attendance_maually_adjusted": false,
4135
+ // "is_over_time_weekend": false,
4136
+ // "is_paid_public_holiday": false,
4137
+ // "is_paid_weekend": false,
4138
+ // "is_payroll_processed": false,
4139
+ // "is_public_holiday": false,
4140
+ // "is_public_holiday_off": false,
4141
+ // "is_un_restricted": false,
4142
+ // "is_update_pending": false,
4143
+ // "is_weekend": false,
4144
+ // "logged_seconds": 0,
4145
+ // "logs": [
4146
+ // {
4147
+ // "log_status": "marked_absent_by_system",
4148
+ // "break_id": null,
4149
+ // "total_minutes": null,
4150
+ // "log_date": "2025-11-06T05:00:21.985Z",
4151
+ // "__typename": "logType"
4152
+ // }
4153
+ // ],
4154
+ // "manually_logs": [],
4155
+ // "message": null,
4156
+ // "newWriteUp": null,
4157
+ // "normal_time_minutes_logged": 0,
4158
+ // "over_time_minutes_logged": 0,
4159
+ // "total_wages": "0",
4160
+ // "status": "clocked_out",
4161
+ // "total_working_hours_logged": "0",
4162
+ // "total_working_minutes_logged": "0",
4163
+ // "short_leave": [],
4164
+ // "short_breaks": {
4165
+ // "short_break_duration": null,
4166
+ // "short_break_name": null,
4167
+ // "__typename": "shortBreak"
4168
+ // },
4169
+ // "__typename": "ClockedHistory"
4170
+ // },
4171
+ // {
4172
+ // "BusinessLocation": null,
4173
+ // "clock_out_time": null,
4174
+ // "clock_in_time": null,
4175
+ // "clockedInStatus": "",
4176
+ // "clockedOutStatus": "",
4177
+ // "is_back_pay": false,
4178
+ // "is_over_time_public_holiday": false,
4179
+ // "Payroll": null,
4180
+ // "Schedule": {
4181
+ // "_id": "67bd561981daa471a30ee857",
4182
+ // "schedule_date": "2025-11-06",
4183
+ // "__typename": "Schedule"
4184
+ // },
4185
+ // "User": {
4186
+ // "_id": "66d057ec48e8588e75e4d294",
4187
+ // "full_name": "Qaiser Abbas",
4188
+ // "logo": null,
4189
+ // "email": "qaisar@4iisolutions.com",
4190
+ // "phone": "+923215898351",
4191
+ // "department": [
4192
+ // {
4193
+ // "_id": "66d04588e240a11b39d660c6",
4194
+ // "department_name": "Frontend Development Department",
4195
+ // "__typename": "Department"
4196
+ // }
4197
+ // ],
4198
+ // "__typename": "UserBasicInfo"
4199
+ // },
4200
+ // "UserHistory": null,
4201
+ // "_id": "690c2b6537b678105de4e160",
4202
+ // "attendanceDate": "2025-11-06",
4203
+ // "attendanceStatus": "Absent",
4204
+ // "attendance_adjusted_by": null,
4205
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
4206
+ // "attendance_log_detail": [],
4207
+ // "breaks": [
4208
+ // {
4209
+ // "_id": "67bd561981daa471a30ee858",
4210
+ // "break_in_time": null,
4211
+ // "break_out_time": null,
4212
+ // "message": null,
4213
+ // "breakInstatus": null,
4214
+ // "breakId": null,
4215
+ // "breakType": null,
4216
+ // "title": null,
4217
+ // "breakTypeId": null,
4218
+ // "break_duration": 60,
4219
+ // "minimum_break_percentage": 0,
4220
+ // "__typename": "BreakClockedHistory"
4221
+ // }
4222
+ // ],
4223
+ // "is_attendance_maually_adjusted": false,
4224
+ // "is_over_time_weekend": false,
4225
+ // "is_paid_public_holiday": false,
4226
+ // "is_paid_weekend": false,
4227
+ // "is_payroll_processed": false,
4228
+ // "is_public_holiday": false,
4229
+ // "is_public_holiday_off": false,
4230
+ // "is_un_restricted": false,
4231
+ // "is_update_pending": false,
4232
+ // "is_weekend": false,
4233
+ // "logged_seconds": 0,
4234
+ // "logs": [
4235
+ // {
4236
+ // "log_status": "marked_absent_by_system",
4237
+ // "break_id": null,
4238
+ // "total_minutes": null,
4239
+ // "log_date": "2025-11-06T05:00:21.976Z",
4240
+ // "__typename": "logType"
4241
+ // }
4242
+ // ],
4243
+ // "manually_logs": [],
4244
+ // "message": null,
4245
+ // "newWriteUp": null,
4246
+ // "normal_time_minutes_logged": 0,
4247
+ // "over_time_minutes_logged": 0,
4248
+ // "total_wages": "0",
4249
+ // "status": "clocked_out",
4250
+ // "total_working_hours_logged": "0",
4251
+ // "total_working_minutes_logged": "0",
4252
+ // "short_leave": [],
4253
+ // "short_breaks": {
4254
+ // "short_break_duration": null,
4255
+ // "short_break_name": null,
4256
+ // "__typename": "shortBreak"
4257
+ // },
4258
+ // "__typename": "ClockedHistory"
4259
+ // },
4260
+ // {
4261
+ // "BusinessLocation": null,
4262
+ // "clock_out_time": null,
4263
+ // "clock_in_time": null,
4264
+ // "clockedInStatus": "",
4265
+ // "clockedOutStatus": "",
4266
+ // "is_back_pay": false,
4267
+ // "is_over_time_public_holiday": false,
4268
+ // "Payroll": null,
4269
+ // "Schedule": {
4270
+ // "_id": "67bd557e81daa471a30e8c7f",
4271
+ // "schedule_date": "2025-11-06",
4272
+ // "__typename": "Schedule"
4273
+ // },
4274
+ // "User": {
4275
+ // "_id": "66d057f748e8588e75e4e6e0",
4276
+ // "full_name": "Muhammad Haris Abbas",
4277
+ // "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057f748e8588e75e4e6e0/sizes/36/1730282351097_.png",
4278
+ // "email": "haris@4iisolutions.com",
4279
+ // "phone": "+923495102689",
4280
+ // "department": [
4281
+ // {
4282
+ // "_id": "66d04474e240a11b39d65ffb",
4283
+ // "department_name": "Mobile App Dev Department",
4284
+ // "__typename": "Department"
4285
+ // }
4286
+ // ],
4287
+ // "__typename": "UserBasicInfo"
4288
+ // },
4289
+ // "UserHistory": null,
4290
+ // "_id": "690c2b6537b678105de4e153",
4291
+ // "attendanceDate": "2025-11-06",
4292
+ // "attendanceStatus": "Absent",
4293
+ // "attendance_adjusted_by": null,
4294
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
4295
+ // "attendance_log_detail": [],
4296
+ // "breaks": [
4297
+ // {
4298
+ // "_id": "67bd557e81daa471a30e8c80",
4299
+ // "break_in_time": null,
4300
+ // "break_out_time": null,
4301
+ // "message": null,
4302
+ // "breakInstatus": null,
4303
+ // "breakId": null,
4304
+ // "breakType": null,
4305
+ // "title": null,
4306
+ // "breakTypeId": null,
4307
+ // "break_duration": 60,
4308
+ // "minimum_break_percentage": 0,
4309
+ // "__typename": "BreakClockedHistory"
4310
+ // }
4311
+ // ],
4312
+ // "is_attendance_maually_adjusted": false,
4313
+ // "is_over_time_weekend": false,
4314
+ // "is_paid_public_holiday": false,
4315
+ // "is_paid_weekend": false,
4316
+ // "is_payroll_processed": false,
4317
+ // "is_public_holiday": false,
4318
+ // "is_public_holiday_off": false,
4319
+ // "is_un_restricted": false,
4320
+ // "is_update_pending": false,
4321
+ // "is_weekend": false,
4322
+ // "logged_seconds": 0,
4323
+ // "logs": [
4324
+ // {
4325
+ // "log_status": "marked_absent_by_system",
4326
+ // "break_id": null,
4327
+ // "total_minutes": null,
4328
+ // "log_date": "2025-11-06T05:00:21.968Z",
4329
+ // "__typename": "logType"
4330
+ // }
4331
+ // ],
4332
+ // "manually_logs": [],
4333
+ // "message": null,
4334
+ // "newWriteUp": null,
4335
+ // "normal_time_minutes_logged": 0,
4336
+ // "over_time_minutes_logged": 0,
4337
+ // "total_wages": "0",
4338
+ // "status": "clocked_out",
4339
+ // "total_working_hours_logged": "0",
4340
+ // "total_working_minutes_logged": "0",
4341
+ // "short_leave": [],
4342
+ // "short_breaks": {
4343
+ // "short_break_duration": null,
4344
+ // "short_break_name": null,
4345
+ // "__typename": "shortBreak"
4346
+ // },
4347
+ // "__typename": "ClockedHistory"
4348
+ // },
4349
+ // {
4350
+ // "BusinessLocation": null,
4351
+ // "clock_out_time": null,
4352
+ // "clock_in_time": null,
4353
+ // "clockedInStatus": "",
4354
+ // "clockedOutStatus": "",
4355
+ // "is_back_pay": false,
4356
+ // "is_over_time_public_holiday": false,
4357
+ // "Payroll": null,
4358
+ // "Schedule": {
4359
+ // "_id": "67bd555981daa471a30e772c",
4360
+ // "schedule_date": "2025-11-06",
4361
+ // "__typename": "Schedule"
4362
+ // },
4363
+ // "User": {
4364
+ // "_id": "66d057e448e8588e75e4c091",
4365
+ // "full_name": "Muhammad Arslan",
4366
+ // "logo": "https://techbar.s3.amazonaws.com/public/employee/logo/66d057e448e8588e75e4c091/sizes/36/1756974224197_.png",
4367
+ // "email": "marslan@4iisolutions.com",
4368
+ // "phone": "+923450576814",
4369
+ // "department": [
4370
+ // {
4371
+ // "_id": "66d04474e240a11b39d65ffb",
4372
+ // "department_name": "Mobile App Dev Department",
4373
+ // "__typename": "Department"
4374
+ // }
4375
+ // ],
4376
+ // "__typename": "UserBasicInfo"
4377
+ // },
4378
+ // "UserHistory": null,
4379
+ // "_id": "690c2b6537b678105de4e14c",
4380
+ // "attendanceDate": "2025-11-06",
4381
+ // "attendanceStatus": "Absent",
4382
+ // "attendance_adjusted_by": null,
4383
+ // "attendance_date": "2025-11-06T04:00:00.000Z",
4384
+ // "attendance_log_detail": [],
4385
+ // "breaks": [
4386
+ // {
4387
+ // "_id": "67bd555981daa471a30e772d",
4388
+ // "break_in_time": null,
4389
+ // "break_out_time": null,
4390
+ // "message": null,
4391
+ // "breakInstatus": null,
4392
+ // "breakId": null,
4393
+ // "breakType": null,
4394
+ // "title": null,
4395
+ // "breakTypeId": null,
4396
+ // "break_duration": 60,
4397
+ // "minimum_break_percentage": 0,
4398
+ // "__typename": "BreakClockedHistory"
4399
+ // }
4400
+ // ],
4401
+ // "is_attendance_maually_adjusted": false,
4402
+ // "is_over_time_weekend": false,
4403
+ // "is_paid_public_holiday": false,
4404
+ // "is_paid_weekend": false,
4405
+ // "is_payroll_processed": false,
4406
+ // "is_public_holiday": false,
4407
+ // "is_public_holiday_off": false,
4408
+ // "is_un_restricted": false,
4409
+ // "is_update_pending": false,
4410
+ // "is_weekend": false,
4411
+ // "logged_seconds": 0,
4412
+ // "logs": [
4413
+ // {
4414
+ // "log_status": "marked_absent_by_system",
4415
+ // "break_id": null,
4416
+ // "total_minutes": null,
4417
+ // "log_date": "2025-11-06T05:00:21.963Z",
4418
+ // "__typename": "logType"
4419
+ // }
4420
+ // ],
4421
+ // "manually_logs": [],
4422
+ // "message": null,
4423
+ // "newWriteUp": null,
4424
+ // "normal_time_minutes_logged": 0,
4425
+ // "over_time_minutes_logged": 0,
4426
+ // "total_wages": "0",
4427
+ // "status": "clocked_out",
4428
+ // "total_working_hours_logged": "0",
4429
+ // "total_working_minutes_logged": "0",
4430
+ // "short_leave": [],
4431
+ // "short_breaks": {
4432
+ // "short_break_duration": null,
4433
+ // "short_break_name": null,
4434
+ // "__typename": "shortBreak"
4435
+ // },
4436
+ // "__typename": "ClockedHistory"
4437
+ // }
4438
+ ],
4439
+ "limit": 50,
4440
+ "page": 1,
4441
+ "totalPages": 1,
4442
+ "totalResults": 39,
4443
+ "__typename": "dailyClockHistoryList"
4444
+ },
4445
+ "groupData": null,
4446
+ "__typename": "getEmployeesClockHistory"
4447
+ }
4448
+ }
4449
+ }
4450
+