@memberjunction/ng-core-entity-forms 2.110.1 → 2.111.1
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/dist/lib/custom/ai-agent-run/ai-agent-run-step-node.component.d.ts +2 -0
- package/dist/lib/custom/ai-agent-run/ai-agent-run-step-node.component.d.ts.map +1 -1
- package/dist/lib/custom/ai-agent-run/ai-agent-run-step-node.component.js +13 -3
- package/dist/lib/custom/ai-agent-run/ai-agent-run-step-node.component.js.map +1 -1
- package/dist/lib/custom/ai-agent-run/ai-agent-run-timeline.component.d.ts +1 -0
- package/dist/lib/custom/ai-agent-run/ai-agent-run-timeline.component.d.ts.map +1 -1
- package/dist/lib/custom/ai-agent-run/ai-agent-run-timeline.component.js +130 -92
- package/dist/lib/custom/ai-agent-run/ai-agent-run-timeline.component.js.map +1 -1
- package/dist/lib/custom/ai-agent-run/ai-agent-run-visualization.component.d.ts.map +1 -1
- package/dist/lib/custom/ai-agent-run/ai-agent-run-visualization.component.js +6 -2
- package/dist/lib/custom/ai-agent-run/ai-agent-run-visualization.component.js.map +1 -1
- package/dist/lib/custom/custom-forms.module.js +1 -1
- package/dist/lib/custom/custom-forms.module.js.map +1 -1
- package/dist/lib/generated/Entities/AIAgent/aiagent.form.component.js +17 -7
- package/dist/lib/generated/Entities/AIAgent/aiagent.form.component.js.map +1 -1
- package/dist/lib/generated/Entities/AIAgent/sections/details.component.d.ts.map +1 -1
- package/dist/lib/generated/Entities/AIAgent/sections/details.component.js +58 -4
- package/dist/lib/generated/Entities/AIAgent/sections/details.component.js.map +1 -1
- package/dist/lib/generated/Entities/AIAgentExample/aiagentexample.form.component.d.ts +10 -0
- package/dist/lib/generated/Entities/AIAgentExample/aiagentexample.form.component.d.ts.map +1 -0
- package/dist/lib/generated/Entities/AIAgentExample/aiagentexample.form.component.js +59 -0
- package/dist/lib/generated/Entities/AIAgentExample/aiagentexample.form.component.js.map +1 -0
- package/dist/lib/generated/Entities/AIAgentExample/sections/details.component.d.ts +11 -0
- package/dist/lib/generated/Entities/AIAgentExample/sections/details.component.d.ts.map +1 -0
- package/dist/lib/generated/Entities/AIAgentExample/sections/details.component.js +236 -0
- package/dist/lib/generated/Entities/AIAgentExample/sections/details.component.js.map +1 -0
- package/dist/lib/generated/Entities/AIAgentNote/sections/details.component.d.ts.map +1 -1
- package/dist/lib/generated/Entities/AIAgentNote/sections/details.component.js +94 -5
- package/dist/lib/generated/Entities/AIAgentNote/sections/details.component.js.map +1 -1
- package/dist/lib/generated/Entities/AIAgentNoteType/sections/details.component.d.ts.map +1 -1
- package/dist/lib/generated/Entities/AIAgentNoteType/sections/details.component.js +22 -4
- package/dist/lib/generated/Entities/AIAgentNoteType/sections/details.component.js.map +1 -1
- package/dist/lib/generated/Entities/AIAgentRun/aiagentrun.form.component.js +27 -7
- package/dist/lib/generated/Entities/AIAgentRun/aiagentrun.form.component.js.map +1 -1
- package/dist/lib/generated/Entities/AIAgentStep/sections/details.component.d.ts.map +1 -1
- package/dist/lib/generated/Entities/AIAgentStep/sections/details.component.js +22 -4
- package/dist/lib/generated/Entities/AIAgentStep/sections/details.component.js.map +1 -1
- package/dist/lib/generated/Entities/AIPrompt/aiprompt.form.component.js +6 -6
- package/dist/lib/generated/Entities/Company/company.form.component.js +23 -3
- package/dist/lib/generated/Entities/Company/company.form.component.js.map +1 -1
- package/dist/lib/generated/Entities/Conversation/conversation.form.component.js +23 -3
- package/dist/lib/generated/Entities/Conversation/conversation.form.component.js.map +1 -1
- package/dist/lib/generated/Entities/ConversationDetail/conversationdetail.form.component.js +26 -6
- package/dist/lib/generated/Entities/ConversationDetail/conversationdetail.form.component.js.map +1 -1
- package/dist/lib/generated/Entities/FileStorageProvider/sections/details.component.d.ts.map +1 -1
- package/dist/lib/generated/Entities/FileStorageProvider/sections/details.component.js +13 -4
- package/dist/lib/generated/Entities/FileStorageProvider/sections/details.component.js.map +1 -1
- package/dist/lib/generated/Entities/User/user.form.component.js +23 -13
- package/dist/lib/generated/Entities/User/user.form.component.js.map +1 -1
- package/dist/lib/generated/generated-forms.module.d.ts +349 -347
- package/dist/lib/generated/generated-forms.module.d.ts.map +1 -1
- package/dist/lib/generated/generated-forms.module.js +98 -90
- package/dist/lib/generated/generated-forms.module.js.map +1 -1
- package/package.json +22 -18
|
@@ -130,6 +130,7 @@ import { ListFormComponent, LoadListFormComponent } from "./Entities/List/list.f
|
|
|
130
130
|
import { AccessControlRuleFormComponent, LoadAccessControlRuleFormComponent } from "./Entities/AccessControlRule/accesscontrolrule.form.component";
|
|
131
131
|
import { AIAgentArtifactTypeFormComponent, LoadAIAgentArtifactTypeFormComponent } from "./Entities/AIAgentArtifactType/aiagentartifacttype.form.component";
|
|
132
132
|
import { AIAgentDataSourceFormComponent, LoadAIAgentDataSourceFormComponent } from "./Entities/AIAgentDataSource/aiagentdatasource.form.component";
|
|
133
|
+
import { AIAgentExampleFormComponent, LoadAIAgentExampleFormComponent } from "./Entities/AIAgentExample/aiagentexample.form.component";
|
|
133
134
|
import { AIAgentPermissionFormComponent, LoadAIAgentPermissionFormComponent } from "./Entities/AIAgentPermission/aiagentpermission.form.component";
|
|
134
135
|
import { AIAgentPromptFormComponent, LoadAIAgentPromptFormComponent } from "./Entities/AIAgentPrompt/aiagentprompt.form.component";
|
|
135
136
|
import { AIAgentRelationshipFormComponent, LoadAIAgentRelationshipFormComponent } from "./Entities/AIAgentRelationship/aiagentrelationship.form.component";
|
|
@@ -352,6 +353,7 @@ import { ListDetailsComponent, LoadListDetailsComponent } from "./Entities/List/
|
|
|
352
353
|
import { AccessControlRuleDetailsComponent, LoadAccessControlRuleDetailsComponent } from "./Entities/AccessControlRule/sections/details.component";
|
|
353
354
|
import { AIAgentArtifactTypeDetailsComponent, LoadAIAgentArtifactTypeDetailsComponent } from "./Entities/AIAgentArtifactType/sections/details.component";
|
|
354
355
|
import { AIAgentDataSourceDetailsComponent, LoadAIAgentDataSourceDetailsComponent } from "./Entities/AIAgentDataSource/sections/details.component";
|
|
356
|
+
import { AIAgentExampleDetailsComponent, LoadAIAgentExampleDetailsComponent } from "./Entities/AIAgentExample/sections/details.component";
|
|
355
357
|
import { AIAgentPermissionDetailsComponent, LoadAIAgentPermissionDetailsComponent } from "./Entities/AIAgentPermission/sections/details.component";
|
|
356
358
|
import { AIAgentPromptDetailsComponent, LoadAIAgentPromptDetailsComponent } from "./Entities/AIAgentPrompt/sections/details.component";
|
|
357
359
|
import { AIAgentRelationshipDetailsComponent, LoadAIAgentRelationshipDetailsComponent } from "./Entities/AIAgentRelationship/sections/details.component";
|
|
@@ -985,6 +987,7 @@ export class GeneratedForms_SubModule_5 {
|
|
|
985
987
|
AccessControlRuleFormComponent,
|
|
986
988
|
AIAgentArtifactTypeFormComponent,
|
|
987
989
|
AIAgentDataSourceFormComponent,
|
|
990
|
+
AIAgentExampleFormComponent,
|
|
988
991
|
AIAgentPermissionFormComponent,
|
|
989
992
|
AIAgentPromptFormComponent,
|
|
990
993
|
AIAgentRelationshipFormComponent,
|
|
@@ -996,8 +999,7 @@ export class GeneratedForms_SubModule_5 {
|
|
|
996
999
|
AIConfigurationParamFormComponent,
|
|
997
1000
|
AIConfigurationFormComponent,
|
|
998
1001
|
AIModelCostFormComponent,
|
|
999
|
-
AIModelPriceTypeFormComponent
|
|
1000
|
-
AIModelPriceUnitTypeFormComponent
|
|
1002
|
+
AIModelPriceTypeFormComponent
|
|
1001
1003
|
],
|
|
1002
1004
|
imports: [
|
|
1003
1005
|
CommonModule,
|
|
@@ -1026,6 +1028,7 @@ export class GeneratedForms_SubModule_5 {
|
|
|
1026
1028
|
AccessControlRuleFormComponent,
|
|
1027
1029
|
AIAgentArtifactTypeFormComponent,
|
|
1028
1030
|
AIAgentDataSourceFormComponent,
|
|
1031
|
+
AIAgentExampleFormComponent,
|
|
1029
1032
|
AIAgentPermissionFormComponent,
|
|
1030
1033
|
AIAgentPromptFormComponent,
|
|
1031
1034
|
AIAgentRelationshipFormComponent,
|
|
@@ -1037,8 +1040,7 @@ export class GeneratedForms_SubModule_5 {
|
|
|
1037
1040
|
AIConfigurationParamFormComponent,
|
|
1038
1041
|
AIConfigurationFormComponent,
|
|
1039
1042
|
AIModelCostFormComponent,
|
|
1040
|
-
AIModelPriceTypeFormComponent,
|
|
1041
|
-
AIModelPriceUnitTypeFormComponent], imports: [CommonModule,
|
|
1043
|
+
AIModelPriceTypeFormComponent], imports: [CommonModule,
|
|
1042
1044
|
FormsModule,
|
|
1043
1045
|
LayoutModule,
|
|
1044
1046
|
InputsModule,
|
|
@@ -1076,6 +1078,7 @@ export class GeneratedForms_SubModule_6 {
|
|
|
1076
1078
|
type: NgModule,
|
|
1077
1079
|
args: [{
|
|
1078
1080
|
declarations: [
|
|
1081
|
+
AIModelPriceUnitTypeFormComponent,
|
|
1079
1082
|
AIModelVendorFormComponent,
|
|
1080
1083
|
AIPromptModelFormComponent,
|
|
1081
1084
|
AIPromptRunFormComponent,
|
|
@@ -1094,8 +1097,7 @@ export class GeneratedForms_SubModule_6 {
|
|
|
1094
1097
|
ComponentLibraryFormComponent,
|
|
1095
1098
|
ComponentLibraryLinkFormComponent,
|
|
1096
1099
|
ComponentRegistryFormComponent,
|
|
1097
|
-
ComponentFormComponent
|
|
1098
|
-
ConversationArtifactPermissionFormComponent
|
|
1100
|
+
ComponentFormComponent
|
|
1099
1101
|
],
|
|
1100
1102
|
imports: [
|
|
1101
1103
|
CommonModule,
|
|
@@ -1117,7 +1119,8 @@ export class GeneratedForms_SubModule_6 {
|
|
|
1117
1119
|
exports: []
|
|
1118
1120
|
}]
|
|
1119
1121
|
}], null, null); })();
|
|
1120
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_6, { declarations: [
|
|
1122
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_6, { declarations: [AIModelPriceUnitTypeFormComponent,
|
|
1123
|
+
AIModelVendorFormComponent,
|
|
1121
1124
|
AIPromptModelFormComponent,
|
|
1122
1125
|
AIPromptRunFormComponent,
|
|
1123
1126
|
AIVendorTypeDefinitionFormComponent,
|
|
@@ -1135,8 +1138,7 @@ export class GeneratedForms_SubModule_6 {
|
|
|
1135
1138
|
ComponentLibraryFormComponent,
|
|
1136
1139
|
ComponentLibraryLinkFormComponent,
|
|
1137
1140
|
ComponentRegistryFormComponent,
|
|
1138
|
-
ComponentFormComponent,
|
|
1139
|
-
ConversationArtifactPermissionFormComponent], imports: [CommonModule,
|
|
1141
|
+
ComponentFormComponent], imports: [CommonModule,
|
|
1140
1142
|
FormsModule,
|
|
1141
1143
|
LayoutModule,
|
|
1142
1144
|
InputsModule,
|
|
@@ -1174,6 +1176,7 @@ export class GeneratedForms_SubModule_7 {
|
|
|
1174
1176
|
type: NgModule,
|
|
1175
1177
|
args: [{
|
|
1176
1178
|
declarations: [
|
|
1179
|
+
ConversationArtifactPermissionFormComponent,
|
|
1177
1180
|
ConversationArtifactVersionFormComponent,
|
|
1178
1181
|
ConversationArtifactFormComponent,
|
|
1179
1182
|
ConversationDetailArtifactFormComponent,
|
|
@@ -1192,8 +1195,7 @@ export class GeneratedForms_SubModule_7 {
|
|
|
1192
1195
|
TaskDependencyFormComponent,
|
|
1193
1196
|
TaskTypeFormComponent,
|
|
1194
1197
|
TaskFormComponent,
|
|
1195
|
-
OutputDeliveryTypeFormComponent
|
|
1196
|
-
OutputFormatTypeFormComponent
|
|
1198
|
+
OutputDeliveryTypeFormComponent
|
|
1197
1199
|
],
|
|
1198
1200
|
imports: [
|
|
1199
1201
|
CommonModule,
|
|
@@ -1215,7 +1217,8 @@ export class GeneratedForms_SubModule_7 {
|
|
|
1215
1217
|
exports: []
|
|
1216
1218
|
}]
|
|
1217
1219
|
}], null, null); })();
|
|
1218
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_7, { declarations: [
|
|
1220
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_7, { declarations: [ConversationArtifactPermissionFormComponent,
|
|
1221
|
+
ConversationArtifactVersionFormComponent,
|
|
1219
1222
|
ConversationArtifactFormComponent,
|
|
1220
1223
|
ConversationDetailArtifactFormComponent,
|
|
1221
1224
|
DashboardUserPreferenceFormComponent,
|
|
@@ -1233,8 +1236,7 @@ export class GeneratedForms_SubModule_7 {
|
|
|
1233
1236
|
TaskDependencyFormComponent,
|
|
1234
1237
|
TaskTypeFormComponent,
|
|
1235
1238
|
TaskFormComponent,
|
|
1236
|
-
OutputDeliveryTypeFormComponent,
|
|
1237
|
-
OutputFormatTypeFormComponent], imports: [CommonModule,
|
|
1239
|
+
OutputDeliveryTypeFormComponent], imports: [CommonModule,
|
|
1238
1240
|
FormsModule,
|
|
1239
1241
|
LayoutModule,
|
|
1240
1242
|
InputsModule,
|
|
@@ -1272,6 +1274,7 @@ export class GeneratedForms_SubModule_8 {
|
|
|
1272
1274
|
type: NgModule,
|
|
1273
1275
|
args: [{
|
|
1274
1276
|
declarations: [
|
|
1277
|
+
OutputFormatTypeFormComponent,
|
|
1275
1278
|
OutputTriggerTypeFormComponent,
|
|
1276
1279
|
QueryFormComponent,
|
|
1277
1280
|
QueryCategoryFormComponent,
|
|
@@ -1290,8 +1293,7 @@ export class GeneratedForms_SubModule_8 {
|
|
|
1290
1293
|
RecordMergeDeletionLogFormComponent,
|
|
1291
1294
|
RecordMergeLogFormComponent,
|
|
1292
1295
|
ReportCategoryFormComponent,
|
|
1293
|
-
ReportSnapshotFormComponent
|
|
1294
|
-
ReportFormComponent
|
|
1296
|
+
ReportSnapshotFormComponent
|
|
1295
1297
|
],
|
|
1296
1298
|
imports: [
|
|
1297
1299
|
CommonModule,
|
|
@@ -1313,7 +1315,8 @@ export class GeneratedForms_SubModule_8 {
|
|
|
1313
1315
|
exports: []
|
|
1314
1316
|
}]
|
|
1315
1317
|
}], null, null); })();
|
|
1316
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_8, { declarations: [
|
|
1318
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_8, { declarations: [OutputFormatTypeFormComponent,
|
|
1319
|
+
OutputTriggerTypeFormComponent,
|
|
1317
1320
|
QueryFormComponent,
|
|
1318
1321
|
QueryCategoryFormComponent,
|
|
1319
1322
|
QueryEntityFormComponent,
|
|
@@ -1331,8 +1334,7 @@ export class GeneratedForms_SubModule_8 {
|
|
|
1331
1334
|
RecordMergeDeletionLogFormComponent,
|
|
1332
1335
|
RecordMergeLogFormComponent,
|
|
1333
1336
|
ReportCategoryFormComponent,
|
|
1334
|
-
ReportSnapshotFormComponent,
|
|
1335
|
-
ReportFormComponent], imports: [CommonModule,
|
|
1337
|
+
ReportSnapshotFormComponent], imports: [CommonModule,
|
|
1336
1338
|
FormsModule,
|
|
1337
1339
|
LayoutModule,
|
|
1338
1340
|
InputsModule,
|
|
@@ -1370,6 +1372,7 @@ export class GeneratedForms_SubModule_9 {
|
|
|
1370
1372
|
type: NgModule,
|
|
1371
1373
|
args: [{
|
|
1372
1374
|
declarations: [
|
|
1375
|
+
ReportFormComponent,
|
|
1373
1376
|
ResourceLinkFormComponent,
|
|
1374
1377
|
ResourcePermissionFormComponent,
|
|
1375
1378
|
ResourceTypeFormComponent,
|
|
@@ -1388,8 +1391,7 @@ export class GeneratedForms_SubModule_9 {
|
|
|
1388
1391
|
TemplateFormComponent,
|
|
1389
1392
|
UserApplicationEntityFormComponent,
|
|
1390
1393
|
UserApplicationFormComponent,
|
|
1391
|
-
UserFavoriteFormComponent
|
|
1392
|
-
UserNotificationFormComponent
|
|
1394
|
+
UserFavoriteFormComponent
|
|
1393
1395
|
],
|
|
1394
1396
|
imports: [
|
|
1395
1397
|
CommonModule,
|
|
@@ -1411,7 +1413,8 @@ export class GeneratedForms_SubModule_9 {
|
|
|
1411
1413
|
exports: []
|
|
1412
1414
|
}]
|
|
1413
1415
|
}], null, null); })();
|
|
1414
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_9, { declarations: [
|
|
1416
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_9, { declarations: [ReportFormComponent,
|
|
1417
|
+
ResourceLinkFormComponent,
|
|
1415
1418
|
ResourcePermissionFormComponent,
|
|
1416
1419
|
ResourceTypeFormComponent,
|
|
1417
1420
|
RoleFormComponent,
|
|
@@ -1429,8 +1432,7 @@ export class GeneratedForms_SubModule_9 {
|
|
|
1429
1432
|
TemplateFormComponent,
|
|
1430
1433
|
UserApplicationEntityFormComponent,
|
|
1431
1434
|
UserApplicationFormComponent,
|
|
1432
|
-
UserFavoriteFormComponent,
|
|
1433
|
-
UserNotificationFormComponent], imports: [CommonModule,
|
|
1435
|
+
UserFavoriteFormComponent], imports: [CommonModule,
|
|
1434
1436
|
FormsModule,
|
|
1435
1437
|
LayoutModule,
|
|
1436
1438
|
InputsModule,
|
|
@@ -1468,6 +1470,7 @@ export class GeneratedForms_SubModule_10 {
|
|
|
1468
1470
|
type: NgModule,
|
|
1469
1471
|
args: [{
|
|
1470
1472
|
declarations: [
|
|
1473
|
+
UserNotificationFormComponent,
|
|
1471
1474
|
UserRecordLogFormComponent,
|
|
1472
1475
|
UserRoleFormComponent,
|
|
1473
1476
|
UserViewCategoryFormComponent,
|
|
@@ -1486,8 +1489,7 @@ export class GeneratedForms_SubModule_10 {
|
|
|
1486
1489
|
ActionAuthorizationDetailsComponent,
|
|
1487
1490
|
ActionCategoryDetailsComponent,
|
|
1488
1491
|
ActionContextTypeDetailsComponent,
|
|
1489
|
-
ActionContextDetailsComponent
|
|
1490
|
-
ActionExecutionLogDetailsComponent
|
|
1492
|
+
ActionContextDetailsComponent
|
|
1491
1493
|
],
|
|
1492
1494
|
imports: [
|
|
1493
1495
|
CommonModule,
|
|
@@ -1509,7 +1511,8 @@ export class GeneratedForms_SubModule_10 {
|
|
|
1509
1511
|
exports: []
|
|
1510
1512
|
}]
|
|
1511
1513
|
}], null, null); })();
|
|
1512
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_10, { declarations: [
|
|
1514
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_10, { declarations: [UserNotificationFormComponent,
|
|
1515
|
+
UserRecordLogFormComponent,
|
|
1513
1516
|
UserRoleFormComponent,
|
|
1514
1517
|
UserViewCategoryFormComponent,
|
|
1515
1518
|
UserViewRunDetailFormComponent,
|
|
@@ -1527,8 +1530,7 @@ export class GeneratedForms_SubModule_10 {
|
|
|
1527
1530
|
ActionAuthorizationDetailsComponent,
|
|
1528
1531
|
ActionCategoryDetailsComponent,
|
|
1529
1532
|
ActionContextTypeDetailsComponent,
|
|
1530
|
-
ActionContextDetailsComponent,
|
|
1531
|
-
ActionExecutionLogDetailsComponent], imports: [CommonModule,
|
|
1533
|
+
ActionContextDetailsComponent], imports: [CommonModule,
|
|
1532
1534
|
FormsModule,
|
|
1533
1535
|
LayoutModule,
|
|
1534
1536
|
InputsModule,
|
|
@@ -1565,6 +1567,7 @@ export class GeneratedForms_SubModule_11 {
|
|
|
1565
1567
|
type: NgModule,
|
|
1566
1568
|
args: [{
|
|
1567
1569
|
declarations: [
|
|
1570
|
+
ActionExecutionLogDetailsComponent,
|
|
1568
1571
|
ActionFilterDetailsComponent,
|
|
1569
1572
|
ActionLibraryDetailsComponent,
|
|
1570
1573
|
ActionParamDetailsComponent,
|
|
@@ -1583,8 +1586,7 @@ export class GeneratedForms_SubModule_11 {
|
|
|
1583
1586
|
AIModelActionDetailsComponent,
|
|
1584
1587
|
AIModelTypeDetailsComponent,
|
|
1585
1588
|
AIModelDetailsComponent,
|
|
1586
|
-
AIPromptCategoryDetailsComponent
|
|
1587
|
-
AIPromptTypeDetailsComponent
|
|
1589
|
+
AIPromptCategoryDetailsComponent
|
|
1588
1590
|
],
|
|
1589
1591
|
imports: [
|
|
1590
1592
|
CommonModule,
|
|
@@ -1605,7 +1607,8 @@ export class GeneratedForms_SubModule_11 {
|
|
|
1605
1607
|
exports: []
|
|
1606
1608
|
}]
|
|
1607
1609
|
}], null, null); })();
|
|
1608
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_11, { declarations: [
|
|
1610
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_11, { declarations: [ActionExecutionLogDetailsComponent,
|
|
1611
|
+
ActionFilterDetailsComponent,
|
|
1609
1612
|
ActionLibraryDetailsComponent,
|
|
1610
1613
|
ActionParamDetailsComponent,
|
|
1611
1614
|
ActionResultCodeDetailsComponent,
|
|
@@ -1623,8 +1626,7 @@ export class GeneratedForms_SubModule_11 {
|
|
|
1623
1626
|
AIModelActionDetailsComponent,
|
|
1624
1627
|
AIModelTypeDetailsComponent,
|
|
1625
1628
|
AIModelDetailsComponent,
|
|
1626
|
-
AIPromptCategoryDetailsComponent,
|
|
1627
|
-
AIPromptTypeDetailsComponent], imports: [CommonModule,
|
|
1629
|
+
AIPromptCategoryDetailsComponent], imports: [CommonModule,
|
|
1628
1630
|
FormsModule,
|
|
1629
1631
|
LayoutModule,
|
|
1630
1632
|
InputsModule,
|
|
@@ -1660,6 +1662,7 @@ export class GeneratedForms_SubModule_12 {
|
|
|
1660
1662
|
type: NgModule,
|
|
1661
1663
|
args: [{
|
|
1662
1664
|
declarations: [
|
|
1665
|
+
AIPromptTypeDetailsComponent,
|
|
1663
1666
|
AIPromptDetailsComponent,
|
|
1664
1667
|
AIResultCacheDetailsComponent,
|
|
1665
1668
|
ApplicationEntityDetailsComponent,
|
|
@@ -1678,8 +1681,7 @@ export class GeneratedForms_SubModule_12 {
|
|
|
1678
1681
|
CompanyIntegrationRecordMapDetailsComponent,
|
|
1679
1682
|
CompanyIntegrationRunAPILogDetailsComponent,
|
|
1680
1683
|
CompanyIntegrationRunDetailDetailsComponent,
|
|
1681
|
-
CompanyIntegrationRunDetailsComponent
|
|
1682
|
-
CompanyIntegrationDetailsComponent
|
|
1684
|
+
CompanyIntegrationRunDetailsComponent
|
|
1683
1685
|
],
|
|
1684
1686
|
imports: [
|
|
1685
1687
|
CommonModule,
|
|
@@ -1700,7 +1702,8 @@ export class GeneratedForms_SubModule_12 {
|
|
|
1700
1702
|
exports: []
|
|
1701
1703
|
}]
|
|
1702
1704
|
}], null, null); })();
|
|
1703
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_12, { declarations: [
|
|
1705
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_12, { declarations: [AIPromptTypeDetailsComponent,
|
|
1706
|
+
AIPromptDetailsComponent,
|
|
1704
1707
|
AIResultCacheDetailsComponent,
|
|
1705
1708
|
ApplicationEntityDetailsComponent,
|
|
1706
1709
|
ApplicationSettingDetailsComponent,
|
|
@@ -1718,8 +1721,7 @@ export class GeneratedForms_SubModule_12 {
|
|
|
1718
1721
|
CompanyIntegrationRecordMapDetailsComponent,
|
|
1719
1722
|
CompanyIntegrationRunAPILogDetailsComponent,
|
|
1720
1723
|
CompanyIntegrationRunDetailDetailsComponent,
|
|
1721
|
-
CompanyIntegrationRunDetailsComponent,
|
|
1722
|
-
CompanyIntegrationDetailsComponent], imports: [CommonModule,
|
|
1724
|
+
CompanyIntegrationRunDetailsComponent], imports: [CommonModule,
|
|
1723
1725
|
FormsModule,
|
|
1724
1726
|
LayoutModule,
|
|
1725
1727
|
InputsModule,
|
|
@@ -1755,6 +1757,7 @@ export class GeneratedForms_SubModule_13 {
|
|
|
1755
1757
|
type: NgModule,
|
|
1756
1758
|
args: [{
|
|
1757
1759
|
declarations: [
|
|
1760
|
+
CompanyIntegrationDetailsComponent,
|
|
1758
1761
|
ContentFileTypeDetailsComponent,
|
|
1759
1762
|
ContentItemAttributeDetailsComponent,
|
|
1760
1763
|
ContentItemTagDetailsComponent,
|
|
@@ -1773,8 +1776,7 @@ export class GeneratedForms_SubModule_13 {
|
|
|
1773
1776
|
DataContextItemDetailsComponent,
|
|
1774
1777
|
DataContextDetailsComponent,
|
|
1775
1778
|
DatasetItemDetailsComponent,
|
|
1776
|
-
DatasetDetailsComponent
|
|
1777
|
-
DuplicateRunDetailMatchDetailsComponent
|
|
1779
|
+
DatasetDetailsComponent
|
|
1778
1780
|
],
|
|
1779
1781
|
imports: [
|
|
1780
1782
|
CommonModule,
|
|
@@ -1795,7 +1797,8 @@ export class GeneratedForms_SubModule_13 {
|
|
|
1795
1797
|
exports: []
|
|
1796
1798
|
}]
|
|
1797
1799
|
}], null, null); })();
|
|
1798
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_13, { declarations: [
|
|
1800
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_13, { declarations: [CompanyIntegrationDetailsComponent,
|
|
1801
|
+
ContentFileTypeDetailsComponent,
|
|
1799
1802
|
ContentItemAttributeDetailsComponent,
|
|
1800
1803
|
ContentItemTagDetailsComponent,
|
|
1801
1804
|
ContentItemDetailsComponent,
|
|
@@ -1813,8 +1816,7 @@ export class GeneratedForms_SubModule_13 {
|
|
|
1813
1816
|
DataContextItemDetailsComponent,
|
|
1814
1817
|
DataContextDetailsComponent,
|
|
1815
1818
|
DatasetItemDetailsComponent,
|
|
1816
|
-
DatasetDetailsComponent,
|
|
1817
|
-
DuplicateRunDetailMatchDetailsComponent], imports: [CommonModule,
|
|
1819
|
+
DatasetDetailsComponent], imports: [CommonModule,
|
|
1818
1820
|
FormsModule,
|
|
1819
1821
|
LayoutModule,
|
|
1820
1822
|
InputsModule,
|
|
@@ -1850,6 +1852,7 @@ export class GeneratedForms_SubModule_14 {
|
|
|
1850
1852
|
type: NgModule,
|
|
1851
1853
|
args: [{
|
|
1852
1854
|
declarations: [
|
|
1855
|
+
DuplicateRunDetailMatchDetailsComponent,
|
|
1853
1856
|
DuplicateRunDetailDetailsComponent,
|
|
1854
1857
|
DuplicateRunDetailsComponent,
|
|
1855
1858
|
EmployeeCompanyIntegrationDetailsComponent,
|
|
@@ -1868,8 +1871,7 @@ export class GeneratedForms_SubModule_14 {
|
|
|
1868
1871
|
EntityActionParamDetailsComponent,
|
|
1869
1872
|
EntityActionDetailsComponent,
|
|
1870
1873
|
EntityAIActionDetailsComponent,
|
|
1871
|
-
EntityCommunicationFieldDetailsComponent
|
|
1872
|
-
EntityCommunicationMessageTypeDetailsComponent
|
|
1874
|
+
EntityCommunicationFieldDetailsComponent
|
|
1873
1875
|
],
|
|
1874
1876
|
imports: [
|
|
1875
1877
|
CommonModule,
|
|
@@ -1890,7 +1892,8 @@ export class GeneratedForms_SubModule_14 {
|
|
|
1890
1892
|
exports: []
|
|
1891
1893
|
}]
|
|
1892
1894
|
}], null, null); })();
|
|
1893
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_14, { declarations: [
|
|
1895
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_14, { declarations: [DuplicateRunDetailMatchDetailsComponent,
|
|
1896
|
+
DuplicateRunDetailDetailsComponent,
|
|
1894
1897
|
DuplicateRunDetailsComponent,
|
|
1895
1898
|
EmployeeCompanyIntegrationDetailsComponent,
|
|
1896
1899
|
EmployeeRoleDetailsComponent,
|
|
@@ -1908,8 +1911,7 @@ export class GeneratedForms_SubModule_14 {
|
|
|
1908
1911
|
EntityActionParamDetailsComponent,
|
|
1909
1912
|
EntityActionDetailsComponent,
|
|
1910
1913
|
EntityAIActionDetailsComponent,
|
|
1911
|
-
EntityCommunicationFieldDetailsComponent,
|
|
1912
|
-
EntityCommunicationMessageTypeDetailsComponent], imports: [CommonModule,
|
|
1914
|
+
EntityCommunicationFieldDetailsComponent], imports: [CommonModule,
|
|
1913
1915
|
FormsModule,
|
|
1914
1916
|
LayoutModule,
|
|
1915
1917
|
InputsModule,
|
|
@@ -1945,6 +1947,7 @@ export class GeneratedForms_SubModule_15 {
|
|
|
1945
1947
|
type: NgModule,
|
|
1946
1948
|
args: [{
|
|
1947
1949
|
declarations: [
|
|
1950
|
+
EntityCommunicationMessageTypeDetailsComponent,
|
|
1948
1951
|
EntityDocumentRunDetailsComponent,
|
|
1949
1952
|
EntityDocumentSettingDetailsComponent,
|
|
1950
1953
|
EntityDocumentTypeDetailsComponent,
|
|
@@ -1963,8 +1966,7 @@ export class GeneratedForms_SubModule_15 {
|
|
|
1963
1966
|
FileStorageProviderDetailsComponent,
|
|
1964
1967
|
FileDetailsComponent,
|
|
1965
1968
|
GeneratedCodeCategoryDetailsComponent,
|
|
1966
|
-
GeneratedCodeDetailsComponent
|
|
1967
|
-
IntegrationURLFormatDetailsComponent
|
|
1969
|
+
GeneratedCodeDetailsComponent
|
|
1968
1970
|
],
|
|
1969
1971
|
imports: [
|
|
1970
1972
|
CommonModule,
|
|
@@ -1985,7 +1987,8 @@ export class GeneratedForms_SubModule_15 {
|
|
|
1985
1987
|
exports: []
|
|
1986
1988
|
}]
|
|
1987
1989
|
}], null, null); })();
|
|
1988
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_15, { declarations: [
|
|
1990
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_15, { declarations: [EntityCommunicationMessageTypeDetailsComponent,
|
|
1991
|
+
EntityDocumentRunDetailsComponent,
|
|
1989
1992
|
EntityDocumentSettingDetailsComponent,
|
|
1990
1993
|
EntityDocumentTypeDetailsComponent,
|
|
1991
1994
|
EntityDocumentDetailsComponent,
|
|
@@ -2003,8 +2006,7 @@ export class GeneratedForms_SubModule_15 {
|
|
|
2003
2006
|
FileStorageProviderDetailsComponent,
|
|
2004
2007
|
FileDetailsComponent,
|
|
2005
2008
|
GeneratedCodeCategoryDetailsComponent,
|
|
2006
|
-
GeneratedCodeDetailsComponent,
|
|
2007
|
-
IntegrationURLFormatDetailsComponent], imports: [CommonModule,
|
|
2009
|
+
GeneratedCodeDetailsComponent], imports: [CommonModule,
|
|
2008
2010
|
FormsModule,
|
|
2009
2011
|
LayoutModule,
|
|
2010
2012
|
InputsModule,
|
|
@@ -2040,6 +2042,7 @@ export class GeneratedForms_SubModule_16 {
|
|
|
2040
2042
|
type: NgModule,
|
|
2041
2043
|
args: [{
|
|
2042
2044
|
declarations: [
|
|
2045
|
+
IntegrationURLFormatDetailsComponent,
|
|
2043
2046
|
IntegrationDetailsComponent,
|
|
2044
2047
|
LibraryDetailsComponent,
|
|
2045
2048
|
LibraryItemDetailsComponent,
|
|
@@ -2049,6 +2052,7 @@ export class GeneratedForms_SubModule_16 {
|
|
|
2049
2052
|
AccessControlRuleDetailsComponent,
|
|
2050
2053
|
AIAgentArtifactTypeDetailsComponent,
|
|
2051
2054
|
AIAgentDataSourceDetailsComponent,
|
|
2055
|
+
AIAgentExampleDetailsComponent,
|
|
2052
2056
|
AIAgentPermissionDetailsComponent,
|
|
2053
2057
|
AIAgentPromptDetailsComponent,
|
|
2054
2058
|
AIAgentRelationshipDetailsComponent,
|
|
@@ -2057,9 +2061,7 @@ export class GeneratedForms_SubModule_16 {
|
|
|
2057
2061
|
AIAgentStepPathDetailsComponent,
|
|
2058
2062
|
AIAgentStepDetailsComponent,
|
|
2059
2063
|
AIAgentTypeDetailsComponent,
|
|
2060
|
-
AIConfigurationParamDetailsComponent
|
|
2061
|
-
AIConfigurationDetailsComponent,
|
|
2062
|
-
AIModelCostDetailsComponent
|
|
2064
|
+
AIConfigurationParamDetailsComponent
|
|
2063
2065
|
],
|
|
2064
2066
|
imports: [
|
|
2065
2067
|
CommonModule,
|
|
@@ -2080,7 +2082,8 @@ export class GeneratedForms_SubModule_16 {
|
|
|
2080
2082
|
exports: []
|
|
2081
2083
|
}]
|
|
2082
2084
|
}], null, null); })();
|
|
2083
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_16, { declarations: [
|
|
2085
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_16, { declarations: [IntegrationURLFormatDetailsComponent,
|
|
2086
|
+
IntegrationDetailsComponent,
|
|
2084
2087
|
LibraryDetailsComponent,
|
|
2085
2088
|
LibraryItemDetailsComponent,
|
|
2086
2089
|
ListCategoryDetailsComponent,
|
|
@@ -2089,6 +2092,7 @@ export class GeneratedForms_SubModule_16 {
|
|
|
2089
2092
|
AccessControlRuleDetailsComponent,
|
|
2090
2093
|
AIAgentArtifactTypeDetailsComponent,
|
|
2091
2094
|
AIAgentDataSourceDetailsComponent,
|
|
2095
|
+
AIAgentExampleDetailsComponent,
|
|
2092
2096
|
AIAgentPermissionDetailsComponent,
|
|
2093
2097
|
AIAgentPromptDetailsComponent,
|
|
2094
2098
|
AIAgentRelationshipDetailsComponent,
|
|
@@ -2097,9 +2101,7 @@ export class GeneratedForms_SubModule_16 {
|
|
|
2097
2101
|
AIAgentStepPathDetailsComponent,
|
|
2098
2102
|
AIAgentStepDetailsComponent,
|
|
2099
2103
|
AIAgentTypeDetailsComponent,
|
|
2100
|
-
AIConfigurationParamDetailsComponent,
|
|
2101
|
-
AIConfigurationDetailsComponent,
|
|
2102
|
-
AIModelCostDetailsComponent], imports: [CommonModule,
|
|
2104
|
+
AIConfigurationParamDetailsComponent], imports: [CommonModule,
|
|
2103
2105
|
FormsModule,
|
|
2104
2106
|
LayoutModule,
|
|
2105
2107
|
InputsModule,
|
|
@@ -2135,6 +2137,8 @@ export class GeneratedForms_SubModule_17 {
|
|
|
2135
2137
|
type: NgModule,
|
|
2136
2138
|
args: [{
|
|
2137
2139
|
declarations: [
|
|
2140
|
+
AIConfigurationDetailsComponent,
|
|
2141
|
+
AIModelCostDetailsComponent,
|
|
2138
2142
|
AIModelPriceTypeDetailsComponent,
|
|
2139
2143
|
AIModelPriceUnitTypeDetailsComponent,
|
|
2140
2144
|
AIModelVendorDetailsComponent,
|
|
@@ -2152,9 +2156,7 @@ export class GeneratedForms_SubModule_17 {
|
|
|
2152
2156
|
CollectionPermissionDetailsComponent,
|
|
2153
2157
|
CollectionDetailsComponent,
|
|
2154
2158
|
ComponentDependencyDetailsComponent,
|
|
2155
|
-
ComponentLibraryDetailsComponent
|
|
2156
|
-
ComponentLibraryLinkDetailsComponent,
|
|
2157
|
-
ComponentRegistryDetailsComponent
|
|
2159
|
+
ComponentLibraryDetailsComponent
|
|
2158
2160
|
],
|
|
2159
2161
|
imports: [
|
|
2160
2162
|
CommonModule,
|
|
@@ -2175,7 +2177,9 @@ export class GeneratedForms_SubModule_17 {
|
|
|
2175
2177
|
exports: []
|
|
2176
2178
|
}]
|
|
2177
2179
|
}], null, null); })();
|
|
2178
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_17, { declarations: [
|
|
2180
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_17, { declarations: [AIConfigurationDetailsComponent,
|
|
2181
|
+
AIModelCostDetailsComponent,
|
|
2182
|
+
AIModelPriceTypeDetailsComponent,
|
|
2179
2183
|
AIModelPriceUnitTypeDetailsComponent,
|
|
2180
2184
|
AIModelVendorDetailsComponent,
|
|
2181
2185
|
AIPromptModelDetailsComponent,
|
|
@@ -2192,9 +2196,7 @@ export class GeneratedForms_SubModule_17 {
|
|
|
2192
2196
|
CollectionPermissionDetailsComponent,
|
|
2193
2197
|
CollectionDetailsComponent,
|
|
2194
2198
|
ComponentDependencyDetailsComponent,
|
|
2195
|
-
ComponentLibraryDetailsComponent,
|
|
2196
|
-
ComponentLibraryLinkDetailsComponent,
|
|
2197
|
-
ComponentRegistryDetailsComponent], imports: [CommonModule,
|
|
2199
|
+
ComponentLibraryDetailsComponent], imports: [CommonModule,
|
|
2198
2200
|
FormsModule,
|
|
2199
2201
|
LayoutModule,
|
|
2200
2202
|
InputsModule,
|
|
@@ -2230,6 +2232,8 @@ export class GeneratedForms_SubModule_18 {
|
|
|
2230
2232
|
type: NgModule,
|
|
2231
2233
|
args: [{
|
|
2232
2234
|
declarations: [
|
|
2235
|
+
ComponentLibraryLinkDetailsComponent,
|
|
2236
|
+
ComponentRegistryDetailsComponent,
|
|
2233
2237
|
ComponentDetailsComponent,
|
|
2234
2238
|
ConversationArtifactPermissionDetailsComponent,
|
|
2235
2239
|
ConversationArtifactVersionDetailsComponent,
|
|
@@ -2247,9 +2251,7 @@ export class GeneratedForms_SubModule_18 {
|
|
|
2247
2251
|
ScheduledJobRunDetailsComponent,
|
|
2248
2252
|
ScheduledJobTypeDetailsComponent,
|
|
2249
2253
|
ScheduledJobDetailsComponent,
|
|
2250
|
-
TaskDependencyDetailsComponent
|
|
2251
|
-
TaskTypeDetailsComponent,
|
|
2252
|
-
TaskDetailsComponent
|
|
2254
|
+
TaskDependencyDetailsComponent
|
|
2253
2255
|
],
|
|
2254
2256
|
imports: [
|
|
2255
2257
|
CommonModule,
|
|
@@ -2270,7 +2272,9 @@ export class GeneratedForms_SubModule_18 {
|
|
|
2270
2272
|
exports: []
|
|
2271
2273
|
}]
|
|
2272
2274
|
}], null, null); })();
|
|
2273
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_18, { declarations: [
|
|
2275
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_18, { declarations: [ComponentLibraryLinkDetailsComponent,
|
|
2276
|
+
ComponentRegistryDetailsComponent,
|
|
2277
|
+
ComponentDetailsComponent,
|
|
2274
2278
|
ConversationArtifactPermissionDetailsComponent,
|
|
2275
2279
|
ConversationArtifactVersionDetailsComponent,
|
|
2276
2280
|
ConversationArtifactDetailsComponent,
|
|
@@ -2287,9 +2291,7 @@ export class GeneratedForms_SubModule_18 {
|
|
|
2287
2291
|
ScheduledJobRunDetailsComponent,
|
|
2288
2292
|
ScheduledJobTypeDetailsComponent,
|
|
2289
2293
|
ScheduledJobDetailsComponent,
|
|
2290
|
-
TaskDependencyDetailsComponent,
|
|
2291
|
-
TaskTypeDetailsComponent,
|
|
2292
|
-
TaskDetailsComponent], imports: [CommonModule,
|
|
2294
|
+
TaskDependencyDetailsComponent], imports: [CommonModule,
|
|
2293
2295
|
FormsModule,
|
|
2294
2296
|
LayoutModule,
|
|
2295
2297
|
InputsModule,
|
|
@@ -2325,6 +2327,8 @@ export class GeneratedForms_SubModule_19 {
|
|
|
2325
2327
|
type: NgModule,
|
|
2326
2328
|
args: [{
|
|
2327
2329
|
declarations: [
|
|
2330
|
+
TaskTypeDetailsComponent,
|
|
2331
|
+
TaskDetailsComponent,
|
|
2328
2332
|
OutputDeliveryTypeDetailsComponent,
|
|
2329
2333
|
OutputFormatTypeDetailsComponent,
|
|
2330
2334
|
OutputTriggerTypeDetailsComponent,
|
|
@@ -2342,9 +2346,7 @@ export class GeneratedForms_SubModule_19 {
|
|
|
2342
2346
|
RecommendationDetailsComponent,
|
|
2343
2347
|
RecordChangeReplayRunDetailsComponent,
|
|
2344
2348
|
RecordChangeDetailsComponent,
|
|
2345
|
-
RecordMergeDeletionLogDetailsComponent
|
|
2346
|
-
RecordMergeLogDetailsComponent,
|
|
2347
|
-
ReportCategoryDetailsComponent
|
|
2349
|
+
RecordMergeDeletionLogDetailsComponent
|
|
2348
2350
|
],
|
|
2349
2351
|
imports: [
|
|
2350
2352
|
CommonModule,
|
|
@@ -2365,7 +2367,9 @@ export class GeneratedForms_SubModule_19 {
|
|
|
2365
2367
|
exports: []
|
|
2366
2368
|
}]
|
|
2367
2369
|
}], null, null); })();
|
|
2368
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_19, { declarations: [
|
|
2370
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_19, { declarations: [TaskTypeDetailsComponent,
|
|
2371
|
+
TaskDetailsComponent,
|
|
2372
|
+
OutputDeliveryTypeDetailsComponent,
|
|
2369
2373
|
OutputFormatTypeDetailsComponent,
|
|
2370
2374
|
OutputTriggerTypeDetailsComponent,
|
|
2371
2375
|
QueryDetailsComponent,
|
|
@@ -2382,9 +2386,7 @@ export class GeneratedForms_SubModule_19 {
|
|
|
2382
2386
|
RecommendationDetailsComponent,
|
|
2383
2387
|
RecordChangeReplayRunDetailsComponent,
|
|
2384
2388
|
RecordChangeDetailsComponent,
|
|
2385
|
-
RecordMergeDeletionLogDetailsComponent,
|
|
2386
|
-
RecordMergeLogDetailsComponent,
|
|
2387
|
-
ReportCategoryDetailsComponent], imports: [CommonModule,
|
|
2389
|
+
RecordMergeDeletionLogDetailsComponent], imports: [CommonModule,
|
|
2388
2390
|
FormsModule,
|
|
2389
2391
|
LayoutModule,
|
|
2390
2392
|
InputsModule,
|
|
@@ -2420,6 +2422,8 @@ export class GeneratedForms_SubModule_20 {
|
|
|
2420
2422
|
type: NgModule,
|
|
2421
2423
|
args: [{
|
|
2422
2424
|
declarations: [
|
|
2425
|
+
RecordMergeLogDetailsComponent,
|
|
2426
|
+
ReportCategoryDetailsComponent,
|
|
2423
2427
|
ReportSnapshotDetailsComponent,
|
|
2424
2428
|
ReportDetailsComponent,
|
|
2425
2429
|
ResourceLinkDetailsComponent,
|
|
@@ -2437,9 +2441,7 @@ export class GeneratedForms_SubModule_20 {
|
|
|
2437
2441
|
TemplateContentTypeDetailsComponent,
|
|
2438
2442
|
TemplateContentDetailsComponent,
|
|
2439
2443
|
TemplateParamDetailsComponent,
|
|
2440
|
-
TemplateDetailsComponent
|
|
2441
|
-
UserApplicationEntityDetailsComponent,
|
|
2442
|
-
UserApplicationDetailsComponent
|
|
2444
|
+
TemplateDetailsComponent
|
|
2443
2445
|
],
|
|
2444
2446
|
imports: [
|
|
2445
2447
|
CommonModule,
|
|
@@ -2460,7 +2462,9 @@ export class GeneratedForms_SubModule_20 {
|
|
|
2460
2462
|
exports: []
|
|
2461
2463
|
}]
|
|
2462
2464
|
}], null, null); })();
|
|
2463
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_20, { declarations: [
|
|
2465
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_20, { declarations: [RecordMergeLogDetailsComponent,
|
|
2466
|
+
ReportCategoryDetailsComponent,
|
|
2467
|
+
ReportSnapshotDetailsComponent,
|
|
2464
2468
|
ReportDetailsComponent,
|
|
2465
2469
|
ResourceLinkDetailsComponent,
|
|
2466
2470
|
ResourcePermissionDetailsComponent,
|
|
@@ -2477,9 +2481,7 @@ export class GeneratedForms_SubModule_20 {
|
|
|
2477
2481
|
TemplateContentTypeDetailsComponent,
|
|
2478
2482
|
TemplateContentDetailsComponent,
|
|
2479
2483
|
TemplateParamDetailsComponent,
|
|
2480
|
-
TemplateDetailsComponent,
|
|
2481
|
-
UserApplicationEntityDetailsComponent,
|
|
2482
|
-
UserApplicationDetailsComponent], imports: [CommonModule,
|
|
2484
|
+
TemplateDetailsComponent], imports: [CommonModule,
|
|
2483
2485
|
FormsModule,
|
|
2484
2486
|
LayoutModule,
|
|
2485
2487
|
InputsModule,
|
|
@@ -2515,6 +2517,8 @@ export class GeneratedForms_SubModule_21 {
|
|
|
2515
2517
|
type: NgModule,
|
|
2516
2518
|
args: [{
|
|
2517
2519
|
declarations: [
|
|
2520
|
+
UserApplicationEntityDetailsComponent,
|
|
2521
|
+
UserApplicationDetailsComponent,
|
|
2518
2522
|
UserFavoriteDetailsComponent,
|
|
2519
2523
|
UserNotificationDetailsComponent,
|
|
2520
2524
|
UserRecordLogDetailsComponent,
|
|
@@ -2552,7 +2556,9 @@ export class GeneratedForms_SubModule_21 {
|
|
|
2552
2556
|
exports: []
|
|
2553
2557
|
}]
|
|
2554
2558
|
}], null, null); })();
|
|
2555
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_21, { declarations: [
|
|
2559
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_21, { declarations: [UserApplicationEntityDetailsComponent,
|
|
2560
|
+
UserApplicationDetailsComponent,
|
|
2561
|
+
UserFavoriteDetailsComponent,
|
|
2556
2562
|
UserNotificationDetailsComponent,
|
|
2557
2563
|
UserRecordLogDetailsComponent,
|
|
2558
2564
|
UserRoleDetailsComponent,
|
|
@@ -2752,6 +2758,7 @@ export function LoadCoreGeneratedForms() {
|
|
|
2752
2758
|
LoadAccessControlRuleFormComponent();
|
|
2753
2759
|
LoadAIAgentArtifactTypeFormComponent();
|
|
2754
2760
|
LoadAIAgentDataSourceFormComponent();
|
|
2761
|
+
LoadAIAgentExampleFormComponent();
|
|
2755
2762
|
LoadAIAgentPermissionFormComponent();
|
|
2756
2763
|
LoadAIAgentPromptFormComponent();
|
|
2757
2764
|
LoadAIAgentRelationshipFormComponent();
|
|
@@ -2974,6 +2981,7 @@ export function LoadCoreGeneratedForms() {
|
|
|
2974
2981
|
LoadAccessControlRuleDetailsComponent();
|
|
2975
2982
|
LoadAIAgentArtifactTypeDetailsComponent();
|
|
2976
2983
|
LoadAIAgentDataSourceDetailsComponent();
|
|
2984
|
+
LoadAIAgentExampleDetailsComponent();
|
|
2977
2985
|
LoadAIAgentPermissionDetailsComponent();
|
|
2978
2986
|
LoadAIAgentPromptDetailsComponent();
|
|
2979
2987
|
LoadAIAgentRelationshipDetailsComponent();
|