@memberjunction/core-entities 2.133.0 → 3.0.0
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/custom/AIAgentExtended.d.ts +13 -0
- package/dist/custom/AIAgentExtended.d.ts.map +1 -0
- package/dist/custom/AIAgentExtended.js +37 -0
- package/dist/custom/AIAgentExtended.js.map +1 -0
- package/dist/custom/AIAgentRunExtended.d.ts +32 -0
- package/dist/custom/AIAgentRunExtended.d.ts.map +1 -0
- package/dist/custom/AIAgentRunExtended.js +136 -0
- package/dist/custom/AIAgentRunExtended.js.map +1 -0
- package/dist/custom/AIAgentRunStepExtended.d.ts +48 -0
- package/dist/custom/AIAgentRunStepExtended.d.ts.map +1 -0
- package/dist/custom/AIAgentRunStepExtended.js +149 -0
- package/dist/custom/AIAgentRunStepExtended.js.map +1 -0
- package/dist/custom/AIModelExtended.d.ts +14 -0
- package/dist/custom/AIModelExtended.d.ts.map +1 -0
- package/dist/custom/AIModelExtended.js +36 -0
- package/dist/custom/AIModelExtended.js.map +1 -0
- package/dist/custom/AIPromptCategoryExtended.d.ts +7 -0
- package/dist/custom/AIPromptCategoryExtended.d.ts.map +1 -0
- package/dist/custom/AIPromptCategoryExtended.js +26 -0
- package/dist/custom/AIPromptCategoryExtended.js.map +1 -0
- package/dist/custom/AIPromptExtended.d.ts +51 -0
- package/dist/custom/AIPromptExtended.d.ts.map +1 -0
- package/dist/custom/AIPromptExtended.js +169 -0
- package/dist/custom/AIPromptExtended.js.map +1 -0
- package/dist/custom/AIPromptRunEntityExtended.d.ts +47 -0
- package/dist/custom/AIPromptRunEntityExtended.d.ts.map +1 -0
- package/dist/custom/AIPromptRunEntityExtended.js +156 -0
- package/dist/custom/AIPromptRunEntityExtended.js.map +1 -0
- package/dist/custom/TypeTablesCache.d.ts +12 -0
- package/dist/custom/TypeTablesCache.d.ts.map +1 -0
- package/dist/custom/TypeTablesCache.js +31 -0
- package/dist/custom/TypeTablesCache.js.map +1 -0
- package/dist/generated/entity_subclasses.d.ts +295 -2
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +408 -1
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/package.json +5 -5
|
@@ -614,6 +614,8 @@ export declare const AIAgentNoteSchema: z.ZodObject<{
|
|
|
614
614
|
AgentNoteType: z.ZodNullable<z.ZodString>;
|
|
615
615
|
User: z.ZodNullable<z.ZodString>;
|
|
616
616
|
SourceConversation: z.ZodNullable<z.ZodString>;
|
|
617
|
+
SourceConversationDetail: z.ZodNullable<z.ZodString>;
|
|
618
|
+
SourceAIAgentRun: z.ZodNullable<z.ZodString>;
|
|
617
619
|
Company: z.ZodNullable<z.ZodString>;
|
|
618
620
|
EmbeddingModel: z.ZodNullable<z.ZodString>;
|
|
619
621
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -638,6 +640,8 @@ export declare const AIAgentNoteSchema: z.ZodObject<{
|
|
|
638
640
|
EmbeddingModelID?: string;
|
|
639
641
|
AgentNoteType?: string;
|
|
640
642
|
SourceConversation?: string;
|
|
643
|
+
SourceConversationDetail?: string;
|
|
644
|
+
SourceAIAgentRun?: string;
|
|
641
645
|
Company?: string;
|
|
642
646
|
EmbeddingModel?: string;
|
|
643
647
|
}, {
|
|
@@ -662,6 +666,8 @@ export declare const AIAgentNoteSchema: z.ZodObject<{
|
|
|
662
666
|
EmbeddingModelID?: string;
|
|
663
667
|
AgentNoteType?: string;
|
|
664
668
|
SourceConversation?: string;
|
|
669
|
+
SourceConversationDetail?: string;
|
|
670
|
+
SourceAIAgentRun?: string;
|
|
665
671
|
Company?: string;
|
|
666
672
|
EmbeddingModel?: string;
|
|
667
673
|
}>;
|
|
@@ -1312,6 +1318,7 @@ export declare const AIResultCacheSchema: z.ZodObject<{
|
|
|
1312
1318
|
Vendor: z.ZodNullable<z.ZodString>;
|
|
1313
1319
|
Agent: z.ZodNullable<z.ZodString>;
|
|
1314
1320
|
Configuration: z.ZodNullable<z.ZodString>;
|
|
1321
|
+
PromptRun: z.ZodNullable<z.ZodString>;
|
|
1315
1322
|
}, "strip", z.ZodTypeAny, {
|
|
1316
1323
|
ID?: string;
|
|
1317
1324
|
__mj_CreatedAt?: Date;
|
|
@@ -1333,6 +1340,7 @@ export declare const AIResultCacheSchema: z.ZodObject<{
|
|
|
1333
1340
|
PromptRunID?: string;
|
|
1334
1341
|
AIPrompt?: string;
|
|
1335
1342
|
Configuration?: string;
|
|
1343
|
+
PromptRun?: string;
|
|
1336
1344
|
}, {
|
|
1337
1345
|
ID?: string;
|
|
1338
1346
|
__mj_CreatedAt?: Date;
|
|
@@ -1354,6 +1362,7 @@ export declare const AIResultCacheSchema: z.ZodObject<{
|
|
|
1354
1362
|
PromptRunID?: string;
|
|
1355
1363
|
AIPrompt?: string;
|
|
1356
1364
|
Configuration?: string;
|
|
1365
|
+
PromptRun?: string;
|
|
1357
1366
|
}>;
|
|
1358
1367
|
export type AIResultCacheEntityType = z.infer<typeof AIResultCacheSchema>;
|
|
1359
1368
|
/**
|
|
@@ -2639,6 +2648,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
2639
2648
|
DataContext: z.ZodNullable<z.ZodString>;
|
|
2640
2649
|
Environment: z.ZodString;
|
|
2641
2650
|
Project: z.ZodNullable<z.ZodString>;
|
|
2651
|
+
TestRun: z.ZodNullable<z.ZodString>;
|
|
2642
2652
|
}, "strip", z.ZodTypeAny, {
|
|
2643
2653
|
ID?: string;
|
|
2644
2654
|
__mj_CreatedAt?: Date;
|
|
@@ -2652,6 +2662,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
2652
2662
|
ExternalID?: string;
|
|
2653
2663
|
IsPinned?: boolean;
|
|
2654
2664
|
TestRunID?: string;
|
|
2665
|
+
TestRun?: string;
|
|
2655
2666
|
IsArchived?: boolean;
|
|
2656
2667
|
LinkedEntityID?: string;
|
|
2657
2668
|
LinkedRecordID?: string;
|
|
@@ -2675,6 +2686,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
2675
2686
|
ExternalID?: string;
|
|
2676
2687
|
IsPinned?: boolean;
|
|
2677
2688
|
TestRunID?: string;
|
|
2689
|
+
TestRun?: string;
|
|
2678
2690
|
IsArchived?: boolean;
|
|
2679
2691
|
LinkedEntityID?: string;
|
|
2680
2692
|
LinkedRecordID?: string;
|
|
@@ -3021,6 +3033,7 @@ export declare const DuplicateRunDetailSchema: z.ZodObject<{
|
|
|
3021
3033
|
MergeErrorMessage: z.ZodNullable<z.ZodString>;
|
|
3022
3034
|
__mj_CreatedAt: z.ZodDate;
|
|
3023
3035
|
__mj_UpdatedAt: z.ZodDate;
|
|
3036
|
+
DuplicateRun: z.ZodString;
|
|
3024
3037
|
}, "strip", z.ZodTypeAny, {
|
|
3025
3038
|
ID?: string;
|
|
3026
3039
|
__mj_CreatedAt?: Date;
|
|
@@ -3032,6 +3045,7 @@ export declare const DuplicateRunDetailSchema: z.ZodObject<{
|
|
|
3032
3045
|
SkippedReason?: string;
|
|
3033
3046
|
MatchErrorMessage?: string;
|
|
3034
3047
|
MergeErrorMessage?: string;
|
|
3048
|
+
DuplicateRun?: string;
|
|
3035
3049
|
}, {
|
|
3036
3050
|
ID?: string;
|
|
3037
3051
|
__mj_CreatedAt?: Date;
|
|
@@ -3043,6 +3057,7 @@ export declare const DuplicateRunDetailSchema: z.ZodObject<{
|
|
|
3043
3057
|
SkippedReason?: string;
|
|
3044
3058
|
MatchErrorMessage?: string;
|
|
3045
3059
|
MergeErrorMessage?: string;
|
|
3060
|
+
DuplicateRun?: string;
|
|
3046
3061
|
}>;
|
|
3047
3062
|
export type DuplicateRunDetailEntityType = z.infer<typeof DuplicateRunDetailSchema>;
|
|
3048
3063
|
/**
|
|
@@ -3115,6 +3130,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
|
|
|
3115
3130
|
IsActive: z.ZodBoolean;
|
|
3116
3131
|
__mj_CreatedAt: z.ZodDate;
|
|
3117
3132
|
__mj_UpdatedAt: z.ZodDate;
|
|
3133
|
+
Employee: z.ZodNullable<z.ZodString>;
|
|
3118
3134
|
CompanyIntegration: z.ZodString;
|
|
3119
3135
|
}, "strip", z.ZodTypeAny, {
|
|
3120
3136
|
ID?: string;
|
|
@@ -3125,6 +3141,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
|
|
|
3125
3141
|
ExternalSystemRecordID?: string;
|
|
3126
3142
|
CompanyIntegration?: string;
|
|
3127
3143
|
EmployeeID?: string;
|
|
3144
|
+
Employee?: string;
|
|
3128
3145
|
}, {
|
|
3129
3146
|
ID?: string;
|
|
3130
3147
|
__mj_CreatedAt?: Date;
|
|
@@ -3134,6 +3151,7 @@ export declare const EmployeeCompanyIntegrationSchema: z.ZodObject<{
|
|
|
3134
3151
|
ExternalSystemRecordID?: string;
|
|
3135
3152
|
CompanyIntegration?: string;
|
|
3136
3153
|
EmployeeID?: string;
|
|
3154
|
+
Employee?: string;
|
|
3137
3155
|
}>;
|
|
3138
3156
|
export type EmployeeCompanyIntegrationEntityType = z.infer<typeof EmployeeCompanyIntegrationSchema>;
|
|
3139
3157
|
/**
|
|
@@ -3145,6 +3163,7 @@ export declare const EmployeeRoleSchema: z.ZodObject<{
|
|
|
3145
3163
|
RoleID: z.ZodString;
|
|
3146
3164
|
__mj_CreatedAt: z.ZodDate;
|
|
3147
3165
|
__mj_UpdatedAt: z.ZodDate;
|
|
3166
|
+
Employee: z.ZodNullable<z.ZodString>;
|
|
3148
3167
|
Role: z.ZodString;
|
|
3149
3168
|
}, "strip", z.ZodTypeAny, {
|
|
3150
3169
|
ID?: string;
|
|
@@ -3153,6 +3172,7 @@ export declare const EmployeeRoleSchema: z.ZodObject<{
|
|
|
3153
3172
|
RoleID?: string;
|
|
3154
3173
|
Role?: string;
|
|
3155
3174
|
EmployeeID?: string;
|
|
3175
|
+
Employee?: string;
|
|
3156
3176
|
}, {
|
|
3157
3177
|
ID?: string;
|
|
3158
3178
|
__mj_CreatedAt?: Date;
|
|
@@ -3160,6 +3180,7 @@ export declare const EmployeeRoleSchema: z.ZodObject<{
|
|
|
3160
3180
|
RoleID?: string;
|
|
3161
3181
|
Role?: string;
|
|
3162
3182
|
EmployeeID?: string;
|
|
3183
|
+
Employee?: string;
|
|
3163
3184
|
}>;
|
|
3164
3185
|
export type EmployeeRoleEntityType = z.infer<typeof EmployeeRoleSchema>;
|
|
3165
3186
|
/**
|
|
@@ -3171,12 +3192,14 @@ export declare const EmployeeSkillSchema: z.ZodObject<{
|
|
|
3171
3192
|
SkillID: z.ZodString;
|
|
3172
3193
|
__mj_CreatedAt: z.ZodDate;
|
|
3173
3194
|
__mj_UpdatedAt: z.ZodDate;
|
|
3195
|
+
Employee: z.ZodNullable<z.ZodString>;
|
|
3174
3196
|
Skill: z.ZodString;
|
|
3175
3197
|
}, "strip", z.ZodTypeAny, {
|
|
3176
3198
|
ID?: string;
|
|
3177
3199
|
__mj_CreatedAt?: Date;
|
|
3178
3200
|
__mj_UpdatedAt?: Date;
|
|
3179
3201
|
EmployeeID?: string;
|
|
3202
|
+
Employee?: string;
|
|
3180
3203
|
SkillID?: string;
|
|
3181
3204
|
Skill?: string;
|
|
3182
3205
|
}, {
|
|
@@ -3184,6 +3207,7 @@ export declare const EmployeeSkillSchema: z.ZodObject<{
|
|
|
3184
3207
|
__mj_CreatedAt?: Date;
|
|
3185
3208
|
__mj_UpdatedAt?: Date;
|
|
3186
3209
|
EmployeeID?: string;
|
|
3210
|
+
Employee?: string;
|
|
3187
3211
|
SkillID?: string;
|
|
3188
3212
|
Skill?: string;
|
|
3189
3213
|
}>;
|
|
@@ -3455,6 +3479,8 @@ export declare const EntityActionFilterSchema: z.ZodObject<{
|
|
|
3455
3479
|
Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Pending">]>;
|
|
3456
3480
|
__mj_CreatedAt: z.ZodDate;
|
|
3457
3481
|
__mj_UpdatedAt: z.ZodDate;
|
|
3482
|
+
EntityAction: z.ZodString;
|
|
3483
|
+
ActionFilter: z.ZodString;
|
|
3458
3484
|
}, "strip", z.ZodTypeAny, {
|
|
3459
3485
|
ID?: string;
|
|
3460
3486
|
__mj_CreatedAt?: Date;
|
|
@@ -3463,6 +3489,8 @@ export declare const EntityActionFilterSchema: z.ZodObject<{
|
|
|
3463
3489
|
Sequence?: number;
|
|
3464
3490
|
EntityActionID?: string;
|
|
3465
3491
|
ActionFilterID?: string;
|
|
3492
|
+
EntityAction?: string;
|
|
3493
|
+
ActionFilter?: string;
|
|
3466
3494
|
}, {
|
|
3467
3495
|
ID?: string;
|
|
3468
3496
|
__mj_CreatedAt?: Date;
|
|
@@ -3471,6 +3499,8 @@ export declare const EntityActionFilterSchema: z.ZodObject<{
|
|
|
3471
3499
|
Sequence?: number;
|
|
3472
3500
|
EntityActionID?: string;
|
|
3473
3501
|
ActionFilterID?: string;
|
|
3502
|
+
EntityAction?: string;
|
|
3503
|
+
ActionFilter?: string;
|
|
3474
3504
|
}>;
|
|
3475
3505
|
export type EntityActionFilterEntityType = z.infer<typeof EntityActionFilterSchema>;
|
|
3476
3506
|
/**
|
|
@@ -3509,6 +3539,7 @@ export declare const EntityActionInvocationSchema: z.ZodObject<{
|
|
|
3509
3539
|
Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Pending">]>;
|
|
3510
3540
|
__mj_CreatedAt: z.ZodDate;
|
|
3511
3541
|
__mj_UpdatedAt: z.ZodDate;
|
|
3542
|
+
EntityAction: z.ZodString;
|
|
3512
3543
|
InvocationType: z.ZodString;
|
|
3513
3544
|
}, "strip", z.ZodTypeAny, {
|
|
3514
3545
|
ID?: string;
|
|
@@ -3516,6 +3547,7 @@ export declare const EntityActionInvocationSchema: z.ZodObject<{
|
|
|
3516
3547
|
__mj_UpdatedAt?: Date;
|
|
3517
3548
|
Status?: "Active" | "Disabled" | "Pending";
|
|
3518
3549
|
EntityActionID?: string;
|
|
3550
|
+
EntityAction?: string;
|
|
3519
3551
|
InvocationTypeID?: string;
|
|
3520
3552
|
InvocationType?: string;
|
|
3521
3553
|
}, {
|
|
@@ -3524,6 +3556,7 @@ export declare const EntityActionInvocationSchema: z.ZodObject<{
|
|
|
3524
3556
|
__mj_UpdatedAt?: Date;
|
|
3525
3557
|
Status?: "Active" | "Disabled" | "Pending";
|
|
3526
3558
|
EntityActionID?: string;
|
|
3559
|
+
EntityAction?: string;
|
|
3527
3560
|
InvocationTypeID?: string;
|
|
3528
3561
|
InvocationType?: string;
|
|
3529
3562
|
}>;
|
|
@@ -3540,6 +3573,7 @@ export declare const EntityActionParamSchema: z.ZodObject<{
|
|
|
3540
3573
|
Comments: z.ZodNullable<z.ZodString>;
|
|
3541
3574
|
__mj_CreatedAt: z.ZodDate;
|
|
3542
3575
|
__mj_UpdatedAt: z.ZodDate;
|
|
3576
|
+
EntityAction: z.ZodString;
|
|
3543
3577
|
ActionParam: z.ZodString;
|
|
3544
3578
|
}, "strip", z.ZodTypeAny, {
|
|
3545
3579
|
ID?: string;
|
|
@@ -3549,6 +3583,7 @@ export declare const EntityActionParamSchema: z.ZodObject<{
|
|
|
3549
3583
|
ValueType?: "Entity Field" | "Entity Object" | "Script" | "Static";
|
|
3550
3584
|
Value?: string;
|
|
3551
3585
|
EntityActionID?: string;
|
|
3586
|
+
EntityAction?: string;
|
|
3552
3587
|
ActionParamID?: string;
|
|
3553
3588
|
ActionParam?: string;
|
|
3554
3589
|
}, {
|
|
@@ -3559,6 +3594,7 @@ export declare const EntityActionParamSchema: z.ZodObject<{
|
|
|
3559
3594
|
ValueType?: "Entity Field" | "Entity Object" | "Script" | "Static";
|
|
3560
3595
|
Value?: string;
|
|
3561
3596
|
EntityActionID?: string;
|
|
3597
|
+
EntityAction?: string;
|
|
3562
3598
|
ActionParamID?: string;
|
|
3563
3599
|
ActionParam?: string;
|
|
3564
3600
|
}>;
|
|
@@ -3670,6 +3706,7 @@ export declare const EntityCommunicationFieldSchema: z.ZodObject<{
|
|
|
3670
3706
|
Priority: z.ZodNumber;
|
|
3671
3707
|
__mj_CreatedAt: z.ZodDate;
|
|
3672
3708
|
__mj_UpdatedAt: z.ZodDate;
|
|
3709
|
+
EntityCommunicationMessageType: z.ZodString;
|
|
3673
3710
|
}, "strip", z.ZodTypeAny, {
|
|
3674
3711
|
ID?: string;
|
|
3675
3712
|
__mj_CreatedAt?: Date;
|
|
@@ -3677,6 +3714,7 @@ export declare const EntityCommunicationFieldSchema: z.ZodObject<{
|
|
|
3677
3714
|
Priority?: number;
|
|
3678
3715
|
EntityCommunicationMessageTypeID?: string;
|
|
3679
3716
|
FieldName?: string;
|
|
3717
|
+
EntityCommunicationMessageType?: string;
|
|
3680
3718
|
}, {
|
|
3681
3719
|
ID?: string;
|
|
3682
3720
|
__mj_CreatedAt?: Date;
|
|
@@ -3684,6 +3722,7 @@ export declare const EntityCommunicationFieldSchema: z.ZodObject<{
|
|
|
3684
3722
|
Priority?: number;
|
|
3685
3723
|
EntityCommunicationMessageTypeID?: string;
|
|
3686
3724
|
FieldName?: string;
|
|
3725
|
+
EntityCommunicationMessageType?: string;
|
|
3687
3726
|
}>;
|
|
3688
3727
|
export type EntityCommunicationFieldEntityType = z.infer<typeof EntityCommunicationFieldSchema>;
|
|
3689
3728
|
/**
|
|
@@ -4415,6 +4454,8 @@ export declare const ErrorLogSchema: z.ZodObject<{
|
|
|
4415
4454
|
Details: z.ZodNullable<z.ZodString>;
|
|
4416
4455
|
__mj_CreatedAt: z.ZodDate;
|
|
4417
4456
|
__mj_UpdatedAt: z.ZodDate;
|
|
4457
|
+
CompanyIntegrationRun: z.ZodNullable<z.ZodString>;
|
|
4458
|
+
CompanyIntegrationRunDetail: z.ZodNullable<z.ZodString>;
|
|
4418
4459
|
}, "strip", z.ZodTypeAny, {
|
|
4419
4460
|
ID?: string;
|
|
4420
4461
|
__mj_CreatedAt?: Date;
|
|
@@ -4425,8 +4466,10 @@ export declare const ErrorLogSchema: z.ZodObject<{
|
|
|
4425
4466
|
Category?: string;
|
|
4426
4467
|
Details?: string;
|
|
4427
4468
|
CompanyIntegrationRunID?: string;
|
|
4469
|
+
CompanyIntegrationRun?: string;
|
|
4428
4470
|
CompanyIntegrationRunDetailID?: string;
|
|
4429
4471
|
CreatedBy?: string;
|
|
4472
|
+
CompanyIntegrationRunDetail?: string;
|
|
4430
4473
|
}, {
|
|
4431
4474
|
ID?: string;
|
|
4432
4475
|
__mj_CreatedAt?: Date;
|
|
@@ -4437,8 +4480,10 @@ export declare const ErrorLogSchema: z.ZodObject<{
|
|
|
4437
4480
|
Category?: string;
|
|
4438
4481
|
Details?: string;
|
|
4439
4482
|
CompanyIntegrationRunID?: string;
|
|
4483
|
+
CompanyIntegrationRun?: string;
|
|
4440
4484
|
CompanyIntegrationRunDetailID?: string;
|
|
4441
4485
|
CreatedBy?: string;
|
|
4486
|
+
CompanyIntegrationRunDetail?: string;
|
|
4442
4487
|
}>;
|
|
4443
4488
|
export type ErrorLogEntityType = z.infer<typeof ErrorLogSchema>;
|
|
4444
4489
|
/**
|
|
@@ -5220,6 +5265,8 @@ export declare const AIAgentExampleSchema: z.ZodObject<{
|
|
|
5220
5265
|
User: z.ZodNullable<z.ZodString>;
|
|
5221
5266
|
Company: z.ZodNullable<z.ZodString>;
|
|
5222
5267
|
SourceConversation: z.ZodNullable<z.ZodString>;
|
|
5268
|
+
SourceConversationDetail: z.ZodNullable<z.ZodString>;
|
|
5269
|
+
SourceAIAgentRun: z.ZodNullable<z.ZodString>;
|
|
5223
5270
|
EmbeddingModel: z.ZodNullable<z.ZodString>;
|
|
5224
5271
|
}, "strip", z.ZodTypeAny, {
|
|
5225
5272
|
ID?: string;
|
|
@@ -5240,6 +5287,8 @@ export declare const AIAgentExampleSchema: z.ZodObject<{
|
|
|
5240
5287
|
EmbeddingVector?: string;
|
|
5241
5288
|
EmbeddingModelID?: string;
|
|
5242
5289
|
SourceConversation?: string;
|
|
5290
|
+
SourceConversationDetail?: string;
|
|
5291
|
+
SourceAIAgentRun?: string;
|
|
5243
5292
|
Company?: string;
|
|
5244
5293
|
EmbeddingModel?: string;
|
|
5245
5294
|
ExampleInput?: string;
|
|
@@ -5264,6 +5313,8 @@ export declare const AIAgentExampleSchema: z.ZodObject<{
|
|
|
5264
5313
|
EmbeddingVector?: string;
|
|
5265
5314
|
EmbeddingModelID?: string;
|
|
5266
5315
|
SourceConversation?: string;
|
|
5316
|
+
SourceConversationDetail?: string;
|
|
5317
|
+
SourceAIAgentRun?: string;
|
|
5267
5318
|
Company?: string;
|
|
5268
5319
|
EmbeddingModel?: string;
|
|
5269
5320
|
ExampleInput?: string;
|
|
@@ -5485,6 +5536,8 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
|
|
|
5485
5536
|
FinalPayloadValidationMessages: z.ZodNullable<z.ZodString>;
|
|
5486
5537
|
ParentID: z.ZodNullable<z.ZodString>;
|
|
5487
5538
|
Comments: z.ZodNullable<z.ZodString>;
|
|
5539
|
+
AgentRun: z.ZodNullable<z.ZodString>;
|
|
5540
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
5488
5541
|
RootParentID: z.ZodNullable<z.ZodString>;
|
|
5489
5542
|
}, "strip", z.ZodTypeAny, {
|
|
5490
5543
|
ID?: string;
|
|
@@ -5493,6 +5546,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
|
|
|
5493
5546
|
__mj_UpdatedAt?: Date;
|
|
5494
5547
|
ParentID?: string;
|
|
5495
5548
|
Status?: "Failed" | "Cancelled" | "Completed" | "Running";
|
|
5549
|
+
Parent?: string;
|
|
5496
5550
|
RootParentID?: string;
|
|
5497
5551
|
StartedAt?: Date;
|
|
5498
5552
|
Success?: boolean;
|
|
@@ -5510,6 +5564,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
|
|
|
5510
5564
|
PayloadAtEnd?: string;
|
|
5511
5565
|
FinalPayloadValidationResult?: "Fail" | "Retry" | "Warn" | "Pass";
|
|
5512
5566
|
FinalPayloadValidationMessages?: string;
|
|
5567
|
+
AgentRun?: string;
|
|
5513
5568
|
}, {
|
|
5514
5569
|
ID?: string;
|
|
5515
5570
|
Comments?: string;
|
|
@@ -5517,6 +5572,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
|
|
|
5517
5572
|
__mj_UpdatedAt?: Date;
|
|
5518
5573
|
ParentID?: string;
|
|
5519
5574
|
Status?: "Failed" | "Cancelled" | "Completed" | "Running";
|
|
5575
|
+
Parent?: string;
|
|
5520
5576
|
RootParentID?: string;
|
|
5521
5577
|
StartedAt?: Date;
|
|
5522
5578
|
Success?: boolean;
|
|
@@ -5534,6 +5590,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
|
|
|
5534
5590
|
PayloadAtEnd?: string;
|
|
5535
5591
|
FinalPayloadValidationResult?: "Fail" | "Retry" | "Warn" | "Pass";
|
|
5536
5592
|
FinalPayloadValidationMessages?: string;
|
|
5593
|
+
AgentRun?: string;
|
|
5537
5594
|
}>;
|
|
5538
5595
|
export type AIAgentRunStepEntityType = z.infer<typeof AIAgentRunStepSchema>;
|
|
5539
5596
|
/**
|
|
@@ -5591,6 +5648,7 @@ export declare const AIAgentRunSchema: z.ZodObject<{
|
|
|
5591
5648
|
OverrideModel: z.ZodNullable<z.ZodString>;
|
|
5592
5649
|
OverrideVendor: z.ZodNullable<z.ZodString>;
|
|
5593
5650
|
ScheduledJobRun: z.ZodNullable<z.ZodString>;
|
|
5651
|
+
TestRun: z.ZodNullable<z.ZodString>;
|
|
5594
5652
|
RootParentRunID: z.ZodNullable<z.ZodString>;
|
|
5595
5653
|
RootLastRunID: z.ZodNullable<z.ZodString>;
|
|
5596
5654
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5614,6 +5672,7 @@ export declare const AIAgentRunSchema: z.ZodObject<{
|
|
|
5614
5672
|
ConversationID?: string;
|
|
5615
5673
|
TestRunID?: string;
|
|
5616
5674
|
Conversation?: string;
|
|
5675
|
+
TestRun?: string;
|
|
5617
5676
|
Data?: string;
|
|
5618
5677
|
CompletedAt?: Date;
|
|
5619
5678
|
ParentRunID?: string;
|
|
@@ -5668,6 +5727,7 @@ export declare const AIAgentRunSchema: z.ZodObject<{
|
|
|
5668
5727
|
ConversationID?: string;
|
|
5669
5728
|
TestRunID?: string;
|
|
5670
5729
|
Conversation?: string;
|
|
5730
|
+
TestRun?: string;
|
|
5671
5731
|
Data?: string;
|
|
5672
5732
|
CompletedAt?: Date;
|
|
5673
5733
|
ParentRunID?: string;
|
|
@@ -6592,6 +6652,7 @@ export declare const AIPromptRunSchema: z.ZodObject<{
|
|
|
6592
6652
|
AgentRunID?: string;
|
|
6593
6653
|
Cancelled?: boolean;
|
|
6594
6654
|
CompletedAt?: Date;
|
|
6655
|
+
AgentRun?: string;
|
|
6595
6656
|
Result?: string;
|
|
6596
6657
|
TotalCost?: number;
|
|
6597
6658
|
CancellationReason?: string;
|
|
@@ -6642,7 +6703,6 @@ export declare const AIPromptRunSchema: z.ZodObject<{
|
|
|
6642
6703
|
QueueTime?: number;
|
|
6643
6704
|
PromptTime?: number;
|
|
6644
6705
|
ModelSpecificResponseDetails?: string;
|
|
6645
|
-
AgentRun?: string;
|
|
6646
6706
|
OriginalModel?: string;
|
|
6647
6707
|
RerunFromPromptRun?: string;
|
|
6648
6708
|
Judge?: string;
|
|
@@ -6691,6 +6751,7 @@ export declare const AIPromptRunSchema: z.ZodObject<{
|
|
|
6691
6751
|
AgentRunID?: string;
|
|
6692
6752
|
Cancelled?: boolean;
|
|
6693
6753
|
CompletedAt?: Date;
|
|
6754
|
+
AgentRun?: string;
|
|
6694
6755
|
Result?: string;
|
|
6695
6756
|
TotalCost?: number;
|
|
6696
6757
|
CancellationReason?: string;
|
|
@@ -6741,7 +6802,6 @@ export declare const AIPromptRunSchema: z.ZodObject<{
|
|
|
6741
6802
|
QueueTime?: number;
|
|
6742
6803
|
PromptTime?: number;
|
|
6743
6804
|
ModelSpecificResponseDetails?: string;
|
|
6744
|
-
AgentRun?: string;
|
|
6745
6805
|
OriginalModel?: string;
|
|
6746
6806
|
RerunFromPromptRun?: string;
|
|
6747
6807
|
Judge?: string;
|
|
@@ -7591,6 +7651,7 @@ export declare const ConversationDetailArtifactSchema: z.ZodObject<{
|
|
|
7591
7651
|
Direction: z.ZodUnion<[z.ZodLiteral<"Input">, z.ZodLiteral<"Output">]>;
|
|
7592
7652
|
__mj_CreatedAt: z.ZodDate;
|
|
7593
7653
|
__mj_UpdatedAt: z.ZodDate;
|
|
7654
|
+
ConversationDetail: z.ZodString;
|
|
7594
7655
|
ArtifactVersion: z.ZodNullable<z.ZodString>;
|
|
7595
7656
|
}, "strip", z.ZodTypeAny, {
|
|
7596
7657
|
ID?: string;
|
|
@@ -7600,6 +7661,7 @@ export declare const ConversationDetailArtifactSchema: z.ZodObject<{
|
|
|
7600
7661
|
ArtifactVersionID?: string;
|
|
7601
7662
|
ArtifactVersion?: string;
|
|
7602
7663
|
ConversationDetailID?: string;
|
|
7664
|
+
ConversationDetail?: string;
|
|
7603
7665
|
}, {
|
|
7604
7666
|
ID?: string;
|
|
7605
7667
|
__mj_CreatedAt?: Date;
|
|
@@ -7608,6 +7670,7 @@ export declare const ConversationDetailArtifactSchema: z.ZodObject<{
|
|
|
7608
7670
|
ArtifactVersionID?: string;
|
|
7609
7671
|
ArtifactVersion?: string;
|
|
7610
7672
|
ConversationDetailID?: string;
|
|
7673
|
+
ConversationDetail?: string;
|
|
7611
7674
|
}>;
|
|
7612
7675
|
export type ConversationDetailArtifactEntityType = z.infer<typeof ConversationDetailArtifactSchema>;
|
|
7613
7676
|
/**
|
|
@@ -7683,6 +7746,7 @@ export declare const ConversationDetailRatingSchema: z.ZodObject<{
|
|
|
7683
7746
|
Comments: z.ZodNullable<z.ZodString>;
|
|
7684
7747
|
__mj_CreatedAt: z.ZodDate;
|
|
7685
7748
|
__mj_UpdatedAt: z.ZodDate;
|
|
7749
|
+
ConversationDetail: z.ZodString;
|
|
7686
7750
|
User: z.ZodString;
|
|
7687
7751
|
}, "strip", z.ZodTypeAny, {
|
|
7688
7752
|
ID?: string;
|
|
@@ -7692,6 +7756,7 @@ export declare const ConversationDetailRatingSchema: z.ZodObject<{
|
|
|
7692
7756
|
UserID?: string;
|
|
7693
7757
|
User?: string;
|
|
7694
7758
|
ConversationDetailID?: string;
|
|
7759
|
+
ConversationDetail?: string;
|
|
7695
7760
|
Rating?: number;
|
|
7696
7761
|
}, {
|
|
7697
7762
|
ID?: string;
|
|
@@ -7701,6 +7766,7 @@ export declare const ConversationDetailRatingSchema: z.ZodObject<{
|
|
|
7701
7766
|
UserID?: string;
|
|
7702
7767
|
User?: string;
|
|
7703
7768
|
ConversationDetailID?: string;
|
|
7769
|
+
ConversationDetail?: string;
|
|
7704
7770
|
Rating?: number;
|
|
7705
7771
|
}>;
|
|
7706
7772
|
export type ConversationDetailRatingEntityType = z.infer<typeof ConversationDetailRatingSchema>;
|
|
@@ -8667,6 +8733,7 @@ export declare const TaskSchema: z.ZodObject<{
|
|
|
8667
8733
|
Type: z.ZodString;
|
|
8668
8734
|
Environment: z.ZodString;
|
|
8669
8735
|
Project: z.ZodNullable<z.ZodString>;
|
|
8736
|
+
ConversationDetail: z.ZodNullable<z.ZodString>;
|
|
8670
8737
|
User: z.ZodNullable<z.ZodString>;
|
|
8671
8738
|
Agent: z.ZodNullable<z.ZodString>;
|
|
8672
8739
|
RootParentID: z.ZodNullable<z.ZodString>;
|
|
@@ -8693,6 +8760,7 @@ export declare const TaskSchema: z.ZodObject<{
|
|
|
8693
8760
|
Project?: string;
|
|
8694
8761
|
CompletedAt?: Date;
|
|
8695
8762
|
ConversationDetailID?: string;
|
|
8763
|
+
ConversationDetail?: string;
|
|
8696
8764
|
PercentComplete?: number;
|
|
8697
8765
|
DueAt?: Date;
|
|
8698
8766
|
}, {
|
|
@@ -8718,6 +8786,7 @@ export declare const TaskSchema: z.ZodObject<{
|
|
|
8718
8786
|
Project?: string;
|
|
8719
8787
|
CompletedAt?: Date;
|
|
8720
8788
|
ConversationDetailID?: string;
|
|
8789
|
+
ConversationDetail?: string;
|
|
8721
8790
|
PercentComplete?: number;
|
|
8722
8791
|
DueAt?: Date;
|
|
8723
8792
|
}>;
|
|
@@ -9706,6 +9775,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
|
|
|
9706
9775
|
MatchProbability: z.ZodNullable<z.ZodNumber>;
|
|
9707
9776
|
__mj_CreatedAt: z.ZodDate;
|
|
9708
9777
|
__mj_UpdatedAt: z.ZodDate;
|
|
9778
|
+
Recommendation: z.ZodString;
|
|
9709
9779
|
DestinationEntity: z.ZodString;
|
|
9710
9780
|
}, "strip", z.ZodTypeAny, {
|
|
9711
9781
|
ID?: string;
|
|
@@ -9715,6 +9785,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
|
|
|
9715
9785
|
RecommendationID?: string;
|
|
9716
9786
|
DestinationEntityID?: string;
|
|
9717
9787
|
DestinationEntityRecordID?: string;
|
|
9788
|
+
Recommendation?: string;
|
|
9718
9789
|
DestinationEntity?: string;
|
|
9719
9790
|
}, {
|
|
9720
9791
|
ID?: string;
|
|
@@ -9724,6 +9795,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
|
|
|
9724
9795
|
RecommendationID?: string;
|
|
9725
9796
|
DestinationEntityID?: string;
|
|
9726
9797
|
DestinationEntityRecordID?: string;
|
|
9798
|
+
Recommendation?: string;
|
|
9727
9799
|
DestinationEntity?: string;
|
|
9728
9800
|
}>;
|
|
9729
9801
|
export type RecommendationItemEntityType = z.infer<typeof RecommendationItemSchema>;
|
|
@@ -9801,6 +9873,7 @@ export declare const RecommendationSchema: z.ZodObject<{
|
|
|
9801
9873
|
SourceEntityRecordID: z.ZodString;
|
|
9802
9874
|
__mj_CreatedAt: z.ZodDate;
|
|
9803
9875
|
__mj_UpdatedAt: z.ZodDate;
|
|
9876
|
+
RecommendationRun: z.ZodString;
|
|
9804
9877
|
SourceEntity: z.ZodString;
|
|
9805
9878
|
}, "strip", z.ZodTypeAny, {
|
|
9806
9879
|
ID?: string;
|
|
@@ -9810,6 +9883,7 @@ export declare const RecommendationSchema: z.ZodObject<{
|
|
|
9810
9883
|
SourceEntity?: string;
|
|
9811
9884
|
RecommendationRunID?: string;
|
|
9812
9885
|
SourceEntityRecordID?: string;
|
|
9886
|
+
RecommendationRun?: string;
|
|
9813
9887
|
}, {
|
|
9814
9888
|
ID?: string;
|
|
9815
9889
|
__mj_CreatedAt?: Date;
|
|
@@ -9818,6 +9892,7 @@ export declare const RecommendationSchema: z.ZodObject<{
|
|
|
9818
9892
|
SourceEntity?: string;
|
|
9819
9893
|
RecommendationRunID?: string;
|
|
9820
9894
|
SourceEntityRecordID?: string;
|
|
9895
|
+
RecommendationRun?: string;
|
|
9821
9896
|
}>;
|
|
9822
9897
|
export type RecommendationEntityType = z.infer<typeof RecommendationSchema>;
|
|
9823
9898
|
/**
|
|
@@ -9875,6 +9950,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
|
|
|
9875
9950
|
UpdatedAt: z.ZodDate;
|
|
9876
9951
|
Entity: z.ZodString;
|
|
9877
9952
|
User: z.ZodString;
|
|
9953
|
+
ReplayRun: z.ZodNullable<z.ZodString>;
|
|
9878
9954
|
Integration: z.ZodNullable<z.ZodString>;
|
|
9879
9955
|
}, "strip", z.ZodTypeAny, {
|
|
9880
9956
|
ID?: string;
|
|
@@ -9897,6 +9973,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
|
|
|
9897
9973
|
ReplayRunID?: string;
|
|
9898
9974
|
CreatedAt?: Date;
|
|
9899
9975
|
UpdatedAt?: Date;
|
|
9976
|
+
ReplayRun?: string;
|
|
9900
9977
|
}, {
|
|
9901
9978
|
ID?: string;
|
|
9902
9979
|
Comments?: string;
|
|
@@ -9918,6 +9995,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
|
|
|
9918
9995
|
ReplayRunID?: string;
|
|
9919
9996
|
CreatedAt?: Date;
|
|
9920
9997
|
UpdatedAt?: Date;
|
|
9998
|
+
ReplayRun?: string;
|
|
9921
9999
|
}>;
|
|
9922
10000
|
export type RecordChangeEntityType = z.infer<typeof RecordChangeSchema>;
|
|
9923
10001
|
/**
|
|
@@ -9931,12 +10009,14 @@ export declare const RecordMergeDeletionLogSchema: z.ZodObject<{
|
|
|
9931
10009
|
ProcessingLog: z.ZodNullable<z.ZodString>;
|
|
9932
10010
|
__mj_CreatedAt: z.ZodDate;
|
|
9933
10011
|
__mj_UpdatedAt: z.ZodDate;
|
|
10012
|
+
RecordMergeLog: z.ZodString;
|
|
9934
10013
|
}, "strip", z.ZodTypeAny, {
|
|
9935
10014
|
ID?: string;
|
|
9936
10015
|
__mj_CreatedAt?: Date;
|
|
9937
10016
|
__mj_UpdatedAt?: Date;
|
|
9938
10017
|
Status?: "Pending" | "Complete" | "Error";
|
|
9939
10018
|
RecordMergeLogID?: string;
|
|
10019
|
+
RecordMergeLog?: string;
|
|
9940
10020
|
DeletedRecordID?: string;
|
|
9941
10021
|
ProcessingLog?: string;
|
|
9942
10022
|
}, {
|
|
@@ -9945,6 +10025,7 @@ export declare const RecordMergeDeletionLogSchema: z.ZodObject<{
|
|
|
9945
10025
|
__mj_UpdatedAt?: Date;
|
|
9946
10026
|
Status?: "Pending" | "Complete" | "Error";
|
|
9947
10027
|
RecordMergeLogID?: string;
|
|
10028
|
+
RecordMergeLog?: string;
|
|
9948
10029
|
DeletedRecordID?: string;
|
|
9949
10030
|
ProcessingLog?: string;
|
|
9950
10031
|
}>;
|
|
@@ -10102,6 +10183,7 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
10102
10183
|
Category: z.ZodNullable<z.ZodString>;
|
|
10103
10184
|
User: z.ZodString;
|
|
10104
10185
|
Conversation: z.ZodNullable<z.ZodString>;
|
|
10186
|
+
ConversationDetail: z.ZodNullable<z.ZodString>;
|
|
10105
10187
|
DataContext: z.ZodNullable<z.ZodString>;
|
|
10106
10188
|
OutputTriggerType: z.ZodNullable<z.ZodString>;
|
|
10107
10189
|
OutputFormatType: z.ZodNullable<z.ZodString>;
|
|
@@ -10127,6 +10209,7 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
10127
10209
|
Environment?: string;
|
|
10128
10210
|
Thumbnail?: string;
|
|
10129
10211
|
ConversationDetailID?: string;
|
|
10212
|
+
ConversationDetail?: string;
|
|
10130
10213
|
SharingScope?: "None" | "Specific" | "Everyone";
|
|
10131
10214
|
OutputTriggerTypeID?: string;
|
|
10132
10215
|
OutputFormatTypeID?: string;
|
|
@@ -10157,6 +10240,7 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
10157
10240
|
Environment?: string;
|
|
10158
10241
|
Thumbnail?: string;
|
|
10159
10242
|
ConversationDetailID?: string;
|
|
10243
|
+
ConversationDetail?: string;
|
|
10160
10244
|
SharingScope?: "None" | "Specific" | "Everyone";
|
|
10161
10245
|
OutputTriggerTypeID?: string;
|
|
10162
10246
|
OutputFormatTypeID?: string;
|
|
@@ -10709,6 +10793,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
|
|
|
10709
10793
|
TemplateContentID: z.ZodNullable<z.ZodString>;
|
|
10710
10794
|
Template: z.ZodString;
|
|
10711
10795
|
Entity: z.ZodNullable<z.ZodString>;
|
|
10796
|
+
TemplateContent: z.ZodNullable<z.ZodString>;
|
|
10712
10797
|
}, "strip", z.ZodTypeAny, {
|
|
10713
10798
|
ID?: string;
|
|
10714
10799
|
__mj_CreatedAt?: Date;
|
|
@@ -10728,6 +10813,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
|
|
|
10728
10813
|
LinkedParameterName?: string;
|
|
10729
10814
|
LinkedParameterField?: string;
|
|
10730
10815
|
TemplateContentID?: string;
|
|
10816
|
+
TemplateContent?: string;
|
|
10731
10817
|
}, {
|
|
10732
10818
|
ID?: string;
|
|
10733
10819
|
__mj_CreatedAt?: Date;
|
|
@@ -10747,6 +10833,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
|
|
|
10747
10833
|
LinkedParameterName?: string;
|
|
10748
10834
|
LinkedParameterField?: string;
|
|
10749
10835
|
TemplateContentID?: string;
|
|
10836
|
+
TemplateContent?: string;
|
|
10750
10837
|
}>;
|
|
10751
10838
|
export type TemplateParamEntityType = z.infer<typeof TemplateParamSchema>;
|
|
10752
10839
|
/**
|
|
@@ -12814,6 +12901,7 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
|
|
|
12814
12901
|
/**
|
|
12815
12902
|
* Validate() method override for AI Agent Actions entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
12816
12903
|
* * CompactLength: This rule ensures that if a value is provided for CompactLength, it must be greater than zero. If CompactLength is left empty, no rule applies.
|
|
12904
|
+
* * CompactMode: Compact Mode can be left empty, but if a value is provided it must be either "AI Summary" or "First N Chars".
|
|
12817
12905
|
* * MaxExecutionsPerRun: This rule ensures that if the maximum executions per run is specified, the number must be greater than zero. If it is not specified, no restriction applies.
|
|
12818
12906
|
* * MinExecutionsPerRun: This rule ensures that if a minimum executions per run value is provided, it must be zero or greater.
|
|
12819
12907
|
* * ResultExpirationTurns: This rule ensures that if the ResultExpirationTurns field has a value, it must be zero or greater (it cannot be negative). If ResultExpirationTurns is left empty, there is no restriction.
|
|
@@ -12834,6 +12922,13 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
|
|
|
12834
12922
|
*/
|
|
12835
12923
|
ValidateCompactLengthGreaterThanZero(result: ValidationResult): void;
|
|
12836
12924
|
/**
|
|
12925
|
+
* Compact Mode can be left empty, but if a value is provided it must be either "AI Summary" or "First N Chars".
|
|
12926
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
12927
|
+
* @public
|
|
12928
|
+
* @method
|
|
12929
|
+
*/
|
|
12930
|
+
ValidateCompactModeAllowedValues(result: ValidationResult): void;
|
|
12931
|
+
/**
|
|
12837
12932
|
* This rule ensures that if the maximum executions per run is specified, the number must be greater than zero. If it is not specified, no restriction applies.
|
|
12838
12933
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
12839
12934
|
* @public
|
|
@@ -13506,6 +13601,18 @@ export declare class AIAgentNoteEntity extends BaseEntity<AIAgentNoteEntityType>
|
|
|
13506
13601
|
*/
|
|
13507
13602
|
get SourceConversation(): string | null;
|
|
13508
13603
|
/**
|
|
13604
|
+
* * Field Name: SourceConversationDetail
|
|
13605
|
+
* * Display Name: Source Conversation Detail
|
|
13606
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
13607
|
+
*/
|
|
13608
|
+
get SourceConversationDetail(): string | null;
|
|
13609
|
+
/**
|
|
13610
|
+
* * Field Name: SourceAIAgentRun
|
|
13611
|
+
* * Display Name: Source AI Agent Run
|
|
13612
|
+
* * SQL Data Type: nvarchar(255)
|
|
13613
|
+
*/
|
|
13614
|
+
get SourceAIAgentRun(): string | null;
|
|
13615
|
+
/**
|
|
13509
13616
|
* * Field Name: Company
|
|
13510
13617
|
* * Display Name: Company
|
|
13511
13618
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -15691,6 +15798,12 @@ export declare class AIResultCacheEntity extends BaseEntity<AIResultCacheEntityT
|
|
|
15691
15798
|
* * SQL Data Type: nvarchar(100)
|
|
15692
15799
|
*/
|
|
15693
15800
|
get Configuration(): string | null;
|
|
15801
|
+
/**
|
|
15802
|
+
* * Field Name: PromptRun
|
|
15803
|
+
* * Display Name: Prompt Run
|
|
15804
|
+
* * SQL Data Type: nvarchar(255)
|
|
15805
|
+
*/
|
|
15806
|
+
get PromptRun(): string | null;
|
|
15694
15807
|
}
|
|
15695
15808
|
/**
|
|
15696
15809
|
* Application Entities - strongly typed entity sub-class
|
|
@@ -19296,6 +19409,12 @@ export declare class ConversationEntity extends BaseEntity<ConversationEntityTyp
|
|
|
19296
19409
|
* * SQL Data Type: nvarchar(255)
|
|
19297
19410
|
*/
|
|
19298
19411
|
get Project(): string | null;
|
|
19412
|
+
/**
|
|
19413
|
+
* * Field Name: TestRun
|
|
19414
|
+
* * Display Name: Test Run
|
|
19415
|
+
* * SQL Data Type: nvarchar(255)
|
|
19416
|
+
*/
|
|
19417
|
+
get TestRun(): string | null;
|
|
19299
19418
|
}
|
|
19300
19419
|
/**
|
|
19301
19420
|
* Dashboard Categories - strongly typed entity sub-class
|
|
@@ -20278,6 +20397,12 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
|
|
|
20278
20397
|
* * Default Value: getutcdate()
|
|
20279
20398
|
*/
|
|
20280
20399
|
get __mj_UpdatedAt(): Date;
|
|
20400
|
+
/**
|
|
20401
|
+
* * Field Name: DuplicateRun
|
|
20402
|
+
* * Display Name: Duplicate Run
|
|
20403
|
+
* * SQL Data Type: nvarchar(255)
|
|
20404
|
+
*/
|
|
20405
|
+
get DuplicateRun(): string;
|
|
20281
20406
|
}
|
|
20282
20407
|
/**
|
|
20283
20408
|
* Duplicate Runs - strongly typed entity sub-class
|
|
@@ -20521,6 +20646,12 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity<Employe
|
|
|
20521
20646
|
*/
|
|
20522
20647
|
get __mj_UpdatedAt(): Date;
|
|
20523
20648
|
/**
|
|
20649
|
+
* * Field Name: Employee
|
|
20650
|
+
* * Display Name: Employee
|
|
20651
|
+
* * SQL Data Type: nvarchar(81)
|
|
20652
|
+
*/
|
|
20653
|
+
get Employee(): string | null;
|
|
20654
|
+
/**
|
|
20524
20655
|
* * Field Name: CompanyIntegration
|
|
20525
20656
|
* * Display Name: Company Integration
|
|
20526
20657
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -20590,6 +20721,12 @@ export declare class EmployeeRoleEntity extends BaseEntity<EmployeeRoleEntityTyp
|
|
|
20590
20721
|
*/
|
|
20591
20722
|
get __mj_UpdatedAt(): Date;
|
|
20592
20723
|
/**
|
|
20724
|
+
* * Field Name: Employee
|
|
20725
|
+
* * Display Name: Employee
|
|
20726
|
+
* * SQL Data Type: nvarchar(81)
|
|
20727
|
+
*/
|
|
20728
|
+
get Employee(): string | null;
|
|
20729
|
+
/**
|
|
20593
20730
|
* * Field Name: Role
|
|
20594
20731
|
* * Display Name: Role
|
|
20595
20732
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -20659,6 +20796,12 @@ export declare class EmployeeSkillEntity extends BaseEntity<EmployeeSkillEntityT
|
|
|
20659
20796
|
*/
|
|
20660
20797
|
get __mj_UpdatedAt(): Date;
|
|
20661
20798
|
/**
|
|
20799
|
+
* * Field Name: Employee
|
|
20800
|
+
* * Display Name: Employee
|
|
20801
|
+
* * SQL Data Type: nvarchar(81)
|
|
20802
|
+
*/
|
|
20803
|
+
get Employee(): string | null;
|
|
20804
|
+
/**
|
|
20662
20805
|
* * Field Name: Skill
|
|
20663
20806
|
* * Display Name: Skill
|
|
20664
20807
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -21471,6 +21614,18 @@ export declare class EntityActionFilterEntity extends BaseEntity<EntityActionFil
|
|
|
21471
21614
|
* * Default Value: getutcdate()
|
|
21472
21615
|
*/
|
|
21473
21616
|
get __mj_UpdatedAt(): Date;
|
|
21617
|
+
/**
|
|
21618
|
+
* * Field Name: EntityAction
|
|
21619
|
+
* * Display Name: Entity Action
|
|
21620
|
+
* * SQL Data Type: nvarchar(425)
|
|
21621
|
+
*/
|
|
21622
|
+
get EntityAction(): string;
|
|
21623
|
+
/**
|
|
21624
|
+
* * Field Name: ActionFilter
|
|
21625
|
+
* * Display Name: Action Filter
|
|
21626
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
21627
|
+
*/
|
|
21628
|
+
get ActionFilter(): string;
|
|
21474
21629
|
}
|
|
21475
21630
|
/**
|
|
21476
21631
|
* Entity Action Invocation Types - strongly typed entity sub-class
|
|
@@ -21621,6 +21776,12 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
|
|
|
21621
21776
|
*/
|
|
21622
21777
|
get __mj_UpdatedAt(): Date;
|
|
21623
21778
|
/**
|
|
21779
|
+
* * Field Name: EntityAction
|
|
21780
|
+
* * Display Name: Entity Action
|
|
21781
|
+
* * SQL Data Type: nvarchar(425)
|
|
21782
|
+
*/
|
|
21783
|
+
get EntityAction(): string;
|
|
21784
|
+
/**
|
|
21624
21785
|
* * Field Name: InvocationType
|
|
21625
21786
|
* * Display Name: Invocation Type
|
|
21626
21787
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -21720,6 +21881,12 @@ export declare class EntityActionParamEntity extends BaseEntity<EntityActionPara
|
|
|
21720
21881
|
*/
|
|
21721
21882
|
get __mj_UpdatedAt(): Date;
|
|
21722
21883
|
/**
|
|
21884
|
+
* * Field Name: EntityAction
|
|
21885
|
+
* * Display Name: Entity Action
|
|
21886
|
+
* * SQL Data Type: nvarchar(425)
|
|
21887
|
+
*/
|
|
21888
|
+
get EntityAction(): string;
|
|
21889
|
+
/**
|
|
21723
21890
|
* * Field Name: ActionParam
|
|
21724
21891
|
* * Display Name: Action Param
|
|
21725
21892
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -22062,6 +22229,12 @@ export declare class EntityCommunicationFieldEntity extends BaseEntity<EntityCom
|
|
|
22062
22229
|
* * Default Value: getutcdate()
|
|
22063
22230
|
*/
|
|
22064
22231
|
get __mj_UpdatedAt(): Date;
|
|
22232
|
+
/**
|
|
22233
|
+
* * Field Name: EntityCommunicationMessageType
|
|
22234
|
+
* * Display Name: Entity Communication Message Type
|
|
22235
|
+
* * SQL Data Type: nvarchar(100)
|
|
22236
|
+
*/
|
|
22237
|
+
get EntityCommunicationMessageType(): string;
|
|
22065
22238
|
}
|
|
22066
22239
|
/**
|
|
22067
22240
|
* Entity Communication Message Types - strongly typed entity sub-class
|
|
@@ -24103,6 +24276,18 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
|
|
|
24103
24276
|
* * Default Value: getutcdate()
|
|
24104
24277
|
*/
|
|
24105
24278
|
get __mj_UpdatedAt(): Date;
|
|
24279
|
+
/**
|
|
24280
|
+
* * Field Name: CompanyIntegrationRun
|
|
24281
|
+
* * Display Name: Company Integration Run
|
|
24282
|
+
* * SQL Data Type: nvarchar(100)
|
|
24283
|
+
*/
|
|
24284
|
+
get CompanyIntegrationRun(): string | null;
|
|
24285
|
+
/**
|
|
24286
|
+
* * Field Name: CompanyIntegrationRunDetail
|
|
24287
|
+
* * Display Name: Company Integration Run Detail
|
|
24288
|
+
* * SQL Data Type: nvarchar(450)
|
|
24289
|
+
*/
|
|
24290
|
+
get CompanyIntegrationRunDetail(): string | null;
|
|
24106
24291
|
}
|
|
24107
24292
|
/**
|
|
24108
24293
|
* Explorer Navigation Items - strongly typed entity sub-class
|
|
@@ -25969,6 +26154,7 @@ export declare class AIAgentDataSourceEntity extends BaseEntity<AIAgentDataSourc
|
|
|
25969
26154
|
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
25970
26155
|
/**
|
|
25971
26156
|
* Validate() method override for MJ: AI Agent Data Sources entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
26157
|
+
* * ResultType: Result Type can be left blank, but if a value is provided it must be either 'entity_object' or 'simple'. This ensures only supported result types are stored.
|
|
25972
26158
|
* * Table-Level: This rule ensures that if the cache policy is set to 'PerAgent', a cache timeout value must be provided. For other cache policies, providing a cache timeout is optional.
|
|
25973
26159
|
* * Table-Level: This rule makes sure that if the source type is 'RunView', the entity name must be provided. If the source type is anything else, the entity name can be left blank.
|
|
25974
26160
|
* * Table-Level: This rule ensures that when the Source Type is set to 'RunQuery', a Query Name must be provided. If Source Type is anything other than 'RunQuery', Query Name is optional.
|
|
@@ -25978,6 +26164,13 @@ export declare class AIAgentDataSourceEntity extends BaseEntity<AIAgentDataSourc
|
|
|
25978
26164
|
*/
|
|
25979
26165
|
Validate(): ValidationResult;
|
|
25980
26166
|
/**
|
|
26167
|
+
* Result Type can be left blank, but if a value is provided it must be either 'entity_object' or 'simple'. This ensures only supported result types are stored.
|
|
26168
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
26169
|
+
* @public
|
|
26170
|
+
* @method
|
|
26171
|
+
*/
|
|
26172
|
+
ValidateResultTypeAllowedValues(result: ValidationResult): void;
|
|
26173
|
+
/**
|
|
25981
26174
|
* This rule ensures that if the cache policy is set to 'PerAgent', a cache timeout value must be provided. For other cache policies, providing a cache timeout is optional.
|
|
25982
26175
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
25983
26176
|
* @public
|
|
@@ -26420,6 +26613,18 @@ export declare class AIAgentExampleEntity extends BaseEntity<AIAgentExampleEntit
|
|
|
26420
26613
|
*/
|
|
26421
26614
|
get SourceConversation(): string | null;
|
|
26422
26615
|
/**
|
|
26616
|
+
* * Field Name: SourceConversationDetail
|
|
26617
|
+
* * Display Name: Source Conversation Detail
|
|
26618
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
26619
|
+
*/
|
|
26620
|
+
get SourceConversationDetail(): string | null;
|
|
26621
|
+
/**
|
|
26622
|
+
* * Field Name: SourceAIAgentRun
|
|
26623
|
+
* * Display Name: Source AI Agent Run
|
|
26624
|
+
* * SQL Data Type: nvarchar(255)
|
|
26625
|
+
*/
|
|
26626
|
+
get SourceAIAgentRun(): string | null;
|
|
26627
|
+
/**
|
|
26423
26628
|
* * Field Name: EmbeddingModel
|
|
26424
26629
|
* * Display Name: Embedding Model
|
|
26425
26630
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -27031,6 +27236,7 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
|
|
|
27031
27236
|
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
27032
27237
|
/**
|
|
27033
27238
|
* Validate() method override for MJ: AI Agent Run Steps entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
27239
|
+
* * FinalPayloadValidationResult: The FinalPayloadValidationResult field must either be empty or contain one of the approved status values – Warn, Fail, Retry, or Pass – ensuring only recognized validation outcomes are stored.
|
|
27034
27240
|
* * StepNumber: This rule ensures that the step number must be greater than zero.
|
|
27035
27241
|
* @public
|
|
27036
27242
|
* @method
|
|
@@ -27038,6 +27244,13 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
|
|
|
27038
27244
|
*/
|
|
27039
27245
|
Validate(): ValidationResult;
|
|
27040
27246
|
/**
|
|
27247
|
+
* The FinalPayloadValidationResult field must either be empty or contain one of the approved status values – Warn, Fail, Retry, or Pass – ensuring only recognized validation outcomes are stored.
|
|
27248
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
27249
|
+
* @public
|
|
27250
|
+
* @method
|
|
27251
|
+
*/
|
|
27252
|
+
ValidateFinalPayloadValidationResultAllowedValues(result: ValidationResult): void;
|
|
27253
|
+
/**
|
|
27041
27254
|
* This rule ensures that the step number must be greater than zero.
|
|
27042
27255
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
27043
27256
|
* @public
|
|
@@ -27254,6 +27467,18 @@ detailed information about what validation rules failed.
|
|
|
27254
27467
|
get Comments(): string | null;
|
|
27255
27468
|
set Comments(value: string | null);
|
|
27256
27469
|
/**
|
|
27470
|
+
* * Field Name: AgentRun
|
|
27471
|
+
* * Display Name: Agent Run
|
|
27472
|
+
* * SQL Data Type: nvarchar(255)
|
|
27473
|
+
*/
|
|
27474
|
+
get AgentRun(): string | null;
|
|
27475
|
+
/**
|
|
27476
|
+
* * Field Name: Parent
|
|
27477
|
+
* * Display Name: Parent
|
|
27478
|
+
* * SQL Data Type: nvarchar(255)
|
|
27479
|
+
*/
|
|
27480
|
+
get Parent(): string | null;
|
|
27481
|
+
/**
|
|
27257
27482
|
* * Field Name: RootParentID
|
|
27258
27483
|
* * Display Name: Root Parent ID
|
|
27259
27484
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -27287,6 +27512,7 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
|
|
|
27287
27512
|
/**
|
|
27288
27513
|
* Validate() method override for MJ: AI Agent Runs entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
27289
27514
|
* * EffortLevel: This rule ensures that the effort level, if specified, must be a number between 1 and 100, inclusive.
|
|
27515
|
+
* * FinalStep: Final Step must be either empty or one of the predefined values: While, ForEach, Chat, Sub-Agent, Actions, Retry, Failed, or Success. This ensures the step recorded for a run is valid and recognizable.
|
|
27290
27516
|
* @public
|
|
27291
27517
|
* @method
|
|
27292
27518
|
* @override
|
|
@@ -27300,6 +27526,13 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
|
|
|
27300
27526
|
*/
|
|
27301
27527
|
ValidateEffortLevelBetween1And100(result: ValidationResult): void;
|
|
27302
27528
|
/**
|
|
27529
|
+
* Final Step must be either empty or one of the predefined values: While, ForEach, Chat, Sub-Agent, Actions, Retry, Failed, or Success. This ensures the step recorded for a run is valid and recognizable.
|
|
27530
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
27531
|
+
* @public
|
|
27532
|
+
* @method
|
|
27533
|
+
*/
|
|
27534
|
+
ValidateFinalStepAllowedValues(result: ValidationResult): void;
|
|
27535
|
+
/**
|
|
27303
27536
|
* * Field Name: ID
|
|
27304
27537
|
* * Display Name: ID
|
|
27305
27538
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -27728,6 +27961,12 @@ each time the agent processes a prompt step.
|
|
|
27728
27961
|
*/
|
|
27729
27962
|
get ScheduledJobRun(): string | null;
|
|
27730
27963
|
/**
|
|
27964
|
+
* * Field Name: TestRun
|
|
27965
|
+
* * Display Name: Test Run
|
|
27966
|
+
* * SQL Data Type: nvarchar(255)
|
|
27967
|
+
*/
|
|
27968
|
+
get TestRun(): string | null;
|
|
27969
|
+
/**
|
|
27731
27970
|
* * Field Name: RootParentRunID
|
|
27732
27971
|
* * Display Name: Root Parent Run ID
|
|
27733
27972
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -33320,6 +33559,12 @@ export declare class ConversationDetailArtifactEntity extends BaseEntity<Convers
|
|
|
33320
33559
|
*/
|
|
33321
33560
|
get __mj_UpdatedAt(): Date;
|
|
33322
33561
|
/**
|
|
33562
|
+
* * Field Name: ConversationDetail
|
|
33563
|
+
* * Display Name: Conversation Detail
|
|
33564
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
33565
|
+
*/
|
|
33566
|
+
get ConversationDetail(): string;
|
|
33567
|
+
/**
|
|
33323
33568
|
* * Field Name: ArtifactVersion
|
|
33324
33569
|
* * Display Name: Artifact Version
|
|
33325
33570
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -33601,6 +33846,12 @@ export declare class ConversationDetailRatingEntity extends BaseEntity<Conversat
|
|
|
33601
33846
|
*/
|
|
33602
33847
|
get __mj_UpdatedAt(): Date;
|
|
33603
33848
|
/**
|
|
33849
|
+
* * Field Name: ConversationDetail
|
|
33850
|
+
* * Display Name: Conversation Detail
|
|
33851
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
33852
|
+
*/
|
|
33853
|
+
get ConversationDetail(): string;
|
|
33854
|
+
/**
|
|
33604
33855
|
* * Field Name: User
|
|
33605
33856
|
* * Display Name: User
|
|
33606
33857
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -36510,6 +36761,12 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
|
|
|
36510
36761
|
*/
|
|
36511
36762
|
get Project(): string | null;
|
|
36512
36763
|
/**
|
|
36764
|
+
* * Field Name: ConversationDetail
|
|
36765
|
+
* * Display Name: Conversation Detail
|
|
36766
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
36767
|
+
*/
|
|
36768
|
+
get ConversationDetail(): string | null;
|
|
36769
|
+
/**
|
|
36513
36770
|
* * Field Name: User
|
|
36514
36771
|
* * Display Name: User
|
|
36515
36772
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -39319,6 +39576,12 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
|
|
|
39319
39576
|
*/
|
|
39320
39577
|
get __mj_UpdatedAt(): Date;
|
|
39321
39578
|
/**
|
|
39579
|
+
* * Field Name: Recommendation
|
|
39580
|
+
* * Display Name: Recommendation
|
|
39581
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
39582
|
+
*/
|
|
39583
|
+
get Recommendation(): string;
|
|
39584
|
+
/**
|
|
39322
39585
|
* * Field Name: DestinationEntity
|
|
39323
39586
|
* * Display Name: Destination Entity
|
|
39324
39587
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -39570,6 +39833,12 @@ export declare class RecommendationEntity extends BaseEntity<RecommendationEntit
|
|
|
39570
39833
|
*/
|
|
39571
39834
|
get __mj_UpdatedAt(): Date;
|
|
39572
39835
|
/**
|
|
39836
|
+
* * Field Name: RecommendationRun
|
|
39837
|
+
* * Display Name: Recommendation Run
|
|
39838
|
+
* * SQL Data Type: nvarchar(255)
|
|
39839
|
+
*/
|
|
39840
|
+
get RecommendationRun(): string;
|
|
39841
|
+
/**
|
|
39573
39842
|
* * Field Name: SourceEntity
|
|
39574
39843
|
* * Display Name: Source Entity
|
|
39575
39844
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -39854,6 +40123,12 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
|
|
|
39854
40123
|
*/
|
|
39855
40124
|
get User(): string;
|
|
39856
40125
|
/**
|
|
40126
|
+
* * Field Name: ReplayRun
|
|
40127
|
+
* * Display Name: Replay Run
|
|
40128
|
+
* * SQL Data Type: nvarchar(100)
|
|
40129
|
+
*/
|
|
40130
|
+
get ReplayRun(): string | null;
|
|
40131
|
+
/**
|
|
39857
40132
|
* * Field Name: Integration
|
|
39858
40133
|
* * Display Name: Integration
|
|
39859
40134
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -39943,6 +40218,12 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
|
|
|
39943
40218
|
* * Default Value: getutcdate()
|
|
39944
40219
|
*/
|
|
39945
40220
|
get __mj_UpdatedAt(): Date;
|
|
40221
|
+
/**
|
|
40222
|
+
* * Field Name: RecordMergeLog
|
|
40223
|
+
* * Display Name: Record Merge Log
|
|
40224
|
+
* * SQL Data Type: nvarchar(450)
|
|
40225
|
+
*/
|
|
40226
|
+
get RecordMergeLog(): string;
|
|
39946
40227
|
}
|
|
39947
40228
|
/**
|
|
39948
40229
|
* Record Merge Logs - strongly typed entity sub-class
|
|
@@ -40495,6 +40776,12 @@ export declare class ReportEntity extends BaseEntity<ReportEntityType> {
|
|
|
40495
40776
|
*/
|
|
40496
40777
|
get Conversation(): string | null;
|
|
40497
40778
|
/**
|
|
40779
|
+
* * Field Name: ConversationDetail
|
|
40780
|
+
* * Display Name: Conversation Detail
|
|
40781
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
40782
|
+
*/
|
|
40783
|
+
get ConversationDetail(): string | null;
|
|
40784
|
+
/**
|
|
40498
40785
|
* * Field Name: DataContext
|
|
40499
40786
|
* * Display Name: Data Context
|
|
40500
40787
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -42132,6 +42419,12 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
|
|
|
42132
42419
|
* * SQL Data Type: nvarchar(255)
|
|
42133
42420
|
*/
|
|
42134
42421
|
get Entity(): string | null;
|
|
42422
|
+
/**
|
|
42423
|
+
* * Field Name: TemplateContent
|
|
42424
|
+
* * Display Name: Template Content
|
|
42425
|
+
* * SQL Data Type: nvarchar(255)
|
|
42426
|
+
*/
|
|
42427
|
+
get TemplateContent(): string | null;
|
|
42135
42428
|
}
|
|
42136
42429
|
/**
|
|
42137
42430
|
* Templates - strongly typed entity sub-class
|