@en-solutions/tgm-client-sdk 1.6.21

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 (533) hide show
  1. package/LICENSE +19 -0
  2. package/README.md +788 -0
  3. package/esm2022/en-solutions-tgm-client-sdk.mjs +5 -0
  4. package/esm2022/lib/components/database-manager/database-manager/database-manager.component.mjs +308 -0
  5. package/esm2022/lib/components/database-manager/database-manager.module.mjs +66 -0
  6. package/esm2022/lib/components/database-manager/object-browser/object-browser.component.mjs +98 -0
  7. package/esm2022/lib/components/database-manager/query-editor/query-editor.component.mjs +196 -0
  8. package/esm2022/lib/components/database-manager/query-toolbar/query-toolbar.component.mjs +70 -0
  9. package/esm2022/lib/components/database-manager/record-detail/record-detail.component.mjs +112 -0
  10. package/esm2022/lib/components/database-manager/registry/entity-registry.mjs +512 -0
  11. package/esm2022/lib/components/database-manager/results-grid/results-grid.component.mjs +165 -0
  12. package/esm2022/lib/components/database-manager/services/entity-schema.service.mjs +91 -0
  13. package/esm2022/lib/components/database-manager/services/query-executor.service.mjs +204 -0
  14. package/esm2022/lib/components/database-manager/table-data-viewer/table-data-viewer.component.mjs +166 -0
  15. package/esm2022/lib/components/database-manager/table-structure/table-structure.component.mjs +42 -0
  16. package/esm2022/lib/components/database-manager/types/database-manager.types.mjs +6 -0
  17. package/esm2022/lib/components/reporting/export-button/export-button.component.mjs +203 -0
  18. package/esm2022/lib/components/reporting/generated-report-list/generated-report-list.component.mjs +285 -0
  19. package/esm2022/lib/components/reporting/report-definition-form/report-definition-form.component.mjs +206 -0
  20. package/esm2022/lib/components/reporting/report-definition-list/report-definition-list.component.mjs +252 -0
  21. package/esm2022/lib/components/reporting/report-generate-dialog/report-generate-dialog.component.mjs +122 -0
  22. package/esm2022/lib/components/reporting/report-stats/report-stats.component.mjs +164 -0
  23. package/esm2022/lib/components/reporting/report-template-list/report-template-list.component.mjs +114 -0
  24. package/esm2022/lib/components/reporting/reporting.module.mjs +60 -0
  25. package/esm2022/lib/components/video-call/incoming-call/incoming-call.component.mjs +80 -0
  26. package/esm2022/lib/components/video-call/services/livekit-room.service.mjs +142 -0
  27. package/esm2022/lib/components/video-call/services/video-call-signaling.service.mjs +42 -0
  28. package/esm2022/lib/components/video-call/services/video-call-state.service.mjs +52 -0
  29. package/esm2022/lib/components/video-call/types/video-call.types.mjs +2 -0
  30. package/esm2022/lib/components/video-call/video-call.module.mjs +42 -0
  31. package/esm2022/lib/components/video-call/video-controls/video-controls.component.mjs +33 -0
  32. package/esm2022/lib/components/video-call/video-participant/video-participant.component.mjs +68 -0
  33. package/esm2022/lib/components/video-call/video-room/video-room.component.mjs +89 -0
  34. package/esm2022/lib/core/auth-interceptor.mjs +33 -0
  35. package/esm2022/lib/core/client-interceptor.mjs +34 -0
  36. package/esm2022/lib/core/error-handler.mjs +32 -0
  37. package/esm2022/lib/core/http-client.service.mjs +254 -0
  38. package/esm2022/lib/core/websocket.service.mjs +185 -0
  39. package/esm2022/lib/models/admin/audit.models.mjs +2 -0
  40. package/esm2022/lib/models/admin/backup.models.mjs +2 -0
  41. package/esm2022/lib/models/admin/client.models.mjs +2 -0
  42. package/esm2022/lib/models/admin/email-provider.models.mjs +2 -0
  43. package/esm2022/lib/models/admin/erp.models.mjs +2 -0
  44. package/esm2022/lib/models/admin/identity-provider.models.mjs +2 -0
  45. package/esm2022/lib/models/admin/index.mjs +14 -0
  46. package/esm2022/lib/models/admin/messaging-provider.models.mjs +2 -0
  47. package/esm2022/lib/models/admin/platform-admin.models.mjs +2 -0
  48. package/esm2022/lib/models/admin/queue.models.mjs +2 -0
  49. package/esm2022/lib/models/admin/role.models.mjs +2 -0
  50. package/esm2022/lib/models/admin/sandbox.models.mjs +2 -0
  51. package/esm2022/lib/models/admin/ticket.models.mjs +2 -0
  52. package/esm2022/lib/models/admin/webhook.models.mjs +2 -0
  53. package/esm2022/lib/models/api/ai.models.mjs +2 -0
  54. package/esm2022/lib/models/api/aip.models.mjs +2 -0
  55. package/esm2022/lib/models/api/cat.models.mjs +2 -0
  56. package/esm2022/lib/models/api/company.models.mjs +2 -0
  57. package/esm2022/lib/models/api/compliance.models.mjs +2 -0
  58. package/esm2022/lib/models/api/component.models.mjs +2 -0
  59. package/esm2022/lib/models/api/cortex-edge.models.mjs +2 -0
  60. package/esm2022/lib/models/api/cortex-event.models.mjs +2 -0
  61. package/esm2022/lib/models/api/cortex-insight.models.mjs +2 -0
  62. package/esm2022/lib/models/api/cortex-node.models.mjs +2 -0
  63. package/esm2022/lib/models/api/custom-field.models.mjs +2 -0
  64. package/esm2022/lib/models/api/deferral.models.mjs +2 -0
  65. package/esm2022/lib/models/api/diagnostic-report.models.mjs +2 -0
  66. package/esm2022/lib/models/api/document.models.mjs +2 -0
  67. package/esm2022/lib/models/api/energy.models.mjs +2 -0
  68. package/esm2022/lib/models/api/failure.models.mjs +2 -0
  69. package/esm2022/lib/models/api/fleet.models.mjs +2 -0
  70. package/esm2022/lib/models/api/inspection.models.mjs +2 -0
  71. package/esm2022/lib/models/api/intervention.models.mjs +2 -0
  72. package/esm2022/lib/models/api/iot.models.mjs +2 -0
  73. package/esm2022/lib/models/api/knowledge.models.mjs +2 -0
  74. package/esm2022/lib/models/api/loto.models.mjs +2 -0
  75. package/esm2022/lib/models/api/maintenance-record.models.mjs +2 -0
  76. package/esm2022/lib/models/api/maintenance.models.mjs +2 -0
  77. package/esm2022/lib/models/api/material.models.mjs +2 -0
  78. package/esm2022/lib/models/api/media.models.mjs +2 -0
  79. package/esm2022/lib/models/api/misc.models.mjs +2 -0
  80. package/esm2022/lib/models/api/project.models.mjs +2 -0
  81. package/esm2022/lib/models/api/quality.models.mjs +2 -0
  82. package/esm2022/lib/models/api/reporting.models.mjs +3 -0
  83. package/esm2022/lib/models/api/reservoir-websocket.models.mjs +17 -0
  84. package/esm2022/lib/models/api/reservoir.models.mjs +2 -0
  85. package/esm2022/lib/models/api/search.models.mjs +2 -0
  86. package/esm2022/lib/models/api/sensor.models.mjs +2 -0
  87. package/esm2022/lib/models/api/unit.models.mjs +2 -0
  88. package/esm2022/lib/models/api/user.models.mjs +2 -0
  89. package/esm2022/lib/models/api/warranty.models.mjs +2 -0
  90. package/esm2022/lib/models/api/work-permit.models.mjs +2 -0
  91. package/esm2022/lib/models/api/workflow.models.mjs +2 -0
  92. package/esm2022/lib/models/auth/index.mjs +4 -0
  93. package/esm2022/lib/models/auth/login.models.mjs +2 -0
  94. package/esm2022/lib/models/auth/sso.models.mjs +2 -0
  95. package/esm2022/lib/models/auth/totp.models.mjs +2 -0
  96. package/esm2022/lib/models/base.models.mjs +99 -0
  97. package/esm2022/lib/models/chat/chat.models.mjs +2 -0
  98. package/esm2022/lib/models/enums/cat.enums.mjs +17 -0
  99. package/esm2022/lib/models/enums/energy.enums.mjs +8 -0
  100. package/esm2022/lib/models/enums/erp.enums.mjs +5 -0
  101. package/esm2022/lib/models/enums/index.mjs +15 -0
  102. package/esm2022/lib/models/enums/inspection.enums.mjs +7 -0
  103. package/esm2022/lib/models/enums/loto.enums.mjs +25 -0
  104. package/esm2022/lib/models/enums/misc.enums.mjs +19 -0
  105. package/esm2022/lib/models/enums/quality.enums.mjs +22 -0
  106. package/esm2022/lib/models/enums/reservoir.enums.mjs +13 -0
  107. package/esm2022/lib/models/enums/sso.enums.mjs +3 -0
  108. package/esm2022/lib/models/enums/status.enums.mjs +41 -0
  109. package/esm2022/lib/models/enums/time.enums.mjs +5 -0
  110. package/esm2022/lib/models/enums/type.enums.mjs +45 -0
  111. package/esm2022/lib/models/enums/user.enums.mjs +6 -0
  112. package/esm2022/lib/models/enums/work-permit.enums.mjs +33 -0
  113. package/esm2022/lib/models/index.mjs +42 -0
  114. package/esm2022/lib/models/realtime/realtime-event.models.mjs +9 -0
  115. package/esm2022/lib/models/video/video-call.models.mjs +2 -0
  116. package/esm2022/lib/services/admin/activity-log.service.mjs +28 -0
  117. package/esm2022/lib/services/admin/announcement.service.mjs +37 -0
  118. package/esm2022/lib/services/admin/article-admin.service.mjs +37 -0
  119. package/esm2022/lib/services/admin/audit-log.service.mjs +53 -0
  120. package/esm2022/lib/services/admin/backup.service.mjs +28 -0
  121. package/esm2022/lib/services/admin/cache-admin.service.mjs +64 -0
  122. package/esm2022/lib/services/admin/client-admin.service.mjs +101 -0
  123. package/esm2022/lib/services/admin/client-api-key.service.mjs +31 -0
  124. package/esm2022/lib/services/admin/client-ocr.service.mjs +28 -0
  125. package/esm2022/lib/services/admin/client-usage.service.mjs +31 -0
  126. package/esm2022/lib/services/admin/data-export.service.mjs +19 -0
  127. package/esm2022/lib/services/admin/document-admin.service.mjs +40 -0
  128. package/esm2022/lib/services/admin/email-admin.service.mjs +28 -0
  129. package/esm2022/lib/services/admin/email-provider.service.mjs +58 -0
  130. package/esm2022/lib/services/admin/erp-admin.service.mjs +111 -0
  131. package/esm2022/lib/services/admin/identity-provider.service.mjs +46 -0
  132. package/esm2022/lib/services/admin/impersonation.service.mjs +19 -0
  133. package/esm2022/lib/services/admin/index.mjs +31 -0
  134. package/esm2022/lib/services/admin/messaging-provider.service.mjs +55 -0
  135. package/esm2022/lib/services/admin/notification.service.mjs +31 -0
  136. package/esm2022/lib/services/admin/platform-admin.service.mjs +34 -0
  137. package/esm2022/lib/services/admin/platform-webhook.service.mjs +34 -0
  138. package/esm2022/lib/services/admin/queue-admin.service.mjs +55 -0
  139. package/esm2022/lib/services/admin/role-admin.service.mjs +81 -0
  140. package/esm2022/lib/services/admin/sandbox-admin.service.mjs +34 -0
  141. package/esm2022/lib/services/admin/scheduler-admin.service.mjs +34 -0
  142. package/esm2022/lib/services/admin/subscription.service.mjs +28 -0
  143. package/esm2022/lib/services/admin/system-health.service.mjs +22 -0
  144. package/esm2022/lib/services/admin/user-admin.service.mjs +67 -0
  145. package/esm2022/lib/services/admin/user-permission.service.mjs +40 -0
  146. package/esm2022/lib/services/admin/webhook-admin.service.mjs +61 -0
  147. package/esm2022/lib/services/api/agent.service.mjs +29 -0
  148. package/esm2022/lib/services/api/ai-feedback.service.mjs +17 -0
  149. package/esm2022/lib/services/api/ai.service.mjs +66 -0
  150. package/esm2022/lib/services/api/aip-analysis.service.mjs +20 -0
  151. package/esm2022/lib/services/api/aip-financial.service.mjs +29 -0
  152. package/esm2022/lib/services/api/aip-geographic.service.mjs +30 -0
  153. package/esm2022/lib/services/api/aip-network.service.mjs +29 -0
  154. package/esm2022/lib/services/api/aip-performance.service.mjs +29 -0
  155. package/esm2022/lib/services/api/aip-resource.service.mjs +23 -0
  156. package/esm2022/lib/services/api/aip-workflow.service.mjs +32 -0
  157. package/esm2022/lib/services/api/aip.service.mjs +158 -0
  158. package/esm2022/lib/services/api/alert.service.mjs +26 -0
  159. package/esm2022/lib/services/api/anomaly-detection.service.mjs +40 -0
  160. package/esm2022/lib/services/api/asset-lifecycle.service.mjs +78 -0
  161. package/esm2022/lib/services/api/audit-entry.service.mjs +22 -0
  162. package/esm2022/lib/services/api/base-crud.service.mjs +37 -0
  163. package/esm2022/lib/services/api/bid.service.mjs +17 -0
  164. package/esm2022/lib/services/api/budget.service.mjs +17 -0
  165. package/esm2022/lib/services/api/bulk-operation.service.mjs +65 -0
  166. package/esm2022/lib/services/api/capex-project.service.mjs +17 -0
  167. package/esm2022/lib/services/api/cat.service.mjs +77 -0
  168. package/esm2022/lib/services/api/client-article.service.mjs +23 -0
  169. package/esm2022/lib/services/api/community.service.mjs +41 -0
  170. package/esm2022/lib/services/api/company-material-type.service.mjs +17 -0
  171. package/esm2022/lib/services/api/company-material.service.mjs +17 -0
  172. package/esm2022/lib/services/api/company.service.mjs +30 -0
  173. package/esm2022/lib/services/api/compliance.service.mjs +74 -0
  174. package/esm2022/lib/services/api/component-info.service.mjs +17 -0
  175. package/esm2022/lib/services/api/component-location.service.mjs +17 -0
  176. package/esm2022/lib/services/api/component.service.mjs +53 -0
  177. package/esm2022/lib/services/api/cortex-event.service.mjs +17 -0
  178. package/esm2022/lib/services/api/cortex-insight.service.mjs +23 -0
  179. package/esm2022/lib/services/api/cortex-node.service.mjs +17 -0
  180. package/esm2022/lib/services/api/cortex.service.mjs +29 -0
  181. package/esm2022/lib/services/api/custom-field.service.mjs +70 -0
  182. package/esm2022/lib/services/api/custom.service.mjs +43 -0
  183. package/esm2022/lib/services/api/dashboard.service.mjs +44 -0
  184. package/esm2022/lib/services/api/deferral.service.mjs +54 -0
  185. package/esm2022/lib/services/api/department.service.mjs +17 -0
  186. package/esm2022/lib/services/api/device-gateway.service.mjs +33 -0
  187. package/esm2022/lib/services/api/diagnostic-report.service.mjs +23 -0
  188. package/esm2022/lib/services/api/digital-twin.service.mjs +56 -0
  189. package/esm2022/lib/services/api/document.service.mjs +53 -0
  190. package/esm2022/lib/services/api/dynamic-crud.service.mjs +67 -0
  191. package/esm2022/lib/services/api/energy-analytics.service.mjs +42 -0
  192. package/esm2022/lib/services/api/energy-production.service.mjs +17 -0
  193. package/esm2022/lib/services/api/energy.service.mjs +91 -0
  194. package/esm2022/lib/services/api/entity-comment.service.mjs +31 -0
  195. package/esm2022/lib/services/api/event.service.mjs +17 -0
  196. package/esm2022/lib/services/api/export.service.mjs +216 -0
  197. package/esm2022/lib/services/api/extension.service.mjs +56 -0
  198. package/esm2022/lib/services/api/failure.service.mjs +53 -0
  199. package/esm2022/lib/services/api/fleet.service.mjs +140 -0
  200. package/esm2022/lib/services/api/inactive-component.service.mjs +17 -0
  201. package/esm2022/lib/services/api/index.mjs +101 -0
  202. package/esm2022/lib/services/api/inspection.service.mjs +29 -0
  203. package/esm2022/lib/services/api/intervention-request.service.mjs +17 -0
  204. package/esm2022/lib/services/api/intervention.service.mjs +17 -0
  205. package/esm2022/lib/services/api/knowledge.service.mjs +209 -0
  206. package/esm2022/lib/services/api/license.service.mjs +25 -0
  207. package/esm2022/lib/services/api/location.service.mjs +17 -0
  208. package/esm2022/lib/services/api/log.service.mjs +17 -0
  209. package/esm2022/lib/services/api/login-history.service.mjs +17 -0
  210. package/esm2022/lib/services/api/maintenance-plan.service.mjs +17 -0
  211. package/esm2022/lib/services/api/maintenance-record.service.mjs +17 -0
  212. package/esm2022/lib/services/api/material-consumable.service.mjs +41 -0
  213. package/esm2022/lib/services/api/material-instrument.service.mjs +29 -0
  214. package/esm2022/lib/services/api/material-item.service.mjs +53 -0
  215. package/esm2022/lib/services/api/material-tooling.service.mjs +41 -0
  216. package/esm2022/lib/services/api/measurement-unit.service.mjs +17 -0
  217. package/esm2022/lib/services/api/misc-crud.service.mjs +329 -0
  218. package/esm2022/lib/services/api/note.service.mjs +37 -0
  219. package/esm2022/lib/services/api/outage-resource.service.mjs +28 -0
  220. package/esm2022/lib/services/api/plant-data.service.mjs +31 -0
  221. package/esm2022/lib/services/api/procurement.service.mjs +53 -0
  222. package/esm2022/lib/services/api/project.service.mjs +17 -0
  223. package/esm2022/lib/services/api/property-template.service.mjs +17 -0
  224. package/esm2022/lib/services/api/quality.service.mjs +29 -0
  225. package/esm2022/lib/services/api/recurring-event.service.mjs +17 -0
  226. package/esm2022/lib/services/api/reporting.service.mjs +117 -0
  227. package/esm2022/lib/services/api/reservoir-data.service.mjs +19 -0
  228. package/esm2022/lib/services/api/reservoir.service.mjs +209 -0
  229. package/esm2022/lib/services/api/room.service.mjs +17 -0
  230. package/esm2022/lib/services/api/sandbox.service.mjs +62 -0
  231. package/esm2022/lib/services/api/scheduled-report.service.mjs +17 -0
  232. package/esm2022/lib/services/api/search.service.mjs +77 -0
  233. package/esm2022/lib/services/api/sensor.service.mjs +36 -0
  234. package/esm2022/lib/services/api/sla-policy.service.mjs +17 -0
  235. package/esm2022/lib/services/api/sla.service.mjs +17 -0
  236. package/esm2022/lib/services/api/threshold-alert-rule.service.mjs +17 -0
  237. package/esm2022/lib/services/api/ticket.service.mjs +73 -0
  238. package/esm2022/lib/services/api/time-entry.service.mjs +17 -0
  239. package/esm2022/lib/services/api/todo.service.mjs +17 -0
  240. package/esm2022/lib/services/api/unit.service.mjs +17 -0
  241. package/esm2022/lib/services/api/upload.service.mjs +84 -0
  242. package/esm2022/lib/services/api/user.service.mjs +107 -0
  243. package/esm2022/lib/services/api/warehouse.service.mjs +29 -0
  244. package/esm2022/lib/services/api/warranty.service.mjs +29 -0
  245. package/esm2022/lib/services/api/work-order.service.mjs +28 -0
  246. package/esm2022/lib/services/api/work-permit.service.mjs +17 -0
  247. package/esm2022/lib/services/api/workflow.service.mjs +86 -0
  248. package/esm2022/lib/services/auth/auth.service.mjs +97 -0
  249. package/esm2022/lib/services/auth/index.mjs +5 -0
  250. package/esm2022/lib/services/auth/platform-auth.service.mjs +39 -0
  251. package/esm2022/lib/services/auth/sso-auth.service.mjs +46 -0
  252. package/esm2022/lib/services/auth/totp.service.mjs +34 -0
  253. package/esm2022/lib/services/chat/chat-rest.service.mjs +104 -0
  254. package/esm2022/lib/services/chat/chat-websocket.service.mjs +70 -0
  255. package/esm2022/lib/services/chat/index.mjs +3 -0
  256. package/esm2022/lib/services/index.mjs +8 -0
  257. package/esm2022/lib/services/realtime/index.mjs +2 -0
  258. package/esm2022/lib/services/realtime/realtime-event.service.mjs +187 -0
  259. package/esm2022/lib/services/reservoir/index.mjs +2 -0
  260. package/esm2022/lib/services/reservoir/reservoir-websocket.service.mjs +105 -0
  261. package/esm2022/lib/services/video/index.mjs +3 -0
  262. package/esm2022/lib/services/video/video-call-rest.service.mjs +42 -0
  263. package/esm2022/lib/services/video/video-call-websocket.service.mjs +55 -0
  264. package/esm2022/lib/tgm-sdk.config.mjs +32 -0
  265. package/esm2022/lib/tgm-sdk.module.mjs +38 -0
  266. package/esm2022/public-api.mjs +52 -0
  267. package/fesm2022/en-solutions-tgm-client-sdk.mjs +11029 -0
  268. package/fesm2022/en-solutions-tgm-client-sdk.mjs.map +1 -0
  269. package/index.d.ts +5 -0
  270. package/lib/components/database-manager/database-manager/database-manager.component.d.ts +70 -0
  271. package/lib/components/database-manager/database-manager.module.d.ts +15 -0
  272. package/lib/components/database-manager/object-browser/object-browser.component.d.ts +35 -0
  273. package/lib/components/database-manager/query-editor/query-editor.component.d.ts +31 -0
  274. package/lib/components/database-manager/query-toolbar/query-toolbar.component.d.ts +23 -0
  275. package/lib/components/database-manager/record-detail/record-detail.component.d.ts +35 -0
  276. package/lib/components/database-manager/registry/entity-registry.d.ts +16 -0
  277. package/lib/components/database-manager/results-grid/results-grid.component.d.ts +62 -0
  278. package/lib/components/database-manager/services/entity-schema.service.d.ts +37 -0
  279. package/lib/components/database-manager/services/query-executor.service.d.ts +57 -0
  280. package/lib/components/database-manager/table-data-viewer/table-data-viewer.component.d.ts +54 -0
  281. package/lib/components/database-manager/table-structure/table-structure.component.d.ts +16 -0
  282. package/lib/components/database-manager/types/database-manager.types.d.ts +71 -0
  283. package/lib/components/reporting/export-button/export-button.component.d.ts +50 -0
  284. package/lib/components/reporting/generated-report-list/generated-report-list.component.d.ts +93 -0
  285. package/lib/components/reporting/report-definition-form/report-definition-form.component.d.ts +65 -0
  286. package/lib/components/reporting/report-definition-list/report-definition-list.component.d.ts +90 -0
  287. package/lib/components/reporting/report-generate-dialog/report-generate-dialog.component.d.ts +46 -0
  288. package/lib/components/reporting/report-stats/report-stats.component.d.ts +47 -0
  289. package/lib/components/reporting/report-template-list/report-template-list.component.d.ts +39 -0
  290. package/lib/components/reporting/reporting.module.d.ts +14 -0
  291. package/lib/components/video-call/incoming-call/incoming-call.component.d.ts +20 -0
  292. package/lib/components/video-call/services/livekit-room.service.d.ts +28 -0
  293. package/lib/components/video-call/services/video-call-signaling.service.d.ts +21 -0
  294. package/lib/components/video-call/services/video-call-state.service.d.ts +25 -0
  295. package/lib/components/video-call/types/video-call.types.d.ts +49 -0
  296. package/lib/components/video-call/video-call.module.d.ts +11 -0
  297. package/lib/components/video-call/video-controls/video-controls.component.d.ts +13 -0
  298. package/lib/components/video-call/video-participant/video-participant.component.d.ts +17 -0
  299. package/lib/components/video-call/video-room/video-room.component.d.ts +30 -0
  300. package/lib/core/auth-interceptor.d.ts +13 -0
  301. package/lib/core/client-interceptor.d.ts +14 -0
  302. package/lib/core/error-handler.d.ts +13 -0
  303. package/lib/core/http-client.service.d.ts +61 -0
  304. package/lib/core/websocket.service.d.ts +37 -0
  305. package/lib/models/admin/audit.models.d.ts +73 -0
  306. package/lib/models/admin/backup.models.d.ts +101 -0
  307. package/lib/models/admin/client.models.d.ts +99 -0
  308. package/lib/models/admin/email-provider.models.d.ts +56 -0
  309. package/lib/models/admin/erp.models.d.ts +188 -0
  310. package/lib/models/admin/identity-provider.models.d.ts +1 -0
  311. package/lib/models/admin/index.d.ts +13 -0
  312. package/lib/models/admin/messaging-provider.models.d.ts +49 -0
  313. package/lib/models/admin/platform-admin.models.d.ts +33 -0
  314. package/lib/models/admin/queue.models.d.ts +54 -0
  315. package/lib/models/admin/role.models.d.ts +50 -0
  316. package/lib/models/admin/sandbox.models.d.ts +54 -0
  317. package/lib/models/admin/ticket.models.d.ts +48 -0
  318. package/lib/models/admin/webhook.models.d.ts +65 -0
  319. package/lib/models/api/ai.models.d.ts +75 -0
  320. package/lib/models/api/aip.models.d.ts +545 -0
  321. package/lib/models/api/cat.models.d.ts +260 -0
  322. package/lib/models/api/company.models.d.ts +125 -0
  323. package/lib/models/api/compliance.models.d.ts +74 -0
  324. package/lib/models/api/component.models.d.ts +294 -0
  325. package/lib/models/api/cortex-edge.models.d.ts +14 -0
  326. package/lib/models/api/cortex-event.models.d.ts +12 -0
  327. package/lib/models/api/cortex-insight.models.d.ts +25 -0
  328. package/lib/models/api/cortex-node.models.d.ts +10 -0
  329. package/lib/models/api/custom-field.models.d.ts +37 -0
  330. package/lib/models/api/deferral.models.d.ts +81 -0
  331. package/lib/models/api/diagnostic-report.models.d.ts +29 -0
  332. package/lib/models/api/document.models.d.ts +95 -0
  333. package/lib/models/api/energy.models.d.ts +210 -0
  334. package/lib/models/api/failure.models.d.ts +171 -0
  335. package/lib/models/api/fleet.models.d.ts +193 -0
  336. package/lib/models/api/inspection.models.d.ts +110 -0
  337. package/lib/models/api/intervention.models.d.ts +254 -0
  338. package/lib/models/api/iot.models.d.ts +15 -0
  339. package/lib/models/api/knowledge.models.d.ts +340 -0
  340. package/lib/models/api/loto.models.d.ts +51 -0
  341. package/lib/models/api/maintenance-record.models.d.ts +100 -0
  342. package/lib/models/api/maintenance.models.d.ts +188 -0
  343. package/lib/models/api/material.models.d.ts +261 -0
  344. package/lib/models/api/media.models.d.ts +106 -0
  345. package/lib/models/api/misc.models.d.ts +929 -0
  346. package/lib/models/api/project.models.d.ts +118 -0
  347. package/lib/models/api/quality.models.d.ts +153 -0
  348. package/lib/models/api/reporting.models.d.ts +76 -0
  349. package/lib/models/api/reservoir-websocket.models.d.ts +48 -0
  350. package/lib/models/api/reservoir.models.d.ts +274 -0
  351. package/lib/models/api/search.models.d.ts +30 -0
  352. package/lib/models/api/sensor.models.d.ts +117 -0
  353. package/lib/models/api/unit.models.d.ts +82 -0
  354. package/lib/models/api/user.models.d.ts +253 -0
  355. package/lib/models/api/warranty.models.d.ts +51 -0
  356. package/lib/models/api/work-permit.models.d.ts +70 -0
  357. package/lib/models/api/workflow.models.d.ts +52 -0
  358. package/lib/models/auth/index.d.ts +3 -0
  359. package/lib/models/auth/login.models.d.ts +134 -0
  360. package/lib/models/auth/sso.models.d.ts +136 -0
  361. package/lib/models/auth/totp.models.d.ts +19 -0
  362. package/lib/models/base.models.d.ts +90 -0
  363. package/lib/models/chat/chat.models.d.ts +171 -0
  364. package/lib/models/enums/cat.enums.d.ts +114 -0
  365. package/lib/models/enums/energy.enums.d.ts +50 -0
  366. package/lib/models/enums/erp.enums.d.ts +49 -0
  367. package/lib/models/enums/index.d.ts +14 -0
  368. package/lib/models/enums/inspection.enums.d.ts +61 -0
  369. package/lib/models/enums/loto.enums.d.ts +41 -0
  370. package/lib/models/enums/misc.enums.d.ts +151 -0
  371. package/lib/models/enums/quality.enums.d.ts +25 -0
  372. package/lib/models/enums/reservoir.enums.d.ts +80 -0
  373. package/lib/models/enums/sso.enums.d.ts +15 -0
  374. package/lib/models/enums/status.enums.d.ts +296 -0
  375. package/lib/models/enums/time.enums.d.ts +51 -0
  376. package/lib/models/enums/type.enums.d.ts +324 -0
  377. package/lib/models/enums/user.enums.d.ts +31 -0
  378. package/lib/models/enums/work-permit.enums.d.ts +56 -0
  379. package/lib/models/index.d.ts +41 -0
  380. package/lib/models/realtime/realtime-event.models.d.ts +95 -0
  381. package/lib/models/video/video-call.models.d.ts +65 -0
  382. package/lib/services/admin/activity-log.service.d.ts +13 -0
  383. package/lib/services/admin/announcement.service.d.ts +17 -0
  384. package/lib/services/admin/article-admin.service.d.ts +17 -0
  385. package/lib/services/admin/audit-log.service.d.ts +22 -0
  386. package/lib/services/admin/backup.service.d.ts +15 -0
  387. package/lib/services/admin/cache-admin.service.d.ts +26 -0
  388. package/lib/services/admin/client-admin.service.d.ts +38 -0
  389. package/lib/services/admin/client-api-key.service.d.ts +15 -0
  390. package/lib/services/admin/client-ocr.service.d.ts +14 -0
  391. package/lib/services/admin/client-usage.service.d.ts +15 -0
  392. package/lib/services/admin/data-export.service.d.ts +10 -0
  393. package/lib/services/admin/document-admin.service.d.ts +18 -0
  394. package/lib/services/admin/email-admin.service.d.ts +14 -0
  395. package/lib/services/admin/email-provider.service.d.ts +25 -0
  396. package/lib/services/admin/erp-admin.service.d.ts +41 -0
  397. package/lib/services/admin/identity-provider.service.d.ts +21 -0
  398. package/lib/services/admin/impersonation.service.d.ts +11 -0
  399. package/lib/services/admin/index.d.ts +30 -0
  400. package/lib/services/admin/messaging-provider.service.d.ts +24 -0
  401. package/lib/services/admin/notification.service.d.ts +15 -0
  402. package/lib/services/admin/platform-admin.service.d.ts +17 -0
  403. package/lib/services/admin/platform-webhook.service.d.ts +16 -0
  404. package/lib/services/admin/queue-admin.service.d.ts +24 -0
  405. package/lib/services/admin/role-admin.service.d.ts +37 -0
  406. package/lib/services/admin/sandbox-admin.service.d.ts +17 -0
  407. package/lib/services/admin/scheduler-admin.service.d.ts +61 -0
  408. package/lib/services/admin/subscription.service.d.ts +15 -0
  409. package/lib/services/admin/system-health.service.d.ts +11 -0
  410. package/lib/services/admin/user-admin.service.d.ts +27 -0
  411. package/lib/services/admin/user-permission.service.d.ts +18 -0
  412. package/lib/services/admin/webhook-admin.service.d.ts +26 -0
  413. package/lib/services/api/agent.service.d.ts +16 -0
  414. package/lib/services/api/ai-feedback.service.d.ts +9 -0
  415. package/lib/services/api/ai.service.d.ts +36 -0
  416. package/lib/services/api/aip-analysis.service.d.ts +13 -0
  417. package/lib/services/api/aip-financial.service.d.ts +16 -0
  418. package/lib/services/api/aip-geographic.service.d.ts +16 -0
  419. package/lib/services/api/aip-network.service.d.ts +16 -0
  420. package/lib/services/api/aip-performance.service.d.ts +16 -0
  421. package/lib/services/api/aip-resource.service.d.ts +14 -0
  422. package/lib/services/api/aip-workflow.service.d.ts +24 -0
  423. package/lib/services/api/aip.service.d.ts +73 -0
  424. package/lib/services/api/alert.service.d.ts +15 -0
  425. package/lib/services/api/anomaly-detection.service.d.ts +26 -0
  426. package/lib/services/api/asset-lifecycle.service.d.ts +29 -0
  427. package/lib/services/api/audit-entry.service.d.ts +13 -0
  428. package/lib/services/api/base-crud.service.d.ts +18 -0
  429. package/lib/services/api/bid.service.d.ts +10 -0
  430. package/lib/services/api/budget.service.d.ts +10 -0
  431. package/lib/services/api/bulk-operation.service.d.ts +26 -0
  432. package/lib/services/api/capex-project.service.d.ts +10 -0
  433. package/lib/services/api/cat.service.d.ts +40 -0
  434. package/lib/services/api/client-article.service.d.ts +14 -0
  435. package/lib/services/api/community.service.d.ts +21 -0
  436. package/lib/services/api/company-material-type.service.d.ts +10 -0
  437. package/lib/services/api/company-material.service.d.ts +9 -0
  438. package/lib/services/api/company.service.d.ts +15 -0
  439. package/lib/services/api/compliance.service.d.ts +35 -0
  440. package/lib/services/api/component-info.service.d.ts +10 -0
  441. package/lib/services/api/component-location.service.d.ts +10 -0
  442. package/lib/services/api/component.service.d.ts +32 -0
  443. package/lib/services/api/cortex-event.service.d.ts +10 -0
  444. package/lib/services/api/cortex-insight.service.d.ts +14 -0
  445. package/lib/services/api/cortex-node.service.d.ts +10 -0
  446. package/lib/services/api/cortex.service.d.ts +15 -0
  447. package/lib/services/api/custom-field.service.d.ts +33 -0
  448. package/lib/services/api/custom.service.d.ts +23 -0
  449. package/lib/services/api/dashboard.service.d.ts +18 -0
  450. package/lib/services/api/deferral.service.d.ts +29 -0
  451. package/lib/services/api/department.service.d.ts +9 -0
  452. package/lib/services/api/device-gateway.service.d.ts +16 -0
  453. package/lib/services/api/diagnostic-report.service.d.ts +14 -0
  454. package/lib/services/api/digital-twin.service.d.ts +29 -0
  455. package/lib/services/api/document.service.d.ts +28 -0
  456. package/lib/services/api/dynamic-crud.service.d.ts +41 -0
  457. package/lib/services/api/energy-analytics.service.d.ts +16 -0
  458. package/lib/services/api/energy-production.service.d.ts +10 -0
  459. package/lib/services/api/energy.service.d.ts +46 -0
  460. package/lib/services/api/entity-comment.service.d.ts +16 -0
  461. package/lib/services/api/event.service.d.ts +10 -0
  462. package/lib/services/api/export.service.d.ts +48 -0
  463. package/lib/services/api/extension.service.d.ts +24 -0
  464. package/lib/services/api/failure.service.d.ts +28 -0
  465. package/lib/services/api/fleet.service.d.ts +71 -0
  466. package/lib/services/api/inactive-component.service.d.ts +10 -0
  467. package/lib/services/api/index.d.ts +101 -0
  468. package/lib/services/api/inspection.service.d.ts +16 -0
  469. package/lib/services/api/intervention-request.service.d.ts +10 -0
  470. package/lib/services/api/intervention.service.d.ts +10 -0
  471. package/lib/services/api/knowledge.service.d.ts +106 -0
  472. package/lib/services/api/license.service.d.ts +14 -0
  473. package/lib/services/api/location.service.d.ts +9 -0
  474. package/lib/services/api/log.service.d.ts +9 -0
  475. package/lib/services/api/login-history.service.d.ts +10 -0
  476. package/lib/services/api/maintenance-plan.service.d.ts +10 -0
  477. package/lib/services/api/maintenance-record.service.d.ts +10 -0
  478. package/lib/services/api/material-consumable.service.d.ts +22 -0
  479. package/lib/services/api/material-instrument.service.d.ts +16 -0
  480. package/lib/services/api/material-item.service.d.ts +28 -0
  481. package/lib/services/api/material-tooling.service.d.ts +22 -0
  482. package/lib/services/api/measurement-unit.service.d.ts +10 -0
  483. package/lib/services/api/misc-crud.service.d.ts +167 -0
  484. package/lib/services/api/note.service.d.ts +14 -0
  485. package/lib/services/api/outage-resource.service.d.ts +15 -0
  486. package/lib/services/api/plant-data.service.d.ts +14 -0
  487. package/lib/services/api/procurement.service.d.ts +27 -0
  488. package/lib/services/api/project.service.d.ts +10 -0
  489. package/lib/services/api/property-template.service.d.ts +10 -0
  490. package/lib/services/api/quality.service.d.ts +16 -0
  491. package/lib/services/api/recurring-event.service.d.ts +10 -0
  492. package/lib/services/api/reporting.service.d.ts +38 -0
  493. package/lib/services/api/reservoir-data.service.d.ts +10 -0
  494. package/lib/services/api/reservoir.service.d.ts +109 -0
  495. package/lib/services/api/room.service.d.ts +10 -0
  496. package/lib/services/api/sandbox.service.d.ts +26 -0
  497. package/lib/services/api/scheduled-report.service.d.ts +10 -0
  498. package/lib/services/api/search.service.d.ts +54 -0
  499. package/lib/services/api/sensor.service.d.ts +17 -0
  500. package/lib/services/api/sla-policy.service.d.ts +10 -0
  501. package/lib/services/api/sla.service.d.ts +10 -0
  502. package/lib/services/api/threshold-alert-rule.service.d.ts +10 -0
  503. package/lib/services/api/ticket.service.d.ts +60 -0
  504. package/lib/services/api/time-entry.service.d.ts +10 -0
  505. package/lib/services/api/todo.service.d.ts +10 -0
  506. package/lib/services/api/unit.service.d.ts +10 -0
  507. package/lib/services/api/upload.service.d.ts +50 -0
  508. package/lib/services/api/user.service.d.ts +59 -0
  509. package/lib/services/api/warehouse.service.d.ts +15 -0
  510. package/lib/services/api/warranty.service.d.ts +16 -0
  511. package/lib/services/api/work-order.service.d.ts +17 -0
  512. package/lib/services/api/work-permit.service.d.ts +10 -0
  513. package/lib/services/api/workflow.service.d.ts +33 -0
  514. package/lib/services/auth/auth.service.d.ts +33 -0
  515. package/lib/services/auth/index.d.ts +4 -0
  516. package/lib/services/auth/platform-auth.service.d.ts +16 -0
  517. package/lib/services/auth/sso-auth.service.d.ts +21 -0
  518. package/lib/services/auth/totp.service.d.ts +18 -0
  519. package/lib/services/chat/chat-rest.service.d.ts +40 -0
  520. package/lib/services/chat/chat-websocket.service.d.ts +34 -0
  521. package/lib/services/chat/index.d.ts +2 -0
  522. package/lib/services/index.d.ts +7 -0
  523. package/lib/services/realtime/index.d.ts +1 -0
  524. package/lib/services/realtime/realtime-event.service.d.ts +137 -0
  525. package/lib/services/reservoir/index.d.ts +1 -0
  526. package/lib/services/reservoir/reservoir-websocket.service.d.ts +47 -0
  527. package/lib/services/video/index.d.ts +2 -0
  528. package/lib/services/video/video-call-rest.service.d.ts +19 -0
  529. package/lib/services/video/video-call-websocket.service.d.ts +31 -0
  530. package/lib/tgm-sdk.config.d.ts +36 -0
  531. package/lib/tgm-sdk.module.d.ts +13 -0
  532. package/package.json +40 -0
  533. package/public-api.d.ts +42 -0
