@meshmakers/octo-services 3.3.770 → 3.3.780
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.
|
@@ -41,6 +41,12 @@ class OctoErrorLink extends ApolloLink {
|
|
|
41
41
|
});
|
|
42
42
|
}
|
|
43
43
|
showErrorLike(error) {
|
|
44
|
+
// Network connectivity errors (HTTP status 0) are already handled by MmHttpErrorInterceptor
|
|
45
|
+
// which either shows the connection error overlay (via ON_CONNECTION_LOST) or a toast.
|
|
46
|
+
// Suppress the raw "Http failure response for ...: 0 Unknown Error" message here.
|
|
47
|
+
if ('status' in error && error['status'] === 0) {
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
44
50
|
const messageService = this.injector.get(MessageService);
|
|
45
51
|
console.error(error);
|
|
46
52
|
messageService.showError(error.message);
|
|
@@ -315,68 +321,6 @@ var AttributeValueTypeDto;
|
|
|
315
321
|
AttributeValueTypeDto["StringArrayDto"] = "STRING_ARRAY";
|
|
316
322
|
AttributeValueTypeDto["TimeSpanDto"] = "TIME_SPAN";
|
|
317
323
|
})(AttributeValueTypeDto || (AttributeValueTypeDto = {}));
|
|
318
|
-
/** Runtime entities of construction kit enum 'Basic.Energy/CarrierType' */
|
|
319
|
-
var BasicEnergyCarrierTypeDto;
|
|
320
|
-
(function (BasicEnergyCarrierTypeDto) {
|
|
321
|
-
/** Electricity is used as energy carrier */
|
|
322
|
-
BasicEnergyCarrierTypeDto["ElectricityDto"] = "ELECTRICITY";
|
|
323
|
-
/** Gas is used as energy carrier */
|
|
324
|
-
BasicEnergyCarrierTypeDto["GasDto"] = "GAS";
|
|
325
|
-
/** The carrier type is unknown */
|
|
326
|
-
BasicEnergyCarrierTypeDto["UnknownDto"] = "UNKNOWN";
|
|
327
|
-
})(BasicEnergyCarrierTypeDto || (BasicEnergyCarrierTypeDto = {}));
|
|
328
|
-
/** Runtime entities of construction kit enum 'Basic.Energy/DataQuality' */
|
|
329
|
-
var BasicEnergyDataQualityDto;
|
|
330
|
-
(function (BasicEnergyDataQualityDto) {
|
|
331
|
-
/** The data is accurate to 15 minute meter readings */
|
|
332
|
-
BasicEnergyDataQualityDto["L_1Dto"] = "L_1";
|
|
333
|
-
/** The data is a linear interpolation of 2 known meter readings */
|
|
334
|
-
BasicEnergyDataQualityDto["L_2Dto"] = "L_2";
|
|
335
|
-
/** The data is an estimate */
|
|
336
|
-
BasicEnergyDataQualityDto["L_3Dto"] = "L_3";
|
|
337
|
-
/** The data quality is unknown */
|
|
338
|
-
BasicEnergyDataQualityDto["UnknownDto"] = "UNKNOWN";
|
|
339
|
-
})(BasicEnergyDataQualityDto || (BasicEnergyDataQualityDto = {}));
|
|
340
|
-
/** Runtime entities of construction kit enum 'Basic.Energy/FacilityType' */
|
|
341
|
-
var BasicEnergyFacilityTypeDto;
|
|
342
|
-
(function (BasicEnergyFacilityTypeDto) {
|
|
343
|
-
/** The facility type is a business */
|
|
344
|
-
BasicEnergyFacilityTypeDto["BusinessDto"] = "BUSINESS";
|
|
345
|
-
/** The facility type is a single household */
|
|
346
|
-
BasicEnergyFacilityTypeDto["HouseholdDto"] = "HOUSEHOLD";
|
|
347
|
-
/** The facility type is a industry */
|
|
348
|
-
BasicEnergyFacilityTypeDto["IndustryDto"] = "INDUSTRY";
|
|
349
|
-
/** The facility type is a public building e.g. schools, public offices */
|
|
350
|
-
BasicEnergyFacilityTypeDto["PublicBuildingDto"] = "PUBLIC_BUILDING";
|
|
351
|
-
/** The facility type is an energy storage */
|
|
352
|
-
BasicEnergyFacilityTypeDto["StorageDto"] = "STORAGE";
|
|
353
|
-
/** The facility type is unknown or not defined */
|
|
354
|
-
BasicEnergyFacilityTypeDto["UnknownDto"] = "UNKNOWN";
|
|
355
|
-
})(BasicEnergyFacilityTypeDto || (BasicEnergyFacilityTypeDto = {}));
|
|
356
|
-
/** Runtime entities of construction kit enum 'Basic.Energy/ProductionType' */
|
|
357
|
-
var BasicEnergyProductionTypeDto;
|
|
358
|
-
(function (BasicEnergyProductionTypeDto) {
|
|
359
|
-
/** Hydroelectric power was used to produce the energy */
|
|
360
|
-
BasicEnergyProductionTypeDto["HepDto"] = "HEP";
|
|
361
|
-
/** Other methods were used to produce the energy */
|
|
362
|
-
BasicEnergyProductionTypeDto["OtherDto"] = "OTHER";
|
|
363
|
-
/** Solar power was used to produce the energy */
|
|
364
|
-
BasicEnergyProductionTypeDto["SolarDto"] = "SOLAR";
|
|
365
|
-
/** The production type is unknown or not defined */
|
|
366
|
-
BasicEnergyProductionTypeDto["UnknownDto"] = "UNKNOWN";
|
|
367
|
-
/** Wind power was used to produce the energy */
|
|
368
|
-
BasicEnergyProductionTypeDto["WindDto"] = "WIND";
|
|
369
|
-
})(BasicEnergyProductionTypeDto || (BasicEnergyProductionTypeDto = {}));
|
|
370
|
-
/** Runtime entities of construction kit enum 'Basic.Energy/State' */
|
|
371
|
-
var BasicEnergyStateDto;
|
|
372
|
-
(function (BasicEnergyStateDto) {
|
|
373
|
-
/** The object is active and in use */
|
|
374
|
-
BasicEnergyStateDto["ActiveDto"] = "ACTIVE";
|
|
375
|
-
/** The object is inactive but may be reactivated */
|
|
376
|
-
BasicEnergyStateDto["InactiveDto"] = "INACTIVE";
|
|
377
|
-
/** The object is just created and the state is not set */
|
|
378
|
-
BasicEnergyStateDto["NewDto"] = "NEW";
|
|
379
|
-
})(BasicEnergyStateDto || (BasicEnergyStateDto = {}));
|
|
380
324
|
/** Runtime entities of construction kit enum 'Basic/LegalEntityType' */
|
|
381
325
|
var BasicLegalEntityTypeDto;
|
|
382
326
|
(function (BasicLegalEntityTypeDto) {
|
|
@@ -441,150 +385,6 @@ var DeleteStrategiesDto;
|
|
|
441
385
|
DeleteStrategiesDto["ArchiveDto"] = "ARCHIVE";
|
|
442
386
|
DeleteStrategiesDto["EraseDto"] = "ERASE";
|
|
443
387
|
})(DeleteStrategiesDto || (DeleteStrategiesDto = {}));
|
|
444
|
-
/** Runtime entities of construction kit enum 'EnergyCommunity/BillingCycle' */
|
|
445
|
-
var EnergyCommunityBillingCycleDto;
|
|
446
|
-
(function (EnergyCommunityBillingCycleDto) {
|
|
447
|
-
/** The billing cycle is one year */
|
|
448
|
-
EnergyCommunityBillingCycleDto["AnnuallyDto"] = "ANNUALLY";
|
|
449
|
-
/** The billing cycle is one month */
|
|
450
|
-
EnergyCommunityBillingCycleDto["MonthlyDto"] = "MONTHLY";
|
|
451
|
-
/** The billing cycle is one quarter */
|
|
452
|
-
EnergyCommunityBillingCycleDto["QuarterlyDto"] = "QUARTERLY";
|
|
453
|
-
/** The billing cycle is six months */
|
|
454
|
-
EnergyCommunityBillingCycleDto["SemiAnnuallyDto"] = "SEMI_ANNUALLY";
|
|
455
|
-
})(EnergyCommunityBillingCycleDto || (EnergyCommunityBillingCycleDto = {}));
|
|
456
|
-
/** Runtime entities of construction kit enum 'EnergyCommunity/BillingDocumentState' */
|
|
457
|
-
var EnergyCommunityBillingDocumentStateDto;
|
|
458
|
-
(function (EnergyCommunityBillingDocumentStateDto) {
|
|
459
|
-
/** The billing document has been canceled */
|
|
460
|
-
EnergyCommunityBillingDocumentStateDto["CanceledDto"] = "CANCELED";
|
|
461
|
-
/** The billing document is a draft */
|
|
462
|
-
EnergyCommunityBillingDocumentStateDto["DraftDto"] = "DRAFT";
|
|
463
|
-
/** The billing document has been paid */
|
|
464
|
-
EnergyCommunityBillingDocumentStateDto["PaidDto"] = "PAID";
|
|
465
|
-
/** The billing document is released */
|
|
466
|
-
EnergyCommunityBillingDocumentStateDto["ReleasedDto"] = "RELEASED";
|
|
467
|
-
/** The billing document has been sent */
|
|
468
|
-
EnergyCommunityBillingDocumentStateDto["SentDto"] = "SENT";
|
|
469
|
-
})(EnergyCommunityBillingDocumentStateDto || (EnergyCommunityBillingDocumentStateDto = {}));
|
|
470
|
-
/** Runtime entities of construction kit enum 'EnergyCommunity/BillingType' */
|
|
471
|
-
var EnergyCommunityBillingTypeDto;
|
|
472
|
-
(function (EnergyCommunityBillingTypeDto) {
|
|
473
|
-
/** The document or item is an credit note or credit */
|
|
474
|
-
EnergyCommunityBillingTypeDto["CreditDto"] = "CREDIT";
|
|
475
|
-
/** The document is an invoice or the item is a debit note */
|
|
476
|
-
EnergyCommunityBillingTypeDto["DebitDto"] = "DEBIT";
|
|
477
|
-
})(EnergyCommunityBillingTypeDto || (EnergyCommunityBillingTypeDto = {}));
|
|
478
|
-
/** Runtime entities of construction kit enum 'EnergyCommunity/DataQuality' */
|
|
479
|
-
var EnergyCommunityDataQualityDto;
|
|
480
|
-
(function (EnergyCommunityDataQualityDto) {
|
|
481
|
-
/** The data is accurate to 15 minute meter readings */
|
|
482
|
-
EnergyCommunityDataQualityDto["L_1Dto"] = "L_1";
|
|
483
|
-
/** The data is a linear interpolation of 2 known meter readings */
|
|
484
|
-
EnergyCommunityDataQualityDto["L_2Dto"] = "L_2";
|
|
485
|
-
/** The data is an estimate */
|
|
486
|
-
EnergyCommunityDataQualityDto["L_3Dto"] = "L_3";
|
|
487
|
-
/** The data quality is unknown */
|
|
488
|
-
EnergyCommunityDataQualityDto["UnknownDto"] = "UNKNOWN";
|
|
489
|
-
})(EnergyCommunityDataQualityDto || (EnergyCommunityDataQualityDto = {}));
|
|
490
|
-
/** Runtime entities of construction kit enum 'EnergyCommunity/FacilityType' */
|
|
491
|
-
var EnergyCommunityFacilityTypeDto;
|
|
492
|
-
(function (EnergyCommunityFacilityTypeDto) {
|
|
493
|
-
/** The facility type is a business */
|
|
494
|
-
EnergyCommunityFacilityTypeDto["BusinessDto"] = "BUSINESS";
|
|
495
|
-
/** The facility type is a single household */
|
|
496
|
-
EnergyCommunityFacilityTypeDto["HouseholdDto"] = "HOUSEHOLD";
|
|
497
|
-
/** The facility type is a industry */
|
|
498
|
-
EnergyCommunityFacilityTypeDto["IndustryDto"] = "INDUSTRY";
|
|
499
|
-
/** The facility type is a public building e.g. schools, public offices */
|
|
500
|
-
EnergyCommunityFacilityTypeDto["PublicBuildingDto"] = "PUBLIC_BUILDING";
|
|
501
|
-
/** The facility type is an energy storage */
|
|
502
|
-
EnergyCommunityFacilityTypeDto["StorageDto"] = "STORAGE";
|
|
503
|
-
/** The facility type is unknown or not defined */
|
|
504
|
-
EnergyCommunityFacilityTypeDto["UnknownDto"] = "UNKNOWN";
|
|
505
|
-
})(EnergyCommunityFacilityTypeDto || (EnergyCommunityFacilityTypeDto = {}));
|
|
506
|
-
/** Runtime entities of construction kit enum 'EnergyCommunity/ProductionType' */
|
|
507
|
-
var EnergyCommunityProductionTypeDto;
|
|
508
|
-
(function (EnergyCommunityProductionTypeDto) {
|
|
509
|
-
/** Biomass was used to produce the energy */
|
|
510
|
-
EnergyCommunityProductionTypeDto["BiomassDto"] = "BIOMASS";
|
|
511
|
-
/** Combined heat and power was used to produce the energy */
|
|
512
|
-
EnergyCommunityProductionTypeDto["ChpDto"] = "CHP";
|
|
513
|
-
/** Hydroelectric power was used to produce the energy */
|
|
514
|
-
EnergyCommunityProductionTypeDto["HepDto"] = "HEP";
|
|
515
|
-
/** Other methods were used to produce the energy */
|
|
516
|
-
EnergyCommunityProductionTypeDto["OtherDto"] = "OTHER";
|
|
517
|
-
/** Solar power was used to produce the energy */
|
|
518
|
-
EnergyCommunityProductionTypeDto["SolarDto"] = "SOLAR";
|
|
519
|
-
/** The production type is unknown or not defined */
|
|
520
|
-
EnergyCommunityProductionTypeDto["UnknownDto"] = "UNKNOWN";
|
|
521
|
-
/** Wind power was used to produce the energy */
|
|
522
|
-
EnergyCommunityProductionTypeDto["WindDto"] = "WIND";
|
|
523
|
-
})(EnergyCommunityProductionTypeDto || (EnergyCommunityProductionTypeDto = {}));
|
|
524
|
-
/** Runtime entities of construction kit enum 'EnergyCommunity/State' */
|
|
525
|
-
var EnergyCommunityStateDto;
|
|
526
|
-
(function (EnergyCommunityStateDto) {
|
|
527
|
-
/** The object is active and in use */
|
|
528
|
-
EnergyCommunityStateDto["ActiveDto"] = "ACTIVE";
|
|
529
|
-
/** The object was deleted */
|
|
530
|
-
EnergyCommunityStateDto["DeletedDto"] = "DELETED";
|
|
531
|
-
/** The object is inactive but may be reactivated */
|
|
532
|
-
EnergyCommunityStateDto["InactiveDto"] = "INACTIVE";
|
|
533
|
-
/** The object is just created and the state is not set */
|
|
534
|
-
EnergyCommunityStateDto["NewDto"] = "NEW";
|
|
535
|
-
})(EnergyCommunityStateDto || (EnergyCommunityStateDto = {}));
|
|
536
|
-
/** Runtime entities of construction kit enum 'EnergyCommunity/TaxProcedureCreditNote' */
|
|
537
|
-
var EnergyCommunityTaxProcedureCreditNoteDto;
|
|
538
|
-
(function (EnergyCommunityTaxProcedureCreditNoteDto) {
|
|
539
|
-
/** The farmer tax procedure is applied, which is a reduced tax amount for farmers */
|
|
540
|
-
EnergyCommunityTaxProcedureCreditNoteDto["FarmerTaxProcedureDto"] = "FARMER_TAX_PROCEDURE";
|
|
541
|
-
/** No tax procedure is applied */
|
|
542
|
-
EnergyCommunityTaxProcedureCreditNoteDto["NoTaxProcedureDto"] = "NO_TAX_PROCEDURE";
|
|
543
|
-
/** The reverse charge procedure is applied */
|
|
544
|
-
EnergyCommunityTaxProcedureCreditNoteDto["ReverseChargeDto"] = "REVERSE_CHARGE";
|
|
545
|
-
/** No tax procedure is applied for small business owners */
|
|
546
|
-
EnergyCommunityTaxProcedureCreditNoteDto["SmallBusinessOwnersDto"] = "SMALL_BUSINESS_OWNERS";
|
|
547
|
-
})(EnergyCommunityTaxProcedureCreditNoteDto || (EnergyCommunityTaxProcedureCreditNoteDto = {}));
|
|
548
|
-
/** Runtime entities of construction kit enum 'Environment/CarbonScope' */
|
|
549
|
-
var EnvironmentCarbonScopeDto;
|
|
550
|
-
(function (EnvironmentCarbonScopeDto) {
|
|
551
|
-
EnvironmentCarbonScopeDto["Scope_1Dto"] = "SCOPE_1";
|
|
552
|
-
EnvironmentCarbonScopeDto["Scope_2Dto"] = "SCOPE_2";
|
|
553
|
-
EnvironmentCarbonScopeDto["Scope_3Dto"] = "SCOPE_3";
|
|
554
|
-
})(EnvironmentCarbonScopeDto || (EnvironmentCarbonScopeDto = {}));
|
|
555
|
-
/** Runtime entities of construction kit enum 'Environment/ComplianceCategory' */
|
|
556
|
-
var EnvironmentComplianceCategoryDto;
|
|
557
|
-
(function (EnvironmentComplianceCategoryDto) {
|
|
558
|
-
EnvironmentComplianceCategoryDto["CsrdDto"] = "CSRD";
|
|
559
|
-
EnvironmentComplianceCategoryDto["EEffGDto"] = "E_EFF_G";
|
|
560
|
-
EnvironmentComplianceCategoryDto["Iso_50001Dto"] = "ISO_50001";
|
|
561
|
-
EnvironmentComplianceCategoryDto["Nis_2Dto"] = "NIS_2";
|
|
562
|
-
})(EnvironmentComplianceCategoryDto || (EnvironmentComplianceCategoryDto = {}));
|
|
563
|
-
/** Runtime entities of construction kit enum 'Environment/ComplianceStatus' */
|
|
564
|
-
var EnvironmentComplianceStatusDto;
|
|
565
|
-
(function (EnvironmentComplianceStatusDto) {
|
|
566
|
-
EnvironmentComplianceStatusDto["CompliantDto"] = "COMPLIANT";
|
|
567
|
-
EnvironmentComplianceStatusDto["InProgressDto"] = "IN_PROGRESS";
|
|
568
|
-
EnvironmentComplianceStatusDto["OpenDto"] = "OPEN";
|
|
569
|
-
EnvironmentComplianceStatusDto["PassedDto"] = "PASSED";
|
|
570
|
-
EnvironmentComplianceStatusDto["SubmittedDto"] = "SUBMITTED";
|
|
571
|
-
})(EnvironmentComplianceStatusDto || (EnvironmentComplianceStatusDto = {}));
|
|
572
|
-
/** Runtime entities of construction kit enum 'Environment/EnergySource' */
|
|
573
|
-
var EnvironmentEnergySourceDto;
|
|
574
|
-
(function (EnvironmentEnergySourceDto) {
|
|
575
|
-
EnvironmentEnergySourceDto["BiomassDto"] = "BIOMASS";
|
|
576
|
-
EnvironmentEnergySourceDto["GeothermalDto"] = "GEOTHERMAL";
|
|
577
|
-
EnvironmentEnergySourceDto["HydroDto"] = "HYDRO";
|
|
578
|
-
EnvironmentEnergySourceDto["OtherDto"] = "OTHER";
|
|
579
|
-
EnvironmentEnergySourceDto["SolarDto"] = "SOLAR";
|
|
580
|
-
EnvironmentEnergySourceDto["WindDto"] = "WIND";
|
|
581
|
-
})(EnvironmentEnergySourceDto || (EnvironmentEnergySourceDto = {}));
|
|
582
|
-
/** Runtime entities of construction kit enum 'Environment/GoalState' */
|
|
583
|
-
var EnvironmentGoalStateDto;
|
|
584
|
-
(function (EnvironmentGoalStateDto) {
|
|
585
|
-
EnvironmentGoalStateDto["OffTrackDto"] = "OFF_TRACK";
|
|
586
|
-
EnvironmentGoalStateDto["OnTrackDto"] = "ON_TRACK";
|
|
587
|
-
})(EnvironmentGoalStateDto || (EnvironmentGoalStateDto = {}));
|
|
588
388
|
/** Defines the operator of field compare */
|
|
589
389
|
var FieldFilterOperatorsDto;
|
|
590
390
|
(function (FieldFilterOperatorsDto) {
|
|
@@ -775,84 +575,6 @@ var IndustryEnergyTariffTypeDto;
|
|
|
775
575
|
IndustryEnergyTariffTypeDto["PeakDto"] = "PEAK";
|
|
776
576
|
IndustryEnergyTariffTypeDto["StandardDto"] = "STANDARD";
|
|
777
577
|
})(IndustryEnergyTariffTypeDto || (IndustryEnergyTariffTypeDto = {}));
|
|
778
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/AggregationType' */
|
|
779
|
-
var IndustryMaintenanceAggregationTypeDto;
|
|
780
|
-
(function (IndustryMaintenanceAggregationTypeDto) {
|
|
781
|
-
IndustryMaintenanceAggregationTypeDto["FiscalYearDto"] = "FISCAL_YEAR";
|
|
782
|
-
IndustryMaintenanceAggregationTypeDto["MonthDto"] = "MONTH";
|
|
783
|
-
IndustryMaintenanceAggregationTypeDto["WeekDto"] = "WEEK";
|
|
784
|
-
})(IndustryMaintenanceAggregationTypeDto || (IndustryMaintenanceAggregationTypeDto = {}));
|
|
785
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/CostCategory' */
|
|
786
|
-
var IndustryMaintenanceCostCategoryDto;
|
|
787
|
-
(function (IndustryMaintenanceCostCategoryDto) {
|
|
788
|
-
IndustryMaintenanceCostCategoryDto["ExternalDto"] = "EXTERNAL";
|
|
789
|
-
IndustryMaintenanceCostCategoryDto["InternalDto"] = "INTERNAL";
|
|
790
|
-
IndustryMaintenanceCostCategoryDto["MaterialDto"] = "MATERIAL";
|
|
791
|
-
})(IndustryMaintenanceCostCategoryDto || (IndustryMaintenanceCostCategoryDto = {}));
|
|
792
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceGroup' */
|
|
793
|
-
var IndustryMaintenanceEnergyBalanceGroupDto;
|
|
794
|
-
(function (IndustryMaintenanceEnergyBalanceGroupDto) {
|
|
795
|
-
IndustryMaintenanceEnergyBalanceGroupDto["UndefinedDto"] = "UNDEFINED";
|
|
796
|
-
})(IndustryMaintenanceEnergyBalanceGroupDto || (IndustryMaintenanceEnergyBalanceGroupDto = {}));
|
|
797
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceProduct' */
|
|
798
|
-
var IndustryMaintenanceEnergyBalanceProductDto;
|
|
799
|
-
(function (IndustryMaintenanceEnergyBalanceProductDto) {
|
|
800
|
-
IndustryMaintenanceEnergyBalanceProductDto["UndefinedDto"] = "UNDEFINED";
|
|
801
|
-
})(IndustryMaintenanceEnergyBalanceProductDto || (IndustryMaintenanceEnergyBalanceProductDto = {}));
|
|
802
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceUnit' */
|
|
803
|
-
var IndustryMaintenanceEnergyBalanceUnitDto;
|
|
804
|
-
(function (IndustryMaintenanceEnergyBalanceUnitDto) {
|
|
805
|
-
IndustryMaintenanceEnergyBalanceUnitDto["UndefinedDto"] = "UNDEFINED";
|
|
806
|
-
})(IndustryMaintenanceEnergyBalanceUnitDto || (IndustryMaintenanceEnergyBalanceUnitDto = {}));
|
|
807
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/OrderPriority' */
|
|
808
|
-
var IndustryMaintenanceOrderPriorityDto;
|
|
809
|
-
(function (IndustryMaintenanceOrderPriorityDto) {
|
|
810
|
-
IndustryMaintenanceOrderPriorityDto["UndefinedDto"] = "UNDEFINED";
|
|
811
|
-
})(IndustryMaintenanceOrderPriorityDto || (IndustryMaintenanceOrderPriorityDto = {}));
|
|
812
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/OrderState' */
|
|
813
|
-
var IndustryMaintenanceOrderStateDto;
|
|
814
|
-
(function (IndustryMaintenanceOrderStateDto) {
|
|
815
|
-
IndustryMaintenanceOrderStateDto["UndefinedDto"] = "UNDEFINED";
|
|
816
|
-
})(IndustryMaintenanceOrderStateDto || (IndustryMaintenanceOrderStateDto = {}));
|
|
817
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/OrderType' */
|
|
818
|
-
var IndustryMaintenanceOrderTypeDto;
|
|
819
|
-
(function (IndustryMaintenanceOrderTypeDto) {
|
|
820
|
-
IndustryMaintenanceOrderTypeDto["UndefinedDto"] = "UNDEFINED";
|
|
821
|
-
})(IndustryMaintenanceOrderTypeDto || (IndustryMaintenanceOrderTypeDto = {}));
|
|
822
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/ServiceType' */
|
|
823
|
-
var IndustryMaintenanceServiceTypeDto;
|
|
824
|
-
(function (IndustryMaintenanceServiceTypeDto) {
|
|
825
|
-
IndustryMaintenanceServiceTypeDto["UndefinedDto"] = "UNDEFINED";
|
|
826
|
-
})(IndustryMaintenanceServiceTypeDto || (IndustryMaintenanceServiceTypeDto = {}));
|
|
827
|
-
/** Runtime entities of construction kit enum 'Industry.Manufacturing/FeedbackSyncState' */
|
|
828
|
-
var IndustryManufacturingFeedbackSyncStateDto;
|
|
829
|
-
(function (IndustryManufacturingFeedbackSyncStateDto) {
|
|
830
|
-
IndustryManufacturingFeedbackSyncStateDto["SyncedDto"] = "SYNCED";
|
|
831
|
-
IndustryManufacturingFeedbackSyncStateDto["UnsyncedDto"] = "UNSYNCED";
|
|
832
|
-
})(IndustryManufacturingFeedbackSyncStateDto || (IndustryManufacturingFeedbackSyncStateDto = {}));
|
|
833
|
-
/** Runtime entities of construction kit enum 'Industry.Manufacturing/ProductionOrderItemState' */
|
|
834
|
-
var IndustryManufacturingProductionOrderItemStateDto;
|
|
835
|
-
(function (IndustryManufacturingProductionOrderItemStateDto) {
|
|
836
|
-
IndustryManufacturingProductionOrderItemStateDto["CancelledDto"] = "CANCELLED";
|
|
837
|
-
IndustryManufacturingProductionOrderItemStateDto["ConfirmedDto"] = "CONFIRMED";
|
|
838
|
-
IndustryManufacturingProductionOrderItemStateDto["CreatedDto"] = "CREATED";
|
|
839
|
-
IndustryManufacturingProductionOrderItemStateDto["DeliveredDto"] = "DELIVERED";
|
|
840
|
-
IndustryManufacturingProductionOrderItemStateDto["InterruptedDto"] = "INTERRUPTED";
|
|
841
|
-
IndustryManufacturingProductionOrderItemStateDto["InProgressDto"] = "IN_PROGRESS";
|
|
842
|
-
IndustryManufacturingProductionOrderItemStateDto["PausedDto"] = "PAUSED";
|
|
843
|
-
IndustryManufacturingProductionOrderItemStateDto["ReleasedDto"] = "RELEASED";
|
|
844
|
-
IndustryManufacturingProductionOrderItemStateDto["TechnicallyCompletedDto"] = "TECHNICALLY_COMPLETED";
|
|
845
|
-
})(IndustryManufacturingProductionOrderItemStateDto || (IndustryManufacturingProductionOrderItemStateDto = {}));
|
|
846
|
-
/** Runtime entities of construction kit enum 'Industry.Manufacturing/ProductionOrderState' */
|
|
847
|
-
var IndustryManufacturingProductionOrderStateDto;
|
|
848
|
-
(function (IndustryManufacturingProductionOrderStateDto) {
|
|
849
|
-
IndustryManufacturingProductionOrderStateDto["CancelledDto"] = "CANCELLED";
|
|
850
|
-
IndustryManufacturingProductionOrderStateDto["ConfirmedDto"] = "CONFIRMED";
|
|
851
|
-
IndustryManufacturingProductionOrderStateDto["CreatedDto"] = "CREATED";
|
|
852
|
-
IndustryManufacturingProductionOrderStateDto["DeliveredDto"] = "DELIVERED";
|
|
853
|
-
IndustryManufacturingProductionOrderStateDto["ReleasedDto"] = "RELEASED";
|
|
854
|
-
IndustryManufacturingProductionOrderStateDto["TechnicallyCompletedDto"] = "TECHNICALLY_COMPLETED";
|
|
855
|
-
})(IndustryManufacturingProductionOrderStateDto || (IndustryManufacturingProductionOrderStateDto = {}));
|
|
856
578
|
/** Enum of the availability states of models. */
|
|
857
579
|
var ModelStateDto;
|
|
858
580
|
(function (ModelStateDto) {
|
|
@@ -1134,7 +856,6 @@ const result = {
|
|
|
1134
856
|
"possibleTypes": {
|
|
1135
857
|
"BasicAsset_EventSourceUnion": [
|
|
1136
858
|
"BasicAsset",
|
|
1137
|
-
"EnvironmentWasteMeter",
|
|
1138
859
|
"IndustryBasicMachine",
|
|
1139
860
|
"IndustryEnergyEnergyConsumer",
|
|
1140
861
|
"IndustryEnergyEnergyMeter",
|
|
@@ -1143,11 +864,6 @@ const result = {
|
|
|
1143
864
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1144
865
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1145
866
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1146
|
-
"IndustryFluidHeatMeter",
|
|
1147
|
-
"IndustryFluidWaterMeter",
|
|
1148
|
-
"IndustryMaintenanceCostCenter",
|
|
1149
|
-
"IndustryMaintenanceEmployee",
|
|
1150
|
-
"IndustryMaintenanceWorkplace",
|
|
1151
867
|
"OctoSdkDemoMeteringPoint"
|
|
1152
868
|
],
|
|
1153
869
|
"BasicAsset_RelatesFromUnion": [
|
|
@@ -1156,34 +872,9 @@ const result = {
|
|
|
1156
872
|
"BasicCountry",
|
|
1157
873
|
"BasicDistrict",
|
|
1158
874
|
"BasicEmployee",
|
|
1159
|
-
"BasicEnergyConsumer",
|
|
1160
|
-
"BasicEnergyEdaMessage",
|
|
1161
|
-
"BasicEnergyEdaMeteringPoint",
|
|
1162
|
-
"BasicEnergyEdaProcess",
|
|
1163
|
-
"BasicEnergyEnergyMeasurement",
|
|
1164
|
-
"BasicEnergyOperatingFacility",
|
|
1165
|
-
"BasicEnergyProducer",
|
|
1166
875
|
"BasicState",
|
|
1167
876
|
"BasicTree",
|
|
1168
877
|
"BasicTreeNode",
|
|
1169
|
-
"EnergyCommunityBillingDocument",
|
|
1170
|
-
"EnergyCommunityBillingDocumentLineItem",
|
|
1171
|
-
"EnergyCommunityConsumer",
|
|
1172
|
-
"EnergyCommunityCustomer",
|
|
1173
|
-
"EnergyCommunityEdaMessage",
|
|
1174
|
-
"EnergyCommunityEdaMeteringPoint",
|
|
1175
|
-
"EnergyCommunityEdaProcess",
|
|
1176
|
-
"EnergyCommunityEnergyPrice",
|
|
1177
|
-
"EnergyCommunityEnergyQuantity",
|
|
1178
|
-
"EnergyCommunityOperatingFacility",
|
|
1179
|
-
"EnergyCommunityParticipationPeriod",
|
|
1180
|
-
"EnergyCommunityProducer",
|
|
1181
|
-
"EnvironmentCarbonBudget",
|
|
1182
|
-
"EnvironmentCarbonEmission",
|
|
1183
|
-
"EnvironmentCertificateOfOrigin",
|
|
1184
|
-
"EnvironmentComplianceRecord",
|
|
1185
|
-
"EnvironmentEnvironmentalGoal",
|
|
1186
|
-
"EnvironmentWasteMeter",
|
|
1187
878
|
"IndustryBasicAlarm",
|
|
1188
879
|
"IndustryBasicEvent",
|
|
1189
880
|
"IndustryBasicMachine",
|
|
@@ -1199,24 +890,6 @@ const result = {
|
|
|
1199
890
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1200
891
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1201
892
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1202
|
-
"IndustryFluidHeatMeter",
|
|
1203
|
-
"IndustryFluidWaterMeter",
|
|
1204
|
-
"IndustryMaintenanceAccount",
|
|
1205
|
-
"IndustryMaintenanceCostCenter",
|
|
1206
|
-
"IndustryMaintenanceEmployee",
|
|
1207
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1208
|
-
"IndustryMaintenanceJournalEntry",
|
|
1209
|
-
"IndustryMaintenanceOrder",
|
|
1210
|
-
"IndustryMaintenanceOrderCosts",
|
|
1211
|
-
"IndustryMaintenanceOrderFeedback",
|
|
1212
|
-
"IndustryMaintenanceWorkplace",
|
|
1213
|
-
"IndustryManufacturingPartialFeedback",
|
|
1214
|
-
"IndustryManufacturingProductionOrder",
|
|
1215
|
-
"IndustryManufacturingProductionOrderItem",
|
|
1216
|
-
"IndustryManufacturingShift",
|
|
1217
|
-
"IndustryManufacturingShiftMachine",
|
|
1218
|
-
"IndustryManufacturingShiftOrderItem",
|
|
1219
|
-
"IndustryManufacturingShiftTemplate",
|
|
1220
893
|
"OctoSdkDemoCustomer",
|
|
1221
894
|
"OctoSdkDemoMeteringPoint",
|
|
1222
895
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -1232,6 +905,7 @@ const result = {
|
|
|
1232
905
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1233
906
|
"SystemCommunicationFinApiConfiguration",
|
|
1234
907
|
"SystemCommunicationGrafanaConfiguration",
|
|
908
|
+
"SystemCommunicationLoxoneConfiguration",
|
|
1235
909
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1236
910
|
"SystemCommunicationPipeline",
|
|
1237
911
|
"SystemCommunicationPipelineExecution",
|
|
@@ -1267,7 +941,6 @@ const result = {
|
|
|
1267
941
|
"SystemNotificationEvent",
|
|
1268
942
|
"SystemNotificationNotificationTemplate",
|
|
1269
943
|
"SystemNotificationStatefulEvent",
|
|
1270
|
-
"SystemQuery",
|
|
1271
944
|
"SystemReportingConnectionInfo",
|
|
1272
945
|
"SystemReportingFileSystemItem",
|
|
1273
946
|
"SystemReportingFolder",
|
|
@@ -1286,108 +959,22 @@ const result = {
|
|
|
1286
959
|
"SystemUISymbolDefinition",
|
|
1287
960
|
"SystemUISymbolLibrary"
|
|
1288
961
|
],
|
|
1289
|
-
"BasicDocumentInterface": [
|
|
1290
|
-
"EnergyCommunityBillingDocument"
|
|
1291
|
-
],
|
|
1292
|
-
"BasicEmployee_EmployeeUnion": [
|
|
1293
|
-
"BasicEmployee"
|
|
1294
|
-
],
|
|
1295
|
-
"BasicEmployee_EmployeesUnion": [
|
|
1296
|
-
"BasicEmployee"
|
|
1297
|
-
],
|
|
1298
|
-
"BasicEnergyEdaMessage_MessagesUnion": [
|
|
1299
|
-
"BasicEnergyEdaMessage"
|
|
1300
|
-
],
|
|
1301
|
-
"BasicEnergyEdaProcess_ProcessUnion": [
|
|
1302
|
-
"BasicEnergyEdaProcess"
|
|
1303
|
-
],
|
|
1304
|
-
"BasicEnergyEnergyMeasurement_ChildrenUnion": [
|
|
1305
|
-
"BasicEnergyEnergyMeasurement"
|
|
1306
|
-
],
|
|
1307
|
-
"BasicEnergyMeteringPointInterface": [
|
|
1308
|
-
"BasicEnergyConsumer",
|
|
1309
|
-
"BasicEnergyProducer"
|
|
1310
|
-
],
|
|
1311
|
-
"BasicEnergyMeteringPoint_ChildrenUnion": [
|
|
1312
|
-
"BasicAsset",
|
|
1313
|
-
"BasicCity",
|
|
1314
|
-
"BasicCountry",
|
|
1315
|
-
"BasicDistrict",
|
|
1316
|
-
"BasicEnergyConsumer",
|
|
1317
|
-
"BasicEnergyOperatingFacility",
|
|
1318
|
-
"BasicEnergyProducer",
|
|
1319
|
-
"BasicState",
|
|
1320
|
-
"BasicTreeNode",
|
|
1321
|
-
"EnergyCommunityOperatingFacility",
|
|
1322
|
-
"EnvironmentCarbonBudget",
|
|
1323
|
-
"EnvironmentCarbonEmission",
|
|
1324
|
-
"EnvironmentCertificateOfOrigin",
|
|
1325
|
-
"EnvironmentComplianceRecord",
|
|
1326
|
-
"EnvironmentEnvironmentalGoal",
|
|
1327
|
-
"EnvironmentWasteMeter",
|
|
1328
|
-
"IndustryBasicMachine",
|
|
1329
|
-
"IndustryEnergyDemandResponseEvent",
|
|
1330
|
-
"IndustryEnergyEnergyConsumer",
|
|
1331
|
-
"IndustryEnergyEnergyCost",
|
|
1332
|
-
"IndustryEnergyEnergyForecast",
|
|
1333
|
-
"IndustryEnergyEnergyMeter",
|
|
1334
|
-
"IndustryEnergyEnergyPerformanceIndicator",
|
|
1335
|
-
"IndustryEnergyEnergyStorage",
|
|
1336
|
-
"IndustryEnergyInverter",
|
|
1337
|
-
"IndustryEnergyPhotovoltaicSystem",
|
|
1338
|
-
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1339
|
-
"IndustryEnergyPhotovoltaicSystemString",
|
|
1340
|
-
"IndustryFluidHeatMeter",
|
|
1341
|
-
"IndustryFluidWaterMeter",
|
|
1342
|
-
"IndustryMaintenanceCostCenter",
|
|
1343
|
-
"IndustryMaintenanceEmployee",
|
|
1344
|
-
"IndustryMaintenanceWorkplace",
|
|
1345
|
-
"OctoSdkDemoMeteringPoint",
|
|
1346
|
-
"OctoSdkDemoOperatingFacility"
|
|
1347
|
-
],
|
|
1348
|
-
"BasicEnergyMeteringPoint_ParentUnion": [
|
|
1349
|
-
"BasicEnergyConsumer",
|
|
1350
|
-
"BasicEnergyProducer"
|
|
1351
|
-
],
|
|
1352
|
-
"BasicEnergyOperatingFacility_ParentUnion": [
|
|
1353
|
-
"BasicEnergyOperatingFacility"
|
|
1354
|
-
],
|
|
962
|
+
"BasicDocumentInterface": [],
|
|
1355
963
|
"BasicNamedEntityInterface": [
|
|
1356
|
-
"BasicEnergyConsumer",
|
|
1357
|
-
"BasicEnergyEdaProcess",
|
|
1358
|
-
"BasicEnergyMeteringPoint",
|
|
1359
|
-
"BasicEnergyProducer",
|
|
1360
964
|
"BasicTree",
|
|
1361
|
-
"EnergyCommunityConsumer",
|
|
1362
|
-
"EnergyCommunityEdaProcess",
|
|
1363
|
-
"EnergyCommunityMeteringPoint",
|
|
1364
|
-
"EnergyCommunityProducer",
|
|
1365
|
-
"EnvironmentCarbonBudget",
|
|
1366
|
-
"EnvironmentCertificateOfOrigin",
|
|
1367
|
-
"EnvironmentComplianceRecord",
|
|
1368
|
-
"EnvironmentEnvironmentalGoal",
|
|
1369
965
|
"IndustryBasicAlarm",
|
|
1370
966
|
"IndustryBasicEvent",
|
|
1371
967
|
"IndustryBasicRuntimeVariable",
|
|
1372
968
|
"IndustryEnergyDemandResponseEvent",
|
|
1373
|
-
"IndustryEnergyEnergyPerformanceIndicator"
|
|
1374
|
-
"IndustryManufacturingShiftTemplate"
|
|
969
|
+
"IndustryEnergyEnergyPerformanceIndicator"
|
|
1375
970
|
],
|
|
1376
971
|
"BasicTreeNode_ChildrenUnion": [
|
|
1377
972
|
"BasicAsset",
|
|
1378
973
|
"BasicCity",
|
|
1379
974
|
"BasicCountry",
|
|
1380
975
|
"BasicDistrict",
|
|
1381
|
-
"BasicEnergyOperatingFacility",
|
|
1382
976
|
"BasicState",
|
|
1383
977
|
"BasicTreeNode",
|
|
1384
|
-
"EnergyCommunityOperatingFacility",
|
|
1385
|
-
"EnvironmentCarbonBudget",
|
|
1386
|
-
"EnvironmentCarbonEmission",
|
|
1387
|
-
"EnvironmentCertificateOfOrigin",
|
|
1388
|
-
"EnvironmentComplianceRecord",
|
|
1389
|
-
"EnvironmentEnvironmentalGoal",
|
|
1390
|
-
"EnvironmentWasteMeter",
|
|
1391
978
|
"IndustryBasicMachine",
|
|
1392
979
|
"IndustryEnergyDemandResponseEvent",
|
|
1393
980
|
"IndustryEnergyEnergyConsumer",
|
|
@@ -1400,37 +987,6 @@ const result = {
|
|
|
1400
987
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1401
988
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1402
989
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1403
|
-
"IndustryFluidHeatMeter",
|
|
1404
|
-
"IndustryFluidWaterMeter",
|
|
1405
|
-
"IndustryMaintenanceCostCenter",
|
|
1406
|
-
"IndustryMaintenanceEmployee",
|
|
1407
|
-
"IndustryMaintenanceWorkplace",
|
|
1408
|
-
"OctoSdkDemoMeteringPoint",
|
|
1409
|
-
"OctoSdkDemoOperatingFacility"
|
|
1410
|
-
],
|
|
1411
|
-
"BasicTreeNode_MachineUnion": [
|
|
1412
|
-
"BasicAsset",
|
|
1413
|
-
"BasicCity",
|
|
1414
|
-
"BasicCountry",
|
|
1415
|
-
"BasicDistrict",
|
|
1416
|
-
"BasicEnergyOperatingFacility",
|
|
1417
|
-
"BasicState",
|
|
1418
|
-
"BasicTreeNode",
|
|
1419
|
-
"EnergyCommunityOperatingFacility",
|
|
1420
|
-
"EnvironmentWasteMeter",
|
|
1421
|
-
"IndustryBasicMachine",
|
|
1422
|
-
"IndustryEnergyEnergyConsumer",
|
|
1423
|
-
"IndustryEnergyEnergyMeter",
|
|
1424
|
-
"IndustryEnergyEnergyStorage",
|
|
1425
|
-
"IndustryEnergyInverter",
|
|
1426
|
-
"IndustryEnergyPhotovoltaicSystem",
|
|
1427
|
-
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1428
|
-
"IndustryEnergyPhotovoltaicSystemString",
|
|
1429
|
-
"IndustryFluidHeatMeter",
|
|
1430
|
-
"IndustryFluidWaterMeter",
|
|
1431
|
-
"IndustryMaintenanceCostCenter",
|
|
1432
|
-
"IndustryMaintenanceEmployee",
|
|
1433
|
-
"IndustryMaintenanceWorkplace",
|
|
1434
990
|
"OctoSdkDemoMeteringPoint",
|
|
1435
991
|
"OctoSdkDemoOperatingFacility"
|
|
1436
992
|
],
|
|
@@ -1439,11 +995,8 @@ const result = {
|
|
|
1439
995
|
"BasicCity",
|
|
1440
996
|
"BasicCountry",
|
|
1441
997
|
"BasicDistrict",
|
|
1442
|
-
"BasicEnergyOperatingFacility",
|
|
1443
998
|
"BasicState",
|
|
1444
999
|
"BasicTreeNode",
|
|
1445
|
-
"EnergyCommunityOperatingFacility",
|
|
1446
|
-
"EnvironmentWasteMeter",
|
|
1447
1000
|
"IndustryBasicMachine",
|
|
1448
1001
|
"IndustryEnergyEnergyConsumer",
|
|
1449
1002
|
"IndustryEnergyEnergyMeter",
|
|
@@ -1452,11 +1005,6 @@ const result = {
|
|
|
1452
1005
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1453
1006
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1454
1007
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1455
|
-
"IndustryFluidHeatMeter",
|
|
1456
|
-
"IndustryFluidWaterMeter",
|
|
1457
|
-
"IndustryMaintenanceCostCenter",
|
|
1458
|
-
"IndustryMaintenanceEmployee",
|
|
1459
|
-
"IndustryMaintenanceWorkplace",
|
|
1460
1008
|
"OctoSdkDemoMeteringPoint",
|
|
1461
1009
|
"OctoSdkDemoOperatingFacility"
|
|
1462
1010
|
],
|
|
@@ -1466,34 +1014,9 @@ const result = {
|
|
|
1466
1014
|
"BasicCountry",
|
|
1467
1015
|
"BasicDistrict",
|
|
1468
1016
|
"BasicEmployee",
|
|
1469
|
-
"BasicEnergyConsumer",
|
|
1470
|
-
"BasicEnergyEdaMessage",
|
|
1471
|
-
"BasicEnergyEdaMeteringPoint",
|
|
1472
|
-
"BasicEnergyEdaProcess",
|
|
1473
|
-
"BasicEnergyEnergyMeasurement",
|
|
1474
|
-
"BasicEnergyOperatingFacility",
|
|
1475
|
-
"BasicEnergyProducer",
|
|
1476
1017
|
"BasicState",
|
|
1477
1018
|
"BasicTree",
|
|
1478
1019
|
"BasicTreeNode",
|
|
1479
|
-
"EnergyCommunityBillingDocument",
|
|
1480
|
-
"EnergyCommunityBillingDocumentLineItem",
|
|
1481
|
-
"EnergyCommunityConsumer",
|
|
1482
|
-
"EnergyCommunityCustomer",
|
|
1483
|
-
"EnergyCommunityEdaMessage",
|
|
1484
|
-
"EnergyCommunityEdaMeteringPoint",
|
|
1485
|
-
"EnergyCommunityEdaProcess",
|
|
1486
|
-
"EnergyCommunityEnergyPrice",
|
|
1487
|
-
"EnergyCommunityEnergyQuantity",
|
|
1488
|
-
"EnergyCommunityOperatingFacility",
|
|
1489
|
-
"EnergyCommunityParticipationPeriod",
|
|
1490
|
-
"EnergyCommunityProducer",
|
|
1491
|
-
"EnvironmentCarbonBudget",
|
|
1492
|
-
"EnvironmentCarbonEmission",
|
|
1493
|
-
"EnvironmentCertificateOfOrigin",
|
|
1494
|
-
"EnvironmentComplianceRecord",
|
|
1495
|
-
"EnvironmentEnvironmentalGoal",
|
|
1496
|
-
"EnvironmentWasteMeter",
|
|
1497
1020
|
"IndustryBasicAlarm",
|
|
1498
1021
|
"IndustryBasicEvent",
|
|
1499
1022
|
"IndustryBasicMachine",
|
|
@@ -1509,24 +1032,6 @@ const result = {
|
|
|
1509
1032
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1510
1033
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1511
1034
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1512
|
-
"IndustryFluidHeatMeter",
|
|
1513
|
-
"IndustryFluidWaterMeter",
|
|
1514
|
-
"IndustryMaintenanceAccount",
|
|
1515
|
-
"IndustryMaintenanceCostCenter",
|
|
1516
|
-
"IndustryMaintenanceEmployee",
|
|
1517
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1518
|
-
"IndustryMaintenanceJournalEntry",
|
|
1519
|
-
"IndustryMaintenanceOrder",
|
|
1520
|
-
"IndustryMaintenanceOrderCosts",
|
|
1521
|
-
"IndustryMaintenanceOrderFeedback",
|
|
1522
|
-
"IndustryMaintenanceWorkplace",
|
|
1523
|
-
"IndustryManufacturingPartialFeedback",
|
|
1524
|
-
"IndustryManufacturingProductionOrder",
|
|
1525
|
-
"IndustryManufacturingProductionOrderItem",
|
|
1526
|
-
"IndustryManufacturingShift",
|
|
1527
|
-
"IndustryManufacturingShiftMachine",
|
|
1528
|
-
"IndustryManufacturingShiftOrderItem",
|
|
1529
|
-
"IndustryManufacturingShiftTemplate",
|
|
1530
1035
|
"OctoSdkDemoCustomer",
|
|
1531
1036
|
"OctoSdkDemoMeteringPoint",
|
|
1532
1037
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -1542,6 +1047,7 @@ const result = {
|
|
|
1542
1047
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1543
1048
|
"SystemCommunicationFinApiConfiguration",
|
|
1544
1049
|
"SystemCommunicationGrafanaConfiguration",
|
|
1050
|
+
"SystemCommunicationLoxoneConfiguration",
|
|
1545
1051
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1546
1052
|
"SystemCommunicationPipeline",
|
|
1547
1053
|
"SystemCommunicationPipelineExecution",
|
|
@@ -1577,7 +1083,6 @@ const result = {
|
|
|
1577
1083
|
"SystemNotificationEvent",
|
|
1578
1084
|
"SystemNotificationNotificationTemplate",
|
|
1579
1085
|
"SystemNotificationStatefulEvent",
|
|
1580
|
-
"SystemQuery",
|
|
1581
1086
|
"SystemReportingConnectionInfo",
|
|
1582
1087
|
"SystemReportingFileSystemItem",
|
|
1583
1088
|
"SystemReportingFolder",
|
|
@@ -1601,123 +1106,20 @@ const result = {
|
|
|
1601
1106
|
"BasicCity",
|
|
1602
1107
|
"BasicCountry",
|
|
1603
1108
|
"BasicDistrict",
|
|
1604
|
-
"BasicEnergyOperatingFacility",
|
|
1605
1109
|
"BasicState",
|
|
1606
1110
|
"BasicTree",
|
|
1607
1111
|
"BasicTreeNode",
|
|
1608
|
-
"EnergyCommunityOperatingFacility",
|
|
1609
|
-
"EnvironmentWasteMeter",
|
|
1610
|
-
"IndustryBasicMachine",
|
|
1611
|
-
"IndustryEnergyEnergyConsumer",
|
|
1612
|
-
"IndustryEnergyEnergyMeter",
|
|
1613
|
-
"IndustryEnergyEnergyStorage",
|
|
1614
|
-
"IndustryEnergyInverter",
|
|
1615
|
-
"IndustryEnergyPhotovoltaicSystem",
|
|
1616
|
-
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1617
|
-
"IndustryEnergyPhotovoltaicSystemString",
|
|
1618
|
-
"IndustryFluidHeatMeter",
|
|
1619
|
-
"IndustryFluidWaterMeter",
|
|
1620
|
-
"IndustryMaintenanceCostCenter",
|
|
1621
|
-
"IndustryMaintenanceEmployee",
|
|
1622
|
-
"IndustryMaintenanceWorkplace",
|
|
1623
|
-
"OctoSdkDemoMeteringPoint",
|
|
1624
|
-
"OctoSdkDemoOperatingFacility"
|
|
1625
|
-
],
|
|
1626
|
-
"EnergyCommunityBillingDocumentLineItem_BillingUnion": [
|
|
1627
|
-
"EnergyCommunityBillingDocumentLineItem"
|
|
1628
|
-
],
|
|
1629
|
-
"EnergyCommunityBillingDocumentLineItem_BillingsUnion": [
|
|
1630
|
-
"EnergyCommunityBillingDocumentLineItem"
|
|
1631
|
-
],
|
|
1632
|
-
"EnergyCommunityBillingDocumentLineItem_ChildrenUnion": [
|
|
1633
|
-
"EnergyCommunityBillingDocumentLineItem"
|
|
1634
|
-
],
|
|
1635
|
-
"EnergyCommunityBillingDocument_BillingUnion": [
|
|
1636
|
-
"EnergyCommunityBillingDocument"
|
|
1637
|
-
],
|
|
1638
|
-
"EnergyCommunityBillingDocument_ParentUnion": [
|
|
1639
|
-
"EnergyCommunityBillingDocument"
|
|
1640
|
-
],
|
|
1641
|
-
"EnergyCommunityCustomer_AssignedToUnion": [
|
|
1642
|
-
"EnergyCommunityCustomer"
|
|
1643
|
-
],
|
|
1644
|
-
"EnergyCommunityCustomer_CustomerUnion": [
|
|
1645
|
-
"EnergyCommunityCustomer"
|
|
1646
|
-
],
|
|
1647
|
-
"EnergyCommunityEdaMessage_MessagesUnion": [
|
|
1648
|
-
"EnergyCommunityEdaMessage"
|
|
1649
|
-
],
|
|
1650
|
-
"EnergyCommunityEdaProcess_ProcessUnion": [
|
|
1651
|
-
"EnergyCommunityEdaProcess"
|
|
1652
|
-
],
|
|
1653
|
-
"EnergyCommunityEnergyQuantity_AssignedToUnion": [
|
|
1654
|
-
"EnergyCommunityEnergyQuantity"
|
|
1655
|
-
],
|
|
1656
|
-
"EnergyCommunityEnergyQuantity_ChildrenUnion": [
|
|
1657
|
-
"EnergyCommunityEnergyQuantity"
|
|
1658
|
-
],
|
|
1659
|
-
"EnergyCommunityMeteringPointInterface": [
|
|
1660
|
-
"EnergyCommunityConsumer",
|
|
1661
|
-
"EnergyCommunityProducer"
|
|
1662
|
-
],
|
|
1663
|
-
"EnergyCommunityMeteringPoint_ChildrenUnion": [
|
|
1664
|
-
"BasicAsset",
|
|
1665
|
-
"BasicCity",
|
|
1666
|
-
"BasicCountry",
|
|
1667
|
-
"BasicDistrict",
|
|
1668
|
-
"BasicEnergyOperatingFacility",
|
|
1669
|
-
"BasicState",
|
|
1670
|
-
"BasicTreeNode",
|
|
1671
|
-
"EnergyCommunityConsumer",
|
|
1672
|
-
"EnergyCommunityOperatingFacility",
|
|
1673
|
-
"EnergyCommunityProducer",
|
|
1674
|
-
"EnvironmentCarbonBudget",
|
|
1675
|
-
"EnvironmentCarbonEmission",
|
|
1676
|
-
"EnvironmentCertificateOfOrigin",
|
|
1677
|
-
"EnvironmentComplianceRecord",
|
|
1678
|
-
"EnvironmentEnvironmentalGoal",
|
|
1679
|
-
"EnvironmentWasteMeter",
|
|
1680
1112
|
"IndustryBasicMachine",
|
|
1681
|
-
"IndustryEnergyDemandResponseEvent",
|
|
1682
1113
|
"IndustryEnergyEnergyConsumer",
|
|
1683
|
-
"IndustryEnergyEnergyCost",
|
|
1684
|
-
"IndustryEnergyEnergyForecast",
|
|
1685
1114
|
"IndustryEnergyEnergyMeter",
|
|
1686
|
-
"IndustryEnergyEnergyPerformanceIndicator",
|
|
1687
1115
|
"IndustryEnergyEnergyStorage",
|
|
1688
1116
|
"IndustryEnergyInverter",
|
|
1689
1117
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1690
1118
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1691
1119
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1692
|
-
"IndustryFluidHeatMeter",
|
|
1693
|
-
"IndustryFluidWaterMeter",
|
|
1694
|
-
"IndustryMaintenanceCostCenter",
|
|
1695
|
-
"IndustryMaintenanceEmployee",
|
|
1696
|
-
"IndustryMaintenanceWorkplace",
|
|
1697
1120
|
"OctoSdkDemoMeteringPoint",
|
|
1698
1121
|
"OctoSdkDemoOperatingFacility"
|
|
1699
1122
|
],
|
|
1700
|
-
"EnergyCommunityMeteringPoint_MeteringPointUnion": [
|
|
1701
|
-
"EnergyCommunityConsumer",
|
|
1702
|
-
"EnergyCommunityProducer"
|
|
1703
|
-
],
|
|
1704
|
-
"EnergyCommunityMeteringPoint_ParentUnion": [
|
|
1705
|
-
"EnergyCommunityConsumer",
|
|
1706
|
-
"EnergyCommunityProducer"
|
|
1707
|
-
],
|
|
1708
|
-
"EnergyCommunityOperatingFacility_FacilitiesUnion": [
|
|
1709
|
-
"EnergyCommunityOperatingFacility"
|
|
1710
|
-
],
|
|
1711
|
-
"EnergyCommunityOperatingFacility_ParentUnion": [
|
|
1712
|
-
"EnergyCommunityOperatingFacility"
|
|
1713
|
-
],
|
|
1714
|
-
"EnergyCommunityParticipationPeriod_PeriodsUnion": [
|
|
1715
|
-
"EnergyCommunityParticipationPeriod"
|
|
1716
|
-
],
|
|
1717
|
-
"IndustryBasicEvent_EventUnion": [
|
|
1718
|
-
"IndustryBasicAlarm",
|
|
1719
|
-
"IndustryBasicEvent"
|
|
1720
|
-
],
|
|
1721
1123
|
"IndustryBasicEvent_EventsUnion": [
|
|
1722
1124
|
"IndustryBasicAlarm",
|
|
1723
1125
|
"IndustryBasicEvent"
|
|
@@ -1728,87 +1130,11 @@ const result = {
|
|
|
1728
1130
|
"IndustryEnergyEnergyMeter",
|
|
1729
1131
|
"IndustryEnergyEnergyStorage",
|
|
1730
1132
|
"IndustryEnergyInverter",
|
|
1731
|
-
"IndustryEnergyPhotovoltaicSystemModule"
|
|
1732
|
-
"IndustryFluidHeatMeter",
|
|
1733
|
-
"IndustryFluidWaterMeter"
|
|
1133
|
+
"IndustryEnergyPhotovoltaicSystemModule"
|
|
1734
1134
|
],
|
|
1735
1135
|
"IndustryBasicRuntimeVariable_RuntimeVariablesUnion": [
|
|
1736
1136
|
"IndustryBasicRuntimeVariable"
|
|
1737
1137
|
],
|
|
1738
|
-
"IndustryMaintenanceAccount_ParentUnion": [
|
|
1739
|
-
"IndustryMaintenanceAccount"
|
|
1740
|
-
],
|
|
1741
|
-
"IndustryMaintenanceCostCenter_CostCenterUnion": [
|
|
1742
|
-
"IndustryMaintenanceCostCenter"
|
|
1743
|
-
],
|
|
1744
|
-
"IndustryMaintenanceEmployee_EmployeeUnion": [
|
|
1745
|
-
"IndustryMaintenanceEmployee"
|
|
1746
|
-
],
|
|
1747
|
-
"IndustryMaintenanceEnergyBalance_OrdersUnion": [
|
|
1748
|
-
"IndustryMaintenanceEnergyBalance"
|
|
1749
|
-
],
|
|
1750
|
-
"IndustryMaintenanceJournalEntry_ChildrenUnion": [
|
|
1751
|
-
"IndustryMaintenanceJournalEntry"
|
|
1752
|
-
],
|
|
1753
|
-
"IndustryMaintenanceJournalEntry_JournalEntriesUnion": [
|
|
1754
|
-
"IndustryMaintenanceJournalEntry"
|
|
1755
|
-
],
|
|
1756
|
-
"IndustryMaintenanceOrderCosts_CostsUnion": [
|
|
1757
|
-
"IndustryMaintenanceOrderCosts"
|
|
1758
|
-
],
|
|
1759
|
-
"IndustryMaintenanceOrderFeedback_ChildrenUnion": [
|
|
1760
|
-
"IndustryMaintenanceOrderFeedback"
|
|
1761
|
-
],
|
|
1762
|
-
"IndustryMaintenanceOrderFeedback_OrderFeedbacksUnion": [
|
|
1763
|
-
"IndustryMaintenanceOrderFeedback"
|
|
1764
|
-
],
|
|
1765
|
-
"IndustryMaintenanceOrder_OrderUnion": [
|
|
1766
|
-
"IndustryMaintenanceOrder"
|
|
1767
|
-
],
|
|
1768
|
-
"IndustryMaintenanceOrder_OrdersUnion": [
|
|
1769
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1770
|
-
"IndustryMaintenanceOrder"
|
|
1771
|
-
],
|
|
1772
|
-
"IndustryMaintenanceOrder_ParentUnion": [
|
|
1773
|
-
"IndustryMaintenanceOrder"
|
|
1774
|
-
],
|
|
1775
|
-
"IndustryManufacturingPartialFeedback_ChildrenUnion": [
|
|
1776
|
-
"IndustryManufacturingPartialFeedback"
|
|
1777
|
-
],
|
|
1778
|
-
"IndustryManufacturingPartialFeedback_PartialFeedbacksUnion": [
|
|
1779
|
-
"IndustryManufacturingPartialFeedback"
|
|
1780
|
-
],
|
|
1781
|
-
"IndustryManufacturingProductionOrderItem_ChildrenUnion": [
|
|
1782
|
-
"IndustryManufacturingProductionOrderItem"
|
|
1783
|
-
],
|
|
1784
|
-
"IndustryManufacturingProductionOrderItem_OrderItemsUnion": [
|
|
1785
|
-
"IndustryManufacturingProductionOrderItem"
|
|
1786
|
-
],
|
|
1787
|
-
"IndustryManufacturingProductionOrderItem_ProductionOrderItemUnion": [
|
|
1788
|
-
"IndustryManufacturingProductionOrderItem"
|
|
1789
|
-
],
|
|
1790
|
-
"IndustryManufacturingProductionOrder_ParentUnion": [
|
|
1791
|
-
"IndustryManufacturingProductionOrder"
|
|
1792
|
-
],
|
|
1793
|
-
"IndustryManufacturingShiftMachine_ChildrenUnion": [
|
|
1794
|
-
"IndustryManufacturingShiftMachine",
|
|
1795
|
-
"IndustryManufacturingShiftOrderItem"
|
|
1796
|
-
],
|
|
1797
|
-
"IndustryManufacturingShiftMachine_ShiftAssignmentsUnion": [
|
|
1798
|
-
"IndustryManufacturingShiftMachine"
|
|
1799
|
-
],
|
|
1800
|
-
"IndustryManufacturingShiftMachine_ShiftMachinesUnion": [
|
|
1801
|
-
"IndustryManufacturingShiftMachine"
|
|
1802
|
-
],
|
|
1803
|
-
"IndustryManufacturingShiftOrderItem_ParentUnion": [
|
|
1804
|
-
"IndustryManufacturingShiftOrderItem"
|
|
1805
|
-
],
|
|
1806
|
-
"IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnion": [
|
|
1807
|
-
"IndustryManufacturingShiftOrderItem"
|
|
1808
|
-
],
|
|
1809
|
-
"IndustryManufacturingShift_ParentUnion": [
|
|
1810
|
-
"IndustryManufacturingShift"
|
|
1811
|
-
],
|
|
1812
1138
|
"OctoSdkDemoCustomer_OwnedByUnion": [
|
|
1813
1139
|
"OctoSdkDemoCustomer"
|
|
1814
1140
|
],
|
|
@@ -1866,6 +1192,12 @@ const result = {
|
|
|
1866
1192
|
"SystemCommunicationPipeline_PipelineStatisticsUnion": [
|
|
1867
1193
|
"SystemCommunicationPipeline"
|
|
1868
1194
|
],
|
|
1195
|
+
"SystemCommunicationPipeline_ReceivesDataFromUnion": [
|
|
1196
|
+
"SystemCommunicationPipeline"
|
|
1197
|
+
],
|
|
1198
|
+
"SystemCommunicationPipeline_SendsDataToUnion": [
|
|
1199
|
+
"SystemCommunicationPipeline"
|
|
1200
|
+
],
|
|
1869
1201
|
"SystemCommunicationPipeline_TriggeredByUnion": [
|
|
1870
1202
|
"SystemCommunicationPipeline"
|
|
1871
1203
|
],
|
|
@@ -1885,6 +1217,7 @@ const result = {
|
|
|
1885
1217
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1886
1218
|
"SystemCommunicationFinApiConfiguration",
|
|
1887
1219
|
"SystemCommunicationGrafanaConfiguration",
|
|
1220
|
+
"SystemCommunicationLoxoneConfiguration",
|
|
1888
1221
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1889
1222
|
"SystemCommunicationSapConfiguration",
|
|
1890
1223
|
"SystemCommunicationSftpConfiguration",
|
|
@@ -1901,6 +1234,7 @@ const result = {
|
|
|
1901
1234
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1902
1235
|
"SystemCommunicationFinApiConfiguration",
|
|
1903
1236
|
"SystemCommunicationGrafanaConfiguration",
|
|
1237
|
+
"SystemCommunicationLoxoneConfiguration",
|
|
1904
1238
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1905
1239
|
"SystemCommunicationSapConfiguration",
|
|
1906
1240
|
"SystemCommunicationSftpConfiguration",
|
|
@@ -1913,32 +1247,8 @@ const result = {
|
|
|
1913
1247
|
"SystemEntityInterface": [
|
|
1914
1248
|
"BasicDocument",
|
|
1915
1249
|
"BasicEmployee",
|
|
1916
|
-
"BasicEnergyConsumer",
|
|
1917
|
-
"BasicEnergyEdaMessage",
|
|
1918
|
-
"BasicEnergyEdaMeteringPoint",
|
|
1919
|
-
"BasicEnergyEdaProcess",
|
|
1920
|
-
"BasicEnergyEnergyMeasurement",
|
|
1921
|
-
"BasicEnergyMeteringPoint",
|
|
1922
|
-
"BasicEnergyProducer",
|
|
1923
1250
|
"BasicNamedEntity",
|
|
1924
1251
|
"BasicTree",
|
|
1925
|
-
"EnergyCommunityBillingDocument",
|
|
1926
|
-
"EnergyCommunityBillingDocumentLineItem",
|
|
1927
|
-
"EnergyCommunityConsumer",
|
|
1928
|
-
"EnergyCommunityCustomer",
|
|
1929
|
-
"EnergyCommunityEdaMessage",
|
|
1930
|
-
"EnergyCommunityEdaMeteringPoint",
|
|
1931
|
-
"EnergyCommunityEdaProcess",
|
|
1932
|
-
"EnergyCommunityEnergyPrice",
|
|
1933
|
-
"EnergyCommunityEnergyQuantity",
|
|
1934
|
-
"EnergyCommunityMeteringPoint",
|
|
1935
|
-
"EnergyCommunityParticipationPeriod",
|
|
1936
|
-
"EnergyCommunityProducer",
|
|
1937
|
-
"EnvironmentCarbonBudget",
|
|
1938
|
-
"EnvironmentCarbonEmission",
|
|
1939
|
-
"EnvironmentCertificateOfOrigin",
|
|
1940
|
-
"EnvironmentComplianceRecord",
|
|
1941
|
-
"EnvironmentEnvironmentalGoal",
|
|
1942
1252
|
"IndustryBasicAlarm",
|
|
1943
1253
|
"IndustryBasicEvent",
|
|
1944
1254
|
"IndustryBasicRuntimeVariable",
|
|
@@ -1946,19 +1256,6 @@ const result = {
|
|
|
1946
1256
|
"IndustryEnergyEnergyCost",
|
|
1947
1257
|
"IndustryEnergyEnergyForecast",
|
|
1948
1258
|
"IndustryEnergyEnergyPerformanceIndicator",
|
|
1949
|
-
"IndustryMaintenanceAccount",
|
|
1950
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1951
|
-
"IndustryMaintenanceJournalEntry",
|
|
1952
|
-
"IndustryMaintenanceOrder",
|
|
1953
|
-
"IndustryMaintenanceOrderCosts",
|
|
1954
|
-
"IndustryMaintenanceOrderFeedback",
|
|
1955
|
-
"IndustryManufacturingPartialFeedback",
|
|
1956
|
-
"IndustryManufacturingProductionOrder",
|
|
1957
|
-
"IndustryManufacturingProductionOrderItem",
|
|
1958
|
-
"IndustryManufacturingShift",
|
|
1959
|
-
"IndustryManufacturingShiftMachine",
|
|
1960
|
-
"IndustryManufacturingShiftOrderItem",
|
|
1961
|
-
"IndustryManufacturingShiftTemplate",
|
|
1962
1259
|
"OctoSdkDemoCustomer",
|
|
1963
1260
|
"SystemAggregationRtQuery",
|
|
1964
1261
|
"SystemAutoIncrement",
|
|
@@ -1973,6 +1270,7 @@ const result = {
|
|
|
1973
1270
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1974
1271
|
"SystemCommunicationFinApiConfiguration",
|
|
1975
1272
|
"SystemCommunicationGrafanaConfiguration",
|
|
1273
|
+
"SystemCommunicationLoxoneConfiguration",
|
|
1976
1274
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1977
1275
|
"SystemCommunicationPipeline",
|
|
1978
1276
|
"SystemCommunicationPipelineExecution",
|
|
@@ -2012,7 +1310,6 @@ const result = {
|
|
|
2012
1310
|
"SystemNotificationNotificationTemplate",
|
|
2013
1311
|
"SystemNotificationStatefulEvent",
|
|
2014
1312
|
"SystemPersistentQuery",
|
|
2015
|
-
"SystemQuery",
|
|
2016
1313
|
"SystemReportingConnectionInfo",
|
|
2017
1314
|
"SystemReportingFileSystemContainer",
|
|
2018
1315
|
"SystemReportingFileSystemEntity",
|
|
@@ -2040,34 +1337,9 @@ const result = {
|
|
|
2040
1337
|
"BasicCountry",
|
|
2041
1338
|
"BasicDistrict",
|
|
2042
1339
|
"BasicEmployee",
|
|
2043
|
-
"BasicEnergyConsumer",
|
|
2044
|
-
"BasicEnergyEdaMessage",
|
|
2045
|
-
"BasicEnergyEdaMeteringPoint",
|
|
2046
|
-
"BasicEnergyEdaProcess",
|
|
2047
|
-
"BasicEnergyEnergyMeasurement",
|
|
2048
|
-
"BasicEnergyOperatingFacility",
|
|
2049
|
-
"BasicEnergyProducer",
|
|
2050
1340
|
"BasicState",
|
|
2051
1341
|
"BasicTree",
|
|
2052
1342
|
"BasicTreeNode",
|
|
2053
|
-
"EnergyCommunityBillingDocument",
|
|
2054
|
-
"EnergyCommunityBillingDocumentLineItem",
|
|
2055
|
-
"EnergyCommunityConsumer",
|
|
2056
|
-
"EnergyCommunityCustomer",
|
|
2057
|
-
"EnergyCommunityEdaMessage",
|
|
2058
|
-
"EnergyCommunityEdaMeteringPoint",
|
|
2059
|
-
"EnergyCommunityEdaProcess",
|
|
2060
|
-
"EnergyCommunityEnergyPrice",
|
|
2061
|
-
"EnergyCommunityEnergyQuantity",
|
|
2062
|
-
"EnergyCommunityOperatingFacility",
|
|
2063
|
-
"EnergyCommunityParticipationPeriod",
|
|
2064
|
-
"EnergyCommunityProducer",
|
|
2065
|
-
"EnvironmentCarbonBudget",
|
|
2066
|
-
"EnvironmentCarbonEmission",
|
|
2067
|
-
"EnvironmentCertificateOfOrigin",
|
|
2068
|
-
"EnvironmentComplianceRecord",
|
|
2069
|
-
"EnvironmentEnvironmentalGoal",
|
|
2070
|
-
"EnvironmentWasteMeter",
|
|
2071
1343
|
"IndustryBasicAlarm",
|
|
2072
1344
|
"IndustryBasicEvent",
|
|
2073
1345
|
"IndustryBasicMachine",
|
|
@@ -2083,24 +1355,6 @@ const result = {
|
|
|
2083
1355
|
"IndustryEnergyPhotovoltaicSystem",
|
|
2084
1356
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
2085
1357
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
2086
|
-
"IndustryFluidHeatMeter",
|
|
2087
|
-
"IndustryFluidWaterMeter",
|
|
2088
|
-
"IndustryMaintenanceAccount",
|
|
2089
|
-
"IndustryMaintenanceCostCenter",
|
|
2090
|
-
"IndustryMaintenanceEmployee",
|
|
2091
|
-
"IndustryMaintenanceEnergyBalance",
|
|
2092
|
-
"IndustryMaintenanceJournalEntry",
|
|
2093
|
-
"IndustryMaintenanceOrder",
|
|
2094
|
-
"IndustryMaintenanceOrderCosts",
|
|
2095
|
-
"IndustryMaintenanceOrderFeedback",
|
|
2096
|
-
"IndustryMaintenanceWorkplace",
|
|
2097
|
-
"IndustryManufacturingPartialFeedback",
|
|
2098
|
-
"IndustryManufacturingProductionOrder",
|
|
2099
|
-
"IndustryManufacturingProductionOrderItem",
|
|
2100
|
-
"IndustryManufacturingShift",
|
|
2101
|
-
"IndustryManufacturingShiftMachine",
|
|
2102
|
-
"IndustryManufacturingShiftOrderItem",
|
|
2103
|
-
"IndustryManufacturingShiftTemplate",
|
|
2104
1358
|
"OctoSdkDemoCustomer",
|
|
2105
1359
|
"OctoSdkDemoMeteringPoint",
|
|
2106
1360
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -2116,6 +1370,7 @@ const result = {
|
|
|
2116
1370
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
2117
1371
|
"SystemCommunicationFinApiConfiguration",
|
|
2118
1372
|
"SystemCommunicationGrafanaConfiguration",
|
|
1373
|
+
"SystemCommunicationLoxoneConfiguration",
|
|
2119
1374
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
2120
1375
|
"SystemCommunicationPipeline",
|
|
2121
1376
|
"SystemCommunicationPipelineExecution",
|
|
@@ -2151,7 +1406,6 @@ const result = {
|
|
|
2151
1406
|
"SystemNotificationEvent",
|
|
2152
1407
|
"SystemNotificationNotificationTemplate",
|
|
2153
1408
|
"SystemNotificationStatefulEvent",
|
|
2154
|
-
"SystemQuery",
|
|
2155
1409
|
"SystemReportingConnectionInfo",
|
|
2156
1410
|
"SystemReportingFileSystemItem",
|
|
2157
1411
|
"SystemReportingFolder",
|
|
@@ -2176,34 +1430,9 @@ const result = {
|
|
|
2176
1430
|
"BasicCountry",
|
|
2177
1431
|
"BasicDistrict",
|
|
2178
1432
|
"BasicEmployee",
|
|
2179
|
-
"BasicEnergyConsumer",
|
|
2180
|
-
"BasicEnergyEdaMessage",
|
|
2181
|
-
"BasicEnergyEdaMeteringPoint",
|
|
2182
|
-
"BasicEnergyEdaProcess",
|
|
2183
|
-
"BasicEnergyEnergyMeasurement",
|
|
2184
|
-
"BasicEnergyOperatingFacility",
|
|
2185
|
-
"BasicEnergyProducer",
|
|
2186
1433
|
"BasicState",
|
|
2187
1434
|
"BasicTree",
|
|
2188
1435
|
"BasicTreeNode",
|
|
2189
|
-
"EnergyCommunityBillingDocument",
|
|
2190
|
-
"EnergyCommunityBillingDocumentLineItem",
|
|
2191
|
-
"EnergyCommunityConsumer",
|
|
2192
|
-
"EnergyCommunityCustomer",
|
|
2193
|
-
"EnergyCommunityEdaMessage",
|
|
2194
|
-
"EnergyCommunityEdaMeteringPoint",
|
|
2195
|
-
"EnergyCommunityEdaProcess",
|
|
2196
|
-
"EnergyCommunityEnergyPrice",
|
|
2197
|
-
"EnergyCommunityEnergyQuantity",
|
|
2198
|
-
"EnergyCommunityOperatingFacility",
|
|
2199
|
-
"EnergyCommunityParticipationPeriod",
|
|
2200
|
-
"EnergyCommunityProducer",
|
|
2201
|
-
"EnvironmentCarbonBudget",
|
|
2202
|
-
"EnvironmentCarbonEmission",
|
|
2203
|
-
"EnvironmentCertificateOfOrigin",
|
|
2204
|
-
"EnvironmentComplianceRecord",
|
|
2205
|
-
"EnvironmentEnvironmentalGoal",
|
|
2206
|
-
"EnvironmentWasteMeter",
|
|
2207
1436
|
"IndustryBasicAlarm",
|
|
2208
1437
|
"IndustryBasicEvent",
|
|
2209
1438
|
"IndustryBasicMachine",
|
|
@@ -2219,24 +1448,6 @@ const result = {
|
|
|
2219
1448
|
"IndustryEnergyPhotovoltaicSystem",
|
|
2220
1449
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
2221
1450
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
2222
|
-
"IndustryFluidHeatMeter",
|
|
2223
|
-
"IndustryFluidWaterMeter",
|
|
2224
|
-
"IndustryMaintenanceAccount",
|
|
2225
|
-
"IndustryMaintenanceCostCenter",
|
|
2226
|
-
"IndustryMaintenanceEmployee",
|
|
2227
|
-
"IndustryMaintenanceEnergyBalance",
|
|
2228
|
-
"IndustryMaintenanceJournalEntry",
|
|
2229
|
-
"IndustryMaintenanceOrder",
|
|
2230
|
-
"IndustryMaintenanceOrderCosts",
|
|
2231
|
-
"IndustryMaintenanceOrderFeedback",
|
|
2232
|
-
"IndustryMaintenanceWorkplace",
|
|
2233
|
-
"IndustryManufacturingPartialFeedback",
|
|
2234
|
-
"IndustryManufacturingProductionOrder",
|
|
2235
|
-
"IndustryManufacturingProductionOrderItem",
|
|
2236
|
-
"IndustryManufacturingShift",
|
|
2237
|
-
"IndustryManufacturingShiftMachine",
|
|
2238
|
-
"IndustryManufacturingShiftOrderItem",
|
|
2239
|
-
"IndustryManufacturingShiftTemplate",
|
|
2240
1451
|
"OctoSdkDemoCustomer",
|
|
2241
1452
|
"OctoSdkDemoMeteringPoint",
|
|
2242
1453
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -2252,6 +1463,7 @@ const result = {
|
|
|
2252
1463
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
2253
1464
|
"SystemCommunicationFinApiConfiguration",
|
|
2254
1465
|
"SystemCommunicationGrafanaConfiguration",
|
|
1466
|
+
"SystemCommunicationLoxoneConfiguration",
|
|
2255
1467
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
2256
1468
|
"SystemCommunicationPipeline",
|
|
2257
1469
|
"SystemCommunicationPipelineExecution",
|
|
@@ -2287,7 +1499,6 @@ const result = {
|
|
|
2287
1499
|
"SystemNotificationEvent",
|
|
2288
1500
|
"SystemNotificationNotificationTemplate",
|
|
2289
1501
|
"SystemNotificationStatefulEvent",
|
|
2290
|
-
"SystemQuery",
|
|
2291
1502
|
"SystemReportingConnectionInfo",
|
|
2292
1503
|
"SystemReportingFileSystemItem",
|
|
2293
1504
|
"SystemReportingFolder",
|
|
@@ -2312,34 +1523,9 @@ const result = {
|
|
|
2312
1523
|
"BasicCountry",
|
|
2313
1524
|
"BasicDistrict",
|
|
2314
1525
|
"BasicEmployee",
|
|
2315
|
-
"BasicEnergyConsumer",
|
|
2316
|
-
"BasicEnergyEdaMessage",
|
|
2317
|
-
"BasicEnergyEdaMeteringPoint",
|
|
2318
|
-
"BasicEnergyEdaProcess",
|
|
2319
|
-
"BasicEnergyEnergyMeasurement",
|
|
2320
|
-
"BasicEnergyOperatingFacility",
|
|
2321
|
-
"BasicEnergyProducer",
|
|
2322
1526
|
"BasicState",
|
|
2323
1527
|
"BasicTree",
|
|
2324
1528
|
"BasicTreeNode",
|
|
2325
|
-
"EnergyCommunityBillingDocument",
|
|
2326
|
-
"EnergyCommunityBillingDocumentLineItem",
|
|
2327
|
-
"EnergyCommunityConsumer",
|
|
2328
|
-
"EnergyCommunityCustomer",
|
|
2329
|
-
"EnergyCommunityEdaMessage",
|
|
2330
|
-
"EnergyCommunityEdaMeteringPoint",
|
|
2331
|
-
"EnergyCommunityEdaProcess",
|
|
2332
|
-
"EnergyCommunityEnergyPrice",
|
|
2333
|
-
"EnergyCommunityEnergyQuantity",
|
|
2334
|
-
"EnergyCommunityOperatingFacility",
|
|
2335
|
-
"EnergyCommunityParticipationPeriod",
|
|
2336
|
-
"EnergyCommunityProducer",
|
|
2337
|
-
"EnvironmentCarbonBudget",
|
|
2338
|
-
"EnvironmentCarbonEmission",
|
|
2339
|
-
"EnvironmentCertificateOfOrigin",
|
|
2340
|
-
"EnvironmentComplianceRecord",
|
|
2341
|
-
"EnvironmentEnvironmentalGoal",
|
|
2342
|
-
"EnvironmentWasteMeter",
|
|
2343
1529
|
"IndustryBasicAlarm",
|
|
2344
1530
|
"IndustryBasicEvent",
|
|
2345
1531
|
"IndustryBasicMachine",
|
|
@@ -2355,24 +1541,6 @@ const result = {
|
|
|
2355
1541
|
"IndustryEnergyPhotovoltaicSystem",
|
|
2356
1542
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
2357
1543
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
2358
|
-
"IndustryFluidHeatMeter",
|
|
2359
|
-
"IndustryFluidWaterMeter",
|
|
2360
|
-
"IndustryMaintenanceAccount",
|
|
2361
|
-
"IndustryMaintenanceCostCenter",
|
|
2362
|
-
"IndustryMaintenanceEmployee",
|
|
2363
|
-
"IndustryMaintenanceEnergyBalance",
|
|
2364
|
-
"IndustryMaintenanceJournalEntry",
|
|
2365
|
-
"IndustryMaintenanceOrder",
|
|
2366
|
-
"IndustryMaintenanceOrderCosts",
|
|
2367
|
-
"IndustryMaintenanceOrderFeedback",
|
|
2368
|
-
"IndustryMaintenanceWorkplace",
|
|
2369
|
-
"IndustryManufacturingPartialFeedback",
|
|
2370
|
-
"IndustryManufacturingProductionOrder",
|
|
2371
|
-
"IndustryManufacturingProductionOrderItem",
|
|
2372
|
-
"IndustryManufacturingShift",
|
|
2373
|
-
"IndustryManufacturingShiftMachine",
|
|
2374
|
-
"IndustryManufacturingShiftOrderItem",
|
|
2375
|
-
"IndustryManufacturingShiftTemplate",
|
|
2376
1544
|
"OctoSdkDemoCustomer",
|
|
2377
1545
|
"OctoSdkDemoMeteringPoint",
|
|
2378
1546
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -2388,6 +1556,7 @@ const result = {
|
|
|
2388
1556
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
2389
1557
|
"SystemCommunicationFinApiConfiguration",
|
|
2390
1558
|
"SystemCommunicationGrafanaConfiguration",
|
|
1559
|
+
"SystemCommunicationLoxoneConfiguration",
|
|
2391
1560
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
2392
1561
|
"SystemCommunicationPipeline",
|
|
2393
1562
|
"SystemCommunicationPipelineExecution",
|
|
@@ -2423,7 +1592,6 @@ const result = {
|
|
|
2423
1592
|
"SystemNotificationEvent",
|
|
2424
1593
|
"SystemNotificationNotificationTemplate",
|
|
2425
1594
|
"SystemNotificationStatefulEvent",
|
|
2426
|
-
"SystemQuery",
|
|
2427
1595
|
"SystemReportingConnectionInfo",
|
|
2428
1596
|
"SystemReportingFileSystemItem",
|
|
2429
1597
|
"SystemReportingFolder",
|
|
@@ -2448,34 +1616,9 @@ const result = {
|
|
|
2448
1616
|
"BasicCountry",
|
|
2449
1617
|
"BasicDistrict",
|
|
2450
1618
|
"BasicEmployee",
|
|
2451
|
-
"BasicEnergyConsumer",
|
|
2452
|
-
"BasicEnergyEdaMessage",
|
|
2453
|
-
"BasicEnergyEdaMeteringPoint",
|
|
2454
|
-
"BasicEnergyEdaProcess",
|
|
2455
|
-
"BasicEnergyEnergyMeasurement",
|
|
2456
|
-
"BasicEnergyOperatingFacility",
|
|
2457
|
-
"BasicEnergyProducer",
|
|
2458
1619
|
"BasicState",
|
|
2459
1620
|
"BasicTree",
|
|
2460
1621
|
"BasicTreeNode",
|
|
2461
|
-
"EnergyCommunityBillingDocument",
|
|
2462
|
-
"EnergyCommunityBillingDocumentLineItem",
|
|
2463
|
-
"EnergyCommunityConsumer",
|
|
2464
|
-
"EnergyCommunityCustomer",
|
|
2465
|
-
"EnergyCommunityEdaMessage",
|
|
2466
|
-
"EnergyCommunityEdaMeteringPoint",
|
|
2467
|
-
"EnergyCommunityEdaProcess",
|
|
2468
|
-
"EnergyCommunityEnergyPrice",
|
|
2469
|
-
"EnergyCommunityEnergyQuantity",
|
|
2470
|
-
"EnergyCommunityOperatingFacility",
|
|
2471
|
-
"EnergyCommunityParticipationPeriod",
|
|
2472
|
-
"EnergyCommunityProducer",
|
|
2473
|
-
"EnvironmentCarbonBudget",
|
|
2474
|
-
"EnvironmentCarbonEmission",
|
|
2475
|
-
"EnvironmentCertificateOfOrigin",
|
|
2476
|
-
"EnvironmentComplianceRecord",
|
|
2477
|
-
"EnvironmentEnvironmentalGoal",
|
|
2478
|
-
"EnvironmentWasteMeter",
|
|
2479
1622
|
"IndustryBasicAlarm",
|
|
2480
1623
|
"IndustryBasicEvent",
|
|
2481
1624
|
"IndustryBasicMachine",
|
|
@@ -2491,24 +1634,6 @@ const result = {
|
|
|
2491
1634
|
"IndustryEnergyPhotovoltaicSystem",
|
|
2492
1635
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
2493
1636
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
2494
|
-
"IndustryFluidHeatMeter",
|
|
2495
|
-
"IndustryFluidWaterMeter",
|
|
2496
|
-
"IndustryMaintenanceAccount",
|
|
2497
|
-
"IndustryMaintenanceCostCenter",
|
|
2498
|
-
"IndustryMaintenanceEmployee",
|
|
2499
|
-
"IndustryMaintenanceEnergyBalance",
|
|
2500
|
-
"IndustryMaintenanceJournalEntry",
|
|
2501
|
-
"IndustryMaintenanceOrder",
|
|
2502
|
-
"IndustryMaintenanceOrderCosts",
|
|
2503
|
-
"IndustryMaintenanceOrderFeedback",
|
|
2504
|
-
"IndustryMaintenanceWorkplace",
|
|
2505
|
-
"IndustryManufacturingPartialFeedback",
|
|
2506
|
-
"IndustryManufacturingProductionOrder",
|
|
2507
|
-
"IndustryManufacturingProductionOrderItem",
|
|
2508
|
-
"IndustryManufacturingShift",
|
|
2509
|
-
"IndustryManufacturingShiftMachine",
|
|
2510
|
-
"IndustryManufacturingShiftOrderItem",
|
|
2511
|
-
"IndustryManufacturingShiftTemplate",
|
|
2512
1637
|
"OctoSdkDemoCustomer",
|
|
2513
1638
|
"OctoSdkDemoMeteringPoint",
|
|
2514
1639
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -2524,6 +1649,7 @@ const result = {
|
|
|
2524
1649
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
2525
1650
|
"SystemCommunicationFinApiConfiguration",
|
|
2526
1651
|
"SystemCommunicationGrafanaConfiguration",
|
|
1652
|
+
"SystemCommunicationLoxoneConfiguration",
|
|
2527
1653
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
2528
1654
|
"SystemCommunicationPipeline",
|
|
2529
1655
|
"SystemCommunicationPipelineExecution",
|
|
@@ -2559,7 +1685,6 @@ const result = {
|
|
|
2559
1685
|
"SystemNotificationEvent",
|
|
2560
1686
|
"SystemNotificationNotificationTemplate",
|
|
2561
1687
|
"SystemNotificationStatefulEvent",
|
|
2562
|
-
"SystemQuery",
|
|
2563
1688
|
"SystemReportingConnectionInfo",
|
|
2564
1689
|
"SystemReportingFileSystemItem",
|
|
2565
1690
|
"SystemReportingFolder",
|
|
@@ -4352,6 +3477,44 @@ class CommunicationService {
|
|
|
4352
3477
|
return null;
|
|
4353
3478
|
}
|
|
4354
3479
|
// ============================================================================
|
|
3480
|
+
// Node Descriptors
|
|
3481
|
+
// ============================================================================
|
|
3482
|
+
/**
|
|
3483
|
+
* Gets all node descriptors from all connected adapters.
|
|
3484
|
+
* Each descriptor contains the node name, version, category, and configuration schema.
|
|
3485
|
+
*/
|
|
3486
|
+
async getNodeDescriptors(tenantId) {
|
|
3487
|
+
if (this.communicationServicesUrl) {
|
|
3488
|
+
const uri = `${this.communicationServicesUrl}${tenantId}/v1/adapter/nodes`;
|
|
3489
|
+
try {
|
|
3490
|
+
return await firstValueFrom(this.httpClient.get(uri));
|
|
3491
|
+
}
|
|
3492
|
+
catch {
|
|
3493
|
+
return [];
|
|
3494
|
+
}
|
|
3495
|
+
}
|
|
3496
|
+
return [];
|
|
3497
|
+
}
|
|
3498
|
+
// ============================================================================
|
|
3499
|
+
// Pipeline Definition Parsing
|
|
3500
|
+
// ============================================================================
|
|
3501
|
+
/**
|
|
3502
|
+
* Parses a YAML pipeline definition on the backend and returns the properties
|
|
3503
|
+
* of a specific node instance identified by type and occurrence index.
|
|
3504
|
+
*/
|
|
3505
|
+
async parseNodeProperties(tenantId, definition, nodeType, nodeIndex) {
|
|
3506
|
+
if (this.communicationServicesUrl) {
|
|
3507
|
+
const uri = `${this.communicationServicesUrl}${tenantId}/v1/pipelineDefinition/parse-node`;
|
|
3508
|
+
try {
|
|
3509
|
+
return await firstValueFrom(this.httpClient.post(uri, { definition, nodeType, nodeIndex }));
|
|
3510
|
+
}
|
|
3511
|
+
catch {
|
|
3512
|
+
return null;
|
|
3513
|
+
}
|
|
3514
|
+
}
|
|
3515
|
+
return null;
|
|
3516
|
+
}
|
|
3517
|
+
// ============================================================================
|
|
4355
3518
|
// Pipeline Schema
|
|
4356
3519
|
// ============================================================================
|
|
4357
3520
|
/**
|
|
@@ -5078,5 +4241,5 @@ function provideOctoServices(octoServiceOptions) {
|
|
|
5078
4241
|
* Generated bundle index. Do not edit.
|
|
5079
4242
|
*/
|
|
5080
4243
|
|
|
5081
|
-
export { AggregationInputTypesDto, AggregationTypeDto, AggregationTypesDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto,
|
|
4244
|
+
export { AggregationInputTypesDto, AggregationTypeDto, AggregationTypesDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto, BasicLegalEntityTypeDto, BasicSalutationDto, BasicTypeOfTelephoneBasicDto, BasicTypeOfTelephoneEnhancedDto, BasicUnitOfMeasureDto, BotService, CONFIGURATION_SERVICE, CkExtensionUpdateOperationsDto, CkModelCatalogService, CkModelService, CkTypeAttributeService, CkTypeMetaData, CkTypeSelectorService, CommunicationService, DeleteStrategiesDto, DeploymentState, FieldFilterOperatorsDto, GetCkModelByIdDocumentDto, GetCkModelByIdDtoGQL, GetCkRecordAttributesDocumentDto, GetCkRecordAttributesDtoGQL, GetCkTypeAttributesDocumentDto, GetCkTypeAttributesDtoGQL, GetCkTypeAvailableQueryColumnsDocumentDto, GetCkTypeAvailableQueryColumnsDtoGQL, GetCkTypesDocumentDto, GetCkTypesDtoGQL, GetDerivedCkTypesDocumentDto, GetDerivedCkTypesDtoGQL, GetEntitiesByCkTypeDocumentDto, GetEntitiesByCkTypeDtoGQL, GraphDirectionDto, GraphQL, GraphQLCloneIgnoredProperties, GraphQLCommonIgnoredProperties, GraphQlDataSource, HealthService, HealthStatus, IDENTITY_PROVIDER_TYPE_LABELS, IdentityProviderType, IdentityService, ImportStrategyDto, IndustryBasicAlarmPriorityDto, IndustryBasicAlarmSourceTypeDto, IndustryBasicAlarmStateDto, IndustryBasicAlarmTypeDto, IndustryBasicIecDataTypeDto, IndustryBasicMachineCapabilitiesDto, IndustryBasicMachineStateDto, IndustryEnergyDemandResponseMarketDto, IndustryEnergyDemandResponseStatusDto, IndustryEnergyTariffTypeDto, JobManagementService, LevelMetaData, LoggerSeverity, ModelStateDto, MultiplicitiesDto, NavigationFilterModeDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, QueryModeDto, RtAssociationMetaData, RuntimeEntityDialogDataSource, RuntimeEntitySelectDataSource, SearchFilterTypesDto, SortOrderDto, SortOrdersDto, SystemAggregationTypesDto, SystemCommunicationCommunicationStateDto, SystemCommunicationConfigurationStateDto, SystemCommunicationDeploymentStateDto, SystemCommunicationPipelineExecutionStatusDto, SystemCommunicationPipelineTriggerTypeDto, SystemEnvironmentModesDto, SystemFieldFilterOperatorDto, SystemIdentityTokenExpirationDto, SystemIdentityTokenTypeDto, SystemIdentityTokenUsageDto, SystemMaintenanceLevelsDto, SystemNavigationFilterModesDto, SystemNotificationEventLevelsDto, SystemNotificationEventSourcesDto, SystemNotificationEventStatesDto, SystemNotificationNotificationTypesDto, SystemNotificationRenderingTypesDto, SystemQueryTypesDto, SystemSortOrdersDto, TENANT_ID_PROVIDER, TusUploadService, UpdateTypeDto, result as possibleTypes, provideOctoServices };
|
|
5082
4245
|
//# sourceMappingURL=meshmakers-octo-services.mjs.map
|