@meshmakers/octo-services 3.3.950 → 3.3.970
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,6 +387,15 @@ 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) {
|
|
@@ -680,12 +697,6 @@ var SearchFilterTypesDto;
|
|
|
680
697
|
SearchFilterTypesDto["TextSearchDto"] = "TEXT_SEARCH";
|
|
681
698
|
})(SearchFilterTypesDto || (SearchFilterTypesDto = {}));
|
|
682
699
|
/** 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
700
|
var SortOrdersDto;
|
|
690
701
|
(function (SortOrdersDto) {
|
|
691
702
|
SortOrdersDto["AscendingDto"] = "ASCENDING";
|
|
@@ -729,6 +740,18 @@ var SystemCommunicationDeploymentStateDto;
|
|
|
729
740
|
SystemCommunicationDeploymentStateDto["PendingDto"] = "PENDING";
|
|
730
741
|
SystemCommunicationDeploymentStateDto["UndeployedDto"] = "UNDEPLOYED";
|
|
731
742
|
})(SystemCommunicationDeploymentStateDto || (SystemCommunicationDeploymentStateDto = {}));
|
|
743
|
+
/** Runtime entities of construction kit enum 'System.Communication/Environment' */
|
|
744
|
+
var SystemCommunicationEnvironmentDto;
|
|
745
|
+
(function (SystemCommunicationEnvironmentDto) {
|
|
746
|
+
SystemCommunicationEnvironmentDto["CloudDto"] = "CLOUD";
|
|
747
|
+
SystemCommunicationEnvironmentDto["EdgeDto"] = "EDGE";
|
|
748
|
+
})(SystemCommunicationEnvironmentDto || (SystemCommunicationEnvironmentDto = {}));
|
|
749
|
+
/** Runtime entities of construction kit enum 'System.Communication/HelmChannel' */
|
|
750
|
+
var SystemCommunicationHelmChannelDto;
|
|
751
|
+
(function (SystemCommunicationHelmChannelDto) {
|
|
752
|
+
SystemCommunicationHelmChannelDto["DevDto"] = "DEV";
|
|
753
|
+
SystemCommunicationHelmChannelDto["ReleaseDto"] = "RELEASE";
|
|
754
|
+
})(SystemCommunicationHelmChannelDto || (SystemCommunicationHelmChannelDto = {}));
|
|
732
755
|
/** Runtime entities of construction kit enum 'System.Communication/PipelineExecutionStatus' */
|
|
733
756
|
var SystemCommunicationPipelineExecutionStatusDto;
|
|
734
757
|
(function (SystemCommunicationPipelineExecutionStatusDto) {
|
|
@@ -894,6 +917,46 @@ var SystemSortOrdersDto;
|
|
|
894
917
|
/** Descending order */
|
|
895
918
|
SystemSortOrdersDto["DescendingDto"] = "DESCENDING";
|
|
896
919
|
})(SystemSortOrdersDto || (SystemSortOrdersDto = {}));
|
|
920
|
+
/** Runtime entities of construction kit enum 'System.StreamData/BucketAlignment' */
|
|
921
|
+
var SystemStreamDataBucketAlignmentDto;
|
|
922
|
+
(function (SystemStreamDataBucketAlignmentDto) {
|
|
923
|
+
/** Bucket boundaries align to UTC calendar days (00:00:00 UTC). BucketSizeMs is informational only. */
|
|
924
|
+
SystemStreamDataBucketAlignmentDto["CalendarDayDto"] = "CALENDAR_DAY";
|
|
925
|
+
/** 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. */
|
|
926
|
+
SystemStreamDataBucketAlignmentDto["CalendarMonthDto"] = "CALENDAR_MONTH";
|
|
927
|
+
/** Bucket boundaries align to UTC calendar years (Jan 1 00:00:00 UTC). BucketSizeMs is informational only. */
|
|
928
|
+
SystemStreamDataBucketAlignmentDto["CalendarYearDto"] = "CALENDAR_YEAR";
|
|
929
|
+
/** Default. Each bucket spans exactly BucketSizeMs; boundaries are LastAggregatedBucketEnd, LastAggregatedBucketEnd + BucketSizeMs, ... */
|
|
930
|
+
SystemStreamDataBucketAlignmentDto["FixedSizeDto"] = "FIXED_SIZE";
|
|
931
|
+
/** Bucket boundaries align to ISO-8601 weeks (Monday 00:00:00 UTC to next Monday 00:00:00 UTC). BucketSizeMs is informational only. */
|
|
932
|
+
SystemStreamDataBucketAlignmentDto["Iso_8601WeekDto"] = "ISO_8601_WEEK";
|
|
933
|
+
})(SystemStreamDataBucketAlignmentDto || (SystemStreamDataBucketAlignmentDto = {}));
|
|
934
|
+
/** Runtime entities of construction kit enum 'System.StreamData/CkArchiveStatus' */
|
|
935
|
+
var SystemStreamDataCkArchiveStatusDto;
|
|
936
|
+
(function (SystemStreamDataCkArchiveStatusDto) {
|
|
937
|
+
/** Crate table exists, schema is frozen, inserts and queries are accepted. */
|
|
938
|
+
SystemStreamDataCkArchiveStatusDto["ActivatedDto"] = "ACTIVATED";
|
|
939
|
+
/** Archive definition exists, but no Crate table has been provisioned. Inserts and queries are rejected. */
|
|
940
|
+
SystemStreamDataCkArchiveStatusDto["CreatedDto"] = "CREATED";
|
|
941
|
+
/** Crate table exists, but inserts and queries are rejected. Data is preserved. */
|
|
942
|
+
SystemStreamDataCkArchiveStatusDto["DisabledDto"] = "DISABLED";
|
|
943
|
+
/** Activation failed; manual retry required. Inserts and queries are rejected. */
|
|
944
|
+
SystemStreamDataCkArchiveStatusDto["FailedDto"] = "FAILED";
|
|
945
|
+
})(SystemStreamDataCkArchiveStatusDto || (SystemStreamDataCkArchiveStatusDto = {}));
|
|
946
|
+
/** Runtime entities of construction kit enum 'System.StreamData/CkRollupFunction' */
|
|
947
|
+
var SystemStreamDataCkRollupFunctionDto;
|
|
948
|
+
(function (SystemStreamDataCkRollupFunctionDto) {
|
|
949
|
+
/** Arithmetic mean. Stored as sum and count columns; the average is computed on read. */
|
|
950
|
+
SystemStreamDataCkRollupFunctionDto["AvgDto"] = "AVG";
|
|
951
|
+
/** Number of non-null values in the bucket. */
|
|
952
|
+
SystemStreamDataCkRollupFunctionDto["CountDto"] = "COUNT";
|
|
953
|
+
/** Maximum value in the bucket. */
|
|
954
|
+
SystemStreamDataCkRollupFunctionDto["MaxDto"] = "MAX";
|
|
955
|
+
/** Minimum value in the bucket. */
|
|
956
|
+
SystemStreamDataCkRollupFunctionDto["MinDto"] = "MIN";
|
|
957
|
+
/** Sum of values in the bucket. */
|
|
958
|
+
SystemStreamDataCkRollupFunctionDto["SumDto"] = "SUM";
|
|
959
|
+
})(SystemStreamDataCkRollupFunctionDto || (SystemStreamDataCkRollupFunctionDto = {}));
|
|
897
960
|
/** Enum of valid update types */
|
|
898
961
|
var UpdateTypeDto;
|
|
899
962
|
(function (UpdateTypeDto) {
|
|
@@ -968,6 +1031,7 @@ const result = {
|
|
|
968
1031
|
"SystemBotFixup",
|
|
969
1032
|
"SystemCommunicationAdapter",
|
|
970
1033
|
"SystemCommunicationAiConfiguration",
|
|
1034
|
+
"SystemCommunicationApplication",
|
|
971
1035
|
"SystemCommunicationDataFlow",
|
|
972
1036
|
"SystemCommunicationDataPointMapping",
|
|
973
1037
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -977,6 +1041,7 @@ const result = {
|
|
|
977
1041
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
978
1042
|
"SystemCommunicationFinApiConfiguration",
|
|
979
1043
|
"SystemCommunicationGrafanaConfiguration",
|
|
1044
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
980
1045
|
"SystemCommunicationLoxoneConfiguration",
|
|
981
1046
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
982
1047
|
"SystemCommunicationPipeline",
|
|
@@ -1022,6 +1087,9 @@ const result = {
|
|
|
1022
1087
|
"SystemReportingFolderRoot",
|
|
1023
1088
|
"SystemSimpleRtQuery",
|
|
1024
1089
|
"SystemSimpleSdQuery",
|
|
1090
|
+
"SystemStreamDataRawArchive",
|
|
1091
|
+
"SystemStreamDataRollupArchive",
|
|
1092
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1025
1093
|
"SystemTenant",
|
|
1026
1094
|
"SystemTenantConfiguration",
|
|
1027
1095
|
"SystemTenantModeConfiguration",
|
|
@@ -1159,6 +1227,7 @@ const result = {
|
|
|
1159
1227
|
"SystemBotFixup",
|
|
1160
1228
|
"SystemCommunicationAdapter",
|
|
1161
1229
|
"SystemCommunicationAiConfiguration",
|
|
1230
|
+
"SystemCommunicationApplication",
|
|
1162
1231
|
"SystemCommunicationDataFlow",
|
|
1163
1232
|
"SystemCommunicationDataPointMapping",
|
|
1164
1233
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -1168,6 +1237,7 @@ const result = {
|
|
|
1168
1237
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1169
1238
|
"SystemCommunicationFinApiConfiguration",
|
|
1170
1239
|
"SystemCommunicationGrafanaConfiguration",
|
|
1240
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1171
1241
|
"SystemCommunicationLoxoneConfiguration",
|
|
1172
1242
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1173
1243
|
"SystemCommunicationPipeline",
|
|
@@ -1213,6 +1283,9 @@ const result = {
|
|
|
1213
1283
|
"SystemReportingFolderRoot",
|
|
1214
1284
|
"SystemSimpleRtQuery",
|
|
1215
1285
|
"SystemSimpleSdQuery",
|
|
1286
|
+
"SystemStreamDataRawArchive",
|
|
1287
|
+
"SystemStreamDataRollupArchive",
|
|
1288
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1216
1289
|
"SystemTenant",
|
|
1217
1290
|
"SystemTenantConfiguration",
|
|
1218
1291
|
"SystemTenantModeConfiguration",
|
|
@@ -1325,9 +1398,6 @@ const result = {
|
|
|
1325
1398
|
"SystemCommunicationAdapter_ExecutedByUnion": [
|
|
1326
1399
|
"SystemCommunicationAdapter"
|
|
1327
1400
|
],
|
|
1328
|
-
"SystemCommunicationAdapter_ManagesUnion": [
|
|
1329
|
-
"SystemCommunicationAdapter"
|
|
1330
|
-
],
|
|
1331
1401
|
"SystemCommunicationDataFlow_ParentUnion": [
|
|
1332
1402
|
"SystemCommunicationDataFlow"
|
|
1333
1403
|
],
|
|
@@ -1339,10 +1409,27 @@ const result = {
|
|
|
1339
1409
|
],
|
|
1340
1410
|
"SystemCommunicationDeployableEntityInterface": [
|
|
1341
1411
|
"SystemCommunicationAdapter",
|
|
1412
|
+
"SystemCommunicationApplication",
|
|
1413
|
+
"SystemCommunicationDeployableWorkload",
|
|
1342
1414
|
"SystemCommunicationPipeline",
|
|
1343
1415
|
"SystemCommunicationPipelineTrigger",
|
|
1344
1416
|
"SystemCommunicationPool"
|
|
1345
1417
|
],
|
|
1418
|
+
"SystemCommunicationDeployableWorkloadInterface": [
|
|
1419
|
+
"SystemCommunicationAdapter",
|
|
1420
|
+
"SystemCommunicationApplication"
|
|
1421
|
+
],
|
|
1422
|
+
"SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnion": [
|
|
1423
|
+
"SystemCommunicationAdapter",
|
|
1424
|
+
"SystemCommunicationApplication"
|
|
1425
|
+
],
|
|
1426
|
+
"SystemCommunicationDeployableWorkload_ManagesUnion": [
|
|
1427
|
+
"SystemCommunicationAdapter",
|
|
1428
|
+
"SystemCommunicationApplication"
|
|
1429
|
+
],
|
|
1430
|
+
"SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnion": [
|
|
1431
|
+
"SystemCommunicationHelmRepositoryConfiguration"
|
|
1432
|
+
],
|
|
1346
1433
|
"SystemCommunicationPipelineExecution_ExecutedPipelineUnion": [
|
|
1347
1434
|
"SystemCommunicationPipelineExecution"
|
|
1348
1435
|
],
|
|
@@ -1395,6 +1482,7 @@ const result = {
|
|
|
1395
1482
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1396
1483
|
"SystemCommunicationFinApiConfiguration",
|
|
1397
1484
|
"SystemCommunicationGrafanaConfiguration",
|
|
1485
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1398
1486
|
"SystemCommunicationLoxoneConfiguration",
|
|
1399
1487
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1400
1488
|
"SystemCommunicationSapConfiguration",
|
|
@@ -1415,6 +1503,7 @@ const result = {
|
|
|
1415
1503
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1416
1504
|
"SystemCommunicationFinApiConfiguration",
|
|
1417
1505
|
"SystemCommunicationGrafanaConfiguration",
|
|
1506
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1418
1507
|
"SystemCommunicationLoxoneConfiguration",
|
|
1419
1508
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1420
1509
|
"SystemCommunicationSapConfiguration",
|
|
@@ -1452,9 +1541,11 @@ const result = {
|
|
|
1452
1541
|
"SystemBotFixup",
|
|
1453
1542
|
"SystemCommunicationAdapter",
|
|
1454
1543
|
"SystemCommunicationAiConfiguration",
|
|
1544
|
+
"SystemCommunicationApplication",
|
|
1455
1545
|
"SystemCommunicationDataFlow",
|
|
1456
1546
|
"SystemCommunicationDataPointMapping",
|
|
1457
1547
|
"SystemCommunicationDeployableEntity",
|
|
1548
|
+
"SystemCommunicationDeployableWorkload",
|
|
1458
1549
|
"SystemCommunicationDiscordConfiguration",
|
|
1459
1550
|
"SystemCommunicationEMailReceiverConfiguration",
|
|
1460
1551
|
"SystemCommunicationEMailSenderConfiguration",
|
|
@@ -1462,6 +1553,7 @@ const result = {
|
|
|
1462
1553
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1463
1554
|
"SystemCommunicationFinApiConfiguration",
|
|
1464
1555
|
"SystemCommunicationGrafanaConfiguration",
|
|
1556
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1465
1557
|
"SystemCommunicationLoxoneConfiguration",
|
|
1466
1558
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1467
1559
|
"SystemCommunicationPipeline",
|
|
@@ -1513,7 +1605,11 @@ const result = {
|
|
|
1513
1605
|
"SystemReportingFolderRoot",
|
|
1514
1606
|
"SystemSimpleRtQuery",
|
|
1515
1607
|
"SystemSimpleSdQuery",
|
|
1608
|
+
"SystemStreamDataArchive",
|
|
1516
1609
|
"SystemStreamDataQuery",
|
|
1610
|
+
"SystemStreamDataRawArchive",
|
|
1611
|
+
"SystemStreamDataRollupArchive",
|
|
1612
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1517
1613
|
"SystemTenant",
|
|
1518
1614
|
"SystemTenantConfiguration",
|
|
1519
1615
|
"SystemTenantModeConfiguration",
|
|
@@ -1570,6 +1666,7 @@ const result = {
|
|
|
1570
1666
|
"SystemBotFixup",
|
|
1571
1667
|
"SystemCommunicationAdapter",
|
|
1572
1668
|
"SystemCommunicationAiConfiguration",
|
|
1669
|
+
"SystemCommunicationApplication",
|
|
1573
1670
|
"SystemCommunicationDataFlow",
|
|
1574
1671
|
"SystemCommunicationDataPointMapping",
|
|
1575
1672
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -1579,6 +1676,7 @@ const result = {
|
|
|
1579
1676
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1580
1677
|
"SystemCommunicationFinApiConfiguration",
|
|
1581
1678
|
"SystemCommunicationGrafanaConfiguration",
|
|
1679
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1582
1680
|
"SystemCommunicationLoxoneConfiguration",
|
|
1583
1681
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1584
1682
|
"SystemCommunicationPipeline",
|
|
@@ -1624,6 +1722,9 @@ const result = {
|
|
|
1624
1722
|
"SystemReportingFolderRoot",
|
|
1625
1723
|
"SystemSimpleRtQuery",
|
|
1626
1724
|
"SystemSimpleSdQuery",
|
|
1725
|
+
"SystemStreamDataRawArchive",
|
|
1726
|
+
"SystemStreamDataRollupArchive",
|
|
1727
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1627
1728
|
"SystemTenant",
|
|
1628
1729
|
"SystemTenantConfiguration",
|
|
1629
1730
|
"SystemTenantModeConfiguration",
|
|
@@ -1679,6 +1780,7 @@ const result = {
|
|
|
1679
1780
|
"SystemBotFixup",
|
|
1680
1781
|
"SystemCommunicationAdapter",
|
|
1681
1782
|
"SystemCommunicationAiConfiguration",
|
|
1783
|
+
"SystemCommunicationApplication",
|
|
1682
1784
|
"SystemCommunicationDataFlow",
|
|
1683
1785
|
"SystemCommunicationDataPointMapping",
|
|
1684
1786
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -1688,6 +1790,7 @@ const result = {
|
|
|
1688
1790
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1689
1791
|
"SystemCommunicationFinApiConfiguration",
|
|
1690
1792
|
"SystemCommunicationGrafanaConfiguration",
|
|
1793
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1691
1794
|
"SystemCommunicationLoxoneConfiguration",
|
|
1692
1795
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1693
1796
|
"SystemCommunicationPipeline",
|
|
@@ -1733,6 +1836,9 @@ const result = {
|
|
|
1733
1836
|
"SystemReportingFolderRoot",
|
|
1734
1837
|
"SystemSimpleRtQuery",
|
|
1735
1838
|
"SystemSimpleSdQuery",
|
|
1839
|
+
"SystemStreamDataRawArchive",
|
|
1840
|
+
"SystemStreamDataRollupArchive",
|
|
1841
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1736
1842
|
"SystemTenant",
|
|
1737
1843
|
"SystemTenantConfiguration",
|
|
1738
1844
|
"SystemTenantModeConfiguration",
|
|
@@ -1788,6 +1894,7 @@ const result = {
|
|
|
1788
1894
|
"SystemBotFixup",
|
|
1789
1895
|
"SystemCommunicationAdapter",
|
|
1790
1896
|
"SystemCommunicationAiConfiguration",
|
|
1897
|
+
"SystemCommunicationApplication",
|
|
1791
1898
|
"SystemCommunicationDataFlow",
|
|
1792
1899
|
"SystemCommunicationDataPointMapping",
|
|
1793
1900
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -1797,6 +1904,7 @@ const result = {
|
|
|
1797
1904
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1798
1905
|
"SystemCommunicationFinApiConfiguration",
|
|
1799
1906
|
"SystemCommunicationGrafanaConfiguration",
|
|
1907
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1800
1908
|
"SystemCommunicationLoxoneConfiguration",
|
|
1801
1909
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1802
1910
|
"SystemCommunicationPipeline",
|
|
@@ -1842,6 +1950,9 @@ const result = {
|
|
|
1842
1950
|
"SystemReportingFolderRoot",
|
|
1843
1951
|
"SystemSimpleRtQuery",
|
|
1844
1952
|
"SystemSimpleSdQuery",
|
|
1953
|
+
"SystemStreamDataRawArchive",
|
|
1954
|
+
"SystemStreamDataRollupArchive",
|
|
1955
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1845
1956
|
"SystemTenant",
|
|
1846
1957
|
"SystemTenantConfiguration",
|
|
1847
1958
|
"SystemTenantModeConfiguration",
|
|
@@ -1897,6 +2008,7 @@ const result = {
|
|
|
1897
2008
|
"SystemBotFixup",
|
|
1898
2009
|
"SystemCommunicationAdapter",
|
|
1899
2010
|
"SystemCommunicationAiConfiguration",
|
|
2011
|
+
"SystemCommunicationApplication",
|
|
1900
2012
|
"SystemCommunicationDataFlow",
|
|
1901
2013
|
"SystemCommunicationDataPointMapping",
|
|
1902
2014
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -1906,6 +2018,7 @@ const result = {
|
|
|
1906
2018
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
1907
2019
|
"SystemCommunicationFinApiConfiguration",
|
|
1908
2020
|
"SystemCommunicationGrafanaConfiguration",
|
|
2021
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
1909
2022
|
"SystemCommunicationLoxoneConfiguration",
|
|
1910
2023
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
1911
2024
|
"SystemCommunicationPipeline",
|
|
@@ -1951,6 +2064,9 @@ const result = {
|
|
|
1951
2064
|
"SystemReportingFolderRoot",
|
|
1952
2065
|
"SystemSimpleRtQuery",
|
|
1953
2066
|
"SystemSimpleSdQuery",
|
|
2067
|
+
"SystemStreamDataRawArchive",
|
|
2068
|
+
"SystemStreamDataRollupArchive",
|
|
2069
|
+
"SystemStreamDataTimeRangeArchive",
|
|
1954
2070
|
"SystemTenant",
|
|
1955
2071
|
"SystemTenantConfiguration",
|
|
1956
2072
|
"SystemTenantModeConfiguration",
|
|
@@ -2006,6 +2122,7 @@ const result = {
|
|
|
2006
2122
|
"SystemBotFixup",
|
|
2007
2123
|
"SystemCommunicationAdapter",
|
|
2008
2124
|
"SystemCommunicationAiConfiguration",
|
|
2125
|
+
"SystemCommunicationApplication",
|
|
2009
2126
|
"SystemCommunicationDataFlow",
|
|
2010
2127
|
"SystemCommunicationDataPointMapping",
|
|
2011
2128
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -2015,6 +2132,7 @@ const result = {
|
|
|
2015
2132
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
2016
2133
|
"SystemCommunicationFinApiConfiguration",
|
|
2017
2134
|
"SystemCommunicationGrafanaConfiguration",
|
|
2135
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
2018
2136
|
"SystemCommunicationLoxoneConfiguration",
|
|
2019
2137
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
2020
2138
|
"SystemCommunicationPipeline",
|
|
@@ -2060,6 +2178,9 @@ const result = {
|
|
|
2060
2178
|
"SystemReportingFolderRoot",
|
|
2061
2179
|
"SystemSimpleRtQuery",
|
|
2062
2180
|
"SystemSimpleSdQuery",
|
|
2181
|
+
"SystemStreamDataRawArchive",
|
|
2182
|
+
"SystemStreamDataRollupArchive",
|
|
2183
|
+
"SystemStreamDataTimeRangeArchive",
|
|
2063
2184
|
"SystemTenant",
|
|
2064
2185
|
"SystemTenantConfiguration",
|
|
2065
2186
|
"SystemTenantModeConfiguration",
|
|
@@ -2115,6 +2236,7 @@ const result = {
|
|
|
2115
2236
|
"SystemBotFixup",
|
|
2116
2237
|
"SystemCommunicationAdapter",
|
|
2117
2238
|
"SystemCommunicationAiConfiguration",
|
|
2239
|
+
"SystemCommunicationApplication",
|
|
2118
2240
|
"SystemCommunicationDataFlow",
|
|
2119
2241
|
"SystemCommunicationDataPointMapping",
|
|
2120
2242
|
"SystemCommunicationDiscordConfiguration",
|
|
@@ -2124,6 +2246,7 @@ const result = {
|
|
|
2124
2246
|
"SystemCommunicationEnergyCommunityConfiguration",
|
|
2125
2247
|
"SystemCommunicationFinApiConfiguration",
|
|
2126
2248
|
"SystemCommunicationGrafanaConfiguration",
|
|
2249
|
+
"SystemCommunicationHelmRepositoryConfiguration",
|
|
2127
2250
|
"SystemCommunicationLoxoneConfiguration",
|
|
2128
2251
|
"SystemCommunicationMicrosoftGraphConfiguration",
|
|
2129
2252
|
"SystemCommunicationPipeline",
|
|
@@ -2169,6 +2292,9 @@ const result = {
|
|
|
2169
2292
|
"SystemReportingFolderRoot",
|
|
2170
2293
|
"SystemSimpleRtQuery",
|
|
2171
2294
|
"SystemSimpleSdQuery",
|
|
2295
|
+
"SystemStreamDataRawArchive",
|
|
2296
|
+
"SystemStreamDataRollupArchive",
|
|
2297
|
+
"SystemStreamDataTimeRangeArchive",
|
|
2172
2298
|
"SystemTenant",
|
|
2173
2299
|
"SystemTenantConfiguration",
|
|
2174
2300
|
"SystemTenantModeConfiguration",
|
|
@@ -2241,6 +2367,11 @@ const result = {
|
|
|
2241
2367
|
"SystemReportingFolder",
|
|
2242
2368
|
"SystemReportingFolderRoot"
|
|
2243
2369
|
],
|
|
2370
|
+
"SystemStreamDataArchiveInterface": [
|
|
2371
|
+
"SystemStreamDataRawArchive",
|
|
2372
|
+
"SystemStreamDataRollupArchive",
|
|
2373
|
+
"SystemStreamDataTimeRangeArchive"
|
|
2374
|
+
],
|
|
2244
2375
|
"SystemStreamDataQueryInterface": [
|
|
2245
2376
|
"SystemAggregationSdQuery",
|
|
2246
2377
|
"SystemDownsamplingSdQuery",
|
|
@@ -3865,51 +3996,19 @@ class CommunicationService {
|
|
|
3865
3996
|
}
|
|
3866
3997
|
}
|
|
3867
3998
|
/**
|
|
3868
|
-
*
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
const uri = `${this.communicationServicesUrl}${tenantId}/v1/pool/deployAllAdaptersOfPool`;
|
|
3874
|
-
await firstValueFrom(this.httpClient.post(uri, null, { params, observe: 'response' }));
|
|
3875
|
-
}
|
|
3876
|
-
}
|
|
3877
|
-
/**
|
|
3878
|
-
* Undeploys all adapters of a pool.
|
|
3999
|
+
* Encrypts a plaintext value via the controller's at-rest encryption key
|
|
4000
|
+
* and returns the sentinel-prefixed ciphertext (`enc:v1:...`). Use this
|
|
4001
|
+
* before saving Helm ValueOverride entries flagged IsSecret so the
|
|
4002
|
+
* plaintext is never persisted in MongoDB. Already-encrypted values pass
|
|
4003
|
+
* through unchanged.
|
|
3879
4004
|
*/
|
|
3880
|
-
async
|
|
3881
|
-
if (this.communicationServicesUrl) {
|
|
3882
|
-
|
|
3883
|
-
const uri = `${this.communicationServicesUrl}${tenantId}/v1/pool/undeployAllAdaptersOfPool`;
|
|
3884
|
-
await firstValueFrom(this.httpClient.post(uri, null, { params, observe: 'response' }));
|
|
3885
|
-
}
|
|
3886
|
-
}
|
|
3887
|
-
// ============================================================================
|
|
3888
|
-
// Individual Adapter Deployment
|
|
3889
|
-
// ============================================================================
|
|
3890
|
-
/**
|
|
3891
|
-
* Deploys a single adapter to a pool.
|
|
3892
|
-
*/
|
|
3893
|
-
async deployAdapter(tenantId, poolRtId, adapterRtId, adapterCkTypeId) {
|
|
3894
|
-
if (this.communicationServicesUrl) {
|
|
3895
|
-
const params = new HttpParams()
|
|
3896
|
-
.set('poolRtId', poolRtId)
|
|
3897
|
-
.set('adapterRtEntityId', `${adapterCkTypeId}@${adapterRtId}`);
|
|
3898
|
-
const uri = `${this.communicationServicesUrl}${tenantId}/v1/pool/deployAdapter`;
|
|
3899
|
-
await firstValueFrom(this.httpClient.post(uri, null, { params, observe: 'response' }));
|
|
3900
|
-
}
|
|
3901
|
-
}
|
|
3902
|
-
/**
|
|
3903
|
-
* Undeploys a single adapter from a pool.
|
|
3904
|
-
*/
|
|
3905
|
-
async undeployAdapter(tenantId, poolRtId, adapterRtId, adapterCkTypeId) {
|
|
3906
|
-
if (this.communicationServicesUrl) {
|
|
3907
|
-
const params = new HttpParams()
|
|
3908
|
-
.set('poolRtId', poolRtId)
|
|
3909
|
-
.set('adapterRtEntityId', `${adapterCkTypeId}@${adapterRtId}`);
|
|
3910
|
-
const uri = `${this.communicationServicesUrl}${tenantId}/v1/pool/unDeployAdapter`;
|
|
3911
|
-
await firstValueFrom(this.httpClient.post(uri, null, { params, observe: 'response' }));
|
|
4005
|
+
async encryptValue(tenantId, plaintext) {
|
|
4006
|
+
if (!this.communicationServicesUrl) {
|
|
4007
|
+
throw new Error('Communication services URL is not configured');
|
|
3912
4008
|
}
|
|
4009
|
+
const uri = `${this.communicationServicesUrl}${tenantId}/v1/communication/encrypt-value`;
|
|
4010
|
+
const response = await firstValueFrom(this.httpClient.post(uri, { plaintext }));
|
|
4011
|
+
return response.ciphertext;
|
|
3913
4012
|
}
|
|
3914
4013
|
// ============================================================================
|
|
3915
4014
|
// Pipeline Execution
|
|
@@ -4767,5 +4866,5 @@ function provideOctoServices(octoServiceOptions) {
|
|
|
4767
4866
|
* Generated bundle index. Do not edit.
|
|
4768
4867
|
*/
|
|
4769
4868
|
|
|
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, IndustryMaintenanceAggregationTypeDto, IndustryMaintenanceCostCategoryDto, IndustryMaintenanceEnergyBalanceGroupDto, IndustryMaintenanceEnergyBalanceProductDto, IndustryMaintenanceEnergyBalanceUnitDto, IndustryMaintenanceOrderPriorityDto, IndustryMaintenanceOrderStateDto, IndustryMaintenanceOrderTypeDto, IndustryMaintenanceServiceTypeDto, JobManagementService, LevelMetaData, LoggerSeverity, ModelStateDto, MultiplicitiesDto, NavigationFilterModeDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, QueryModeDto, RtAssociationMetaData, RuntimeEntityDialogDataSource, RuntimeEntitySelectDataSource, SearchFilterTypesDto,
|
|
4869
|
+
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, 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, IndustryMaintenanceAggregationTypeDto, IndustryMaintenanceCostCategoryDto, IndustryMaintenanceEnergyBalanceGroupDto, IndustryMaintenanceEnergyBalanceProductDto, IndustryMaintenanceEnergyBalanceUnitDto, IndustryMaintenanceOrderPriorityDto, IndustryMaintenanceOrderStateDto, IndustryMaintenanceOrderTypeDto, IndustryMaintenanceServiceTypeDto, JobManagementService, LevelMetaData, LoggerSeverity, 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
4870
|
//# sourceMappingURL=meshmakers-octo-services.mjs.map
|