@@ -0,0 +1,296 @@
1
+ export declare const AlertStatus: {
2
+ readonly ACTIVE: "ACTIVE";
3
+ readonly ACKNOWLEDGED: "ACKNOWLEDGED";
4
+ readonly RESOLVED: "RESOLVED";
5
+ readonly ESCALATED: "ESCALATED";
6
+ };
7
+ export type AlertStatus = (typeof AlertStatus)[keyof typeof AlertStatus];
8
+ export declare const AlertSeverity: {
9
+ readonly INFO: "INFO";
10
+ readonly WARNING: "WARNING";
11
+ readonly CRITICAL: "CRITICAL";
12
+ readonly EMERGENCY: "EMERGENCY";
13
+ };
14
+ export type AlertSeverity = (typeof AlertSeverity)[keyof typeof AlertSeverity];
15
+ export declare const AnnouncementType: {
16
+ readonly INFO: "INFO";
17
+ readonly WARNING: "WARNING";
18
+ readonly MAINTENANCE: "MAINTENANCE";
19
+ readonly RELEASE: "RELEASE";
20
+ readonly CRITICAL: "CRITICAL";
21
+ };
22
+ export type AnnouncementType = (typeof AnnouncementType)[keyof typeof AnnouncementType];
23
+ export declare const AncillaryServiceStatus: {
24
+ readonly ACTIVE: "ACTIVE";
25
+ readonly EXPIRED: "EXPIRED";
26
+ readonly SUSPENDED: "SUSPENDED";
27
+ readonly PENDING: "PENDING";
28
+ };
29
+ export type AncillaryServiceStatus = (typeof AncillaryServiceStatus)[keyof typeof AncillaryServiceStatus];
30
+ export declare const ApiTokenStatus: {
31
+ readonly ACTIVE: "ACTIVE";
32
+ readonly REVOKED: "REVOKED";
33
+ readonly EXPIRED: "EXPIRED";
34
+ };
35
+ export type ApiTokenStatus = (typeof ApiTokenStatus)[keyof typeof ApiTokenStatus];
36
+ export declare const ApprovalStatus: {
37
+ readonly PENDING: "PENDING";
38
+ readonly APPROVED: "APPROVED";
39
+ readonly REJECTED: "REJECTED";
40
+ };
41
+ export type ApprovalStatus = (typeof ApprovalStatus)[keyof typeof ApprovalStatus];
42
+ export declare const AssetLifecycleStatus: {
43
+ readonly PENDING: "PENDING";
44
+ readonly IN_PROGRESS: "IN_PROGRESS";
45
+ readonly COMPLETED: "COMPLETED";
46
+ };
47
+ export type AssetLifecycleStatus = (typeof AssetLifecycleStatus)[keyof typeof AssetLifecycleStatus];
48
+ export declare const AssetLifecycleStage: {
49
+ readonly PLANNING: "PLANNING";
50
+ readonly PROCUREMENT: "PROCUREMENT";
51
+ readonly INSTALLATION: "INSTALLATION";
52
+ readonly COMMISSIONING: "COMMISSIONING";
53
+ readonly OPERATIONAL: "OPERATIONAL";
54
+ readonly DEGRADED: "DEGRADED";
55
+ readonly MAINTENANCE: "MAINTENANCE";
56
+ readonly DECOMMISSIONED: "DECOMMISSIONED";
57
+ readonly DISPOSED: "DISPOSED";
58
+ };
59
+ export type AssetLifecycleStage = (typeof AssetLifecycleStage)[keyof typeof AssetLifecycleStage];
60
+ export declare const AssetPhase: {
61
+ readonly ACQUISITION: "ACQUISITION";
62
+ readonly OPERATIONAL: "OPERATIONAL";
63
+ readonly OUT_OF_SERVICE: "OUT_OF_SERVICE";
64
+ readonly REHABILITATION: "REHABILITATION";
65
+ readonly DISPOSAL: "DISPOSAL";
66
+ };
67
+ export type AssetPhase = (typeof AssetPhase)[keyof typeof AssetPhase];
68
+ export declare const BackupStatus: {
69
+ readonly PENDING: "PENDING";
70
+ readonly IN_PROGRESS: "IN_PROGRESS";
71
+ readonly COMPLETED: "COMPLETED";
72
+ readonly FAILED: "FAILED";
73
+ };
74
+ export type BackupStatus = (typeof BackupStatus)[keyof typeof BackupStatus];
75
+ export declare const CAPAStatus: {
76
+ readonly IDENTIFIED: "IDENTIFIED";
77
+ readonly PLANNED: "PLANNED";
78
+ readonly IN_PROGRESS: "IN_PROGRESS";
79
+ readonly IMPLEMENTED: "IMPLEMENTED";
80
+ readonly VERIFIED: "VERIFIED";
81
+ readonly CLOSED: "CLOSED";
82
+ readonly CANCELLED: "CANCELLED";
83
+ };
84
+ export type CAPAStatus = (typeof CAPAStatus)[keyof typeof CAPAStatus];
85
+ export declare const ClientStatus: {
86
+ readonly PENDING: "PENDING";
87
+ readonly PROVISIONING: "PROVISIONING";
88
+ readonly ACTIVE: "ACTIVE";
89
+ readonly SUSPENDED: "SUSPENDED";
90
+ readonly TERMINATED: "TERMINATED";
91
+ };
92
+ export type ClientStatus = (typeof ClientStatus)[keyof typeof ClientStatus];
93
+ export declare const ComplianceSubmissionStatus: {
94
+ readonly DRAFT: "DRAFT";
95
+ readonly SUBMITTED: "SUBMITTED";
96
+ readonly UNDER_REVIEW: "UNDER_REVIEW";
97
+ readonly APPROVED: "APPROVED";
98
+ readonly REJECTED: "REJECTED";
99
+ readonly REVISION_REQUIRED: "REVISION_REQUIRED";
100
+ };
101
+ export type ComplianceSubmissionStatus = (typeof ComplianceSubmissionStatus)[keyof typeof ComplianceSubmissionStatus];
102
+ export declare const ComponentInfoStatus: {
103
+ readonly ACTIVE: "ACTIVE";
104
+ readonly INACTIVE: "INACTIVE";
105
+ };
106
+ export type ComponentInfoStatus = (typeof ComponentInfoStatus)[keyof typeof ComponentInfoStatus];
107
+ export declare const CurtailmentStatus: {
108
+ readonly ACTIVE: "ACTIVE";
109
+ readonly COMPLETED: "COMPLETED";
110
+ readonly CANCELLED: "CANCELLED";
111
+ };
112
+ export type CurtailmentStatus = (typeof CurtailmentStatus)[keyof typeof CurtailmentStatus];
113
+ export declare const DriverStatus: {
114
+ readonly ACTIVE: "ACTIVE";
115
+ readonly INACTIVE: "INACTIVE";
116
+ readonly SUSPENDED: "SUSPENDED";
117
+ };
118
+ export type DriverStatus = (typeof DriverStatus)[keyof typeof DriverStatus];
119
+ export declare const ExtensionStatus: {
120
+ readonly REGISTERED: "REGISTERED";
121
+ readonly ENABLED: "ENABLED";
122
+ readonly DISABLED: "DISABLED";
123
+ };
124
+ export type ExtensionStatus = (typeof ExtensionStatus)[keyof typeof ExtensionStatus];
125
+ export declare const GridConnectionStatus: {
126
+ readonly ACTIVE: "ACTIVE";
127
+ readonly INACTIVE: "INACTIVE";
128
+ readonly UNDER_MAINTENANCE: "UNDER_MAINTENANCE";
129
+ readonly DISCONNECTED: "DISCONNECTED";
130
+ };
131
+ export type GridConnectionStatus = (typeof GridConnectionStatus)[keyof typeof GridConnectionStatus];
132
+ export declare const MaintenanceStatus: {
133
+ readonly SCHEDULED: "SCHEDULED";
134
+ readonly IN_PROGRESS: "IN_PROGRESS";
135
+ readonly COMPLETED: "COMPLETED";
136
+ readonly CANCELLED: "CANCELLED";
137
+ };
138
+ export type MaintenanceStatus = (typeof MaintenanceStatus)[keyof typeof MaintenanceStatus];
139
+ export declare const MeteringParameterStatus: {
140
+ readonly PENDING: "pending";
141
+ readonly ON_GOING: "onGoing";
142
+ readonly GENERATED: "generated";
143
+ };
144
+ export type MeteringParameterStatus = (typeof MeteringParameterStatus)[keyof typeof MeteringParameterStatus];
145
+ export declare const MigrationStatus: {
146
+ readonly PENDING: "PENDING";
147
+ readonly IN_PROGRESS: "IN_PROGRESS";
148
+ readonly SUCCESS: "SUCCESS";
149
+ readonly FAILED: "FAILED";
150
+ };
151
+ export type MigrationStatus = (typeof MigrationStatus)[keyof typeof MigrationStatus];
152
+ export declare const ObligationStatus: {
153
+ readonly ACTIVE: "ACTIVE";
154
+ readonly COMPLETED: "COMPLETED";
155
+ readonly OVERDUE: "OVERDUE";
156
+ readonly WAIVED: "WAIVED";
157
+ };
158
+ export type ObligationStatus = (typeof ObligationStatus)[keyof typeof ObligationStatus];
159
+ export declare const OcrProcessingStatus: {
160
+ readonly PENDING: "PENDING";
161
+ readonly PROCESSING: "PROCESSING";
162
+ readonly COMPLETED: "COMPLETED";
163
+ readonly FAILED: "FAILED";
164
+ };
165
+ export type OcrProcessingStatus = (typeof OcrProcessingStatus)[keyof typeof OcrProcessingStatus];
166
+ export declare const OutageStatus: {
167
+ readonly ACTIVE: "ACTIVE";
168
+ readonly COMPLETED: "COMPLETED";
169
+ readonly CANCELLED: "CANCELLED";
170
+ };
171
+ export type OutageStatus = (typeof OutageStatus)[keyof typeof OutageStatus];
172
+ export declare const PermitStatus: {
173
+ readonly ACTIVE: "ACTIVE";
174
+ readonly EXPIRED: "EXPIRED";
175
+ readonly SUSPENDED: "SUSPENDED";
176
+ readonly REVOKED: "REVOKED";
177
+ readonly PENDING_RENEWAL: "PENDING_RENEWAL";
178
+ };
179
+ export type PermitStatus = (typeof PermitStatus)[keyof typeof PermitStatus];
180
+ export declare const PlantStatus: {
181
+ readonly IN_OPERATION: "IN_OPERATION";
182
+ readonly UNDER_CONSTRUCTION: "UNDER_CONSTRUCTION";
183
+ readonly PROJECT_STAGE: "PROJECT_STAGE";
184
+ readonly OUT_OF_SERVICE: "OUT_OF_SERVICE";
185
+ };
186
+ export type PlantStatus = (typeof PlantStatus)[keyof typeof PlantStatus];
187
+ export declare const PresenceStatus: {
188
+ readonly ONLINE: "ONLINE";
189
+ readonly AWAY: "AWAY";
190
+ readonly DND: "DND";
191
+ };
192
+ export type PresenceStatus = (typeof PresenceStatus)[keyof typeof PresenceStatus];
193
+ export declare const RCAStatus: {
194
+ readonly DRAFT: "draft";
195
+ readonly IN_PROGRESS: "inProgress";
196
+ readonly COMPLETED: "completed";
197
+ readonly PENDING_REVIEW: "pendingReview";
198
+ readonly UNDER_REVIEW: "underReview";
199
+ readonly APPROVED: "approved";
200
+ readonly REJECTED: "rejected";
201
+ readonly CLOSED: "closed";
202
+ readonly ARCHIVED: "archived";
203
+ };
204
+ export type RCAStatus = (typeof RCAStatus)[keyof typeof RCAStatus];
205
+ export declare const SandboxStatus: {
206
+ readonly PENDING: "PENDING";
207
+ readonly PROVISIONING: "PROVISIONING";
208
+ readonly ACTIVE: "ACTIVE";
209
+ readonly SUSPENDED: "SUSPENDED";
210
+ };
211
+ export type SandboxStatus = (typeof SandboxStatus)[keyof typeof SandboxStatus];
212
+ export declare const SubscriptionStatus: {
213
+ readonly ACTIVE: "ACTIVE";
214
+ readonly TRIAL: "TRIAL";
215
+ readonly PAST_DUE: "PAST_DUE";
216
+ readonly CANCELLED: "CANCELLED";
217
+ readonly SUSPENDED: "SUSPENDED";
218
+ };
219
+ export type SubscriptionStatus = (typeof SubscriptionStatus)[keyof typeof SubscriptionStatus];
220
+ export declare const TicketStatus: {
221
+ readonly OPEN: "OPEN";
222
+ readonly IN_PROGRESS: "IN_PROGRESS";
223
+ readonly WAITING: "WAITING";
224
+ readonly RESOLVED: "RESOLVED";
225
+ readonly CLOSED: "CLOSED";
226
+ };
227
+ export type TicketStatus = (typeof TicketStatus)[keyof typeof TicketStatus];
228
+ export declare const TrackingStatus: {
229
+ readonly ONLINE: "ONLINE";
230
+ readonly OFFLINE: "OFFLINE";
231
+ readonly IDLE: "IDLE";
232
+ readonly MOVING: "MOVING";
233
+ };
234
+ export type TrackingStatus = (typeof TrackingStatus)[keyof typeof TrackingStatus];
235
+ export declare const TripStatus: {
236
+ readonly IN_PROGRESS: "IN_PROGRESS";
237
+ readonly COMPLETED: "COMPLETED";
238
+ };
239
+ export type TripStatus = (typeof TripStatus)[keyof typeof TripStatus];
240
+ export declare const UnitStatus: {
241
+ readonly SHUTDOWN: "shutdown";
242
+ readonly IN_OPERATION: "inOperation";
243
+ readonly UNDER_CONSTRUCTION: "underConstruction";
244
+ readonly PROJECT_STAGE: "projectStage";
245
+ };
246
+ export type UnitStatus = (typeof UnitStatus)[keyof typeof UnitStatus];
247
+ export declare const VehicleStatus: {
248
+ readonly AVAILABLE: "AVAILABLE";
249
+ readonly IN_USE: "IN_USE";
250
+ readonly MAINTENANCE: "MAINTENANCE";
251
+ };
252
+ export type VehicleStatus = (typeof VehicleStatus)[keyof typeof VehicleStatus];
253
+ export declare const WarrantyStatus: {
254
+ readonly ACTIVE: "ACTIVE";
255
+ readonly EXPIRED: "EXPIRED";
256
+ readonly CANCELLED: "CANCELLED";
257
+ readonly PENDING: "PENDING";
258
+ };
259
+ export type WarrantyStatus = (typeof WarrantyStatus)[keyof typeof WarrantyStatus];
260
+ export declare const WarrantyClaimStatus: {
261
+ readonly DRAFT: "DRAFT";
262
+ readonly SUBMITTED: "SUBMITTED";
263
+ readonly UNDER_REVIEW: "UNDER_REVIEW";
264
+ readonly APPROVED: "APPROVED";
265
+ readonly REJECTED: "REJECTED";
266
+ readonly PAID: "PAID";
267
+ readonly CLOSED: "CLOSED";
268
+ };
269
+ export type WarrantyClaimStatus = (typeof WarrantyClaimStatus)[keyof typeof WarrantyClaimStatus];
270
+ export declare const WorkflowStatus: {
271
+ readonly PENDING: "PENDING";
272
+ readonly IN_REVIEW: "IN_REVIEW";
273
+ readonly APPROVED: "APPROVED";
274
+ readonly REJECTED: "REJECTED";
275
+ readonly ESCALATED: "ESCALATED";
276
+ readonly CANCELLED: "CANCELLED";
277
+ readonly COMPLETED: "COMPLETED";
278
+ };
279
+ export type WorkflowStatus = (typeof WorkflowStatus)[keyof typeof WorkflowStatus];
280
+ export declare const InterventionRequestStatus: {
281
+ readonly ON_HOLD: "OnHold";
282
+ readonly ACCEPTED: "Accepted";
283
+ readonly REJECTED: "Rejected";
284
+ };
285
+ export type InterventionRequestStatus = (typeof InterventionRequestStatus)[keyof typeof InterventionRequestStatus];
286
+ export declare const WorkOrderStatus: {
287
+ readonly COMPLETED: "Completed";
288
+ readonly IN_PROGRESS: "InProgress";
289
+ readonly PENDING: "Pending";
290
+ readonly CANCELLED: "Cancelled";
291
+ readonly PLANNED_NOT_SCHEDULED: "plannedNotScheduled";
292
+ readonly DRAFT: "Draft";
293
+ readonly PLANNED_SCHEDULED: "plannedScheduled";
294
+ readonly CLOSED: "Closed";
295
+ };
296
+ export type WorkOrderStatus = (typeof WorkOrderStatus)[keyof typeof WorkOrderStatus];
@@ -0,0 +1,51 @@
1
+ export declare const CalendarPlanning: {
2
+ readonly ONE_DAY: "ONE_DAY";
3
+ readonly ONE_WEEK: "ONE_WEEK";
4
+ readonly ONE_MONTH: "ONE_MONTH";
5
+ readonly THREE_MONTHS: "THREE_MONTHS";
6
+ readonly SIX_MONTHS: "SIX_MONTHS";
7
+ readonly ONE_YEAR: "ONE_YEAR";
8
+ readonly TWO_YEARS: "TWO_YEARS";
9
+ readonly THREE_YEARS: "THREE_YEARS";
10
+ readonly FOUR_YEARS: "FOUR_YEARS";
11
+ readonly FIVE_YEARS: "FIVE_YEARS";
12
+ readonly SEVEN_YEARS: "SEVEN_YEARS";
13
+ readonly TEN_YEARS: "TEN_YEARS";
14
+ };
15
+ export type CalendarPlanning = (typeof CalendarPlanning)[keyof typeof CalendarPlanning];
16
+ export declare const MeteringParameterSubType: {
17
+ readonly DAYS: "DAYS";
18
+ readonly WEEKS: "WEEKS";
19
+ readonly MONTHS: "MONTHS";
20
+ readonly YEARS: "YEARS";
21
+ readonly HOURLY: "HOURLY";
22
+ readonly DAILY: "DAILY";
23
+ readonly WEEKLY: "WEEKLY";
24
+ readonly MONTHLY: "MONTHLY";
25
+ readonly QUARTERLY: "QUARTERLY";
26
+ readonly BI_ANNUALLY: "BI_ANNUALLY";
27
+ readonly YEARLY: "YEARLY";
28
+ readonly CAPITAL: "CAPITAL";
29
+ };
30
+ export type MeteringParameterSubType = (typeof MeteringParameterSubType)[keyof typeof MeteringParameterSubType];
31
+ export declare const ObligationFrequency: {
32
+ readonly DAILY: "DAILY";
33
+ readonly WEEKLY: "WEEKLY";
34
+ readonly MONTHLY: "MONTHLY";
35
+ readonly QUARTERLY: "QUARTERLY";
36
+ readonly SEMI_ANNUAL: "SEMI_ANNUAL";
37
+ readonly ANNUAL: "ANNUAL";
38
+ readonly ONE_TIME: "ONE_TIME";
39
+ };
40
+ export type ObligationFrequency = (typeof ObligationFrequency)[keyof typeof ObligationFrequency];
41
+ export declare const Periodicity: {
42
+ readonly HOURLY: "Hourly";
43
+ readonly DAILY: "Daily";
44
+ readonly WEEKLY: "Weekly";
45
+ readonly MONTHLY: "Monthly";
46
+ readonly QUARTERLY: "Quarterly";
47
+ readonly BI_ANNUALLY: "BiAnnualy";
48
+ readonly YEARLY: "Yearly";
49
+ readonly CAPITAL: "Capital";
50
+ };
51
+ export type Periodicity = (typeof Periodicity)[keyof typeof Periodicity];
@@ -0,0 +1,324 @@
1
+ export declare const AncillaryServiceType: {
2
+ readonly FREQUENCY_REGULATION: "FREQUENCY_REGULATION";
3
+ readonly SPINNING_RESERVE: "SPINNING_RESERVE";
4
+ readonly NON_SPINNING_RESERVE: "NON_SPINNING_RESERVE";
5
+ readonly VOLTAGE_SUPPORT: "VOLTAGE_SUPPORT";
6
+ readonly BLACK_START: "BLACK_START";
7
+ readonly REACTIVE_POWER: "REACTIVE_POWER";
8
+ };
9
+ export type AncillaryServiceType = (typeof AncillaryServiceType)[keyof typeof AncillaryServiceType];
10
+ export declare const CAPAType: {
11
+ readonly CORRECTIVE: "CORRECTIVE";
12
+ readonly PREVENTIVE: "PREVENTIVE";
13
+ readonly IMPROVEMENT: "IMPROVEMENT";
14
+ };
15
+ export type CAPAType = (typeof CAPAType)[keyof typeof CAPAType];
16
+ export declare const ChatMessageType: {
17
+ readonly TEXT: "TEXT";
18
+ readonly IMAGE: "IMAGE";
19
+ readonly FILE: "FILE";
20
+ readonly SYSTEM: "SYSTEM";
21
+ };
22
+ export type ChatMessageType = (typeof ChatMessageType)[keyof typeof ChatMessageType];
23
+ export declare const ChecklistPeriodicity: {
24
+ readonly ALL: "ALL";
25
+ readonly H_OFF: "H_OFF";
26
+ readonly H_ON: "H_ON";
27
+ readonly H_ALL: "H_ALL";
28
+ readonly D_OFF: "D_OFF";
29
+ readonly D_ON: "D_ON";
30
+ readonly D_ALL: "D_ALL";
31
+ readonly W_OFF: "W_OFF";
32
+ readonly W_ON: "W_ON";
33
+ readonly W_ALL: "W_ALL";
34
+ readonly M_OFF: "M_OFF";
35
+ readonly M_ON: "M_ON";
36
+ readonly M_ALL: "M_ALL";
37
+ readonly Q_OFF: "Q_OFF";
38
+ readonly Q_ON: "Q_ON";
39
+ readonly Q_ALL: "Q_ALL";
40
+ readonly B_OFF: "B_OFF";
41
+ readonly B_ON: "B_ON";
42
+ readonly B_ALL: "B_ALL";
43
+ readonly A_OFF: "A_OFF";
44
+ readonly A_ON: "A_ON";
45
+ readonly A_ALL: "A_ALL";
46
+ readonly C_OFF: "C_OFF";
47
+ readonly C_ON: "C_ON";
48
+ readonly C_ALL: "C_ALL";
49
+ };
50
+ export type ChecklistPeriodicity = (typeof ChecklistPeriodicity)[keyof typeof ChecklistPeriodicity];
51
+ export declare const ChecklistRunningMode: {
52
+ readonly OFF: "OFF";
53
+ readonly ON: "ON";
54
+ readonly ALL: "ALL";
55
+ };
56
+ export type ChecklistRunningMode = (typeof ChecklistRunningMode)[keyof typeof ChecklistRunningMode];
57
+ export declare const ComponentCategory: {
58
+ readonly ASSET: "asset";
59
+ readonly PIPING: "piping";
60
+ readonly PROTECTION_CONTROL: "protectionControl";
61
+ readonly HYBRID_PLANT: "hybridPlant";
62
+ readonly INSTRUMENTATION: "instrumentation";
63
+ };
64
+ export type ComponentCategory = (typeof ComponentCategory)[keyof typeof ComponentCategory];
65
+ export declare const ComponentInfoCategory: {
66
+ readonly ASSET: "ASSET";
67
+ readonly PIPING: "PIPING";
68
+ readonly PROTECTION_CONTROL: "PROTECTION_CONTROL";
69
+ readonly HYBRID_PLANT: "HYBRID_PLANT";
70
+ readonly INSTRUMENTATION: "INSTRUMENTATION";
71
+ };
72
+ export type ComponentInfoCategory = (typeof ComponentInfoCategory)[keyof typeof ComponentInfoCategory];
73
+ export declare const ComponentInfoType: {
74
+ readonly ASSET: "ASSET";
75
+ readonly SENSOR: "SENSOR";
76
+ };
77
+ export type ComponentInfoType = (typeof ComponentInfoType)[keyof typeof ComponentInfoType];
78
+ export declare const ComponentType: {
79
+ readonly STANDALONE: "STANDALONE";
80
+ readonly REGULAR: "REGULAR";
81
+ readonly HYBRID_PLANT: "HYBRIDPLANT";
82
+ };
83
+ export type ComponentType = (typeof ComponentType)[keyof typeof ComponentType];
84
+ export declare const ConversationType: {
85
+ readonly DIRECT: "DIRECT";
86
+ readonly GROUP: "GROUP";
87
+ };
88
+ export type ConversationType = (typeof ConversationType)[keyof typeof ConversationType];
89
+ export declare const CostAllocation: {
90
+ readonly PREVENTIVE: "preventive";
91
+ readonly CORRECTIVE: "corrective";
92
+ readonly SPECIAL_MAINTENANCE: "specialMaintenance";
93
+ readonly EMERGENCY: "emergency";
94
+ readonly CONTINGENCIES: "contingencies";
95
+ readonly PROJECT: "project";
96
+ readonly MATERIAL_PROCUREMENT: "materialProcurement";
97
+ readonly OPERATIONS: "operations";
98
+ };
99
+ export type CostAllocation = (typeof CostAllocation)[keyof typeof CostAllocation];
100
+ export declare const CurtailmentType: {
101
+ readonly ECONOMIC: "ECONOMIC";
102
+ readonly RELIABILITY: "RELIABILITY";
103
+ readonly ENVIRONMENTAL: "ENVIRONMENTAL";
104
+ readonly TRANSMISSION_CONSTRAINT: "TRANSMISSION_CONSTRAINT";
105
+ readonly VOLUNTARY: "VOLUNTARY";
106
+ };
107
+ export type CurtailmentType = (typeof CurtailmentType)[keyof typeof CurtailmentType];
108
+ export declare const CustomFieldType: {
109
+ readonly STRING: "STRING";
110
+ readonly TEXT: "TEXT";
111
+ readonly NUMBER: "NUMBER";
112
+ readonly BOOLEAN: "BOOLEAN";
113
+ readonly DATE: "DATE";
114
+ readonly DATETIME: "DATETIME";
115
+ readonly JSON: "JSON";
116
+ readonly ENUM: "ENUM";
117
+ };
118
+ export type CustomFieldType = (typeof CustomFieldType)[keyof typeof CustomFieldType];
119
+ export declare const EventNature: {
120
+ readonly INCIDENT: "incident";
121
+ readonly FAILURE: "failure";
122
+ readonly PERTURBATION: "perturbation";
123
+ readonly TRIP: "trip";
124
+ };
125
+ export type EventNature = (typeof EventNature)[keyof typeof EventNature];
126
+ export declare const FailureImpact: {
127
+ readonly INSIGNIFICANT: "Insignificant";
128
+ readonly MARGINAL: "Marginal";
129
+ readonly MODERATE: "Moderate";
130
+ readonly CRITICAL: "Critical";
131
+ readonly CATASTROPHIC: "Catastrophic";
132
+ };
133
+ export type FailureImpact = (typeof FailureImpact)[keyof typeof FailureImpact];
134
+ export declare const FailureLikelihood: {
135
+ readonly UNLIKELY: "Unlikely";
136
+ readonly SELDOM: "Seldom";
137
+ readonly OCCASIONAL: "Occasional";
138
+ readonly LIKELY: "Likely";
139
+ readonly DEFINITE: "Definite";
140
+ };
141
+ export type FailureLikelihood = (typeof FailureLikelihood)[keyof typeof FailureLikelihood];
142
+ export declare const FailureRiskLevel: {
143
+ readonly LOW: "Low";
144
+ readonly MEDIUM: "Medium";
145
+ readonly HIGH: "High";
146
+ readonly EXTREME: "Extreme";
147
+ };
148
+ export type FailureRiskLevel = (typeof FailureRiskLevel)[keyof typeof FailureRiskLevel];
149
+ export declare const FuelType: {
150
+ readonly GASOLINE: "GASOLINE";
151
+ readonly DIESEL: "DIESEL";
152
+ readonly ELECTRIC: "ELECTRIC";
153
+ readonly HYBRID: "HYBRID";
154
+ readonly PROPANE: "PROPANE";
155
+ readonly NATURAL_GAS: "NATURAL_GAS";
156
+ };
157
+ export type FuelType = (typeof FuelType)[keyof typeof FuelType];
158
+ export declare const IncidentCategory: {
159
+ readonly LOST_TIME_INJURY: "lostTimeInjury";
160
+ readonly HIGH_RISK_INCIDENT: "highRiskIncident";
161
+ readonly FIRE_EXPLOSION: "fireExplosion";
162
+ readonly NEAR_MISS: "nearMiss";
163
+ readonly CAR_ACCIDENT: "carAccident";
164
+ readonly OTHER: "other";
165
+ };
166
+ export type IncidentCategory = (typeof IncidentCategory)[keyof typeof IncidentCategory];
167
+ export declare const IncidentType: {
168
+ readonly INTERVENTION: "intervention";
169
+ readonly MAINTENANCE: "maintenance";
170
+ readonly OTHER: "other";
171
+ };
172
+ export type IncidentType = (typeof IncidentType)[keyof typeof IncidentType];
173
+ export declare const InspectionType: {
174
+ readonly V: "V";
175
+ readonly M: "M";
176
+ readonly F: "F";
177
+ readonly A: "A";
178
+ readonly E: "E";
179
+ readonly C: "C";
180
+ readonly N: "N";
181
+ readonly ALL: "ALL";
182
+ };
183
+ export type InspectionType = (typeof InspectionType)[keyof typeof InspectionType];
184
+ export declare const LayoutType: {
185
+ readonly COVER: "COVER";
186
+ readonly POPUP: "POPUP";
187
+ };
188
+ export type LayoutType = (typeof LayoutType)[keyof typeof LayoutType];
189
+ export declare const MaintenanceType: {
190
+ readonly PREVENTIVE: "preventive";
191
+ readonly PREDICTIVE: "predictive";
192
+ readonly DETECTIVE: "detective";
193
+ readonly REACTIVE: "reactive";
194
+ readonly CORRECTIVE: "corrective";
195
+ };
196
+ export type MaintenanceType = (typeof MaintenanceType)[keyof typeof MaintenanceType];
197
+ export declare const MeteringParameterType: {
198
+ readonly OPERATING_HOURS: "operatingHours";
199
+ readonly START_STOPS: "startStops";
200
+ readonly PERIODICITY: "periodicity";
201
+ };
202
+ export type MeteringParameterType = (typeof MeteringParameterType)[keyof typeof MeteringParameterType];
203
+ export declare const ObligationType: {
204
+ readonly REPORTING: "REPORTING";
205
+ readonly MONITORING: "MONITORING";
206
+ readonly INSPECTION: "INSPECTION";
207
+ readonly TESTING: "TESTING";
208
+ readonly FILING: "FILING";
209
+ };
210
+ export type ObligationType = (typeof ObligationType)[keyof typeof ObligationType];
211
+ export declare const OutageType: {
212
+ readonly PLANNED: "PLANNED";
213
+ readonly FORCED: "FORCED";
214
+ readonly MAINTENANCE: "MAINTENANCE";
215
+ readonly EMERGENCY: "EMERGENCY";
216
+ };
217
+ export type OutageType = (typeof OutageType)[keyof typeof OutageType];
218
+ export declare const PermitType: {
219
+ readonly AIR: "AIR";
220
+ readonly WATER: "WATER";
221
+ readonly WASTE: "WASTE";
222
+ readonly NOISE: "NOISE";
223
+ readonly LAND_USE: "LAND_USE";
224
+ readonly ENVIRONMENTAL_IMPACT: "ENVIRONMENTAL_IMPACT";
225
+ };
226
+ export type PermitType = (typeof PermitType)[keyof typeof PermitType];
227
+ export declare const PremiseType: {
228
+ readonly PLANT: "PLANT";
229
+ readonly OFFICE: "OFFICE";
230
+ readonly WAREHOUSE: "WAREHOUSE";
231
+ readonly DAM: "DAM";
232
+ readonly HYBRID_PLANT: "HYBRID_PLANT";
233
+ readonly OTHER: "OTHER";
234
+ };
235
+ export type PremiseType = (typeof PremiseType)[keyof typeof PremiseType];
236
+ export declare const SensorType: {
237
+ readonly TEMPERATURE: "TEMPERATURE";
238
+ readonly PRESSURE: "PRESSURE";
239
+ readonly VIBRATION: "VIBRATION";
240
+ readonly FLOW_RATE: "FLOW_RATE";
241
+ readonly LEVEL: "LEVEL";
242
+ readonly HUMIDITY: "HUMIDITY";
243
+ readonly VOLTAGE: "VOLTAGE";
244
+ readonly CURRENT: "CURRENT";
245
+ readonly POWER: "POWER";
246
+ readonly SPEED: "SPEED";
247
+ readonly PH: "PH";
248
+ readonly CONDUCTIVITY: "CONDUCTIVITY";
249
+ readonly TURBIDITY: "TURBIDITY";
250
+ readonly DISSOLVED_OXYGEN: "DISSOLVED_OXYGEN";
251
+ readonly CHLORINE: "CHLORINE";
252
+ readonly ORP: "ORP";
253
+ readonly ACOUSTIC: "ACOUSTIC";
254
+ readonly ULTRASONIC: "ULTRASONIC";
255
+ readonly PROXIMITY: "PROXIMITY";
256
+ readonly POSITION: "POSITION";
257
+ readonly TORQUE: "TORQUE";
258
+ readonly FORCE: "FORCE";
259
+ readonly WEIGHT: "WEIGHT";
260
+ readonly STRAIN: "STRAIN";
261
+ readonly ACCELERATION: "ACCELERATION";
262
+ readonly WATERLEVEL: "WATERLEVEL";
263
+ readonly SEEPAGE: "SEEPAGE";
264
+ readonly SETTLEMENT: "SETTLEMENT";
265
+ readonly FISH_PASSAGE: "FISH_PASSAGE";
266
+ readonly WEATHER: "WEATHER";
267
+ readonly TILT: "TILT";
268
+ readonly WATER_QUALITY: "WATER_QUALITY";
269
+ readonly LOAD: "LOAD";
270
+ readonly OTHER: "OTHER";
271
+ };
272
+ export type SensorType = (typeof SensorType)[keyof typeof SensorType];
273
+ export declare const VehicleType: {
274
+ readonly TRUCK: "TRUCK";
275
+ readonly VAN: "VAN";
276
+ readonly CAR: "CAR";
277
+ readonly SUV: "SUV";
278
+ readonly EQUIPMENT: "EQUIPMENT";
279
+ readonly TRAILER: "TRAILER";
280
+ };
281
+ export type VehicleType = (typeof VehicleType)[keyof typeof VehicleType];
282
+ export declare const VehicleInspectionType: {
283
+ readonly PRE_TRIP: "PRE_TRIP";
284
+ readonly POST_TRIP: "POST_TRIP";
285
+ readonly SAFETY: "SAFETY";
286
+ readonly DOT: "DOT";
287
+ readonly ANNUAL: "ANNUAL";
288
+ readonly MONTHLY: "MONTHLY";
289
+ };
290
+ export type VehicleInspectionType = (typeof VehicleInspectionType)[keyof typeof VehicleInspectionType];
291
+ export declare const VehicleMaintenanceType: {
292
+ readonly OIL_CHANGE: "OIL_CHANGE";
293
+ readonly TIRE_ROTATION: "TIRE_ROTATION";
294
+ readonly TIRE_REPLACEMENT: "TIRE_REPLACEMENT";
295
+ readonly BRAKE_SERVICE: "BRAKE_SERVICE";
296
+ readonly INSPECTION: "INSPECTION";
297
+ readonly REPAIR: "REPAIR";
298
+ readonly SCHEDULED_SERVICE: "SCHEDULED_SERVICE";
299
+ readonly RECALL: "RECALL";
300
+ readonly ENGINE_SERVICE: "ENGINE_SERVICE";
301
+ readonly TRANSMISSION_SERVICE: "TRANSMISSION_SERVICE";
302
+ readonly BATTERY_REPLACEMENT: "BATTERY_REPLACEMENT";
303
+ };
304
+ export type VehicleMaintenanceType = (typeof VehicleMaintenanceType)[keyof typeof VehicleMaintenanceType];
305
+ export declare const WarrantyType: {
306
+ readonly MANUFACTURER: "MANUFACTURER";
307
+ readonly EXTENDED: "EXTENDED";
308
+ readonly COMPONENT: "COMPONENT";
309
+ readonly SERVICE: "SERVICE";
310
+ };
311
+ export type WarrantyType = (typeof WarrantyType)[keyof typeof WarrantyType];
312
+ export declare const WorkflowType: {
313
+ readonly INTERVENTION_APPROVAL: "INTERVENTION_APPROVAL";
314
+ readonly PURCHASE_REQUEST: "PURCHASE_REQUEST";
315
+ readonly CAPA_APPROVAL: "CAPA_APPROVAL";
316
+ readonly INSPECTION_SIGNOFF: "INSPECTION_SIGNOFF";
317
+ readonly FAILURE_INVESTIGATION: "FAILURE_INVESTIGATION";
318
+ readonly BUDGET_APPROVAL: "BUDGET_APPROVAL";
319
+ readonly RCA_APPROVAL: "RCA_APPROVAL";
320
+ readonly EQUIPMENT_DISPOSAL: "EQUIPMENT_DISPOSAL";
321
+ readonly ACCESS_REQUEST: "ACCESS_REQUEST";
322
+ readonly DOCUMENT_REVIEW: "DOCUMENT_REVIEW";
323
+ };
324
+ export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];