@omniumretail/shared-resources 0.3.85 → 0.3.86

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 (1222) hide show
  1. package/.eslintrc.json +32 -0
  2. package/dist/bundle.js +1 -0
  3. package/dist/types/components/BottomDrawer/index.d.ts +9 -0
  4. package/dist/types/components/Button/index.d.ts +2 -0
  5. package/dist/types/components/Footer/index.d.ts +3 -0
  6. package/dist/types/components/Form/FormInputField/index.d.ts +8 -0
  7. package/dist/types/components/Form/FormSelectField/index.d.ts +9 -0
  8. package/dist/types/components/Form/index.d.ts +2 -0
  9. package/dist/types/components/Header/index.d.ts +4 -0
  10. package/dist/types/components/Link/index.d.ts +6 -0
  11. package/dist/types/components/Navigation/index.d.ts +8 -0
  12. package/dist/types/components/Page/index.d.ts +13 -0
  13. package/dist/types/components/SharedContextProvider/index.d.ts +7 -0
  14. package/dist/types/components/index.d.ts +9 -0
  15. package/dist/types/constants/Icons.d.ts +15 -0
  16. package/dist/types/constants/QueryClient.d.ts +2 -0
  17. package/dist/types/constants/index.d.ts +2 -0
  18. package/dist/types/contexts/useStore.d.ts +8 -0
  19. package/dist/types/helpers/codeMutation.d.ts +4 -0
  20. package/dist/types/helpers/date-unix.helper.d.ts +5 -0
  21. package/dist/types/helpers/getChildrenByType.helper.d.ts +2 -0
  22. package/dist/types/hooks/ACB/get/getClientBalance.hook.d.ts +7 -0
  23. package/dist/types/hooks/ACB/mutate/postClientBalance.hook.d.ts +2 -0
  24. package/dist/types/hooks/ASAEGNG/get/getCustomerHistoryQuery.hook.d.ts +10 -0
  25. package/dist/types/hooks/ASAEGNG/get/getCustomerVouchersQuery.hook.d.ts +10 -0
  26. package/dist/types/hooks/ASAEGNG/get/getCustomersQuery.hook.d.ts +12 -0
  27. package/dist/types/hooks/ATIM/BackOffice/get/useAbsenceTypes.hook.d.ts +10 -0
  28. package/dist/types/hooks/ATIM/BackOffice/get/useAttendancesSummary.hook.d.ts +10 -0
  29. package/dist/types/hooks/ATIM/BackOffice/get/useAttendancesSummarySearch.hook.d.ts +14 -0
  30. package/dist/types/hooks/ATIM/BackOffice/get/useEmployeeQueryHook.hook.d.ts +11 -0
  31. package/dist/types/hooks/ATIM/BackOffice/get/useEmployeeWorklogDetails.hook.d.ts +13 -0
  32. package/dist/types/hooks/ATIM/BackOffice/get/useEmployeesQuery.hook.d.ts +11 -0
  33. package/dist/types/hooks/ATIM/BackOffice/get/useKPIsQuery.hook.d.ts +11 -0
  34. package/dist/types/hooks/ATIM/BackOffice/get/useSchedulePeriodQuery.hook.d.ts +2 -0
  35. package/dist/types/hooks/ATIM/BackOffice/get/useSchedulePeriodTypesQuery.hook.d.ts +10 -0
  36. package/dist/types/hooks/ATIM/BackOffice/get/useSchedulesQuery.hook.d.ts +8 -0
  37. package/dist/types/hooks/ATIM/BackOffice/get/useStoresQueryHook.hook.d.ts +11 -0
  38. package/dist/types/hooks/ATIM/BackOffice/get/useWorkMonths.hook.d.ts +9 -0
  39. package/dist/types/hooks/ATIM/BackOffice/get/useWorkWeekSchedule.hook.d.ts +9 -0
  40. package/dist/types/hooks/ATIM/BackOffice/mutate/postAttendanceRange.hook.d.ts +2 -0
  41. package/dist/types/hooks/ATIM/BackOffice/mutate/useAttendancesById.hook.d.ts +2 -0
  42. package/dist/types/hooks/ATIM/BackOffice/mutate/useScheduleMutateQuery.hook.d.ts +2 -0
  43. package/dist/types/hooks/ATIM/BackOffice/mutate/useUpdateAttendancesSummary.hook.d.ts +2 -0
  44. package/dist/types/hooks/ATIM/PicaPonto/get/getEmployeesWithTimekeeping.hook.d.ts +13 -0
  45. package/dist/types/hooks/ATIM/PicaPonto/mutate/postAttendance.hook.d.ts +2 -0
  46. package/dist/types/hooks/ATIM/PicaPonto/mutate/postTogglePinCode.d.ts +10 -0
  47. package/dist/types/hooks/ATIM/PicaPonto/mutate/postVerifyUserQuery.hook.d.ts +2 -0
  48. package/dist/types/hooks/Acls/get/getCustomersLoyaltyQuery.hook.d.ts +8 -0
  49. package/dist/types/hooks/Acls/get/getVoucherLoyaltyQuery.hook.d.ts +8 -0
  50. package/dist/types/hooks/Acls/get/getVoucherSitooQuery.hook.d.ts +8 -0
  51. package/dist/types/hooks/Acls/get/getVoucherTemplatesQuery.hook.d.ts +9 -0
  52. package/dist/types/hooks/Acls/mutate/postCreateVoucherTemplates.hook.d.ts +2 -0
  53. package/dist/types/hooks/Acls/mutate/postSaldoVoucherQuery.hook.d.ts +7 -0
  54. package/dist/types/hooks/Acls/mutate/postSalesAssociationQuery.hook.d.ts +7 -0
  55. package/dist/types/hooks/Acls/mutate/postVerificationEmailQuery.hook.d.ts +8 -0
  56. package/dist/types/hooks/Acls/mutate/postVerificationUserQuery.hook.d.ts +8 -0
  57. package/dist/types/hooks/Acls/mutate/postVoucherSitooQuery.hook.d.ts +7 -0
  58. package/dist/types/hooks/Acls/mutate/reactivateVoucherQuery.hook.d.ts +8 -0
  59. package/dist/types/hooks/Acls/mutate/updateDisabledVoucherTemplates.hook.d.ts +2 -0
  60. package/dist/types/hooks/Aexp/get/getFlowExecutionByIdQuery.hook.d.ts +3 -0
  61. package/dist/types/hooks/Aexp/get/getFlowExecutionQuery.hook.d.ts +12 -0
  62. package/dist/types/hooks/Aexp/get/getFlowListByIdQuery.hook.d.ts +3 -0
  63. package/dist/types/hooks/Aexp/get/getFlowListQuery.hook.d.ts +13 -0
  64. package/dist/types/hooks/Aexp/get/getTagsFlowQuery.hook.d.ts +3 -0
  65. package/dist/types/hooks/Aexp/mutate/deleteFlowConfigurationQuery.hook.d.ts +2 -0
  66. package/dist/types/hooks/Aexp/mutate/inactivateFlowConfigurationQuery.hook.d.ts +2 -0
  67. package/dist/types/hooks/Aexp/mutate/runFlowExecutionQuery.hook.d.ts +2 -0
  68. package/dist/types/hooks/Aexp/mutate/useFlowConfigurationQuery.hook.d.ts +2 -0
  69. package/dist/types/hooks/Aexp/mutate/useFlowExecutionQuery.hook.d.ts +2 -0
  70. package/dist/types/hooks/Aexp/mutate/validateExecutionFileQuery.hook.d.ts +2 -0
  71. package/dist/types/hooks/Analytics/get/getArchivedAnalyticsQuery.hook.d.ts +13 -0
  72. package/dist/types/hooks/Analytics/get/useAnalyticsEvaluationCyclesQuery.hook.d.ts +7 -0
  73. package/dist/types/hooks/Analytics/get/useAnalyticsQuestionsQuery.hook.d.ts +9 -0
  74. package/dist/types/hooks/Analytics/get/useAnalyticsSideBarQuery.hook.d.ts +7 -0
  75. package/dist/types/hooks/Analytics/get/useAnalyticsUserIdQuery.hook.d.ts +13 -0
  76. package/dist/types/hooks/Analytics/get/useAnalyticsUserQuery.hook.d.ts +14 -0
  77. package/dist/types/hooks/Anot/get/getNotificationApplicationsQuery.hook.d.ts +4 -0
  78. package/dist/types/hooks/Anot/get/getNotificationCriticalitiesQuery.hook.d.ts +4 -0
  79. package/dist/types/hooks/Anot/get/getNotificationHeadersQuery.hook.d.ts +17 -0
  80. package/dist/types/hooks/Anot/get/getNotificationLanguagesQuery.hook.d.ts +6 -0
  81. package/dist/types/hooks/Anot/get/getNotificationTypeByIdQuery.hook.d.ts +3 -0
  82. package/dist/types/hooks/Anot/get/getNotificationsQuery.hook.d.ts +13 -0
  83. package/dist/types/hooks/Anot/get/getNotificationsTypeQuery.hook.d.ts +12 -0
  84. package/dist/types/hooks/Anot/mutate/useNotificationTypeQuery.hook.d.ts +2 -0
  85. package/dist/types/hooks/Answer/get/useAnswerIdQuery.hook.d.ts +2 -0
  86. package/dist/types/hooks/Answer/get/useAnswersUserSupervisorQuery.hook.d.ts +7 -0
  87. package/dist/types/hooks/Answer/mutate/useAnswerMutateQuery.hook.d.ts +9 -0
  88. package/dist/types/hooks/Answer/others/openAnswerQuery.hook.d.ts +2 -0
  89. package/dist/types/hooks/Answer/others/postAnswersExportQuery.hook.d.ts +8 -0
  90. package/dist/types/hooks/Answer/others/showAnswerQuery.hook.d.ts +2 -0
  91. package/dist/types/hooks/AprProduct/get/useProductHierarchies.hook.d.ts +7 -0
  92. package/dist/types/hooks/AprProduct/get/useProductRecommendations.hook.d.ts +11 -0
  93. package/dist/types/hooks/AprProduct/get/useProductsByRefQuery.hook.d.ts +7 -0
  94. package/dist/types/hooks/AprProduct/get/useProductsQuery.hook.d.ts +144 -0
  95. package/dist/types/hooks/Aprc/get/getPriceChangePinQuery.hook.d.ts +5 -0
  96. package/dist/types/hooks/Aprc/others/postPriceChangePinQuery.hook.d.ts +6 -0
  97. package/dist/types/hooks/Aprc/others/sendEmailWithPinQuery.hook.d.ts +6 -0
  98. package/dist/types/hooks/Asgt/get/getIdProductsPickedASGTQuery.hook.d.ts +2 -0
  99. package/dist/types/hooks/Asgt/get/getProductWarningASGTQuery.hook.d.ts +11 -0
  100. package/dist/types/hooks/Asgt/get/getProductsListingASGTQuery.hook.d.ts +3 -0
  101. package/dist/types/hooks/Asgt/get/getProductsMovementsASGTQuery.hook.d.ts +11 -0
  102. package/dist/types/hooks/Asgt/get/getProductsPickedASGTQuery.hook.d.ts +6 -0
  103. package/dist/types/hooks/Asgt/get/getReportsBuilderASGTQuery.hook.d.ts +3 -0
  104. package/dist/types/hooks/Asgt/get/getTransferAllProductsASGTQuery.hook.d.ts +10 -0
  105. package/dist/types/hooks/Asgt/get/getTransferDocumentsASGTQuery.hook.d.ts +11 -0
  106. package/dist/types/hooks/Asgt/get/getTransferDocumentsByIdASGTQuery.hook.d.ts +3 -0
  107. package/dist/types/hooks/Asgt/get/getTransferDocumentsByPackageASGTQuery.hook.d.ts +3 -0
  108. package/dist/types/hooks/Asgt/get/getTransferDocumentsPackagesASGTQuery.hook.d.ts +9 -0
  109. package/dist/types/hooks/Asgt/get/getTransferReportDiffASGT.hook.d.ts +12 -0
  110. package/dist/types/hooks/Asgt/mutate/autoSaveASGTQuery.hook.d.ts +7 -0
  111. package/dist/types/hooks/Asgt/mutate/createPackageASGTMutateQuery.hook.d.ts +6 -0
  112. package/dist/types/hooks/Asgt/mutate/createTransferASGTMutateQuery.hook.d.ts +2 -0
  113. package/dist/types/hooks/Asgt/mutate/postTransferDocumentsASGTMutateQuery.hook.d.ts +7 -0
  114. package/dist/types/hooks/Asgt/mutate/putTransferDocumentsStateASGTMutateQuery.hook.d.ts +6 -0
  115. package/dist/types/hooks/Asgt/mutate/removeProductASGTQuery.hook.d.ts +2 -0
  116. package/dist/types/hooks/Ass/get/getAssProductsByRefQuery.hook.d.ts +8 -0
  117. package/dist/types/hooks/Ass/get/getAssProductsByStoreQuery.hook.d.ts +11 -0
  118. package/dist/types/hooks/Ass/get/getAssProductsStockDetailsQuery.hook.d.ts +7 -0
  119. package/dist/types/hooks/Asta/Actions/get/getActionByIdQuery.hook.d.ts +2 -0
  120. package/dist/types/hooks/Asta/Actions/get/getActionPriorityQuery.hook.d.ts +2 -0
  121. package/dist/types/hooks/Asta/Actions/get/getActionQuery.hook.d.ts +11 -0
  122. package/dist/types/hooks/Asta/Actions/get/getActionStagesQuery.hook.d.ts +2 -0
  123. package/dist/types/hooks/Asta/Actions/mutate/useActionMutateQuery.hook.d.ts +2 -0
  124. package/dist/types/hooks/Asta/Actions/others/archiveActionQuery.hook.d.ts +6 -0
  125. package/dist/types/hooks/Asta/Actions/others/deleteActionQuery.hook.d.ts +6 -0
  126. package/dist/types/hooks/Asta/Actions/others/extractActionQuery.hook.d.ts +6 -0
  127. package/dist/types/hooks/Asta/Actions/others/finishActionQuery.hook.d.ts +2 -0
  128. package/dist/types/hooks/Asta/Actions/others/selectActionStatusQuery.hook.d.ts +2 -0
  129. package/dist/types/hooks/Asta/Actions/others/startActionQuery.hook.d.ts +2 -0
  130. package/dist/types/hooks/Asta/Answer/get/getAstaAnswerByIdQuery.hook.d.ts +2 -0
  131. package/dist/types/hooks/Asta/Answer/get/getAstaAnswerQuery.hook.d.ts +11 -0
  132. package/dist/types/hooks/Asta/Answer/mutate/useAstaAnswersMutateQuery.hook.d.ts +2 -0
  133. package/dist/types/hooks/Asta/Answer/others/finishAstaAnswersQuery.hook.d.ts +2 -0
  134. package/dist/types/hooks/Asta/Answer/others/finishGNGAstaAnswersQuery.hook.d.ts +2 -0
  135. package/dist/types/hooks/Asta/Answer/others/putAnswerImageQuery.hook.d.ts +2 -0
  136. package/dist/types/hooks/Asta/Answer/others/sendInspectionEmailQuery.hook.d.ts +2 -0
  137. package/dist/types/hooks/Asta/Answer/others/sendInspectionEmailStoreQuery.hook.d.ts +2 -0
  138. package/dist/types/hooks/Asta/AnswerType/get/getAllAnswerTypeQuery.hook.d.ts +11 -0
  139. package/dist/types/hooks/Asta/AnswerType/get/getAnswerColorsQuery.hook.d.ts +2 -0
  140. package/dist/types/hooks/Asta/AnswerType/get/getAnswerTypeByIdQuery.hook.d.ts +2 -0
  141. package/dist/types/hooks/Asta/AnswerType/get/getAnswerTypeQuery.hook.d.ts +2 -0
  142. package/dist/types/hooks/Asta/AnswerType/mutate/useAnswerTypeMutateQuery.hook.d.ts +2 -0
  143. package/dist/types/hooks/Asta/AnswerType/others/deleteAnswerTypeQuery.hook.d.ts +6 -0
  144. package/dist/types/hooks/Asta/AnswerType/others/finishAnswerTypeQuery.hook.d.ts +2 -0
  145. package/dist/types/hooks/Asta/AnswerType/others/selectAnswerNameQuery.hook.d.ts +2 -0
  146. package/dist/types/hooks/Asta/Inspection/get/getInspectionQuery.hook.d.ts +11 -0
  147. package/dist/types/hooks/Asta/Inspection/mutate/useInspectionMutateQuery.hook.d.ts +2 -0
  148. package/dist/types/hooks/Asta/Inspection/others/archiveTemplateQuery.hook.d.ts +6 -0
  149. package/dist/types/hooks/Asta/Inspection/others/deleteInspectionQuery.hook.d.ts +6 -0
  150. package/dist/types/hooks/Asta/Inspection/others/exportInspectionQuery.hook.d.ts +2 -0
  151. package/dist/types/hooks/Asta/Inspection/others/extractTemplateQuery.hook.d.ts +6 -0
  152. package/dist/types/hooks/Asta/Inspection/others/finishInspectionQuery.hook.d.ts +2 -0
  153. package/dist/types/hooks/Asta/Template/get/getTemplateByIdQuery.hook.d.ts +2 -0
  154. package/dist/types/hooks/Asta/Template/get/getTemplateHeadersQuery.hook.d.ts +2 -0
  155. package/dist/types/hooks/Asta/Template/get/getTemplateQuery.hook.d.ts +11 -0
  156. package/dist/types/hooks/Asta/Template/mutate/useTemplateMutateQuery.hook.d.ts +2 -0
  157. package/dist/types/hooks/Asta/Template/others/archiveTemplateQuery.hook.d.ts +6 -0
  158. package/dist/types/hooks/Asta/Template/others/deleteTemplateQuery.hook.d.ts +6 -0
  159. package/dist/types/hooks/Asta/Template/others/duplicateTemplateQuery.hook.d.ts +6 -0
  160. package/dist/types/hooks/Asta/Template/others/extractTemplateQuery.hook.d.ts +6 -0
  161. package/dist/types/hooks/Asta/Template/others/finishTemplateQuery.hook.d.ts +2 -0
  162. package/dist/types/hooks/Asts/get/getProductInfoQuery.hook.d.ts +15 -0
  163. package/dist/types/hooks/Asts/get/getStockQuery.hook.d.ts +7 -0
  164. package/dist/types/hooks/Asts/others/postAudioFileQuery.hook.d.ts +1 -0
  165. package/dist/types/hooks/Astt/Asgt/get/getAllAdidasProductsQuery.hook.d.ts +10 -0
  166. package/dist/types/hooks/Astt/Asgt/get/getIdProductsPickedASTTQuery.hook.d.ts +2 -0
  167. package/dist/types/hooks/Astt/Asgt/get/getProductWarningASTTQuery.hook.d.ts +11 -0
  168. package/dist/types/hooks/Astt/Asgt/get/getProductsListingASTTQuery.hook.d.ts +3 -0
  169. package/dist/types/hooks/Astt/Asgt/get/getProductsMovementsASTTQuery.hook.d.ts +11 -0
  170. package/dist/types/hooks/Astt/Asgt/get/getProductsPickedASTTQuery.hook.d.ts +6 -0
  171. package/dist/types/hooks/Astt/Asgt/get/getReportsBuilderASTTQuery.hook.d.ts +3 -0
  172. package/dist/types/hooks/Astt/Asgt/get/getReprocessNeededASTTQuery.hook.d.ts +2 -0
  173. package/dist/types/hooks/Astt/Asgt/get/getTransferAllProductsASTTQuery.hook.d.ts +10 -0
  174. package/dist/types/hooks/Astt/Asgt/get/getTransferDocumentsASTTQuery.hook.d.ts +11 -0
  175. package/dist/types/hooks/Astt/Asgt/get/getTransferDocumentsByIdASTTQuery.hook.d.ts +3 -0
  176. package/dist/types/hooks/Astt/Asgt/get/getTransferDocumentsByPackageASTTQuery.hook.d.ts +3 -0
  177. package/dist/types/hooks/Astt/Asgt/get/getTransferDocumentsPackagesASTTQuery.hook.d.ts +9 -0
  178. package/dist/types/hooks/Astt/Asgt/get/getTransferReportDiffASTT.hook.d.ts +12 -0
  179. package/dist/types/hooks/Astt/Asgt/mutate/autoSaveASTTQuery.hook.d.ts +7 -0
  180. package/dist/types/hooks/Astt/Asgt/mutate/createPackageASTTMutateQuery.hook.d.ts +6 -0
  181. package/dist/types/hooks/Astt/Asgt/mutate/createTransferASTTMutateQuery.hook.d.ts +2 -0
  182. package/dist/types/hooks/Astt/Asgt/mutate/deleteProductASTTQuery.hook.d.ts +8 -0
  183. package/dist/types/hooks/Astt/Asgt/mutate/finishPackageASTTQuery.hook.d.ts +6 -0
  184. package/dist/types/hooks/Astt/Asgt/mutate/postMissingProductsASTTQuery.hook.d.ts +6 -0
  185. package/dist/types/hooks/Astt/Asgt/mutate/postReprocessASTTQuery.hook.d.ts +5 -0
  186. package/dist/types/hooks/Astt/Asgt/mutate/postRfidASGTMutateQuery.hook.d.ts +10 -0
  187. package/dist/types/hooks/Astt/Asgt/mutate/postTransferDocumentsASTTMutateQuery.hook.d.ts +7 -0
  188. package/dist/types/hooks/Astt/Asgt/mutate/putTransferDocumentsStateASTTMutateQuery.hook.d.ts +6 -0
  189. package/dist/types/hooks/Astt/Asgt/mutate/removeProductASTTQuery.hook.d.ts +2 -0
  190. package/dist/types/hooks/Astt/Asgt/mutate/restartProductASTTQuery.hook.d.ts +6 -0
  191. package/dist/types/hooks/Astt/get/getBarcodesListingByPackageQuery.hook.d.ts +3 -0
  192. package/dist/types/hooks/Astt/get/getBarcodesListingQuery.hook.d.ts +3 -0
  193. package/dist/types/hooks/Astt/get/getBarcodesPrintQuery.hook.d.ts +3 -0
  194. package/dist/types/hooks/Astt/get/getDocumentsFindByIdQuery.hook.d.ts +3 -0
  195. package/dist/types/hooks/Astt/get/getManualPackagesListQuery.hook.d.ts +7 -0
  196. package/dist/types/hooks/Astt/get/getProductsListingQuery.hook.d.ts +3 -0
  197. package/dist/types/hooks/Astt/get/getReconciliationDocumentsQuery.hook.d.ts +7 -0
  198. package/dist/types/hooks/Astt/get/getReportsBuilderQuery.hook.d.ts +3 -0
  199. package/dist/types/hooks/Astt/get/getRfidQuery.hook.d.ts +9 -0
  200. package/dist/types/hooks/Astt/get/getTransferAllProductsQuery.hook.d.ts +10 -0
  201. package/dist/types/hooks/Astt/get/getTransferDocumentsByIdQuery.hook.d.ts +3 -0
  202. package/dist/types/hooks/Astt/get/getTransferDocumentsByPackageQuery.hook.d.ts +3 -0
  203. package/dist/types/hooks/Astt/get/getTransferDocumentsPackagesQuery.hook.d.ts +9 -0
  204. package/dist/types/hooks/Astt/get/getTransferDocumentsQuery.hook.d.ts +11 -0
  205. package/dist/types/hooks/Astt/get/getTransferReportDiff.hook.d.ts +12 -0
  206. package/dist/types/hooks/Astt/get/getTransferStatesQuery.hook.d.ts +2 -0
  207. package/dist/types/hooks/Astt/mutate/deleteManualPackageQuery.hook.d.ts +7 -0
  208. package/dist/types/hooks/Astt/mutate/notifyMissingProductsQuery.hook.d.ts +14 -0
  209. package/dist/types/hooks/Astt/mutate/postAsttActionsQuery.hook.d.ts +1 -0
  210. package/dist/types/hooks/Astt/mutate/postManualPackageQuery.hook.d.ts +2 -0
  211. package/dist/types/hooks/Astt/mutate/postManualTransferQuery.hook.d.ts +2 -0
  212. package/dist/types/hooks/Astt/mutate/postMatchingPackageQuery.hook.d.ts +6 -0
  213. package/dist/types/hooks/Astt/mutate/postTransferDocumentsMutateQuery.hook.d.ts +7 -0
  214. package/dist/types/hooks/Astt/mutate/putTransferDocumentFinishQuery.hook.d.ts +6 -0
  215. package/dist/types/hooks/Astt/mutate/putTransferDocumentsPartiallyQuery.hook.d.ts +6 -0
  216. package/dist/types/hooks/Astt/mutate/putTransferDocumentsStateMutateQuery.hook.d.ts +6 -0
  217. package/dist/types/hooks/Astt/mutate/updateDocumentIdQuery.hook.d.ts +7 -0
  218. package/dist/types/hooks/Astt/mutate/updatePackageIdQuery.hook.d.ts +8 -0
  219. package/dist/types/hooks/AsvProduct/get/getProductsByRefQuery.hook.d.ts +8 -0
  220. package/dist/types/hooks/AsvProduct/get/getProductsByStoreQuery.hook.d.ts +11 -0
  221. package/dist/types/hooks/AsvProduct/get/getProductsStockDetailsQuery.hook.d.ts +7 -0
  222. package/dist/types/hooks/BigWin/get/getBwgAllEmployeesQuery.hook.d.ts +12 -0
  223. package/dist/types/hooks/BigWin/get/getBwgBackOfficeQuery.hook.d.ts +12 -0
  224. package/dist/types/hooks/BigWin/get/getMonthsListQuery.hook.d.ts +2 -0
  225. package/dist/types/hooks/BigWin/others/importABWGQuery.hook.d.ts +2 -0
  226. package/dist/types/hooks/BigWin/others/importRegulationQuery.hook.d.ts +2 -0
  227. package/dist/types/hooks/BigWin/others/publishMonthsEmployeeQuery.hook.d.ts +2 -0
  228. package/dist/types/hooks/BigWin/others/publishMonthsManagerQuery.hook.d.ts +2 -0
  229. package/dist/types/hooks/EvaluationCycle/get/useEvaluationCycleIdQuery.hook.d.ts +2 -0
  230. package/dist/types/hooks/EvaluationCycle/get/useEvaluationCycleQuery.hook.d.ts +11 -0
  231. package/dist/types/hooks/EvaluationCycle/mutate/useEvaluationCycleMutateQuery.hook.d.ts +2 -0
  232. package/dist/types/hooks/EvaluationCycle/others/activateEvaluationCycleQuery.hook.d.ts +2 -0
  233. package/dist/types/hooks/EvaluationCycle/others/cancelEvaluationCycleQuery.hook.d.ts +2 -0
  234. package/dist/types/hooks/EvaluationCycle/others/deleteEvaluationCycleQuery.hook.d.ts +2 -0
  235. package/dist/types/hooks/EvaluationCycle/others/finishEvaluationCycleQuery.hook.d.ts +2 -0
  236. package/dist/types/hooks/OSUA/MIMO/get/getIntegrationByName.hook.d.ts +6 -0
  237. package/dist/types/hooks/OSUA/MIMO/get/getProductIntegrationHistory.hook.d.ts +9 -0
  238. package/dist/types/hooks/OSUA/MIMO/get/useErrorHistory.hook.d.ts +7 -0
  239. package/dist/types/hooks/OSUA/MIMO/get/useIntegrationDataQuery.hook.d.ts +2 -0
  240. package/dist/types/hooks/OSUA/MIMO/mutate/postDagsAdjustStock.hook.d.ts +1 -0
  241. package/dist/types/hooks/OSUA/MIMO/mutate/postIntegrationDag.hook.d.ts +5 -0
  242. package/dist/types/hooks/OSUA/MIMO/mutate/postProductVendusIntegration.hook.d.ts +2 -0
  243. package/dist/types/hooks/OSUA/MIMO/mutate/updateErrorHistory.hook.d.ts +2 -0
  244. package/dist/types/hooks/OSUA/MIMO/mutate/updateIntegrationProcess.hook.d.ts +6 -0
  245. package/dist/types/hooks/OSUA/get/documentos/getGngDocumentos.hook.d.ts +9 -0
  246. package/dist/types/hooks/OSUA/get/documentos/getSitooDocumentos.hook.d.ts +8 -0
  247. package/dist/types/hooks/OSUA/get/eventos/getSitooErrorEvents.hook.d.ts +10 -0
  248. package/dist/types/hooks/OSUA/get/faqs/getFaqsQuery.hook.d.ts +11 -0
  249. package/dist/types/hooks/OSUA/get/orders/getOrderDocuments.hook.d.ts +9 -0
  250. package/dist/types/hooks/OSUA/get/queue/getQueues.hook.d.ts +2 -0
  251. package/dist/types/hooks/OSUA/get/queue/getQueuesMessages.hook.d.ts +9 -0
  252. package/dist/types/hooks/OSUA/get/vouchers/getGngVoucher.hook.d.ts +9 -0
  253. package/dist/types/hooks/OSUA/get/vouchers/getOsuaVouchersQuery.hook.d.ts +12 -0
  254. package/dist/types/hooks/OSUA/get/vouchers/getSalesNumberOsua.hook.d.ts +13 -0
  255. package/dist/types/hooks/OSUA/get/vouchers/getSitooVouchers.hook.d.ts +7 -0
  256. package/dist/types/hooks/OSUA/get/vouchers/getVoucherIntegrationRequestStatus.hook.d.ts +8 -0
  257. package/dist/types/hooks/OSUA/mutate/activateOsuaVoucherQuery.hook.d.ts +10 -0
  258. package/dist/types/hooks/OSUA/mutate/postCreateIntegrationRequest.hook.d.ts +10 -0
  259. package/dist/types/hooks/OSUA/mutate/postEventsRep.hook.d.ts +1 -0
  260. package/dist/types/hooks/OSUA/mutate/postQueuesMessages.hook.d.ts +6 -0
  261. package/dist/types/hooks/OSUA/mutate/postVoucher.hook.d.ts +2 -0
  262. package/dist/types/hooks/OSUA/mutate/putBalanceVouchers.hook.d.ts +6 -0
  263. package/dist/types/hooks/OSUA/mutate/useSetIntegrationToFinished.hook.d.ts +2 -0
  264. package/dist/types/hooks/Orch/get/getAuth0ConfigQuery.hook.d.ts +2 -0
  265. package/dist/types/hooks/Orch/get/getInstanceByIdQuery.hook.d.ts +3 -0
  266. package/dist/types/hooks/Orch/get/getInstancesQuery.hook.d.ts +12 -0
  267. package/dist/types/hooks/Orch/get/getMacrosInstancesQuery.hook.d.ts +8 -0
  268. package/dist/types/hooks/Orch/get/getMacrosQuery.hook.d.ts +12 -0
  269. package/dist/types/hooks/Orch/get/getMacrosUserQuery.hook.d.ts +3 -0
  270. package/dist/types/hooks/Orch/get/getMonitoringComponents.hook.d.ts +13 -0
  271. package/dist/types/hooks/Orch/others/reprocessingInstanceQuery.hook.d.ts +1 -0
  272. package/dist/types/hooks/Orch/others/runMacrosQuery.hook.d.ts +6 -0
  273. package/dist/types/hooks/Orch/others/stopInstanceQuery.hook.d.ts +1 -0
  274. package/dist/types/hooks/Orch/others/updateMacroStatusQuery.hook.d.ts +6 -0
  275. package/dist/types/hooks/Others/Vacation/get/getVacationPlanQuery.hook.d.ts +9 -0
  276. package/dist/types/hooks/Others/Vacation/get/getVacationTemplateQuery.hook.d.ts +2 -0
  277. package/dist/types/hooks/Others/Vacation/others/aproveVacationPlanQuery.hook.d.ts +8 -0
  278. package/dist/types/hooks/Others/Vacation/others/postVacationPlanQuery.hook.d.ts +7 -0
  279. package/dist/types/hooks/Others/Vacation/others/rejectVacationPlanQuery.hook.d.ts +9 -0
  280. package/dist/types/hooks/Others/changePasswordQuery.hook.d.ts +5 -0
  281. package/dist/types/hooks/Others/editAllBellNotificationsStatusQuery.hook.d.ts +6 -0
  282. package/dist/types/hooks/Others/editBellNotificationsStatusQuery.hook.d.ts +7 -0
  283. package/dist/types/hooks/Others/editFieldsByBulkQuery.hook.d.ts +2 -0
  284. package/dist/types/hooks/Others/getBellNotificationsQuery.hook.d.ts +13 -0
  285. package/dist/types/hooks/Others/getNotificationTitleQuery.hook.d.ts +8 -0
  286. package/dist/types/hooks/Others/getRegulationQuery.hook.d.ts +2 -0
  287. package/dist/types/hooks/Others/getUserEmailStatusQuery.hook.d.ts +9 -0
  288. package/dist/types/hooks/Others/getWeeklyWorkloadQuery.hook.d.ts +10 -0
  289. package/dist/types/hooks/Others/oneSignalUserQuery.hook.d.ts +1 -0
  290. package/dist/types/hooks/Others/postCheckoutsMutateQuery.hook.d.ts +2 -0
  291. package/dist/types/hooks/Others/postUserAuthenticationQuery.hook.d.ts +6 -0
  292. package/dist/types/hooks/Others/postVerifyImageQuery.hook.d.ts +2 -0
  293. package/dist/types/hooks/Others/unblockUserQuery.hook.d.ts +1 -0
  294. package/dist/types/hooks/Others/useApplicationDataQuery.hook.d.ts +2 -0
  295. package/dist/types/hooks/Others/useContractStatesQuery.hook.d.ts +7 -0
  296. package/dist/types/hooks/Others/useCountriesQuery.hook.d.ts +7 -0
  297. package/dist/types/hooks/Others/useCreateNotification.hook.d.ts +7 -0
  298. package/dist/types/hooks/Others/useCustomersQuery.hook.d.ts +142 -0
  299. package/dist/types/hooks/Others/useJobTitlesQuery.hook.d.ts +9 -0
  300. package/dist/types/hooks/Others/useRegulationQuery.hook.d.ts +9 -0
  301. package/dist/types/hooks/Others/useTermNotificationQuery.hook.d.ts +2 -0
  302. package/dist/types/hooks/Questionnaire/get/useQuestionnaireIdQuery.hook.d.ts +2 -0
  303. package/dist/types/hooks/Questionnaire/get/useQuestionnaireQuery.hook.d.ts +11 -0
  304. package/dist/types/hooks/Questionnaire/mutate/useQuestionnaireMutateQuery.hook.d.ts +2 -0
  305. package/dist/types/hooks/Questionnaire/others/activateQuestionnaireQuery.hook.d.ts +2 -0
  306. package/dist/types/hooks/Questionnaire/others/cancelQuestionnaireQuery.hook.d.ts +2 -0
  307. package/dist/types/hooks/Questionnaire/others/deleteQuestionnaireQuery.hook.d.ts +2 -0
  308. package/dist/types/hooks/Questionnaire/others/duplicateQuestionnaireQuery.hook.d.ts +2 -0
  309. package/dist/types/hooks/Questionnaire/others/finishQuestionnaireQuery.hook.d.ts +2 -0
  310. package/dist/types/hooks/Roles/get/useAllRolesQuery.hook.d.ts +12 -0
  311. package/dist/types/hooks/Store/getLocationsByUser.hook.d.ts +13 -0
  312. package/dist/types/hooks/Store/useAllStoreQuery.hook.d.ts +13 -0
  313. package/dist/types/hooks/Store/useStoreByCodeQuery.hook.d.ts +8 -0
  314. package/dist/types/hooks/Store/useStoreQuery.d.ts +7 -0
  315. package/dist/types/hooks/Users/get/getUserAndSupervisorQuery.hook.d.ts +7 -0
  316. package/dist/types/hooks/Users/get/getUsersReadmissionQuery.hook.d.ts +11 -0
  317. package/dist/types/hooks/Users/get/useApplicationQuery.hook.d.ts +11 -0
  318. package/dist/types/hooks/Users/get/useExpUsersAnswersQuery.hook.d.ts +9 -0
  319. package/dist/types/hooks/Users/get/usePermissionByIdQuery.hook.d.ts +3 -0
  320. package/dist/types/hooks/Users/get/usePermissionsQuery.hook.d.ts +11 -0
  321. package/dist/types/hooks/Users/get/useSingleUserIdQuery.hook.d.ts +3 -0
  322. package/dist/types/hooks/Users/get/useUserIdQuery.hook.d.ts +2 -0
  323. package/dist/types/hooks/Users/get/useUserListQuery.hook.d.ts +11 -0
  324. package/dist/types/hooks/Users/get/useUserQuery.hook.d.ts +12 -0
  325. package/dist/types/hooks/Users/mutate/deletePermissionMutateQuery.hook.d.ts +2 -0
  326. package/dist/types/hooks/Users/mutate/useSingleUserIdMutateQuery.hook.d.ts +2 -0
  327. package/dist/types/hooks/Users/mutate/useUpdatePermissionsMutateQuery.hook.d.ts +2 -0
  328. package/dist/types/hooks/Users/mutate/useUpdateSupervisorMutateQuery.hook.d.ts +8 -0
  329. package/dist/types/hooks/Users/others/useSingleUserResetPassword.hook.d.ts +6 -0
  330. package/dist/types/hooks/Users/others/useUserBlockQuery.hook.d.ts +2 -0
  331. package/dist/types/hooks/Users/others/useUserEmailVerifQuery.hook.d.ts +2 -0
  332. package/dist/types/hooks/Users/others/useUserResetPassByEmail.hook.d.ts +2 -0
  333. package/dist/types/hooks/Watson/get/getCloseSession.hook.d.ts +3 -0
  334. package/dist/types/hooks/Watson/mutate/mutateCloseSession.hook.d.ts +2 -0
  335. package/dist/types/hooks/Watson/mutate/mutateNotificationRequest.hook.d.ts +2 -0
  336. package/dist/types/hooks/WidgetPicaPonto/get/getAttendanceIssuesByIdQuery.hook.d.ts +3 -0
  337. package/dist/types/hooks/WidgetPicaPonto/get/getAttendanceIssuesQuery.hook.d.ts +11 -0
  338. package/dist/types/hooks/WidgetPicaPonto/get/getCriticaliesQuery.hook.d.ts +11 -0
  339. package/dist/types/hooks/WidgetPicaPonto/get/getReasonCodesQuery.hook.d.ts +11 -0
  340. package/dist/types/hooks/WidgetPicaPonto/get/getSchedulesStoresQuery.hook.d.ts +8 -0
  341. package/dist/types/hooks/WidgetPicaPonto/mutate/useAttendanceIssuesQuery.hook.d.ts +2 -0
  342. package/dist/types/hooks/index.d.ts +434 -0
  343. package/dist/types/index.d.ts +10 -0
  344. package/dist/types/interfaces/Answer.d.ts +13 -0
  345. package/dist/types/interfaces/Cart.d.ts +11 -0
  346. package/dist/types/interfaces/Employee.d.ts +14 -0
  347. package/dist/types/interfaces/Inspection.d.ts +21 -0
  348. package/dist/types/interfaces/OSUA.d.ts +325 -0
  349. package/dist/types/interfaces/Responses.d.ts +29 -0
  350. package/dist/types/interfaces/Template.d.ts +30 -0
  351. package/dist/types/interfaces/User.d.ts +71 -0
  352. package/dist/types/services/ApiService/index.d.ts +14 -0
  353. package/dist/types/services/InitService/index.d.ts +3 -0
  354. package/package.json +36 -48
  355. package/src/a2ai.scss +130 -0
  356. package/src/assets/omniu-retail_branco_s-fundo.png +0 -0
  357. package/src/assets/sitoo.svg +9 -0
  358. package/src/components/BottomDrawer/index.tsx +33 -0
  359. package/src/components/BottomDrawer/styles.module.scss +59 -0
  360. package/src/components/Button/index.tsx +7 -0
  361. package/src/components/Footer/index.tsx +44 -0
  362. package/src/components/Footer/styles.module.scss +33 -0
  363. package/src/components/Form/FormInputField/index.tsx +18 -0
  364. package/src/components/Form/FormSelectField/index.tsx +16 -0
  365. package/src/components/Form/index.ts +2 -0
  366. package/src/components/Header/index.tsx +20 -0
  367. package/src/components/Header/styles.module.scss +16 -0
  368. package/src/components/Link/index.tsx +21 -0
  369. package/src/components/Link/styles.module.scss +24 -0
  370. package/src/components/Navigation/index.tsx +30 -0
  371. package/src/components/Navigation/styles.module.scss +34 -0
  372. package/src/components/Page/index.tsx +35 -0
  373. package/src/components/Page/styles.module.scss +26 -0
  374. package/src/components/SharedContextProvider/index.tsx +30 -0
  375. package/src/components/index.ts +9 -0
  376. package/src/constants/Icons.ts +21 -0
  377. package/src/constants/QueryClient.ts +10 -0
  378. package/src/constants/index.ts +2 -0
  379. package/src/contexts/useStore.tsx +20 -0
  380. package/src/enums/attendence-type.enum.ts +5 -0
  381. package/src/enums/employees-order.enum.ts +7 -0
  382. package/src/enums/index.ts +2 -0
  383. package/src/global.scss +124 -0
  384. package/src/helpers/codeMutation.tsx +20 -0
  385. package/src/helpers/date-unix.helper.ts +29 -0
  386. package/src/helpers/formatted-date.helper.ts +15 -0
  387. package/src/helpers/getChildrenByType.helper.ts +5 -0
  388. package/src/helpers/index.ts +4 -0
  389. package/src/hooks/ACB/get/getClientBalance.hook.ts +20 -0
  390. package/src/hooks/ACB/mutate/postClientBalance.hook.ts +16 -0
  391. package/src/hooks/ASAEGNG/get/getCustomerHistoryQuery.hook.ts +24 -0
  392. package/src/hooks/ASAEGNG/get/getCustomerVouchersQuery.hook.ts +24 -0
  393. package/src/hooks/ASAEGNG/get/getCustomersQuery.hook.ts +28 -0
  394. package/src/hooks/ATIM/BackOffice/get/useAbsenceTypes.hook.ts +33 -0
  395. package/src/hooks/ATIM/BackOffice/get/useAttendancesSummary.hook.ts +38 -0
  396. package/src/hooks/ATIM/BackOffice/get/useAttendancesSummarySearch.hook.ts +52 -0
  397. package/src/hooks/ATIM/BackOffice/get/useEmployeeQueryHook.hook.ts +29 -0
  398. package/src/hooks/ATIM/BackOffice/get/useEmployeeWorklogDetails.hook.ts +51 -0
  399. package/src/hooks/ATIM/BackOffice/get/useEmployeesQuery.hook.ts +36 -0
  400. package/src/hooks/ATIM/BackOffice/get/useKPIsQuery.hook.ts +36 -0
  401. package/src/hooks/ATIM/BackOffice/get/useSchedulePeriodQuery.hook.ts +16 -0
  402. package/src/hooks/ATIM/BackOffice/get/useSchedulePeriodTypesQuery.hook.ts +36 -0
  403. package/src/hooks/ATIM/BackOffice/get/useSchedulesQuery.hook.ts +28 -0
  404. package/src/hooks/ATIM/BackOffice/get/useStoresQueryHook.hook.ts +27 -0
  405. package/src/hooks/ATIM/BackOffice/get/useWorkMonths.hook.ts +31 -0
  406. package/src/hooks/ATIM/BackOffice/get/useWorkWeekSchedule.hook.ts +31 -0
  407. package/src/hooks/ATIM/BackOffice/mutate/postAttendanceRange.hook.ts +16 -0
  408. package/src/hooks/ATIM/BackOffice/mutate/useAttendancesById.hook.ts +21 -0
  409. package/src/hooks/ATIM/BackOffice/mutate/useScheduleMutateQuery.hook.ts +25 -0
  410. package/src/hooks/ATIM/BackOffice/mutate/useUpdateAttendancesSummary.hook.ts +17 -0
  411. package/src/hooks/ATIM/PicaPonto/get/getEmployeesWithTimekeeping.hook.ts +35 -0
  412. package/src/hooks/ATIM/PicaPonto/mutate/postAttendance.hook.ts +16 -0
  413. package/src/hooks/ATIM/PicaPonto/mutate/postTogglePinCode.ts +33 -0
  414. package/src/hooks/ATIM/PicaPonto/mutate/postVerifyUserQuery.hook.ts +15 -0
  415. package/src/hooks/Acls/get/getCustomersLoyaltyQuery.hook.ts +22 -0
  416. package/src/hooks/Acls/get/getVoucherLoyaltyQuery.hook.ts +25 -0
  417. package/src/hooks/Acls/get/getVoucherSitooQuery.hook.ts +22 -0
  418. package/src/hooks/Acls/get/getVoucherTemplatesQuery.hook.ts +29 -0
  419. package/src/hooks/Acls/mutate/postCreateVoucherTemplates.hook.ts +19 -0
  420. package/src/hooks/Acls/mutate/postSaldoVoucherQuery.hook.ts +21 -0
  421. package/src/hooks/Acls/mutate/postSalesAssociationQuery.hook.ts +20 -0
  422. package/src/hooks/Acls/mutate/postVerificationEmailQuery.hook.ts +23 -0
  423. package/src/hooks/Acls/mutate/postVerificationUserQuery.hook.ts +23 -0
  424. package/src/hooks/Acls/mutate/postVoucherSitooQuery.hook.ts +21 -0
  425. package/src/hooks/Acls/mutate/reactivateVoucherQuery.hook.ts +27 -0
  426. package/src/hooks/Acls/mutate/updateDisabledVoucherTemplates.hook.ts +25 -0
  427. package/src/hooks/Aexp/get/getFlowExecutionByIdQuery.hook.ts +13 -0
  428. package/src/hooks/Aexp/get/getFlowExecutionQuery.hook.ts +27 -0
  429. package/src/hooks/Aexp/get/getFlowListByIdQuery.hook.ts +13 -0
  430. package/src/hooks/Aexp/get/getFlowListQuery.hook.ts +29 -0
  431. package/src/hooks/Aexp/get/getTagsFlowQuery.hook.ts +11 -0
  432. package/src/hooks/Aexp/mutate/deleteFlowConfigurationQuery.hook.ts +17 -0
  433. package/src/hooks/Aexp/mutate/inactivateFlowConfigurationQuery.hook.ts +18 -0
  434. package/src/hooks/Aexp/mutate/runFlowExecutionQuery.hook.ts +20 -0
  435. package/src/hooks/Aexp/mutate/useFlowConfigurationQuery.hook.ts +17 -0
  436. package/src/hooks/Aexp/mutate/useFlowExecutionQuery.hook.ts +22 -0
  437. package/src/hooks/Aexp/mutate/validateExecutionFileQuery.hook.ts +15 -0
  438. package/src/hooks/Analytics/get/getArchivedAnalyticsQuery.hook.ts +32 -0
  439. package/src/hooks/Analytics/get/useAnalyticsEvaluationCyclesQuery.hook.ts +21 -0
  440. package/src/hooks/Analytics/get/useAnalyticsQuestionsQuery.hook.ts +23 -0
  441. package/src/hooks/Analytics/get/useAnalyticsSideBarQuery.hook.ts +21 -0
  442. package/src/hooks/Analytics/get/useAnalyticsUserIdQuery.hook.ts +32 -0
  443. package/src/hooks/Analytics/get/useAnalyticsUserQuery.hook.ts +35 -0
  444. package/src/hooks/Anot/get/getNotificationApplicationsQuery.hook.ts +13 -0
  445. package/src/hooks/Anot/get/getNotificationCriticalitiesQuery.hook.ts +13 -0
  446. package/src/hooks/Anot/get/getNotificationHeadersQuery.hook.ts +33 -0
  447. package/src/hooks/Anot/get/getNotificationLanguagesQuery.hook.ts +15 -0
  448. package/src/hooks/Anot/get/getNotificationTypeByIdQuery.hook.ts +11 -0
  449. package/src/hooks/Anot/get/getNotificationsQuery.hook.ts +29 -0
  450. package/src/hooks/Anot/get/getNotificationsTypeQuery.hook.ts +27 -0
  451. package/src/hooks/Anot/mutate/useNotificationTypeQuery.hook.ts +18 -0
  452. package/src/hooks/Answer/get/useAnswerIdQuery.hook.ts +13 -0
  453. package/src/hooks/Answer/get/useAnswersUserSupervisorQuery.hook.ts +21 -0
  454. package/src/hooks/Answer/mutate/useAnswerMutateQuery.hook.ts +31 -0
  455. package/src/hooks/Answer/others/openAnswerQuery.hook.ts +19 -0
  456. package/src/hooks/Answer/others/postAnswersExportQuery.hook.ts +26 -0
  457. package/src/hooks/Answer/others/showAnswerQuery.hook.ts +18 -0
  458. package/src/hooks/AprProduct/get/useProductHierarchies.hook.ts +19 -0
  459. package/src/hooks/AprProduct/get/useProductRecommendations.hook.ts +27 -0
  460. package/src/hooks/AprProduct/get/useProductsByRefQuery.hook.ts +18 -0
  461. package/src/hooks/AprProduct/get/useProductsQuery.hook.ts +46 -0
  462. package/src/hooks/Aprc/get/getPriceChangePinQuery.hook.ts +16 -0
  463. package/src/hooks/Aprc/others/postPriceChangePinQuery.hook.ts +19 -0
  464. package/src/hooks/Aprc/others/sendEmailWithPinQuery.hook.ts +19 -0
  465. package/src/hooks/Asgt/get/getIdProductsPickedASGTQuery.hook.ts +10 -0
  466. package/src/hooks/Asgt/get/getProductWarningASGTQuery.hook.ts +27 -0
  467. package/src/hooks/Asgt/get/getProductsListingASGTQuery.hook.ts +14 -0
  468. package/src/hooks/Asgt/get/getProductsMovementsASGTQuery.hook.ts +27 -0
  469. package/src/hooks/Asgt/get/getProductsPickedASGTQuery.hook.ts +19 -0
  470. package/src/hooks/Asgt/get/getReportsBuilderASGTQuery.hook.ts +12 -0
  471. package/src/hooks/Asgt/get/getTransferAllProductsASGTQuery.hook.ts +25 -0
  472. package/src/hooks/Asgt/get/getTransferDocumentsASGTQuery.hook.ts +27 -0
  473. package/src/hooks/Asgt/get/getTransferDocumentsByIdASGTQuery.hook.ts +12 -0
  474. package/src/hooks/Asgt/get/getTransferDocumentsByPackageASGTQuery.hook.ts +13 -0
  475. package/src/hooks/Asgt/get/getTransferDocumentsPackagesASGTQuery.hook.ts +23 -0
  476. package/src/hooks/Asgt/get/getTransferReportDiffASGT.hook.ts +17 -0
  477. package/src/hooks/Asgt/mutate/autoSaveASGTQuery.hook.ts +23 -0
  478. package/src/hooks/Asgt/mutate/createPackageASGTMutateQuery.hook.ts +21 -0
  479. package/src/hooks/Asgt/mutate/createTransferASGTMutateQuery.hook.ts +15 -0
  480. package/src/hooks/Asgt/mutate/postTransferDocumentsASGTMutateQuery.hook.ts +23 -0
  481. package/src/hooks/Asgt/mutate/putTransferDocumentsStateASGTMutateQuery.hook.ts +21 -0
  482. package/src/hooks/Asgt/mutate/removeProductASGTQuery.hook.ts +15 -0
  483. package/src/hooks/Ass/get/getAssProductsByRefQuery.hook.ts +23 -0
  484. package/src/hooks/Ass/get/getAssProductsByStoreQuery.hook.ts +29 -0
  485. package/src/hooks/Ass/get/getAssProductsStockDetailsQuery.hook.ts +21 -0
  486. package/src/hooks/Asta/Actions/get/getActionByIdQuery.hook.ts +15 -0
  487. package/src/hooks/Asta/Actions/get/getActionPriorityQuery.hook.ts +10 -0
  488. package/src/hooks/Asta/Actions/get/getActionQuery.hook.ts +29 -0
  489. package/src/hooks/Asta/Actions/get/getActionStagesQuery.hook.ts +10 -0
  490. package/src/hooks/Asta/Actions/mutate/useActionMutateQuery.hook.ts +20 -0
  491. package/src/hooks/Asta/Actions/others/archiveActionQuery.hook.ts +19 -0
  492. package/src/hooks/Asta/Actions/others/deleteActionQuery.hook.ts +19 -0
  493. package/src/hooks/Asta/Actions/others/extractActionQuery.hook.ts +19 -0
  494. package/src/hooks/Asta/Actions/others/finishActionQuery.hook.ts +17 -0
  495. package/src/hooks/Asta/Actions/others/selectActionStatusQuery.hook.ts +18 -0
  496. package/src/hooks/Asta/Actions/others/startActionQuery.hook.ts +17 -0
  497. package/src/hooks/Asta/Answer/get/getAstaAnswerByIdQuery.hook.ts +15 -0
  498. package/src/hooks/Asta/Answer/get/getAstaAnswerQuery.hook.ts +29 -0
  499. package/src/hooks/Asta/Answer/mutate/useAstaAnswersMutateQuery.hook.ts +20 -0
  500. package/src/hooks/Asta/Answer/others/finishAstaAnswersQuery.hook.ts +15 -0
  501. package/src/hooks/Asta/Answer/others/finishGNGAstaAnswersQuery.hook.ts +18 -0
  502. package/src/hooks/Asta/Answer/others/putAnswerImageQuery.hook.ts +15 -0
  503. package/src/hooks/Asta/Answer/others/sendInspectionEmailQuery.hook.ts +21 -0
  504. package/src/hooks/Asta/Answer/others/sendInspectionEmailStoreQuery.hook.ts +20 -0
  505. package/src/hooks/Asta/AnswerType/get/getAllAnswerTypeQuery.hook.ts +29 -0
  506. package/src/hooks/Asta/AnswerType/get/getAnswerColorsQuery.hook.ts +10 -0
  507. package/src/hooks/Asta/AnswerType/get/getAnswerTypeByIdQuery.hook.ts +15 -0
  508. package/src/hooks/Asta/AnswerType/get/getAnswerTypeQuery.hook.ts +10 -0
  509. package/src/hooks/Asta/AnswerType/mutate/useAnswerTypeMutateQuery.hook.ts +20 -0
  510. package/src/hooks/Asta/AnswerType/others/deleteAnswerTypeQuery.hook.ts +19 -0
  511. package/src/hooks/Asta/AnswerType/others/finishAnswerTypeQuery.hook.ts +17 -0
  512. package/src/hooks/Asta/AnswerType/others/selectAnswerNameQuery.hook.ts +18 -0
  513. package/src/hooks/Asta/Inspection/get/getInspectionQuery.hook.ts +29 -0
  514. package/src/hooks/Asta/Inspection/mutate/useInspectionMutateQuery.hook.ts +24 -0
  515. package/src/hooks/Asta/Inspection/others/archiveTemplateQuery.hook.ts +19 -0
  516. package/src/hooks/Asta/Inspection/others/deleteInspectionQuery.hook.ts +19 -0
  517. package/src/hooks/Asta/Inspection/others/exportInspectionQuery.hook.ts +19 -0
  518. package/src/hooks/Asta/Inspection/others/extractTemplateQuery.hook.ts +19 -0
  519. package/src/hooks/Asta/Inspection/others/finishInspectionQuery.hook.ts +17 -0
  520. package/src/hooks/Asta/Template/get/getTemplateByIdQuery.hook.ts +15 -0
  521. package/src/hooks/Asta/Template/get/getTemplateHeadersQuery.hook.ts +10 -0
  522. package/src/hooks/Asta/Template/get/getTemplateQuery.hook.ts +29 -0
  523. package/src/hooks/Asta/Template/mutate/useTemplateMutateQuery.hook.ts +20 -0
  524. package/src/hooks/Asta/Template/others/archiveTemplateQuery.hook.ts +19 -0
  525. package/src/hooks/Asta/Template/others/deleteTemplateQuery.hook.ts +19 -0
  526. package/src/hooks/Asta/Template/others/duplicateTemplateQuery.hook.ts +19 -0
  527. package/src/hooks/Asta/Template/others/extractTemplateQuery.hook.ts +19 -0
  528. package/src/hooks/Asta/Template/others/finishTemplateQuery.hook.ts +17 -0
  529. package/src/hooks/Asts/get/getProductInfoQuery.hook.ts +19 -0
  530. package/src/hooks/Asts/get/getStockQuery.hook.ts +21 -0
  531. package/src/hooks/Asts/others/postAudioFileQuery.hook.ts +14 -0
  532. package/src/hooks/Astt/Asgt/get/getAllAdidasProductsQuery.hook.ts +25 -0
  533. package/src/hooks/Astt/Asgt/get/getIdProductsPickedASTTQuery.hook.ts +10 -0
  534. package/src/hooks/Astt/Asgt/get/getProductWarningASTTQuery.hook.ts +27 -0
  535. package/src/hooks/Astt/Asgt/get/getProductsListingASTTQuery.hook.ts +14 -0
  536. package/src/hooks/Astt/Asgt/get/getProductsMovementsASTTQuery.hook.ts +27 -0
  537. package/src/hooks/Astt/Asgt/get/getProductsPickedASTTQuery.hook.ts +19 -0
  538. package/src/hooks/Astt/Asgt/get/getReportsBuilderASTTQuery.hook.ts +12 -0
  539. package/src/hooks/Astt/Asgt/get/getReprocessNeededASTTQuery.hook.ts +12 -0
  540. package/src/hooks/Astt/Asgt/get/getTransferAllProductsASTTQuery.hook.ts +25 -0
  541. package/src/hooks/Astt/Asgt/get/getTransferDocumentsASTTQuery.hook.ts +27 -0
  542. package/src/hooks/Astt/Asgt/get/getTransferDocumentsByIdASTTQuery.hook.ts +12 -0
  543. package/src/hooks/Astt/Asgt/get/getTransferDocumentsByPackageASTTQuery.hook.ts +13 -0
  544. package/src/hooks/Astt/Asgt/get/getTransferDocumentsPackagesASTTQuery.hook.ts +23 -0
  545. package/src/hooks/Astt/Asgt/get/getTransferReportDiffASTT.hook.ts +17 -0
  546. package/src/hooks/Astt/Asgt/mutate/autoSaveASTTQuery.hook.ts +23 -0
  547. package/src/hooks/Astt/Asgt/mutate/createPackageASTTMutateQuery.hook.ts +21 -0
  548. package/src/hooks/Astt/Asgt/mutate/createTransferASTTMutateQuery.hook.ts +15 -0
  549. package/src/hooks/Astt/Asgt/mutate/deleteProductASTTQuery.hook.ts +25 -0
  550. package/src/hooks/Astt/Asgt/mutate/finishPackageASTTQuery.hook.ts +21 -0
  551. package/src/hooks/Astt/Asgt/mutate/postMissingProductsASTTQuery.hook.ts +21 -0
  552. package/src/hooks/Astt/Asgt/mutate/postReprocessASTTQuery.hook.ts +20 -0
  553. package/src/hooks/Astt/Asgt/mutate/postRfidASGTMutateQuery.hook.ts +28 -0
  554. package/src/hooks/Astt/Asgt/mutate/postTransferDocumentsASTTMutateQuery.hook.ts +23 -0
  555. package/src/hooks/Astt/Asgt/mutate/putTransferDocumentsStateASTTMutateQuery.hook.ts +21 -0
  556. package/src/hooks/Astt/Asgt/mutate/removeProductASTTQuery.hook.ts +15 -0
  557. package/src/hooks/Astt/Asgt/mutate/restartProductASTTQuery.hook.ts +22 -0
  558. package/src/hooks/Astt/get/getBarcodesListingByPackageQuery.hook.ts +14 -0
  559. package/src/hooks/Astt/get/getBarcodesListingQuery.hook.ts +13 -0
  560. package/src/hooks/Astt/get/getBarcodesPrintQuery.hook.ts +12 -0
  561. package/src/hooks/Astt/get/getDocumentsFindByIdQuery.hook.ts +12 -0
  562. package/src/hooks/Astt/get/getManualPackagesListQuery.hook.ts +20 -0
  563. package/src/hooks/Astt/get/getProductsListingQuery.hook.ts +14 -0
  564. package/src/hooks/Astt/get/getReconciliationDocumentsQuery.hook.ts +18 -0
  565. package/src/hooks/Astt/get/getReportsBuilderQuery.hook.ts +12 -0
  566. package/src/hooks/Astt/get/getRfidQuery.hook.ts +24 -0
  567. package/src/hooks/Astt/get/getTransferAllProductsQuery.hook.ts +25 -0
  568. package/src/hooks/Astt/get/getTransferDocumentsByIdQuery.hook.ts +12 -0
  569. package/src/hooks/Astt/get/getTransferDocumentsByPackageQuery.hook.ts +13 -0
  570. package/src/hooks/Astt/get/getTransferDocumentsPackagesQuery.hook.ts +23 -0
  571. package/src/hooks/Astt/get/getTransferDocumentsQuery.hook.ts +27 -0
  572. package/src/hooks/Astt/get/getTransferReportDiff.hook.ts +17 -0
  573. package/src/hooks/Astt/get/getTransferStatesQuery.hook.ts +10 -0
  574. package/src/hooks/Astt/mutate/deleteManualPackageQuery.hook.ts +23 -0
  575. package/src/hooks/Astt/mutate/notifyMissingProductsQuery.hook.ts +36 -0
  576. package/src/hooks/Astt/mutate/postAsttActionsQuery.hook.ts +18 -0
  577. package/src/hooks/Astt/mutate/postManualPackageQuery.hook.ts +18 -0
  578. package/src/hooks/Astt/mutate/postManualTransferQuery.hook.ts +16 -0
  579. package/src/hooks/Astt/mutate/postMatchingPackageQuery.hook.ts +22 -0
  580. package/src/hooks/Astt/mutate/postTransferDocumentsMutateQuery.hook.ts +23 -0
  581. package/src/hooks/Astt/mutate/putTransferDocumentFinishQuery.hook.ts +21 -0
  582. package/src/hooks/Astt/mutate/putTransferDocumentsPartiallyQuery.hook.ts +21 -0
  583. package/src/hooks/Astt/mutate/putTransferDocumentsStateMutateQuery.hook.ts +21 -0
  584. package/src/hooks/Astt/mutate/updateDocumentIdQuery.hook.ts +23 -0
  585. package/src/hooks/Astt/mutate/updatePackageIdQuery.hook.ts +25 -0
  586. package/src/hooks/AsvProduct/get/getProductsByRefQuery.hook.ts +23 -0
  587. package/src/hooks/AsvProduct/get/getProductsByStoreQuery.hook.ts +29 -0
  588. package/src/hooks/AsvProduct/get/getProductsStockDetailsQuery.hook.ts +21 -0
  589. package/src/hooks/BigWin/get/getBwgAllEmployeesQuery.hook.ts +29 -0
  590. package/src/hooks/BigWin/get/getBwgBackOfficeQuery.hook.ts +29 -0
  591. package/src/hooks/BigWin/get/getMonthsListQuery.hook.ts +10 -0
  592. package/src/hooks/BigWin/others/importABWGQuery.hook.ts +20 -0
  593. package/src/hooks/BigWin/others/importRegulationQuery.hook.ts +15 -0
  594. package/src/hooks/BigWin/others/publishMonthsEmployeeQuery.hook.ts +19 -0
  595. package/src/hooks/BigWin/others/publishMonthsManagerQuery.hook.ts +19 -0
  596. package/src/hooks/EvaluationCycle/get/useEvaluationCycleIdQuery.hook.ts +13 -0
  597. package/src/hooks/EvaluationCycle/get/useEvaluationCycleQuery.hook.ts +29 -0
  598. package/src/hooks/EvaluationCycle/mutate/useEvaluationCycleMutateQuery.hook.ts +17 -0
  599. package/src/hooks/EvaluationCycle/others/activateEvaluationCycleQuery.hook.ts +15 -0
  600. package/src/hooks/EvaluationCycle/others/cancelEvaluationCycleQuery.hook.ts +15 -0
  601. package/src/hooks/EvaluationCycle/others/deleteEvaluationCycleQuery.hook.ts +15 -0
  602. package/src/hooks/EvaluationCycle/others/finishEvaluationCycleQuery.hook.ts +15 -0
  603. package/src/hooks/OSUA/MIMO/get/getIntegrationByName.hook.ts +19 -0
  604. package/src/hooks/OSUA/MIMO/get/getProductIntegrationHistory.hook.ts +25 -0
  605. package/src/hooks/OSUA/MIMO/get/useErrorHistory.hook.ts +21 -0
  606. package/src/hooks/OSUA/MIMO/get/useIntegrationDataQuery.hook.ts +15 -0
  607. package/src/hooks/OSUA/MIMO/mutate/postDagsAdjustStock.hook.ts +13 -0
  608. package/src/hooks/OSUA/MIMO/mutate/postIntegrationDag.hook.ts +18 -0
  609. package/src/hooks/OSUA/MIMO/mutate/postProductVendusIntegration.hook.ts +15 -0
  610. package/src/hooks/OSUA/MIMO/mutate/updateErrorHistory.hook.ts +25 -0
  611. package/src/hooks/OSUA/MIMO/mutate/updateIntegrationProcess.hook.ts +30 -0
  612. package/src/hooks/OSUA/get/documentos/getGngDocumentos.hook.ts +28 -0
  613. package/src/hooks/OSUA/get/documentos/getSitooDocumentos.hook.ts +21 -0
  614. package/src/hooks/OSUA/get/eventos/getSitooErrorEvents.hook.ts +30 -0
  615. package/src/hooks/OSUA/get/faqs/getFaqsQuery.hook.ts +33 -0
  616. package/src/hooks/OSUA/get/orders/getOrderDocuments.hook.ts +21 -0
  617. package/src/hooks/OSUA/get/queue/getQueues.hook.ts +15 -0
  618. package/src/hooks/OSUA/get/queue/getQueuesMessages.hook.ts +28 -0
  619. package/src/hooks/OSUA/get/vouchers/getGngVoucher.hook.ts +21 -0
  620. package/src/hooks/OSUA/get/vouchers/getOsuaVouchersQuery.hook.ts +27 -0
  621. package/src/hooks/OSUA/get/vouchers/getSalesNumberOsua.hook.ts +26 -0
  622. package/src/hooks/OSUA/get/vouchers/getSitooVouchers.hook.ts +22 -0
  623. package/src/hooks/OSUA/get/vouchers/getVoucherIntegrationRequestStatus.hook.ts +23 -0
  624. package/src/hooks/OSUA/mutate/activateOsuaVoucherQuery.hook.ts +24 -0
  625. package/src/hooks/OSUA/mutate/postCreateIntegrationRequest.hook.ts +28 -0
  626. package/src/hooks/OSUA/mutate/postEventsRep.hook.ts +16 -0
  627. package/src/hooks/OSUA/mutate/postQueuesMessages.hook.ts +21 -0
  628. package/src/hooks/OSUA/mutate/postVoucher.hook.ts +16 -0
  629. package/src/hooks/OSUA/mutate/putBalanceVouchers.hook.ts +25 -0
  630. package/src/hooks/OSUA/mutate/useSetIntegrationToFinished.hook.ts +21 -0
  631. package/src/hooks/Orch/get/getAuth0ConfigQuery.hook.ts +11 -0
  632. package/src/hooks/Orch/get/getInstanceByIdQuery.hook.ts +14 -0
  633. package/src/hooks/Orch/get/getInstancesQuery.hook.ts +27 -0
  634. package/src/hooks/Orch/get/getMacrosInstancesQuery.hook.ts +19 -0
  635. package/src/hooks/Orch/get/getMacrosQuery.hook.ts +27 -0
  636. package/src/hooks/Orch/get/getMacrosUserQuery.hook.ts +11 -0
  637. package/src/hooks/Orch/get/getMonitoringComponents.hook.ts +29 -0
  638. package/src/hooks/Orch/others/reprocessingInstanceQuery.hook.ts +14 -0
  639. package/src/hooks/Orch/others/runMacrosQuery.hook.ts +23 -0
  640. package/src/hooks/Orch/others/stopInstanceQuery.hook.ts +16 -0
  641. package/src/hooks/Orch/others/updateMacroStatusQuery.hook.ts +23 -0
  642. package/src/hooks/Others/Vacation/get/getVacationPlanQuery.hook.ts +20 -0
  643. package/src/hooks/Others/Vacation/get/getVacationTemplateQuery.hook.ts +11 -0
  644. package/src/hooks/Others/Vacation/others/aproveVacationPlanQuery.hook.ts +23 -0
  645. package/src/hooks/Others/Vacation/others/postVacationPlanQuery.hook.ts +20 -0
  646. package/src/hooks/Others/Vacation/others/rejectVacationPlanQuery.hook.ts +25 -0
  647. package/src/hooks/Others/changePasswordQuery.hook.ts +21 -0
  648. package/src/hooks/Others/editAllBellNotificationsStatusQuery.hook.ts +19 -0
  649. package/src/hooks/Others/editBellNotificationsStatusQuery.hook.ts +22 -0
  650. package/src/hooks/Others/editFieldsByBulkQuery.hook.ts +15 -0
  651. package/src/hooks/Others/getBellNotificationsQuery.hook.ts +28 -0
  652. package/src/hooks/Others/getNotificationTitleQuery.hook.ts +19 -0
  653. package/src/hooks/Others/getRegulationQuery.hook.ts +14 -0
  654. package/src/hooks/Others/getUserEmailStatusQuery.hook.ts +21 -0
  655. package/src/hooks/Others/getWeeklyWorkloadQuery.hook.ts +23 -0
  656. package/src/hooks/Others/oneSignalUserQuery.hook.ts +14 -0
  657. package/src/hooks/Others/postCheckoutsMutateQuery.hook.ts +15 -0
  658. package/src/hooks/Others/postUserAuthenticationQuery.hook.ts +19 -0
  659. package/src/hooks/Others/postVerifyImageQuery.hook.ts +15 -0
  660. package/src/hooks/Others/unblockUserQuery.hook.ts +14 -0
  661. package/src/hooks/Others/useApplicationDataQuery.hook.ts +10 -0
  662. package/src/hooks/Others/useContractStatesQuery.hook.ts +15 -0
  663. package/src/hooks/Others/useCountriesQuery.hook.ts +15 -0
  664. package/src/hooks/Others/useCreateNotification.hook.ts +24 -0
  665. package/src/hooks/Others/useCustomersQuery.hook.ts +40 -0
  666. package/src/hooks/Others/useJobTitlesQuery.hook.ts +17 -0
  667. package/src/hooks/Others/useRegulationQuery.hook.ts +24 -0
  668. package/src/hooks/Others/useTermNotificationQuery.hook.ts +11 -0
  669. package/src/hooks/Questionnaire/get/useQuestionnaireIdQuery.hook.ts +13 -0
  670. package/src/hooks/Questionnaire/get/useQuestionnaireQuery.hook.ts +29 -0
  671. package/src/hooks/Questionnaire/mutate/useQuestionnaireMutateQuery.hook.ts +17 -0
  672. package/src/hooks/Questionnaire/others/activateQuestionnaireQuery.hook.ts +15 -0
  673. package/src/hooks/Questionnaire/others/cancelQuestionnaireQuery.hook.ts +15 -0
  674. package/src/hooks/Questionnaire/others/deleteQuestionnaireQuery.hook.ts +15 -0
  675. package/src/hooks/Questionnaire/others/duplicateQuestionnaireQuery.hook.ts +15 -0
  676. package/src/hooks/Questionnaire/others/finishQuestionnaireQuery.hook.ts +15 -0
  677. package/src/hooks/Roles/get/useAllRolesQuery.hook.ts +30 -0
  678. package/src/hooks/Store/getLocationsByUser.hook.ts +37 -0
  679. package/src/hooks/Store/useAllStoreQuery.hook.ts +37 -0
  680. package/src/hooks/Store/useStoreByCodeQuery.hook.ts +21 -0
  681. package/src/hooks/Store/useStoreQuery.ts +13 -0
  682. package/src/hooks/Users/get/getUserAndSupervisorQuery.hook.ts +21 -0
  683. package/src/hooks/Users/get/getUsersReadmissionQuery.hook.ts +27 -0
  684. package/src/hooks/Users/get/useApplicationQuery.hook.ts +29 -0
  685. package/src/hooks/Users/get/useExpUsersAnswersQuery.hook.ts +25 -0
  686. package/src/hooks/Users/get/usePermissionByIdQuery.hook.ts +15 -0
  687. package/src/hooks/Users/get/usePermissionsQuery.hook.ts +29 -0
  688. package/src/hooks/Users/get/useSingleUserIdQuery.hook.ts +15 -0
  689. package/src/hooks/Users/get/useUserIdQuery.hook.ts +14 -0
  690. package/src/hooks/Users/get/useUserListQuery.hook.ts +27 -0
  691. package/src/hooks/Users/get/useUserQuery.hook.ts +31 -0
  692. package/src/hooks/Users/mutate/deletePermissionMutateQuery.hook.ts +15 -0
  693. package/src/hooks/Users/mutate/useSingleUserIdMutateQuery.hook.ts +18 -0
  694. package/src/hooks/Users/mutate/useUpdatePermissionsMutateQuery.hook.ts +17 -0
  695. package/src/hooks/Users/mutate/useUpdateSupervisorMutateQuery.hook.ts +27 -0
  696. package/src/hooks/Users/others/useSingleUserResetPassword.hook.ts +18 -0
  697. package/src/hooks/Users/others/useUserBlockQuery.hook.ts +15 -0
  698. package/src/hooks/Users/others/useUserEmailVerifQuery.hook.ts +15 -0
  699. package/src/hooks/Users/others/useUserResetPassByEmail.hook.ts +14 -0
  700. package/src/hooks/Watson/get/getCloseSession.hook.ts +15 -0
  701. package/src/hooks/Watson/mutate/mutateCloseSession.hook.ts +18 -0
  702. package/src/hooks/Watson/mutate/mutateNotificationRequest.hook.ts +18 -0
  703. package/src/hooks/WidgetPicaPonto/get/getAttendanceIssuesByIdQuery.hook.ts +15 -0
  704. package/src/hooks/WidgetPicaPonto/get/getAttendanceIssuesQuery.hook.ts +27 -0
  705. package/src/hooks/WidgetPicaPonto/get/getCriticaliesQuery.hook.ts +27 -0
  706. package/src/hooks/WidgetPicaPonto/get/getReasonCodesQuery.hook.ts +27 -0
  707. package/src/hooks/WidgetPicaPonto/get/getSchedulesStoresQuery.hook.ts +28 -0
  708. package/src/hooks/WidgetPicaPonto/mutate/useAttendanceIssuesQuery.hook.ts +18 -0
  709. package/src/hooks/index.ts +505 -0
  710. package/src/index.ts +12 -0
  711. package/src/interfaces/ACB.ts +21 -0
  712. package/src/interfaces/ASAECustomer.ts +28 -0
  713. package/src/interfaces/Acls.ts +84 -0
  714. package/src/interfaces/Actions.ts +20 -0
  715. package/src/interfaces/AnalyticsEvaluationCycle.ts +24 -0
  716. package/src/interfaces/AnalyticsUserId.ts +14 -0
  717. package/src/interfaces/Anot.ts +79 -0
  718. package/src/interfaces/Answer.ts +14 -0
  719. package/src/interfaces/AnswerType.ts +22 -0
  720. package/src/interfaces/AnswersUserSupervisor.ts +45 -0
  721. package/src/interfaces/ApplicationsByCategory.ts +19 -0
  722. package/src/interfaces/AstaQuestions.ts +10 -0
  723. package/src/interfaces/AstsStock.ts +17 -0
  724. package/src/interfaces/AstsStockInfo.ts +14 -0
  725. package/src/interfaces/AsttReconciliationDocuments.ts +32 -0
  726. package/src/interfaces/AsvProductsByReference.ts +14 -0
  727. package/src/interfaces/AsvProductsByStore.ts +13 -0
  728. package/src/interfaces/AsvProductsStockDetails.ts +20 -0
  729. package/src/interfaces/Atim.ts +123 -0
  730. package/src/interfaces/AtimScheduling.ts +64 -0
  731. package/src/interfaces/AttendanceIssues.ts +20 -0
  732. package/src/interfaces/Auth0Config.ts +6 -0
  733. package/src/interfaces/BellNotification.ts +17 -0
  734. package/src/interfaces/Brand.ts +5 -0
  735. package/src/interfaces/Bulk.ts +11 -0
  736. package/src/interfaces/Bwg.ts +25 -0
  737. package/src/interfaces/Cart.ts +14 -0
  738. package/src/interfaces/Checkout.ts +15 -0
  739. package/src/interfaces/Configuration.ts +8 -0
  740. package/src/interfaces/ContractStates.ts +7 -0
  741. package/src/interfaces/Countries.ts +10 -0
  742. package/src/interfaces/CreateNotification.ts +18 -0
  743. package/src/interfaces/Customer.ts +23 -0
  744. package/src/interfaces/CustomerHistory.ts +11 -0
  745. package/src/interfaces/CustomerVoucher.ts +12 -0
  746. package/src/interfaces/Employee.ts +18 -0
  747. package/src/interfaces/EvaluationCycle.ts +34 -0
  748. package/src/interfaces/ExpUsersAnswers.ts +16 -0
  749. package/src/interfaces/FlowExecution.ts +33 -0
  750. package/src/interfaces/FlowList.ts +32 -0
  751. package/src/interfaces/GetMonths.ts +8 -0
  752. package/src/interfaces/Inspection.ts +22 -0
  753. package/src/interfaces/Instances.ts +25 -0
  754. package/src/interfaces/JobTitles.ts +7 -0
  755. package/src/interfaces/MIMO.ts +19 -0
  756. package/src/interfaces/MacroInstance.ts +11 -0
  757. package/src/interfaces/Macros.ts +19 -0
  758. package/src/interfaces/MonitoringComponent.ts +6 -0
  759. package/src/interfaces/NotificationTitle.ts +8 -0
  760. package/src/interfaces/OSUA.ts +364 -0
  761. package/src/interfaces/Permissions.ts +16 -0
  762. package/src/interfaces/PriceChange.ts +7 -0
  763. package/src/interfaces/Product.ts +17 -0
  764. package/src/interfaces/ProductsHierarchies.ts +6 -0
  765. package/src/interfaces/ProductsPickedTransfers.ts +13 -0
  766. package/src/interfaces/Questionnaire.ts +39 -0
  767. package/src/interfaces/ReasonCodes.ts +9 -0
  768. package/src/interfaces/ReportBuilder.ts +5 -0
  769. package/src/interfaces/ResponseList.ts +7 -0
  770. package/src/interfaces/Responses.ts +50 -0
  771. package/src/interfaces/Rfid.ts +10 -0
  772. package/src/interfaces/Roles.ts +5 -0
  773. package/src/interfaces/Store.ts +35 -0
  774. package/src/interfaces/TagsFlow.ts +5 -0
  775. package/src/interfaces/Template.ts +33 -0
  776. package/src/interfaces/TermNotification.ts +6 -0
  777. package/src/interfaces/TimeKeeping.ts +7 -0
  778. package/src/interfaces/TransferAllProducts.ts +39 -0
  779. package/src/interfaces/TransferDocumentState.ts +5 -0
  780. package/src/interfaces/TransferDocuments.ts +62 -0
  781. package/src/interfaces/TransferPackage.ts +19 -0
  782. package/src/interfaces/TransferPickProducts.ts +34 -0
  783. package/src/interfaces/TransferReportDiff.ts +9 -0
  784. package/src/interfaces/TransferStates.ts +8 -0
  785. package/src/interfaces/User.ts +75 -0
  786. package/src/interfaces/UserAuthentication.ts +7 -0
  787. package/src/interfaces/UserEmailStatus.ts +14 -0
  788. package/src/interfaces/VacationPlan.ts +13 -0
  789. package/src/interfaces/VerifyImage.ts +49 -0
  790. package/src/interfaces/VerifyUser.ts +5 -0
  791. package/src/interfaces/Watson.ts +76 -0
  792. package/src/interfaces/Workload.ts +8 -0
  793. package/src/interfaces/index.ts +81 -0
  794. package/src/services/ApiService/index.ts +185 -0
  795. package/src/services/InitService/index.ts +7 -0
  796. package/src/services/index.ts +3 -0
  797. package/src/types/Global.d.ts +4 -0
  798. package/tsconfig.json +27 -0
  799. package/webpack.config.js +60 -0
  800. package/dist/components/SharedContextProvider/index.d.ts +0 -8
  801. package/dist/components/index.d.ts +0 -1
  802. package/dist/constants/QueryClient.d.ts +0 -3
  803. package/dist/constants/index.d.ts +0 -1
  804. package/dist/contexts/useStore.d.ts +0 -9
  805. package/dist/helpers/codeMutation.d.ts +0 -4
  806. package/dist/helpers/date-unix.helper.d.ts +0 -6
  807. package/dist/helpers/getChildrenByType.helper.d.ts +0 -3
  808. package/dist/hooks/ACB/get/getClientBalance.hook.d.ts +0 -8
  809. package/dist/hooks/ACB/mutate/postClientBalance.hook.d.ts +0 -3
  810. package/dist/hooks/ASAEGNG/get/getCustomerHistoryQuery.hook.d.ts +0 -11
  811. package/dist/hooks/ASAEGNG/get/getCustomerVouchersQuery.hook.d.ts +0 -11
  812. package/dist/hooks/ASAEGNG/get/getCustomersQuery.hook.d.ts +0 -13
  813. package/dist/hooks/ATIM/BackOffice/get/useAbsenceTypes.hook.d.ts +0 -11
  814. package/dist/hooks/ATIM/BackOffice/get/useAttendancesSummary.hook.d.ts +0 -11
  815. package/dist/hooks/ATIM/BackOffice/get/useAttendancesSummarySearch.hook.d.ts +0 -14
  816. package/dist/hooks/ATIM/BackOffice/get/useEmployeeQueryHook.hook.d.ts +0 -12
  817. package/dist/hooks/ATIM/BackOffice/get/useEmployeeWorklogDetails.hook.d.ts +0 -14
  818. package/dist/hooks/ATIM/BackOffice/get/useEmployeesQuery.hook.d.ts +0 -12
  819. package/dist/hooks/ATIM/BackOffice/get/useKPIsQuery.hook.d.ts +0 -12
  820. package/dist/hooks/ATIM/BackOffice/get/useSchedulePeriodQuery.hook.d.ts +0 -3
  821. package/dist/hooks/ATIM/BackOffice/get/useSchedulePeriodTypesQuery.hook.d.ts +0 -11
  822. package/dist/hooks/ATIM/BackOffice/get/useSchedulesQuery.hook.d.ts +0 -9
  823. package/dist/hooks/ATIM/BackOffice/get/useStoresQueryHook.hook.d.ts +0 -12
  824. package/dist/hooks/ATIM/BackOffice/get/useWorkMonths.hook.d.ts +0 -10
  825. package/dist/hooks/ATIM/BackOffice/get/useWorkWeekSchedule.hook.d.ts +0 -10
  826. package/dist/hooks/ATIM/BackOffice/mutate/postAttendanceRange.hook.d.ts +0 -3
  827. package/dist/hooks/ATIM/BackOffice/mutate/useAttendancesById.hook.d.ts +0 -3
  828. package/dist/hooks/ATIM/BackOffice/mutate/useScheduleMutateQuery.hook.d.ts +0 -3
  829. package/dist/hooks/ATIM/BackOffice/mutate/useUpdateAttendancesSummary.hook.d.ts +0 -3
  830. package/dist/hooks/ATIM/PicaPonto/get/getEmployeesWithTimekeeping.hook.d.ts +0 -14
  831. package/dist/hooks/ATIM/PicaPonto/mutate/postAttendance.hook.d.ts +0 -3
  832. package/dist/hooks/ATIM/PicaPonto/mutate/postTogglePinCode.d.ts +0 -11
  833. package/dist/hooks/ATIM/PicaPonto/mutate/postVerifyUserQuery.hook.d.ts +0 -3
  834. package/dist/hooks/Acls/get/getCustomersLoyaltyQuery.hook.d.ts +0 -9
  835. package/dist/hooks/Acls/get/getVoucherLoyaltyQuery.hook.d.ts +0 -9
  836. package/dist/hooks/Acls/get/getVoucherSitooQuery.hook.d.ts +0 -9
  837. package/dist/hooks/Acls/get/getVoucherTemplatesQuery.hook.d.ts +0 -10
  838. package/dist/hooks/Acls/mutate/postCreateVoucherTemplates.hook.d.ts +0 -3
  839. package/dist/hooks/Acls/mutate/postSaldoVoucherQuery.hook.d.ts +0 -8
  840. package/dist/hooks/Acls/mutate/postSalesAssociationQuery.hook.d.ts +0 -7
  841. package/dist/hooks/Acls/mutate/postVerificationEmailQuery.hook.d.ts +0 -8
  842. package/dist/hooks/Acls/mutate/postVerificationUserQuery.hook.d.ts +0 -8
  843. package/dist/hooks/Acls/mutate/postVoucherSitooQuery.hook.d.ts +0 -8
  844. package/dist/hooks/Acls/mutate/reactivateVoucherQuery.hook.d.ts +0 -8
  845. package/dist/hooks/Acls/mutate/updateDisabledVoucherTemplates.hook.d.ts +0 -3
  846. package/dist/hooks/Aexp/get/getFlowExecutionByIdQuery.hook.d.ts +0 -4
  847. package/dist/hooks/Aexp/get/getFlowExecutionQuery.hook.d.ts +0 -13
  848. package/dist/hooks/Aexp/get/getFlowListByIdQuery.hook.d.ts +0 -4
  849. package/dist/hooks/Aexp/get/getFlowListQuery.hook.d.ts +0 -14
  850. package/dist/hooks/Aexp/get/getTagsFlowQuery.hook.d.ts +0 -4
  851. package/dist/hooks/Aexp/mutate/deleteFlowConfigurationQuery.hook.d.ts +0 -3
  852. package/dist/hooks/Aexp/mutate/inactivateFlowConfigurationQuery.hook.d.ts +0 -3
  853. package/dist/hooks/Aexp/mutate/runFlowExecutionQuery.hook.d.ts +0 -3
  854. package/dist/hooks/Aexp/mutate/useFlowConfigurationQuery.hook.d.ts +0 -3
  855. package/dist/hooks/Aexp/mutate/useFlowExecutionQuery.hook.d.ts +0 -3
  856. package/dist/hooks/Aexp/mutate/validateExecutionFileQuery.hook.d.ts +0 -3
  857. package/dist/hooks/Analytics/get/getArchivedAnalyticsQuery.hook.d.ts +0 -14
  858. package/dist/hooks/Analytics/get/useAnalyticsEvaluationCyclesQuery.hook.d.ts +0 -8
  859. package/dist/hooks/Analytics/get/useAnalyticsQuestionsQuery.hook.d.ts +0 -10
  860. package/dist/hooks/Analytics/get/useAnalyticsSideBarQuery.hook.d.ts +0 -8
  861. package/dist/hooks/Analytics/get/useAnalyticsUserIdQuery.hook.d.ts +0 -14
  862. package/dist/hooks/Analytics/get/useAnalyticsUserQuery.hook.d.ts +0 -15
  863. package/dist/hooks/Anot/get/getNotificationApplicationsQuery.hook.d.ts +0 -5
  864. package/dist/hooks/Anot/get/getNotificationCriticalitiesQuery.hook.d.ts +0 -5
  865. package/dist/hooks/Anot/get/getNotificationHeadersQuery.hook.d.ts +0 -18
  866. package/dist/hooks/Anot/get/getNotificationLanguagesQuery.hook.d.ts +0 -7
  867. package/dist/hooks/Anot/get/getNotificationTypeByIdQuery.hook.d.ts +0 -4
  868. package/dist/hooks/Anot/get/getNotificationsQuery.hook.d.ts +0 -14
  869. package/dist/hooks/Anot/get/getNotificationsTypeQuery.hook.d.ts +0 -13
  870. package/dist/hooks/Anot/mutate/useNotificationTypeQuery.hook.d.ts +0 -3
  871. package/dist/hooks/Answer/get/useAnswerIdQuery.hook.d.ts +0 -3
  872. package/dist/hooks/Answer/get/useAnswersUserSupervisorQuery.hook.d.ts +0 -8
  873. package/dist/hooks/Answer/mutate/useAnswerMutateQuery.hook.d.ts +0 -10
  874. package/dist/hooks/Answer/others/openAnswerQuery.hook.d.ts +0 -3
  875. package/dist/hooks/Answer/others/postAnswersExportQuery.hook.d.ts +0 -9
  876. package/dist/hooks/Answer/others/showAnswerQuery.hook.d.ts +0 -3
  877. package/dist/hooks/AprProduct/get/useProductHierarchies.hook.d.ts +0 -8
  878. package/dist/hooks/AprProduct/get/useProductRecommendations.hook.d.ts +0 -12
  879. package/dist/hooks/AprProduct/get/useProductsByRefQuery.hook.d.ts +0 -8
  880. package/dist/hooks/AprProduct/get/useProductsQuery.hook.d.ts +0 -145
  881. package/dist/hooks/Aprc/get/getPriceChangePinQuery.hook.d.ts +0 -6
  882. package/dist/hooks/Aprc/others/postPriceChangePinQuery.hook.d.ts +0 -7
  883. package/dist/hooks/Aprc/others/sendEmailWithPinQuery.hook.d.ts +0 -7
  884. package/dist/hooks/Asgt/get/getIdProductsPickedASGTQuery.hook.d.ts +0 -3
  885. package/dist/hooks/Asgt/get/getProductWarningASGTQuery.hook.d.ts +0 -12
  886. package/dist/hooks/Asgt/get/getProductsListingASGTQuery.hook.d.ts +0 -4
  887. package/dist/hooks/Asgt/get/getProductsMovementsASGTQuery.hook.d.ts +0 -12
  888. package/dist/hooks/Asgt/get/getProductsPickedASGTQuery.hook.d.ts +0 -7
  889. package/dist/hooks/Asgt/get/getReportsBuilderASGTQuery.hook.d.ts +0 -4
  890. package/dist/hooks/Asgt/get/getTransferAllProductsASGTQuery.hook.d.ts +0 -11
  891. package/dist/hooks/Asgt/get/getTransferDocumentsASGTQuery.hook.d.ts +0 -12
  892. package/dist/hooks/Asgt/get/getTransferDocumentsByIdASGTQuery.hook.d.ts +0 -4
  893. package/dist/hooks/Asgt/get/getTransferDocumentsByPackageASGTQuery.hook.d.ts +0 -4
  894. package/dist/hooks/Asgt/get/getTransferDocumentsPackagesASGTQuery.hook.d.ts +0 -10
  895. package/dist/hooks/Asgt/get/getTransferReportDiffASGT.hook.d.ts +0 -13
  896. package/dist/hooks/Asgt/mutate/autoSaveASGTQuery.hook.d.ts +0 -8
  897. package/dist/hooks/Asgt/mutate/createPackageASGTMutateQuery.hook.d.ts +0 -7
  898. package/dist/hooks/Asgt/mutate/createTransferASGTMutateQuery.hook.d.ts +0 -3
  899. package/dist/hooks/Asgt/mutate/postTransferDocumentsASGTMutateQuery.hook.d.ts +0 -8
  900. package/dist/hooks/Asgt/mutate/putTransferDocumentsStateASGTMutateQuery.hook.d.ts +0 -7
  901. package/dist/hooks/Asgt/mutate/removeProductASGTQuery.hook.d.ts +0 -3
  902. package/dist/hooks/Ass/get/getAssProductsByRefQuery.hook.d.ts +0 -9
  903. package/dist/hooks/Ass/get/getAssProductsByStoreQuery.hook.d.ts +0 -12
  904. package/dist/hooks/Ass/get/getAssProductsStockDetailsQuery.hook.d.ts +0 -8
  905. package/dist/hooks/Asta/Actions/get/getActionByIdQuery.hook.d.ts +0 -3
  906. package/dist/hooks/Asta/Actions/get/getActionPriorityQuery.hook.d.ts +0 -3
  907. package/dist/hooks/Asta/Actions/get/getActionQuery.hook.d.ts +0 -12
  908. package/dist/hooks/Asta/Actions/get/getActionStagesQuery.hook.d.ts +0 -3
  909. package/dist/hooks/Asta/Actions/mutate/useActionMutateQuery.hook.d.ts +0 -3
  910. package/dist/hooks/Asta/Actions/others/archiveActionQuery.hook.d.ts +0 -7
  911. package/dist/hooks/Asta/Actions/others/deleteActionQuery.hook.d.ts +0 -7
  912. package/dist/hooks/Asta/Actions/others/extractActionQuery.hook.d.ts +0 -7
  913. package/dist/hooks/Asta/Actions/others/finishActionQuery.hook.d.ts +0 -3
  914. package/dist/hooks/Asta/Actions/others/selectActionStatusQuery.hook.d.ts +0 -3
  915. package/dist/hooks/Asta/Actions/others/startActionQuery.hook.d.ts +0 -3
  916. package/dist/hooks/Asta/Answer/get/getAstaAnswerByIdQuery.hook.d.ts +0 -3
  917. package/dist/hooks/Asta/Answer/get/getAstaAnswerQuery.hook.d.ts +0 -12
  918. package/dist/hooks/Asta/Answer/mutate/useAstaAnswersMutateQuery.hook.d.ts +0 -3
  919. package/dist/hooks/Asta/Answer/others/finishAstaAnswersQuery.hook.d.ts +0 -3
  920. package/dist/hooks/Asta/Answer/others/finishGNGAstaAnswersQuery.hook.d.ts +0 -3
  921. package/dist/hooks/Asta/Answer/others/putAnswerImageQuery.hook.d.ts +0 -3
  922. package/dist/hooks/Asta/Answer/others/sendInspectionEmailQuery.hook.d.ts +0 -3
  923. package/dist/hooks/Asta/Answer/others/sendInspectionEmailStoreQuery.hook.d.ts +0 -3
  924. package/dist/hooks/Asta/AnswerType/get/getAllAnswerTypeQuery.hook.d.ts +0 -12
  925. package/dist/hooks/Asta/AnswerType/get/getAnswerColorsQuery.hook.d.ts +0 -3
  926. package/dist/hooks/Asta/AnswerType/get/getAnswerTypeByIdQuery.hook.d.ts +0 -3
  927. package/dist/hooks/Asta/AnswerType/get/getAnswerTypeQuery.hook.d.ts +0 -3
  928. package/dist/hooks/Asta/AnswerType/mutate/useAnswerTypeMutateQuery.hook.d.ts +0 -3
  929. package/dist/hooks/Asta/AnswerType/others/deleteAnswerTypeQuery.hook.d.ts +0 -7
  930. package/dist/hooks/Asta/AnswerType/others/finishAnswerTypeQuery.hook.d.ts +0 -3
  931. package/dist/hooks/Asta/AnswerType/others/selectAnswerNameQuery.hook.d.ts +0 -3
  932. package/dist/hooks/Asta/Inspection/get/getInspectionQuery.hook.d.ts +0 -12
  933. package/dist/hooks/Asta/Inspection/mutate/useInspectionMutateQuery.hook.d.ts +0 -3
  934. package/dist/hooks/Asta/Inspection/others/archiveTemplateQuery.hook.d.ts +0 -7
  935. package/dist/hooks/Asta/Inspection/others/deleteInspectionQuery.hook.d.ts +0 -7
  936. package/dist/hooks/Asta/Inspection/others/exportInspectionQuery.hook.d.ts +0 -3
  937. package/dist/hooks/Asta/Inspection/others/extractTemplateQuery.hook.d.ts +0 -7
  938. package/dist/hooks/Asta/Inspection/others/finishInspectionQuery.hook.d.ts +0 -3
  939. package/dist/hooks/Asta/Template/get/getTemplateByIdQuery.hook.d.ts +0 -3
  940. package/dist/hooks/Asta/Template/get/getTemplateHeadersQuery.hook.d.ts +0 -3
  941. package/dist/hooks/Asta/Template/get/getTemplateQuery.hook.d.ts +0 -12
  942. package/dist/hooks/Asta/Template/mutate/useTemplateMutateQuery.hook.d.ts +0 -3
  943. package/dist/hooks/Asta/Template/others/archiveTemplateQuery.hook.d.ts +0 -7
  944. package/dist/hooks/Asta/Template/others/deleteTemplateQuery.hook.d.ts +0 -7
  945. package/dist/hooks/Asta/Template/others/duplicateTemplateQuery.hook.d.ts +0 -7
  946. package/dist/hooks/Asta/Template/others/extractTemplateQuery.hook.d.ts +0 -7
  947. package/dist/hooks/Asta/Template/others/finishTemplateQuery.hook.d.ts +0 -3
  948. package/dist/hooks/Asts/get/getProductInfoQuery.hook.d.ts +0 -16
  949. package/dist/hooks/Asts/get/getStockQuery.hook.d.ts +0 -8
  950. package/dist/hooks/Asts/others/postAudioFileQuery.hook.d.ts +0 -1
  951. package/dist/hooks/Astt/Asgt/get/getAllAdidasProductsQuery.hook.d.ts +0 -11
  952. package/dist/hooks/Astt/Asgt/get/getIdProductsPickedASTTQuery.hook.d.ts +0 -3
  953. package/dist/hooks/Astt/Asgt/get/getProductWarningASTTQuery.hook.d.ts +0 -12
  954. package/dist/hooks/Astt/Asgt/get/getProductsListingASTTQuery.hook.d.ts +0 -4
  955. package/dist/hooks/Astt/Asgt/get/getProductsMovementsASTTQuery.hook.d.ts +0 -12
  956. package/dist/hooks/Astt/Asgt/get/getProductsPickedASTTQuery.hook.d.ts +0 -7
  957. package/dist/hooks/Astt/Asgt/get/getReportsBuilderASTTQuery.hook.d.ts +0 -4
  958. package/dist/hooks/Astt/Asgt/get/getReprocessNeededASTTQuery.hook.d.ts +0 -3
  959. package/dist/hooks/Astt/Asgt/get/getTransferAllProductsASTTQuery.hook.d.ts +0 -11
  960. package/dist/hooks/Astt/Asgt/get/getTransferDocumentsASTTQuery.hook.d.ts +0 -12
  961. package/dist/hooks/Astt/Asgt/get/getTransferDocumentsByIdASTTQuery.hook.d.ts +0 -4
  962. package/dist/hooks/Astt/Asgt/get/getTransferDocumentsByPackageASTTQuery.hook.d.ts +0 -4
  963. package/dist/hooks/Astt/Asgt/get/getTransferDocumentsPackagesASTTQuery.hook.d.ts +0 -10
  964. package/dist/hooks/Astt/Asgt/get/getTransferReportDiffASTT.hook.d.ts +0 -13
  965. package/dist/hooks/Astt/Asgt/mutate/autoSaveASTTQuery.hook.d.ts +0 -8
  966. package/dist/hooks/Astt/Asgt/mutate/createPackageASTTMutateQuery.hook.d.ts +0 -7
  967. package/dist/hooks/Astt/Asgt/mutate/createTransferASTTMutateQuery.hook.d.ts +0 -3
  968. package/dist/hooks/Astt/Asgt/mutate/deleteProductASTTQuery.hook.d.ts +0 -9
  969. package/dist/hooks/Astt/Asgt/mutate/finishPackageASTTQuery.hook.d.ts +0 -7
  970. package/dist/hooks/Astt/Asgt/mutate/postMissingProductsASTTQuery.hook.d.ts +0 -7
  971. package/dist/hooks/Astt/Asgt/mutate/postReprocessASTTQuery.hook.d.ts +0 -6
  972. package/dist/hooks/Astt/Asgt/mutate/postRfidASGTMutateQuery.hook.d.ts +0 -11
  973. package/dist/hooks/Astt/Asgt/mutate/postTransferDocumentsASTTMutateQuery.hook.d.ts +0 -8
  974. package/dist/hooks/Astt/Asgt/mutate/putTransferDocumentsStateASTTMutateQuery.hook.d.ts +0 -7
  975. package/dist/hooks/Astt/Asgt/mutate/removeProductASTTQuery.hook.d.ts +0 -3
  976. package/dist/hooks/Astt/Asgt/mutate/restartProductASTTQuery.hook.d.ts +0 -7
  977. package/dist/hooks/Astt/get/getBarcodesListingByPackageQuery.hook.d.ts +0 -4
  978. package/dist/hooks/Astt/get/getBarcodesListingQuery.hook.d.ts +0 -4
  979. package/dist/hooks/Astt/get/getBarcodesPrintQuery.hook.d.ts +0 -4
  980. package/dist/hooks/Astt/get/getDocumentsFindByIdQuery.hook.d.ts +0 -4
  981. package/dist/hooks/Astt/get/getManualPackagesListQuery.hook.d.ts +0 -8
  982. package/dist/hooks/Astt/get/getProductsListingQuery.hook.d.ts +0 -4
  983. package/dist/hooks/Astt/get/getReconciliationDocumentsQuery.hook.d.ts +0 -8
  984. package/dist/hooks/Astt/get/getReportsBuilderQuery.hook.d.ts +0 -4
  985. package/dist/hooks/Astt/get/getRfidQuery.hook.d.ts +0 -10
  986. package/dist/hooks/Astt/get/getTransferAllProductsQuery.hook.d.ts +0 -11
  987. package/dist/hooks/Astt/get/getTransferDocumentsByIdQuery.hook.d.ts +0 -4
  988. package/dist/hooks/Astt/get/getTransferDocumentsByPackageQuery.hook.d.ts +0 -4
  989. package/dist/hooks/Astt/get/getTransferDocumentsPackagesQuery.hook.d.ts +0 -10
  990. package/dist/hooks/Astt/get/getTransferDocumentsQuery.hook.d.ts +0 -12
  991. package/dist/hooks/Astt/get/getTransferReportDiff.hook.d.ts +0 -13
  992. package/dist/hooks/Astt/get/getTransferStatesQuery.hook.d.ts +0 -3
  993. package/dist/hooks/Astt/mutate/deleteManualPackageQuery.hook.d.ts +0 -7
  994. package/dist/hooks/Astt/mutate/notifyMissingProductsQuery.hook.d.ts +0 -15
  995. package/dist/hooks/Astt/mutate/postAsttActionsQuery.hook.d.ts +0 -1
  996. package/dist/hooks/Astt/mutate/postManualPackageQuery.hook.d.ts +0 -3
  997. package/dist/hooks/Astt/mutate/postManualTransferQuery.hook.d.ts +0 -3
  998. package/dist/hooks/Astt/mutate/postMatchingPackageQuery.hook.d.ts +0 -7
  999. package/dist/hooks/Astt/mutate/postTransferDocumentsMutateQuery.hook.d.ts +0 -8
  1000. package/dist/hooks/Astt/mutate/putTransferDocumentFinishQuery.hook.d.ts +0 -7
  1001. package/dist/hooks/Astt/mutate/putTransferDocumentsPartiallyQuery.hook.d.ts +0 -7
  1002. package/dist/hooks/Astt/mutate/putTransferDocumentsStateMutateQuery.hook.d.ts +0 -7
  1003. package/dist/hooks/Astt/mutate/updateDocumentIdQuery.hook.d.ts +0 -8
  1004. package/dist/hooks/Astt/mutate/updatePackageIdQuery.hook.d.ts +0 -9
  1005. package/dist/hooks/AsvProduct/get/getProductsByRefQuery.hook.d.ts +0 -9
  1006. package/dist/hooks/AsvProduct/get/getProductsByStoreQuery.hook.d.ts +0 -12
  1007. package/dist/hooks/AsvProduct/get/getProductsStockDetailsQuery.hook.d.ts +0 -8
  1008. package/dist/hooks/BigWin/get/getBwgAllEmployeesQuery.hook.d.ts +0 -13
  1009. package/dist/hooks/BigWin/get/getBwgBackOfficeQuery.hook.d.ts +0 -13
  1010. package/dist/hooks/BigWin/get/getMonthsListQuery.hook.d.ts +0 -3
  1011. package/dist/hooks/BigWin/others/importABWGQuery.hook.d.ts +0 -3
  1012. package/dist/hooks/BigWin/others/importRegulationQuery.hook.d.ts +0 -3
  1013. package/dist/hooks/BigWin/others/publishMonthsEmployeeQuery.hook.d.ts +0 -3
  1014. package/dist/hooks/BigWin/others/publishMonthsManagerQuery.hook.d.ts +0 -3
  1015. package/dist/hooks/EvaluationCycle/get/useEvaluationCycleIdQuery.hook.d.ts +0 -3
  1016. package/dist/hooks/EvaluationCycle/get/useEvaluationCycleQuery.hook.d.ts +0 -12
  1017. package/dist/hooks/EvaluationCycle/mutate/useEvaluationCycleMutateQuery.hook.d.ts +0 -3
  1018. package/dist/hooks/EvaluationCycle/others/activateEvaluationCycleQuery.hook.d.ts +0 -3
  1019. package/dist/hooks/EvaluationCycle/others/cancelEvaluationCycleQuery.hook.d.ts +0 -3
  1020. package/dist/hooks/EvaluationCycle/others/deleteEvaluationCycleQuery.hook.d.ts +0 -3
  1021. package/dist/hooks/EvaluationCycle/others/finishEvaluationCycleQuery.hook.d.ts +0 -3
  1022. package/dist/hooks/OSUA/MIMO/get/getIntegrationByName.hook.d.ts +0 -7
  1023. package/dist/hooks/OSUA/MIMO/get/getProductIntegrationHistory.hook.d.ts +0 -10
  1024. package/dist/hooks/OSUA/MIMO/get/useErrorHistory.hook.d.ts +0 -8
  1025. package/dist/hooks/OSUA/MIMO/get/useIntegrationDataQuery.hook.d.ts +0 -3
  1026. package/dist/hooks/OSUA/MIMO/mutate/postDagsAdjustStock.hook.d.ts +0 -1
  1027. package/dist/hooks/OSUA/MIMO/mutate/postIntegrationDag.hook.d.ts +0 -5
  1028. package/dist/hooks/OSUA/MIMO/mutate/postProductVendusIntegration.hook.d.ts +0 -3
  1029. package/dist/hooks/OSUA/MIMO/mutate/updateErrorHistory.hook.d.ts +0 -3
  1030. package/dist/hooks/OSUA/MIMO/mutate/updateIntegrationProcess.hook.d.ts +0 -7
  1031. package/dist/hooks/OSUA/get/documentos/getGngDocumentos.hook.d.ts +0 -10
  1032. package/dist/hooks/OSUA/get/documentos/getSitooDocumentos.hook.d.ts +0 -9
  1033. package/dist/hooks/OSUA/get/eventos/getSitooErrorEvents.hook.d.ts +0 -11
  1034. package/dist/hooks/OSUA/get/faqs/getFaqsQuery.hook.d.ts +0 -12
  1035. package/dist/hooks/OSUA/get/orders/getOrderDocuments.hook.d.ts +0 -10
  1036. package/dist/hooks/OSUA/get/queue/getQueues.hook.d.ts +0 -3
  1037. package/dist/hooks/OSUA/get/queue/getQueuesMessages.hook.d.ts +0 -10
  1038. package/dist/hooks/OSUA/get/vouchers/getGngVoucher.hook.d.ts +0 -10
  1039. package/dist/hooks/OSUA/get/vouchers/getOsuaVouchersQuery.hook.d.ts +0 -13
  1040. package/dist/hooks/OSUA/get/vouchers/getSalesNumberOsua.hook.d.ts +0 -14
  1041. package/dist/hooks/OSUA/get/vouchers/getSitooVouchers.hook.d.ts +0 -8
  1042. package/dist/hooks/OSUA/get/vouchers/getVoucherIntegrationRequestStatus.hook.d.ts +0 -9
  1043. package/dist/hooks/OSUA/mutate/activateOsuaVoucherQuery.hook.d.ts +0 -11
  1044. package/dist/hooks/OSUA/mutate/postCreateIntegrationRequest.hook.d.ts +0 -11
  1045. package/dist/hooks/OSUA/mutate/postEventsRep.hook.d.ts +0 -1
  1046. package/dist/hooks/OSUA/mutate/postQueuesMessages.hook.d.ts +0 -7
  1047. package/dist/hooks/OSUA/mutate/postVoucher.hook.d.ts +0 -3
  1048. package/dist/hooks/OSUA/mutate/putBalanceVouchers.hook.d.ts +0 -7
  1049. package/dist/hooks/OSUA/mutate/useSetIntegrationToFinished.hook.d.ts +0 -3
  1050. package/dist/hooks/Orch/get/getAuth0ConfigQuery.hook.d.ts +0 -3
  1051. package/dist/hooks/Orch/get/getInstanceByIdQuery.hook.d.ts +0 -4
  1052. package/dist/hooks/Orch/get/getInstancesQuery.hook.d.ts +0 -13
  1053. package/dist/hooks/Orch/get/getMacrosInstancesQuery.hook.d.ts +0 -9
  1054. package/dist/hooks/Orch/get/getMacrosQuery.hook.d.ts +0 -13
  1055. package/dist/hooks/Orch/get/getMacrosUserQuery.hook.d.ts +0 -4
  1056. package/dist/hooks/Orch/get/getMonitoringComponents.hook.d.ts +0 -14
  1057. package/dist/hooks/Orch/others/reprocessingInstanceQuery.hook.d.ts +0 -1
  1058. package/dist/hooks/Orch/others/runMacrosQuery.hook.d.ts +0 -7
  1059. package/dist/hooks/Orch/others/stopInstanceQuery.hook.d.ts +0 -1
  1060. package/dist/hooks/Orch/others/updateMacroStatusQuery.hook.d.ts +0 -7
  1061. package/dist/hooks/Others/Vacation/get/getVacationPlanQuery.hook.d.ts +0 -10
  1062. package/dist/hooks/Others/Vacation/get/getVacationTemplateQuery.hook.d.ts +0 -3
  1063. package/dist/hooks/Others/Vacation/others/aproveVacationPlanQuery.hook.d.ts +0 -9
  1064. package/dist/hooks/Others/Vacation/others/postVacationPlanQuery.hook.d.ts +0 -8
  1065. package/dist/hooks/Others/Vacation/others/rejectVacationPlanQuery.hook.d.ts +0 -10
  1066. package/dist/hooks/Others/changePasswordQuery.hook.d.ts +0 -5
  1067. package/dist/hooks/Others/editAllBellNotificationsStatusQuery.hook.d.ts +0 -7
  1068. package/dist/hooks/Others/editBellNotificationsStatusQuery.hook.d.ts +0 -8
  1069. package/dist/hooks/Others/editFieldsByBulkQuery.hook.d.ts +0 -3
  1070. package/dist/hooks/Others/getBellNotificationsQuery.hook.d.ts +0 -14
  1071. package/dist/hooks/Others/getNotificationTitleQuery.hook.d.ts +0 -9
  1072. package/dist/hooks/Others/getRegulationQuery.hook.d.ts +0 -3
  1073. package/dist/hooks/Others/getUserEmailStatusQuery.hook.d.ts +0 -10
  1074. package/dist/hooks/Others/getWeeklyWorkloadQuery.hook.d.ts +0 -11
  1075. package/dist/hooks/Others/oneSignalUserQuery.hook.d.ts +0 -1
  1076. package/dist/hooks/Others/postCheckoutsMutateQuery.hook.d.ts +0 -3
  1077. package/dist/hooks/Others/postUserAuthenticationQuery.hook.d.ts +0 -7
  1078. package/dist/hooks/Others/postVerifyImageQuery.hook.d.ts +0 -3
  1079. package/dist/hooks/Others/unblockUserQuery.hook.d.ts +0 -1
  1080. package/dist/hooks/Others/useApplicationDataQuery.hook.d.ts +0 -3
  1081. package/dist/hooks/Others/useContractStatesQuery.hook.d.ts +0 -8
  1082. package/dist/hooks/Others/useCountriesQuery.hook.d.ts +0 -8
  1083. package/dist/hooks/Others/useCreateNotification.hook.d.ts +0 -8
  1084. package/dist/hooks/Others/useCustomersQuery.hook.d.ts +0 -143
  1085. package/dist/hooks/Others/useJobTitlesQuery.hook.d.ts +0 -10
  1086. package/dist/hooks/Others/useRegulationQuery.hook.d.ts +0 -10
  1087. package/dist/hooks/Others/useTermNotificationQuery.hook.d.ts +0 -3
  1088. package/dist/hooks/Questionnaire/get/useQuestionnaireIdQuery.hook.d.ts +0 -3
  1089. package/dist/hooks/Questionnaire/get/useQuestionnaireQuery.hook.d.ts +0 -12
  1090. package/dist/hooks/Questionnaire/mutate/useQuestionnaireMutateQuery.hook.d.ts +0 -3
  1091. package/dist/hooks/Questionnaire/others/activateQuestionnaireQuery.hook.d.ts +0 -3
  1092. package/dist/hooks/Questionnaire/others/cancelQuestionnaireQuery.hook.d.ts +0 -3
  1093. package/dist/hooks/Questionnaire/others/deleteQuestionnaireQuery.hook.d.ts +0 -3
  1094. package/dist/hooks/Questionnaire/others/duplicateQuestionnaireQuery.hook.d.ts +0 -3
  1095. package/dist/hooks/Questionnaire/others/finishQuestionnaireQuery.hook.d.ts +0 -3
  1096. package/dist/hooks/Roles/get/useAllRolesQuery.hook.d.ts +0 -13
  1097. package/dist/hooks/Store/getLocationsByUser.hook.d.ts +0 -14
  1098. package/dist/hooks/Store/useAllStoreQuery.hook.d.ts +0 -14
  1099. package/dist/hooks/Store/useStoreByCodeQuery.hook.d.ts +0 -9
  1100. package/dist/hooks/Store/useStoreQuery.d.ts +0 -8
  1101. package/dist/hooks/Users/get/getUserAndSupervisorQuery.hook.d.ts +0 -8
  1102. package/dist/hooks/Users/get/getUsersReadmissionQuery.hook.d.ts +0 -12
  1103. package/dist/hooks/Users/get/useApplicationQuery.hook.d.ts +0 -12
  1104. package/dist/hooks/Users/get/useExpUsersAnswersQuery.hook.d.ts +0 -10
  1105. package/dist/hooks/Users/get/usePermissionByIdQuery.hook.d.ts +0 -4
  1106. package/dist/hooks/Users/get/usePermissionsQuery.hook.d.ts +0 -12
  1107. package/dist/hooks/Users/get/useSingleUserIdQuery.hook.d.ts +0 -4
  1108. package/dist/hooks/Users/get/useUserIdQuery.hook.d.ts +0 -3
  1109. package/dist/hooks/Users/get/useUserListQuery.hook.d.ts +0 -12
  1110. package/dist/hooks/Users/get/useUserQuery.hook.d.ts +0 -13
  1111. package/dist/hooks/Users/mutate/deletePermissionMutateQuery.hook.d.ts +0 -3
  1112. package/dist/hooks/Users/mutate/useSingleUserIdMutateQuery.hook.d.ts +0 -3
  1113. package/dist/hooks/Users/mutate/useUpdatePermissionsMutateQuery.hook.d.ts +0 -3
  1114. package/dist/hooks/Users/mutate/useUpdateSupervisorMutateQuery.hook.d.ts +0 -9
  1115. package/dist/hooks/Users/others/useSingleUserResetPassword.hook.d.ts +0 -7
  1116. package/dist/hooks/Users/others/useUserBlockQuery.hook.d.ts +0 -3
  1117. package/dist/hooks/Users/others/useUserEmailVerifQuery.hook.d.ts +0 -3
  1118. package/dist/hooks/Users/others/useUserResetPassByEmail.hook.d.ts +0 -3
  1119. package/dist/hooks/Watson/get/getCloseSession.hook.d.ts +0 -4
  1120. package/dist/hooks/Watson/mutate/mutateCloseSession.hook.d.ts +0 -3
  1121. package/dist/hooks/Watson/mutate/mutateNotificationRequest.hook.d.ts +0 -3
  1122. package/dist/hooks/WidgetPicaPonto/get/getAttendanceIssuesByIdQuery.hook.d.ts +0 -4
  1123. package/dist/hooks/WidgetPicaPonto/get/getAttendanceIssuesQuery.hook.d.ts +0 -12
  1124. package/dist/hooks/WidgetPicaPonto/get/getCriticaliesQuery.hook.d.ts +0 -12
  1125. package/dist/hooks/WidgetPicaPonto/get/getReasonCodesQuery.hook.d.ts +0 -12
  1126. package/dist/hooks/WidgetPicaPonto/get/getSchedulesStoresQuery.hook.d.ts +0 -9
  1127. package/dist/hooks/WidgetPicaPonto/mutate/useAttendanceIssuesQuery.hook.d.ts +0 -3
  1128. package/dist/hooks/index.d.ts +0 -434
  1129. package/dist/index.d.ts +0 -7
  1130. package/dist/interfaces/Answer.d.ts +0 -14
  1131. package/dist/interfaces/Cart.d.ts +0 -12
  1132. package/dist/interfaces/Employee.d.ts +0 -15
  1133. package/dist/interfaces/Inspection.d.ts +0 -22
  1134. package/dist/interfaces/OSUA.d.ts +0 -324
  1135. package/dist/interfaces/Responses.d.ts +0 -30
  1136. package/dist/interfaces/Template.d.ts +0 -31
  1137. package/dist/interfaces/User.d.ts +0 -72
  1138. package/dist/services/ApiService/index.d.ts +0 -14
  1139. package/dist/services/InitService/index.d.ts +0 -4
  1140. package/dist/shared-resources.es.js +0 -4780
  1141. package/dist/shared-resources.umd.js +0 -2
  1142. /package/dist/{enums → types/enums}/attendence-type.enum.d.ts +0 -0
  1143. /package/dist/{enums → types/enums}/employees-order.enum.d.ts +0 -0
  1144. /package/dist/{enums → types/enums}/index.d.ts +0 -0
  1145. /package/dist/{helpers → types/helpers}/formatted-date.helper.d.ts +0 -0
  1146. /package/dist/{helpers → types/helpers}/index.d.ts +0 -0
  1147. /package/dist/{interfaces → types/interfaces}/ACB.d.ts +0 -0
  1148. /package/dist/{interfaces → types/interfaces}/ASAECustomer.d.ts +0 -0
  1149. /package/dist/{interfaces → types/interfaces}/Acls.d.ts +0 -0
  1150. /package/dist/{interfaces → types/interfaces}/Actions.d.ts +0 -0
  1151. /package/dist/{interfaces → types/interfaces}/AnalyticsEvaluationCycle.d.ts +0 -0
  1152. /package/dist/{interfaces → types/interfaces}/AnalyticsUserId.d.ts +0 -0
  1153. /package/dist/{interfaces → types/interfaces}/Anot.d.ts +0 -0
  1154. /package/dist/{interfaces → types/interfaces}/AnswerType.d.ts +0 -0
  1155. /package/dist/{interfaces → types/interfaces}/AnswersUserSupervisor.d.ts +0 -0
  1156. /package/dist/{interfaces → types/interfaces}/ApplicationsByCategory.d.ts +0 -0
  1157. /package/dist/{interfaces → types/interfaces}/AstaQuestions.d.ts +0 -0
  1158. /package/dist/{interfaces → types/interfaces}/AstsStock.d.ts +0 -0
  1159. /package/dist/{interfaces → types/interfaces}/AstsStockInfo.d.ts +0 -0
  1160. /package/dist/{interfaces → types/interfaces}/AsttReconciliationDocuments.d.ts +0 -0
  1161. /package/dist/{interfaces → types/interfaces}/AsvProductsByReference.d.ts +0 -0
  1162. /package/dist/{interfaces → types/interfaces}/AsvProductsByStore.d.ts +0 -0
  1163. /package/dist/{interfaces → types/interfaces}/AsvProductsStockDetails.d.ts +0 -0
  1164. /package/dist/{interfaces → types/interfaces}/Atim.d.ts +0 -0
  1165. /package/dist/{interfaces → types/interfaces}/AtimScheduling.d.ts +0 -0
  1166. /package/dist/{interfaces → types/interfaces}/AttendanceIssues.d.ts +0 -0
  1167. /package/dist/{interfaces → types/interfaces}/Auth0Config.d.ts +0 -0
  1168. /package/dist/{interfaces → types/interfaces}/BellNotification.d.ts +0 -0
  1169. /package/dist/{interfaces → types/interfaces}/Brand.d.ts +0 -0
  1170. /package/dist/{interfaces → types/interfaces}/Bulk.d.ts +0 -0
  1171. /package/dist/{interfaces → types/interfaces}/Bwg.d.ts +0 -0
  1172. /package/dist/{interfaces → types/interfaces}/Checkout.d.ts +0 -0
  1173. /package/dist/{interfaces → types/interfaces}/Configuration.d.ts +0 -0
  1174. /package/dist/{interfaces → types/interfaces}/ContractStates.d.ts +0 -0
  1175. /package/dist/{interfaces → types/interfaces}/Countries.d.ts +0 -0
  1176. /package/dist/{interfaces → types/interfaces}/CreateNotification.d.ts +0 -0
  1177. /package/dist/{interfaces → types/interfaces}/Customer.d.ts +0 -0
  1178. /package/dist/{interfaces → types/interfaces}/CustomerHistory.d.ts +0 -0
  1179. /package/dist/{interfaces → types/interfaces}/CustomerVoucher.d.ts +0 -0
  1180. /package/dist/{interfaces → types/interfaces}/EvaluationCycle.d.ts +0 -0
  1181. /package/dist/{interfaces → types/interfaces}/ExpUsersAnswers.d.ts +0 -0
  1182. /package/dist/{interfaces → types/interfaces}/FlowExecution.d.ts +0 -0
  1183. /package/dist/{interfaces → types/interfaces}/FlowList.d.ts +0 -0
  1184. /package/dist/{interfaces → types/interfaces}/GetMonths.d.ts +0 -0
  1185. /package/dist/{interfaces → types/interfaces}/Instances.d.ts +0 -0
  1186. /package/dist/{interfaces → types/interfaces}/JobTitles.d.ts +0 -0
  1187. /package/dist/{interfaces → types/interfaces}/MIMO.d.ts +0 -0
  1188. /package/dist/{interfaces → types/interfaces}/MacroInstance.d.ts +0 -0
  1189. /package/dist/{interfaces → types/interfaces}/Macros.d.ts +0 -0
  1190. /package/dist/{interfaces → types/interfaces}/MonitoringComponent.d.ts +0 -0
  1191. /package/dist/{interfaces → types/interfaces}/NotificationTitle.d.ts +0 -0
  1192. /package/dist/{interfaces → types/interfaces}/Permissions.d.ts +0 -0
  1193. /package/dist/{interfaces → types/interfaces}/PriceChange.d.ts +0 -0
  1194. /package/dist/{interfaces → types/interfaces}/Product.d.ts +0 -0
  1195. /package/dist/{interfaces → types/interfaces}/ProductsHierarchies.d.ts +0 -0
  1196. /package/dist/{interfaces → types/interfaces}/ProductsPickedTransfers.d.ts +0 -0
  1197. /package/dist/{interfaces → types/interfaces}/Questionnaire.d.ts +0 -0
  1198. /package/dist/{interfaces → types/interfaces}/ReasonCodes.d.ts +0 -0
  1199. /package/dist/{interfaces → types/interfaces}/ReportBuilder.d.ts +0 -0
  1200. /package/dist/{interfaces → types/interfaces}/ResponseList.d.ts +0 -0
  1201. /package/dist/{interfaces → types/interfaces}/Rfid.d.ts +0 -0
  1202. /package/dist/{interfaces → types/interfaces}/Roles.d.ts +0 -0
  1203. /package/dist/{interfaces → types/interfaces}/Store.d.ts +0 -0
  1204. /package/dist/{interfaces → types/interfaces}/TagsFlow.d.ts +0 -0
  1205. /package/dist/{interfaces → types/interfaces}/TermNotification.d.ts +0 -0
  1206. /package/dist/{interfaces → types/interfaces}/TimeKeeping.d.ts +0 -0
  1207. /package/dist/{interfaces → types/interfaces}/TransferAllProducts.d.ts +0 -0
  1208. /package/dist/{interfaces → types/interfaces}/TransferDocumentState.d.ts +0 -0
  1209. /package/dist/{interfaces → types/interfaces}/TransferDocuments.d.ts +0 -0
  1210. /package/dist/{interfaces → types/interfaces}/TransferPackage.d.ts +0 -0
  1211. /package/dist/{interfaces → types/interfaces}/TransferPickProducts.d.ts +0 -0
  1212. /package/dist/{interfaces → types/interfaces}/TransferReportDiff.d.ts +0 -0
  1213. /package/dist/{interfaces → types/interfaces}/TransferStates.d.ts +0 -0
  1214. /package/dist/{interfaces → types/interfaces}/UserAuthentication.d.ts +0 -0
  1215. /package/dist/{interfaces → types/interfaces}/UserEmailStatus.d.ts +0 -0
  1216. /package/dist/{interfaces → types/interfaces}/VacationPlan.d.ts +0 -0
  1217. /package/dist/{interfaces → types/interfaces}/VerifyImage.d.ts +0 -0
  1218. /package/dist/{interfaces → types/interfaces}/VerifyUser.d.ts +0 -0
  1219. /package/dist/{interfaces → types/interfaces}/Watson.d.ts +0 -0
  1220. /package/dist/{interfaces → types/interfaces}/Workload.d.ts +0 -0
  1221. /package/dist/{interfaces → types/interfaces}/index.d.ts +0 -0
  1222. /package/dist/{services → types/services}/index.d.ts +0 -0
