@thetradeengineorg1/snova-shell-module 0.0.1

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 (288) hide show
  1. package/README.md +24 -0
  2. package/bundles/thetradeengineorg1-snova-shell-module.umd.js +13896 -0
  3. package/bundles/thetradeengineorg1-snova-shell-module.umd.js.map +1 -0
  4. package/esm2015/lib/globaldependencies/components/componentbase.js +538 -0
  5. package/esm2015/lib/globaldependencies/constants/feature-ids.js +449 -0
  6. package/esm2015/lib/globaldependencies/constants/localstorage-properties.js +38 -0
  7. package/esm2015/lib/globaldependencies/helpers/dom.helper.js +70 -0
  8. package/esm2015/lib/globaldependencies/helpers/fontawesome-icons.js +144 -0
  9. package/esm2015/lib/globaldependencies/helpers/moment-utc-date-adapter.js +37 -0
  10. package/esm2015/lib/globaldependencies/helpers/window.helper.js +32 -0
  11. package/esm2015/lib/globaldependencies/intercepter/jwt.interceptor.js +40 -0
  12. package/esm2015/lib/globaldependencies/pipes/fetchSizedAndCachedImage.pipe.js +36 -0
  13. package/esm2015/lib/globaldependencies/pipes/highLightText.pipe.js +24 -0
  14. package/esm2015/lib/globaldependencies/pipes/orderby-pipe.js +24 -0
  15. package/esm2015/lib/globaldependencies/pipes/removeSpecialCharacters.pipe.js +22 -0
  16. package/esm2015/lib/globaldependencies/pipes/sanitize.pipe.js +24 -0
  17. package/esm2015/lib/globaldependencies/pipes/softlabels.pipes.js +346 -0
  18. package/esm2015/lib/globaldependencies/pipes/utctolocaltime.pipe.js +23 -0
  19. package/esm2015/lib/globaldependencies/pipes/utctolocaltimewithdate.pipe.js +25 -0
  20. package/esm2015/lib/globaldependencies/pipes/workflowstatus.pipes.js +27 -0
  21. package/esm2015/lib/shell-components/components/Payments/account.component.js +50 -0
  22. package/esm2015/lib/shell-components/components/Payments/company-information.js +262 -0
  23. package/esm2015/lib/shell-components/components/Payments/company-plans.component.js +138 -0
  24. package/esm2015/lib/shell-components/components/Payments/document.component.js +57 -0
  25. package/esm2015/lib/shell-components/components/Payments/payment-method.component.js +32 -0
  26. package/esm2015/lib/shell-components/components/Payments/product-service.component.js +143 -0
  27. package/esm2015/lib/shell-components/components/Payments/purchase-more-licenses.js +152 -0
  28. package/esm2015/lib/shell-components/components/Payments/transactions.component.js +60 -0
  29. package/esm2015/lib/shell-components/components/admin-layout/admin-layout.component.js +250 -0
  30. package/esm2015/lib/shell-components/components/all-work-items-dialog/all-work-items-dialog.component.js +89 -0
  31. package/esm2015/lib/shell-components/components/confirmation-dialog/confirmation-dialog.component.js +90 -0
  32. package/esm2015/lib/shell-components/components/export-import-configuration/export-configuration.component.js +357 -0
  33. package/esm2015/lib/shell-components/components/feed-time/feed-time-dialog.component.js +85 -0
  34. package/esm2015/lib/shell-components/components/feed-time/feed-time.component.js +83 -0
  35. package/esm2015/lib/shell-components/components/header-side/header-side.component.js +1642 -0
  36. package/esm2015/lib/shell-components/components/header-top/header-top.component.js +93 -0
  37. package/esm2015/lib/shell-components/components/lives/lives-welcome-page.js +26 -0
  38. package/esm2015/lib/shell-components/components/menu/menu.component.js +2478 -0
  39. package/esm2015/lib/shell-components/components/menu/searchTask.enum.js +10 -0
  40. package/esm2015/lib/shell-components/components/notifications/announcement-dialog.component.js +73 -0
  41. package/esm2015/lib/shell-components/components/notifications/notifications.component.js +449 -0
  42. package/esm2015/lib/shell-components/components/sidebar-top/sidebar-top.component.js +33 -0
  43. package/esm2015/lib/shell-components/components/sidenav/side-bar.component.js +81 -0
  44. package/esm2015/lib/shell-components/components/sidenav/sidenav.component.js +43 -0
  45. package/esm2015/lib/shell-components/components/submit-feedback/submit-feedback.component.js +71 -0
  46. package/esm2015/lib/shell-components/constants/api-urls.js +1052 -0
  47. package/esm2015/lib/shell-components/constants/available-languages.js +25 -0
  48. package/esm2015/lib/shell-components/constants/channel-names.js +38 -0
  49. package/esm2015/lib/shell-components/constants/menu-categories.js +6 -0
  50. package/esm2015/lib/shell-components/constants/notification-routes.js +6 -0
  51. package/esm2015/lib/shell-components/constants/notification-type-ids.js +42 -0
  52. package/esm2015/lib/shell-components/enum/recentSearchType.enum.js +13 -0
  53. package/esm2015/lib/shell-components/models/AppMenuItemModel.js +3 -0
  54. package/esm2015/lib/shell-components/models/AppNotification.js +17 -0
  55. package/esm2015/lib/shell-components/models/AssetAssignedNotificationModel.js +12 -0
  56. package/esm2015/lib/shell-components/models/ChannelUpdateModel.js +3 -0
  57. package/esm2015/lib/shell-components/models/EmployeeStatusModel.js +3 -0
  58. package/esm2015/lib/shell-components/models/IAdjust-screen-options.js +2 -0
  59. package/esm2015/lib/shell-components/models/IBadge.js +2 -0
  60. package/esm2015/lib/shell-components/models/IChildItem.js +2 -0
  61. package/esm2015/lib/shell-components/models/ILayout-change-options.js +2 -0
  62. package/esm2015/lib/shell-components/models/IMenuItem.js +2 -0
  63. package/esm2015/lib/shell-components/models/IlayoutConf.js +2 -0
  64. package/esm2015/lib/shell-components/models/IntroModel.js +3 -0
  65. package/esm2015/lib/shell-components/models/MessageDetails.js +3 -0
  66. package/esm2015/lib/shell-components/models/MessageTypingDetails.js +3 -0
  67. package/esm2015/lib/shell-components/models/NewProjectCreatedNotificationModel.js +10 -0
  68. package/esm2015/lib/shell-components/models/NewProjectFeatureNotificationModel.js +10 -0
  69. package/esm2015/lib/shell-components/models/NotificationsOutPutModel.js +22 -0
  70. package/esm2015/lib/shell-components/models/ProjectSearchCriteriaInputModel.js +3 -0
  71. package/esm2015/lib/shell-components/models/RecentSearchModel.js +5 -0
  72. package/esm2015/lib/shell-components/models/ReportConfigAssignedNotification.js +11 -0
  73. package/esm2015/lib/shell-components/models/ReportSubmittedNotification.js +12 -0
  74. package/esm2015/lib/shell-components/models/RoleUpdatedNotification.js +9 -0
  75. package/esm2015/lib/shell-components/models/UserStoryAssignedNotification.js +13 -0
  76. package/esm2015/lib/shell-components/models/archiveUserStoryModel.js +10 -0
  77. package/esm2015/lib/shell-components/models/companieslist.model.js +3 -0
  78. package/esm2015/lib/shell-components/models/company-model.js +7 -0
  79. package/esm2015/lib/shell-components/models/company-payment-model.js +3 -0
  80. package/esm2015/lib/shell-components/models/dragedWidget.js +3 -0
  81. package/esm2015/lib/shell-components/models/employee-List.js +3 -0
  82. package/esm2015/lib/shell-components/models/employee.js +4 -0
  83. package/esm2015/lib/shell-components/models/entityRoleFeature.js +3 -0
  84. package/esm2015/lib/shell-components/models/export-configuration-model.js +3 -0
  85. package/esm2015/lib/shell-components/models/export-data.module.js +8 -0
  86. package/esm2015/lib/shell-components/models/goalApprovedNotificationModel.js +9 -0
  87. package/esm2015/lib/shell-components/models/import-configuration-model.js +3 -0
  88. package/esm2015/lib/shell-components/models/initialStatusofUsers.js +3 -0
  89. package/esm2015/lib/shell-components/models/invoiceOutput-model.js +3 -0
  90. package/esm2015/lib/shell-components/models/leaveApplicationNotifiction.js +9 -0
  91. package/esm2015/lib/shell-components/models/multiChartsScheduling.js +11 -0
  92. package/esm2015/lib/shell-components/models/parkUserStoryInputModel.js +10 -0
  93. package/esm2015/lib/shell-components/models/project.js +3 -0
  94. package/esm2015/lib/shell-components/models/recentSearchApiModel.js +3 -0
  95. package/esm2015/lib/shell-components/models/searchCriteriaInputModelBase.js +3 -0
  96. package/esm2015/lib/shell-components/models/shellModulesInfo.js +7 -0
  97. package/esm2015/lib/shell-components/models/softlabels-model.js +7 -0
  98. package/esm2015/lib/shell-components/models/sprintReplanRequestedModel.js +9 -0
  99. package/esm2015/lib/shell-components/models/sprintStartedNotificationModel.js +9 -0
  100. package/esm2015/lib/shell-components/models/store-model.js +3 -0
  101. package/esm2015/lib/shell-components/models/store-search-model.js +4 -0
  102. package/esm2015/lib/shell-components/models/themes.model.js +3 -0
  103. package/esm2015/lib/shell-components/models/timesheetenabledisable.js +4 -0
  104. package/esm2015/lib/shell-components/models/user.js +8 -0
  105. package/esm2015/lib/shell-components/models/userStory.js +3 -0
  106. package/esm2015/lib/shell-components/models/userStoryCommentNotificationModel.js +9 -0
  107. package/esm2015/lib/shell-components/models/userStoryUpdateNotificationModel.js +9 -0
  108. package/esm2015/lib/shell-components/models/userstory-custom-fields.model.js +3 -0
  109. package/esm2015/lib/shell-components/models/validation.model.js +2 -0
  110. package/esm2015/lib/shell-components/models/widgetlist.js +6 -0
  111. package/esm2015/lib/shell-components/models/workspaceList.js +3 -0
  112. package/esm2015/lib/shell-components/services/authentication.service.js +96 -0
  113. package/esm2015/lib/shell-components/services/chat.service.js +67 -0
  114. package/esm2015/lib/shell-components/services/common-used.service.js +263 -0
  115. package/esm2015/lib/shell-components/services/feature.service.js +101 -0
  116. package/esm2015/lib/shell-components/services/google-analytics.service.js +24 -0
  117. package/esm2015/lib/shell-components/services/layout.service.js +68 -0
  118. package/esm2015/lib/shell-components/services/payment.service.js +103 -0
  119. package/esm2015/lib/shell-components/services/recentSearch.service.js +90 -0
  120. package/esm2015/lib/shell-components/services/shell.modules.service.js +24 -0
  121. package/esm2015/lib/shell-components/services/signalr.service.js +113 -0
  122. package/esm2015/lib/shell-components/services/theme.service.js +161 -0
  123. package/esm2015/lib/shell-components/shell.module.js +436 -0
  124. package/esm2015/lib/shell-components/shell.routing.js +16 -0
  125. package/esm2015/lib/shell-components/store/actions/authentication.actions.js +260 -0
  126. package/esm2015/lib/shell-components/store/actions/chat.actions.js +248 -0
  127. package/esm2015/lib/shell-components/store/actions/menuitems.actions.js +39 -0
  128. package/esm2015/lib/shell-components/store/actions/notification-validator.action.js +19 -0
  129. package/esm2015/lib/shell-components/store/actions/notifications.actions.js +74 -0
  130. package/esm2015/lib/shell-components/store/effects/authentication.effects.js +503 -0
  131. package/esm2015/lib/shell-components/store/effects/chat.effects.js +139 -0
  132. package/esm2015/lib/shell-components/store/effects/index.js +13 -0
  133. package/esm2015/lib/shell-components/store/effects/menuitems.effects.js +53 -0
  134. package/esm2015/lib/shell-components/store/effects/notification-validator.effects.js +56 -0
  135. package/esm2015/lib/shell-components/store/effects/notifications.effects.js +116 -0
  136. package/esm2015/lib/shell-components/store/reducers/authentication.reducers.js +86 -0
  137. package/esm2015/lib/shell-components/store/reducers/chat.reducers.js +68 -0
  138. package/esm2015/lib/shell-components/store/reducers/index.js +80 -0
  139. package/esm2015/lib/shell-components/store/reducers/menuitems.reducers.js +56 -0
  140. package/esm2015/lib/shell-components/store/reducers/notification-validator.reducers.js +13 -0
  141. package/esm2015/lib/shell-components/store/reducers/notifications.reducers.js +38 -0
  142. package/esm2015/public-api.js +90 -0
  143. package/esm2015/store/reducers/index.js +47 -0
  144. package/esm2015/thetradeengineorg1-snova-shell-module.js +5 -0
  145. package/fesm2015/thetradeengineorg1-snova-shell-module.js +12808 -0
  146. package/fesm2015/thetradeengineorg1-snova-shell-module.js.map +1 -0
  147. package/lib/globaldependencies/components/componentbase.d.ts +455 -0
  148. package/lib/globaldependencies/constants/feature-ids.d.ts +448 -0
  149. package/lib/globaldependencies/constants/localstorage-properties.d.ts +37 -0
  150. package/lib/globaldependencies/helpers/dom.helper.d.ts +7 -0
  151. package/lib/globaldependencies/helpers/fontawesome-icons.d.ts +1 -0
  152. package/lib/globaldependencies/helpers/moment-utc-date-adapter.d.ts +9 -0
  153. package/lib/globaldependencies/helpers/window.helper.d.ts +12 -0
  154. package/lib/globaldependencies/intercepter/jwt.interceptor.d.ts +11 -0
  155. package/lib/globaldependencies/pipes/fetchSizedAndCachedImage.pipe.d.ts +8 -0
  156. package/lib/globaldependencies/pipes/highLightText.pipe.d.ts +8 -0
  157. package/lib/globaldependencies/pipes/orderby-pipe.d.ts +9 -0
  158. package/lib/globaldependencies/pipes/removeSpecialCharacters.pipe.d.ts +8 -0
  159. package/lib/globaldependencies/pipes/sanitize.pipe.d.ts +11 -0
  160. package/lib/globaldependencies/pipes/softlabels.pipes.d.ts +8 -0
  161. package/lib/globaldependencies/pipes/utctolocaltime.pipe.d.ts +8 -0
  162. package/lib/globaldependencies/pipes/utctolocaltimewithdate.pipe.d.ts +8 -0
  163. package/lib/globaldependencies/pipes/workflowstatus.pipes.d.ts +8 -0
  164. package/lib/shell-components/components/Payments/account.component.d.ts +14 -0
  165. package/lib/shell-components/components/Payments/company-information.d.ts +62 -0
  166. package/lib/shell-components/components/Payments/company-plans.component.d.ts +47 -0
  167. package/lib/shell-components/components/Payments/document.component.d.ts +20 -0
  168. package/lib/shell-components/components/Payments/payment-method.component.d.ts +15 -0
  169. package/lib/shell-components/components/Payments/product-service.component.d.ts +48 -0
  170. package/lib/shell-components/components/Payments/purchase-more-licenses.d.ts +37 -0
  171. package/lib/shell-components/components/Payments/transactions.component.d.ts +28 -0
  172. package/lib/shell-components/components/admin-layout/admin-layout.component.d.ts +67 -0
  173. package/lib/shell-components/components/all-work-items-dialog/all-work-items-dialog.component.d.ts +32 -0
  174. package/lib/shell-components/components/confirmation-dialog/confirmation-dialog.component.d.ts +32 -0
  175. package/lib/shell-components/components/export-import-configuration/export-configuration.component.d.ts +60 -0
  176. package/lib/shell-components/components/feed-time/feed-time-dialog.component.d.ts +33 -0
  177. package/lib/shell-components/components/feed-time/feed-time.component.d.ts +27 -0
  178. package/lib/shell-components/components/header-side/header-side.component.d.ts +216 -0
  179. package/lib/shell-components/components/header-top/header-top.component.d.ts +40 -0
  180. package/lib/shell-components/components/lives/lives-welcome-page.d.ts +14 -0
  181. package/lib/shell-components/components/menu/menu.component.d.ts +220 -0
  182. package/lib/shell-components/components/menu/searchTask.enum.d.ts +8 -0
  183. package/lib/shell-components/components/notifications/announcement-dialog.component.d.ts +27 -0
  184. package/lib/shell-components/components/notifications/notifications.component.d.ts +53 -0
  185. package/lib/shell-components/components/sidebar-top/sidebar-top.component.d.ts +10 -0
  186. package/lib/shell-components/components/sidenav/side-bar.component.d.ts +23 -0
  187. package/lib/shell-components/components/sidenav/sidenav.component.d.ts +17 -0
  188. package/lib/shell-components/components/submit-feedback/submit-feedback.component.d.ts +25 -0
  189. package/lib/shell-components/constants/api-urls.d.ts +1051 -0
  190. package/lib/shell-components/constants/available-languages.d.ts +7 -0
  191. package/lib/shell-components/constants/channel-names.d.ts +37 -0
  192. package/lib/shell-components/constants/menu-categories.d.ts +5 -0
  193. package/lib/shell-components/constants/notification-routes.d.ts +5 -0
  194. package/lib/shell-components/constants/notification-type-ids.d.ts +41 -0
  195. package/lib/shell-components/enum/recentSearchType.enum.d.ts +11 -0
  196. package/lib/shell-components/models/AppMenuItemModel.d.ts +12 -0
  197. package/lib/shell-components/models/AppNotification.d.ts +12 -0
  198. package/lib/shell-components/models/AssetAssignedNotificationModel.d.ts +10 -0
  199. package/lib/shell-components/models/ChannelUpdateModel.d.ts +47 -0
  200. package/lib/shell-components/models/EmployeeStatusModel.d.ts +11 -0
  201. package/lib/shell-components/models/IAdjust-screen-options.d.ts +4 -0
  202. package/lib/shell-components/models/IBadge.d.ts +4 -0
  203. package/lib/shell-components/models/IChildItem.d.ts +7 -0
  204. package/lib/shell-components/models/ILayout-change-options.d.ts +4 -0
  205. package/lib/shell-components/models/IMenuItem.d.ts +14 -0
  206. package/lib/shell-components/models/IlayoutConf.d.ts +10 -0
  207. package/lib/shell-components/models/IntroModel.d.ts +3 -0
  208. package/lib/shell-components/models/MessageDetails.d.ts +55 -0
  209. package/lib/shell-components/models/MessageTypingDetails.d.ts +9 -0
  210. package/lib/shell-components/models/NewProjectCreatedNotificationModel.d.ts +8 -0
  211. package/lib/shell-components/models/NewProjectFeatureNotificationModel.d.ts +8 -0
  212. package/lib/shell-components/models/NotificationsOutPutModel.d.ts +41 -0
  213. package/lib/shell-components/models/ProjectSearchCriteriaInputModel.d.ts +10 -0
  214. package/lib/shell-components/models/RecentSearchModel.d.ts +14 -0
  215. package/lib/shell-components/models/ReportConfigAssignedNotification.d.ts +9 -0
  216. package/lib/shell-components/models/ReportSubmittedNotification.d.ts +10 -0
  217. package/lib/shell-components/models/RoleUpdatedNotification.d.ts +7 -0
  218. package/lib/shell-components/models/UserStoryAssignedNotification.d.ts +8 -0
  219. package/lib/shell-components/models/archiveUserStoryModel.d.ts +7 -0
  220. package/lib/shell-components/models/companieslist.model.d.ts +8 -0
  221. package/lib/shell-components/models/company-model.d.ts +31 -0
  222. package/lib/shell-components/models/company-payment-model.d.ts +18 -0
  223. package/lib/shell-components/models/dragedWidget.d.ts +16 -0
  224. package/lib/shell-components/models/employee-List.d.ts +8 -0
  225. package/lib/shell-components/models/employee.d.ts +60 -0
  226. package/lib/shell-components/models/entityRoleFeature.d.ts +9 -0
  227. package/lib/shell-components/models/export-configuration-model.d.ts +8 -0
  228. package/lib/shell-components/models/export-data.module.d.ts +6 -0
  229. package/lib/shell-components/models/goalApprovedNotificationModel.d.ts +8 -0
  230. package/lib/shell-components/models/import-configuration-model.d.ts +3 -0
  231. package/lib/shell-components/models/initialStatusofUsers.d.ts +5 -0
  232. package/lib/shell-components/models/invoiceOutput-model.d.ts +9 -0
  233. package/lib/shell-components/models/leaveApplicationNotifiction.d.ts +7 -0
  234. package/lib/shell-components/models/multiChartsScheduling.d.ts +9 -0
  235. package/lib/shell-components/models/parkUserStoryInputModel.d.ts +7 -0
  236. package/lib/shell-components/models/project.d.ts +28 -0
  237. package/lib/shell-components/models/recentSearchApiModel.d.ts +6 -0
  238. package/lib/shell-components/models/searchCriteriaInputModelBase.d.ts +10 -0
  239. package/lib/shell-components/models/shellModulesInfo.d.ts +16 -0
  240. package/lib/shell-components/models/softlabels-model.d.ts +66 -0
  241. package/lib/shell-components/models/sprintReplanRequestedModel.d.ts +7 -0
  242. package/lib/shell-components/models/sprintStartedNotificationModel.d.ts +7 -0
  243. package/lib/shell-components/models/store-model.d.ts +13 -0
  244. package/lib/shell-components/models/store-search-model.d.ts +7 -0
  245. package/lib/shell-components/models/themes.model.d.ts +9 -0
  246. package/lib/shell-components/models/timesheetenabledisable.d.ts +16 -0
  247. package/lib/shell-components/models/user.d.ts +40 -0
  248. package/lib/shell-components/models/userStory.d.ts +188 -0
  249. package/lib/shell-components/models/userStoryCommentNotificationModel.d.ts +6 -0
  250. package/lib/shell-components/models/userStoryUpdateNotificationModel.d.ts +6 -0
  251. package/lib/shell-components/models/userstory-custom-fields.model.d.ts +6 -0
  252. package/lib/shell-components/models/validation.model.d.ts +5 -0
  253. package/lib/shell-components/models/widgetlist.d.ts +28 -0
  254. package/lib/shell-components/models/workspaceList.d.ts +19 -0
  255. package/lib/shell-components/services/authentication.service.d.ts +18 -0
  256. package/lib/shell-components/services/chat.service.d.ts +16 -0
  257. package/lib/shell-components/services/common-used.service.d.ts +45 -0
  258. package/lib/shell-components/services/feature.service.d.ts +19 -0
  259. package/lib/shell-components/services/google-analytics.service.d.ts +9 -0
  260. package/lib/shell-components/services/layout.service.d.ts +23 -0
  261. package/lib/shell-components/services/payment.service.d.ts +19 -0
  262. package/lib/shell-components/services/recentSearch.service.d.ts +16 -0
  263. package/lib/shell-components/services/shell.modules.service.d.ts +9 -0
  264. package/lib/shell-components/services/signalr.service.d.ts +25 -0
  265. package/lib/shell-components/services/theme.service.d.ts +14 -0
  266. package/lib/shell-components/shell.module.d.ts +117 -0
  267. package/lib/shell-components/shell.routing.d.ts +2 -0
  268. package/lib/shell-components/store/actions/authentication.actions.d.ts +327 -0
  269. package/lib/shell-components/store/actions/chat.actions.d.ts +399 -0
  270. package/lib/shell-components/store/actions/menuitems.actions.d.ts +51 -0
  271. package/lib/shell-components/store/actions/notification-validator.action.d.ts +25 -0
  272. package/lib/shell-components/store/actions/notifications.actions.d.ts +116 -0
  273. package/lib/shell-components/store/effects/authentication.effects.d.ts +54 -0
  274. package/lib/shell-components/store/effects/chat.effects.d.ts +30 -0
  275. package/lib/shell-components/store/effects/index.d.ts +1 -0
  276. package/lib/shell-components/store/effects/menuitems.effects.d.ts +17 -0
  277. package/lib/shell-components/store/effects/notification-validator.effects.d.ts +21 -0
  278. package/lib/shell-components/store/effects/notifications.effects.d.ts +23 -0
  279. package/lib/shell-components/store/reducers/authentication.reducers.d.ts +30 -0
  280. package/lib/shell-components/store/reducers/chat.reducers.d.ts +17 -0
  281. package/lib/shell-components/store/reducers/index.d.ts +59 -0
  282. package/lib/shell-components/store/reducers/menuitems.reducers.d.ts +11 -0
  283. package/lib/shell-components/store/reducers/notification-validator.reducers.d.ts +5 -0
  284. package/lib/shell-components/store/reducers/notifications.reducers.d.ts +10 -0
  285. package/package.json +22 -0
  286. package/public-api.d.ts +80 -0
  287. package/store/reducers/index.d.ts +24 -0
  288. package/thetradeengineorg1-snova-shell-module.d.ts +5 -0
