@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.
- package/LICENSE +19 -0
- package/README.md +788 -0
- package/esm2022/en-solutions-tgm-client-sdk.mjs +5 -0
- package/esm2022/lib/components/database-manager/database-manager/database-manager.component.mjs +308 -0
- package/esm2022/lib/components/database-manager/database-manager.module.mjs +66 -0
- package/esm2022/lib/components/database-manager/object-browser/object-browser.component.mjs +98 -0
- package/esm2022/lib/components/database-manager/query-editor/query-editor.component.mjs +196 -0
- package/esm2022/lib/components/database-manager/query-toolbar/query-toolbar.component.mjs +70 -0
- package/esm2022/lib/components/database-manager/record-detail/record-detail.component.mjs +112 -0
- package/esm2022/lib/components/database-manager/registry/entity-registry.mjs +512 -0
- package/esm2022/lib/components/database-manager/results-grid/results-grid.component.mjs +165 -0
- package/esm2022/lib/components/database-manager/services/entity-schema.service.mjs +91 -0
- package/esm2022/lib/components/database-manager/services/query-executor.service.mjs +204 -0
- package/esm2022/lib/components/database-manager/table-data-viewer/table-data-viewer.component.mjs +166 -0
- package/esm2022/lib/components/database-manager/table-structure/table-structure.component.mjs +42 -0
- package/esm2022/lib/components/database-manager/types/database-manager.types.mjs +6 -0
- package/esm2022/lib/components/reporting/export-button/export-button.component.mjs +203 -0
- package/esm2022/lib/components/reporting/generated-report-list/generated-report-list.component.mjs +285 -0
- package/esm2022/lib/components/reporting/report-definition-form/report-definition-form.component.mjs +206 -0
- package/esm2022/lib/components/reporting/report-definition-list/report-definition-list.component.mjs +252 -0
- package/esm2022/lib/components/reporting/report-generate-dialog/report-generate-dialog.component.mjs +122 -0
- package/esm2022/lib/components/reporting/report-stats/report-stats.component.mjs +164 -0
- package/esm2022/lib/components/reporting/report-template-list/report-template-list.component.mjs +114 -0
- package/esm2022/lib/components/reporting/reporting.module.mjs +60 -0
- package/esm2022/lib/components/video-call/incoming-call/incoming-call.component.mjs +80 -0
- package/esm2022/lib/components/video-call/services/livekit-room.service.mjs +142 -0
- package/esm2022/lib/components/video-call/services/video-call-signaling.service.mjs +42 -0
- package/esm2022/lib/components/video-call/services/video-call-state.service.mjs +52 -0
- package/esm2022/lib/components/video-call/types/video-call.types.mjs +2 -0
- package/esm2022/lib/components/video-call/video-call.module.mjs +42 -0
- package/esm2022/lib/components/video-call/video-controls/video-controls.component.mjs +33 -0
- package/esm2022/lib/components/video-call/video-participant/video-participant.component.mjs +68 -0
- package/esm2022/lib/components/video-call/video-room/video-room.component.mjs +89 -0
- package/esm2022/lib/core/auth-interceptor.mjs +33 -0
- package/esm2022/lib/core/client-interceptor.mjs +34 -0
- package/esm2022/lib/core/error-handler.mjs +32 -0
- package/esm2022/lib/core/http-client.service.mjs +254 -0
- package/esm2022/lib/core/websocket.service.mjs +185 -0
- package/esm2022/lib/models/admin/audit.models.mjs +2 -0
- package/esm2022/lib/models/admin/backup.models.mjs +2 -0
- package/esm2022/lib/models/admin/client.models.mjs +2 -0
- package/esm2022/lib/models/admin/email-provider.models.mjs +2 -0
- package/esm2022/lib/models/admin/erp.models.mjs +2 -0
- package/esm2022/lib/models/admin/identity-provider.models.mjs +2 -0
- package/esm2022/lib/models/admin/index.mjs +14 -0
- package/esm2022/lib/models/admin/messaging-provider.models.mjs +2 -0
- package/esm2022/lib/models/admin/platform-admin.models.mjs +2 -0
- package/esm2022/lib/models/admin/queue.models.mjs +2 -0
- package/esm2022/lib/models/admin/role.models.mjs +2 -0
- package/esm2022/lib/models/admin/sandbox.models.mjs +2 -0
- package/esm2022/lib/models/admin/ticket.models.mjs +2 -0
- package/esm2022/lib/models/admin/webhook.models.mjs +2 -0
- package/esm2022/lib/models/api/ai.models.mjs +2 -0
- package/esm2022/lib/models/api/aip.models.mjs +2 -0
- package/esm2022/lib/models/api/cat.models.mjs +2 -0
- package/esm2022/lib/models/api/company.models.mjs +2 -0
- package/esm2022/lib/models/api/compliance.models.mjs +2 -0
- package/esm2022/lib/models/api/component.models.mjs +2 -0
- package/esm2022/lib/models/api/cortex-edge.models.mjs +2 -0
- package/esm2022/lib/models/api/cortex-event.models.mjs +2 -0
- package/esm2022/lib/models/api/cortex-insight.models.mjs +2 -0
- package/esm2022/lib/models/api/cortex-node.models.mjs +2 -0
- package/esm2022/lib/models/api/custom-field.models.mjs +2 -0
- package/esm2022/lib/models/api/deferral.models.mjs +2 -0
- package/esm2022/lib/models/api/diagnostic-report.models.mjs +2 -0
- package/esm2022/lib/models/api/document.models.mjs +2 -0
- package/esm2022/lib/models/api/energy.models.mjs +2 -0
- package/esm2022/lib/models/api/failure.models.mjs +2 -0
- package/esm2022/lib/models/api/fleet.models.mjs +2 -0
- package/esm2022/lib/models/api/inspection.models.mjs +2 -0
- package/esm2022/lib/models/api/intervention.models.mjs +2 -0
- package/esm2022/lib/models/api/iot.models.mjs +2 -0
- package/esm2022/lib/models/api/knowledge.models.mjs +2 -0
- package/esm2022/lib/models/api/loto.models.mjs +2 -0
- package/esm2022/lib/models/api/maintenance-record.models.mjs +2 -0
- package/esm2022/lib/models/api/maintenance.models.mjs +2 -0
- package/esm2022/lib/models/api/material.models.mjs +2 -0
- package/esm2022/lib/models/api/media.models.mjs +2 -0
- package/esm2022/lib/models/api/misc.models.mjs +2 -0
- package/esm2022/lib/models/api/project.models.mjs +2 -0
- package/esm2022/lib/models/api/quality.models.mjs +2 -0
- package/esm2022/lib/models/api/reporting.models.mjs +3 -0
- package/esm2022/lib/models/api/reservoir-websocket.models.mjs +17 -0
- package/esm2022/lib/models/api/reservoir.models.mjs +2 -0
- package/esm2022/lib/models/api/search.models.mjs +2 -0
- package/esm2022/lib/models/api/sensor.models.mjs +2 -0
- package/esm2022/lib/models/api/unit.models.mjs +2 -0
- package/esm2022/lib/models/api/user.models.mjs +2 -0
- package/esm2022/lib/models/api/warranty.models.mjs +2 -0
- package/esm2022/lib/models/api/work-permit.models.mjs +2 -0
- package/esm2022/lib/models/api/workflow.models.mjs +2 -0
- package/esm2022/lib/models/auth/index.mjs +4 -0
- package/esm2022/lib/models/auth/login.models.mjs +2 -0
- package/esm2022/lib/models/auth/sso.models.mjs +2 -0
- package/esm2022/lib/models/auth/totp.models.mjs +2 -0
- package/esm2022/lib/models/base.models.mjs +99 -0
- package/esm2022/lib/models/chat/chat.models.mjs +2 -0
- package/esm2022/lib/models/enums/cat.enums.mjs +17 -0
- package/esm2022/lib/models/enums/energy.enums.mjs +8 -0
- package/esm2022/lib/models/enums/erp.enums.mjs +5 -0
- package/esm2022/lib/models/enums/index.mjs +15 -0
- package/esm2022/lib/models/enums/inspection.enums.mjs +7 -0
- package/esm2022/lib/models/enums/loto.enums.mjs +25 -0
- package/esm2022/lib/models/enums/misc.enums.mjs +19 -0
- package/esm2022/lib/models/enums/quality.enums.mjs +22 -0
- package/esm2022/lib/models/enums/reservoir.enums.mjs +13 -0
- package/esm2022/lib/models/enums/sso.enums.mjs +3 -0
- package/esm2022/lib/models/enums/status.enums.mjs +41 -0
- package/esm2022/lib/models/enums/time.enums.mjs +5 -0
- package/esm2022/lib/models/enums/type.enums.mjs +45 -0
- package/esm2022/lib/models/enums/user.enums.mjs +6 -0
- package/esm2022/lib/models/enums/work-permit.enums.mjs +33 -0
- package/esm2022/lib/models/index.mjs +42 -0
- package/esm2022/lib/models/realtime/realtime-event.models.mjs +9 -0
- package/esm2022/lib/models/video/video-call.models.mjs +2 -0
- package/esm2022/lib/services/admin/activity-log.service.mjs +28 -0
- package/esm2022/lib/services/admin/announcement.service.mjs +37 -0
- package/esm2022/lib/services/admin/article-admin.service.mjs +37 -0
- package/esm2022/lib/services/admin/audit-log.service.mjs +53 -0
- package/esm2022/lib/services/admin/backup.service.mjs +28 -0
- package/esm2022/lib/services/admin/cache-admin.service.mjs +64 -0
- package/esm2022/lib/services/admin/client-admin.service.mjs +101 -0
- package/esm2022/lib/services/admin/client-api-key.service.mjs +31 -0
- package/esm2022/lib/services/admin/client-ocr.service.mjs +28 -0
- package/esm2022/lib/services/admin/client-usage.service.mjs +31 -0
- package/esm2022/lib/services/admin/data-export.service.mjs +19 -0
- package/esm2022/lib/services/admin/document-admin.service.mjs +40 -0
- package/esm2022/lib/services/admin/email-admin.service.mjs +28 -0
- package/esm2022/lib/services/admin/email-provider.service.mjs +58 -0
- package/esm2022/lib/services/admin/erp-admin.service.mjs +111 -0
- package/esm2022/lib/services/admin/identity-provider.service.mjs +46 -0
- package/esm2022/lib/services/admin/impersonation.service.mjs +19 -0
- package/esm2022/lib/services/admin/index.mjs +31 -0
- package/esm2022/lib/services/admin/messaging-provider.service.mjs +55 -0
- package/esm2022/lib/services/admin/notification.service.mjs +31 -0
- package/esm2022/lib/services/admin/platform-admin.service.mjs +34 -0
- package/esm2022/lib/services/admin/platform-webhook.service.mjs +34 -0
- package/esm2022/lib/services/admin/queue-admin.service.mjs +55 -0
- package/esm2022/lib/services/admin/role-admin.service.mjs +81 -0
- package/esm2022/lib/services/admin/sandbox-admin.service.mjs +34 -0
- package/esm2022/lib/services/admin/scheduler-admin.service.mjs +34 -0
- package/esm2022/lib/services/admin/subscription.service.mjs +28 -0
- package/esm2022/lib/services/admin/system-health.service.mjs +22 -0
- package/esm2022/lib/services/admin/user-admin.service.mjs +67 -0
- package/esm2022/lib/services/admin/user-permission.service.mjs +40 -0
- package/esm2022/lib/services/admin/webhook-admin.service.mjs +61 -0
- package/esm2022/lib/services/api/agent.service.mjs +29 -0
- package/esm2022/lib/services/api/ai-feedback.service.mjs +17 -0
- package/esm2022/lib/services/api/ai.service.mjs +66 -0
- package/esm2022/lib/services/api/aip-analysis.service.mjs +20 -0
- package/esm2022/lib/services/api/aip-financial.service.mjs +29 -0
- package/esm2022/lib/services/api/aip-geographic.service.mjs +30 -0
- package/esm2022/lib/services/api/aip-network.service.mjs +29 -0
- package/esm2022/lib/services/api/aip-performance.service.mjs +29 -0
- package/esm2022/lib/services/api/aip-resource.service.mjs +23 -0
- package/esm2022/lib/services/api/aip-workflow.service.mjs +32 -0
- package/esm2022/lib/services/api/aip.service.mjs +158 -0
- package/esm2022/lib/services/api/alert.service.mjs +26 -0
- package/esm2022/lib/services/api/anomaly-detection.service.mjs +40 -0
- package/esm2022/lib/services/api/asset-lifecycle.service.mjs +78 -0
- package/esm2022/lib/services/api/audit-entry.service.mjs +22 -0
- package/esm2022/lib/services/api/base-crud.service.mjs +37 -0
- package/esm2022/lib/services/api/bid.service.mjs +17 -0
- package/esm2022/lib/services/api/budget.service.mjs +17 -0
- package/esm2022/lib/services/api/bulk-operation.service.mjs +65 -0
- package/esm2022/lib/services/api/capex-project.service.mjs +17 -0
- package/esm2022/lib/services/api/cat.service.mjs +77 -0
- package/esm2022/lib/services/api/client-article.service.mjs +23 -0
- package/esm2022/lib/services/api/community.service.mjs +41 -0
- package/esm2022/lib/services/api/company-material-type.service.mjs +17 -0
- package/esm2022/lib/services/api/company-material.service.mjs +17 -0
- package/esm2022/lib/services/api/company.service.mjs +30 -0
- package/esm2022/lib/services/api/compliance.service.mjs +74 -0
- package/esm2022/lib/services/api/component-info.service.mjs +17 -0
- package/esm2022/lib/services/api/component-location.service.mjs +17 -0
- package/esm2022/lib/services/api/component.service.mjs +53 -0
- package/esm2022/lib/services/api/cortex-event.service.mjs +17 -0
- package/esm2022/lib/services/api/cortex-insight.service.mjs +23 -0
- package/esm2022/lib/services/api/cortex-node.service.mjs +17 -0
- package/esm2022/lib/services/api/cortex.service.mjs +29 -0
- package/esm2022/lib/services/api/custom-field.service.mjs +70 -0
- package/esm2022/lib/services/api/custom.service.mjs +43 -0
- package/esm2022/lib/services/api/dashboard.service.mjs +44 -0
- package/esm2022/lib/services/api/deferral.service.mjs +54 -0
- package/esm2022/lib/services/api/department.service.mjs +17 -0
- package/esm2022/lib/services/api/device-gateway.service.mjs +33 -0
- package/esm2022/lib/services/api/diagnostic-report.service.mjs +23 -0
- package/esm2022/lib/services/api/digital-twin.service.mjs +56 -0
- package/esm2022/lib/services/api/document.service.mjs +53 -0
- package/esm2022/lib/services/api/dynamic-crud.service.mjs +67 -0
- package/esm2022/lib/services/api/energy-analytics.service.mjs +42 -0
- package/esm2022/lib/services/api/energy-production.service.mjs +17 -0
- package/esm2022/lib/services/api/energy.service.mjs +91 -0
- package/esm2022/lib/services/api/entity-comment.service.mjs +31 -0
- package/esm2022/lib/services/api/event.service.mjs +17 -0
- package/esm2022/lib/services/api/export.service.mjs +216 -0
- package/esm2022/lib/services/api/extension.service.mjs +56 -0
- package/esm2022/lib/services/api/failure.service.mjs +53 -0
- package/esm2022/lib/services/api/fleet.service.mjs +140 -0
- package/esm2022/lib/services/api/inactive-component.service.mjs +17 -0
- package/esm2022/lib/services/api/index.mjs +101 -0
- package/esm2022/lib/services/api/inspection.service.mjs +29 -0
- package/esm2022/lib/services/api/intervention-request.service.mjs +17 -0
- package/esm2022/lib/services/api/intervention.service.mjs +17 -0
- package/esm2022/lib/services/api/knowledge.service.mjs +209 -0
- package/esm2022/lib/services/api/license.service.mjs +25 -0
- package/esm2022/lib/services/api/location.service.mjs +17 -0
- package/esm2022/lib/services/api/log.service.mjs +17 -0
- package/esm2022/lib/services/api/login-history.service.mjs +17 -0
- package/esm2022/lib/services/api/maintenance-plan.service.mjs +17 -0
- package/esm2022/lib/services/api/maintenance-record.service.mjs +17 -0
- package/esm2022/lib/services/api/material-consumable.service.mjs +41 -0
- package/esm2022/lib/services/api/material-instrument.service.mjs +29 -0
- package/esm2022/lib/services/api/material-item.service.mjs +53 -0
- package/esm2022/lib/services/api/material-tooling.service.mjs +41 -0
- package/esm2022/lib/services/api/measurement-unit.service.mjs +17 -0
- package/esm2022/lib/services/api/misc-crud.service.mjs +329 -0
- package/esm2022/lib/services/api/note.service.mjs +37 -0
- package/esm2022/lib/services/api/outage-resource.service.mjs +28 -0
- package/esm2022/lib/services/api/plant-data.service.mjs +31 -0
- package/esm2022/lib/services/api/procurement.service.mjs +53 -0
- package/esm2022/lib/services/api/project.service.mjs +17 -0
- package/esm2022/lib/services/api/property-template.service.mjs +17 -0
- package/esm2022/lib/services/api/quality.service.mjs +29 -0
- package/esm2022/lib/services/api/recurring-event.service.mjs +17 -0
- package/esm2022/lib/services/api/reporting.service.mjs +117 -0
- package/esm2022/lib/services/api/reservoir-data.service.mjs +19 -0
- package/esm2022/lib/services/api/reservoir.service.mjs +209 -0
- package/esm2022/lib/services/api/room.service.mjs +17 -0
- package/esm2022/lib/services/api/sandbox.service.mjs +62 -0
- package/esm2022/lib/services/api/scheduled-report.service.mjs +17 -0
- package/esm2022/lib/services/api/search.service.mjs +77 -0
- package/esm2022/lib/services/api/sensor.service.mjs +36 -0
- package/esm2022/lib/services/api/sla-policy.service.mjs +17 -0
- package/esm2022/lib/services/api/sla.service.mjs +17 -0
- package/esm2022/lib/services/api/threshold-alert-rule.service.mjs +17 -0
- package/esm2022/lib/services/api/ticket.service.mjs +73 -0
- package/esm2022/lib/services/api/time-entry.service.mjs +17 -0
- package/esm2022/lib/services/api/todo.service.mjs +17 -0
- package/esm2022/lib/services/api/unit.service.mjs +17 -0
- package/esm2022/lib/services/api/upload.service.mjs +84 -0
- package/esm2022/lib/services/api/user.service.mjs +107 -0
- package/esm2022/lib/services/api/warehouse.service.mjs +29 -0
- package/esm2022/lib/services/api/warranty.service.mjs +29 -0
- package/esm2022/lib/services/api/work-order.service.mjs +28 -0
- package/esm2022/lib/services/api/work-permit.service.mjs +17 -0
- package/esm2022/lib/services/api/workflow.service.mjs +86 -0
- package/esm2022/lib/services/auth/auth.service.mjs +97 -0
- package/esm2022/lib/services/auth/index.mjs +5 -0
- package/esm2022/lib/services/auth/platform-auth.service.mjs +39 -0
- package/esm2022/lib/services/auth/sso-auth.service.mjs +46 -0
- package/esm2022/lib/services/auth/totp.service.mjs +34 -0
- package/esm2022/lib/services/chat/chat-rest.service.mjs +104 -0
- package/esm2022/lib/services/chat/chat-websocket.service.mjs +70 -0
- package/esm2022/lib/services/chat/index.mjs +3 -0
- package/esm2022/lib/services/index.mjs +8 -0
- package/esm2022/lib/services/realtime/index.mjs +2 -0
- package/esm2022/lib/services/realtime/realtime-event.service.mjs +187 -0
- package/esm2022/lib/services/reservoir/index.mjs +2 -0
- package/esm2022/lib/services/reservoir/reservoir-websocket.service.mjs +105 -0
- package/esm2022/lib/services/video/index.mjs +3 -0
- package/esm2022/lib/services/video/video-call-rest.service.mjs +42 -0
- package/esm2022/lib/services/video/video-call-websocket.service.mjs +55 -0
- package/esm2022/lib/tgm-sdk.config.mjs +32 -0
- package/esm2022/lib/tgm-sdk.module.mjs +38 -0
- package/esm2022/public-api.mjs +52 -0
- package/fesm2022/en-solutions-tgm-client-sdk.mjs +11029 -0
- package/fesm2022/en-solutions-tgm-client-sdk.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/database-manager/database-manager/database-manager.component.d.ts +70 -0
- package/lib/components/database-manager/database-manager.module.d.ts +15 -0
- package/lib/components/database-manager/object-browser/object-browser.component.d.ts +35 -0
- package/lib/components/database-manager/query-editor/query-editor.component.d.ts +31 -0
- package/lib/components/database-manager/query-toolbar/query-toolbar.component.d.ts +23 -0
- package/lib/components/database-manager/record-detail/record-detail.component.d.ts +35 -0
- package/lib/components/database-manager/registry/entity-registry.d.ts +16 -0
- package/lib/components/database-manager/results-grid/results-grid.component.d.ts +62 -0
- package/lib/components/database-manager/services/entity-schema.service.d.ts +37 -0
- package/lib/components/database-manager/services/query-executor.service.d.ts +57 -0
- package/lib/components/database-manager/table-data-viewer/table-data-viewer.component.d.ts +54 -0
- package/lib/components/database-manager/table-structure/table-structure.component.d.ts +16 -0
- package/lib/components/database-manager/types/database-manager.types.d.ts +71 -0
- package/lib/components/reporting/export-button/export-button.component.d.ts +50 -0
- package/lib/components/reporting/generated-report-list/generated-report-list.component.d.ts +93 -0
- package/lib/components/reporting/report-definition-form/report-definition-form.component.d.ts +65 -0
- package/lib/components/reporting/report-definition-list/report-definition-list.component.d.ts +90 -0
- package/lib/components/reporting/report-generate-dialog/report-generate-dialog.component.d.ts +46 -0
- package/lib/components/reporting/report-stats/report-stats.component.d.ts +47 -0
- package/lib/components/reporting/report-template-list/report-template-list.component.d.ts +39 -0
- package/lib/components/reporting/reporting.module.d.ts +14 -0
- package/lib/components/video-call/incoming-call/incoming-call.component.d.ts +20 -0
- package/lib/components/video-call/services/livekit-room.service.d.ts +28 -0
- package/lib/components/video-call/services/video-call-signaling.service.d.ts +21 -0
- package/lib/components/video-call/services/video-call-state.service.d.ts +25 -0
- package/lib/components/video-call/types/video-call.types.d.ts +49 -0
- package/lib/components/video-call/video-call.module.d.ts +11 -0
- package/lib/components/video-call/video-controls/video-controls.component.d.ts +13 -0
- package/lib/components/video-call/video-participant/video-participant.component.d.ts +17 -0
- package/lib/components/video-call/video-room/video-room.component.d.ts +30 -0
- package/lib/core/auth-interceptor.d.ts +13 -0
- package/lib/core/client-interceptor.d.ts +14 -0
- package/lib/core/error-handler.d.ts +13 -0
- package/lib/core/http-client.service.d.ts +61 -0
- package/lib/core/websocket.service.d.ts +37 -0
- package/lib/models/admin/audit.models.d.ts +73 -0
- package/lib/models/admin/backup.models.d.ts +101 -0
- package/lib/models/admin/client.models.d.ts +99 -0
- package/lib/models/admin/email-provider.models.d.ts +56 -0
- package/lib/models/admin/erp.models.d.ts +188 -0
- package/lib/models/admin/identity-provider.models.d.ts +1 -0
- package/lib/models/admin/index.d.ts +13 -0
- package/lib/models/admin/messaging-provider.models.d.ts +49 -0
- package/lib/models/admin/platform-admin.models.d.ts +33 -0
- package/lib/models/admin/queue.models.d.ts +54 -0
- package/lib/models/admin/role.models.d.ts +50 -0
- package/lib/models/admin/sandbox.models.d.ts +54 -0
- package/lib/models/admin/ticket.models.d.ts +48 -0
- package/lib/models/admin/webhook.models.d.ts +65 -0
- package/lib/models/api/ai.models.d.ts +75 -0
- package/lib/models/api/aip.models.d.ts +545 -0
- package/lib/models/api/cat.models.d.ts +260 -0
- package/lib/models/api/company.models.d.ts +125 -0
- package/lib/models/api/compliance.models.d.ts +74 -0
- package/lib/models/api/component.models.d.ts +294 -0
- package/lib/models/api/cortex-edge.models.d.ts +14 -0
- package/lib/models/api/cortex-event.models.d.ts +12 -0
- package/lib/models/api/cortex-insight.models.d.ts +25 -0
- package/lib/models/api/cortex-node.models.d.ts +10 -0
- package/lib/models/api/custom-field.models.d.ts +37 -0
- package/lib/models/api/deferral.models.d.ts +81 -0
- package/lib/models/api/diagnostic-report.models.d.ts +29 -0
- package/lib/models/api/document.models.d.ts +95 -0
- package/lib/models/api/energy.models.d.ts +210 -0
- package/lib/models/api/failure.models.d.ts +171 -0
- package/lib/models/api/fleet.models.d.ts +193 -0
- package/lib/models/api/inspection.models.d.ts +110 -0
- package/lib/models/api/intervention.models.d.ts +254 -0
- package/lib/models/api/iot.models.d.ts +15 -0
- package/lib/models/api/knowledge.models.d.ts +340 -0
- package/lib/models/api/loto.models.d.ts +51 -0
- package/lib/models/api/maintenance-record.models.d.ts +100 -0
- package/lib/models/api/maintenance.models.d.ts +188 -0
- package/lib/models/api/material.models.d.ts +261 -0
- package/lib/models/api/media.models.d.ts +106 -0
- package/lib/models/api/misc.models.d.ts +929 -0
- package/lib/models/api/project.models.d.ts +118 -0
- package/lib/models/api/quality.models.d.ts +153 -0
- package/lib/models/api/reporting.models.d.ts +76 -0
- package/lib/models/api/reservoir-websocket.models.d.ts +48 -0
- package/lib/models/api/reservoir.models.d.ts +274 -0
- package/lib/models/api/search.models.d.ts +30 -0
- package/lib/models/api/sensor.models.d.ts +117 -0
- package/lib/models/api/unit.models.d.ts +82 -0
- package/lib/models/api/user.models.d.ts +253 -0
- package/lib/models/api/warranty.models.d.ts +51 -0
- package/lib/models/api/work-permit.models.d.ts +70 -0
- package/lib/models/api/workflow.models.d.ts +52 -0
- package/lib/models/auth/index.d.ts +3 -0
- package/lib/models/auth/login.models.d.ts +134 -0
- package/lib/models/auth/sso.models.d.ts +136 -0
- package/lib/models/auth/totp.models.d.ts +19 -0
- package/lib/models/base.models.d.ts +90 -0
- package/lib/models/chat/chat.models.d.ts +171 -0
- package/lib/models/enums/cat.enums.d.ts +114 -0
- package/lib/models/enums/energy.enums.d.ts +50 -0
- package/lib/models/enums/erp.enums.d.ts +49 -0
- package/lib/models/enums/index.d.ts +14 -0
- package/lib/models/enums/inspection.enums.d.ts +61 -0
- package/lib/models/enums/loto.enums.d.ts +41 -0
- package/lib/models/enums/misc.enums.d.ts +151 -0
- package/lib/models/enums/quality.enums.d.ts +25 -0
- package/lib/models/enums/reservoir.enums.d.ts +80 -0
- package/lib/models/enums/sso.enums.d.ts +15 -0
- package/lib/models/enums/status.enums.d.ts +296 -0
- package/lib/models/enums/time.enums.d.ts +51 -0
- package/lib/models/enums/type.enums.d.ts +324 -0
- package/lib/models/enums/user.enums.d.ts +31 -0
- package/lib/models/enums/work-permit.enums.d.ts +56 -0
- package/lib/models/index.d.ts +41 -0
- package/lib/models/realtime/realtime-event.models.d.ts +95 -0
- package/lib/models/video/video-call.models.d.ts +65 -0
- package/lib/services/admin/activity-log.service.d.ts +13 -0
- package/lib/services/admin/announcement.service.d.ts +17 -0
- package/lib/services/admin/article-admin.service.d.ts +17 -0
- package/lib/services/admin/audit-log.service.d.ts +22 -0
- package/lib/services/admin/backup.service.d.ts +15 -0
- package/lib/services/admin/cache-admin.service.d.ts +26 -0
- package/lib/services/admin/client-admin.service.d.ts +38 -0
- package/lib/services/admin/client-api-key.service.d.ts +15 -0
- package/lib/services/admin/client-ocr.service.d.ts +14 -0
- package/lib/services/admin/client-usage.service.d.ts +15 -0
- package/lib/services/admin/data-export.service.d.ts +10 -0
- package/lib/services/admin/document-admin.service.d.ts +18 -0
- package/lib/services/admin/email-admin.service.d.ts +14 -0
- package/lib/services/admin/email-provider.service.d.ts +25 -0
- package/lib/services/admin/erp-admin.service.d.ts +41 -0
- package/lib/services/admin/identity-provider.service.d.ts +21 -0
- package/lib/services/admin/impersonation.service.d.ts +11 -0
- package/lib/services/admin/index.d.ts +30 -0
- package/lib/services/admin/messaging-provider.service.d.ts +24 -0
- package/lib/services/admin/notification.service.d.ts +15 -0
- package/lib/services/admin/platform-admin.service.d.ts +17 -0
- package/lib/services/admin/platform-webhook.service.d.ts +16 -0
- package/lib/services/admin/queue-admin.service.d.ts +24 -0
- package/lib/services/admin/role-admin.service.d.ts +37 -0
- package/lib/services/admin/sandbox-admin.service.d.ts +17 -0
- package/lib/services/admin/scheduler-admin.service.d.ts +61 -0
- package/lib/services/admin/subscription.service.d.ts +15 -0
- package/lib/services/admin/system-health.service.d.ts +11 -0
- package/lib/services/admin/user-admin.service.d.ts +27 -0
- package/lib/services/admin/user-permission.service.d.ts +18 -0
- package/lib/services/admin/webhook-admin.service.d.ts +26 -0
- package/lib/services/api/agent.service.d.ts +16 -0
- package/lib/services/api/ai-feedback.service.d.ts +9 -0
- package/lib/services/api/ai.service.d.ts +36 -0
- package/lib/services/api/aip-analysis.service.d.ts +13 -0
- package/lib/services/api/aip-financial.service.d.ts +16 -0
- package/lib/services/api/aip-geographic.service.d.ts +16 -0
- package/lib/services/api/aip-network.service.d.ts +16 -0
- package/lib/services/api/aip-performance.service.d.ts +16 -0
- package/lib/services/api/aip-resource.service.d.ts +14 -0
- package/lib/services/api/aip-workflow.service.d.ts +24 -0
- package/lib/services/api/aip.service.d.ts +73 -0
- package/lib/services/api/alert.service.d.ts +15 -0
- package/lib/services/api/anomaly-detection.service.d.ts +26 -0
- package/lib/services/api/asset-lifecycle.service.d.ts +29 -0
- package/lib/services/api/audit-entry.service.d.ts +13 -0
- package/lib/services/api/base-crud.service.d.ts +18 -0
- package/lib/services/api/bid.service.d.ts +10 -0
- package/lib/services/api/budget.service.d.ts +10 -0
- package/lib/services/api/bulk-operation.service.d.ts +26 -0
- package/lib/services/api/capex-project.service.d.ts +10 -0
- package/lib/services/api/cat.service.d.ts +40 -0
- package/lib/services/api/client-article.service.d.ts +14 -0
- package/lib/services/api/community.service.d.ts +21 -0
- package/lib/services/api/company-material-type.service.d.ts +10 -0
- package/lib/services/api/company-material.service.d.ts +9 -0
- package/lib/services/api/company.service.d.ts +15 -0
- package/lib/services/api/compliance.service.d.ts +35 -0
- package/lib/services/api/component-info.service.d.ts +10 -0
- package/lib/services/api/component-location.service.d.ts +10 -0
- package/lib/services/api/component.service.d.ts +32 -0
- package/lib/services/api/cortex-event.service.d.ts +10 -0
- package/lib/services/api/cortex-insight.service.d.ts +14 -0
- package/lib/services/api/cortex-node.service.d.ts +10 -0
- package/lib/services/api/cortex.service.d.ts +15 -0
- package/lib/services/api/custom-field.service.d.ts +33 -0
- package/lib/services/api/custom.service.d.ts +23 -0
- package/lib/services/api/dashboard.service.d.ts +18 -0
- package/lib/services/api/deferral.service.d.ts +29 -0
- package/lib/services/api/department.service.d.ts +9 -0
- package/lib/services/api/device-gateway.service.d.ts +16 -0
- package/lib/services/api/diagnostic-report.service.d.ts +14 -0
- package/lib/services/api/digital-twin.service.d.ts +29 -0
- package/lib/services/api/document.service.d.ts +28 -0
- package/lib/services/api/dynamic-crud.service.d.ts +41 -0
- package/lib/services/api/energy-analytics.service.d.ts +16 -0
- package/lib/services/api/energy-production.service.d.ts +10 -0
- package/lib/services/api/energy.service.d.ts +46 -0
- package/lib/services/api/entity-comment.service.d.ts +16 -0
- package/lib/services/api/event.service.d.ts +10 -0
- package/lib/services/api/export.service.d.ts +48 -0
- package/lib/services/api/extension.service.d.ts +24 -0
- package/lib/services/api/failure.service.d.ts +28 -0
- package/lib/services/api/fleet.service.d.ts +71 -0
- package/lib/services/api/inactive-component.service.d.ts +10 -0
- package/lib/services/api/index.d.ts +101 -0
- package/lib/services/api/inspection.service.d.ts +16 -0
- package/lib/services/api/intervention-request.service.d.ts +10 -0
- package/lib/services/api/intervention.service.d.ts +10 -0
- package/lib/services/api/knowledge.service.d.ts +106 -0
- package/lib/services/api/license.service.d.ts +14 -0
- package/lib/services/api/location.service.d.ts +9 -0
- package/lib/services/api/log.service.d.ts +9 -0
- package/lib/services/api/login-history.service.d.ts +10 -0
- package/lib/services/api/maintenance-plan.service.d.ts +10 -0
- package/lib/services/api/maintenance-record.service.d.ts +10 -0
- package/lib/services/api/material-consumable.service.d.ts +22 -0
- package/lib/services/api/material-instrument.service.d.ts +16 -0
- package/lib/services/api/material-item.service.d.ts +28 -0
- package/lib/services/api/material-tooling.service.d.ts +22 -0
- package/lib/services/api/measurement-unit.service.d.ts +10 -0
- package/lib/services/api/misc-crud.service.d.ts +167 -0
- package/lib/services/api/note.service.d.ts +14 -0
- package/lib/services/api/outage-resource.service.d.ts +15 -0
- package/lib/services/api/plant-data.service.d.ts +14 -0
- package/lib/services/api/procurement.service.d.ts +27 -0
- package/lib/services/api/project.service.d.ts +10 -0
- package/lib/services/api/property-template.service.d.ts +10 -0
- package/lib/services/api/quality.service.d.ts +16 -0
- package/lib/services/api/recurring-event.service.d.ts +10 -0
- package/lib/services/api/reporting.service.d.ts +38 -0
- package/lib/services/api/reservoir-data.service.d.ts +10 -0
- package/lib/services/api/reservoir.service.d.ts +109 -0
- package/lib/services/api/room.service.d.ts +10 -0
- package/lib/services/api/sandbox.service.d.ts +26 -0
- package/lib/services/api/scheduled-report.service.d.ts +10 -0
- package/lib/services/api/search.service.d.ts +54 -0
- package/lib/services/api/sensor.service.d.ts +17 -0
- package/lib/services/api/sla-policy.service.d.ts +10 -0
- package/lib/services/api/sla.service.d.ts +10 -0
- package/lib/services/api/threshold-alert-rule.service.d.ts +10 -0
- package/lib/services/api/ticket.service.d.ts +60 -0
- package/lib/services/api/time-entry.service.d.ts +10 -0
- package/lib/services/api/todo.service.d.ts +10 -0
- package/lib/services/api/unit.service.d.ts +10 -0
- package/lib/services/api/upload.service.d.ts +50 -0
- package/lib/services/api/user.service.d.ts +59 -0
- package/lib/services/api/warehouse.service.d.ts +15 -0
- package/lib/services/api/warranty.service.d.ts +16 -0
- package/lib/services/api/work-order.service.d.ts +17 -0
- package/lib/services/api/work-permit.service.d.ts +10 -0
- package/lib/services/api/workflow.service.d.ts +33 -0
- package/lib/services/auth/auth.service.d.ts +33 -0
- package/lib/services/auth/index.d.ts +4 -0
- package/lib/services/auth/platform-auth.service.d.ts +16 -0
- package/lib/services/auth/sso-auth.service.d.ts +21 -0
- package/lib/services/auth/totp.service.d.ts +18 -0
- package/lib/services/chat/chat-rest.service.d.ts +40 -0
- package/lib/services/chat/chat-websocket.service.d.ts +34 -0
- package/lib/services/chat/index.d.ts +2 -0
- package/lib/services/index.d.ts +7 -0
- package/lib/services/realtime/index.d.ts +1 -0
- package/lib/services/realtime/realtime-event.service.d.ts +137 -0
- package/lib/services/reservoir/index.d.ts +1 -0
- package/lib/services/reservoir/reservoir-websocket.service.d.ts +47 -0
- package/lib/services/video/index.d.ts +2 -0
- package/lib/services/video/video-call-rest.service.d.ts +19 -0
- package/lib/services/video/video-call-websocket.service.d.ts +31 -0
- package/lib/tgm-sdk.config.d.ts +36 -0
- package/lib/tgm-sdk.module.d.ts +13 -0
- package/package.json +40 -0
- package/public-api.d.ts +42 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
export declare const DeploymentType: {
|
|
2
|
+
readonly CLOUD: "CLOUD";
|
|
3
|
+
readonly ON_PREMISE: "ON_PREMISE";
|
|
4
|
+
readonly HYBRID: "HYBRID";
|
|
5
|
+
};
|
|
6
|
+
export type DeploymentType = (typeof DeploymentType)[keyof typeof DeploymentType];
|
|
7
|
+
export declare const DepreciationMethod: {
|
|
8
|
+
readonly STRAIGHT_LINE: "STRAIGHT_LINE";
|
|
9
|
+
readonly DECLINING_BALANCE: "DECLINING_BALANCE";
|
|
10
|
+
readonly DOUBLE_DECLINING: "DOUBLE_DECLINING";
|
|
11
|
+
readonly SUM_OF_YEARS: "SUM_OF_YEARS";
|
|
12
|
+
readonly UNITS_OF_PRODUCTION: "UNITS_OF_PRODUCTION";
|
|
13
|
+
};
|
|
14
|
+
export type DepreciationMethod = (typeof DepreciationMethod)[keyof typeof DepreciationMethod];
|
|
15
|
+
export declare const MeasurementUnitSystem: {
|
|
16
|
+
readonly METRIC: "METRIC";
|
|
17
|
+
readonly IMPERIAL: "IMPERIAL";
|
|
18
|
+
};
|
|
19
|
+
export type MeasurementUnitSystem = (typeof MeasurementUnitSystem)[keyof typeof MeasurementUnitSystem];
|
|
20
|
+
export declare const OperatingMode: {
|
|
21
|
+
readonly SPEED_NO_LOAD: "speedNoLoad";
|
|
22
|
+
readonly CONDENSING_MODE: "condensingMode";
|
|
23
|
+
readonly STAND_STILL: "standStill";
|
|
24
|
+
readonly PARTLY_DISMANTLED: "partlyDismantled";
|
|
25
|
+
readonly COMPLETELY_DISMANTLED: "completelyDismantled";
|
|
26
|
+
readonly LOAD_GEN_OR_PUMP: "loadGenOrPump";
|
|
27
|
+
readonly OUT_OF_PIT: "outOfPit";
|
|
28
|
+
};
|
|
29
|
+
export type OperatingMode = (typeof OperatingMode)[keyof typeof OperatingMode];
|
|
30
|
+
export declare const PlantSize: {
|
|
31
|
+
readonly SMALL: "Small";
|
|
32
|
+
readonly MEDIUM: "Medium";
|
|
33
|
+
readonly LARGE: "Large";
|
|
34
|
+
};
|
|
35
|
+
export type PlantSize = (typeof PlantSize)[keyof typeof PlantSize];
|
|
36
|
+
export declare const Region: {
|
|
37
|
+
readonly ALL: "ALL";
|
|
38
|
+
readonly AFRICA: "AFRICA";
|
|
39
|
+
readonly ASIA_AND_OCEANIA: "ASIA_AND_OCEANIA";
|
|
40
|
+
readonly EUROPE: "EUROPE";
|
|
41
|
+
readonly LATIN_AMERICA: "LATIN_AMERICA";
|
|
42
|
+
readonly NORTH_AMERICA: "NORTH_AMERICA";
|
|
43
|
+
};
|
|
44
|
+
export type Region = (typeof Region)[keyof typeof Region];
|
|
45
|
+
export declare const WaterLevel: {
|
|
46
|
+
readonly WATERED: "Watered";
|
|
47
|
+
readonly DEWATERED: "Dewatered";
|
|
48
|
+
readonly FULL: "Full";
|
|
49
|
+
};
|
|
50
|
+
export type WaterLevel = (typeof WaterLevel)[keyof typeof WaterLevel];
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export declare const ErpType: {
|
|
2
|
+
readonly SAP_ECC: "SAP_ECC";
|
|
3
|
+
readonly SAP_BUSINESS_ONE: "SAP_BUSINESS_ONE";
|
|
4
|
+
readonly DYNAMICS_NAV: "DYNAMICS_NAV";
|
|
5
|
+
readonly DYNAMICS_AX: "DYNAMICS_AX";
|
|
6
|
+
readonly ORACLE_CLOUD: "ORACLE_CLOUD";
|
|
7
|
+
readonly ORACLE_EBS: "ORACLE_EBS";
|
|
8
|
+
readonly ORACLE_NETSUITE: "ORACLE_NETSUITE";
|
|
9
|
+
readonly ORACLE_JDE: "ORACLE_JDE";
|
|
10
|
+
readonly INFOR_CLOUDSUITE: "INFOR_CLOUDSUITE";
|
|
11
|
+
readonly INFOR_LN: "INFOR_LN";
|
|
12
|
+
readonly SAGE_INTACCT: "SAGE_INTACCT";
|
|
13
|
+
readonly EPICOR_KINETIC: "EPICOR_KINETIC";
|
|
14
|
+
readonly IFS_CLOUD: "IFS_CLOUD";
|
|
15
|
+
readonly WORKDAY: "WORKDAY";
|
|
16
|
+
readonly ACUMATICA: "ACUMATICA";
|
|
17
|
+
readonly ODOO: "ODOO";
|
|
18
|
+
readonly CUSTOM: "CUSTOM";
|
|
19
|
+
readonly REST_API: "REST_API";
|
|
20
|
+
readonly SOAP_API: "SOAP_API";
|
|
21
|
+
};
|
|
22
|
+
export type ErpType = (typeof ErpType)[keyof typeof ErpType];
|
|
23
|
+
export declare const ErpAuthType: {
|
|
24
|
+
readonly BASIC: "BASIC";
|
|
25
|
+
readonly API_KEY: "API_KEY";
|
|
26
|
+
readonly OAUTH2: "OAUTH2";
|
|
27
|
+
readonly SAML: "SAML";
|
|
28
|
+
readonly CERTIFICATE: "CERTIFICATE";
|
|
29
|
+
readonly SAP_JWT: "SAP_JWT";
|
|
30
|
+
};
|
|
31
|
+
export type ErpAuthType = (typeof ErpAuthType)[keyof typeof ErpAuthType];
|
|
32
|
+
export declare const SyncDirection: {
|
|
33
|
+
readonly INBOUND: "INBOUND";
|
|
34
|
+
readonly OUTBOUND: "OUTBOUND";
|
|
35
|
+
readonly BIDIRECTIONAL: "BIDIRECTIONAL";
|
|
36
|
+
};
|
|
37
|
+
export type SyncDirection = (typeof SyncDirection)[keyof typeof SyncDirection];
|
|
38
|
+
export declare const TgmEntityType: {
|
|
39
|
+
readonly COMPANY: "COMPANY";
|
|
40
|
+
readonly LOCATION: "LOCATION";
|
|
41
|
+
readonly UNIT: "UNIT";
|
|
42
|
+
readonly COMPONENT: "COMPONENT";
|
|
43
|
+
readonly USER: "USER";
|
|
44
|
+
readonly INSPECTION: "INSPECTION";
|
|
45
|
+
readonly FAILURE: "FAILURE";
|
|
46
|
+
readonly INVENTORY: "INVENTORY";
|
|
47
|
+
readonly INVOICE: "INVOICE";
|
|
48
|
+
};
|
|
49
|
+
export type TgmEntityType = (typeof TgmEntityType)[keyof typeof TgmEntityType];
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from './status.enums';
|
|
2
|
+
export * from './type.enums';
|
|
3
|
+
export * from './erp.enums';
|
|
4
|
+
export * from './sso.enums';
|
|
5
|
+
export * from './user.enums';
|
|
6
|
+
export * from './time.enums';
|
|
7
|
+
export * from './inspection.enums';
|
|
8
|
+
export * from './energy.enums';
|
|
9
|
+
export * from './reservoir.enums';
|
|
10
|
+
export * from './misc.enums';
|
|
11
|
+
export * from './cat.enums';
|
|
12
|
+
export * from './work-permit.enums';
|
|
13
|
+
export * from './loto.enums';
|
|
14
|
+
export * from './quality.enums';
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
export declare const FishboneCategory: {
|
|
2
|
+
readonly MANPOWER: "MANPOWER";
|
|
3
|
+
readonly METHOD: "METHOD";
|
|
4
|
+
readonly MACHINE: "MACHINE";
|
|
5
|
+
readonly MATERIAL: "MATERIAL";
|
|
6
|
+
readonly MEASUREMENT: "MEASUREMENT";
|
|
7
|
+
readonly MOTHER_NATURE: "MOTHER_NATURE";
|
|
8
|
+
readonly MANAGEMENT: "MANAGEMENT";
|
|
9
|
+
readonly MAINTENANCE: "MAINTENANCE";
|
|
10
|
+
};
|
|
11
|
+
export type FishboneCategory = (typeof FishboneCategory)[keyof typeof FishboneCategory];
|
|
12
|
+
export declare const InspectionLevel: {
|
|
13
|
+
readonly BASIC: "Basic";
|
|
14
|
+
readonly ADVANCED: "Advanced";
|
|
15
|
+
readonly COMPLETE: "Complete";
|
|
16
|
+
};
|
|
17
|
+
export type InspectionLevel = (typeof InspectionLevel)[keyof typeof InspectionLevel];
|
|
18
|
+
export declare const InspectionNature: {
|
|
19
|
+
readonly PERIODIC: "Periodic";
|
|
20
|
+
readonly NON_PERIODIC: "NonPeriodic";
|
|
21
|
+
};
|
|
22
|
+
export type InspectionNature = (typeof InspectionNature)[keyof typeof InspectionNature];
|
|
23
|
+
export declare const RCAMethodology: {
|
|
24
|
+
readonly FIVE_WHYS: "FIVE_WHYS";
|
|
25
|
+
readonly FISHBONE: "FISHBONE";
|
|
26
|
+
readonly FAULT_TREE: "FAULT_TREE";
|
|
27
|
+
readonly PARETO: "PARETO";
|
|
28
|
+
readonly FMEA: "FMEA";
|
|
29
|
+
readonly COMBINED: "COMBINED";
|
|
30
|
+
};
|
|
31
|
+
export type RCAMethodology = (typeof RCAMethodology)[keyof typeof RCAMethodology];
|
|
32
|
+
export declare const ReasonForInspection: {
|
|
33
|
+
readonly DUE_TO_EVENT: "DueToEvent";
|
|
34
|
+
readonly MAINTENANCE: "Maintenance";
|
|
35
|
+
readonly DUE_TO_MAINTENANCE: "dueToMaintenance";
|
|
36
|
+
readonly CONDITION_ASSESSMENT: "ConditionAssessment";
|
|
37
|
+
readonly DUE_TO_INSPECTION: "DueToInspection";
|
|
38
|
+
readonly DUE_TO_INTERVENTION_REQUEST: "DueToInterventionRequest";
|
|
39
|
+
readonly SAFETY_PROGRAM_INSPECTIONS: "safetyProgramInspections";
|
|
40
|
+
readonly WORK_REQUIRE_MANAGEMENT: "workRequireManagement";
|
|
41
|
+
readonly PREV_AND_PRED_MAINTENANCE: "prevAndPredMaintenance";
|
|
42
|
+
readonly AUDITS: "audits";
|
|
43
|
+
readonly OTHERS: "Others";
|
|
44
|
+
};
|
|
45
|
+
export type ReasonForInspection = (typeof ReasonForInspection)[keyof typeof ReasonForInspection];
|
|
46
|
+
export declare const ReasonForIntervention: {
|
|
47
|
+
readonly DUE_TO_MAINTENANCE: "dueToMaintenance";
|
|
48
|
+
readonly DUE_TO_EVENT: "dueToEvent";
|
|
49
|
+
readonly DUE_TO_INTERVENTION_REQUEST: "dueToInterventionRequest";
|
|
50
|
+
readonly OPERATOR_OBS_AND_EMPLOYEE_CONCERNS: "operatorObsAndEmployeeConcerns";
|
|
51
|
+
readonly PREV_AND_PRED_MAINTENANCE: "prevAndPredMaintenance";
|
|
52
|
+
readonly POINTS_RAISED: "pointsRaised";
|
|
53
|
+
readonly SAFETY_PROGRAM_INSPECTIONS: "safetyProgramInspections";
|
|
54
|
+
readonly WORK_REQUIRE_MANAGEMENT: "workRequireManagement";
|
|
55
|
+
readonly REGULATORY_REQUIREMENTS: "regulatoryRequirements";
|
|
56
|
+
readonly EQUIPMENT_IMPROVEMENTS: "equipementImprovements";
|
|
57
|
+
readonly AUDITS: "audits";
|
|
58
|
+
readonly INCIDENTS_DAMAGES: "incidentsDamages";
|
|
59
|
+
readonly OTHERS: "others";
|
|
60
|
+
};
|
|
61
|
+
export type ReasonForIntervention = (typeof ReasonForIntervention)[keyof typeof ReasonForIntervention];
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export declare const LOTOBoxType: {
|
|
2
|
+
readonly LOCKOUT: "LOCKOUT";
|
|
3
|
+
readonly TAGOUT: "TAGOUT";
|
|
4
|
+
readonly LOCKOUT_TAGOUT: "LOCKOUT_TAGOUT";
|
|
5
|
+
};
|
|
6
|
+
export type LOTOBoxType = (typeof LOTOBoxType)[keyof typeof LOTOBoxType];
|
|
7
|
+
export declare const LOTOBoxStatus: {
|
|
8
|
+
readonly PENDING: "PENDING";
|
|
9
|
+
readonly APPLIED: "APPLIED";
|
|
10
|
+
readonly ZERO_ENERGY_VERIFIED: "ZERO_ENERGY_VERIFIED";
|
|
11
|
+
readonly RELEASED: "RELEASED";
|
|
12
|
+
};
|
|
13
|
+
export type LOTOBoxStatus = (typeof LOTOBoxStatus)[keyof typeof LOTOBoxStatus];
|
|
14
|
+
export declare const LOTOLockType: {
|
|
15
|
+
readonly PERSONAL_PADLOCK: "PERSONAL_PADLOCK";
|
|
16
|
+
readonly BREAKER_LOCKOUT_DEVICE: "BREAKER_LOCKOUT_DEVICE";
|
|
17
|
+
readonly VALVE_LOCKOUT_DEVICE: "VALVE_LOCKOUT_DEVICE";
|
|
18
|
+
readonly HASP: "HASP";
|
|
19
|
+
readonly CABLE_LOCKOUT: "CABLE_LOCKOUT";
|
|
20
|
+
readonly TAG_ONLY: "TAG_ONLY";
|
|
21
|
+
};
|
|
22
|
+
export type LOTOLockType = (typeof LOTOLockType)[keyof typeof LOTOLockType];
|
|
23
|
+
export declare const LOTOLockStatus: {
|
|
24
|
+
readonly APPLIED: "APPLIED";
|
|
25
|
+
readonly REMOVED: "REMOVED";
|
|
26
|
+
};
|
|
27
|
+
export type LOTOLockStatus = (typeof LOTOLockStatus)[keyof typeof LOTOLockStatus];
|
|
28
|
+
export declare const LOTOOverallStatus: {
|
|
29
|
+
readonly PENDING: "PENDING";
|
|
30
|
+
readonly ACTIVE: "ACTIVE";
|
|
31
|
+
readonly PARTIAL_RELEASED: "PARTIAL_RELEASED";
|
|
32
|
+
readonly FULLY_RELEASED: "FULLY_RELEASED";
|
|
33
|
+
};
|
|
34
|
+
export type LOTOOverallStatus = (typeof LOTOOverallStatus)[keyof typeof LOTOOverallStatus];
|
|
35
|
+
export declare const LOTOLockRole: {
|
|
36
|
+
readonly PERMIT_HOLDER: "PERMIT_HOLDER";
|
|
37
|
+
readonly WORKER: "WORKER";
|
|
38
|
+
readonly VERIFIER: "VERIFIER";
|
|
39
|
+
readonly SUPERVISOR: "SUPERVISOR";
|
|
40
|
+
};
|
|
41
|
+
export type LOTOLockRole = (typeof LOTOLockRole)[keyof typeof LOTOLockRole];
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
export declare const GeofenceType: {
|
|
2
|
+
readonly CIRCLE: "CIRCLE";
|
|
3
|
+
readonly POLYGON: "POLYGON";
|
|
4
|
+
};
|
|
5
|
+
export type GeofenceType = (typeof GeofenceType)[keyof typeof GeofenceType];
|
|
6
|
+
export declare const GeofenceEventType: {
|
|
7
|
+
readonly ENTER: "ENTER";
|
|
8
|
+
readonly EXIT: "EXIT";
|
|
9
|
+
};
|
|
10
|
+
export type GeofenceEventType = (typeof GeofenceEventType)[keyof typeof GeofenceEventType];
|
|
11
|
+
export declare const Priority: {
|
|
12
|
+
readonly P1: "P1";
|
|
13
|
+
readonly P2: "P2";
|
|
14
|
+
readonly P3: "P3";
|
|
15
|
+
readonly P4: "P4";
|
|
16
|
+
readonly P5: "P5";
|
|
17
|
+
};
|
|
18
|
+
export type Priority = (typeof Priority)[keyof typeof Priority];
|
|
19
|
+
export declare const ProvisioningStep: {
|
|
20
|
+
readonly CREATING_DATABASE: "CREATING_DATABASE";
|
|
21
|
+
readonly CREATING_USER: "CREATING_USER";
|
|
22
|
+
readonly GRANTING_PRIVILEGES: "GRANTING_PRIVILEGES";
|
|
23
|
+
readonly RUNNING_MIGRATIONS: "RUNNING_MIGRATIONS";
|
|
24
|
+
readonly REGISTERING_DATASOURCE: "REGISTERING_DATASOURCE";
|
|
25
|
+
readonly CREATING_MESSAGE_QUEUES: "CREATING_MESSAGE_QUEUES";
|
|
26
|
+
readonly CREATING_TIMESERIES_BUCKET: "CREATING_TIMESERIES_BUCKET";
|
|
27
|
+
readonly CREATING_STORAGE_BUCKET: "CREATING_STORAGE_BUCKET";
|
|
28
|
+
readonly CONFIGURING_CACHE: "CONFIGURING_CACHE";
|
|
29
|
+
readonly GENERATING_LICENSE: "GENERATING_LICENSE";
|
|
30
|
+
readonly INSTALLING_LICENSE: "INSTALLING_LICENSE";
|
|
31
|
+
};
|
|
32
|
+
export type ProvisioningStep = (typeof ProvisioningStep)[keyof typeof ProvisioningStep];
|
|
33
|
+
export declare const SubscriptionPlan: {
|
|
34
|
+
readonly FREE: "FREE";
|
|
35
|
+
readonly STARTER: "STARTER";
|
|
36
|
+
readonly PROFESSIONAL: "PROFESSIONAL";
|
|
37
|
+
readonly ENTERPRISE: "ENTERPRISE";
|
|
38
|
+
readonly CUSTOM: "CUSTOM";
|
|
39
|
+
};
|
|
40
|
+
export type SubscriptionPlan = (typeof SubscriptionPlan)[keyof typeof SubscriptionPlan];
|
|
41
|
+
export declare const TicketPriority: {
|
|
42
|
+
readonly LOW: "LOW";
|
|
43
|
+
readonly MEDIUM: "MEDIUM";
|
|
44
|
+
readonly HIGH: "HIGH";
|
|
45
|
+
readonly CRITICAL: "CRITICAL";
|
|
46
|
+
};
|
|
47
|
+
export type TicketPriority = (typeof TicketPriority)[keyof typeof TicketPriority];
|
|
48
|
+
export declare const TrackedEntityType: {
|
|
49
|
+
readonly TECHNICIAN: "TECHNICIAN";
|
|
50
|
+
readonly VEHICLE: "VEHICLE";
|
|
51
|
+
readonly ASSET: "ASSET";
|
|
52
|
+
readonly EQUIPMENT: "EQUIPMENT";
|
|
53
|
+
};
|
|
54
|
+
export type TrackedEntityType = (typeof TrackedEntityType)[keyof typeof TrackedEntityType];
|
|
55
|
+
export declare const YesNo: {
|
|
56
|
+
readonly YES: "yes";
|
|
57
|
+
readonly NO: "no";
|
|
58
|
+
readonly NOT_EXACTLY: "NotExactly";
|
|
59
|
+
};
|
|
60
|
+
export type YesNo = (typeof YesNo)[keyof typeof YesNo];
|
|
61
|
+
export declare const EmailProviderType: {
|
|
62
|
+
readonly SENDGRID: "SENDGRID";
|
|
63
|
+
readonly SMTP: "SMTP";
|
|
64
|
+
readonly MAILGUN: "MAILGUN";
|
|
65
|
+
readonly AWS_SES: "AWS_SES";
|
|
66
|
+
readonly POSTMARK: "POSTMARK";
|
|
67
|
+
readonly MAILJET: "MAILJET";
|
|
68
|
+
readonly RESEND: "RESEND";
|
|
69
|
+
};
|
|
70
|
+
export type EmailProviderType = (typeof EmailProviderType)[keyof typeof EmailProviderType];
|
|
71
|
+
export declare const MessageChannel: {
|
|
72
|
+
readonly SMS: "SMS";
|
|
73
|
+
readonly WHATSAPP: "WHATSAPP";
|
|
74
|
+
readonly TELEGRAM: "TELEGRAM";
|
|
75
|
+
readonly SIGNAL: "SIGNAL";
|
|
76
|
+
readonly VIBER: "VIBER";
|
|
77
|
+
readonly FACEBOOK_MESSENGER: "FACEBOOK_MESSENGER";
|
|
78
|
+
readonly SLACK: "SLACK";
|
|
79
|
+
readonly DISCORD: "DISCORD";
|
|
80
|
+
};
|
|
81
|
+
export type MessageChannel = (typeof MessageChannel)[keyof typeof MessageChannel];
|
|
82
|
+
export declare const MessagingProviderType: {
|
|
83
|
+
readonly TWILIO: "TWILIO";
|
|
84
|
+
readonly VONAGE: "VONAGE";
|
|
85
|
+
readonly AWS_SNS: "AWS_SNS";
|
|
86
|
+
readonly PLIVO: "PLIVO";
|
|
87
|
+
readonly MESSAGEBIRD: "MESSAGEBIRD";
|
|
88
|
+
readonly SINCH: "SINCH";
|
|
89
|
+
readonly CLICKSEND: "CLICKSEND";
|
|
90
|
+
readonly INFOBIP: "INFOBIP";
|
|
91
|
+
readonly META_WHATSAPP: "META_WHATSAPP";
|
|
92
|
+
readonly TELEGRAM_BOT: "TELEGRAM_BOT";
|
|
93
|
+
readonly SLACK_API: "SLACK_API";
|
|
94
|
+
readonly DISCORD_BOT: "DISCORD_BOT";
|
|
95
|
+
};
|
|
96
|
+
export type MessagingProviderType = (typeof MessagingProviderType)[keyof typeof MessagingProviderType];
|
|
97
|
+
export declare const ExtensionEventType: {
|
|
98
|
+
readonly REGISTERED: "REGISTERED";
|
|
99
|
+
readonly ENABLED: "ENABLED";
|
|
100
|
+
readonly DISABLED: "DISABLED";
|
|
101
|
+
readonly CONFIGURED: "CONFIGURED";
|
|
102
|
+
readonly HOOK_EXECUTED: "HOOK_EXECUTED";
|
|
103
|
+
readonly TASK_EXECUTED: "TASK_EXECUTED";
|
|
104
|
+
readonly API_CALLED: "API_CALLED";
|
|
105
|
+
readonly ERROR: "ERROR";
|
|
106
|
+
};
|
|
107
|
+
export type ExtensionEventType = (typeof ExtensionEventType)[keyof typeof ExtensionEventType];
|
|
108
|
+
export declare const TaskRunStatus: {
|
|
109
|
+
readonly SUCCESS: "SUCCESS";
|
|
110
|
+
readonly FAILED: "FAILED";
|
|
111
|
+
readonly RUNNING: "RUNNING";
|
|
112
|
+
};
|
|
113
|
+
export type TaskRunStatus = (typeof TaskRunStatus)[keyof typeof TaskRunStatus];
|
|
114
|
+
export declare const AiProvider: {
|
|
115
|
+
readonly OPENAI: "OPENAI";
|
|
116
|
+
readonly GEMINI: "GEMINI";
|
|
117
|
+
readonly ANTHROPIC: "ANTHROPIC";
|
|
118
|
+
readonly MISTRAL: "MISTRAL";
|
|
119
|
+
readonly COHERE: "COHERE";
|
|
120
|
+
readonly LOCAL: "LOCAL";
|
|
121
|
+
};
|
|
122
|
+
export type AiProvider = (typeof AiProvider)[keyof typeof AiProvider];
|
|
123
|
+
export declare const VideoCallType: {
|
|
124
|
+
readonly DIRECT: "DIRECT";
|
|
125
|
+
readonly GROUP: "GROUP";
|
|
126
|
+
readonly CONFERENCE: "CONFERENCE";
|
|
127
|
+
};
|
|
128
|
+
export type VideoCallType = (typeof VideoCallType)[keyof typeof VideoCallType];
|
|
129
|
+
export declare const VideoCallStatus: {
|
|
130
|
+
readonly INITIATED: "INITIATED";
|
|
131
|
+
readonly RINGING: "RINGING";
|
|
132
|
+
readonly ACTIVE: "ACTIVE";
|
|
133
|
+
readonly ENDED: "ENDED";
|
|
134
|
+
readonly MISSED: "MISSED";
|
|
135
|
+
readonly DECLINED: "DECLINED";
|
|
136
|
+
};
|
|
137
|
+
export type VideoCallStatus = (typeof VideoCallStatus)[keyof typeof VideoCallStatus];
|
|
138
|
+
export declare const VideoParticipantRole: {
|
|
139
|
+
readonly HOST: "HOST";
|
|
140
|
+
readonly PARTICIPANT: "PARTICIPANT";
|
|
141
|
+
readonly VIEWER: "VIEWER";
|
|
142
|
+
};
|
|
143
|
+
export type VideoParticipantRole = (typeof VideoParticipantRole)[keyof typeof VideoParticipantRole];
|
|
144
|
+
export declare const VideoParticipantStatus: {
|
|
145
|
+
readonly INVITED: "INVITED";
|
|
146
|
+
readonly RINGING: "RINGING";
|
|
147
|
+
readonly CONNECTED: "CONNECTED";
|
|
148
|
+
readonly DISCONNECTED: "DISCONNECTED";
|
|
149
|
+
readonly DECLINED: "DECLINED";
|
|
150
|
+
};
|
|
151
|
+
export type VideoParticipantStatus = (typeof VideoParticipantStatus)[keyof typeof VideoParticipantStatus];
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export declare const RcaEventCause: {
|
|
2
|
+
readonly MAJOR_BREAKDOWNS: "majorBreakdowns";
|
|
3
|
+
readonly REPEATED_FAILURES: "repeatedFailures";
|
|
4
|
+
readonly NONCOMPLIANCE_WITH_PROCEDURES: "noncomplianceWithProcedures";
|
|
5
|
+
readonly SSE_INCIDENT: "sseIncident";
|
|
6
|
+
readonly OTHER: "other";
|
|
7
|
+
};
|
|
8
|
+
export type RcaEventCause = (typeof RcaEventCause)[keyof typeof RcaEventCause];
|
|
9
|
+
export declare const RcaWorkOrderType: {
|
|
10
|
+
readonly INTERVENTION: "intervention";
|
|
11
|
+
readonly MAINTENANCE: "maintenance";
|
|
12
|
+
};
|
|
13
|
+
export type RcaWorkOrderType = (typeof RcaWorkOrderType)[keyof typeof RcaWorkOrderType];
|
|
14
|
+
export declare const LessonLearnedStatus: {
|
|
15
|
+
readonly IN_PROGRESS: "inProgress";
|
|
16
|
+
readonly COMPLETED: "completed";
|
|
17
|
+
readonly REVIEWED_AND_APPROVED: "reviewedAndApproved";
|
|
18
|
+
readonly CLOSED: "closed";
|
|
19
|
+
};
|
|
20
|
+
export type LessonLearnedStatus = (typeof LessonLearnedStatus)[keyof typeof LessonLearnedStatus];
|
|
21
|
+
export declare const LessonLearnedOrigin: {
|
|
22
|
+
readonly WORK_ORDER: "WORK_ORDER";
|
|
23
|
+
readonly ROOT_CAUSE_ANALYSIS: "ROOT_CAUSE_ANALYSIS";
|
|
24
|
+
};
|
|
25
|
+
export type LessonLearnedOrigin = (typeof LessonLearnedOrigin)[keyof typeof LessonLearnedOrigin];
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
export declare const GateType: {
|
|
2
|
+
readonly INTAKE: "INTAKE";
|
|
3
|
+
readonly SPILLWAY: "SPILLWAY";
|
|
4
|
+
readonly OUTLET: "OUTLET";
|
|
5
|
+
readonly EMERGENCY: "EMERGENCY";
|
|
6
|
+
};
|
|
7
|
+
export type GateType = (typeof GateType)[keyof typeof GateType];
|
|
8
|
+
export declare const GateControlType: {
|
|
9
|
+
readonly MANUAL: "MANUAL";
|
|
10
|
+
readonly HYDRAULIC: "HYDRAULIC";
|
|
11
|
+
readonly ELECTRIC: "ELECTRIC";
|
|
12
|
+
};
|
|
13
|
+
export type GateControlType = (typeof GateControlType)[keyof typeof GateControlType];
|
|
14
|
+
export declare const SampleType: {
|
|
15
|
+
readonly WATER_QUALITY: "WATER_QUALITY";
|
|
16
|
+
readonly SEDIMENT: "SEDIMENT";
|
|
17
|
+
readonly BIOLOGICAL: "BIOLOGICAL";
|
|
18
|
+
};
|
|
19
|
+
export type SampleType = (typeof SampleType)[keyof typeof SampleType];
|
|
20
|
+
export declare const VerificationStatus: {
|
|
21
|
+
readonly UNVERIFIED: "UNVERIFIED";
|
|
22
|
+
readonly VERIFIED: "VERIFIED";
|
|
23
|
+
readonly DISCREPANCY_NOTED: "DISCREPANCY_NOTED";
|
|
24
|
+
};
|
|
25
|
+
export type VerificationStatus = (typeof VerificationStatus)[keyof typeof VerificationStatus];
|
|
26
|
+
export declare const ObservationCategory: {
|
|
27
|
+
readonly WEATHER: "WEATHER";
|
|
28
|
+
readonly EQUIPMENT_BEHAVIOR: "EQUIPMENT_BEHAVIOR";
|
|
29
|
+
readonly WATER_QUALITY: "WATER_QUALITY";
|
|
30
|
+
readonly WILDLIFE: "WILDLIFE";
|
|
31
|
+
readonly SAFETY: "SAFETY";
|
|
32
|
+
readonly OTHER: "OTHER";
|
|
33
|
+
};
|
|
34
|
+
export type ObservationCategory = (typeof ObservationCategory)[keyof typeof ObservationCategory];
|
|
35
|
+
export declare const ObservationSeverity: {
|
|
36
|
+
readonly INFORMATIONAL: "INFORMATIONAL";
|
|
37
|
+
readonly ATTENTION_REQUIRED: "ATTENTION_REQUIRED";
|
|
38
|
+
readonly URGENT: "URGENT";
|
|
39
|
+
};
|
|
40
|
+
export type ObservationSeverity = (typeof ObservationSeverity)[keyof typeof ObservationSeverity];
|
|
41
|
+
export declare const SurveyMethod: {
|
|
42
|
+
readonly MULTIBEAM_SONAR: "MULTIBEAM_SONAR";
|
|
43
|
+
readonly SINGLE_BEAM: "SINGLE_BEAM";
|
|
44
|
+
readonly LIDAR: "LIDAR";
|
|
45
|
+
readonly GPS: "GPS";
|
|
46
|
+
};
|
|
47
|
+
export type SurveyMethod = (typeof SurveyMethod)[keyof typeof SurveyMethod];
|
|
48
|
+
export declare const AIScenarioType: {
|
|
49
|
+
readonly GRID_REQUEST: "GRID_REQUEST";
|
|
50
|
+
readonly WATER_PRESERVATION: "WATER_PRESERVATION";
|
|
51
|
+
readonly OEM_RECOMMENDATIONS: "OEM_RECOMMENDATIONS";
|
|
52
|
+
};
|
|
53
|
+
export type AIScenarioType = (typeof AIScenarioType)[keyof typeof AIScenarioType];
|
|
54
|
+
export declare const RegulatoryUpdateType: {
|
|
55
|
+
readonly PERMIT_RENEWAL: "PERMIT_RENEWAL";
|
|
56
|
+
readonly COMPLIANCE_REPORT: "COMPLIANCE_REPORT";
|
|
57
|
+
readonly INSPECTION_REQUIRED: "INSPECTION_REQUIRED";
|
|
58
|
+
readonly VIOLATION_NOTICE: "VIOLATION_NOTICE";
|
|
59
|
+
};
|
|
60
|
+
export type RegulatoryUpdateType = (typeof RegulatoryUpdateType)[keyof typeof RegulatoryUpdateType];
|
|
61
|
+
export declare const MonitoringMethod: {
|
|
62
|
+
readonly VIDEO_COUNT: "VIDEO_COUNT";
|
|
63
|
+
readonly PHYSICAL_COUNT: "PHYSICAL_COUNT";
|
|
64
|
+
readonly ACOUSTIC_TAG: "ACOUSTIC_TAG";
|
|
65
|
+
};
|
|
66
|
+
export type MonitoringMethod = (typeof MonitoringMethod)[keyof typeof MonitoringMethod];
|
|
67
|
+
export declare const MonitoringLocationType: {
|
|
68
|
+
readonly FISH_LADDER: "FISH_LADDER";
|
|
69
|
+
readonly TRAP: "TRAP";
|
|
70
|
+
readonly SONAR: "SONAR";
|
|
71
|
+
};
|
|
72
|
+
export type MonitoringLocationType = (typeof MonitoringLocationType)[keyof typeof MonitoringLocationType];
|
|
73
|
+
export declare const ReadingType: {
|
|
74
|
+
readonly WATER_LEVEL: "WATER_LEVEL";
|
|
75
|
+
readonly FLOW: "FLOW";
|
|
76
|
+
readonly GATE_POSITION: "GATE_POSITION";
|
|
77
|
+
readonly PRESSURE: "PRESSURE";
|
|
78
|
+
readonly TEMPERATURE: "TEMPERATURE";
|
|
79
|
+
};
|
|
80
|
+
export type ReadingType = (typeof ReadingType)[keyof typeof ReadingType];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const ProviderType: {
|
|
2
|
+
readonly OIDC: "OIDC";
|
|
3
|
+
readonly SAML: "SAML";
|
|
4
|
+
};
|
|
5
|
+
export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType];
|
|
6
|
+
export declare const PresetProvider: {
|
|
7
|
+
readonly GOOGLE: "GOOGLE";
|
|
8
|
+
readonly AZURE_AD: "AZURE_AD";
|
|
9
|
+
readonly OKTA: "OKTA";
|
|
10
|
+
readonly ONELOGIN: "ONELOGIN";
|
|
11
|
+
readonly PING_IDENTITY: "PING_IDENTITY";
|
|
12
|
+
readonly CUSTOM_OIDC: "CUSTOM_OIDC";
|
|
13
|
+
readonly CUSTOM_SAML: "CUSTOM_SAML";
|
|
14
|
+
};
|
|
15
|
+
export type PresetProvider = (typeof PresetProvider)[keyof typeof PresetProvider];
|