@@ -0,0 +1,9 @@
1
+ <svg width="99" height="31" viewBox="0 0 99 31" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <rect x="0.375" y="0.711365" width="98.4375" height="29.9381" fill="url(#pattern0)"/>
3
+ <defs>
4
+ <pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
5
+ <use xlink:href="#image0_397_398" transform="translate(0 -0.0260847) scale(0.00333333 0.0109601)"/>
6
+ </pattern>
7
+ <image id="image0_397_398" width="300" height="96" xlink:href="data:image/png;base64,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"/>
8
+ </defs>
9
+ </svg>
@@ -0,0 +1,33 @@
1
+ import { Drawer, DrawerProps } from "antd";
2
+ import styles from './styles.module.scss';
3
+
4
+ interface BottomDrawerProps extends DrawerProps {
5
+ haveReset?: boolean;
6
+ resetButtonName?: string;
7
+ closeButtonName: string;
8
+ onReset?: () => void;
9
+ }
10
+
11
+ export const BottomDrawer = ({ haveReset = false, resetButtonName, closeButtonName, onReset, ...restProps }: BottomDrawerProps) => {
12
+
13
+ const extraContent = haveReset ? (
14
+ <button
15
+ type="button"
16
+ className={ styles.resetButton }
17
+ onClick={onReset}
18
+ >
19
+ { resetButtonName }
20
+ </button>
21
+ ) : null;
22
+
23
+ return (
24
+ <Drawer
25
+ { ...restProps }
26
+ className={ styles.drawerComponent }
27
+ height="80%"
28
+ placement="bottom"
29
+ closeIcon={ closeButtonName }
30
+ extra={ extraContent }
31
+ />
32
+ );
33
+ };
@@ -0,0 +1,59 @@
1
+ .drawerComponent {
2
+
3
+ :global {
4
+
5
+ .ant-drawer-content-wrapper {
6
+ top: 10%;
7
+ }
8
+
9
+ .ant-drawer-content {
10
+ background: var(--app-footer-color);
11
+ border-radius: 7px 7px 0px 0px;
12
+ }
13
+
14
+ .ant-drawer-header {
15
+ border-bottom: 1px solid var(--disabled-input);
16
+ text-align: center;
17
+ padding: 16px 0px;
18
+ }
19
+
20
+ .ant-drawer-title {
21
+ font-weight: 700;
22
+ font-size: 14px;
23
+ color: var(--app-footer-bg-color);
24
+ }
25
+
26
+ .ant-drawer-close {
27
+ position: absolute;
28
+ top: 15px;
29
+ right: 0px;
30
+ font-weight: 400;
31
+ font-size: 12px;
32
+ color: var(--active-button-color);
33
+ }
34
+
35
+ }
36
+
37
+ .resetButton {
38
+ display: inline-block;
39
+ margin-left: 12px;
40
+ font-style: normal;
41
+ line-height: 1;
42
+ text-align: center;
43
+ text-transform: none;
44
+ text-decoration: none;
45
+ background: transparent;
46
+ border: 0;
47
+ outline: 0;
48
+ cursor: pointer;
49
+ transition: color 0.3s;
50
+ text-rendering: auto;
51
+ position: absolute;
52
+ top: 15px;
53
+ left: 0px;
54
+ font-weight: 400;
55
+ font-size: 12px;
56
+ color: var(--active-button-color);
57
+ }
58
+
59
+ }
@@ -0,0 +1,7 @@
1
+ import { Button as AntButton, ButtonProps } from 'antd';
2
+
3
+ export const Button = (props: ButtonProps) => {
4
+ return (
5
+ <AntButton { ...props } />
6
+ );
7
+ };
@@ -0,0 +1,44 @@
1
+ import { Row, Col } from 'antd';
2
+ import add from 'date-fns/add';
3
+ import format from 'date-fns/format';
4
+ import classNames from 'classnames';
5
+ import logo from '../../assets/omniu-retail_branco_s-fundo.png';
6
+ import { useState, useEffect } from 'react';
7
+
8
+ import styles from './styles.module.scss';
9
+
10
+ export const FooterComponent = ({ className }: { className?: string }) => {
11
+ const [date, setDate] = useState(new Date());
12
+
13
+ useEffect(() => {
14
+ const time = (function updateDate() {
15
+ const nextMinute = add(new Date(), { minutes: 1, seconds: 0 });
16
+ return setTimeout(() => {
17
+ setDate(new Date());
18
+ updateDate();
19
+ }, nextMinute.getTime() - new Date().getTime());
20
+ }());
21
+
22
+ return () => clearTimeout(time);
23
+ });
24
+
25
+ return (
26
+ <div className={ classNames(styles.footerComponent, className) }>
27
+ <Row>
28
+ <Col xs={ 12 } className={ styles.dateTime }>
29
+ <div className={ styles.date }>
30
+ {format(date, 'dd/MM/yyyy')}
31
+ </div>
32
+
33
+ <div className={ styles.time }>
34
+ {format(date, 'HH:mm')}
35
+ </div>
36
+ </Col>
37
+
38
+ <Col xs={ 12 } className={ styles.omniumLogo }>
39
+ <img src={ logo } className={ styles.omniumLogoImg } alt="omniu logo" />
40
+ </Col>
41
+ </Row>
42
+ </div>
43
+ );
44
+ }
@@ -0,0 +1,33 @@
1
+ .footerComponent {
2
+ height: 60px;
3
+ background-color: var(--app-footer-bg-color);
4
+ padding: 13px 24px;
5
+ box-sizing: border-box;
6
+
7
+ .date,
8
+ .time {
9
+ font-weight: 500;
10
+ font-size: 10px;
11
+ color: var(--app-footer-color);
12
+ display: inline-flex;
13
+ }
14
+
15
+ .dateTime {
16
+ line-height: 12px;
17
+ }
18
+
19
+ .time {
20
+ margin-left: 8px;
21
+ }
22
+
23
+ .omniumLogo {
24
+ line-height: 12px;
25
+ text-align: right;
26
+ }
27
+
28
+ .omniumLogoImg {
29
+ height: 23px;
30
+ margin-top: -5px;
31
+ margin-right: -6px;
32
+ }
33
+ }
@@ -0,0 +1,18 @@
1
+ import { Form, FormItemProps, Input, InputProps } from 'antd';
2
+
3
+ interface FormInputFieldProps extends Omit<FormItemProps, "name"> {
4
+ name: string;
5
+ inputProps?: InputProps;
6
+ }
7
+
8
+ export const InputField = (inputProps: InputProps) => (
9
+ <Input { ...inputProps } />
10
+ );
11
+
12
+ export const FormInputField = ({ inputProps, ...itemProps }: FormInputFieldProps) => {
13
+ return (
14
+ <Form.Item { ...itemProps }>
15
+ <InputField { ...inputProps } />
16
+ </Form.Item>
17
+ )
18
+ };
@@ -0,0 +1,16 @@
1
+ import { Form, FormItemProps, Select } from 'antd';
2
+ import { LabeledValue, SelectProps } from 'antd/lib/select';
3
+
4
+ interface FormSelectFieldProps extends Omit<FormItemProps, "name"> {
5
+ name: string;
6
+ options: LabeledValue[];
7
+ selectProps?: SelectProps<LabeledValue>
8
+ }
9
+
10
+ export const FormSelectField = ({ options, selectProps, ...itemProps }: FormSelectFieldProps) => {
11
+ return (
12
+ <Form.Item { ...itemProps }>
13
+ <Select { ...selectProps } options={ options } />
14
+ </Form.Item>
15
+ )
16
+ };
@@ -0,0 +1,2 @@
1
+ export * from './FormInputField';
2
+ export * from './FormSelectField';
@@ -0,0 +1,20 @@
1
+ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
2
+ import { icons, } from '../../constants/Icons';
3
+ import sitooIcon from '../../assets/sitoo.svg';
4
+ import styles from './styles.module.scss';
5
+
6
+ export interface HeaderProps {
7
+ onOpenMenu: () => void;
8
+ }
9
+
10
+ export const Header = ({ onOpenMenu }: HeaderProps) => (
11
+ <div className={ styles.header }>
12
+ <FontAwesomeIcon icon={ icons.faBars } onClick={ onOpenMenu } />
13
+
14
+ <div className={ styles.logoContainer }>
15
+ <img src={ sitooIcon } />
16
+ </div>
17
+
18
+ <FontAwesomeIcon icon={ icons.faUserTie } />
19
+ </div>
20
+ );
@@ -0,0 +1,16 @@
1
+
2
+ .header {
3
+ height: 88px;
4
+ display: flex;
5
+ align-items: flex-end;
6
+ padding: 13px 20px;
7
+ border-bottom: 2px solid #E5E5E5;
8
+ box-sizing: border-box;
9
+ }
10
+
11
+ .logoContainer {
12
+ display: flex;
13
+ flex-grow: 1;
14
+ align-items: flex-end;
15
+ justify-content: center;
16
+ }
@@ -0,0 +1,21 @@
1
+ import { Button as AntButton, ButtonProps } from 'antd';
2
+ import styles from './styles.module.scss';
3
+ import classNames from 'classnames';
4
+
5
+ export interface CustomLinkProps extends ButtonProps {
6
+ iconAlignRight?: boolean;
7
+ linkSecondary?: boolean;
8
+ }
9
+
10
+ export const Link = (props: CustomLinkProps) => {
11
+ const { iconAlignRight, linkSecondary } = props;
12
+
13
+ const linkClasses = classNames({
14
+ [styles.iconAlignRight]: iconAlignRight,
15
+ [styles.linkSecondary]: linkSecondary,
16
+ }, [styles.link])
17
+
18
+ return (
19
+ <AntButton { ...props } className={ linkClasses } type={'link'} />
20
+ );
21
+ };
@@ -0,0 +1,24 @@
1
+ .link {
2
+ display: inline-flex;
3
+ text-decoration: none;
4
+ height: auto;
5
+
6
+ color: var(--color-black);
7
+ font-size: var(--font-size-body-3);
8
+ line-height: 100%;
9
+ font-weight: 300;
10
+ font-style: var(--font-style-italic);
11
+ }
12
+
13
+ .linkSecondary {
14
+ color: var(--color-orange);
15
+ font-style: var(--font-style-normal);
16
+ }
17
+
18
+ .iconAlignRight {
19
+ span:nth-child(2) {
20
+ margin-inline-end: 8px;
21
+ margin-inline-start: 0;
22
+ order: -1;
23
+ }
24
+ }
@@ -0,0 +1,30 @@
1
+ import styles from './styles.module.scss';
2
+ import { Link } from '../Link/index';
3
+ import { ArrowLeftOutlined, HomeOutlined, LogoutOutlined } from '@ant-design/icons';
4
+
5
+ export interface NavigationProps {
6
+ backLink?: boolean;
7
+ title: string;
8
+ homeLink?: boolean;
9
+ loginLink?: boolean;
10
+ onClickFunction?: () => void;
11
+ }
12
+
13
+ export const Navigation = (props: NavigationProps) => {
14
+ const { backLink, title, homeLink, onClickFunction, loginLink } = props;
15
+
16
+ return (
17
+ <div className={styles.navigation}>
18
+ <div className={styles.columnLeft}>
19
+ { backLink && <Link href="#" icon={<ArrowLeftOutlined />} linkSecondary> Voltar </Link> }
20
+ </div>
21
+ <div className={styles.columnCenter}>
22
+ <h1 className={styles.title}>{title}</h1>
23
+ </div>
24
+ <div className={styles.columnRight}>
25
+ {homeLink && <Link href="" icon={<HomeOutlined />} linkSecondary iconAlignRight> Home </Link>}
26
+ {loginLink && <Link href="#" onClick={onClickFunction} icon={<LogoutOutlined />} linkSecondary iconAlignRight> Log Out</Link>}
27
+ </div>
28
+ </div>
29
+ )
30
+ };
@@ -0,0 +1,34 @@
1
+ .navigation {
2
+ display: flex;
3
+ align-items: center;
4
+ justify-content: space-between;
5
+ padding: 0 24px;
6
+ height: 75px;
7
+ gap: 0 24px;
8
+ position: relative;
9
+
10
+ @media(max-width: 767px) {
11
+ padding-top: 32px;
12
+ }
13
+
14
+ @media(min-width: 767px) {
15
+ padding: 0 40px;
16
+ }
17
+
18
+ .title {
19
+ font-size: var(--font-size-body-4);
20
+ font-weight: var(--font-weight-semibold);
21
+ text-transform: uppercase;
22
+ }
23
+
24
+ .columnCenter {
25
+ @media(max-width: 767px) {
26
+ position: absolute;
27
+ top: 12px;
28
+ margin: 0 auto;
29
+ left: 0;
30
+ right: 0;
31
+ text-align: center;
32
+ }
33
+ }
34
+ }
@@ -0,0 +1,35 @@
1
+
2
+ import { Spin } from 'antd';
3
+ import classNames from 'classnames';
4
+ import styles from './styles.module.scss';
5
+
6
+ interface PageContentProps extends PageBaseProps {
7
+ isLoading?: boolean;
8
+ }
9
+
10
+ interface PageBaseProps {
11
+ children?: React.ReactNode | React.ReactNode[];
12
+ }
13
+
14
+ export const Page = ({ children }: PageBaseProps) => {
15
+ return (
16
+ <div className={ styles.pageContainer }>
17
+ { children }
18
+ </div>
19
+ )
20
+ };
21
+
22
+ const PageHeader = ({ children }: PageBaseProps) => (
23
+ <div className={ styles.header }>
24
+ { children }
25
+ </div>
26
+ );
27
+
28
+ const PageContent = ({ children, isLoading }: PageContentProps) => (
29
+ <div className={ classNames(styles.pageContent, { [styles.pageContentLoading]: isLoading }) }>
30
+ { isLoading ? <Spin /> : children }
31
+ </div>
32
+ );
33
+
34
+ Page.Header = PageHeader;
35
+ Page.Content = PageContent;
@@ -0,0 +1,26 @@
1
+ $padding: 8.5px 20px;
2
+
3
+ .header {
4
+ background: var(--white-color);
5
+ height: 37px;
6
+ border-bottom: 2px solid var(--disabled-input);
7
+ color: var(--app-footer-bg-color);
8
+ display: flex;
9
+ gap: 21px;
10
+ align-items: center;
11
+ }
12
+
13
+ .pageContent, .header {
14
+ padding: $padding;
15
+ }
16
+
17
+ .pageContainer {
18
+ height: 100%;
19
+ }
20
+
21
+ .pageContentLoading {
22
+ min-height: 50%;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: center;
26
+ }
@@ -0,0 +1,30 @@
1
+ import React from 'react';
2
+ import { QueryClientProvider } from "@tanstack/react-query";
3
+ import { queryClient } from '../../constants';
4
+ import { StoreProvider } from '../../contexts/useStore';
5
+
6
+ export interface SharedContextProviderProps {
7
+ providers?: React.JSXElementConstructor<unknown>[];
8
+ children?: React.ReactElement | React.ReactElement[];
9
+ disableInitialStoreRequest?: boolean;
10
+ }
11
+
12
+ const DefaultProviders = [
13
+ StoreProvider,
14
+ [QueryClientProvider, { client: queryClient }],
15
+ ] as React.JSXElementConstructor<unknown>[];
16
+
17
+ const ContextProvider = ({ providers, children }) => providers.reduceRight(
18
+ (children, parent) => React.cloneElement(parent, { children: children }),
19
+ children
20
+ );
21
+
22
+ export const SharedContextProvider = ({ children, disableInitialStoreRequest }: SharedContextProviderProps) => {
23
+ return (
24
+ <QueryClientProvider client={ queryClient }>
25
+ <StoreProvider disableInitialStoreRequest={disableInitialStoreRequest}>
26
+ { children }
27
+ </StoreProvider>
28
+ </QueryClientProvider>
29
+ );
30
+ };
@@ -0,0 +1,9 @@
1
+ export * from './SharedContextProvider';
2
+ export * from './Header';
3
+ export * from './Footer';
4
+ export * from './Page';
5
+ export * from './Button';
6
+ export * from './BottomDrawer';
7
+ export * from './Form';
8
+ export * from './Link';
9
+ export * from './Navigation';
@@ -0,0 +1,21 @@
1
+
2
+ import {
3
+ faBars, faUserTie, faPlus, faXmark, faUser, faUserPlus,
4
+ faCartShopping, faChevronDown, faFilter, faSearch, faQrcode, faCheck, faTrashAlt
5
+ } from '@fortawesome/free-solid-svg-icons'
6
+
7
+ export const icons = {
8
+ faBars,
9
+ faUser,
10
+ faUserTie,
11
+ faPlus,
12
+ faUserPlus,
13
+ faXmark,
14
+ faCartShopping,
15
+ faChevronDown,
16
+ faFilter,
17
+ faSearch,
18
+ faQrcode,
19
+ faCheck,
20
+ faTrashAlt
21
+ };
@@ -0,0 +1,10 @@
1
+ import { QueryClient } from '@tanstack/react-query';
2
+
3
+ export const queryClient = new QueryClient({
4
+ defaultOptions: {
5
+ queries: {
6
+ refetchOnWindowFocus: false,
7
+ suspense: true,
8
+ },
9
+ },
10
+ });
@@ -0,0 +1,2 @@
1
+ export * from './QueryClient'
2
+ export * from './Icons';
@@ -0,0 +1,20 @@
1
+
2
+ import React from 'react';
3
+ import { useSearchParams } from 'react-router-dom';
4
+ import { useStoreQuery } from '../hooks/Store/useStoreQuery';
5
+ import { Store } from '../interfaces/Store';
6
+
7
+ const StoreContext = React.createContext<Store | null>(null);
8
+
9
+ const StoreProvider = ({ children, disableInitialStoreRequest }: { disableInitialStoreRequest?: boolean, children: React.ReactElement | React.ReactElement[] }) => {
10
+ const [params] = useSearchParams();
11
+ const { data: store } = useStoreQuery({ id: params.get('storeId') as string, enabled: !disableInitialStoreRequest });
12
+
13
+ return <StoreContext.Provider value={ store }> { children } </StoreContext.Provider>;
14
+ };
15
+
16
+ const useStoreContext = (): Store => {
17
+ return React.useContext(StoreContext) as Store;
18
+ };
19
+
20
+ export { StoreProvider, useStoreContext };
@@ -0,0 +1,5 @@
1
+
2
+ export enum AttendanceType {
3
+ ENTER = 0,
4
+ EXIT = 1
5
+ }
@@ -0,0 +1,7 @@
1
+
2
+ export enum EmployeeOrder {
3
+ NAME_A_Z,
4
+ NAME_Z_A,
5
+ ID_ASC,
6
+ ID_DESC,
7
+ }
@@ -0,0 +1,2 @@
1
+ export * from './attendence-type.enum';
2
+ export * from './employees-order.enum';