@@ -0,0 +1,1051 @@
1
+ export declare const ApiUrls: {
2
+ GET_COMPANY_START_FUNCTIONALITY_ENABLED: string;
3
+ GetWebAppUsageTime: string;
4
+ GetTrackedInformationOfUserStory: string;
5
+ GetTotalTimeUsageOfApplicationsByUsers: string;
6
+ GetTimeUsageDrillDown: string;
7
+ GetEmployees: string;
8
+ GetAllAssignees: string;
9
+ GetEncashmentTypes: string;
10
+ GetBoardTypeById: string;
11
+ GetMaritalStatuses: string;
12
+ GetTimeZoneById: string;
13
+ SearchCanteenPurchases: string;
14
+ UpsertProjectAndChannelMember: string;
15
+ GetAllTimeZones: string;
16
+ GetProjectTypeById: string;
17
+ GetMasterLeaveTypes: string;
18
+ GetLeaveDetails: string;
19
+ GetEmployeeWorkingDays: string;
20
+ UpsertBranch: string;
21
+ UpsertNumberFormat: string;
22
+ GetTestRailReports: string;
23
+ GetEnableorDisableTimesheetButtons: string;
24
+ GetGoalBurnDownChart: string;
25
+ DownloadFile: string;
26
+ UploadTestCasesFromCsv: string;
27
+ GetFeedbackTypes: string;
28
+ DeleteTestSuite: string;
29
+ GetMyEmployeeId: string;
30
+ GetEmployeeReportToMembers: string;
31
+ GetProjectById: string;
32
+ ArchiveProject: string;
33
+ GetAllUsers: string;
34
+ SearchEmployeeEducationDetails: string;
35
+ UploadProfileImage: string;
36
+ UpsertCompanyLogo: string;
37
+ UpsertEmployeeBankDetails: string;
38
+ UpsertPayFrequency: string;
39
+ UpsertLanguage: string;
40
+ GetAllGoalReplanTypes: string;
41
+ AmendUserStoriesDeadline: string;
42
+ UpsertNationality: string;
43
+ GetTestSuiteSubSectionById: string;
44
+ GetAllApplicableMenuItems: string;
45
+ GetNotifications: string;
46
+ UpsertNotificationReadStatus: string;
47
+ SearchRateType: string;
48
+ GetDeveloperBurnDownChart: string;
49
+ GetUserStoryById: string;
50
+ UpsertEmployeeEducationDetails: string;
51
+ GetCommentById: string;
52
+ SearchEmployeeSkillDetails: string;
53
+ GetChannelMembers: string;
54
+ GetWorkById: string;
55
+ GetLeaveTypeById: string;
56
+ GetDeveloperGoalHeatMap: string;
57
+ GetDeveloperSpentTimeReportOnGoal: string;
58
+ GetAllPermittedEntityRoleFeatures: string;
59
+ GetButtonTypeById: string;
60
+ LoginUserForMobile: string;
61
+ GetGoalById: string;
62
+ GetAllNationalities: string;
63
+ UpsertMultipleUserStories: string;
64
+ UpsertState: string;
65
+ UpsertEmployeeAbsence: string;
66
+ GetLanguageFluencies: string;
67
+ GetSuppliersDropDown: string;
68
+ GetUserStorySubTypeById: string;
69
+ GetAllLeaveTypes: string;
70
+ UpsertEntityRoleFeature: string;
71
+ SearchUserStories: string;
72
+ GetEmployeeUserStories: string;
73
+ UpsertDateFormat: string;
74
+ UpsertSkills: string;
75
+ GetDesignations: string;
76
+ UpsertBreakType: string;
77
+ UpsertCompanysettings: string;
78
+ GetEmployeeDetails: string;
79
+ UpsertTestPlan: string;
80
+ UpsertEmploymentStatus: string;
81
+ UpsertEmployeeReportTo: string;
82
+ GetTestCasesByFilters: string;
83
+ SearchCompanies: string;
84
+ GetAllWorkFlowStatus: string;
85
+ GetWidgets: string;
86
+ UpsertLeaveFrequency: string;
87
+ UpsertExpenseCategory: string;
88
+ UpsertBugPriority: string;
89
+ UpsertCustomApplicationKeys: string;
90
+ SearchPermissionRegister: string;
91
+ GetLoggedInUser: string;
92
+ UpsertUserStoryReviewComment: string;
93
+ GetMonthlyFoodOrderReport: string;
94
+ UpsertProcessDashboardStatus: string;
95
+ SearchMainUseCases: string;
96
+ UpsertUserStoryReplanType: string;
97
+ UpsertTimeSheet: string;
98
+ GetUserStoriesByGoals: string;
99
+ GetSeatingArrangementById: string;
100
+ SearchEmployeeReportToDetails: string;
101
+ GetTestCasePriorityMasterDataById: string;
102
+ UpsertContractType: string;
103
+ SearchSeatingArrangement: string;
104
+ GetLeaveFormula: string;
105
+ GetAllGoalStatuses: string;
106
+ InsertUserStoryReplan: string;
107
+ GetTestSuiteCount: string;
108
+ GeBoardTypeById: string;
109
+ GetGoalActivityWithUserStories: string;
110
+ GetCompetencies: string;
111
+ UpsertTotalOffLeave: string;
112
+ GetLateEmployeeCount: string;
113
+ UpsertExpenseReport: string;
114
+ GetAllAssets: string;
115
+ GetAccessibleIpAddresses: string;
116
+ SearchTestSuiteSubSections: string;
117
+ GetUserStoryReplanTypes: string;
118
+ UpsertRelationship: string;
119
+ GetTestSuiteById: string;
120
+ DeleteProjectMember: string;
121
+ UpsertMultipleFiles: string;
122
+ GetAllConfigurationTypes: string;
123
+ GetExpenseCategoryById: string;
124
+ UpsertWorkFlowEligibleStatusTransition: string;
125
+ UpsertWidget: string;
126
+ GetProductDetailsById: string;
127
+ GoalReplanHistory: string;
128
+ GetUserGoalBurnDownChart: string;
129
+ UpsertProjectTags: string;
130
+ SearchEmployeeSalaryDetails: string;
131
+ GetMerchantById: string;
132
+ UpsertShiftTiming: string;
133
+ UpsertCompanyLocation: string;
134
+ GetAllConsideredHours: string;
135
+ UpsertCustomWidget: string;
136
+ UpsertWorkFlow: string;
137
+ Login: string;
138
+ UpsertFile: string;
139
+ GetActivelyRunningTeamLeadGoals: string;
140
+ GetEmployeePresence: string;
141
+ GetAllFoodOrders: string;
142
+ UpsertBoardTypeApi: string;
143
+ UpsertConfigurationType: string;
144
+ GetStates: string;
145
+ UpsertCurrencyConversion: string;
146
+ GetCanteenCreditByUserId: string;
147
+ UpsertReferenceType: string;
148
+ GetBugsBasedOnUserStories: string;
149
+ GetLineManagers: string;
150
+ UpsertWorkFlowStatus: string;
151
+ GetNationalities: string;
152
+ CreateNewChannel: string;
153
+ GetProjectOverViewDetails: string;
154
+ UpsertCustomApplication: string;
155
+ GetHumanTaskList: string;
156
+ GenericFormSubmittedData: string;
157
+ CompleteUserTask: string;
158
+ SearchUserStoryTags: string;
159
+ ArchiveGoal: string;
160
+ UpsertButtonType: string;
161
+ GetStatusReportingConfigurationForms: string;
162
+ GetAdhocWorkByUserStoryId: string;
163
+ GetRoleById: string;
164
+ GetTestCaseTypeMasterDataById: string;
165
+ GetContractTypes: string;
166
+ GetActivelyRunningProjectGoals: string;
167
+ GetPayGradeRates: string;
168
+ UpsertMilestone: string;
169
+ GetCompanysettings: string;
170
+ UpsertTestSuite: string;
171
+ InsertUserStoryLogTime: string;
172
+ UpsertUserstoryLogTimeBasedOnPunchCard: string;
173
+ GetTestCaseStatusMasterDataById: string;
174
+ GetTimeSheetPermissions: string;
175
+ SearchCompanyLocation: string;
176
+ GetCompanyById: string;
177
+ UpsertEmployeeShift: string;
178
+ SearchIndustries: string;
179
+ UpsertUserStoryScenario: string;
180
+ SearchGoals: string;
181
+ GetProcessDashboardByProjectId: string;
182
+ GetTestRailConfigurations: string;
183
+ UpsertProjectAndChannel: string;
184
+ GetFoodOrderById: string;
185
+ SearchTestPlans: string;
186
+ UpsertUserPunchCard: string;
187
+ UpsertTestCaseAutomationType: string;
188
+ UpsertTestRailConfiguration: string;
189
+ GetModulesList: string;
190
+ GetCompanyModulesList: string;
191
+ UpsertCompanyModule: string;
192
+ UploadTestRunsFromCsv: string;
193
+ GetTimeFormatById: string;
194
+ UpsertEmployeeMemberships: string;
195
+ GetCompanyLocationById: string;
196
+ GetTestTeamStatusReporting: string;
197
+ GetTestPlanReport: string;
198
+ AddEmployeesToChannel: string;
199
+ SearchEmployeeImmigrationDetails: string;
200
+ UpsertUserStoryReplan: string;
201
+ UpsertMerchant: string;
202
+ GetGoalsOverAllStatusByDashboardId: string;
203
+ IsUserAccessibleToFeature: string;
204
+ UpsertLicenseType: string;
205
+ ParkUserStory: string;
206
+ GetUserStoryScenarioHistory: string;
207
+ UpsertGenericFormType: string;
208
+ UpsertCustomFormSubmission: string;
209
+ GetIntroducedByOptionById: string;
210
+ GetEmployeeYearlyProductivityReport: string;
211
+ UpsertProjectFeature: string;
212
+ SearchFoodItems: string;
213
+ GetAllTestCaseAutomationTypes: string;
214
+ GetUserBreakDetails: string;
215
+ UpsertBreakDetails: string;
216
+ GetMyTimeSheetDetails: string;
217
+ UpsertLeaveSession: string;
218
+ GetAllTestCaseTemplates: string;
219
+ UpsertDesignation: string;
220
+ UpsertGenericForms: string;
221
+ DeletePermission: string;
222
+ DeleteTestRun: string;
223
+ GetAllPurchasedAssets: string;
224
+ UpsertFeedbackForm: string;
225
+ SearchByProduct: string;
226
+ GetContractTypeById: string;
227
+ UpsertRestrictionType: string;
228
+ UpsertGoalReplanType: string;
229
+ SearchNumberFormats: string;
230
+ GetPreviousUserStories: string;
231
+ GetPersonalChatOrChannel: string;
232
+ GetCompletedMilestoneCount: string;
233
+ UpsertCompany: string;
234
+ UpsertCompanyDetails: string;
235
+ CompanyDetails: string;
236
+ GetFileDetailById: string;
237
+ GetFolderDetailById: string;
238
+ UpsertConsideredHours: string;
239
+ GetSkills: string;
240
+ UpsertEmployeePersonalDetails: string;
241
+ GetAllButtonTypes: string;
242
+ GetAllBoardTypeApi: string;
243
+ GetProductivityIndexForDevelopers: string;
244
+ GetGenericFormTypes: string;
245
+ GetCustomFormSubmissions: string;
246
+ GetExpenseReportStatuses: string;
247
+ GetLeavesReport: string;
248
+ GetMilestoneDropdownList: string;
249
+ GetEmployeeWorkLogReport: string;
250
+ GetJobCategoryDetails: string;
251
+ GetTestRunReport: string;
252
+ GetEmployeeAttendanceByDay: string;
253
+ GetAllPermissions: string;
254
+ GetAllConfigurationSettings: string;
255
+ UpsertTestCaseStatusMasterValue: string;
256
+ GetDateFormatById: string;
257
+ GetAllStatuses: string;
258
+ GetStatusConfigurationOptions: string;
259
+ GetStatusById: string;
260
+ SearchOnboardedGoals: string;
261
+ GetEnableOrDisableTimeSheetButtonDetails: string;
262
+ UpsertTimeSheetPermissions: string;
263
+ GetAllLogTimeOptions: string;
264
+ GetCountries: string;
265
+ GetUserStoriesOverview: string;
266
+ GetPayGrades: string;
267
+ AddOrUpdateUserFcmToken: string;
268
+ GetAllSuppliers: string;
269
+ GetWorkFlowEligibleStatusTransitionById: string;
270
+ GetWorkAllocationByProjectId: string;
271
+ GetAllTransitionDeadlines: string;
272
+ SearchTestCasesByTestRunId: string;
273
+ DeleteCompanyModule: string;
274
+ GetTestCaseById: string;
275
+ GetConfigurationTypeById: string;
276
+ GetLeaveApplicabilty: string;
277
+ GetBoardTypeApiById: string;
278
+ SearchTestCaseDetailsById: string;
279
+ ReorderUserStories: string;
280
+ UpsertCanteenFoodItem: string;
281
+ GetSupplierById: string;
282
+ CreateStatusReport: string;
283
+ SearchTestSuiteSections: string;
284
+ UpsertAccessibleIpAddresses: string;
285
+ SearchEmployeeLanguageDetails: string;
286
+ GetExpenseReportStatusById: string;
287
+ SearchComments: string;
288
+ GetProductById: string;
289
+ GetPaymentMethod: string;
290
+ UpsertPermission: string;
291
+ UpsertExpenseReportStatus: string;
292
+ ForgotPassword: string;
293
+ GetUserChannels: string;
294
+ SendResetPasswordLink: string;
295
+ GetTestCasesCountByProject: string;
296
+ GetMyTeamMembersList: string;
297
+ GetAllProcessDashboardStatuses: string;
298
+ AssignPayGradeRates: string;
299
+ SearchTestCases: string;
300
+ UpsertAdhocWork: string;
301
+ GetQaPerformance: string;
302
+ UpsertWorkspace: string;
303
+ GetCompanyStructure: string;
304
+ UpsertRole: string;
305
+ ArchiveChannelMembers: string;
306
+ GetDepartmentById: string;
307
+ GetLateEmployee: string;
308
+ ChangePassword: string;
309
+ UploadTestSuitesFromXml: string;
310
+ GetDailyLogTimeReport: string;
311
+ UpsertHoliday: string;
312
+ UpsertFoodOrder: string;
313
+ UpsertDepartment: string;
314
+ UpsertFeedbackType: string;
315
+ UpdateTestRunResultForMultipleTestCases: string;
316
+ GetTestTeamStatusReportingProjectWise: string;
317
+ UpsertStatus: string;
318
+ GetAllTaskStatuses: string;
319
+ SearchEmployeeEmergencyContactDetails: string;
320
+ ArchiveCompletedUserStories: string;
321
+ UpsertReport: string;
322
+ InsertGoalReplan: string;
323
+ GetAllBranches: string;
324
+ UpsertSupplier: string;
325
+ UpsertEmployeeSalaryDetails: string;
326
+ PurchaseCanteenItem: string;
327
+ UpsertSubscriptionPaidByOption: string;
328
+ GetProjectFeatureById: string;
329
+ SearchCanteenCredit: string;
330
+ UpsertUser: string;
331
+ GetAllProjectMembers: string;
332
+ UpsertProjectType: string;
333
+ UpsertRateType: string;
334
+ GetGoalReplanTypeById: string;
335
+ ArchiveUserStory: string;
336
+ UpsertCurrency: string;
337
+ UpsertConfigurationSettings: string;
338
+ GetPermissionsById: string;
339
+ GetRecentChannelMessages: string;
340
+ UpdateMultipleTestCases: string;
341
+ SearchUserStoryPriorities: string;
342
+ GetRegions: string;
343
+ GetUserStoryStatusReport: string;
344
+ SearchGoalDetails: string;
345
+ GetProjectMemberById: string;
346
+ UpsertCompanyIntroducedByOption: string;
347
+ UpsertEmployeeWorkExperience: string;
348
+ GetAllTestCasePriorities: string;
349
+ UpsertGoalComments: string;
350
+ GetEducationLevelsDropDown: string;
351
+ GetMainUseCaseById: string;
352
+ UpsertReportingMethod: string;
353
+ SearchIndustryModule: string;
354
+ GetWorkspaces: string;
355
+ ValidateUserLocation: string;
356
+ GetTimeSheetHistoryDetails: string;
357
+ GetAllUserPermittedFeatures: string;
358
+ UpsertStatusReportingConfiguration: string;
359
+ UpsertProject: string;
360
+ Authorize: string;
361
+ GetEveryDayTargetStatus: string;
362
+ SearchEmployeeDependentContacts: string;
363
+ GetLeaveStatus: string;
364
+ GetUserCanteenPurchases: string;
365
+ GetTestRailActivity: string;
366
+ GetBugReport: string;
367
+ GetExpenseReportById: string;
368
+ UpsertLeaveType: string;
369
+ UpsertGenericFormSubmitted: string;
370
+ UpsertPublicGenericFormSubmitted: string;
371
+ UpsertPaymentType: string;
372
+ SearchTestSuites: string;
373
+ UpsertTestSuiteSection: string;
374
+ SendMessagesToUserOrChannel: string;
375
+ GetStatusReportings: string;
376
+ GetFeedTimeHistory: string;
377
+ SearchProjects: string;
378
+ GetProjects: string;
379
+ GetWorkSpaceFilters: string;
380
+ UpsertGoal: string;
381
+ GetAllPermissionReasons: string;
382
+ GetAllSeatingArrangement: string;
383
+ UpsertEmployeeJob: string;
384
+ GetCustomApplication: string;
385
+ GetFormHistory: string;
386
+ GetPublicCustomApplicationById: string;
387
+ UpsertMultipleTestCases: string;
388
+ UpsertTimeSheetPermissionReasons: string;
389
+ UpsertEmployee: string;
390
+ GetTimesheetHistoryDetails: string;
391
+ GetAllExpenseStatuses: string;
392
+ GetAllPermittedRoleFeatures: string;
393
+ UpsertEntityRole: string;
394
+ UpsertDashboard: string;
395
+ SearchUserStorySubTypes: string;
396
+ UpsertTimeZone: string;
397
+ GetAssetsAllocatedToIndividual: string;
398
+ UpsertEmployeeLanguages: string;
399
+ UpsertLeaveFormula: string;
400
+ SendReportAsPdf: string;
401
+ GetAppsettings: string;
402
+ GetWorkFlowEligibleStatusTransitions: string;
403
+ GetProcessDashboardStatusById: string;
404
+ GetAllRolesDropDown: string;
405
+ UpsertCountry: string;
406
+ GetDeveloperSpentTimeReport: string;
407
+ UpsertExpenseStatus: string;
408
+ GetTimeSheetDetails: string;
409
+ GetCurrencies: string;
410
+ GetTestPlanById: string;
411
+ GetGenericFormsByTypeId: string;
412
+ GetCurrentUserStories: string;
413
+ GetAssetCommentsAndHistory: string;
414
+ GetAllUsersAssets: string;
415
+ GetGoalReplanHistory: string;
416
+ GetLeavesById: string;
417
+ UpsertPayGrade: string;
418
+ GetMilestoneReportById: string;
419
+ SearchCanteenBalance: string;
420
+ GetUserStoryScenarios: string;
421
+ InsertMultipleUserStoriesUsingFile: string;
422
+ GetExpenseStatusById: string;
423
+ GetAllProducts: string;
424
+ DeleteLeave: string;
425
+ GetAllProjectTypes: string;
426
+ UpsertTestCasePriorityMasterValue: string;
427
+ GetRecentFoodOrders: string;
428
+ UpsertJobCategories: string;
429
+ SearchExpenseCategories: string;
430
+ CreateNewMessageType: string;
431
+ UpsertMainUseCase: string;
432
+ GetAllBankDetails: string;
433
+ SearchSupplier: string;
434
+ GetPayFrequency: string;
435
+ GetUsersForSlack: string;
436
+ GetMonthlyLeavesReport: string;
437
+ ResetPassword: string;
438
+ GetDamagedAssetsList: string;
439
+ AddMultipleExpenses: string;
440
+ UpsertLeaveStatus: string;
441
+ UploadTestRunsFromXml: string;
442
+ GetLicenceTypes: string;
443
+ GetProjectMemberDropdown: string;
444
+ GetStatusReportingConfigurations: string;
445
+ GetCurrencyList: string;
446
+ GetEmployeeWorkAllocation: string;
447
+ GetDrillDownUserStorybyUserId: string;
448
+ SearchDateFormats: string;
449
+ GetOpenTestRunCount: string;
450
+ GetCompanyDetails: string;
451
+ GetWidgetFilterQueryBuilder: string;
452
+ UpsertGoalTags: string;
453
+ DeleteProjectFeature: string;
454
+ ImportFormDataFromExcel: string;
455
+ SearchFoodOrder: string;
456
+ GetSectionsAndSubSections: string;
457
+ UpsertMembership: string;
458
+ SearchEmployeeLicenseDetails: string;
459
+ SearchUserStoryDetails: string;
460
+ GetMyProjectsWork: string;
461
+ GetEmployeeById: string;
462
+ LogOut: string;
463
+ GetProjectOverviewReport: string;
464
+ SearchAssets: string;
465
+ UpsertProjectMember: string;
466
+ UpsertWork: string;
467
+ GetTestRunsAndTestPlans: string;
468
+ GetTestRailOverviewCountsByProjectId: string;
469
+ GetMyEmployeeDetails: string;
470
+ GetUserStoryHistory: string;
471
+ SearchExpenseReports: string;
472
+ SearchGoalTags: string;
473
+ GetPaymentTypes: string;
474
+ GetGoalHeatmap: string;
475
+ DeleteMilestone: string;
476
+ GetSoftLabels: string;
477
+ SearchLogTimeHistory: string;
478
+ GetMyWorkOverViewDetails: string;
479
+ GetAllEntityRoleFeaturesByUserId: string;
480
+ UpsertAppSetting: string;
481
+ UpsertTestCase: string;
482
+ UpsertBoardType: string;
483
+ GetLeaveFrequency: string;
484
+ GetCompletedTestRunCount: string;
485
+ GetAllLeaveSessions: string;
486
+ GetExpenseReportSummary: string;
487
+ GetGenders: string;
488
+ GetWidgetDynamicQueryResult: string;
489
+ GetNumberFormatById: string;
490
+ GetReportingMethods: string;
491
+ UpsertTestRun: string;
492
+ UpsertUserStory: string;
493
+ UpdateMultipleUserStories: string;
494
+ GetAllProductDetails: string;
495
+ UpsertEmployeeEmergencyContactDetails: string;
496
+ SearchIntroducedByOptions: string;
497
+ DeleteTestSuiteSection: string;
498
+ GetGoalsToArchive: string;
499
+ UpdateMultipleUserStoriesGoal: string;
500
+ UploadFile: string;
501
+ UpsertAsset: string;
502
+ UpsertProductDetails: string;
503
+ ArchiveChannel: string;
504
+ UpsertEducationLevel: string;
505
+ UpsertLeaveApplicabilty: string;
506
+ GetExpenseById: string;
507
+ SearchEmployeeMembershipDetails: string;
508
+ UpsertEmploymentContract: string;
509
+ GetUserHistoricalWorkReport: string;
510
+ SearchProjectTags: string;
511
+ GetTransitionDeadlineById: string;
512
+ InsertTestCaseHistory: string;
513
+ UpsertUserStoryTags: string;
514
+ DeleteTestCase: string;
515
+ UpsertLeaves: string;
516
+ ApproveOrRejectLeave: string;
517
+ UpsertTestCaseTypeMasterValue: string;
518
+ GetLeaveSessionsById: string;
519
+ UpsertTestCaseTitle: string;
520
+ UpsertTestSuiteSubSection: string;
521
+ GetFutureUserStories: string;
522
+ GetAssetsCount: string;
523
+ GetEducationLevels: string;
524
+ GetAllWorkFlows: string;
525
+ UpsertEmployeeImmigrationDetails: string;
526
+ GetWorkflowById: string;
527
+ SearchSpentTimeReport: string;
528
+ GetAllBoardTypeUis: string;
529
+ GetCustomApplicationWorkflow: string;
530
+ GetCustomApplicationWorkflowTypes: string;
531
+ GetRecentIndividualMessages: string;
532
+ UploadTestSuiteCasesFromExcel: string;
533
+ UpsertEmployeeLicenceDetails: string;
534
+ GetCommentsByReceiverId: string;
535
+ GetAllBoardTypes: string;
536
+ GetMyCanteenBalance: string;
537
+ SearchMerchants: string;
538
+ GetCommentsCountByUserStoryId: string;
539
+ GetMandatoryFieldsBasedOnConfiguration: string;
540
+ GetIndustryById: string;
541
+ GetLanguages: string;
542
+ GetProfessionalTaxRanges: string;
543
+ GetTaxSlabs: string;
544
+ GetEmployeesBonusDetails: string;
545
+ GetEmployeesForBonus: string;
546
+ GetEmployeesPayTemplates: string;
547
+ GetEmployeePayrollConfiguration: string;
548
+ UpsertEmployeePayrollConfiguration: string;
549
+ GetPayrollStatusList: string;
550
+ UpsertPayrollStatus: string;
551
+ UpsertEmployeeBonusDetails: string;
552
+ UpsertTaxSlabs: string;
553
+ UpsertProfessionalTaxRanges: string;
554
+ GetAllEmployees: string;
555
+ GetAllEmployeesDetails: string;
556
+ GetUserById: string;
557
+ GetWorkflowStatusById: string;
558
+ DeleteWorkspace: string;
559
+ UpsertReportSeenStatus: string;
560
+ GetAllTestCaseStatuses: string;
561
+ SearchTestRuns: string;
562
+ UpsertPaymentMethod: string;
563
+ GetBugsCountForUserStory: string;
564
+ PrintAssets: string;
565
+ GetDepartments: string;
566
+ ParkGoal: string;
567
+ SearchAdhocWork: string;
568
+ SearchFile: string;
569
+ GetCustomApplicationKeys: string;
570
+ UploadFileAsync: string;
571
+ SearchEmployeeContractDetails: string;
572
+ UpsertTransitionDeadline: string;
573
+ GetBreakTypes: string;
574
+ GetTestSuiteCasesOverview: string;
575
+ SearchShiftTiming: string;
576
+ GetUserStoryStatuses: string;
577
+ UpsertUserStoryStatus: string;
578
+ UpsertComment: string;
579
+ UpdateAssigneeForMultipleAssets: string;
580
+ SearchProductDetails: string;
581
+ GetEntityRole: string;
582
+ GetGoalActivity: string;
583
+ SearchEmployeeWorkExperienceDetails: string;
584
+ UpsertChannel: string;
585
+ ChangeFoodOrderStatus: string;
586
+ GetTestCasesHierarchy: string;
587
+ UpsertSeating: string;
588
+ GetGenericFormKey: string;
589
+ GetCurrencyConversions: string;
590
+ SearchTimeFormats: string;
591
+ GetHolidays: string;
592
+ GetOpenMilestoneCount: string;
593
+ UpsertProcessDashboard: string;
594
+ UpsertRegion: string;
595
+ UpsertCustomApplicationWorkflow: string;
596
+ UpsertSoftLabels: string;
597
+ GetLatestDashboardId: string;
598
+ GetAllTestCaseTypes: string;
599
+ SearchExpenses: string;
600
+ SearchExpenseHistory: string;
601
+ UpsertUserStorySubType: string;
602
+ GetIndustryModuleById: string;
603
+ GetTestRunById: string;
604
+ CustomWidgetNameValidator: string;
605
+ GetAllRoles: string;
606
+ GetActTrackerRoleConfigurationRoles: string;
607
+ GetActTrackerScreenShotFrequencyRoles: string;
608
+ GetActTrackerRolePermissionRoles: string;
609
+ UpsertActTrackerRolePermission: string;
610
+ UpsertActTrackerRoleConfiguration: string;
611
+ UpsertActTrackerScreenShotFrequency: string;
612
+ GetActTrackerRoleDropDown: string;
613
+ getActTrackerAppUrlType: string;
614
+ UpsertActTrackerAppUrls: string;
615
+ GetActTrackerAppUrls: string;
616
+ GetActTrackerAppReportUsage: string;
617
+ GetActTrackerUserActivityScreenshots: string;
618
+ MultipleDeleteScreenShot: string;
619
+ GetActTrackerRecorder: string;
620
+ UpsertActivityTrackerConfigurationState: string;
621
+ GetActivityTrackerConfigurationState: string;
622
+ GetActTrackerUserStatus: string;
623
+ UpsertProduct: string;
624
+ GetMonthlyLogTimeReport: string;
625
+ UpsertEmployeeSkills: string;
626
+ UpsertTimeFormat: string;
627
+ UpsertEmployeeContactDetails: string;
628
+ UpsertCustomAppFilter: string;
629
+ UpsertIndustryModule: string;
630
+ GetFoodItemById: string;
631
+ GetSubscriptionPaidByOptions: string;
632
+ UpdatePassword: string;
633
+ UpdateMultipleUserStoriesDeadlineConfigurations: string;
634
+ UpdateUserStoryGoal: string;
635
+ UpsertCanteenCredit: string;
636
+ UpsertGenericFormKey: string;
637
+ GetFormTypes: string;
638
+ GetConsideredHoursById: string;
639
+ GetGoalComments: string;
640
+ GetTestSuiteSectionById: string;
641
+ GetReferenceTypes: string;
642
+ GetAllPermittedEntityFeatures: string;
643
+ SearchRelationship: string;
644
+ SearchTestRunCaseDetailsById: string;
645
+ GetMilestoneById: string;
646
+ UpdateChannel: string;
647
+ GetMemberships: string;
648
+ GetEmployeeOverViewDetails: string;
649
+ GetDashboards: string;
650
+ GetLoggingCompliance: string;
651
+ UpsertExpense: string;
652
+ ApproveOrRejectExpense: string;
653
+ UpdateTestCaseStatus: string;
654
+ UpsertCopyMoveCases: string;
655
+ AddOrUpdateResetPassword: string;
656
+ GetAllBugPriorities: string;
657
+ GetEmploymentStatus: string;
658
+ GetAllProjectFeaturesByProjectId: string;
659
+ GetUserStoriesWaitingForQaApproval: string;
660
+ GetUserStoriesForAllGoals: string;
661
+ SearchMilestones: string;
662
+ GetTestRailReportById: string;
663
+ GetEmployeeSpentTime: string;
664
+ SearchLeaves: string;
665
+ GetLeaveStatusSetHistory: string;
666
+ GetLeaveOverViewReport: string;
667
+ GetGenericFormSubmitted: string;
668
+ GetEmployeeDependentContactsById: string;
669
+ SearchAuditHistory: string;
670
+ SearchRoleFeatures: string;
671
+ GetAllFeatures: string;
672
+ GetMyAssets: string;
673
+ GetGenericForms: string;
674
+ GetRestrictionTypes: string;
675
+ GetUserFeedTimeHistory: string;
676
+ GetActivelyRunningProjectGoal: string;
677
+ GetMyProjectOverViewDetails: string;
678
+ GetStores: string;
679
+ UpsertStore: string;
680
+ UpsertFolder: string;
681
+ UpsertFileDetails: string;
682
+ SearchFolder: string;
683
+ ReviewFile: string;
684
+ UpsertFileName: string;
685
+ FolderTreeView: string;
686
+ GetFoldersAndFiles: string;
687
+ UpsertUploadFile: string;
688
+ UpsertAccessisbleIpAdresses: string;
689
+ GetAdhocUsersDropDown: string;
690
+ GetClients: string;
691
+ GetSecondaryContactDetails: string;
692
+ UpsertClientDetails: string;
693
+ GetSecondaryContacts: string;
694
+ UpsertSecondaryContactDetails: string;
695
+ MultipleClientDelete: string;
696
+ GetInvoices: string;
697
+ UpsertInvoice: string;
698
+ GetInvoiceGoals: string;
699
+ GetInvoiceTasks: string;
700
+ GetInvoiceItems: string;
701
+ GetInvoiceProjects: string;
702
+ GetInvoiceTax: string;
703
+ GetUserStoryTypeDropDown: string;
704
+ GetUserStoryLinkTypes: string;
705
+ UpsertUserStoryLink: string;
706
+ ArchiveUserStoryLink: string;
707
+ GetUserStoryLinks: string;
708
+ UpdateUserStoryLink: string;
709
+ UpsertGoalFilters: string;
710
+ ArchiveGoalFilter: string;
711
+ GetGoalFiltersList: string;
712
+ GetUsersDropDown: string;
713
+ SearchSystemCurrencies: string;
714
+ SearchSystemCountries: string;
715
+ SearchSystemRoles: string;
716
+ DeleteCompanyTestData: string;
717
+ GetTestTeamStatusReporing: string;
718
+ GetWidgetsBasedOnUser: string;
719
+ GetAssetDetailsById: string;
720
+ GetCustomWidgets: string;
721
+ GetUserStoryTypes: string;
722
+ GetCompanyTheme: string;
723
+ CompanyLogin: string;
724
+ GetUsersInitialData: string;
725
+ IsCompanyExists: string;
726
+ DeleteFile: string;
727
+ GetLinksCountForUserStory: string;
728
+ GetShiftTimingOptions: string;
729
+ GetShiftWeek: string;
730
+ GetShiftException: string;
731
+ UpsertShiftException: string;
732
+ UpsertShiftWeek: string;
733
+ UpdatePersistance: string;
734
+ GetPersistance: string;
735
+ GetEmployeeShift: string;
736
+ UpsertFeedBack: string;
737
+ GetFeedbacksList: string;
738
+ GetFeedbackById: string;
739
+ SubmitBug: string;
740
+ RequestMissingFeature: string;
741
+ ImportVerifiedApplication: string;
742
+ GetStoreConfiguration: string;
743
+ IsUsersStore: string;
744
+ UpsertCustomFieldForm: string;
745
+ SearchCustomFieldForms: string;
746
+ GetCustomFormFieldById: string;
747
+ UpsertDashboardVisuaizationType: string;
748
+ UpdateCustomFieldData: string;
749
+ GetSoftLabelConfigurations: string;
750
+ UpsertSoftLabelConfigurations: string;
751
+ GetSoftLabelById: string;
752
+ SetAsDefaultDashboardPersistance: string;
753
+ ResetToDefaultDashboard: string;
754
+ UpsertTemplate: string;
755
+ SearchTemplates: string;
756
+ GetTemplateById: string;
757
+ UpsertUserStoryType: string;
758
+ InsertTemplateDuplicate: string;
759
+ GetTemplatesUserStories: string;
760
+ GetTemplateUserStoryById: string;
761
+ InsertGoalByTemplateId: string;
762
+ InsertDuplicateDashboard: string;
763
+ SetDefaultDashboardForUser: string;
764
+ ReOrderTags: string;
765
+ GetTriggers: string;
766
+ GetWorkFlowTriggers: string;
767
+ UpsertWorkFlowTrigger: string;
768
+ GetWorkFlowsForTriggers: string;
769
+ DeleteTemplate: string;
770
+ GetPayRollComponents: string;
771
+ UpsertPayRollComponent: string;
772
+ GetPayRollTemplates: string;
773
+ UpsertPayRollTemplate: string;
774
+ GetPayRollTemplateConfigurations: string;
775
+ UpsertPayRollTemplateConfiguration: string;
776
+ GetResignationStatus: string;
777
+ UpsertResignationStatus: string;
778
+ GetPayRollRoleConfigurations: string;
779
+ UpsertPayRollRoleConfiguration: string;
780
+ GetPayRollBranchConfigurations: string;
781
+ UpsertPayRollBranchConfiguration: string;
782
+ GetPayRollGenderConfigurations: string;
783
+ UpsertPayRollGenderConfiguration: string;
784
+ GetPayRollMaritalStatusConfigurations: string;
785
+ UpsertPayRollMaritalStatusConfiguration: string;
786
+ UpsertEmployeeResignation: string;
787
+ GetEmployeesResignation: string;
788
+ GetComponents: string;
789
+ UpsertTaxAllowance: string;
790
+ GetTaxAllowances: string;
791
+ GetTaxAllowanceTypes: string;
792
+ UpsertEmployeeTaxAllowanceDetails: string;
793
+ GetEmployeeTaxAllowanceDetails: string;
794
+ GetPayrollRunList: string;
795
+ UpdatePayrollRunStatus: string;
796
+ RunPaymentForPayRollRun: string;
797
+ GetPayrollRunemployeeList: string;
798
+ GetPaySlipDetails: string;
799
+ InsertPayrollRun: string;
800
+ UpdatePayrollRunEmployeeStatus: string;
801
+ DeleteUserStoryType: string;
802
+ UpsertCustomTags: string;
803
+ UpsertTags: string;
804
+ GetCustomTags: string;
805
+ DeleteEntityRole: string;
806
+ DeleteRole: string;
807
+ GetCustomFieldHistory: string;
808
+ GetCustomApplicationTag: string;
809
+ SetCustomAppDashboardPersistanceForUser: string;
810
+ GetCustomAppDashboardPersistanceForUser: string;
811
+ GetObservationType: string;
812
+ UpsertObservationType: string;
813
+ SearchWorkItemsByLoggedInId: string;
814
+ UpdateDashboardName: string;
815
+ GetResidentObservations: string;
816
+ UpsertWorkspaceDashboardFilter: string;
817
+ GetWorkspaceDashboardFilters: string;
818
+ GetEmployeeLogTimeDetailsReport: string;
819
+ GetWorkItemsDetailsReport: string;
820
+ GetUsersSpentTimeDetailsReport: string;
821
+ GetWebHooks: string;
822
+ UpsertWebHook: string;
823
+ GetHtmlTemplate: string;
824
+ GetInductionConfigurations: string;
825
+ GetEmployeeInductions: string;
826
+ UpsertInductionConfiguration: string;
827
+ UpsertHtmlTemplate: string;
828
+ GetEntityDropDown: string;
829
+ UpsertLeaveEncashmentSettings: string;
830
+ GetLeaveEncashmentSettings: string;
831
+ UpsertEmployeeAccountDetails: string;
832
+ GetEmployeeAccountDetails: string;
833
+ UpsertFinancialYearConfigurations: string;
834
+ GetFinancialYearConfigurations: string;
835
+ UpsertEmployeeCreditorDetails: string;
836
+ GetEmployeeCreditorDetails: string;
837
+ UpsertPayRollCalculationConfigurations: string;
838
+ GetPayRollCalculationConfigurations: string;
839
+ GetPeriodTypes: string;
840
+ GetPayRollCalculationTypes: string;
841
+ GetEmployeePayrollDetailsList: string;
842
+ GetPayrollRunEmployeeCount: string;
843
+ DownloadPaySlip: string;
844
+ SendEmailWithPayslip: string;
845
+ GetCustomizedDashboardId: string;
846
+ UpsertDashboardFilter: string;
847
+ GetDashboardFilters: string;
848
+ GetAllDashboardFilters: string;
849
+ GetCustomApplicationTagKeys: string;
850
+ UpsertFolderDescription: string;
851
+ GetRateSheets: string;
852
+ GetRateSheetForNames: string;
853
+ UpsertRateSheet: string;
854
+ GetPeakHours: string;
855
+ UpsertPeakHour: string;
856
+ GetEmployeeRateSheetDetails: string;
857
+ GetWeekDays: string;
858
+ InsertEmployeeRatesheetDetails: string;
859
+ UpdateEmployeeRatesheetDetails: string;
860
+ SearchEmployeeRatesheetDetails: string;
861
+ CreateRosterSolutions: string;
862
+ CreateRosterPlan: string;
863
+ GetRosterPlans: string;
864
+ GetRosterPlanByRequest: string;
865
+ GetRosterSolutionByRequestId: string;
866
+ CheckRosterName: string;
867
+ GetRosterTemplatePlanByRequest: string;
868
+ GetInvoiceStatuses: string;
869
+ GetInvoiceHistory: string;
870
+ UpsertEstimate: string;
871
+ GetEstimates: string;
872
+ GetEstimateStatuses: string;
873
+ GetEstimateHistory: string;
874
+ DownloadOrSendPdfInvoice: string;
875
+ GetAccountTypes: string;
876
+ DownloadOrSendPdfExpense: string;
877
+ InsertInvoiceLogPayment: string;
878
+ DeleteFileByReferenceId: string;
879
+ UpsertSprints: string;
880
+ SearchSprints: string;
881
+ GetSprintById: string;
882
+ DeleteSprint: string;
883
+ UpsertReminder: string;
884
+ GetReminders: string;
885
+ GetSprintUserStories: string;
886
+ GetSprintUserStoryById: string;
887
+ GetAllUserStories: string;
888
+ GetSprintActivityWithUserStories: string;
889
+ GetSprintReplanHistory: string;
890
+ MoveGoalUserStoryToSprint: string;
891
+ GetTestRepoDataForJson: string;
892
+ ReorderTestCases: string;
893
+ MoveCasesToSection: string;
894
+ SearchAudits: string;
895
+ UpsertAudit: string;
896
+ SearchAuditCompliances: string;
897
+ UpsertAuditCompliance: string;
898
+ SearchAuditCategories: string;
899
+ UpsertAuditCategory: string;
900
+ GetAuditRelatedCounts: string;
901
+ SearchAuditConducts: string;
902
+ UpsertAuditConduct: string;
903
+ SearchMasterQuestionTypes: string;
904
+ SearchQuestionTypes: string;
905
+ UpsertQuestionType: string;
906
+ GetFinancialYearTypes: string;
907
+ DownloadEmployeeSalaryCertificate: string;
908
+ UpsertBadge: string;
909
+ GetBadges: string;
910
+ UpsertSignature: string;
911
+ GetSignature: string;
912
+ AssignBadgeToEmployee: string;
913
+ GetBadgesAssignedToEmployee: string;
914
+ UpsertAnnouncement: string;
915
+ UpsertPerformanceConfiguration: string;
916
+ GetPerformanceConfigurations: string;
917
+ UpsertPerformance: string;
918
+ GetPerformances: string;
919
+ UpsertPerformanceSubmission: string;
920
+ UpsertPerformanceSubmissionDetails: string;
921
+ GetPerformanceSubmissions: string;
922
+ GetPerformanceSubmissionDetails: string;
923
+ GetPerformanceReports: string;
924
+ GetAnnouncements: string;
925
+ GetEmployeeDetailsHistory: string;
926
+ GetOrganizationChartDetails: string;
927
+ CompleteSprint: string;
928
+ EmployeeUpload: string;
929
+ EmployeeUploadTemplate: string;
930
+ WorkItemUploadTemplate: string;
931
+ WorkItemUpload: string;
932
+ GetProductivityIndexUserStoriesForDevelopers: string;
933
+ GetSprintsBugReport: string;
934
+ UpsertMasterQuestionType: string;
935
+ UpsertAuditQuestion: string;
936
+ SearchAuditQuestions: string;
937
+ GetCategoriesAndSubcategories: string;
938
+ GetAuditQuestionHistory: string;
939
+ ReOrderQuestions: string;
940
+ CopyOrMoveQuestions: string;
941
+ GetQuestionsByFilters: string;
942
+ SearchAuditCategoriesForConducts: string;
943
+ upsertEmployeeTimeSheetPunchCard: string;
944
+ UpsertApproverEditTimeSheet: string;
945
+ updateEmployeeTimeSheetPunchCard: string;
946
+ getEmployeeTimeSheetPunchCardDetails: string;
947
+ getApproverTimeSheetSubmissions: string;
948
+ GetStatus: string;
949
+ GetTimeSheetApproveLineManagers: string;
950
+ GetEmployeeShiftWeekDays: string;
951
+ GetTimeSheetSubmissionTypes: string;
952
+ UpsertTimeSheetSubmission: string;
953
+ GetTimeSheetSubmissions: string;
954
+ MoveAuditQuestionsToAuditCategory: string;
955
+ GetShiftwiseEmployeeRoster: string;
956
+ SearchAuditConductQuestions: string;
957
+ GetESIMonthlyStatement: string;
958
+ GetSalaryRegister: string;
959
+ GetProfessionTaxMonthlyStatement: string;
960
+ GetProfessionTaxReturns: string;
961
+ GetSalaryBillRegister: string;
962
+ UpsertGrade: string;
963
+ GetGrades: string;
964
+ UpsertEmployeeGrade: string;
965
+ GetEmployeeGrades: string;
966
+ GetIncomeSalaryStatementDetail: string;
967
+ GetFormvPdf: string;
968
+ GetHourlyTdsConfiguration: string;
969
+ UpsertHourlyTdsConfiguration: string;
970
+ GetDaysOfWeekConfiguration: string;
971
+ UpsertDaysOfWeekConfiguration: string;
972
+ GetAllowanceTime: string;
973
+ UpsertAllowanceTime: string;
974
+ UpsertEmployeeLoanInstallment: string;
975
+ GetPayRollMonthlyDetails: string;
976
+ GetContractPaySettings: string;
977
+ UpsertContractPaySettings: string;
978
+ GetContractPayTypes: string;
979
+ GetPartsOfDays: string;
980
+ GetEmployeeLoans: string;
981
+ UpsertEmployeeLoan: string;
982
+ GetLoanTypes: string;
983
+ GetTdsSettings: string;
984
+ UpsertTdsSettings: string;
985
+ GetEmployeeLoanInstallment: string;
986
+ FinalPayRollRun: string;
987
+ GetPayRollRunEmployeeLeaveDetailsList: string;
988
+ GetPayRollRunTemplate: string;
989
+ SubmitAuditConductQuestion: string;
990
+ SubmitAuditConduct: string;
991
+ GetAppUsageCompleteReport: string;
992
+ SearchConductQuestionActions: string;
993
+ SearchSubmittedAudits: string;
994
+ SearchNonCompalintAudits: string;
995
+ UpsertAuditReport: string;
996
+ SearchAuditReports: string;
997
+ SendAuditReportAsPdf: string;
998
+ UpsertAuditTags: string;
999
+ GetTags: string;
1000
+ GetAppUsageUserStoryReport: string;
1001
+ GetAppUsageTimesheetReport: string;
1002
+ GetAuditOverallHistory: string;
1003
+ SearchTrainingCourses: string;
1004
+ UpsertTrainingCourse: string;
1005
+ SearchTrainingAssignments: string;
1006
+ ArchiveOrUnArchiveTrainingCourse: string;
1007
+ GetTrainingCourses: string;
1008
+ AssignOrUnAssignTrainingCourse: string;
1009
+ UploadFileChunks: string;
1010
+ CloneAudit: string;
1011
+ GetAssignmentStatuses: string;
1012
+ AddOrUpdateAssignmentStatus: string;
1013
+ GetAuditByBranch: string;
1014
+ GetAuditConductTimeline: string;
1015
+ GetEmployeeLoanStatementDocument: string;
1016
+ UpsertPayRollRunEmployeeComponent: string;
1017
+ GetRegisterOfWages: string;
1018
+ GetEmployeeESIReport: string;
1019
+ GetEmployeePFReport: string;
1020
+ GetTakeHomeAmount: string;
1021
+ GetUserCountry: string;
1022
+ GetSalaryforITOfAnEmployee: string;
1023
+ UpsertActivityTrackerUserConfiguration: string;
1024
+ GetAddOrEditCustomAppIsRequired: string;
1025
+ DeleteLinkedBug: string;
1026
+ GetCompanySettingsDetails: string;
1027
+ GetUserBranchDetails: string;
1028
+ UpsertUserProfileDetails: string;
1029
+ GetDocumentTemplates: string;
1030
+ UpsertDocumentTemplate: string;
1031
+ GenerateTemplateReport: string;
1032
+ GetAssignmentWorkflow: string;
1033
+ GetRateTags: string;
1034
+ GetRateTagForNames: string;
1035
+ UpsertRateTag: string;
1036
+ GetEmployeeRateTagDetails: string;
1037
+ InsertEmployeeRateTagDetails: string;
1038
+ UpdateEmployeeRateTagDetails: string;
1039
+ SearchEmployeeRateTagDetails: string;
1040
+ GetRateTagAllowanceTime: string;
1041
+ UpsertRateTagAllowanceTime: string;
1042
+ ExportSystemConfiguration: string;
1043
+ ImportSystemConfiguration: string;
1044
+ CancelSubscription: string;
1045
+ GetInvoiceDetails: string;
1046
+ GetActiveUsersCount: string;
1047
+ GetPurchasedLicensesCount: string;
1048
+ GetPaymentHistory: string;
1049
+ GetAllTransactionsDetails: string;
1050
+ GetIntroDetails: string;
1051
+ };