@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,38 @@
|
|
|
1
|
+
import { NgModule, Optional } from '@angular/core';
|
|
2
|
+
import { HttpClient, HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
|
|
3
|
+
import { TGM_SDK_CONFIG } from './tgm-sdk.config';
|
|
4
|
+
import { TgmHttpClient } from './core/http-client.service';
|
|
5
|
+
import { AuthInterceptor } from './core/auth-interceptor';
|
|
6
|
+
import { ClientInterceptor } from './core/client-interceptor';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export function tgmHttpClientFactory(http, config) {
|
|
9
|
+
return new TgmHttpClient(http, config);
|
|
10
|
+
}
|
|
11
|
+
export class TgmSdkModule {
|
|
12
|
+
static forRoot(config) {
|
|
13
|
+
return {
|
|
14
|
+
ngModule: TgmSdkModule,
|
|
15
|
+
providers: [
|
|
16
|
+
{ provide: TGM_SDK_CONFIG, useValue: config },
|
|
17
|
+
{ provide: TgmHttpClient, useFactory: tgmHttpClientFactory, deps: [HttpClient, [new Optional(), TGM_SDK_CONFIG]] },
|
|
18
|
+
{ provide: HTTP_INTERCEPTORS, useClass: AuthInterceptor, multi: true },
|
|
19
|
+
{ provide: HTTP_INTERCEPTORS, useClass: ClientInterceptor, multi: true },
|
|
20
|
+
],
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TgmSdkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
24
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: TgmSdkModule, imports: [HttpClientModule] });
|
|
25
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TgmSdkModule, providers: [
|
|
26
|
+
{ provide: TgmHttpClient, useFactory: tgmHttpClientFactory, deps: [HttpClient, [new Optional(), TGM_SDK_CONFIG]] },
|
|
27
|
+
], imports: [HttpClientModule] });
|
|
28
|
+
}
|
|
29
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TgmSdkModule, decorators: [{
|
|
30
|
+
type: NgModule,
|
|
31
|
+
args: [{
|
|
32
|
+
imports: [HttpClientModule],
|
|
33
|
+
providers: [
|
|
34
|
+
{ provide: TgmHttpClient, useFactory: tgmHttpClientFactory, deps: [HttpClient, [new Optional(), TGM_SDK_CONFIG]] },
|
|
35
|
+
],
|
|
36
|
+
}]
|
|
37
|
+
}] });
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGdtLXNkay5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvbGliL3RnbS1zZGsubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQXVCLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4RSxPQUFPLEVBQUUsVUFBVSxFQUFFLGdCQUFnQixFQUFFLGlCQUFpQixFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDdkYsT0FBTyxFQUFFLGNBQWMsRUFBZ0IsTUFBTSxrQkFBa0IsQ0FBQztBQUNoRSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDM0QsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQzFELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDJCQUEyQixDQUFDOztBQUU5RCxNQUFNLFVBQVUsb0JBQW9CLENBQUMsSUFBZ0IsRUFBRSxNQUEyQjtJQUNoRixPQUFPLElBQUksYUFBYSxDQUFDLElBQUksRUFBRSxNQUFNLENBQUMsQ0FBQztBQUN6QyxDQUFDO0FBUUQsTUFBTSxPQUFPLFlBQVk7SUFDdkIsTUFBTSxDQUFDLE9BQU8sQ0FBQyxNQUFvQjtRQUNqQyxPQUFPO1lBQ0wsUUFBUSxFQUFFLFlBQVk7WUFDdEIsU0FBUyxFQUFFO2dCQUNULEVBQUUsT0FBTyxFQUFFLGNBQWMsRUFBRSxRQUFRLEVBQUUsTUFBTSxFQUFFO2dCQUM3QyxFQUFFLE9BQU8sRUFBRSxhQUFhLEVBQUUsVUFBVSxFQUFFLG9CQUFvQixFQUFFLElBQUksRUFBRSxDQUFDLFVBQVUsRUFBRSxDQUFDLElBQUksUUFBUSxFQUFFLEVBQUUsY0FBYyxDQUFDLENBQUMsRUFBRTtnQkFDbEgsRUFBRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsUUFBUSxFQUFFLGVBQWUsRUFBRSxLQUFLLEVBQUUsSUFBSSxFQUFFO2dCQUN0RSxFQUFFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxRQUFRLEVBQUUsaUJBQWlCLEVBQUUsS0FBSyxFQUFFLElBQUksRUFBRTthQUN6RTtTQUNGLENBQUM7SUFDSixDQUFDO3dHQVhVLFlBQVk7eUdBQVosWUFBWSxZQUxiLGdCQUFnQjt5R0FLZixZQUFZLGFBSlo7WUFDVCxFQUFFLE9BQU8sRUFBRSxhQUFhLEVBQUUsVUFBVSxFQUFFLG9CQUFvQixFQUFFLElBQUksRUFBRSxDQUFDLFVBQVUsRUFBRSxDQUFDLElBQUksUUFBUSxFQUFFLEVBQUUsY0FBYyxDQUFDLENBQUMsRUFBRTtTQUNuSCxZQUhTLGdCQUFnQjs7NEZBS2YsWUFBWTtrQkFOeEIsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxnQkFBZ0IsQ0FBQztvQkFDM0IsU0FBUyxFQUFFO3dCQUNULEVBQUUsT0FBTyxFQUFFLGFBQWEsRUFBRSxVQUFVLEVBQUUsb0JBQW9CLEVBQUUsSUFBSSxFQUFFLENBQUMsVUFBVSxFQUFFLENBQUMsSUFBSSxRQUFRLEVBQUUsRUFBRSxjQUFjLENBQUMsQ0FBQyxFQUFFO3FCQUNuSDtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlLCBNb2R1bGVXaXRoUHJvdmlkZXJzLCBPcHRpb25hbCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSHR0cENsaWVudCwgSHR0cENsaWVudE1vZHVsZSwgSFRUUF9JTlRFUkNFUFRPUlMgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5pbXBvcnQgeyBUR01fU0RLX0NPTkZJRywgVGdtU2RrQ29uZmlnIH0gZnJvbSAnLi90Z20tc2RrLmNvbmZpZyc7XG5pbXBvcnQgeyBUZ21IdHRwQ2xpZW50IH0gZnJvbSAnLi9jb3JlL2h0dHAtY2xpZW50LnNlcnZpY2UnO1xuaW1wb3J0IHsgQXV0aEludGVyY2VwdG9yIH0gZnJvbSAnLi9jb3JlL2F1dGgtaW50ZXJjZXB0b3InO1xuaW1wb3J0IHsgQ2xpZW50SW50ZXJjZXB0b3IgfSBmcm9tICcuL2NvcmUvY2xpZW50LWludGVyY2VwdG9yJztcblxuZXhwb3J0IGZ1bmN0aW9uIHRnbUh0dHBDbGllbnRGYWN0b3J5KGh0dHA6IEh0dHBDbGllbnQsIGNvbmZpZzogVGdtU2RrQ29uZmlnIHwgbnVsbCk6IFRnbUh0dHBDbGllbnQge1xuICByZXR1cm4gbmV3IFRnbUh0dHBDbGllbnQoaHR0cCwgY29uZmlnKTtcbn1cblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0h0dHBDbGllbnRNb2R1bGVdLFxuICBwcm92aWRlcnM6IFtcbiAgICB7IHByb3ZpZGU6IFRnbUh0dHBDbGllbnQsIHVzZUZhY3Rvcnk6IHRnbUh0dHBDbGllbnRGYWN0b3J5LCBkZXBzOiBbSHR0cENsaWVudCwgW25ldyBPcHRpb25hbCgpLCBUR01fU0RLX0NPTkZJR11dIH0sXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIFRnbVNka01vZHVsZSB7XG4gIHN0YXRpYyBmb3JSb290KGNvbmZpZzogVGdtU2RrQ29uZmlnKTogTW9kdWxlV2l0aFByb3ZpZGVyczxUZ21TZGtNb2R1bGU+IHtcbiAgICByZXR1cm4ge1xuICAgICAgbmdNb2R1bGU6IFRnbVNka01vZHVsZSxcbiAgICAgIHByb3ZpZGVyczogW1xuICAgICAgICB7IHByb3ZpZGU6IFRHTV9TREtfQ09ORklHLCB1c2VWYWx1ZTogY29uZmlnIH0sXG4gICAgICAgIHsgcHJvdmlkZTogVGdtSHR0cENsaWVudCwgdXNlRmFjdG9yeTogdGdtSHR0cENsaWVudEZhY3RvcnksIGRlcHM6IFtIdHRwQ2xpZW50LCBbbmV3IE9wdGlvbmFsKCksIFRHTV9TREtfQ09ORklHXV0gfSxcbiAgICAgICAgeyBwcm92aWRlOiBIVFRQX0lOVEVSQ0VQVE9SUywgdXNlQ2xhc3M6IEF1dGhJbnRlcmNlcHRvciwgbXVsdGk6IHRydWUgfSxcbiAgICAgICAgeyBwcm92aWRlOiBIVFRQX0lOVEVSQ0VQVE9SUywgdXNlQ2xhc3M6IENsaWVudEludGVyY2VwdG9yLCBtdWx0aTogdHJ1ZSB9LFxuICAgICAgXSxcbiAgICB9O1xuICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* TGM Client SDK for Angular 18
|
|
3
|
+
* Comprehensive type-safe SDK for all TGM Manager API endpoints
|
|
4
|
+
*/
|
|
5
|
+
// --- Module & Config ---
|
|
6
|
+
export { TgmSdkModule } from './lib/tgm-sdk.module';
|
|
7
|
+
export { TGM_SDK_CONFIG, InMemoryTokenStorage } from './lib/tgm-sdk.config';
|
|
8
|
+
// --- Core ---
|
|
9
|
+
export { TgmHttpClient } from './lib/core/http-client.service';
|
|
10
|
+
export { WebSocketService } from './lib/core/websocket.service';
|
|
11
|
+
export { AuthInterceptor } from './lib/core/auth-interceptor';
|
|
12
|
+
export { ClientInterceptor } from './lib/core/client-interceptor';
|
|
13
|
+
export { TgmApiError, mapHttpError } from './lib/core/error-handler';
|
|
14
|
+
// --- Models ---
|
|
15
|
+
export * from './lib/models';
|
|
16
|
+
// --- Services ---
|
|
17
|
+
export * from './lib/services';
|
|
18
|
+
export { ScheduledReportService } from './lib/services/api/scheduled-report.service';
|
|
19
|
+
export { EntityCommentService } from './lib/services/api/entity-comment.service';
|
|
20
|
+
export { AuditEntryService } from './lib/services/api/audit-entry.service';
|
|
21
|
+
// --- Video Call Components ---
|
|
22
|
+
export { VideoCallModule } from './lib/components/video-call/video-call.module';
|
|
23
|
+
export { VideoRoomComponent } from './lib/components/video-call/video-room/video-room.component';
|
|
24
|
+
export { VideoControlsComponent } from './lib/components/video-call/video-controls/video-controls.component';
|
|
25
|
+
export { VideoParticipantComponent } from './lib/components/video-call/video-participant/video-participant.component';
|
|
26
|
+
export { IncomingCallComponent } from './lib/components/video-call/incoming-call/incoming-call.component';
|
|
27
|
+
export { LivekitRoomService } from './lib/components/video-call/services/livekit-room.service';
|
|
28
|
+
export { VideoCallSignalingService } from './lib/components/video-call/services/video-call-signaling.service';
|
|
29
|
+
export { VideoCallStateService } from './lib/components/video-call/services/video-call-state.service';
|
|
30
|
+
// --- Reporting Components ---
|
|
31
|
+
export { ReportingModule } from './lib/components/reporting/reporting.module';
|
|
32
|
+
export { ReportTemplateListComponent } from './lib/components/reporting/report-template-list/report-template-list.component';
|
|
33
|
+
export { ReportGenerateDialogComponent } from './lib/components/reporting/report-generate-dialog/report-generate-dialog.component';
|
|
34
|
+
export { ReportDefinitionListComponent } from './lib/components/reporting/report-definition-list/report-definition-list.component';
|
|
35
|
+
export { ReportDefinitionFormComponent } from './lib/components/reporting/report-definition-form/report-definition-form.component';
|
|
36
|
+
export { GeneratedReportListComponent } from './lib/components/reporting/generated-report-list/generated-report-list.component';
|
|
37
|
+
export { ReportStatsComponent } from './lib/components/reporting/report-stats/report-stats.component';
|
|
38
|
+
export { ExportButtonComponent } from './lib/components/reporting/export-button/export-button.component';
|
|
39
|
+
// --- Database Manager Components ---
|
|
40
|
+
export { DatabaseManagerModule } from './lib/components/database-manager/database-manager.module';
|
|
41
|
+
export { DatabaseManagerComponent } from './lib/components/database-manager/database-manager/database-manager.component';
|
|
42
|
+
export { ObjectBrowserComponent } from './lib/components/database-manager/object-browser/object-browser.component';
|
|
43
|
+
export { QueryEditorComponent } from './lib/components/database-manager/query-editor/query-editor.component';
|
|
44
|
+
export { QueryToolbarComponent } from './lib/components/database-manager/query-toolbar/query-toolbar.component';
|
|
45
|
+
export { ResultsGridComponent } from './lib/components/database-manager/results-grid/results-grid.component';
|
|
46
|
+
export { TableStructureComponent } from './lib/components/database-manager/table-structure/table-structure.component';
|
|
47
|
+
export { TableDataViewerComponent } from './lib/components/database-manager/table-data-viewer/table-data-viewer.component';
|
|
48
|
+
export { RecordDetailComponent } from './lib/components/database-manager/record-detail/record-detail.component';
|
|
49
|
+
export { EntitySchemaService } from './lib/components/database-manager/services/entity-schema.service';
|
|
50
|
+
export { QueryExecutorService } from './lib/components/database-manager/services/query-executor.service';
|
|
51
|
+
export { ENTITY_REGISTRY, DEFAULT_EXCLUDED_ENTITIES, MODULE_LABELS, ENTITY_SERVICE_MAP } from './lib/components/database-manager/registry/entity-registry';
|
|
52
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7R0FHRztBQUVILDBCQUEwQjtBQUMxQixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFDcEQsT0FBTyxFQUFFLGNBQWMsRUFBc0Msb0JBQW9CLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUVoSCxlQUFlO0FBQ2YsT0FBTyxFQUFFLGFBQWEsRUFBK0IsTUFBTSxnQ0FBZ0MsQ0FBQztBQUM1RixPQUFPLEVBQUUsZ0JBQWdCLEVBQW1CLE1BQU0sOEJBQThCLENBQUM7QUFDakYsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQzlELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxXQUFXLEVBQUUsWUFBWSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFFckUsaUJBQWlCO0FBQ2pCLGNBQWMsY0FBYyxDQUFDO0FBRTdCLG1CQUFtQjtBQUNuQixjQUFjLGdCQUFnQixDQUFDO0FBQy9CLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLDZDQUE2QyxDQUFDO0FBQ3JGLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDJDQUEyQyxDQUFDO0FBQ2pGLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBRTNFLGdDQUFnQztBQUNoQyxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sK0NBQStDLENBQUM7QUFDaEYsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sNkRBQTZELENBQUM7QUFDakcsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0scUVBQXFFLENBQUM7QUFDN0csT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sMkVBQTJFLENBQUM7QUFDdEgsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sbUVBQW1FLENBQUM7QUFDMUcsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sMkRBQTJELENBQUM7QUFDL0YsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sbUVBQW1FLENBQUM7QUFDOUcsT0FBTyxFQUFFLHFCQUFxQixFQUFrQixNQUFNLCtEQUErRCxDQUFDO0FBR3RILCtCQUErQjtBQUMvQixPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFDOUUsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sZ0ZBQWdGLENBQUM7QUFDN0gsT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0sb0ZBQW9GLENBQUM7QUFDbkksT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0sb0ZBQW9GLENBQUM7QUFDbkksT0FBTyxFQUFFLDZCQUE2QixFQUFFLE1BQU0sb0ZBQW9GLENBQUM7QUFDbkksT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0sa0ZBQWtGLENBQUM7QUFDaEksT0FBTyxFQUFFLG9CQUFvQixFQUFZLE1BQU0sZ0VBQWdFLENBQUM7QUFDaEgsT0FBTyxFQUFFLHFCQUFxQixFQUFnQixNQUFNLGtFQUFrRSxDQUFDO0FBRXZILHNDQUFzQztBQUN0QyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSwyREFBMkQsQ0FBQztBQUNsRyxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSwrRUFBK0UsQ0FBQztBQUN6SCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSwyRUFBMkUsQ0FBQztBQUNuSCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx1RUFBdUUsQ0FBQztBQUM3RyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSx5RUFBeUUsQ0FBQztBQUNoSCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx1RUFBdUUsQ0FBQztBQUM3RyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSw2RUFBNkUsQ0FBQztBQUN0SCxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxpRkFBaUYsQ0FBQztBQUMzSCxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSx5RUFBeUUsQ0FBQztBQUNoSCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxrRUFBa0UsQ0FBQztBQUN2RyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxtRUFBbUUsQ0FBQztBQVV6RyxPQUFPLEVBQUUsZUFBZSxFQUFFLHlCQUF5QixFQUFFLGFBQWEsRUFBRSxrQkFBa0IsRUFBRSxNQUFNLDREQUE0RCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiAqIFRHTSBDbGllbnQgU0RLIGZvciBBbmd1bGFyIDE4XG4gKiBDb21wcmVoZW5zaXZlIHR5cGUtc2FmZSBTREsgZm9yIGFsbCBUR00gTWFuYWdlciBBUEkgZW5kcG9pbnRzXG4gKi9cblxuLy8gLS0tIE1vZHVsZSAmIENvbmZpZyAtLS1cbmV4cG9ydCB7IFRnbVNka01vZHVsZSB9IGZyb20gJy4vbGliL3RnbS1zZGsubW9kdWxlJztcbmV4cG9ydCB7IFRHTV9TREtfQ09ORklHLCBUZ21TZGtDb25maWcsIFRva2VuU3RvcmFnZVN0cmF0ZWd5LCBJbk1lbW9yeVRva2VuU3RvcmFnZSB9IGZyb20gJy4vbGliL3RnbS1zZGsuY29uZmlnJztcblxuLy8gLS0tIENvcmUgLS0tXG5leHBvcnQgeyBUZ21IdHRwQ2xpZW50LCBUZ21TZGtFcnJvciwgUmVxdWVzdE9wdGlvbnMgfSBmcm9tICcuL2xpYi9jb3JlL2h0dHAtY2xpZW50LnNlcnZpY2UnO1xuZXhwb3J0IHsgV2ViU29ja2V0U2VydmljZSwgQ29ubmVjdGlvblN0YXRlIH0gZnJvbSAnLi9saWIvY29yZS93ZWJzb2NrZXQuc2VydmljZSc7XG5leHBvcnQgeyBBdXRoSW50ZXJjZXB0b3IgfSBmcm9tICcuL2xpYi9jb3JlL2F1dGgtaW50ZXJjZXB0b3InO1xuZXhwb3J0IHsgQ2xpZW50SW50ZXJjZXB0b3IgfSBmcm9tICcuL2xpYi9jb3JlL2NsaWVudC1pbnRlcmNlcHRvcic7XG5leHBvcnQgeyBUZ21BcGlFcnJvciwgbWFwSHR0cEVycm9yIH0gZnJvbSAnLi9saWIvY29yZS9lcnJvci1oYW5kbGVyJztcblxuLy8gLS0tIE1vZGVscyAtLS1cbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZGVscyc7XG5cbi8vIC0tLSBTZXJ2aWNlcyAtLS1cbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlcnZpY2VzJztcbmV4cG9ydCB7IFNjaGVkdWxlZFJlcG9ydFNlcnZpY2UgfSBmcm9tICcuL2xpYi9zZXJ2aWNlcy9hcGkvc2NoZWR1bGVkLXJlcG9ydC5zZXJ2aWNlJztcbmV4cG9ydCB7IEVudGl0eUNvbW1lbnRTZXJ2aWNlIH0gZnJvbSAnLi9saWIvc2VydmljZXMvYXBpL2VudGl0eS1jb21tZW50LnNlcnZpY2UnO1xuZXhwb3J0IHsgQXVkaXRFbnRyeVNlcnZpY2UgfSBmcm9tICcuL2xpYi9zZXJ2aWNlcy9hcGkvYXVkaXQtZW50cnkuc2VydmljZSc7XG5cbi8vIC0tLSBWaWRlbyBDYWxsIENvbXBvbmVudHMgLS0tXG5leHBvcnQgeyBWaWRlb0NhbGxNb2R1bGUgfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3ZpZGVvLWNhbGwvdmlkZW8tY2FsbC5tb2R1bGUnO1xuZXhwb3J0IHsgVmlkZW9Sb29tQ29tcG9uZW50IH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy92aWRlby1jYWxsL3ZpZGVvLXJvb20vdmlkZW8tcm9vbS5jb21wb25lbnQnO1xuZXhwb3J0IHsgVmlkZW9Db250cm9sc0NvbXBvbmVudCB9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvdmlkZW8tY2FsbC92aWRlby1jb250cm9scy92aWRlby1jb250cm9scy5jb21wb25lbnQnO1xuZXhwb3J0IHsgVmlkZW9QYXJ0aWNpcGFudENvbXBvbmVudCB9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvdmlkZW8tY2FsbC92aWRlby1wYXJ0aWNpcGFudC92aWRlby1wYXJ0aWNpcGFudC5jb21wb25lbnQnO1xuZXhwb3J0IHsgSW5jb21pbmdDYWxsQ29tcG9uZW50IH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy92aWRlby1jYWxsL2luY29taW5nLWNhbGwvaW5jb21pbmctY2FsbC5jb21wb25lbnQnO1xuZXhwb3J0IHsgTGl2ZWtpdFJvb21TZXJ2aWNlIH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy92aWRlby1jYWxsL3NlcnZpY2VzL2xpdmVraXQtcm9vbS5zZXJ2aWNlJztcbmV4cG9ydCB7IFZpZGVvQ2FsbFNpZ25hbGluZ1NlcnZpY2UgfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3ZpZGVvLWNhbGwvc2VydmljZXMvdmlkZW8tY2FsbC1zaWduYWxpbmcuc2VydmljZSc7XG5leHBvcnQgeyBWaWRlb0NhbGxTdGF0ZVNlcnZpY2UsIFZpZGVvQ2FsbFN0YXRlIH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy92aWRlby1jYWxsL3NlcnZpY2VzL3ZpZGVvLWNhbGwtc3RhdGUuc2VydmljZSc7XG5leHBvcnQgeyBQYXJ0aWNpcGFudEluZm8gfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3ZpZGVvLWNhbGwvdHlwZXMvdmlkZW8tY2FsbC50eXBlcyc7XG5cbi8vIC0tLSBSZXBvcnRpbmcgQ29tcG9uZW50cyAtLS1cbmV4cG9ydCB7IFJlcG9ydGluZ01vZHVsZSB9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvcmVwb3J0aW5nL3JlcG9ydGluZy5tb2R1bGUnO1xuZXhwb3J0IHsgUmVwb3J0VGVtcGxhdGVMaXN0Q29tcG9uZW50IH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9yZXBvcnRpbmcvcmVwb3J0LXRlbXBsYXRlLWxpc3QvcmVwb3J0LXRlbXBsYXRlLWxpc3QuY29tcG9uZW50JztcbmV4cG9ydCB7IFJlcG9ydEdlbmVyYXRlRGlhbG9nQ29tcG9uZW50IH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9yZXBvcnRpbmcvcmVwb3J0LWdlbmVyYXRlLWRpYWxvZy9yZXBvcnQtZ2VuZXJhdGUtZGlhbG9nLmNvbXBvbmVudCc7XG5leHBvcnQgeyBSZXBvcnREZWZpbml0aW9uTGlzdENvbXBvbmVudCB9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvcmVwb3J0aW5nL3JlcG9ydC1kZWZpbml0aW9uLWxpc3QvcmVwb3J0LWRlZmluaXRpb24tbGlzdC5jb21wb25lbnQnO1xuZXhwb3J0IHsgUmVwb3J0RGVmaW5pdGlvbkZvcm1Db21wb25lbnQgfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3JlcG9ydGluZy9yZXBvcnQtZGVmaW5pdGlvbi1mb3JtL3JlcG9ydC1kZWZpbml0aW9uLWZvcm0uY29tcG9uZW50JztcbmV4cG9ydCB7IEdlbmVyYXRlZFJlcG9ydExpc3RDb21wb25lbnQgfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3JlcG9ydGluZy9nZW5lcmF0ZWQtcmVwb3J0LWxpc3QvZ2VuZXJhdGVkLXJlcG9ydC1saXN0LmNvbXBvbmVudCc7XG5leHBvcnQgeyBSZXBvcnRTdGF0c0NvbXBvbmVudCwgU3RhdENhcmQgfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL3JlcG9ydGluZy9yZXBvcnQtc3RhdHMvcmVwb3J0LXN0YXRzLmNvbXBvbmVudCc7XG5leHBvcnQgeyBFeHBvcnRCdXR0b25Db21wb25lbnQsIEV4cG9ydEZvcm1hdCB9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvcmVwb3J0aW5nL2V4cG9ydC1idXR0b24vZXhwb3J0LWJ1dHRvbi5jb21wb25lbnQnO1xuXG4vLyAtLS0gRGF0YWJhc2UgTWFuYWdlciBDb21wb25lbnRzIC0tLVxuZXhwb3J0IHsgRGF0YWJhc2VNYW5hZ2VyTW9kdWxlIH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9kYXRhYmFzZS1tYW5hZ2VyL2RhdGFiYXNlLW1hbmFnZXIubW9kdWxlJztcbmV4cG9ydCB7IERhdGFiYXNlTWFuYWdlckNvbXBvbmVudCB9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvZGF0YWJhc2UtbWFuYWdlci9kYXRhYmFzZS1tYW5hZ2VyL2RhdGFiYXNlLW1hbmFnZXIuY29tcG9uZW50JztcbmV4cG9ydCB7IE9iamVjdEJyb3dzZXJDb21wb25lbnQgfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL2RhdGFiYXNlLW1hbmFnZXIvb2JqZWN0LWJyb3dzZXIvb2JqZWN0LWJyb3dzZXIuY29tcG9uZW50JztcbmV4cG9ydCB7IFF1ZXJ5RWRpdG9yQ29tcG9uZW50IH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9kYXRhYmFzZS1tYW5hZ2VyL3F1ZXJ5LWVkaXRvci9xdWVyeS1lZGl0b3IuY29tcG9uZW50JztcbmV4cG9ydCB7IFF1ZXJ5VG9vbGJhckNvbXBvbmVudCB9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvZGF0YWJhc2UtbWFuYWdlci9xdWVyeS10b29sYmFyL3F1ZXJ5LXRvb2xiYXIuY29tcG9uZW50JztcbmV4cG9ydCB7IFJlc3VsdHNHcmlkQ29tcG9uZW50IH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9kYXRhYmFzZS1tYW5hZ2VyL3Jlc3VsdHMtZ3JpZC9yZXN1bHRzLWdyaWQuY29tcG9uZW50JztcbmV4cG9ydCB7IFRhYmxlU3RydWN0dXJlQ29tcG9uZW50IH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9kYXRhYmFzZS1tYW5hZ2VyL3RhYmxlLXN0cnVjdHVyZS90YWJsZS1zdHJ1Y3R1cmUuY29tcG9uZW50JztcbmV4cG9ydCB7IFRhYmxlRGF0YVZpZXdlckNvbXBvbmVudCB9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvZGF0YWJhc2UtbWFuYWdlci90YWJsZS1kYXRhLXZpZXdlci90YWJsZS1kYXRhLXZpZXdlci5jb21wb25lbnQnO1xuZXhwb3J0IHsgUmVjb3JkRGV0YWlsQ29tcG9uZW50IH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9kYXRhYmFzZS1tYW5hZ2VyL3JlY29yZC1kZXRhaWwvcmVjb3JkLWRldGFpbC5jb21wb25lbnQnO1xuZXhwb3J0IHsgRW50aXR5U2NoZW1hU2VydmljZSB9IGZyb20gJy4vbGliL2NvbXBvbmVudHMvZGF0YWJhc2UtbWFuYWdlci9zZXJ2aWNlcy9lbnRpdHktc2NoZW1hLnNlcnZpY2UnO1xuZXhwb3J0IHsgUXVlcnlFeGVjdXRvclNlcnZpY2UgfSBmcm9tICcuL2xpYi9jb21wb25lbnRzL2RhdGFiYXNlLW1hbmFnZXIvc2VydmljZXMvcXVlcnktZXhlY3V0b3Iuc2VydmljZSc7XG5leHBvcnQge1xuICBFbnRpdHlGaWVsZE1ldGEsXG4gIEVudGl0eVJlZ2lzdHJ5RW50cnksXG4gIFF1ZXJ5TW9kZWwsXG4gIFF1ZXJ5UmVzdWx0LFxuICBEYXRhYmFzZU1hbmFnZXJDb25maWcsXG4gIEVkaXRvclRhYixcbiAgRW50aXR5TW9kdWxlR3JvdXAsXG59IGZyb20gJy4vbGliL2NvbXBvbmVudHMvZGF0YWJhc2UtbWFuYWdlci90eXBlcy9kYXRhYmFzZS1tYW5hZ2VyLnR5cGVzJztcbmV4cG9ydCB7IEVOVElUWV9SRUdJU1RSWSwgREVGQVVMVF9FWENMVURFRF9FTlRJVElFUywgTU9EVUxFX0xBQkVMUywgRU5USVRZX1NFUlZJQ0VfTUFQIH0gZnJvbSAnLi9saWIvY29tcG9uZW50cy9kYXRhYmFzZS1tYW5hZ2VyL3JlZ2lzdHJ5L2VudGl0eS1yZWdpc3RyeSc7XG4iXX0=
|