@betterportal/config-manager 10.6.0 → 10.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/.bsb/clients/service-betterportal-config-manager.d.ts +1 -1
- package/lib/.bsb/clients/service-betterportal-config-manager.js +1 -1
- package/lib/bp-contracts/org.betterportal.config-manager.json +273 -93
- package/lib/plugins/service-betterportal-config-manager/.bp-generated/registry.d.ts +96 -48
- package/lib/plugins/service-betterportal-config-manager/.bp-generated/registry.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-config-manager/bp-routes/preview-environments/_renderer.bootstrap5/GET.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-config-manager/bp-routes/preview-environments/_renderer.bootstrap5/GET.js +166 -17
- package/lib/plugins/service-betterportal-config-manager/bp-routes/preview-environments/_renderer.bootstrap5/GET.js.map +1 -1
- package/lib/plugins/service-betterportal-config-manager/previewEnvironmentManagement.d.ts +71 -16
- package/lib/plugins/service-betterportal-config-manager/previewEnvironmentManagement.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-config-manager/previewEnvironmentManagement.js +88 -24
- package/lib/plugins/service-betterportal-config-manager/previewEnvironmentManagement.js.map +1 -1
- package/lib/plugins/service-betterportal-config-manager/previewEnvironments.d.ts +1 -2
- package/lib/plugins/service-betterportal-config-manager/previewEnvironments.d.ts.map +1 -1
- package/lib/plugins/service-betterportal-config-manager/previewEnvironments.js +30 -55
- package/lib/plugins/service-betterportal-config-manager/previewEnvironments.js.map +1 -1
- package/lib/schemas/service-betterportal-config-manager.json +1 -1
- package/lib/schemas/service-betterportal-config-manager.plugin.json +1 -1
- package/package.json +7 -7
|
@@ -749,6 +749,7 @@ export declare const registry: {
|
|
|
749
749
|
title: import("anyvali").StringSchema;
|
|
750
750
|
previewPath: import("anyvali").StringSchema;
|
|
751
751
|
deploymentApiBase: import("anyvali").StringSchema;
|
|
752
|
+
configTicketUrl: import("anyvali").StringSchema;
|
|
752
753
|
sourceTenants: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
753
754
|
id: import("anyvali").StringSchema;
|
|
754
755
|
title: import("anyvali").StringSchema;
|
|
@@ -756,10 +757,7 @@ export declare const registry: {
|
|
|
756
757
|
sourceApps: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
757
758
|
id: import("anyvali").StringSchema;
|
|
758
759
|
tenantId: import("anyvali").StringSchema;
|
|
759
|
-
tenantTitle: import("anyvali").StringSchema;
|
|
760
760
|
title: import("anyvali").StringSchema;
|
|
761
|
-
serviceIds: import("anyvali").ArraySchema<import("anyvali").StringSchema>;
|
|
762
|
-
requiredServiceIds: import("anyvali").ArraySchema<import("anyvali").StringSchema>;
|
|
763
761
|
}>>;
|
|
764
762
|
groups: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
765
763
|
id: import("anyvali").StringSchema;
|
|
@@ -785,12 +783,17 @@ export declare const registry: {
|
|
|
785
783
|
scope: import("anyvali").EnumSchema<readonly ["tenant", "app"]>;
|
|
786
784
|
secret: import("anyvali").BoolSchema;
|
|
787
785
|
required: import("anyvali").BoolSchema;
|
|
786
|
+
defaultValue: import("anyvali").OptionalSchema<import("anyvali").BaseSchema<unknown, import("@betterportal/framework").JsonValue>>;
|
|
788
787
|
control: import("anyvali").OptionalSchema<import("anyvali").StringSchema>;
|
|
789
788
|
options: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
790
789
|
value: import("anyvali").StringSchema;
|
|
791
790
|
label: import("anyvali").StringSchema;
|
|
792
791
|
}>>;
|
|
793
792
|
}>>;
|
|
793
|
+
source: import("anyvali").OptionalSchema<import("anyvali").ObjectSchema<{
|
|
794
|
+
instanceId: import("anyvali").StringSchema;
|
|
795
|
+
hostname: import("anyvali").StringSchema;
|
|
796
|
+
}>>;
|
|
794
797
|
encryptedTenantConfig: import("anyvali").StringSchema;
|
|
795
798
|
encryptedAppConfig: import("anyvali").StringSchema;
|
|
796
799
|
}>>;
|
|
@@ -832,6 +835,7 @@ export declare const registry: {
|
|
|
832
835
|
title: string;
|
|
833
836
|
previewPath: string;
|
|
834
837
|
deploymentApiBase: string;
|
|
838
|
+
configTicketUrl: string;
|
|
835
839
|
sourceTenants: {
|
|
836
840
|
id: string;
|
|
837
841
|
title: string;
|
|
@@ -839,10 +843,7 @@ export declare const registry: {
|
|
|
839
843
|
sourceApps: {
|
|
840
844
|
id: string;
|
|
841
845
|
tenantId: string;
|
|
842
|
-
tenantTitle: string;
|
|
843
846
|
title: string;
|
|
844
|
-
serviceIds: string[];
|
|
845
|
-
requiredServiceIds: string[];
|
|
846
847
|
}[];
|
|
847
848
|
groups: {
|
|
848
849
|
id: string;
|
|
@@ -864,10 +865,15 @@ export declare const registry: {
|
|
|
864
865
|
value: string;
|
|
865
866
|
label: string;
|
|
866
867
|
}[];
|
|
868
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
867
869
|
control?: string | undefined;
|
|
868
870
|
}[];
|
|
869
871
|
encryptedTenantConfig: string;
|
|
870
872
|
encryptedAppConfig: string;
|
|
873
|
+
source?: {
|
|
874
|
+
instanceId: string;
|
|
875
|
+
hostname: string;
|
|
876
|
+
} | undefined;
|
|
871
877
|
}[];
|
|
872
878
|
deployments: {
|
|
873
879
|
id: string;
|
|
@@ -919,6 +925,7 @@ export declare const registry: {
|
|
|
919
925
|
title: string;
|
|
920
926
|
previewPath: string;
|
|
921
927
|
deploymentApiBase: string;
|
|
928
|
+
configTicketUrl: string;
|
|
922
929
|
sourceTenants: {
|
|
923
930
|
id: string;
|
|
924
931
|
title: string;
|
|
@@ -926,10 +933,7 @@ export declare const registry: {
|
|
|
926
933
|
sourceApps: {
|
|
927
934
|
id: string;
|
|
928
935
|
tenantId: string;
|
|
929
|
-
tenantTitle: string;
|
|
930
936
|
title: string;
|
|
931
|
-
serviceIds: string[];
|
|
932
|
-
requiredServiceIds: string[];
|
|
933
937
|
}[];
|
|
934
938
|
groups: {
|
|
935
939
|
id: string;
|
|
@@ -951,10 +955,15 @@ export declare const registry: {
|
|
|
951
955
|
value: string;
|
|
952
956
|
label: string;
|
|
953
957
|
}[];
|
|
958
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
954
959
|
control?: string | undefined;
|
|
955
960
|
}[];
|
|
956
961
|
encryptedTenantConfig: string;
|
|
957
962
|
encryptedAppConfig: string;
|
|
963
|
+
source?: {
|
|
964
|
+
instanceId: string;
|
|
965
|
+
hostname: string;
|
|
966
|
+
} | undefined;
|
|
958
967
|
}[];
|
|
959
968
|
deployments: {
|
|
960
969
|
id: string;
|
|
@@ -1008,6 +1017,7 @@ export declare const registry: {
|
|
|
1008
1017
|
title: import("anyvali").StringSchema;
|
|
1009
1018
|
previewPath: import("anyvali").StringSchema;
|
|
1010
1019
|
deploymentApiBase: import("anyvali").StringSchema;
|
|
1020
|
+
configTicketUrl: import("anyvali").StringSchema;
|
|
1011
1021
|
sourceTenants: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1012
1022
|
id: import("anyvali").StringSchema;
|
|
1013
1023
|
title: import("anyvali").StringSchema;
|
|
@@ -1015,10 +1025,7 @@ export declare const registry: {
|
|
|
1015
1025
|
sourceApps: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1016
1026
|
id: import("anyvali").StringSchema;
|
|
1017
1027
|
tenantId: import("anyvali").StringSchema;
|
|
1018
|
-
tenantTitle: import("anyvali").StringSchema;
|
|
1019
1028
|
title: import("anyvali").StringSchema;
|
|
1020
|
-
serviceIds: import("anyvali").ArraySchema<import("anyvali").StringSchema>;
|
|
1021
|
-
requiredServiceIds: import("anyvali").ArraySchema<import("anyvali").StringSchema>;
|
|
1022
1029
|
}>>;
|
|
1023
1030
|
groups: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1024
1031
|
id: import("anyvali").StringSchema;
|
|
@@ -1044,12 +1051,17 @@ export declare const registry: {
|
|
|
1044
1051
|
scope: import("anyvali").EnumSchema<readonly ["tenant", "app"]>;
|
|
1045
1052
|
secret: import("anyvali").BoolSchema;
|
|
1046
1053
|
required: import("anyvali").BoolSchema;
|
|
1054
|
+
defaultValue: import("anyvali").OptionalSchema<import("anyvali").BaseSchema<unknown, import("@betterportal/framework").JsonValue>>;
|
|
1047
1055
|
control: import("anyvali").OptionalSchema<import("anyvali").StringSchema>;
|
|
1048
1056
|
options: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1049
1057
|
value: import("anyvali").StringSchema;
|
|
1050
1058
|
label: import("anyvali").StringSchema;
|
|
1051
1059
|
}>>;
|
|
1052
1060
|
}>>;
|
|
1061
|
+
source: import("anyvali").OptionalSchema<import("anyvali").ObjectSchema<{
|
|
1062
|
+
instanceId: import("anyvali").StringSchema;
|
|
1063
|
+
hostname: import("anyvali").StringSchema;
|
|
1064
|
+
}>>;
|
|
1053
1065
|
encryptedTenantConfig: import("anyvali").StringSchema;
|
|
1054
1066
|
encryptedAppConfig: import("anyvali").StringSchema;
|
|
1055
1067
|
}>>;
|
|
@@ -1094,6 +1106,7 @@ export declare const registry: {
|
|
|
1094
1106
|
title: string;
|
|
1095
1107
|
previewPath: string;
|
|
1096
1108
|
deploymentApiBase: string;
|
|
1109
|
+
configTicketUrl: string;
|
|
1097
1110
|
sourceTenants: {
|
|
1098
1111
|
id: string;
|
|
1099
1112
|
title: string;
|
|
@@ -1101,10 +1114,7 @@ export declare const registry: {
|
|
|
1101
1114
|
sourceApps: {
|
|
1102
1115
|
id: string;
|
|
1103
1116
|
tenantId: string;
|
|
1104
|
-
tenantTitle: string;
|
|
1105
1117
|
title: string;
|
|
1106
|
-
serviceIds: string[];
|
|
1107
|
-
requiredServiceIds: string[];
|
|
1108
1118
|
}[];
|
|
1109
1119
|
groups: {
|
|
1110
1120
|
id: string;
|
|
@@ -1126,10 +1136,15 @@ export declare const registry: {
|
|
|
1126
1136
|
value: string;
|
|
1127
1137
|
label: string;
|
|
1128
1138
|
}[];
|
|
1139
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
1129
1140
|
control?: string | undefined;
|
|
1130
1141
|
}[];
|
|
1131
1142
|
encryptedTenantConfig: string;
|
|
1132
1143
|
encryptedAppConfig: string;
|
|
1144
|
+
source?: {
|
|
1145
|
+
instanceId: string;
|
|
1146
|
+
hostname: string;
|
|
1147
|
+
} | undefined;
|
|
1133
1148
|
}[];
|
|
1134
1149
|
deployments: {
|
|
1135
1150
|
id: string;
|
|
@@ -1181,6 +1196,7 @@ export declare const registry: {
|
|
|
1181
1196
|
title: string;
|
|
1182
1197
|
previewPath: string;
|
|
1183
1198
|
deploymentApiBase: string;
|
|
1199
|
+
configTicketUrl: string;
|
|
1184
1200
|
sourceTenants: {
|
|
1185
1201
|
id: string;
|
|
1186
1202
|
title: string;
|
|
@@ -1188,10 +1204,7 @@ export declare const registry: {
|
|
|
1188
1204
|
sourceApps: {
|
|
1189
1205
|
id: string;
|
|
1190
1206
|
tenantId: string;
|
|
1191
|
-
tenantTitle: string;
|
|
1192
1207
|
title: string;
|
|
1193
|
-
serviceIds: string[];
|
|
1194
|
-
requiredServiceIds: string[];
|
|
1195
1208
|
}[];
|
|
1196
1209
|
groups: {
|
|
1197
1210
|
id: string;
|
|
@@ -1213,10 +1226,15 @@ export declare const registry: {
|
|
|
1213
1226
|
value: string;
|
|
1214
1227
|
label: string;
|
|
1215
1228
|
}[];
|
|
1229
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
1216
1230
|
control?: string | undefined;
|
|
1217
1231
|
}[];
|
|
1218
1232
|
encryptedTenantConfig: string;
|
|
1219
1233
|
encryptedAppConfig: string;
|
|
1234
|
+
source?: {
|
|
1235
|
+
instanceId: string;
|
|
1236
|
+
hostname: string;
|
|
1237
|
+
} | undefined;
|
|
1220
1238
|
}[];
|
|
1221
1239
|
deployments: {
|
|
1222
1240
|
id: string;
|
|
@@ -1280,6 +1298,7 @@ export declare const registry: {
|
|
|
1280
1298
|
title: import("anyvali").StringSchema;
|
|
1281
1299
|
previewPath: import("anyvali").StringSchema;
|
|
1282
1300
|
deploymentApiBase: import("anyvali").StringSchema;
|
|
1301
|
+
configTicketUrl: import("anyvali").StringSchema;
|
|
1283
1302
|
sourceTenants: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1284
1303
|
id: import("anyvali").StringSchema;
|
|
1285
1304
|
title: import("anyvali").StringSchema;
|
|
@@ -1287,10 +1306,7 @@ export declare const registry: {
|
|
|
1287
1306
|
sourceApps: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1288
1307
|
id: import("anyvali").StringSchema;
|
|
1289
1308
|
tenantId: import("anyvali").StringSchema;
|
|
1290
|
-
tenantTitle: import("anyvali").StringSchema;
|
|
1291
1309
|
title: import("anyvali").StringSchema;
|
|
1292
|
-
serviceIds: import("anyvali").ArraySchema<import("anyvali").StringSchema>;
|
|
1293
|
-
requiredServiceIds: import("anyvali").ArraySchema<import("anyvali").StringSchema>;
|
|
1294
1310
|
}>>;
|
|
1295
1311
|
groups: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1296
1312
|
id: import("anyvali").StringSchema;
|
|
@@ -1316,12 +1332,17 @@ export declare const registry: {
|
|
|
1316
1332
|
scope: import("anyvali").EnumSchema<readonly ["tenant", "app"]>;
|
|
1317
1333
|
secret: import("anyvali").BoolSchema;
|
|
1318
1334
|
required: import("anyvali").BoolSchema;
|
|
1335
|
+
defaultValue: import("anyvali").OptionalSchema<import("anyvali").BaseSchema<unknown, import("@betterportal/framework").JsonValue>>;
|
|
1319
1336
|
control: import("anyvali").OptionalSchema<import("anyvali").StringSchema>;
|
|
1320
1337
|
options: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1321
1338
|
value: import("anyvali").StringSchema;
|
|
1322
1339
|
label: import("anyvali").StringSchema;
|
|
1323
1340
|
}>>;
|
|
1324
1341
|
}>>;
|
|
1342
|
+
source: import("anyvali").OptionalSchema<import("anyvali").ObjectSchema<{
|
|
1343
|
+
instanceId: import("anyvali").StringSchema;
|
|
1344
|
+
hostname: import("anyvali").StringSchema;
|
|
1345
|
+
}>>;
|
|
1325
1346
|
encryptedTenantConfig: import("anyvali").StringSchema;
|
|
1326
1347
|
encryptedAppConfig: import("anyvali").StringSchema;
|
|
1327
1348
|
}>>;
|
|
@@ -1363,6 +1384,7 @@ export declare const registry: {
|
|
|
1363
1384
|
title: string;
|
|
1364
1385
|
previewPath: string;
|
|
1365
1386
|
deploymentApiBase: string;
|
|
1387
|
+
configTicketUrl: string;
|
|
1366
1388
|
sourceTenants: {
|
|
1367
1389
|
id: string;
|
|
1368
1390
|
title: string;
|
|
@@ -1370,10 +1392,7 @@ export declare const registry: {
|
|
|
1370
1392
|
sourceApps: {
|
|
1371
1393
|
id: string;
|
|
1372
1394
|
tenantId: string;
|
|
1373
|
-
tenantTitle: string;
|
|
1374
1395
|
title: string;
|
|
1375
|
-
serviceIds: string[];
|
|
1376
|
-
requiredServiceIds: string[];
|
|
1377
1396
|
}[];
|
|
1378
1397
|
groups: {
|
|
1379
1398
|
id: string;
|
|
@@ -1395,10 +1414,15 @@ export declare const registry: {
|
|
|
1395
1414
|
value: string;
|
|
1396
1415
|
label: string;
|
|
1397
1416
|
}[];
|
|
1417
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
1398
1418
|
control?: string | undefined;
|
|
1399
1419
|
}[];
|
|
1400
1420
|
encryptedTenantConfig: string;
|
|
1401
1421
|
encryptedAppConfig: string;
|
|
1422
|
+
source?: {
|
|
1423
|
+
instanceId: string;
|
|
1424
|
+
hostname: string;
|
|
1425
|
+
} | undefined;
|
|
1402
1426
|
}[];
|
|
1403
1427
|
deployments: {
|
|
1404
1428
|
id: string;
|
|
@@ -1450,6 +1474,7 @@ export declare const registry: {
|
|
|
1450
1474
|
title: string;
|
|
1451
1475
|
previewPath: string;
|
|
1452
1476
|
deploymentApiBase: string;
|
|
1477
|
+
configTicketUrl: string;
|
|
1453
1478
|
sourceTenants: {
|
|
1454
1479
|
id: string;
|
|
1455
1480
|
title: string;
|
|
@@ -1457,10 +1482,7 @@ export declare const registry: {
|
|
|
1457
1482
|
sourceApps: {
|
|
1458
1483
|
id: string;
|
|
1459
1484
|
tenantId: string;
|
|
1460
|
-
tenantTitle: string;
|
|
1461
1485
|
title: string;
|
|
1462
|
-
serviceIds: string[];
|
|
1463
|
-
requiredServiceIds: string[];
|
|
1464
1486
|
}[];
|
|
1465
1487
|
groups: {
|
|
1466
1488
|
id: string;
|
|
@@ -1482,10 +1504,15 @@ export declare const registry: {
|
|
|
1482
1504
|
value: string;
|
|
1483
1505
|
label: string;
|
|
1484
1506
|
}[];
|
|
1507
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
1485
1508
|
control?: string | undefined;
|
|
1486
1509
|
}[];
|
|
1487
1510
|
encryptedTenantConfig: string;
|
|
1488
1511
|
encryptedAppConfig: string;
|
|
1512
|
+
source?: {
|
|
1513
|
+
instanceId: string;
|
|
1514
|
+
hostname: string;
|
|
1515
|
+
} | undefined;
|
|
1489
1516
|
}[];
|
|
1490
1517
|
deployments: {
|
|
1491
1518
|
id: string;
|
|
@@ -1539,6 +1566,7 @@ export declare const registry: {
|
|
|
1539
1566
|
title: import("anyvali").StringSchema;
|
|
1540
1567
|
previewPath: import("anyvali").StringSchema;
|
|
1541
1568
|
deploymentApiBase: import("anyvali").StringSchema;
|
|
1569
|
+
configTicketUrl: import("anyvali").StringSchema;
|
|
1542
1570
|
sourceTenants: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1543
1571
|
id: import("anyvali").StringSchema;
|
|
1544
1572
|
title: import("anyvali").StringSchema;
|
|
@@ -1546,10 +1574,7 @@ export declare const registry: {
|
|
|
1546
1574
|
sourceApps: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1547
1575
|
id: import("anyvali").StringSchema;
|
|
1548
1576
|
tenantId: import("anyvali").StringSchema;
|
|
1549
|
-
tenantTitle: import("anyvali").StringSchema;
|
|
1550
1577
|
title: import("anyvali").StringSchema;
|
|
1551
|
-
serviceIds: import("anyvali").ArraySchema<import("anyvali").StringSchema>;
|
|
1552
|
-
requiredServiceIds: import("anyvali").ArraySchema<import("anyvali").StringSchema>;
|
|
1553
1578
|
}>>;
|
|
1554
1579
|
groups: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1555
1580
|
id: import("anyvali").StringSchema;
|
|
@@ -1575,12 +1600,17 @@ export declare const registry: {
|
|
|
1575
1600
|
scope: import("anyvali").EnumSchema<readonly ["tenant", "app"]>;
|
|
1576
1601
|
secret: import("anyvali").BoolSchema;
|
|
1577
1602
|
required: import("anyvali").BoolSchema;
|
|
1603
|
+
defaultValue: import("anyvali").OptionalSchema<import("anyvali").BaseSchema<unknown, import("@betterportal/framework").JsonValue>>;
|
|
1578
1604
|
control: import("anyvali").OptionalSchema<import("anyvali").StringSchema>;
|
|
1579
1605
|
options: import("anyvali").ArraySchema<import("anyvali").ObjectSchema<{
|
|
1580
1606
|
value: import("anyvali").StringSchema;
|
|
1581
1607
|
label: import("anyvali").StringSchema;
|
|
1582
1608
|
}>>;
|
|
1583
1609
|
}>>;
|
|
1610
|
+
source: import("anyvali").OptionalSchema<import("anyvali").ObjectSchema<{
|
|
1611
|
+
instanceId: import("anyvali").StringSchema;
|
|
1612
|
+
hostname: import("anyvali").StringSchema;
|
|
1613
|
+
}>>;
|
|
1584
1614
|
encryptedTenantConfig: import("anyvali").StringSchema;
|
|
1585
1615
|
encryptedAppConfig: import("anyvali").StringSchema;
|
|
1586
1616
|
}>>;
|
|
@@ -1622,6 +1652,7 @@ export declare const registry: {
|
|
|
1622
1652
|
title: string;
|
|
1623
1653
|
previewPath: string;
|
|
1624
1654
|
deploymentApiBase: string;
|
|
1655
|
+
configTicketUrl: string;
|
|
1625
1656
|
sourceTenants: {
|
|
1626
1657
|
id: string;
|
|
1627
1658
|
title: string;
|
|
@@ -1629,10 +1660,7 @@ export declare const registry: {
|
|
|
1629
1660
|
sourceApps: {
|
|
1630
1661
|
id: string;
|
|
1631
1662
|
tenantId: string;
|
|
1632
|
-
tenantTitle: string;
|
|
1633
1663
|
title: string;
|
|
1634
|
-
serviceIds: string[];
|
|
1635
|
-
requiredServiceIds: string[];
|
|
1636
1664
|
}[];
|
|
1637
1665
|
groups: {
|
|
1638
1666
|
id: string;
|
|
@@ -1654,10 +1682,15 @@ export declare const registry: {
|
|
|
1654
1682
|
value: string;
|
|
1655
1683
|
label: string;
|
|
1656
1684
|
}[];
|
|
1685
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
1657
1686
|
control?: string | undefined;
|
|
1658
1687
|
}[];
|
|
1659
1688
|
encryptedTenantConfig: string;
|
|
1660
1689
|
encryptedAppConfig: string;
|
|
1690
|
+
source?: {
|
|
1691
|
+
instanceId: string;
|
|
1692
|
+
hostname: string;
|
|
1693
|
+
} | undefined;
|
|
1661
1694
|
}[];
|
|
1662
1695
|
deployments: {
|
|
1663
1696
|
id: string;
|
|
@@ -1709,6 +1742,7 @@ export declare const registry: {
|
|
|
1709
1742
|
title: string;
|
|
1710
1743
|
previewPath: string;
|
|
1711
1744
|
deploymentApiBase: string;
|
|
1745
|
+
configTicketUrl: string;
|
|
1712
1746
|
sourceTenants: {
|
|
1713
1747
|
id: string;
|
|
1714
1748
|
title: string;
|
|
@@ -1716,10 +1750,7 @@ export declare const registry: {
|
|
|
1716
1750
|
sourceApps: {
|
|
1717
1751
|
id: string;
|
|
1718
1752
|
tenantId: string;
|
|
1719
|
-
tenantTitle: string;
|
|
1720
1753
|
title: string;
|
|
1721
|
-
serviceIds: string[];
|
|
1722
|
-
requiredServiceIds: string[];
|
|
1723
1754
|
}[];
|
|
1724
1755
|
groups: {
|
|
1725
1756
|
id: string;
|
|
@@ -1741,10 +1772,15 @@ export declare const registry: {
|
|
|
1741
1772
|
value: string;
|
|
1742
1773
|
label: string;
|
|
1743
1774
|
}[];
|
|
1775
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
1744
1776
|
control?: string | undefined;
|
|
1745
1777
|
}[];
|
|
1746
1778
|
encryptedTenantConfig: string;
|
|
1747
1779
|
encryptedAppConfig: string;
|
|
1780
|
+
source?: {
|
|
1781
|
+
instanceId: string;
|
|
1782
|
+
hostname: string;
|
|
1783
|
+
} | undefined;
|
|
1748
1784
|
}[];
|
|
1749
1785
|
deployments: {
|
|
1750
1786
|
id: string;
|
|
@@ -1794,6 +1830,7 @@ export declare const registry: {
|
|
|
1794
1830
|
title: string;
|
|
1795
1831
|
previewPath: string;
|
|
1796
1832
|
deploymentApiBase: string;
|
|
1833
|
+
configTicketUrl: string;
|
|
1797
1834
|
sourceTenants: {
|
|
1798
1835
|
id: string;
|
|
1799
1836
|
title: string;
|
|
@@ -1801,10 +1838,7 @@ export declare const registry: {
|
|
|
1801
1838
|
sourceApps: {
|
|
1802
1839
|
id: string;
|
|
1803
1840
|
tenantId: string;
|
|
1804
|
-
tenantTitle: string;
|
|
1805
1841
|
title: string;
|
|
1806
|
-
serviceIds: string[];
|
|
1807
|
-
requiredServiceIds: string[];
|
|
1808
1842
|
}[];
|
|
1809
1843
|
groups: {
|
|
1810
1844
|
id: string;
|
|
@@ -1826,10 +1860,15 @@ export declare const registry: {
|
|
|
1826
1860
|
value: string;
|
|
1827
1861
|
label: string;
|
|
1828
1862
|
}[];
|
|
1863
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
1829
1864
|
control?: string | undefined;
|
|
1830
1865
|
}[];
|
|
1831
1866
|
encryptedTenantConfig: string;
|
|
1832
1867
|
encryptedAppConfig: string;
|
|
1868
|
+
source?: {
|
|
1869
|
+
instanceId: string;
|
|
1870
|
+
hostname: string;
|
|
1871
|
+
} | undefined;
|
|
1833
1872
|
}[];
|
|
1834
1873
|
deployments: {
|
|
1835
1874
|
id: string;
|
|
@@ -1876,6 +1915,7 @@ export declare const registry: {
|
|
|
1876
1915
|
title: string;
|
|
1877
1916
|
previewPath: string;
|
|
1878
1917
|
deploymentApiBase: string;
|
|
1918
|
+
configTicketUrl: string;
|
|
1879
1919
|
sourceTenants: {
|
|
1880
1920
|
id: string;
|
|
1881
1921
|
title: string;
|
|
@@ -1883,10 +1923,7 @@ export declare const registry: {
|
|
|
1883
1923
|
sourceApps: {
|
|
1884
1924
|
id: string;
|
|
1885
1925
|
tenantId: string;
|
|
1886
|
-
tenantTitle: string;
|
|
1887
1926
|
title: string;
|
|
1888
|
-
serviceIds: string[];
|
|
1889
|
-
requiredServiceIds: string[];
|
|
1890
1927
|
}[];
|
|
1891
1928
|
groups: {
|
|
1892
1929
|
id: string;
|
|
@@ -1908,10 +1945,15 @@ export declare const registry: {
|
|
|
1908
1945
|
value: string;
|
|
1909
1946
|
label: string;
|
|
1910
1947
|
}[];
|
|
1948
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
1911
1949
|
control?: string | undefined;
|
|
1912
1950
|
}[];
|
|
1913
1951
|
encryptedTenantConfig: string;
|
|
1914
1952
|
encryptedAppConfig: string;
|
|
1953
|
+
source?: {
|
|
1954
|
+
instanceId: string;
|
|
1955
|
+
hostname: string;
|
|
1956
|
+
} | undefined;
|
|
1915
1957
|
}[];
|
|
1916
1958
|
deployments: {
|
|
1917
1959
|
id: string;
|
|
@@ -1958,6 +2000,7 @@ export declare const registry: {
|
|
|
1958
2000
|
title: string;
|
|
1959
2001
|
previewPath: string;
|
|
1960
2002
|
deploymentApiBase: string;
|
|
2003
|
+
configTicketUrl: string;
|
|
1961
2004
|
sourceTenants: {
|
|
1962
2005
|
id: string;
|
|
1963
2006
|
title: string;
|
|
@@ -1965,10 +2008,7 @@ export declare const registry: {
|
|
|
1965
2008
|
sourceApps: {
|
|
1966
2009
|
id: string;
|
|
1967
2010
|
tenantId: string;
|
|
1968
|
-
tenantTitle: string;
|
|
1969
2011
|
title: string;
|
|
1970
|
-
serviceIds: string[];
|
|
1971
|
-
requiredServiceIds: string[];
|
|
1972
2012
|
}[];
|
|
1973
2013
|
groups: {
|
|
1974
2014
|
id: string;
|
|
@@ -1990,10 +2030,15 @@ export declare const registry: {
|
|
|
1990
2030
|
value: string;
|
|
1991
2031
|
label: string;
|
|
1992
2032
|
}[];
|
|
2033
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
1993
2034
|
control?: string | undefined;
|
|
1994
2035
|
}[];
|
|
1995
2036
|
encryptedTenantConfig: string;
|
|
1996
2037
|
encryptedAppConfig: string;
|
|
2038
|
+
source?: {
|
|
2039
|
+
instanceId: string;
|
|
2040
|
+
hostname: string;
|
|
2041
|
+
} | undefined;
|
|
1997
2042
|
}[];
|
|
1998
2043
|
deployments: {
|
|
1999
2044
|
id: string;
|
|
@@ -2040,6 +2085,7 @@ export declare const registry: {
|
|
|
2040
2085
|
title: string;
|
|
2041
2086
|
previewPath: string;
|
|
2042
2087
|
deploymentApiBase: string;
|
|
2088
|
+
configTicketUrl: string;
|
|
2043
2089
|
sourceTenants: {
|
|
2044
2090
|
id: string;
|
|
2045
2091
|
title: string;
|
|
@@ -2047,10 +2093,7 @@ export declare const registry: {
|
|
|
2047
2093
|
sourceApps: {
|
|
2048
2094
|
id: string;
|
|
2049
2095
|
tenantId: string;
|
|
2050
|
-
tenantTitle: string;
|
|
2051
2096
|
title: string;
|
|
2052
|
-
serviceIds: string[];
|
|
2053
|
-
requiredServiceIds: string[];
|
|
2054
2097
|
}[];
|
|
2055
2098
|
groups: {
|
|
2056
2099
|
id: string;
|
|
@@ -2072,10 +2115,15 @@ export declare const registry: {
|
|
|
2072
2115
|
value: string;
|
|
2073
2116
|
label: string;
|
|
2074
2117
|
}[];
|
|
2118
|
+
defaultValue?: import("@betterportal/framework").JsonValue | undefined;
|
|
2075
2119
|
control?: string | undefined;
|
|
2076
2120
|
}[];
|
|
2077
2121
|
encryptedTenantConfig: string;
|
|
2078
2122
|
encryptedAppConfig: string;
|
|
2123
|
+
source?: {
|
|
2124
|
+
instanceId: string;
|
|
2125
|
+
hostname: string;
|
|
2126
|
+
} | undefined;
|
|
2079
2127
|
}[];
|
|
2080
2128
|
deployments: {
|
|
2081
2129
|
id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../../../src/plugins/service-betterportal-config-manager/.bp-generated/registry.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,qBAAqB,MAAM,+CAA+C,CAAC;AAGvF,OAAO,KAAK,uBAAuB,MAAM,iDAAiD,CAAC;AAC3F,OAAO,KAAK,qBAAqB,MAAM,+CAA+C,CAAC;AAGvF,OAAO,KAAK,0BAA0B,MAAM,oDAAoD,CAAC;AAGjG,OAAO,KAAK,qBAAqB,MAAM,+CAA+C,CAAC;AAGvF,OAAO,KAAK,wBAAwB,MAAM,kDAAkD,CAAC;AAM7F,OAAO,KAAK,uCAAuC,MAAM,kEAAkE,CAAC;AAM5H,OAAO,KAAK,uBAAuB,MAAM,iDAAiD,CAAC;AAG3F,OAAO,KAAK,yBAAyB,MAAM,mDAAmD,CAAC;AAG/F,OAAO,KAAK,yBAAyB,MAAM,mDAAmD,CAAC;AAM/F,OAAO,KAAK,2BAA2B,MAAM,qDAAqD,CAAC;AAMnG,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../../../src/plugins/service-betterportal-config-manager/.bp-generated/registry.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,qBAAqB,MAAM,+CAA+C,CAAC;AAGvF,OAAO,KAAK,uBAAuB,MAAM,iDAAiD,CAAC;AAC3F,OAAO,KAAK,qBAAqB,MAAM,+CAA+C,CAAC;AAGvF,OAAO,KAAK,0BAA0B,MAAM,oDAAoD,CAAC;AAGjG,OAAO,KAAK,qBAAqB,MAAM,+CAA+C,CAAC;AAGvF,OAAO,KAAK,wBAAwB,MAAM,kDAAkD,CAAC;AAM7F,OAAO,KAAK,uCAAuC,MAAM,kEAAkE,CAAC;AAM5H,OAAO,KAAK,uBAAuB,MAAM,iDAAiD,CAAC;AAG3F,OAAO,KAAK,yBAAyB,MAAM,mDAAmD,CAAC;AAG/F,OAAO,KAAK,yBAAyB,MAAM,mDAAmD,CAAC;AAM/F,OAAO,KAAK,2BAA2B,MAAM,qDAAqD,CAAC;AAMnG,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoOW,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GET.d.ts","sourceRoot":"","sources":["../../../../../../src/plugins/service-betterportal-config-manager/bp-routes/preview-environments/_renderer.bootstrap5/GET.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;
|
|
1
|
+
{"version":3,"file":"GET.d.ts","sourceRoot":"","sources":["../../../../../../src/plugins/service-betterportal-config-manager/bp-routes/preview-environments/_renderer.bootstrap5/GET.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;AA8Y7E,wBAAgB,MAAM,CAAC,IAAI,EAAE,YAAY,GAAG,cAAc,CAyJzD"}
|