@meshmakers/octo-services 3.3.950 → 3.3.960
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.
|
@@ -292,6 +292,14 @@ var AggregationTypesDto;
|
|
|
292
292
|
AggregationTypesDto["NoneDto"] = "NONE";
|
|
293
293
|
AggregationTypesDto["SumDto"] = "SUM";
|
|
294
294
|
})(AggregationTypesDto || (AggregationTypesDto = {}));
|
|
295
|
+
/** Backend-agnostic health classification: Unknown / Good / Warning / Critical. */
|
|
296
|
+
var ArchiveStorageHealthDto;
|
|
297
|
+
(function (ArchiveStorageHealthDto) {
|
|
298
|
+
ArchiveStorageHealthDto["CriticalDto"] = "CRITICAL";
|
|
299
|
+
ArchiveStorageHealthDto["GoodDto"] = "GOOD";
|
|
300
|
+
ArchiveStorageHealthDto["UnknownDto"] = "UNKNOWN";
|
|
301
|
+
ArchiveStorageHealthDto["WarningDto"] = "WARNING";
|
|
302
|
+
})(ArchiveStorageHealthDto || (ArchiveStorageHealthDto = {}));
|
|
295
303
|
/** Defines the type of modification during write operations */
|
|
296
304
|
var AssociationModOptionsDto;
|
|
297
305
|
(function (AssociationModOptionsDto) {
|
|
@@ -379,12 +387,91 @@ var CkExtensionUpdateOperationsDto;
|
|
|
379
387
|
CkExtensionUpdateOperationsDto["DeleteDto"] = "DELETE";
|
|
380
388
|
CkExtensionUpdateOperationsDto["InsertDto"] = "INSERT";
|
|
381
389
|
})(CkExtensionUpdateOperationsDto || (CkExtensionUpdateOperationsDto = {}));
|
|
390
|
+
/** Aggregation function for a rollup. AVG is stored as two columns (sum + count) so chained rollups stay numerically correct. */
|
|
391
|
+
var CkRollupFunctionDto;
|
|
392
|
+
(function (CkRollupFunctionDto) {
|
|
393
|
+
CkRollupFunctionDto["AvgDto"] = "AVG";
|
|
394
|
+
CkRollupFunctionDto["CountDto"] = "COUNT";
|
|
395
|
+
CkRollupFunctionDto["MaxDto"] = "MAX";
|
|
396
|
+
CkRollupFunctionDto["MinDto"] = "MIN";
|
|
397
|
+
CkRollupFunctionDto["SumDto"] = "SUM";
|
|
398
|
+
})(CkRollupFunctionDto || (CkRollupFunctionDto = {}));
|
|
382
399
|
/** Defines possible delete strategies of a runtime type */
|
|
383
400
|
var DeleteStrategiesDto;
|
|
384
401
|
(function (DeleteStrategiesDto) {
|
|
385
402
|
DeleteStrategiesDto["ArchiveDto"] = "ARCHIVE";
|
|
386
403
|
DeleteStrategiesDto["EraseDto"] = "ERASE";
|
|
387
404
|
})(DeleteStrategiesDto || (DeleteStrategiesDto = {}));
|
|
405
|
+
/** Runtime entities of construction kit enum 'EnergyIQ/DayOfWeek' */
|
|
406
|
+
var EnergyIqDayOfWeekDto;
|
|
407
|
+
(function (EnergyIqDayOfWeekDto) {
|
|
408
|
+
EnergyIqDayOfWeekDto["FridayDto"] = "FRIDAY";
|
|
409
|
+
EnergyIqDayOfWeekDto["MondayDto"] = "MONDAY";
|
|
410
|
+
EnergyIqDayOfWeekDto["SaturdayDto"] = "SATURDAY";
|
|
411
|
+
EnergyIqDayOfWeekDto["SundayDto"] = "SUNDAY";
|
|
412
|
+
EnergyIqDayOfWeekDto["ThursdayDto"] = "THURSDAY";
|
|
413
|
+
EnergyIqDayOfWeekDto["TuesdayDto"] = "TUESDAY";
|
|
414
|
+
EnergyIqDayOfWeekDto["WednesdayDto"] = "WEDNESDAY";
|
|
415
|
+
})(EnergyIqDayOfWeekDto || (EnergyIqDayOfWeekDto = {}));
|
|
416
|
+
/** Runtime entities of construction kit enum 'EnergyIQ/LuminaireType' */
|
|
417
|
+
var EnergyIqLuminaireTypeDto;
|
|
418
|
+
(function (EnergyIqLuminaireTypeDto) {
|
|
419
|
+
EnergyIqLuminaireTypeDto["CeilingDto"] = "CEILING";
|
|
420
|
+
EnergyIqLuminaireTypeDto["DeskDto"] = "DESK";
|
|
421
|
+
EnergyIqLuminaireTypeDto["EmergencyDto"] = "EMERGENCY";
|
|
422
|
+
EnergyIqLuminaireTypeDto["FloorDto"] = "FLOOR";
|
|
423
|
+
EnergyIqLuminaireTypeDto["PendantDto"] = "PENDANT";
|
|
424
|
+
EnergyIqLuminaireTypeDto["RecessedDto"] = "RECESSED";
|
|
425
|
+
EnergyIqLuminaireTypeDto["WallDto"] = "WALL";
|
|
426
|
+
})(EnergyIqLuminaireTypeDto || (EnergyIqLuminaireTypeDto = {}));
|
|
427
|
+
/** Runtime entities of construction kit enum 'EnergyIQ/OperatingMode' */
|
|
428
|
+
var EnergyIqOperatingModeDto;
|
|
429
|
+
(function (EnergyIqOperatingModeDto) {
|
|
430
|
+
EnergyIqOperatingModeDto["AutoDto"] = "AUTO";
|
|
431
|
+
EnergyIqOperatingModeDto["ComfortDto"] = "COMFORT";
|
|
432
|
+
EnergyIqOperatingModeDto["EconomyDto"] = "ECONOMY";
|
|
433
|
+
EnergyIqOperatingModeDto["OffDto"] = "OFF";
|
|
434
|
+
EnergyIqOperatingModeDto["ProtectionDto"] = "PROTECTION";
|
|
435
|
+
EnergyIqOperatingModeDto["StandbyDto"] = "STANDBY";
|
|
436
|
+
})(EnergyIqOperatingModeDto || (EnergyIqOperatingModeDto = {}));
|
|
437
|
+
/** Runtime entities of construction kit enum 'EnergyIQ/ShadingType' */
|
|
438
|
+
var EnergyIqShadingTypeDto;
|
|
439
|
+
(function (EnergyIqShadingTypeDto) {
|
|
440
|
+
EnergyIqShadingTypeDto["AwningDto"] = "AWNING";
|
|
441
|
+
EnergyIqShadingTypeDto["BlindDto"] = "BLIND";
|
|
442
|
+
EnergyIqShadingTypeDto["CurtainDto"] = "CURTAIN";
|
|
443
|
+
EnergyIqShadingTypeDto["ScreenDto"] = "SCREEN";
|
|
444
|
+
EnergyIqShadingTypeDto["ShutterDto"] = "SHUTTER";
|
|
445
|
+
})(EnergyIqShadingTypeDto || (EnergyIqShadingTypeDto = {}));
|
|
446
|
+
/** Runtime entities of construction kit enum 'EnergyIQ/SpaceType' */
|
|
447
|
+
var EnergyIqSpaceTypeDto;
|
|
448
|
+
(function (EnergyIqSpaceTypeDto) {
|
|
449
|
+
EnergyIqSpaceTypeDto["CorridorDto"] = "CORRIDOR";
|
|
450
|
+
EnergyIqSpaceTypeDto["ElevatorDto"] = "ELEVATOR";
|
|
451
|
+
EnergyIqSpaceTypeDto["KitchenDto"] = "KITCHEN";
|
|
452
|
+
EnergyIqSpaceTypeDto["LaboratoryDto"] = "LABORATORY";
|
|
453
|
+
EnergyIqSpaceTypeDto["LobbyDto"] = "LOBBY";
|
|
454
|
+
EnergyIqSpaceTypeDto["MeetingRoomDto"] = "MEETING_ROOM";
|
|
455
|
+
EnergyIqSpaceTypeDto["OfficeDto"] = "OFFICE";
|
|
456
|
+
EnergyIqSpaceTypeDto["OtherDto"] = "OTHER";
|
|
457
|
+
EnergyIqSpaceTypeDto["ParkingDto"] = "PARKING";
|
|
458
|
+
EnergyIqSpaceTypeDto["ServerRoomDto"] = "SERVER_ROOM";
|
|
459
|
+
EnergyIqSpaceTypeDto["StaircaseDto"] = "STAIRCASE";
|
|
460
|
+
EnergyIqSpaceTypeDto["StorageDto"] = "STORAGE";
|
|
461
|
+
EnergyIqSpaceTypeDto["TechnicalRoomDto"] = "TECHNICAL_ROOM";
|
|
462
|
+
EnergyIqSpaceTypeDto["ToiletDto"] = "TOILET";
|
|
463
|
+
EnergyIqSpaceTypeDto["WorkshopDto"] = "WORKSHOP";
|
|
464
|
+
})(EnergyIqSpaceTypeDto || (EnergyIqSpaceTypeDto = {}));
|
|
465
|
+
/** Runtime entities of construction kit enum 'EnergyIQ/SystemType' */
|
|
466
|
+
var EnergyIqSystemTypeDto;
|
|
467
|
+
(function (EnergyIqSystemTypeDto) {
|
|
468
|
+
EnergyIqSystemTypeDto["CombinedDto"] = "COMBINED";
|
|
469
|
+
EnergyIqSystemTypeDto["CoolingDto"] = "COOLING";
|
|
470
|
+
EnergyIqSystemTypeDto["HeatingDto"] = "HEATING";
|
|
471
|
+
EnergyIqSystemTypeDto["LightingDto"] = "LIGHTING";
|
|
472
|
+
EnergyIqSystemTypeDto["ShadingDto"] = "SHADING";
|
|
473
|
+
EnergyIqSystemTypeDto["VentilationDto"] = "VENTILATION";
|
|
474
|
+
})(EnergyIqSystemTypeDto || (EnergyIqSystemTypeDto = {}));
|
|
388
475
|
/** Defines the operator of field compare */
|
|
389
476
|
var FieldFilterOperatorsDto;
|
|
390
477
|
(function (FieldFilterOperatorsDto) {
|
|
@@ -578,55 +665,14 @@ var IndustryEnergyTariffTypeDto;
|
|
|
578
665
|
IndustryEnergyTariffTypeDto["PeakDto"] = "PEAK";
|
|
579
666
|
IndustryEnergyTariffTypeDto["StandardDto"] = "STANDARD";
|
|
580
667
|
})(IndustryEnergyTariffTypeDto || (IndustryEnergyTariffTypeDto = {}));
|
|
581
|
-
/** Runtime entities of construction kit enum '
|
|
582
|
-
var
|
|
583
|
-
(function (
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
var IndustryMaintenanceCostCategoryDto;
|
|
590
|
-
(function (IndustryMaintenanceCostCategoryDto) {
|
|
591
|
-
IndustryMaintenanceCostCategoryDto["ExternalDto"] = "EXTERNAL";
|
|
592
|
-
IndustryMaintenanceCostCategoryDto["InternalDto"] = "INTERNAL";
|
|
593
|
-
IndustryMaintenanceCostCategoryDto["MaterialDto"] = "MATERIAL";
|
|
594
|
-
})(IndustryMaintenanceCostCategoryDto || (IndustryMaintenanceCostCategoryDto = {}));
|
|
595
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceGroup' */
|
|
596
|
-
var IndustryMaintenanceEnergyBalanceGroupDto;
|
|
597
|
-
(function (IndustryMaintenanceEnergyBalanceGroupDto) {
|
|
598
|
-
IndustryMaintenanceEnergyBalanceGroupDto["UndefinedDto"] = "UNDEFINED";
|
|
599
|
-
})(IndustryMaintenanceEnergyBalanceGroupDto || (IndustryMaintenanceEnergyBalanceGroupDto = {}));
|
|
600
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceProduct' */
|
|
601
|
-
var IndustryMaintenanceEnergyBalanceProductDto;
|
|
602
|
-
(function (IndustryMaintenanceEnergyBalanceProductDto) {
|
|
603
|
-
IndustryMaintenanceEnergyBalanceProductDto["UndefinedDto"] = "UNDEFINED";
|
|
604
|
-
})(IndustryMaintenanceEnergyBalanceProductDto || (IndustryMaintenanceEnergyBalanceProductDto = {}));
|
|
605
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceUnit' */
|
|
606
|
-
var IndustryMaintenanceEnergyBalanceUnitDto;
|
|
607
|
-
(function (IndustryMaintenanceEnergyBalanceUnitDto) {
|
|
608
|
-
IndustryMaintenanceEnergyBalanceUnitDto["UndefinedDto"] = "UNDEFINED";
|
|
609
|
-
})(IndustryMaintenanceEnergyBalanceUnitDto || (IndustryMaintenanceEnergyBalanceUnitDto = {}));
|
|
610
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/OrderPriority' */
|
|
611
|
-
var IndustryMaintenanceOrderPriorityDto;
|
|
612
|
-
(function (IndustryMaintenanceOrderPriorityDto) {
|
|
613
|
-
IndustryMaintenanceOrderPriorityDto["UndefinedDto"] = "UNDEFINED";
|
|
614
|
-
})(IndustryMaintenanceOrderPriorityDto || (IndustryMaintenanceOrderPriorityDto = {}));
|
|
615
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/OrderState' */
|
|
616
|
-
var IndustryMaintenanceOrderStateDto;
|
|
617
|
-
(function (IndustryMaintenanceOrderStateDto) {
|
|
618
|
-
IndustryMaintenanceOrderStateDto["UndefinedDto"] = "UNDEFINED";
|
|
619
|
-
})(IndustryMaintenanceOrderStateDto || (IndustryMaintenanceOrderStateDto = {}));
|
|
620
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/OrderType' */
|
|
621
|
-
var IndustryMaintenanceOrderTypeDto;
|
|
622
|
-
(function (IndustryMaintenanceOrderTypeDto) {
|
|
623
|
-
IndustryMaintenanceOrderTypeDto["UndefinedDto"] = "UNDEFINED";
|
|
624
|
-
})(IndustryMaintenanceOrderTypeDto || (IndustryMaintenanceOrderTypeDto = {}));
|
|
625
|
-
/** Runtime entities of construction kit enum 'Industry.Maintenance/ServiceType' */
|
|
626
|
-
var IndustryMaintenanceServiceTypeDto;
|
|
627
|
-
(function (IndustryMaintenanceServiceTypeDto) {
|
|
628
|
-
IndustryMaintenanceServiceTypeDto["UndefinedDto"] = "UNDEFINED";
|
|
629
|
-
})(IndustryMaintenanceServiceTypeDto || (IndustryMaintenanceServiceTypeDto = {}));
|
|
668
|
+
/** Runtime entities of construction kit enum 'Loxone/ConnectionState' */
|
|
669
|
+
var LoxoneConnectionStateDto;
|
|
670
|
+
(function (LoxoneConnectionStateDto) {
|
|
671
|
+
LoxoneConnectionStateDto["ConnectedDto"] = "CONNECTED";
|
|
672
|
+
LoxoneConnectionStateDto["DisconnectedDto"] = "DISCONNECTED";
|
|
673
|
+
LoxoneConnectionStateDto["ErrorDto"] = "ERROR";
|
|
674
|
+
LoxoneConnectionStateDto["ReconnectingDto"] = "RECONNECTING";
|
|
675
|
+
})(LoxoneConnectionStateDto || (LoxoneConnectionStateDto = {}));
|
|
630
676
|
/** Enum of the availability states of models. */
|
|
631
677
|
var ModelStateDto;
|
|
632
678
|
(function (ModelStateDto) {
|
|
@@ -680,12 +726,6 @@ var SearchFilterTypesDto;
|
|
|
680
726
|
SearchFilterTypesDto["TextSearchDto"] = "TEXT_SEARCH";
|
|
681
727
|
})(SearchFilterTypesDto || (SearchFilterTypesDto = {}));
|
|
682
728
|
/** Defines the sort order */
|
|
683
|
-
var SortOrderDto;
|
|
684
|
-
(function (SortOrderDto) {
|
|
685
|
-
SortOrderDto["AscendingDto"] = "ASCENDING";
|
|
686
|
-
SortOrderDto["DescendingDto"] = "DESCENDING";
|
|
687
|
-
})(SortOrderDto || (SortOrderDto = {}));
|
|
688
|
-
/** Defines the sort order */
|
|
689
729
|
var SortOrdersDto;
|
|
690
730
|
(function (SortOrdersDto) {
|
|
691
731
|
SortOrdersDto["AscendingDto"] = "ASCENDING";
|
|
@@ -729,6 +769,18 @@ var SystemCommunicationDeploymentStateDto;
|
|
|
729
769
|
SystemCommunicationDeploymentStateDto["PendingDto"] = "PENDING";
|
|
730
770
|
SystemCommunicationDeploymentStateDto["UndeployedDto"] = "UNDEPLOYED";
|
|
731
771
|
})(SystemCommunicationDeploymentStateDto || (SystemCommunicationDeploymentStateDto = {}));
|
|
772
|
+
/** Runtime entities of construction kit enum 'System.Communication/Environment' */
|
|
773
|
+
var SystemCommunicationEnvironmentDto;
|
|
774
|
+
(function (SystemCommunicationEnvironmentDto) {
|
|
775
|
+
SystemCommunicationEnvironmentDto["CloudDto"] = "CLOUD";
|
|
776
|
+
SystemCommunicationEnvironmentDto["EdgeDto"] = "EDGE";
|
|
777
|
+
})(SystemCommunicationEnvironmentDto || (SystemCommunicationEnvironmentDto = {}));
|
|
778
|
+
/** Runtime entities of construction kit enum 'System.Communication/HelmChannel' */
|
|
779
|
+
var SystemCommunicationHelmChannelDto;
|
|
780
|
+
(function (SystemCommunicationHelmChannelDto) {
|
|
781
|
+
SystemCommunicationHelmChannelDto["DevDto"] = "DEV";
|
|
782
|
+
SystemCommunicationHelmChannelDto["ReleaseDto"] = "RELEASE";
|
|
783
|
+
})(SystemCommunicationHelmChannelDto || (SystemCommunicationHelmChannelDto = {}));
|
|
732
784
|
/** Runtime entities of construction kit enum 'System.Communication/PipelineExecutionStatus' */
|
|
733
785
|
var SystemCommunicationPipelineExecutionStatusDto;
|
|
734
786
|
(function (SystemCommunicationPipelineExecutionStatusDto) {
|
|
@@ -894,6 +946,46 @@ var SystemSortOrdersDto;
|
|
|
894
946
|
/** Descending order */
|
|
895
947
|
SystemSortOrdersDto["DescendingDto"] = "DESCENDING";
|
|
896
948
|
})(SystemSortOrdersDto || (SystemSortOrdersDto = {}));
|
|
949
|
+
/** Runtime entities of construction kit enum 'System.StreamData/BucketAlignment' */
|
|
950
|
+
var SystemStreamDataBucketAlignmentDto;
|
|
951
|
+
(function (SystemStreamDataBucketAlignmentDto) {
|
|
952
|
+
/** Bucket boundaries align to UTC calendar days (00:00:00 UTC). BucketSizeMs is informational only. */
|
|
953
|
+
SystemStreamDataBucketAlignmentDto["CalendarDayDto"] = "CALENDAR_DAY";
|
|
954
|
+
/** Bucket boundaries align to UTC calendar months (first day of month 00:00:00 UTC). BucketSizeMs is informational only; month lengths vary 28-31 days. */
|
|
955
|
+
SystemStreamDataBucketAlignmentDto["CalendarMonthDto"] = "CALENDAR_MONTH";
|
|
956
|
+
/** Bucket boundaries align to UTC calendar years (Jan 1 00:00:00 UTC). BucketSizeMs is informational only. */
|
|
957
|
+
SystemStreamDataBucketAlignmentDto["CalendarYearDto"] = "CALENDAR_YEAR";
|
|
958
|
+
/** Default. Each bucket spans exactly BucketSizeMs; boundaries are LastAggregatedBucketEnd, LastAggregatedBucketEnd + BucketSizeMs, ... */
|
|
959
|
+
SystemStreamDataBucketAlignmentDto["FixedSizeDto"] = "FIXED_SIZE";
|
|
960
|
+
/** Bucket boundaries align to ISO-8601 weeks (Monday 00:00:00 UTC to next Monday 00:00:00 UTC). BucketSizeMs is informational only. */
|
|
961
|
+
SystemStreamDataBucketAlignmentDto["Iso_8601WeekDto"] = "ISO_8601_WEEK";
|
|
962
|
+
})(SystemStreamDataBucketAlignmentDto || (SystemStreamDataBucketAlignmentDto = {}));
|
|
963
|
+
/** Runtime entities of construction kit enum 'System.StreamData/CkArchiveStatus' */
|
|
964
|
+
var SystemStreamDataCkArchiveStatusDto;
|
|
965
|
+
(function (SystemStreamDataCkArchiveStatusDto) {
|
|
966
|
+
/** Crate table exists, schema is frozen, inserts and queries are accepted. */
|
|
967
|
+
SystemStreamDataCkArchiveStatusDto["ActivatedDto"] = "ACTIVATED";
|
|
968
|
+
/** Archive definition exists, but no Crate table has been provisioned. Inserts and queries are rejected. */
|
|
969
|
+
SystemStreamDataCkArchiveStatusDto["CreatedDto"] = "CREATED";
|
|
970
|
+
/** Crate table exists, but inserts and queries are rejected. Data is preserved. */
|
|
971
|
+
SystemStreamDataCkArchiveStatusDto["DisabledDto"] = "DISABLED";
|
|
972
|
+
/** Activation failed; manual retry required. Inserts and queries are rejected. */
|
|
973
|
+
SystemStreamDataCkArchiveStatusDto["FailedDto"] = "FAILED";
|
|
974
|
+
})(SystemStreamDataCkArchiveStatusDto || (SystemStreamDataCkArchiveStatusDto = {}));
|
|
975
|
+
/** Runtime entities of construction kit enum 'System.StreamData/CkRollupFunction' */
|
|
976
|
+
var SystemStreamDataCkRollupFunctionDto;
|
|
977
|
+
(function (SystemStreamDataCkRollupFunctionDto) {
|
|
978
|
+
/** Arithmetic mean. Stored as sum and count columns; the average is computed on read. */
|
|
979
|
+
SystemStreamDataCkRollupFunctionDto["AvgDto"] = "AVG";
|
|
980
|
+
/** Number of non-null values in the bucket. */
|
|
981
|
+
SystemStreamDataCkRollupFunctionDto["CountDto"] = "COUNT";
|
|
982
|
+
/** Maximum value in the bucket. */
|
|
983
|
+
SystemStreamDataCkRollupFunctionDto["MaxDto"] = "MAX";
|
|
984
|
+
/** Minimum value in the bucket. */
|
|
985
|
+
SystemStreamDataCkRollupFunctionDto["MinDto"] = "MIN";
|
|
986
|
+
/** Sum of values in the bucket. */
|
|
987
|
+
SystemStreamDataCkRollupFunctionDto["SumDto"] = "SUM";
|
|
988
|
+
})(SystemStreamDataCkRollupFunctionDto || (SystemStreamDataCkRollupFunctionDto = {}));
|
|
897
989
|
/** Enum of valid update types */
|
|
898
990
|
var UpdateTypeDto;
|
|
899
991
|
(function (UpdateTypeDto) {
|
|
@@ -916,11 +1008,6 @@ const result = {
|
|
|
916
1008
|
"IndustryEnergyPhotovoltaicSystem",
|
|
917
1009
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
918
1010
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
919
|
-
"IndustryFluidHeatMeter",
|
|
920
|
-
"IndustryFluidWaterMeter",
|
|
921
|
-
"IndustryMaintenanceCostCenter",
|
|
922
|
-
"IndustryMaintenanceEmployee",
|
|
923
|
-
"IndustryMaintenanceWorkplace",
|
|
924
1011
|
"OctoSdkDemoMeteringPoint"
|
|
925
1012
|
],
|
|
926
1013
|
"BasicAsset_RelatesFromUnion": [
|
|
@@ -932,6 +1019,23 @@ const result = {
|
|
|
932
1019
|
"BasicState",
|
|
933
1020
|
"BasicTree",
|
|
934
1021
|
"BasicTreeNode",
|
|
1022
|
+
"EnergyIQAirHandlingUnit",
|
|
1023
|
+
"EnergyIQBatteryStorage",
|
|
1024
|
+
"EnergyIQBoiler",
|
|
1025
|
+
"EnergyIQBuilding",
|
|
1026
|
+
"EnergyIQBuildingStorey",
|
|
1027
|
+
"EnergyIQChiller",
|
|
1028
|
+
"EnergyIQDoor",
|
|
1029
|
+
"EnergyIQInverter",
|
|
1030
|
+
"EnergyIQLuminaire",
|
|
1031
|
+
"EnergyIQPVString",
|
|
1032
|
+
"EnergyIQPhotovoltaicSystem",
|
|
1033
|
+
"EnergyIQPump",
|
|
1034
|
+
"EnergyIQShadingDevice",
|
|
1035
|
+
"EnergyIQSite",
|
|
1036
|
+
"EnergyIQSpace",
|
|
1037
|
+
"EnergyIQWall",
|
|
1038
|
+
"EnergyIQWindow",
|
|
935
1039
|
"IndustryBasicAlarm",
|
|
936
1040
|
"IndustryBasicEvent",
|
|
937
1041
|
"IndustryBasicMachine",
|
|
@@ -947,17 +1051,11 @@ const result = {
|
|
|
947
1051
|
"IndustryEnergyPhotovoltaicSystem",
|
|
948
1052
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
949
1053
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
950
|
-
"
|
|
951
|
-
"
|
|
952
|
-
"
|
|
953
|
-
"
|
|
954
|
-
"
|
|
955
|
-
"IndustryMaintenanceEnergyBalance",
|
|
956
|
-
"IndustryMaintenanceJournalEntry",
|
|
957
|
-
"IndustryMaintenanceOrder",
|
|
958
|
-
"IndustryMaintenanceOrderCosts",
|
|
959
|
-
"IndustryMaintenanceOrderFeedback",
|
|
960
|
-
"IndustryMaintenanceWorkplace",
|
|
1054
|
+
"LoxoneCategory",
|
|
1055
|
+
"LoxoneControl",
|
|
1056
|
+
"LoxoneMiniserver",
|
|
1057
|
+
"LoxoneRoom",
|
|
1058
|
+
"LoxoneSubControl",
|
|
961
1059
|
"OctoSdkDemoCustomer",
|
|
962
1060
|
"OctoSdkDemoMeteringPoint",
|
|
963
1061
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -968,6 +1066,7 @@ const result = {
|
|
|
968
1066
|
"SystemBotFixup",
|
|
969
1067
|
"SystemCommunicationAdapter",
|
|
970
1068
|
"SystemCommunicationAiConfiguration",
|
|
1069
|
+
"SystemCommunicationApplication",
|
|
971
1070
|
"SystemCommunicationDataFlow",
|
|
972
1071
|
"SystemCommunicationDataPointMapping",
|
|
973
1072
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -977,6 +1076,7 @@ const result = {
|
|
|
977
1076
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
978
1077
|
"SystemCommunicationFinApiConfiguration",
|
|
979
1078
|
"SystemCommunicationGrafanaConfiguration",
|
|
1079
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
980
1080
|
"SystemCommunicationLoxoneConfiguration",
|
|
981
1081
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
982
1082
|
"SystemCommunicationPipeline",
|
|
@@ -1022,6 +1122,9 @@ const result = {
|
|
|
1022
1122
|
"SystemReportingFolderRoot",
|
|
1023
1123
|
"SystemSimpleRtQuery",
|
|
1024
1124
|
"SystemSimpleSdQuery",
|
|
1125
|
+
"SystemStreamDataRawArchive",
|
|
1126
|
+
"SystemStreamDataRollupArchive",
|
|
1127
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1025
1128
|
"SystemTenant",
|
|
1026
1129
|
"SystemTenantConfiguration",
|
|
1027
1130
|
"SystemTenantModeConfiguration",
|
|
@@ -1035,11 +1138,19 @@ const result = {
|
|
|
1035
1138
|
"BasicDocumentInterface": [],
|
|
1036
1139
|
"BasicNamedEntityInterface": [
|
|
1037
1140
|
"BasicTree",
|
|
1141
|
+
"EnergyIQBuildingElement",
|
|
1142
|
+
"EnergyIQDoor",
|
|
1143
|
+
"EnergyIQLuminaire",
|
|
1144
|
+
"EnergyIQShadingDevice",
|
|
1145
|
+
"EnergyIQSite",
|
|
1146
|
+
"EnergyIQWall",
|
|
1147
|
+
"EnergyIQWindow",
|
|
1038
1148
|
"IndustryBasicAlarm",
|
|
1039
1149
|
"IndustryBasicEvent",
|
|
1040
1150
|
"IndustryBasicRuntimeVariable",
|
|
1041
1151
|
"IndustryEnergyDemandResponseEvent",
|
|
1042
|
-
"IndustryEnergyEnergyPerformanceIndicator"
|
|
1152
|
+
"IndustryEnergyEnergyPerformanceIndicator",
|
|
1153
|
+
"LoxoneMiniserver"
|
|
1043
1154
|
],
|
|
1044
1155
|
"BasicTreeNode_ChildrenUnion": [
|
|
1045
1156
|
"BasicAsset",
|
|
@@ -1048,6 +1159,17 @@ const result = {
|
|
|
1048
1159
|
"BasicDistrict",
|
|
1049
1160
|
"BasicState",
|
|
1050
1161
|
"BasicTreeNode",
|
|
1162
|
+
"EnergyIQAirHandlingUnit",
|
|
1163
|
+
"EnergyIQBatteryStorage",
|
|
1164
|
+
"EnergyIQBoiler",
|
|
1165
|
+
"EnergyIQBuilding",
|
|
1166
|
+
"EnergyIQBuildingStorey",
|
|
1167
|
+
"EnergyIQChiller",
|
|
1168
|
+
"EnergyIQInverter",
|
|
1169
|
+
"EnergyIQPVString",
|
|
1170
|
+
"EnergyIQPhotovoltaicSystem",
|
|
1171
|
+
"EnergyIQPump",
|
|
1172
|
+
"EnergyIQSpace",
|
|
1051
1173
|
"IndustryBasicMachine",
|
|
1052
1174
|
"IndustryEnergyDemandResponseEvent",
|
|
1053
1175
|
"IndustryEnergyEnergyConsumer",
|
|
@@ -1060,34 +1182,10 @@ const result = {
|
|
|
1060
1182
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1061
1183
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1062
1184
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1063
|
-
"
|
|
1064
|
-
"
|
|
1065
|
-
"
|
|
1066
|
-
"
|
|
1067
|
-
"IndustryMaintenanceWorkplace",
|
|
1068
|
-
"OctoSdkDemoMeteringPoint",
|
|
1069
|
-
"OctoSdkDemoOperatingFacility"
|
|
1070
|
-
],
|
|
1071
|
-
"BasicTreeNode_MachineUnion": [
|
|
1072
|
-
"BasicAsset",
|
|
1073
|
-
"BasicCity",
|
|
1074
|
-
"BasicCountry",
|
|
1075
|
-
"BasicDistrict",
|
|
1076
|
-
"BasicState",
|
|
1077
|
-
"BasicTreeNode",
|
|
1078
|
-
"IndustryBasicMachine",
|
|
1079
|
-
"IndustryEnergyEnergyConsumer",
|
|
1080
|
-
"IndustryEnergyEnergyMeter",
|
|
1081
|
-
"IndustryEnergyEnergyStorage",
|
|
1082
|
-
"IndustryEnergyInverter",
|
|
1083
|
-
"IndustryEnergyPhotovoltaicSystem",
|
|
1084
|
-
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1085
|
-
"IndustryEnergyPhotovoltaicSystemString",
|
|
1086
|
-
"IndustryFluidHeatMeter",
|
|
1087
|
-
"IndustryFluidWaterMeter",
|
|
1088
|
-
"IndustryMaintenanceCostCenter",
|
|
1089
|
-
"IndustryMaintenanceEmployee",
|
|
1090
|
-
"IndustryMaintenanceWorkplace",
|
|
1185
|
+
"LoxoneCategory",
|
|
1186
|
+
"LoxoneControl",
|
|
1187
|
+
"LoxoneRoom",
|
|
1188
|
+
"LoxoneSubControl",
|
|
1091
1189
|
"OctoSdkDemoMeteringPoint",
|
|
1092
1190
|
"OctoSdkDemoOperatingFacility"
|
|
1093
1191
|
],
|
|
@@ -1098,6 +1196,17 @@ const result = {
|
|
|
1098
1196
|
"BasicDistrict",
|
|
1099
1197
|
"BasicState",
|
|
1100
1198
|
"BasicTreeNode",
|
|
1199
|
+
"EnergyIQAirHandlingUnit",
|
|
1200
|
+
"EnergyIQBatteryStorage",
|
|
1201
|
+
"EnergyIQBoiler",
|
|
1202
|
+
"EnergyIQBuilding",
|
|
1203
|
+
"EnergyIQBuildingStorey",
|
|
1204
|
+
"EnergyIQChiller",
|
|
1205
|
+
"EnergyIQInverter",
|
|
1206
|
+
"EnergyIQPVString",
|
|
1207
|
+
"EnergyIQPhotovoltaicSystem",
|
|
1208
|
+
"EnergyIQPump",
|
|
1209
|
+
"EnergyIQSpace",
|
|
1101
1210
|
"IndustryBasicMachine",
|
|
1102
1211
|
"IndustryEnergyEnergyConsumer",
|
|
1103
1212
|
"IndustryEnergyEnergyMeter",
|
|
@@ -1106,11 +1215,10 @@ const result = {
|
|
|
1106
1215
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1107
1216
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1108
1217
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1109
|
-
"
|
|
1110
|
-
"
|
|
1111
|
-
"
|
|
1112
|
-
"
|
|
1113
|
-
"IndustryMaintenanceWorkplace",
|
|
1218
|
+
"LoxoneCategory",
|
|
1219
|
+
"LoxoneControl",
|
|
1220
|
+
"LoxoneRoom",
|
|
1221
|
+
"LoxoneSubControl",
|
|
1114
1222
|
"OctoSdkDemoMeteringPoint",
|
|
1115
1223
|
"OctoSdkDemoOperatingFacility"
|
|
1116
1224
|
],
|
|
@@ -1123,6 +1231,23 @@ const result = {
|
|
|
1123
1231
|
"BasicState",
|
|
1124
1232
|
"BasicTree",
|
|
1125
1233
|
"BasicTreeNode",
|
|
1234
|
+
"EnergyIQAirHandlingUnit",
|
|
1235
|
+
"EnergyIQBatteryStorage",
|
|
1236
|
+
"EnergyIQBoiler",
|
|
1237
|
+
"EnergyIQBuilding",
|
|
1238
|
+
"EnergyIQBuildingStorey",
|
|
1239
|
+
"EnergyIQChiller",
|
|
1240
|
+
"EnergyIQDoor",
|
|
1241
|
+
"EnergyIQInverter",
|
|
1242
|
+
"EnergyIQLuminaire",
|
|
1243
|
+
"EnergyIQPVString",
|
|
1244
|
+
"EnergyIQPhotovoltaicSystem",
|
|
1245
|
+
"EnergyIQPump",
|
|
1246
|
+
"EnergyIQShadingDevice",
|
|
1247
|
+
"EnergyIQSite",
|
|
1248
|
+
"EnergyIQSpace",
|
|
1249
|
+
"EnergyIQWall",
|
|
1250
|
+
"EnergyIQWindow",
|
|
1126
1251
|
"IndustryBasicAlarm",
|
|
1127
1252
|
"IndustryBasicEvent",
|
|
1128
1253
|
"IndustryBasicMachine",
|
|
@@ -1138,17 +1263,11 @@ const result = {
|
|
|
1138
1263
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1139
1264
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1140
1265
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1141
|
-
"
|
|
1142
|
-
"
|
|
1143
|
-
"
|
|
1144
|
-
"
|
|
1145
|
-
"
|
|
1146
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1147
|
-
"IndustryMaintenanceJournalEntry",
|
|
1148
|
-
"IndustryMaintenanceOrder",
|
|
1149
|
-
"IndustryMaintenanceOrderCosts",
|
|
1150
|
-
"IndustryMaintenanceOrderFeedback",
|
|
1151
|
-
"IndustryMaintenanceWorkplace",
|
|
1266
|
+
"LoxoneCategory",
|
|
1267
|
+
"LoxoneControl",
|
|
1268
|
+
"LoxoneMiniserver",
|
|
1269
|
+
"LoxoneRoom",
|
|
1270
|
+
"LoxoneSubControl",
|
|
1152
1271
|
"OctoSdkDemoCustomer",
|
|
1153
1272
|
"OctoSdkDemoMeteringPoint",
|
|
1154
1273
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -1159,6 +1278,7 @@ const result = {
|
|
|
1159
1278
|
"SystemBotFixup",
|
|
1160
1279
|
"SystemCommunicationAdapter",
|
|
1161
1280
|
"SystemCommunicationAiConfiguration",
|
|
1281
|
+
"SystemCommunicationApplication",
|
|
1162
1282
|
"SystemCommunicationDataFlow",
|
|
1163
1283
|
"SystemCommunicationDataPointMapping",
|
|
1164
1284
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -1168,6 +1288,7 @@ const result = {
|
|
|
1168
1288
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1169
1289
|
"SystemCommunicationFinApiConfiguration",
|
|
1170
1290
|
"SystemCommunicationGrafanaConfiguration",
|
|
1291
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1171
1292
|
"SystemCommunicationLoxoneConfiguration",
|
|
1172
1293
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1173
1294
|
"SystemCommunicationPipeline",
|
|
@@ -1213,6 +1334,9 @@ const result = {
|
|
|
1213
1334
|
"SystemReportingFolderRoot",
|
|
1214
1335
|
"SystemSimpleRtQuery",
|
|
1215
1336
|
"SystemSimpleSdQuery",
|
|
1337
|
+
"SystemStreamDataRawArchive",
|
|
1338
|
+
"SystemStreamDataRollupArchive",
|
|
1339
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1216
1340
|
"SystemTenant",
|
|
1217
1341
|
"SystemTenantConfiguration",
|
|
1218
1342
|
"SystemTenantModeConfiguration",
|
|
@@ -1231,6 +1355,18 @@ const result = {
|
|
|
1231
1355
|
"BasicState",
|
|
1232
1356
|
"BasicTree",
|
|
1233
1357
|
"BasicTreeNode",
|
|
1358
|
+
"EnergyIQAirHandlingUnit",
|
|
1359
|
+
"EnergyIQBatteryStorage",
|
|
1360
|
+
"EnergyIQBoiler",
|
|
1361
|
+
"EnergyIQBuilding",
|
|
1362
|
+
"EnergyIQBuildingStorey",
|
|
1363
|
+
"EnergyIQChiller",
|
|
1364
|
+
"EnergyIQInverter",
|
|
1365
|
+
"EnergyIQPVString",
|
|
1366
|
+
"EnergyIQPhotovoltaicSystem",
|
|
1367
|
+
"EnergyIQPump",
|
|
1368
|
+
"EnergyIQSite",
|
|
1369
|
+
"EnergyIQSpace",
|
|
1234
1370
|
"IndustryBasicMachine",
|
|
1235
1371
|
"IndustryEnergyEnergyConsumer",
|
|
1236
1372
|
"IndustryEnergyEnergyMeter",
|
|
@@ -1239,17 +1375,64 @@ const result = {
|
|
|
1239
1375
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1240
1376
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1241
1377
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1242
|
-
"
|
|
1243
|
-
"
|
|
1244
|
-
"
|
|
1245
|
-
"
|
|
1246
|
-
"
|
|
1378
|
+
"LoxoneCategory",
|
|
1379
|
+
"LoxoneControl",
|
|
1380
|
+
"LoxoneMiniserver",
|
|
1381
|
+
"LoxoneRoom",
|
|
1382
|
+
"LoxoneSubControl",
|
|
1247
1383
|
"OctoSdkDemoMeteringPoint",
|
|
1248
1384
|
"OctoSdkDemoOperatingFacility"
|
|
1249
1385
|
],
|
|
1250
|
-
"
|
|
1251
|
-
"
|
|
1252
|
-
"
|
|
1386
|
+
"EnergyIQAirHandlingUnit_ServesSpacesUnion": [
|
|
1387
|
+
"EnergyIQAirHandlingUnit",
|
|
1388
|
+
"EnergyIQBoiler",
|
|
1389
|
+
"EnergyIQChiller",
|
|
1390
|
+
"EnergyIQPump"
|
|
1391
|
+
],
|
|
1392
|
+
"EnergyIQBuildingElementInterface": [
|
|
1393
|
+
"EnergyIQDoor",
|
|
1394
|
+
"EnergyIQLuminaire",
|
|
1395
|
+
"EnergyIQShadingDevice",
|
|
1396
|
+
"EnergyIQWall",
|
|
1397
|
+
"EnergyIQWindow"
|
|
1398
|
+
],
|
|
1399
|
+
"EnergyIQBuildingElement_ContainedInSpaceUnion": [
|
|
1400
|
+
"EnergyIQDoor",
|
|
1401
|
+
"EnergyIQLuminaire",
|
|
1402
|
+
"EnergyIQShadingDevice",
|
|
1403
|
+
"EnergyIQWall",
|
|
1404
|
+
"EnergyIQWindow"
|
|
1405
|
+
],
|
|
1406
|
+
"EnergyIQDoor_ContainedElementsUnion": [
|
|
1407
|
+
"EnergyIQDoor",
|
|
1408
|
+
"EnergyIQLuminaire",
|
|
1409
|
+
"EnergyIQShadingDevice",
|
|
1410
|
+
"EnergyIQWall",
|
|
1411
|
+
"EnergyIQWindow"
|
|
1412
|
+
],
|
|
1413
|
+
"EnergyIQSpace_ContainedElementsUnion": [
|
|
1414
|
+
"EnergyIQSpace"
|
|
1415
|
+
],
|
|
1416
|
+
"EnergyIQSpace_ContainedInSpaceUnion": [
|
|
1417
|
+
"EnergyIQSpace"
|
|
1418
|
+
],
|
|
1419
|
+
"EnergyIQSpace_ServedByUnion": [
|
|
1420
|
+
"EnergyIQSpace"
|
|
1421
|
+
],
|
|
1422
|
+
"EnergyIQSpace_ServesSpacesUnion": [
|
|
1423
|
+
"EnergyIQSpace"
|
|
1424
|
+
],
|
|
1425
|
+
"EnergyIQTechnicalSystemInterface": [
|
|
1426
|
+
"EnergyIQAirHandlingUnit",
|
|
1427
|
+
"EnergyIQBoiler",
|
|
1428
|
+
"EnergyIQChiller",
|
|
1429
|
+
"EnergyIQPump"
|
|
1430
|
+
],
|
|
1431
|
+
"EnergyIQTechnicalSystem_ServedByUnion": [
|
|
1432
|
+
"EnergyIQAirHandlingUnit",
|
|
1433
|
+
"EnergyIQBoiler",
|
|
1434
|
+
"EnergyIQChiller",
|
|
1435
|
+
"EnergyIQPump"
|
|
1253
1436
|
],
|
|
1254
1437
|
"IndustryBasicEvent_EventsUnion": [
|
|
1255
1438
|
"IndustryBasicAlarm",
|
|
@@ -1261,50 +1444,11 @@ const result = {
|
|
|
1261
1444
|
"IndustryEnergyEnergyMeter",
|
|
1262
1445
|
"IndustryEnergyEnergyStorage",
|
|
1263
1446
|
"IndustryEnergyInverter",
|
|
1264
|
-
"IndustryEnergyPhotovoltaicSystemModule"
|
|
1265
|
-
"IndustryFluidHeatMeter",
|
|
1266
|
-
"IndustryFluidWaterMeter"
|
|
1447
|
+
"IndustryEnergyPhotovoltaicSystemModule"
|
|
1267
1448
|
],
|
|
1268
1449
|
"IndustryBasicRuntimeVariable_RuntimeVariablesUnion": [
|
|
1269
1450
|
"IndustryBasicRuntimeVariable"
|
|
1270
1451
|
],
|
|
1271
|
-
"IndustryMaintenanceAccount_ParentUnion": [
|
|
1272
|
-
"IndustryMaintenanceAccount"
|
|
1273
|
-
],
|
|
1274
|
-
"IndustryMaintenanceCostCenter_CostCenterUnion": [
|
|
1275
|
-
"IndustryMaintenanceCostCenter"
|
|
1276
|
-
],
|
|
1277
|
-
"IndustryMaintenanceEmployee_EmployeeUnion": [
|
|
1278
|
-
"IndustryMaintenanceEmployee"
|
|
1279
|
-
],
|
|
1280
|
-
"IndustryMaintenanceEnergyBalance_OrdersUnion": [
|
|
1281
|
-
"IndustryMaintenanceEnergyBalance"
|
|
1282
|
-
],
|
|
1283
|
-
"IndustryMaintenanceJournalEntry_ChildrenUnion": [
|
|
1284
|
-
"IndustryMaintenanceJournalEntry"
|
|
1285
|
-
],
|
|
1286
|
-
"IndustryMaintenanceJournalEntry_JournalEntriesUnion": [
|
|
1287
|
-
"IndustryMaintenanceJournalEntry"
|
|
1288
|
-
],
|
|
1289
|
-
"IndustryMaintenanceOrderCosts_CostsUnion": [
|
|
1290
|
-
"IndustryMaintenanceOrderCosts"
|
|
1291
|
-
],
|
|
1292
|
-
"IndustryMaintenanceOrderFeedback_ChildrenUnion": [
|
|
1293
|
-
"IndustryMaintenanceOrderFeedback"
|
|
1294
|
-
],
|
|
1295
|
-
"IndustryMaintenanceOrderFeedback_OrderFeedbacksUnion": [
|
|
1296
|
-
"IndustryMaintenanceOrderFeedback"
|
|
1297
|
-
],
|
|
1298
|
-
"IndustryMaintenanceOrder_OrderUnion": [
|
|
1299
|
-
"IndustryMaintenanceOrder"
|
|
1300
|
-
],
|
|
1301
|
-
"IndustryMaintenanceOrder_OrdersUnion": [
|
|
1302
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1303
|
-
"IndustryMaintenanceOrder"
|
|
1304
|
-
],
|
|
1305
|
-
"IndustryMaintenanceOrder_ParentUnion": [
|
|
1306
|
-
"IndustryMaintenanceOrder"
|
|
1307
|
-
],
|
|
1308
1452
|
"OctoSdkDemoCustomer_OwnedByUnion": [
|
|
1309
1453
|
"OctoSdkDemoCustomer"
|
|
1310
1454
|
],
|
|
@@ -1325,9 +1469,6 @@ const result = {
|
|
|
1325
1469
|
"SystemCommunicationAdapter_ExecutedByUnion": [
|
|
1326
1470
|
"SystemCommunicationAdapter"
|
|
1327
1471
|
],
|
|
1328
|
-
"SystemCommunicationAdapter_ManagesUnion": [
|
|
1329
|
-
"SystemCommunicationAdapter"
|
|
1330
|
-
],
|
|
1331
1472
|
"SystemCommunicationDataFlow_ParentUnion": [
|
|
1332
1473
|
"SystemCommunicationDataFlow"
|
|
1333
1474
|
],
|
|
@@ -1339,10 +1480,27 @@ const result = {
|
|
|
1339
1480
|
],
|
|
1340
1481
|
"SystemCommunicationDeployableEntityInterface": [
|
|
1341
1482
|
"SystemCommunicationAdapter",
|
|
1483
|
+
"SystemCommunicationApplication",
|
|
1484
|
+
"SystemCommunicationDeployableWorkload",
|
|
1342
1485
|
"SystemCommunicationPipeline",
|
|
1343
1486
|
"SystemCommunicationPipelineTrigger",
|
|
1344
1487
|
"SystemCommunicationPool"
|
|
1345
1488
|
],
|
|
1489
|
+
"SystemCommunicationDeployableWorkloadInterface": [
|
|
1490
|
+
"SystemCommunicationAdapter",
|
|
1491
|
+
"SystemCommunicationApplication"
|
|
1492
|
+
],
|
|
1493
|
+
"SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnion": [
|
|
1494
|
+
"SystemCommunicationAdapter",
|
|
1495
|
+
"SystemCommunicationApplication"
|
|
1496
|
+
],
|
|
1497
|
+
"SystemCommunicationDeployableWorkload_ManagesUnion": [
|
|
1498
|
+
"SystemCommunicationAdapter",
|
|
1499
|
+
"SystemCommunicationApplication"
|
|
1500
|
+
],
|
|
1501
|
+
"SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnion": [
|
|
1502
|
+
"SystemCommunicationHelmRepositoryConfiguration"
|
|
1503
|
+
],
|
|
1346
1504
|
"SystemCommunicationPipelineExecution_ExecutedPipelineUnion": [
|
|
1347
1505
|
"SystemCommunicationPipelineExecution"
|
|
1348
1506
|
],
|
|
@@ -1395,6 +1553,7 @@ const result = {
|
|
|
1395
1553
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1396
1554
|
"SystemCommunicationFinApiConfiguration",
|
|
1397
1555
|
"SystemCommunicationGrafanaConfiguration",
|
|
1556
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1398
1557
|
"SystemCommunicationLoxoneConfiguration",
|
|
1399
1558
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1400
1559
|
"SystemCommunicationSapConfiguration",
|
|
@@ -1415,6 +1574,7 @@ const result = {
|
|
|
1415
1574
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1416
1575
|
"SystemCommunicationFinApiConfiguration",
|
|
1417
1576
|
"SystemCommunicationGrafanaConfiguration",
|
|
1577
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1418
1578
|
"SystemCommunicationLoxoneConfiguration",
|
|
1419
1579
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1420
1580
|
"SystemCommunicationSapConfiguration",
|
|
@@ -1431,6 +1591,13 @@ const result = {
|
|
|
1431
1591
|
"BasicEmployee",
|
|
1432
1592
|
"BasicNamedEntity",
|
|
1433
1593
|
"BasicTree",
|
|
1594
|
+
"EnergyIQBuildingElement",
|
|
1595
|
+
"EnergyIQDoor",
|
|
1596
|
+
"EnergyIQLuminaire",
|
|
1597
|
+
"EnergyIQShadingDevice",
|
|
1598
|
+
"EnergyIQSite",
|
|
1599
|
+
"EnergyIQWall",
|
|
1600
|
+
"EnergyIQWindow",
|
|
1434
1601
|
"IndustryBasicAlarm",
|
|
1435
1602
|
"IndustryBasicEvent",
|
|
1436
1603
|
"IndustryBasicRuntimeVariable",
|
|
@@ -1438,12 +1605,7 @@ const result = {
|
|
|
1438
1605
|
"IndustryEnergyEnergyCost",
|
|
1439
1606
|
"IndustryEnergyEnergyForecast",
|
|
1440
1607
|
"IndustryEnergyEnergyPerformanceIndicator",
|
|
1441
|
-
"
|
|
1442
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1443
|
-
"IndustryMaintenanceJournalEntry",
|
|
1444
|
-
"IndustryMaintenanceOrder",
|
|
1445
|
-
"IndustryMaintenanceOrderCosts",
|
|
1446
|
-
"IndustryMaintenanceOrderFeedback",
|
|
1608
|
+
"LoxoneMiniserver",
|
|
1447
1609
|
"OctoSdkDemoCustomer",
|
|
1448
1610
|
"SystemAggregationRtQuery",
|
|
1449
1611
|
"SystemAggregationSdQuery",
|
|
@@ -1452,9 +1614,11 @@ const result = {
|
|
|
1452
1614
|
"SystemBotFixup",
|
|
1453
1615
|
"SystemCommunicationAdapter",
|
|
1454
1616
|
"SystemCommunicationAiConfiguration",
|
|
1617
|
+
"SystemCommunicationApplication",
|
|
1455
1618
|
"SystemCommunicationDataFlow",
|
|
1456
1619
|
"SystemCommunicationDataPointMapping",
|
|
1457
1620
|
"SystemCommunicationDeployableEntity",
|
|
1621
|
+
"SystemCommunicationDeployableWorkload",
|
|
1458
1622
|
"SystemCommunicationDiscordConfiguration",
|
|
1459
1623
|
"SystemCommunicationEMailReceiverConfiguration",
|
|
1460
1624
|
"SystemCommunicationEMailSenderConfiguration",
|
|
@@ -1462,6 +1626,7 @@ const result = {
|
|
|
1462
1626
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1463
1627
|
"SystemCommunicationFinApiConfiguration",
|
|
1464
1628
|
"SystemCommunicationGrafanaConfiguration",
|
|
1629
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1465
1630
|
"SystemCommunicationLoxoneConfiguration",
|
|
1466
1631
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1467
1632
|
"SystemCommunicationPipeline",
|
|
@@ -1513,7 +1678,11 @@ const result = {
|
|
|
1513
1678
|
"SystemReportingFolderRoot",
|
|
1514
1679
|
"SystemSimpleRtQuery",
|
|
1515
1680
|
"SystemSimpleSdQuery",
|
|
1681
|
+
"SystemStreamDataArchive",
|
|
1516
1682
|
"SystemStreamDataQuery",
|
|
1683
|
+
"SystemStreamDataRawArchive",
|
|
1684
|
+
"SystemStreamDataRollupArchive",
|
|
1685
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1517
1686
|
"SystemTenant",
|
|
1518
1687
|
"SystemTenantConfiguration",
|
|
1519
1688
|
"SystemTenantModeConfiguration",
|
|
@@ -1534,6 +1703,23 @@ const result = {
|
|
|
1534
1703
|
"BasicState",
|
|
1535
1704
|
"BasicTree",
|
|
1536
1705
|
"BasicTreeNode",
|
|
1706
|
+
"EnergyIQAirHandlingUnit",
|
|
1707
|
+
"EnergyIQBatteryStorage",
|
|
1708
|
+
"EnergyIQBoiler",
|
|
1709
|
+
"EnergyIQBuilding",
|
|
1710
|
+
"EnergyIQBuildingStorey",
|
|
1711
|
+
"EnergyIQChiller",
|
|
1712
|
+
"EnergyIQDoor",
|
|
1713
|
+
"EnergyIQInverter",
|
|
1714
|
+
"EnergyIQLuminaire",
|
|
1715
|
+
"EnergyIQPVString",
|
|
1716
|
+
"EnergyIQPhotovoltaicSystem",
|
|
1717
|
+
"EnergyIQPump",
|
|
1718
|
+
"EnergyIQShadingDevice",
|
|
1719
|
+
"EnergyIQSite",
|
|
1720
|
+
"EnergyIQSpace",
|
|
1721
|
+
"EnergyIQWall",
|
|
1722
|
+
"EnergyIQWindow",
|
|
1537
1723
|
"IndustryBasicAlarm",
|
|
1538
1724
|
"IndustryBasicEvent",
|
|
1539
1725
|
"IndustryBasicMachine",
|
|
@@ -1549,17 +1735,11 @@ const result = {
|
|
|
1549
1735
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1550
1736
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1551
1737
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1552
|
-
"
|
|
1553
|
-
"
|
|
1554
|
-
"
|
|
1555
|
-
"
|
|
1556
|
-
"
|
|
1557
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1558
|
-
"IndustryMaintenanceJournalEntry",
|
|
1559
|
-
"IndustryMaintenanceOrder",
|
|
1560
|
-
"IndustryMaintenanceOrderCosts",
|
|
1561
|
-
"IndustryMaintenanceOrderFeedback",
|
|
1562
|
-
"IndustryMaintenanceWorkplace",
|
|
1738
|
+
"LoxoneCategory",
|
|
1739
|
+
"LoxoneControl",
|
|
1740
|
+
"LoxoneMiniserver",
|
|
1741
|
+
"LoxoneRoom",
|
|
1742
|
+
"LoxoneSubControl",
|
|
1563
1743
|
"OctoSdkDemoCustomer",
|
|
1564
1744
|
"OctoSdkDemoMeteringPoint",
|
|
1565
1745
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -1570,6 +1750,7 @@ const result = {
|
|
|
1570
1750
|
"SystemBotFixup",
|
|
1571
1751
|
"SystemCommunicationAdapter",
|
|
1572
1752
|
"SystemCommunicationAiConfiguration",
|
|
1753
|
+
"SystemCommunicationApplication",
|
|
1573
1754
|
"SystemCommunicationDataFlow",
|
|
1574
1755
|
"SystemCommunicationDataPointMapping",
|
|
1575
1756
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -1579,6 +1760,7 @@ const result = {
|
|
|
1579
1760
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1580
1761
|
"SystemCommunicationFinApiConfiguration",
|
|
1581
1762
|
"SystemCommunicationGrafanaConfiguration",
|
|
1763
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1582
1764
|
"SystemCommunicationLoxoneConfiguration",
|
|
1583
1765
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1584
1766
|
"SystemCommunicationPipeline",
|
|
@@ -1624,6 +1806,9 @@ const result = {
|
|
|
1624
1806
|
"SystemReportingFolderRoot",
|
|
1625
1807
|
"SystemSimpleRtQuery",
|
|
1626
1808
|
"SystemSimpleSdQuery",
|
|
1809
|
+
"SystemStreamDataRawArchive",
|
|
1810
|
+
"SystemStreamDataRollupArchive",
|
|
1811
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1627
1812
|
"SystemTenant",
|
|
1628
1813
|
"SystemTenantConfiguration",
|
|
1629
1814
|
"SystemTenantModeConfiguration",
|
|
@@ -1643,6 +1828,23 @@ const result = {
|
|
|
1643
1828
|
"BasicState",
|
|
1644
1829
|
"BasicTree",
|
|
1645
1830
|
"BasicTreeNode",
|
|
1831
|
+
"EnergyIQAirHandlingUnit",
|
|
1832
|
+
"EnergyIQBatteryStorage",
|
|
1833
|
+
"EnergyIQBoiler",
|
|
1834
|
+
"EnergyIQBuilding",
|
|
1835
|
+
"EnergyIQBuildingStorey",
|
|
1836
|
+
"EnergyIQChiller",
|
|
1837
|
+
"EnergyIQDoor",
|
|
1838
|
+
"EnergyIQInverter",
|
|
1839
|
+
"EnergyIQLuminaire",
|
|
1840
|
+
"EnergyIQPVString",
|
|
1841
|
+
"EnergyIQPhotovoltaicSystem",
|
|
1842
|
+
"EnergyIQPump",
|
|
1843
|
+
"EnergyIQShadingDevice",
|
|
1844
|
+
"EnergyIQSite",
|
|
1845
|
+
"EnergyIQSpace",
|
|
1846
|
+
"EnergyIQWall",
|
|
1847
|
+
"EnergyIQWindow",
|
|
1646
1848
|
"IndustryBasicAlarm",
|
|
1647
1849
|
"IndustryBasicEvent",
|
|
1648
1850
|
"IndustryBasicMachine",
|
|
@@ -1658,17 +1860,11 @@ const result = {
|
|
|
1658
1860
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1659
1861
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1660
1862
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1661
|
-
"
|
|
1662
|
-
"
|
|
1663
|
-
"
|
|
1664
|
-
"
|
|
1665
|
-
"
|
|
1666
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1667
|
-
"IndustryMaintenanceJournalEntry",
|
|
1668
|
-
"IndustryMaintenanceOrder",
|
|
1669
|
-
"IndustryMaintenanceOrderCosts",
|
|
1670
|
-
"IndustryMaintenanceOrderFeedback",
|
|
1671
|
-
"IndustryMaintenanceWorkplace",
|
|
1863
|
+
"LoxoneCategory",
|
|
1864
|
+
"LoxoneControl",
|
|
1865
|
+
"LoxoneMiniserver",
|
|
1866
|
+
"LoxoneRoom",
|
|
1867
|
+
"LoxoneSubControl",
|
|
1672
1868
|
"OctoSdkDemoCustomer",
|
|
1673
1869
|
"OctoSdkDemoMeteringPoint",
|
|
1674
1870
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -1679,6 +1875,7 @@ const result = {
|
|
|
1679
1875
|
"SystemBotFixup",
|
|
1680
1876
|
"SystemCommunicationAdapter",
|
|
1681
1877
|
"SystemCommunicationAiConfiguration",
|
|
1878
|
+
"SystemCommunicationApplication",
|
|
1682
1879
|
"SystemCommunicationDataFlow",
|
|
1683
1880
|
"SystemCommunicationDataPointMapping",
|
|
1684
1881
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -1688,6 +1885,7 @@ const result = {
|
|
|
1688
1885
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1689
1886
|
"SystemCommunicationFinApiConfiguration",
|
|
1690
1887
|
"SystemCommunicationGrafanaConfiguration",
|
|
1888
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1691
1889
|
"SystemCommunicationLoxoneConfiguration",
|
|
1692
1890
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1693
1891
|
"SystemCommunicationPipeline",
|
|
@@ -1733,6 +1931,9 @@ const result = {
|
|
|
1733
1931
|
"SystemReportingFolderRoot",
|
|
1734
1932
|
"SystemSimpleRtQuery",
|
|
1735
1933
|
"SystemSimpleSdQuery",
|
|
1934
|
+
"SystemStreamDataRawArchive",
|
|
1935
|
+
"SystemStreamDataRollupArchive",
|
|
1936
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1736
1937
|
"SystemTenant",
|
|
1737
1938
|
"SystemTenantConfiguration",
|
|
1738
1939
|
"SystemTenantModeConfiguration",
|
|
@@ -1752,6 +1953,23 @@ const result = {
|
|
|
1752
1953
|
"BasicState",
|
|
1753
1954
|
"BasicTree",
|
|
1754
1955
|
"BasicTreeNode",
|
|
1956
|
+
"EnergyIQAirHandlingUnit",
|
|
1957
|
+
"EnergyIQBatteryStorage",
|
|
1958
|
+
"EnergyIQBoiler",
|
|
1959
|
+
"EnergyIQBuilding",
|
|
1960
|
+
"EnergyIQBuildingStorey",
|
|
1961
|
+
"EnergyIQChiller",
|
|
1962
|
+
"EnergyIQDoor",
|
|
1963
|
+
"EnergyIQInverter",
|
|
1964
|
+
"EnergyIQLuminaire",
|
|
1965
|
+
"EnergyIQPVString",
|
|
1966
|
+
"EnergyIQPhotovoltaicSystem",
|
|
1967
|
+
"EnergyIQPump",
|
|
1968
|
+
"EnergyIQShadingDevice",
|
|
1969
|
+
"EnergyIQSite",
|
|
1970
|
+
"EnergyIQSpace",
|
|
1971
|
+
"EnergyIQWall",
|
|
1972
|
+
"EnergyIQWindow",
|
|
1755
1973
|
"IndustryBasicAlarm",
|
|
1756
1974
|
"IndustryBasicEvent",
|
|
1757
1975
|
"IndustryBasicMachine",
|
|
@@ -1767,17 +1985,11 @@ const result = {
|
|
|
1767
1985
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1768
1986
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1769
1987
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1770
|
-
"
|
|
1771
|
-
"
|
|
1772
|
-
"
|
|
1773
|
-
"
|
|
1774
|
-
"
|
|
1775
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1776
|
-
"IndustryMaintenanceJournalEntry",
|
|
1777
|
-
"IndustryMaintenanceOrder",
|
|
1778
|
-
"IndustryMaintenanceOrderCosts",
|
|
1779
|
-
"IndustryMaintenanceOrderFeedback",
|
|
1780
|
-
"IndustryMaintenanceWorkplace",
|
|
1988
|
+
"LoxoneCategory",
|
|
1989
|
+
"LoxoneControl",
|
|
1990
|
+
"LoxoneMiniserver",
|
|
1991
|
+
"LoxoneRoom",
|
|
1992
|
+
"LoxoneSubControl",
|
|
1781
1993
|
"OctoSdkDemoCustomer",
|
|
1782
1994
|
"OctoSdkDemoMeteringPoint",
|
|
1783
1995
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -1788,6 +2000,7 @@ const result = {
|
|
|
1788
2000
|
"SystemBotFixup",
|
|
1789
2001
|
"SystemCommunicationAdapter",
|
|
1790
2002
|
"SystemCommunicationAiConfiguration",
|
|
2003
|
+
"SystemCommunicationApplication",
|
|
1791
2004
|
"SystemCommunicationDataFlow",
|
|
1792
2005
|
"SystemCommunicationDataPointMapping",
|
|
1793
2006
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -1797,6 +2010,7 @@ const result = {
|
|
|
1797
2010
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1798
2011
|
"SystemCommunicationFinApiConfiguration",
|
|
1799
2012
|
"SystemCommunicationGrafanaConfiguration",
|
|
2013
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1800
2014
|
"SystemCommunicationLoxoneConfiguration",
|
|
1801
2015
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1802
2016
|
"SystemCommunicationPipeline",
|
|
@@ -1842,6 +2056,9 @@ const result = {
|
|
|
1842
2056
|
"SystemReportingFolderRoot",
|
|
1843
2057
|
"SystemSimpleRtQuery",
|
|
1844
2058
|
"SystemSimpleSdQuery",
|
|
2059
|
+
"SystemStreamDataRawArchive",
|
|
2060
|
+
"SystemStreamDataRollupArchive",
|
|
2061
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1845
2062
|
"SystemTenant",
|
|
1846
2063
|
"SystemTenantConfiguration",
|
|
1847
2064
|
"SystemTenantModeConfiguration",
|
|
@@ -1861,6 +2078,23 @@ const result = {
|
|
|
1861
2078
|
"BasicState",
|
|
1862
2079
|
"BasicTree",
|
|
1863
2080
|
"BasicTreeNode",
|
|
2081
|
+
"EnergyIQAirHandlingUnit",
|
|
2082
|
+
"EnergyIQBatteryStorage",
|
|
2083
|
+
"EnergyIQBoiler",
|
|
2084
|
+
"EnergyIQBuilding",
|
|
2085
|
+
"EnergyIQBuildingStorey",
|
|
2086
|
+
"EnergyIQChiller",
|
|
2087
|
+
"EnergyIQDoor",
|
|
2088
|
+
"EnergyIQInverter",
|
|
2089
|
+
"EnergyIQLuminaire",
|
|
2090
|
+
"EnergyIQPVString",
|
|
2091
|
+
"EnergyIQPhotovoltaicSystem",
|
|
2092
|
+
"EnergyIQPump",
|
|
2093
|
+
"EnergyIQShadingDevice",
|
|
2094
|
+
"EnergyIQSite",
|
|
2095
|
+
"EnergyIQSpace",
|
|
2096
|
+
"EnergyIQWall",
|
|
2097
|
+
"EnergyIQWindow",
|
|
1864
2098
|
"IndustryBasicAlarm",
|
|
1865
2099
|
"IndustryBasicEvent",
|
|
1866
2100
|
"IndustryBasicMachine",
|
|
@@ -1876,17 +2110,11 @@ const result = {
|
|
|
1876
2110
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1877
2111
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1878
2112
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1879
|
-
"
|
|
1880
|
-
"
|
|
1881
|
-
"
|
|
1882
|
-
"
|
|
1883
|
-
"
|
|
1884
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1885
|
-
"IndustryMaintenanceJournalEntry",
|
|
1886
|
-
"IndustryMaintenanceOrder",
|
|
1887
|
-
"IndustryMaintenanceOrderCosts",
|
|
1888
|
-
"IndustryMaintenanceOrderFeedback",
|
|
1889
|
-
"IndustryMaintenanceWorkplace",
|
|
2113
|
+
"LoxoneCategory",
|
|
2114
|
+
"LoxoneControl",
|
|
2115
|
+
"LoxoneMiniserver",
|
|
2116
|
+
"LoxoneRoom",
|
|
2117
|
+
"LoxoneSubControl",
|
|
1890
2118
|
"OctoSdkDemoCustomer",
|
|
1891
2119
|
"OctoSdkDemoMeteringPoint",
|
|
1892
2120
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -1897,6 +2125,7 @@ const result = {
|
|
|
1897
2125
|
"SystemBotFixup",
|
|
1898
2126
|
"SystemCommunicationAdapter",
|
|
1899
2127
|
"SystemCommunicationAiConfiguration",
|
|
2128
|
+
"SystemCommunicationApplication",
|
|
1900
2129
|
"SystemCommunicationDataFlow",
|
|
1901
2130
|
"SystemCommunicationDataPointMapping",
|
|
1902
2131
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -1906,6 +2135,7 @@ const result = {
|
|
|
1906
2135
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1907
2136
|
"SystemCommunicationFinApiConfiguration",
|
|
1908
2137
|
"SystemCommunicationGrafanaConfiguration",
|
|
2138
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1909
2139
|
"SystemCommunicationLoxoneConfiguration",
|
|
1910
2140
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1911
2141
|
"SystemCommunicationPipeline",
|
|
@@ -1951,6 +2181,9 @@ const result = {
|
|
|
1951
2181
|
"SystemReportingFolderRoot",
|
|
1952
2182
|
"SystemSimpleRtQuery",
|
|
1953
2183
|
"SystemSimpleSdQuery",
|
|
2184
|
+
"SystemStreamDataRawArchive",
|
|
2185
|
+
"SystemStreamDataRollupArchive",
|
|
2186
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1954
2187
|
"SystemTenant",
|
|
1955
2188
|
"SystemTenantConfiguration",
|
|
1956
2189
|
"SystemTenantModeConfiguration",
|
|
@@ -1970,6 +2203,23 @@ const result = {
|
|
|
1970
2203
|
"BasicState",
|
|
1971
2204
|
"BasicTree",
|
|
1972
2205
|
"BasicTreeNode",
|
|
2206
|
+
"EnergyIQAirHandlingUnit",
|
|
2207
|
+
"EnergyIQBatteryStorage",
|
|
2208
|
+
"EnergyIQBoiler",
|
|
2209
|
+
"EnergyIQBuilding",
|
|
2210
|
+
"EnergyIQBuildingStorey",
|
|
2211
|
+
"EnergyIQChiller",
|
|
2212
|
+
"EnergyIQDoor",
|
|
2213
|
+
"EnergyIQInverter",
|
|
2214
|
+
"EnergyIQLuminaire",
|
|
2215
|
+
"EnergyIQPVString",
|
|
2216
|
+
"EnergyIQPhotovoltaicSystem",
|
|
2217
|
+
"EnergyIQPump",
|
|
2218
|
+
"EnergyIQShadingDevice",
|
|
2219
|
+
"EnergyIQSite",
|
|
2220
|
+
"EnergyIQSpace",
|
|
2221
|
+
"EnergyIQWall",
|
|
2222
|
+
"EnergyIQWindow",
|
|
1973
2223
|
"IndustryBasicAlarm",
|
|
1974
2224
|
"IndustryBasicEvent",
|
|
1975
2225
|
"IndustryBasicMachine",
|
|
@@ -1985,17 +2235,11 @@ const result = {
|
|
|
1985
2235
|
"IndustryEnergyPhotovoltaicSystem",
|
|
1986
2236
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
1987
2237
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
1988
|
-
"
|
|
1989
|
-
"
|
|
1990
|
-
"
|
|
1991
|
-
"
|
|
1992
|
-
"
|
|
1993
|
-
"IndustryMaintenanceEnergyBalance",
|
|
1994
|
-
"IndustryMaintenanceJournalEntry",
|
|
1995
|
-
"IndustryMaintenanceOrder",
|
|
1996
|
-
"IndustryMaintenanceOrderCosts",
|
|
1997
|
-
"IndustryMaintenanceOrderFeedback",
|
|
1998
|
-
"IndustryMaintenanceWorkplace",
|
|
2238
|
+
"LoxoneCategory",
|
|
2239
|
+
"LoxoneControl",
|
|
2240
|
+
"LoxoneMiniserver",
|
|
2241
|
+
"LoxoneRoom",
|
|
2242
|
+
"LoxoneSubControl",
|
|
1999
2243
|
"OctoSdkDemoCustomer",
|
|
2000
2244
|
"OctoSdkDemoMeteringPoint",
|
|
2001
2245
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -2006,6 +2250,7 @@ const result = {
|
|
|
2006
2250
|
"SystemBotFixup",
|
|
2007
2251
|
"SystemCommunicationAdapter",
|
|
2008
2252
|
"SystemCommunicationAiConfiguration",
|
|
2253
|
+
"SystemCommunicationApplication",
|
|
2009
2254
|
"SystemCommunicationDataFlow",
|
|
2010
2255
|
"SystemCommunicationDataPointMapping",
|
|
2011
2256
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -2015,6 +2260,7 @@ const result = {
|
|
|
2015
2260
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
2016
2261
|
"SystemCommunicationFinApiConfiguration",
|
|
2017
2262
|
"SystemCommunicationGrafanaConfiguration",
|
|
2263
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
2018
2264
|
"SystemCommunicationLoxoneConfiguration",
|
|
2019
2265
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
2020
2266
|
"SystemCommunicationPipeline",
|
|
@@ -2060,6 +2306,9 @@ const result = {
|
|
|
2060
2306
|
"SystemReportingFolderRoot",
|
|
2061
2307
|
"SystemSimpleRtQuery",
|
|
2062
2308
|
"SystemSimpleSdQuery",
|
|
2309
|
+
"SystemStreamDataRawArchive",
|
|
2310
|
+
"SystemStreamDataRollupArchive",
|
|
2311
|
+
"SystemStreamDataTimeRangeArchive",
|
|
2063
2312
|
"SystemTenant",
|
|
2064
2313
|
"SystemTenantConfiguration",
|
|
2065
2314
|
"SystemTenantModeConfiguration",
|
|
@@ -2079,6 +2328,23 @@ const result = {
|
|
|
2079
2328
|
"BasicState",
|
|
2080
2329
|
"BasicTree",
|
|
2081
2330
|
"BasicTreeNode",
|
|
2331
|
+
"EnergyIQAirHandlingUnit",
|
|
2332
|
+
"EnergyIQBatteryStorage",
|
|
2333
|
+
"EnergyIQBoiler",
|
|
2334
|
+
"EnergyIQBuilding",
|
|
2335
|
+
"EnergyIQBuildingStorey",
|
|
2336
|
+
"EnergyIQChiller",
|
|
2337
|
+
"EnergyIQDoor",
|
|
2338
|
+
"EnergyIQInverter",
|
|
2339
|
+
"EnergyIQLuminaire",
|
|
2340
|
+
"EnergyIQPVString",
|
|
2341
|
+
"EnergyIQPhotovoltaicSystem",
|
|
2342
|
+
"EnergyIQPump",
|
|
2343
|
+
"EnergyIQShadingDevice",
|
|
2344
|
+
"EnergyIQSite",
|
|
2345
|
+
"EnergyIQSpace",
|
|
2346
|
+
"EnergyIQWall",
|
|
2347
|
+
"EnergyIQWindow",
|
|
2082
2348
|
"IndustryBasicAlarm",
|
|
2083
2349
|
"IndustryBasicEvent",
|
|
2084
2350
|
"IndustryBasicMachine",
|
|
@@ -2094,17 +2360,11 @@ const result = {
|
|
|
2094
2360
|
"IndustryEnergyPhotovoltaicSystem",
|
|
2095
2361
|
"IndustryEnergyPhotovoltaicSystemModule",
|
|
2096
2362
|
"IndustryEnergyPhotovoltaicSystemString",
|
|
2097
|
-
"
|
|
2098
|
-
"
|
|
2099
|
-
"
|
|
2100
|
-
"
|
|
2101
|
-
"
|
|
2102
|
-
"IndustryMaintenanceEnergyBalance",
|
|
2103
|
-
"IndustryMaintenanceJournalEntry",
|
|
2104
|
-
"IndustryMaintenanceOrder",
|
|
2105
|
-
"IndustryMaintenanceOrderCosts",
|
|
2106
|
-
"IndustryMaintenanceOrderFeedback",
|
|
2107
|
-
"IndustryMaintenanceWorkplace",
|
|
2363
|
+
"LoxoneCategory",
|
|
2364
|
+
"LoxoneControl",
|
|
2365
|
+
"LoxoneMiniserver",
|
|
2366
|
+
"LoxoneRoom",
|
|
2367
|
+
"LoxoneSubControl",
|
|
2108
2368
|
"OctoSdkDemoCustomer",
|
|
2109
2369
|
"OctoSdkDemoMeteringPoint",
|
|
2110
2370
|
"OctoSdkDemoOperatingFacility",
|
|
@@ -2115,6 +2375,7 @@ const result = {
|
|
|
2115
2375
|
"SystemBotFixup",
|
|
2116
2376
|
"SystemCommunicationAdapter",
|
|
2117
2377
|
"SystemCommunicationAiConfiguration",
|
|
2378
|
+
"SystemCommunicationApplication",
|
|
2118
2379
|
"SystemCommunicationDataFlow",
|
|
2119
2380
|
"SystemCommunicationDataPointMapping",
|
|
2120
2381
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -2124,6 +2385,7 @@ const result = {
|
|
|
2124
2385
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
2125
2386
|
"SystemCommunicationFinApiConfiguration",
|
|
2126
2387
|
"SystemCommunicationGrafanaConfiguration",
|
|
2388
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
2127
2389
|
"SystemCommunicationLoxoneConfiguration",
|
|
2128
2390
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
2129
2391
|
"SystemCommunicationPipeline",
|
|
@@ -2169,6 +2431,9 @@ const result = {
|
|
|
2169
2431
|
"SystemReportingFolderRoot",
|
|
2170
2432
|
"SystemSimpleRtQuery",
|
|
2171
2433
|
"SystemSimpleSdQuery",
|
|
2434
|
+
"SystemStreamDataRawArchive",
|
|
2435
|
+
"SystemStreamDataRollupArchive",
|
|
2436
|
+
"SystemStreamDataTimeRangeArchive",
|
|
2172
2437
|
"SystemTenant",
|
|
2173
2438
|
"SystemTenantConfiguration",
|
|
2174
2439
|
"SystemTenantModeConfiguration",
|
|
@@ -2241,6 +2506,11 @@ const result = {
|
|
|
2241
2506
|
"SystemReportingFolder",
|
|
2242
2507
|
"SystemReportingFolderRoot"
|
|
2243
2508
|
],
|
|
2509
|
+
"SystemStreamDataArchiveInterface": [
|
|
2510
|
+
"SystemStreamDataRawArchive",
|
|
2511
|
+
"SystemStreamDataRollupArchive",
|
|
2512
|
+
"SystemStreamDataTimeRangeArchive"
|
|
2513
|
+
],
|
|
2244
2514
|
"SystemStreamDataQueryInterface": [
|
|
2245
2515
|
"SystemAggregationSdQuery",
|
|
2246
2516
|
"SystemDownsamplingSdQuery",
|
|
@@ -3864,6 +4134,21 @@ class CommunicationService {
|
|
|
3864
4134
|
await firstValueFrom(this.httpClient.post(uri, null, { params, observe: 'response' }));
|
|
3865
4135
|
}
|
|
3866
4136
|
}
|
|
4137
|
+
/**
|
|
4138
|
+
* Encrypts a plaintext value via the controller's at-rest encryption key
|
|
4139
|
+
* and returns the sentinel-prefixed ciphertext (`enc:v1:...`). Use this
|
|
4140
|
+
* before saving Helm ValueOverride entries flagged IsSecret so the
|
|
4141
|
+
* plaintext is never persisted in MongoDB. Already-encrypted values pass
|
|
4142
|
+
* through unchanged.
|
|
4143
|
+
*/
|
|
4144
|
+
async encryptValue(tenantId, plaintext) {
|
|
4145
|
+
if (!this.communicationServicesUrl) {
|
|
4146
|
+
throw new Error('Communication services URL is not configured');
|
|
4147
|
+
}
|
|
4148
|
+
const uri = `${this.communicationServicesUrl}${tenantId}/v1/communication/encrypt-value`;
|
|
4149
|
+
const response = await firstValueFrom(this.httpClient.post(uri, { plaintext }));
|
|
4150
|
+
return response.ciphertext;
|
|
4151
|
+
}
|
|
3867
4152
|
/**
|
|
3868
4153
|
* Deploys all adapters of a pool.
|
|
3869
4154
|
*/
|
|
@@ -4767,5 +5052,5 @@ function provideOctoServices(octoServiceOptions) {
|
|
|
4767
5052
|
* Generated bundle index. Do not edit.
|
|
4768
5053
|
*/
|
|
4769
5054
|
|
|
4770
|
-
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,
|
|
5055
|
+
export { AggregationInputTypesDto, AggregationTypeDto, AggregationTypesDto, ArchiveStorageHealthDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto, BasicLegalEntityTypeDto, BasicSalutationDto, BasicTypeOfTelephoneBasicDto, BasicTypeOfTelephoneEnhancedDto, BasicUnitOfMeasureDto, BotService, CONFIGURATION_SERVICE, CkExtensionUpdateOperationsDto, CkModelCatalogService, CkModelService, CkRollupFunctionDto, CkTypeAttributeService, CkTypeMetaData, CkTypeSelectorService, CommunicationService, DeleteStrategiesDto, DeploymentState, EnergyIqDayOfWeekDto, EnergyIqLuminaireTypeDto, EnergyIqOperatingModeDto, EnergyIqShadingTypeDto, EnergyIqSpaceTypeDto, EnergyIqSystemTypeDto, 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, LoxoneConnectionStateDto, ModelStateDto, MultiplicitiesDto, NavigationFilterModeDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, QueryModeDto, RtAssociationMetaData, RuntimeEntityDialogDataSource, RuntimeEntitySelectDataSource, SearchFilterTypesDto, SortOrdersDto, SystemAggregationTypesDto, SystemCommunicationCommunicationStateDto, SystemCommunicationConfigurationStateDto, SystemCommunicationDeploymentStateDto, SystemCommunicationEnvironmentDto, SystemCommunicationHelmChannelDto, SystemCommunicationPipelineExecutionStatusDto, SystemCommunicationPipelineTriggerTypeDto, SystemEnvironmentModesDto, SystemFieldFilterOperatorDto, SystemIdentityTokenExpirationDto, SystemIdentityTokenTypeDto, SystemIdentityTokenUsageDto, SystemMaintenanceLevelsDto, SystemNavigationFilterModesDto, SystemNotificationEventLevelsDto, SystemNotificationEventSourcesDto, SystemNotificationEventStatesDto, SystemNotificationNotificationTypesDto, SystemNotificationRenderingTypesDto, SystemQueryTypesDto, SystemSortOrdersDto, SystemStreamDataBucketAlignmentDto, SystemStreamDataCkArchiveStatusDto, SystemStreamDataCkRollupFunctionDto, TENANT_ID_PROVIDER, TusUploadService, UpdateTypeDto, result as possibleTypes, provideOctoServices };
|
|
4771
5056
|
//# sourceMappingURL=meshmakers-octo-services.mjs.map
|