@en-solutions/tgm-client-sdk 1.8.6 → 1.9.2
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/esm2022/lib/models/api/grid.models.mjs +6 -0
- package/esm2022/lib/models/api/plugin.models.mjs +3 -0
- package/esm2022/lib/models/index.mjs +3 -1
- package/esm2022/lib/services/api/asset-lifecycle.service.mjs +7 -4
- package/esm2022/lib/services/api/export.service.mjs +14 -1
- package/esm2022/lib/services/api/grid.service.mjs +80 -0
- package/esm2022/lib/services/api/index.mjs +3 -1
- package/esm2022/lib/services/api/plugin.service.mjs +49 -0
- package/fesm2022/en-solutions-tgm-client-sdk.mjs +148 -5
- package/fesm2022/en-solutions-tgm-client-sdk.mjs.map +1 -1
- package/lib/models/api/grid.models.d.ts +55 -0
- package/lib/models/api/plugin.models.d.ts +20 -0
- package/lib/models/index.d.ts +2 -0
- package/lib/services/api/asset-lifecycle.service.d.ts +2 -1
- package/lib/services/api/export.service.d.ts +4 -0
- package/lib/services/api/grid.service.d.ts +54 -0
- package/lib/services/api/index.d.ts +2 -0
- package/lib/services/api/plugin.service.d.ts +25 -0
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { InjectionToken, Injectable, Inject, Optional, NgModule, inject, ViewChild, Input, Component, EventEmitter, Output, HostListener } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common/http';
|
|
4
4
|
import { HttpClient, HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
|
|
5
|
-
import { BehaviorSubject, Subject, catchError, throwError, take, switchMap, takeUntil, share, tap, firstValueFrom, shareReplay, map } from 'rxjs';
|
|
5
|
+
import { BehaviorSubject, Subject, catchError, throwError, take, switchMap, takeUntil, share, tap, firstValueFrom, shareReplay, map, Observable } from 'rxjs';
|
|
6
6
|
import { Client } from '@stomp/stompjs';
|
|
7
7
|
import * as SockJSModule from 'sockjs-client';
|
|
8
8
|
import { supported, create, get } from '@github/webauthn-json';
|
|
@@ -967,6 +967,13 @@ function isBulkSensorMessage(msg) {
|
|
|
967
967
|
return 'readings' in msg && Array.isArray(msg.readings);
|
|
968
968
|
}
|
|
969
969
|
|
|
970
|
+
/**
|
|
971
|
+
* Grid Management plugin models — distribution network nodes/links and live status.
|
|
972
|
+
* Mirrors the backend `ca.ensolutions.tgm.grid` entities and DTOs.
|
|
973
|
+
*/
|
|
974
|
+
|
|
975
|
+
/** Plugin framework models — installable per-tenant modules. */
|
|
976
|
+
|
|
970
977
|
class AuthService {
|
|
971
978
|
http;
|
|
972
979
|
currentUser$ = new BehaviorSubject(null);
|
|
@@ -4562,6 +4569,19 @@ class ExportService {
|
|
|
4562
4569
|
constructor(http) {
|
|
4563
4570
|
this.http = http;
|
|
4564
4571
|
}
|
|
4572
|
+
// ================== DASHBOARD ==================
|
|
4573
|
+
/** Export the dashboard KPIs as CSV (period in days, default 30). */
|
|
4574
|
+
exportDashboardCsv(periodDays = 30) {
|
|
4575
|
+
return this.http.download(`${this.basePath}/dashboard`, {
|
|
4576
|
+
params: { format: 'csv', periodDays },
|
|
4577
|
+
});
|
|
4578
|
+
}
|
|
4579
|
+
/** Export the dashboard KPIs as Excel (period in days, default 30). */
|
|
4580
|
+
exportDashboardExcel(periodDays = 30) {
|
|
4581
|
+
return this.http.download(`${this.basePath}/dashboard`, {
|
|
4582
|
+
params: { format: 'excel', periodDays },
|
|
4583
|
+
});
|
|
4584
|
+
}
|
|
4565
4585
|
exportInspectionsExcel(ids) {
|
|
4566
4586
|
return this.http.download(`${this.basePath}/inspections/excel`, {
|
|
4567
4587
|
params: ids?.length ? { ids: ids.join(',') } : undefined,
|
|
@@ -5603,7 +5623,9 @@ class AssetLifecycleService {
|
|
|
5603
5623
|
return this.http.get(`${this.basePath}/component/${componentId}`);
|
|
5604
5624
|
}
|
|
5605
5625
|
update(lifecycleId, data) {
|
|
5606
|
-
|
|
5626
|
+
// Use the standard CRUD endpoint — the custom PATCH /asset-lifecycle/:id returns 200 but does
|
|
5627
|
+
// not persist. PUT /api/asset-lifecycles/:id saves correctly (matches getAll/createRecord).
|
|
5628
|
+
return this.http.put(`/api/asset-lifecycles/${lifecycleId}`, data);
|
|
5607
5629
|
}
|
|
5608
5630
|
transition(lifecycleId, newStage) {
|
|
5609
5631
|
return this.http.post(`${this.basePath}/${lifecycleId}/transition`, null, {
|
|
@@ -5648,9 +5670,10 @@ class AssetLifecycleService {
|
|
|
5648
5670
|
getStageEnums() {
|
|
5649
5671
|
return this.http.get(`${this.basePath}/enums/stages`);
|
|
5650
5672
|
}
|
|
5651
|
-
/** Create a lifecycle record via the collection endpoint
|
|
5673
|
+
/** Create a lifecycle record via the standard collection endpoint. The backend expects a FLAT
|
|
5674
|
+
* payload — wrapping it in { data } makes Spring ignore every field and persist an empty record. */
|
|
5652
5675
|
createRecord(data) {
|
|
5653
|
-
return this.http.post('/api/asset-lifecycles',
|
|
5676
|
+
return this.http.post('/api/asset-lifecycles', data);
|
|
5654
5677
|
}
|
|
5655
5678
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AssetLifecycleService, deps: [{ token: TgmHttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5656
5679
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: AssetLifecycleService, providedIn: 'root' });
|
|
@@ -7090,6 +7113,126 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
7090
7113
|
args: [{ providedIn: 'root' }]
|
|
7091
7114
|
}] });
|
|
7092
7115
|
|
|
7116
|
+
/** CRUD for grid nodes (`/api/grid/nodes`). Requires the grid-management plugin. */
|
|
7117
|
+
class GridNodeService extends BaseCrudService {
|
|
7118
|
+
resourcePath = '/api/grid/nodes';
|
|
7119
|
+
constructor(http) {
|
|
7120
|
+
super(http);
|
|
7121
|
+
}
|
|
7122
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridNodeService, deps: [{ token: TgmHttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7123
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridNodeService, providedIn: 'root' });
|
|
7124
|
+
}
|
|
7125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridNodeService, decorators: [{
|
|
7126
|
+
type: Injectable,
|
|
7127
|
+
args: [{ providedIn: 'root' }]
|
|
7128
|
+
}], ctorParameters: () => [{ type: TgmHttpClient }] });
|
|
7129
|
+
/** CRUD for grid links/edges (`/api/grid/links`). */
|
|
7130
|
+
class GridLinkService extends BaseCrudService {
|
|
7131
|
+
resourcePath = '/api/grid/links';
|
|
7132
|
+
constructor(http) {
|
|
7133
|
+
super(http);
|
|
7134
|
+
}
|
|
7135
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridLinkService, deps: [{ token: TgmHttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7136
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridLinkService, providedIn: 'root' });
|
|
7137
|
+
}
|
|
7138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridLinkService, decorators: [{
|
|
7139
|
+
type: Injectable,
|
|
7140
|
+
args: [{ providedIn: 'root' }]
|
|
7141
|
+
}], ctorParameters: () => [{ type: TgmHttpClient }] });
|
|
7142
|
+
/**
|
|
7143
|
+
* Real-time distribution-grid view: the status snapshot that powers the map plus a live STOMP feed.
|
|
7144
|
+
*
|
|
7145
|
+
* Typical usage:
|
|
7146
|
+
* ```ts
|
|
7147
|
+
* grid.status().subscribe(r => this.render(r.data)); // initial map render
|
|
7148
|
+
* grid.liveStatus().subscribe(snapshot => this.render(snapshot)); // live updates
|
|
7149
|
+
* ```
|
|
7150
|
+
*/
|
|
7151
|
+
class GridService {
|
|
7152
|
+
http;
|
|
7153
|
+
ws;
|
|
7154
|
+
base = '/api/grid';
|
|
7155
|
+
static TOPIC_STATUS = '/topic/grid/status';
|
|
7156
|
+
constructor(http, ws) {
|
|
7157
|
+
this.http = http;
|
|
7158
|
+
this.ws = ws;
|
|
7159
|
+
}
|
|
7160
|
+
/** Live status snapshot of every node (for the initial map render). */
|
|
7161
|
+
status() {
|
|
7162
|
+
return this.http.get(`${this.base}/status`);
|
|
7163
|
+
}
|
|
7164
|
+
/** All links/edges (for drawing the topology). */
|
|
7165
|
+
links() {
|
|
7166
|
+
return this.http.get(`${this.base}/links`);
|
|
7167
|
+
}
|
|
7168
|
+
/** Admin: recompute and persist live states, then broadcast over WebSocket. */
|
|
7169
|
+
recompute() {
|
|
7170
|
+
return this.http.post(`${this.base}/status/recompute`, {});
|
|
7171
|
+
}
|
|
7172
|
+
/**
|
|
7173
|
+
* Live stream of full status snapshots pushed on `/topic/grid/status`.
|
|
7174
|
+
* Ensure {@link WebSocketService.connect} has been called once after login.
|
|
7175
|
+
*/
|
|
7176
|
+
liveStatus() {
|
|
7177
|
+
return this.ws.subscribe(GridService.TOPIC_STATUS);
|
|
7178
|
+
}
|
|
7179
|
+
/** Live stream for a single node pushed on `/topic/grid/node/{id}`. */
|
|
7180
|
+
liveNode(nodeId) {
|
|
7181
|
+
return this.ws.subscribe(`/topic/grid/node/${nodeId}`);
|
|
7182
|
+
}
|
|
7183
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridService, deps: [{ token: TgmHttpClient }, { token: WebSocketService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7184
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridService, providedIn: 'root' });
|
|
7185
|
+
}
|
|
7186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: GridService, decorators: [{
|
|
7187
|
+
type: Injectable,
|
|
7188
|
+
args: [{ providedIn: 'root' }]
|
|
7189
|
+
}], ctorParameters: () => [{ type: TgmHttpClient }, { type: WebSocketService }] });
|
|
7190
|
+
|
|
7191
|
+
/**
|
|
7192
|
+
* Installable modules (plugins) for the current organization.
|
|
7193
|
+
*
|
|
7194
|
+
* `list()` is readable by any authenticated user — the frontend uses it to decide which modules /
|
|
7195
|
+
* menus to reveal. `install()` / `uninstall()` require an admin and run the plugin's isolated
|
|
7196
|
+
* migrations on the tenant DB.
|
|
7197
|
+
*/
|
|
7198
|
+
class PluginService {
|
|
7199
|
+
http;
|
|
7200
|
+
base = '/api/plugins';
|
|
7201
|
+
constructor(http) {
|
|
7202
|
+
this.http = http;
|
|
7203
|
+
}
|
|
7204
|
+
/** Catalog of all plugins with this organization's install status. */
|
|
7205
|
+
list() {
|
|
7206
|
+
return this.http.get(this.base);
|
|
7207
|
+
}
|
|
7208
|
+
/** True if the given plugin is installed for the current organization. */
|
|
7209
|
+
isInstalled(pluginId) {
|
|
7210
|
+
return new Observable((sub) => {
|
|
7211
|
+
const s = this.list().subscribe({
|
|
7212
|
+
next: (r) => {
|
|
7213
|
+
const found = (r.data ?? []).find((p) => p.id === pluginId);
|
|
7214
|
+
sub.next(!!found?.installed);
|
|
7215
|
+
sub.complete();
|
|
7216
|
+
},
|
|
7217
|
+
error: (e) => sub.error(e),
|
|
7218
|
+
});
|
|
7219
|
+
return () => s.unsubscribe();
|
|
7220
|
+
});
|
|
7221
|
+
}
|
|
7222
|
+
install(pluginId) {
|
|
7223
|
+
return this.http.post(`${this.base}/${pluginId}/install`, {});
|
|
7224
|
+
}
|
|
7225
|
+
uninstall(pluginId) {
|
|
7226
|
+
return this.http.post(`${this.base}/${pluginId}/uninstall`, {});
|
|
7227
|
+
}
|
|
7228
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PluginService, deps: [{ token: TgmHttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7229
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PluginService, providedIn: 'root' });
|
|
7230
|
+
}
|
|
7231
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PluginService, decorators: [{
|
|
7232
|
+
type: Injectable,
|
|
7233
|
+
args: [{ providedIn: 'root' }]
|
|
7234
|
+
}], ctorParameters: () => [{ type: TgmHttpClient }] });
|
|
7235
|
+
|
|
7093
7236
|
class ChatRestService {
|
|
7094
7237
|
http;
|
|
7095
7238
|
basePath = '/api/chat';
|
|
@@ -11468,5 +11611,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
11468
11611
|
* Generated bundle index. Do not edit.
|
|
11469
11612
|
*/
|
|
11470
11613
|
|
|
11471
|
-
export { AIScenarioService, AIScenarioType, ActivePermitHolder, ActivityLogService, AgentService, AiFeedbackService, AiProvider, AiService, AiUsageService, AipAnalysisService, AipAssessmentService, AipFinancialService, AipGeographicService, AipNetworkAnalysisService, AipNetworkNodeService, AipPerformanceRecordService, AipPerformanceService, AipPlanService, AipResourceConstraintService, AipResourceService, AipRiskAnalysisService, AipScenarioService, AipSettingsService, AipWorkflowService, AlertDefinitionService, AlertService, AlertSeverity, AlertStatus, AncillaryServiceCrudService, AncillaryServiceStatus, AncillaryServiceType, AnnouncementService, AnnouncementType, AnomalyDetectionService, ApiTokenStatus, AppLanguage, ApprovalStatus, ArticleAdminService, ArticleCategoryService, ArticleService, ArticleTopicService, AssetLifecycleService, AssetLifecycleStage, AssetLifecycleStatus, AssetPhase, AuditEntryService, AuditLogService, AuthInterceptor, AuthService, BackupService, BackupStatus, BaseCrudService, BathymetricSurveyService, BestPracticeCategoryService, BestPracticeService, BidService, BudgetService, BulkOperationService, CAPAStatus, CAPAType, CacheAdminService, CalendarPlanning, CapexProjectService, CatAttachmentCategory, CatAttachmentPhase, CatAttachmentService, CatComponentType, CatDoneBy, CatEquipmentOwner, CatExecutionResultService, CatMachineCondition, CatOutageType, CatPersonnelAssignmentService, CatPlanningEquipmentItemService, CatRecommendedAction, CatSignOffRole, CatSignOffService, CatStatus, CatTestResult, CatTestTrigger, CatTrendVsPrevious, CatTypeOfTest, CatWhereDone, CertificationService, ChatMessageType, ChatRestService, ChatWebSocketService, ChecklistPeriodicity, ChecklistRunningMode, ClientAdminService, ClientApiKeyService, ClientArticleService, ClientInterceptor, ClientOcrService, ClientStatus, ClientUsageService, CmsContentTypeService, CmsDataService, CmsMenuHelper, CommunityCommentService, CommunityPostService, CompanyMaterialService, CompanyMaterialTypeService, CompanyService, ComplianceObligationService, ComplianceSubmissionService, ComplianceSubmissionStatus, ComponentCategory, ComponentChecklistGroupService, ComponentChecklistService, ComponentChecklistTemplateService, ComponentGroupService, ComponentInfoCategory, ComponentInfoService, ComponentInfoStatus, ComponentInfoType, ComponentLocationService, ComponentService, ComponentType, ConditionAssessmentTestService, ConversationType, CorrectiveActionService, CortexEventService, CortexInsightService, CortexNodeService, CortexService, CostAllocation, CountryService, CurtailmentEventService, CurtailmentStatus, CurtailmentType, CustomFieldDefinitionService, CustomFieldService, CustomFieldType, CustomFormService, CustomService, DEFAULT_EXCLUDED_ENTITIES, DashboardService, DataExportService, DatabaseManagerComponent, DatabaseManagerModule, DeferralConstraintRuleService, DeferralDecisionService, DeferralEvaluationService, DepartmentService, DeploymentType, DepreciationMethod, DeviceGatewayService, DiagnosticReportService, DigitalTwinService, DocumentAdminService, DrawingCategoryService, DrawingService, DriverService, DriverStatus, DynamicCrudService, ENTITY_REGISTRY, ENTITY_SERVICE_MAP, ElevationStorageCurveService, EmailAdminService, EmailProviderAdminService, EmailProviderType, EnergyAnalyticsService, EnergyProductionService, EnergySourceType, EntityCommentService, EntitySchemaService, EnvironmentalPermitService, ErpAdminService, ErpAuthType, ErpType, EventNature, EventService, ExportButtonComponent, ExportService, ExtensionEventType, ExtensionService, ExtensionStatus, FailureActionService, FailureCauseService, FailureImpact, FailureLikelihood, FailureRiskLevel, FailureService, FaqCategoryService, FaqService, FeedbackService, FilterParams, FishMonitoringService, FishboneCategory, FontService, FormCategoryService, FormService, FuelRecordService, FuelType, GateControlService, GateControlType, GateSystemService, GateType, GeneratedReportListComponent, GeofenceEventService, GeofenceEventType, GeofenceService, GeofenceType, GoodsReceiptService, GpsLocationService, GridConnectionService, GridConnectionStatus, IdentityProviderAdminService, ImpersonationService, InMemoryTokenStorage, InactiveComponentService, IncidentCategory, IncidentService, IncidentType, IncomingCallComponent, InspectionComponentService, InspectionLevel, InspectionNature, InspectionService, InspectionType, InterventionRequestService, InterventionRequestStatus, InterventionService, InvestmentOptionService, JobTitleService, JsaItemService, JsaStepService, KpiEventService, LOTOBoxStatus, LOTOBoxType, LOTOLockRole, LOTOLockStatus, LOTOLockType, LOTOOverallStatus, LaboratoryResultService, LayoutType, LearningModuleCategoryService, LessonLearnedOrigin, LessonLearnedService, LessonLearnedStatus, LicenseService, LivekitRoomService, LocationService, LogService, LoginHistoryService, LoginRequestService, MODULE_LABELS, MaintenanceJsaService, MaintenancePlanService, MaintenanceRecordService, MaintenanceStatus, MaintenanceType, ManualReadingService, MaterialCategoryService, MaterialConsumableCategoryService, MaterialConsumableHistoryService, MaterialConsumableService, MaterialInstrumentHistoryService, MaterialInstrumentService, MaterialItemHistoryService, MaterialItemService, MaterialToolingCategoryService, MaterialToolingHistoryService, MaterialToolingService, MeasurementService, MeasurementUnitService, MeasurementUnitSystem, MessageChannel, MessageService, MessagingProviderAdminService, MessagingProviderType, MeteringParameterStatus, MeteringParameterSubType, MeteringParameterType, MiHistoryService, MiRequestService, MigrationStatus, ModelFileService, ModelService, ModuleLearningService, ModuleService, ModuleVideoService, MonitoringLocationType, MonitoringMethod, NoteService, ObjectBrowserComponent, ObligationFrequency, ObligationStatus, ObligationType, ObservationCategory, ObservationSeverity, OcrProcessingStatus, OperatingEventService, OperatingMode, OperationalObservationService, OutageEventService, OutageResourceService, OutageStatus, OutageType, PC2PermitSubType, ParticipantRole, Periodicity, PermissionService, PermitOrigin, PermitStatus, PermitType, PlantDataService, PlantSize, PlantStatus, PlatformAdminRole, PlatformAdminService, PlatformAuthService, PlatformNotificationService, PlatformWebhookService, PremiseType, PresenceStatus, PresetProvider, Priority, ProfilePermissionService, ProfileService, ProjectService, PropertiesGroupService, PropertiesTemplateService, PropertyService, PropertyTemplateService, ProviderType, ProvisioningStep, PurchaseOrderService, QueryEditorComponent, QueryExecutorService, QueryToolbarComponent, QueueAdminService, RCAMethodology, RCAStatus, RcaEventCause, RcaWorkOrderType, ReadingType, RealtimeEventService, ReasonForInspection, ReasonForIntervention, RechargeRequestService, RecordDetailComponent, RecurringEventService, RefurbishmentService, Region, RegulatoryUpdateService, RegulatoryUpdateType, ReportDefinitionFormComponent, ReportDefinitionListComponent, ReportGenerateDialogComponent, ReportStatsComponent, ReportTemplateListComponent, ReportingModule, ReportingService, ReservoirDataService, ReservoirTimeSeriesService, ReservoirWebSocketService, ResourceCategoryService, ResourceService, ResourceTopicService, ResultsGridComponent, RoleAdminService, RoleService, RoleType, RoomService, RootCauseAnalysisService, SampleType, SandboxAccessLevel, SandboxAdminService, SandboxService, SandboxStatus, ScheduledReportService, SchedulerAdminService, SearchService, SedimentManagementPlanService, SedimentRemovalOperationService, SensorService, SensorType, SiteAssessmentService, SlaBreachRecordService, SlaPolicyService, SparePartService, SsoAuthService, StockCountService, StockMovementService, SubAssemblyService, SubscriptionPlan, SubscriptionService, SubscriptionStatus, SupplierService, SurveyMethod, SyncDirection, SystemHealthService, SystemicRiskAssessmentService, TGM_SDK_CONFIG, TableDataViewerComponent, TableStructureComponent, TaskRunStatus, TermsOfUseService, TgFileService, TgFolderService, TgmApiError, TgmEntityType, TgmHttpClient, TgmSdkModule, ThresholdAlertRuleService, TicketPriority, TicketService, TicketStatus, TimeEntryService, TodoService, TotpService, TrackedEntityService, TrackedEntityType, TrackingStatus, TrainingCertificateService, TripStatus, TurbineTypeService, UnitService, UnitShutdownHistoryService, UnitStatus, UploadService, UserAdminService, UserLearningService, UserNotificationService, UserPermissionService, UserProfileService, UserService, VehicleInspectionService, VehicleInspectionType, VehicleMaintenanceService, VehicleMaintenanceType, VehicleService, VehicleStatus, VehicleTripService, VehicleType, VerificationStatus, VideoCallModule, VideoCallRestService, VideoCallSignalingService, VideoCallStateService, VideoCallStatus, VideoCallType, VideoCallWebSocketService, VideoControlsComponent, VideoParticipantComponent, VideoParticipantRole, VideoParticipantStatus, VideoRoomComponent, WarehouseService, WarehouseStockService, WarrantyClaimService, WarrantyClaimStatus, WarrantyContractService, WarrantyStatus, WarrantyType, WaterLevel, WebAuthnService, WebSocketService, WebhookAdminService, WorkOrderService, WorkOrderSourceType, WorkOrderStatus, WorkPermitCategory, WorkPermitService, WorkPermitStatus, ApprovalWorkflowService as WorkflowService, WorkflowStatus, WorkflowType, YesNo, isBulkSensorMessage, mapHttpError };
|
|
11614
|
+
export { AIScenarioService, AIScenarioType, ActivePermitHolder, ActivityLogService, AgentService, AiFeedbackService, AiProvider, AiService, AiUsageService, AipAnalysisService, AipAssessmentService, AipFinancialService, AipGeographicService, AipNetworkAnalysisService, AipNetworkNodeService, AipPerformanceRecordService, AipPerformanceService, AipPlanService, AipResourceConstraintService, AipResourceService, AipRiskAnalysisService, AipScenarioService, AipSettingsService, AipWorkflowService, AlertDefinitionService, AlertService, AlertSeverity, AlertStatus, AncillaryServiceCrudService, AncillaryServiceStatus, AncillaryServiceType, AnnouncementService, AnnouncementType, AnomalyDetectionService, ApiTokenStatus, AppLanguage, ApprovalStatus, ArticleAdminService, ArticleCategoryService, ArticleService, ArticleTopicService, AssetLifecycleService, AssetLifecycleStage, AssetLifecycleStatus, AssetPhase, AuditEntryService, AuditLogService, AuthInterceptor, AuthService, BackupService, BackupStatus, BaseCrudService, BathymetricSurveyService, BestPracticeCategoryService, BestPracticeService, BidService, BudgetService, BulkOperationService, CAPAStatus, CAPAType, CacheAdminService, CalendarPlanning, CapexProjectService, CatAttachmentCategory, CatAttachmentPhase, CatAttachmentService, CatComponentType, CatDoneBy, CatEquipmentOwner, CatExecutionResultService, CatMachineCondition, CatOutageType, CatPersonnelAssignmentService, CatPlanningEquipmentItemService, CatRecommendedAction, CatSignOffRole, CatSignOffService, CatStatus, CatTestResult, CatTestTrigger, CatTrendVsPrevious, CatTypeOfTest, CatWhereDone, CertificationService, ChatMessageType, ChatRestService, ChatWebSocketService, ChecklistPeriodicity, ChecklistRunningMode, ClientAdminService, ClientApiKeyService, ClientArticleService, ClientInterceptor, ClientOcrService, ClientStatus, ClientUsageService, CmsContentTypeService, CmsDataService, CmsMenuHelper, CommunityCommentService, CommunityPostService, CompanyMaterialService, CompanyMaterialTypeService, CompanyService, ComplianceObligationService, ComplianceSubmissionService, ComplianceSubmissionStatus, ComponentCategory, ComponentChecklistGroupService, ComponentChecklistService, ComponentChecklistTemplateService, ComponentGroupService, ComponentInfoCategory, ComponentInfoService, ComponentInfoStatus, ComponentInfoType, ComponentLocationService, ComponentService, ComponentType, ConditionAssessmentTestService, ConversationType, CorrectiveActionService, CortexEventService, CortexInsightService, CortexNodeService, CortexService, CostAllocation, CountryService, CurtailmentEventService, CurtailmentStatus, CurtailmentType, CustomFieldDefinitionService, CustomFieldService, CustomFieldType, CustomFormService, CustomService, DEFAULT_EXCLUDED_ENTITIES, DashboardService, DataExportService, DatabaseManagerComponent, DatabaseManagerModule, DeferralConstraintRuleService, DeferralDecisionService, DeferralEvaluationService, DepartmentService, DeploymentType, DepreciationMethod, DeviceGatewayService, DiagnosticReportService, DigitalTwinService, DocumentAdminService, DrawingCategoryService, DrawingService, DriverService, DriverStatus, DynamicCrudService, ENTITY_REGISTRY, ENTITY_SERVICE_MAP, ElevationStorageCurveService, EmailAdminService, EmailProviderAdminService, EmailProviderType, EnergyAnalyticsService, EnergyProductionService, EnergySourceType, EntityCommentService, EntitySchemaService, EnvironmentalPermitService, ErpAdminService, ErpAuthType, ErpType, EventNature, EventService, ExportButtonComponent, ExportService, ExtensionEventType, ExtensionService, ExtensionStatus, FailureActionService, FailureCauseService, FailureImpact, FailureLikelihood, FailureRiskLevel, FailureService, FaqCategoryService, FaqService, FeedbackService, FilterParams, FishMonitoringService, FishboneCategory, FontService, FormCategoryService, FormService, FuelRecordService, FuelType, GateControlService, GateControlType, GateSystemService, GateType, GeneratedReportListComponent, GeofenceEventService, GeofenceEventType, GeofenceService, GeofenceType, GoodsReceiptService, GpsLocationService, GridConnectionService, GridConnectionStatus, GridLinkService, GridNodeService, GridService, IdentityProviderAdminService, ImpersonationService, InMemoryTokenStorage, InactiveComponentService, IncidentCategory, IncidentService, IncidentType, IncomingCallComponent, InspectionComponentService, InspectionLevel, InspectionNature, InspectionService, InspectionType, InterventionRequestService, InterventionRequestStatus, InterventionService, InvestmentOptionService, JobTitleService, JsaItemService, JsaStepService, KpiEventService, LOTOBoxStatus, LOTOBoxType, LOTOLockRole, LOTOLockStatus, LOTOLockType, LOTOOverallStatus, LaboratoryResultService, LayoutType, LearningModuleCategoryService, LessonLearnedOrigin, LessonLearnedService, LessonLearnedStatus, LicenseService, LivekitRoomService, LocationService, LogService, LoginHistoryService, LoginRequestService, MODULE_LABELS, MaintenanceJsaService, MaintenancePlanService, MaintenanceRecordService, MaintenanceStatus, MaintenanceType, ManualReadingService, MaterialCategoryService, MaterialConsumableCategoryService, MaterialConsumableHistoryService, MaterialConsumableService, MaterialInstrumentHistoryService, MaterialInstrumentService, MaterialItemHistoryService, MaterialItemService, MaterialToolingCategoryService, MaterialToolingHistoryService, MaterialToolingService, MeasurementService, MeasurementUnitService, MeasurementUnitSystem, MessageChannel, MessageService, MessagingProviderAdminService, MessagingProviderType, MeteringParameterStatus, MeteringParameterSubType, MeteringParameterType, MiHistoryService, MiRequestService, MigrationStatus, ModelFileService, ModelService, ModuleLearningService, ModuleService, ModuleVideoService, MonitoringLocationType, MonitoringMethod, NoteService, ObjectBrowserComponent, ObligationFrequency, ObligationStatus, ObligationType, ObservationCategory, ObservationSeverity, OcrProcessingStatus, OperatingEventService, OperatingMode, OperationalObservationService, OutageEventService, OutageResourceService, OutageStatus, OutageType, PC2PermitSubType, ParticipantRole, Periodicity, PermissionService, PermitOrigin, PermitStatus, PermitType, PlantDataService, PlantSize, PlantStatus, PlatformAdminRole, PlatformAdminService, PlatformAuthService, PlatformNotificationService, PlatformWebhookService, PluginService, PremiseType, PresenceStatus, PresetProvider, Priority, ProfilePermissionService, ProfileService, ProjectService, PropertiesGroupService, PropertiesTemplateService, PropertyService, PropertyTemplateService, ProviderType, ProvisioningStep, PurchaseOrderService, QueryEditorComponent, QueryExecutorService, QueryToolbarComponent, QueueAdminService, RCAMethodology, RCAStatus, RcaEventCause, RcaWorkOrderType, ReadingType, RealtimeEventService, ReasonForInspection, ReasonForIntervention, RechargeRequestService, RecordDetailComponent, RecurringEventService, RefurbishmentService, Region, RegulatoryUpdateService, RegulatoryUpdateType, ReportDefinitionFormComponent, ReportDefinitionListComponent, ReportGenerateDialogComponent, ReportStatsComponent, ReportTemplateListComponent, ReportingModule, ReportingService, ReservoirDataService, ReservoirTimeSeriesService, ReservoirWebSocketService, ResourceCategoryService, ResourceService, ResourceTopicService, ResultsGridComponent, RoleAdminService, RoleService, RoleType, RoomService, RootCauseAnalysisService, SampleType, SandboxAccessLevel, SandboxAdminService, SandboxService, SandboxStatus, ScheduledReportService, SchedulerAdminService, SearchService, SedimentManagementPlanService, SedimentRemovalOperationService, SensorService, SensorType, SiteAssessmentService, SlaBreachRecordService, SlaPolicyService, SparePartService, SsoAuthService, StockCountService, StockMovementService, SubAssemblyService, SubscriptionPlan, SubscriptionService, SubscriptionStatus, SupplierService, SurveyMethod, SyncDirection, SystemHealthService, SystemicRiskAssessmentService, TGM_SDK_CONFIG, TableDataViewerComponent, TableStructureComponent, TaskRunStatus, TermsOfUseService, TgFileService, TgFolderService, TgmApiError, TgmEntityType, TgmHttpClient, TgmSdkModule, ThresholdAlertRuleService, TicketPriority, TicketService, TicketStatus, TimeEntryService, TodoService, TotpService, TrackedEntityService, TrackedEntityType, TrackingStatus, TrainingCertificateService, TripStatus, TurbineTypeService, UnitService, UnitShutdownHistoryService, UnitStatus, UploadService, UserAdminService, UserLearningService, UserNotificationService, UserPermissionService, UserProfileService, UserService, VehicleInspectionService, VehicleInspectionType, VehicleMaintenanceService, VehicleMaintenanceType, VehicleService, VehicleStatus, VehicleTripService, VehicleType, VerificationStatus, VideoCallModule, VideoCallRestService, VideoCallSignalingService, VideoCallStateService, VideoCallStatus, VideoCallType, VideoCallWebSocketService, VideoControlsComponent, VideoParticipantComponent, VideoParticipantRole, VideoParticipantStatus, VideoRoomComponent, WarehouseService, WarehouseStockService, WarrantyClaimService, WarrantyClaimStatus, WarrantyContractService, WarrantyStatus, WarrantyType, WaterLevel, WebAuthnService, WebSocketService, WebhookAdminService, WorkOrderService, WorkOrderSourceType, WorkOrderStatus, WorkPermitCategory, WorkPermitService, WorkPermitStatus, ApprovalWorkflowService as WorkflowService, WorkflowStatus, WorkflowType, YesNo, isBulkSensorMessage, mapHttpError };
|
|
11472
11615
|
//# sourceMappingURL=en-solutions-tgm-client-sdk.mjs.map
|