@memberjunction/core-entities 2.132.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/ListDetailEntityExtended.d.ts +42 -0
- package/dist/custom/ListDetailEntityExtended.d.ts.map +1 -1
- package/dist/custom/ListDetailEntityExtended.js +124 -0
- package/dist/custom/ListDetailEntityExtended.js.map +1 -1
- 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/custom/UserViewEntity.d.ts +146 -9
- package/dist/custom/UserViewEntity.d.ts.map +1 -1
- package/dist/custom/UserViewEntity.js +71 -16
- package/dist/custom/UserViewEntity.js.map +1 -1
- package/dist/engines/UserInfoEngine.d.ts +26 -0
- package/dist/engines/UserInfoEngine.d.ts.map +1 -1
- package/dist/engines/UserInfoEngine.js +95 -0
- package/dist/engines/UserInfoEngine.js.map +1 -1
- package/dist/engines/UserViewEngine.d.ts +133 -0
- package/dist/engines/UserViewEngine.d.ts.map +1 -0
- package/dist/engines/UserViewEngine.js +244 -0
- package/dist/engines/UserViewEngine.js.map +1 -0
- package/dist/generated/entity_subclasses.d.ts +612 -8
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +868 -8
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.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>;
|
|
@@ -8064,6 +8130,85 @@ export declare const EnvironmentSchema: z.ZodObject<{
|
|
|
8064
8130
|
Settings?: string;
|
|
8065
8131
|
}>;
|
|
8066
8132
|
export type EnvironmentEntityType = z.infer<typeof EnvironmentSchema>;
|
|
8133
|
+
/**
|
|
8134
|
+
* zod schema definition for the entity MJ: List Invitations
|
|
8135
|
+
*/
|
|
8136
|
+
export declare const ListInvitationSchema: z.ZodObject<{
|
|
8137
|
+
ID: z.ZodString;
|
|
8138
|
+
ListID: z.ZodString;
|
|
8139
|
+
Email: z.ZodString;
|
|
8140
|
+
Role: z.ZodUnion<[z.ZodLiteral<"Editor">, z.ZodLiteral<"Viewer">]>;
|
|
8141
|
+
Token: z.ZodString;
|
|
8142
|
+
ExpiresAt: z.ZodDate;
|
|
8143
|
+
CreatedByUserID: z.ZodString;
|
|
8144
|
+
Status: z.ZodUnion<[z.ZodLiteral<"Accepted">, z.ZodLiteral<"Expired">, z.ZodLiteral<"Pending">, z.ZodLiteral<"Revoked">]>;
|
|
8145
|
+
__mj_CreatedAt: z.ZodDate;
|
|
8146
|
+
__mj_UpdatedAt: z.ZodDate;
|
|
8147
|
+
List: z.ZodString;
|
|
8148
|
+
CreatedByUser: z.ZodString;
|
|
8149
|
+
}, "strip", z.ZodTypeAny, {
|
|
8150
|
+
ID?: string;
|
|
8151
|
+
__mj_CreatedAt?: Date;
|
|
8152
|
+
__mj_UpdatedAt?: Date;
|
|
8153
|
+
Status?: "Pending" | "Revoked" | "Expired" | "Accepted";
|
|
8154
|
+
Role?: "Editor" | "Viewer";
|
|
8155
|
+
Email?: string;
|
|
8156
|
+
List?: string;
|
|
8157
|
+
ListID?: string;
|
|
8158
|
+
ExpiresAt?: Date;
|
|
8159
|
+
Token?: string;
|
|
8160
|
+
CreatedByUserID?: string;
|
|
8161
|
+
CreatedByUser?: string;
|
|
8162
|
+
}, {
|
|
8163
|
+
ID?: string;
|
|
8164
|
+
__mj_CreatedAt?: Date;
|
|
8165
|
+
__mj_UpdatedAt?: Date;
|
|
8166
|
+
Status?: "Pending" | "Revoked" | "Expired" | "Accepted";
|
|
8167
|
+
Role?: "Editor" | "Viewer";
|
|
8168
|
+
Email?: string;
|
|
8169
|
+
List?: string;
|
|
8170
|
+
ListID?: string;
|
|
8171
|
+
ExpiresAt?: Date;
|
|
8172
|
+
Token?: string;
|
|
8173
|
+
CreatedByUserID?: string;
|
|
8174
|
+
CreatedByUser?: string;
|
|
8175
|
+
}>;
|
|
8176
|
+
export type ListInvitationEntityType = z.infer<typeof ListInvitationSchema>;
|
|
8177
|
+
/**
|
|
8178
|
+
* zod schema definition for the entity MJ: List Shares
|
|
8179
|
+
*/
|
|
8180
|
+
export declare const ListShareSchema: z.ZodObject<{
|
|
8181
|
+
ID: z.ZodString;
|
|
8182
|
+
ListID: z.ZodString;
|
|
8183
|
+
UserID: z.ZodString;
|
|
8184
|
+
Role: z.ZodUnion<[z.ZodLiteral<"Editor">, z.ZodLiteral<"Viewer">]>;
|
|
8185
|
+
Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Pending">]>;
|
|
8186
|
+
__mj_CreatedAt: z.ZodDate;
|
|
8187
|
+
__mj_UpdatedAt: z.ZodDate;
|
|
8188
|
+
List: z.ZodString;
|
|
8189
|
+
User: z.ZodString;
|
|
8190
|
+
}, "strip", z.ZodTypeAny, {
|
|
8191
|
+
ID?: string;
|
|
8192
|
+
__mj_CreatedAt?: Date;
|
|
8193
|
+
__mj_UpdatedAt?: Date;
|
|
8194
|
+
Status?: "Active" | "Pending";
|
|
8195
|
+
UserID?: string;
|
|
8196
|
+
User?: string;
|
|
8197
|
+
Role?: "Editor" | "Viewer";
|
|
8198
|
+
List?: string;
|
|
8199
|
+
ListID?: string;
|
|
8200
|
+
}, {
|
|
8201
|
+
ID?: string;
|
|
8202
|
+
__mj_CreatedAt?: Date;
|
|
8203
|
+
__mj_UpdatedAt?: Date;
|
|
8204
|
+
Status?: "Active" | "Pending";
|
|
8205
|
+
UserID?: string;
|
|
8206
|
+
User?: string;
|
|
8207
|
+
Role?: "Editor" | "Viewer";
|
|
8208
|
+
List?: string;
|
|
8209
|
+
ListID?: string;
|
|
8210
|
+
}>;
|
|
8211
|
+
export type ListShareEntityType = z.infer<typeof ListShareSchema>;
|
|
8067
8212
|
/**
|
|
8068
8213
|
* zod schema definition for the entity MJ: Projects
|
|
8069
8214
|
*/
|
|
@@ -8136,9 +8281,9 @@ export declare const PublicLinkSchema: z.ZodObject<{
|
|
|
8136
8281
|
User?: string;
|
|
8137
8282
|
IsActive?: boolean;
|
|
8138
8283
|
ExpiresAt?: Date;
|
|
8284
|
+
Token?: string;
|
|
8139
8285
|
ResourceType?: "Conversation" | "Artifact" | "Collection";
|
|
8140
8286
|
ResourceID?: string;
|
|
8141
|
-
Token?: string;
|
|
8142
8287
|
PasswordHash?: string;
|
|
8143
8288
|
MaxViews?: number;
|
|
8144
8289
|
CurrentViews?: number;
|
|
@@ -8150,9 +8295,9 @@ export declare const PublicLinkSchema: z.ZodObject<{
|
|
|
8150
8295
|
User?: string;
|
|
8151
8296
|
IsActive?: boolean;
|
|
8152
8297
|
ExpiresAt?: Date;
|
|
8298
|
+
Token?: string;
|
|
8153
8299
|
ResourceType?: "Conversation" | "Artifact" | "Collection";
|
|
8154
8300
|
ResourceID?: string;
|
|
8155
|
-
Token?: string;
|
|
8156
8301
|
PasswordHash?: string;
|
|
8157
8302
|
MaxViews?: number;
|
|
8158
8303
|
CurrentViews?: number;
|
|
@@ -8588,6 +8733,7 @@ export declare const TaskSchema: z.ZodObject<{
|
|
|
8588
8733
|
Type: z.ZodString;
|
|
8589
8734
|
Environment: z.ZodString;
|
|
8590
8735
|
Project: z.ZodNullable<z.ZodString>;
|
|
8736
|
+
ConversationDetail: z.ZodNullable<z.ZodString>;
|
|
8591
8737
|
User: z.ZodNullable<z.ZodString>;
|
|
8592
8738
|
Agent: z.ZodNullable<z.ZodString>;
|
|
8593
8739
|
RootParentID: z.ZodNullable<z.ZodString>;
|
|
@@ -8614,6 +8760,7 @@ export declare const TaskSchema: z.ZodObject<{
|
|
|
8614
8760
|
Project?: string;
|
|
8615
8761
|
CompletedAt?: Date;
|
|
8616
8762
|
ConversationDetailID?: string;
|
|
8763
|
+
ConversationDetail?: string;
|
|
8617
8764
|
PercentComplete?: number;
|
|
8618
8765
|
DueAt?: Date;
|
|
8619
8766
|
}, {
|
|
@@ -8639,6 +8786,7 @@ export declare const TaskSchema: z.ZodObject<{
|
|
|
8639
8786
|
Project?: string;
|
|
8640
8787
|
CompletedAt?: Date;
|
|
8641
8788
|
ConversationDetailID?: string;
|
|
8789
|
+
ConversationDetail?: string;
|
|
8642
8790
|
PercentComplete?: number;
|
|
8643
8791
|
DueAt?: Date;
|
|
8644
8792
|
}>;
|
|
@@ -9627,6 +9775,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
|
|
|
9627
9775
|
MatchProbability: z.ZodNullable<z.ZodNumber>;
|
|
9628
9776
|
__mj_CreatedAt: z.ZodDate;
|
|
9629
9777
|
__mj_UpdatedAt: z.ZodDate;
|
|
9778
|
+
Recommendation: z.ZodString;
|
|
9630
9779
|
DestinationEntity: z.ZodString;
|
|
9631
9780
|
}, "strip", z.ZodTypeAny, {
|
|
9632
9781
|
ID?: string;
|
|
@@ -9636,6 +9785,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
|
|
|
9636
9785
|
RecommendationID?: string;
|
|
9637
9786
|
DestinationEntityID?: string;
|
|
9638
9787
|
DestinationEntityRecordID?: string;
|
|
9788
|
+
Recommendation?: string;
|
|
9639
9789
|
DestinationEntity?: string;
|
|
9640
9790
|
}, {
|
|
9641
9791
|
ID?: string;
|
|
@@ -9645,6 +9795,7 @@ export declare const RecommendationItemSchema: z.ZodObject<{
|
|
|
9645
9795
|
RecommendationID?: string;
|
|
9646
9796
|
DestinationEntityID?: string;
|
|
9647
9797
|
DestinationEntityRecordID?: string;
|
|
9798
|
+
Recommendation?: string;
|
|
9648
9799
|
DestinationEntity?: string;
|
|
9649
9800
|
}>;
|
|
9650
9801
|
export type RecommendationItemEntityType = z.infer<typeof RecommendationItemSchema>;
|
|
@@ -9722,6 +9873,7 @@ export declare const RecommendationSchema: z.ZodObject<{
|
|
|
9722
9873
|
SourceEntityRecordID: z.ZodString;
|
|
9723
9874
|
__mj_CreatedAt: z.ZodDate;
|
|
9724
9875
|
__mj_UpdatedAt: z.ZodDate;
|
|
9876
|
+
RecommendationRun: z.ZodString;
|
|
9725
9877
|
SourceEntity: z.ZodString;
|
|
9726
9878
|
}, "strip", z.ZodTypeAny, {
|
|
9727
9879
|
ID?: string;
|
|
@@ -9731,6 +9883,7 @@ export declare const RecommendationSchema: z.ZodObject<{
|
|
|
9731
9883
|
SourceEntity?: string;
|
|
9732
9884
|
RecommendationRunID?: string;
|
|
9733
9885
|
SourceEntityRecordID?: string;
|
|
9886
|
+
RecommendationRun?: string;
|
|
9734
9887
|
}, {
|
|
9735
9888
|
ID?: string;
|
|
9736
9889
|
__mj_CreatedAt?: Date;
|
|
@@ -9739,6 +9892,7 @@ export declare const RecommendationSchema: z.ZodObject<{
|
|
|
9739
9892
|
SourceEntity?: string;
|
|
9740
9893
|
RecommendationRunID?: string;
|
|
9741
9894
|
SourceEntityRecordID?: string;
|
|
9895
|
+
RecommendationRun?: string;
|
|
9742
9896
|
}>;
|
|
9743
9897
|
export type RecommendationEntityType = z.infer<typeof RecommendationSchema>;
|
|
9744
9898
|
/**
|
|
@@ -9796,6 +9950,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
|
|
|
9796
9950
|
UpdatedAt: z.ZodDate;
|
|
9797
9951
|
Entity: z.ZodString;
|
|
9798
9952
|
User: z.ZodString;
|
|
9953
|
+
ReplayRun: z.ZodNullable<z.ZodString>;
|
|
9799
9954
|
Integration: z.ZodNullable<z.ZodString>;
|
|
9800
9955
|
}, "strip", z.ZodTypeAny, {
|
|
9801
9956
|
ID?: string;
|
|
@@ -9818,6 +9973,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
|
|
|
9818
9973
|
ReplayRunID?: string;
|
|
9819
9974
|
CreatedAt?: Date;
|
|
9820
9975
|
UpdatedAt?: Date;
|
|
9976
|
+
ReplayRun?: string;
|
|
9821
9977
|
}, {
|
|
9822
9978
|
ID?: string;
|
|
9823
9979
|
Comments?: string;
|
|
@@ -9839,6 +9995,7 @@ export declare const RecordChangeSchema: z.ZodObject<{
|
|
|
9839
9995
|
ReplayRunID?: string;
|
|
9840
9996
|
CreatedAt?: Date;
|
|
9841
9997
|
UpdatedAt?: Date;
|
|
9998
|
+
ReplayRun?: string;
|
|
9842
9999
|
}>;
|
|
9843
10000
|
export type RecordChangeEntityType = z.infer<typeof RecordChangeSchema>;
|
|
9844
10001
|
/**
|
|
@@ -9852,12 +10009,14 @@ export declare const RecordMergeDeletionLogSchema: z.ZodObject<{
|
|
|
9852
10009
|
ProcessingLog: z.ZodNullable<z.ZodString>;
|
|
9853
10010
|
__mj_CreatedAt: z.ZodDate;
|
|
9854
10011
|
__mj_UpdatedAt: z.ZodDate;
|
|
10012
|
+
RecordMergeLog: z.ZodString;
|
|
9855
10013
|
}, "strip", z.ZodTypeAny, {
|
|
9856
10014
|
ID?: string;
|
|
9857
10015
|
__mj_CreatedAt?: Date;
|
|
9858
10016
|
__mj_UpdatedAt?: Date;
|
|
9859
10017
|
Status?: "Pending" | "Complete" | "Error";
|
|
9860
10018
|
RecordMergeLogID?: string;
|
|
10019
|
+
RecordMergeLog?: string;
|
|
9861
10020
|
DeletedRecordID?: string;
|
|
9862
10021
|
ProcessingLog?: string;
|
|
9863
10022
|
}, {
|
|
@@ -9866,6 +10025,7 @@ export declare const RecordMergeDeletionLogSchema: z.ZodObject<{
|
|
|
9866
10025
|
__mj_UpdatedAt?: Date;
|
|
9867
10026
|
Status?: "Pending" | "Complete" | "Error";
|
|
9868
10027
|
RecordMergeLogID?: string;
|
|
10028
|
+
RecordMergeLog?: string;
|
|
9869
10029
|
DeletedRecordID?: string;
|
|
9870
10030
|
ProcessingLog?: string;
|
|
9871
10031
|
}>;
|
|
@@ -10023,6 +10183,7 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
10023
10183
|
Category: z.ZodNullable<z.ZodString>;
|
|
10024
10184
|
User: z.ZodString;
|
|
10025
10185
|
Conversation: z.ZodNullable<z.ZodString>;
|
|
10186
|
+
ConversationDetail: z.ZodNullable<z.ZodString>;
|
|
10026
10187
|
DataContext: z.ZodNullable<z.ZodString>;
|
|
10027
10188
|
OutputTriggerType: z.ZodNullable<z.ZodString>;
|
|
10028
10189
|
OutputFormatType: z.ZodNullable<z.ZodString>;
|
|
@@ -10048,6 +10209,7 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
10048
10209
|
Environment?: string;
|
|
10049
10210
|
Thumbnail?: string;
|
|
10050
10211
|
ConversationDetailID?: string;
|
|
10212
|
+
ConversationDetail?: string;
|
|
10051
10213
|
SharingScope?: "None" | "Specific" | "Everyone";
|
|
10052
10214
|
OutputTriggerTypeID?: string;
|
|
10053
10215
|
OutputFormatTypeID?: string;
|
|
@@ -10078,6 +10240,7 @@ export declare const ReportSchema: z.ZodObject<{
|
|
|
10078
10240
|
Environment?: string;
|
|
10079
10241
|
Thumbnail?: string;
|
|
10080
10242
|
ConversationDetailID?: string;
|
|
10243
|
+
ConversationDetail?: string;
|
|
10081
10244
|
SharingScope?: "None" | "Specific" | "Everyone";
|
|
10082
10245
|
OutputTriggerTypeID?: string;
|
|
10083
10246
|
OutputFormatTypeID?: string;
|
|
@@ -10348,15 +10511,15 @@ export declare const ScheduledActionSchema: z.ZodObject<{
|
|
|
10348
10511
|
Description?: string;
|
|
10349
10512
|
Status?: "Active" | "Disabled" | "Pending" | "Expired";
|
|
10350
10513
|
Type?: "Custom" | "Daily" | "Monthly" | "Weekly" | "Yearly";
|
|
10514
|
+
CreatedByUserID?: string;
|
|
10515
|
+
CreatedByUser?: string;
|
|
10351
10516
|
CronExpression?: string;
|
|
10352
10517
|
Timezone?: string;
|
|
10353
|
-
CreatedByUserID?: string;
|
|
10354
10518
|
IntervalDays?: number;
|
|
10355
10519
|
DayOfWeek?: string;
|
|
10356
10520
|
DayOfMonth?: number;
|
|
10357
10521
|
Month?: string;
|
|
10358
10522
|
CustomCronExpression?: string;
|
|
10359
|
-
CreatedByUser?: string;
|
|
10360
10523
|
}, {
|
|
10361
10524
|
ID?: string;
|
|
10362
10525
|
ActionID?: string;
|
|
@@ -10367,15 +10530,15 @@ export declare const ScheduledActionSchema: z.ZodObject<{
|
|
|
10367
10530
|
Description?: string;
|
|
10368
10531
|
Status?: "Active" | "Disabled" | "Pending" | "Expired";
|
|
10369
10532
|
Type?: "Custom" | "Daily" | "Monthly" | "Weekly" | "Yearly";
|
|
10533
|
+
CreatedByUserID?: string;
|
|
10534
|
+
CreatedByUser?: string;
|
|
10370
10535
|
CronExpression?: string;
|
|
10371
10536
|
Timezone?: string;
|
|
10372
|
-
CreatedByUserID?: string;
|
|
10373
10537
|
IntervalDays?: number;
|
|
10374
10538
|
DayOfWeek?: string;
|
|
10375
10539
|
DayOfMonth?: number;
|
|
10376
10540
|
Month?: string;
|
|
10377
10541
|
CustomCronExpression?: string;
|
|
10378
|
-
CreatedByUser?: string;
|
|
10379
10542
|
}>;
|
|
10380
10543
|
export type ScheduledActionEntityType = z.infer<typeof ScheduledActionSchema>;
|
|
10381
10544
|
/**
|
|
@@ -10630,6 +10793,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
|
|
|
10630
10793
|
TemplateContentID: z.ZodNullable<z.ZodString>;
|
|
10631
10794
|
Template: z.ZodString;
|
|
10632
10795
|
Entity: z.ZodNullable<z.ZodString>;
|
|
10796
|
+
TemplateContent: z.ZodNullable<z.ZodString>;
|
|
10633
10797
|
}, "strip", z.ZodTypeAny, {
|
|
10634
10798
|
ID?: string;
|
|
10635
10799
|
__mj_CreatedAt?: Date;
|
|
@@ -10649,6 +10813,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
|
|
|
10649
10813
|
LinkedParameterName?: string;
|
|
10650
10814
|
LinkedParameterField?: string;
|
|
10651
10815
|
TemplateContentID?: string;
|
|
10816
|
+
TemplateContent?: string;
|
|
10652
10817
|
}, {
|
|
10653
10818
|
ID?: string;
|
|
10654
10819
|
__mj_CreatedAt?: Date;
|
|
@@ -10668,6 +10833,7 @@ export declare const TemplateParamSchema: z.ZodObject<{
|
|
|
10668
10833
|
LinkedParameterName?: string;
|
|
10669
10834
|
LinkedParameterField?: string;
|
|
10670
10835
|
TemplateContentID?: string;
|
|
10836
|
+
TemplateContent?: string;
|
|
10671
10837
|
}>;
|
|
10672
10838
|
export type TemplateParamEntityType = z.infer<typeof TemplateParamSchema>;
|
|
10673
10839
|
/**
|
|
@@ -12735,6 +12901,7 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
|
|
|
12735
12901
|
/**
|
|
12736
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:
|
|
12737
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".
|
|
12738
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.
|
|
12739
12906
|
* * MinExecutionsPerRun: This rule ensures that if a minimum executions per run value is provided, it must be zero or greater.
|
|
12740
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.
|
|
@@ -12755,6 +12922,13 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
|
|
|
12755
12922
|
*/
|
|
12756
12923
|
ValidateCompactLengthGreaterThanZero(result: ValidationResult): void;
|
|
12757
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
|
+
/**
|
|
12758
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.
|
|
12759
12933
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
12760
12934
|
* @public
|
|
@@ -13427,6 +13601,18 @@ export declare class AIAgentNoteEntity extends BaseEntity<AIAgentNoteEntityType>
|
|
|
13427
13601
|
*/
|
|
13428
13602
|
get SourceConversation(): string | null;
|
|
13429
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
|
+
/**
|
|
13430
13616
|
* * Field Name: Company
|
|
13431
13617
|
* * Display Name: Company
|
|
13432
13618
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -15612,6 +15798,12 @@ export declare class AIResultCacheEntity extends BaseEntity<AIResultCacheEntityT
|
|
|
15612
15798
|
* * SQL Data Type: nvarchar(100)
|
|
15613
15799
|
*/
|
|
15614
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;
|
|
15615
15807
|
}
|
|
15616
15808
|
/**
|
|
15617
15809
|
* Application Entities - strongly typed entity sub-class
|
|
@@ -19217,6 +19409,12 @@ export declare class ConversationEntity extends BaseEntity<ConversationEntityTyp
|
|
|
19217
19409
|
* * SQL Data Type: nvarchar(255)
|
|
19218
19410
|
*/
|
|
19219
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;
|
|
19220
19418
|
}
|
|
19221
19419
|
/**
|
|
19222
19420
|
* Dashboard Categories - strongly typed entity sub-class
|
|
@@ -20199,6 +20397,12 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
|
|
|
20199
20397
|
* * Default Value: getutcdate()
|
|
20200
20398
|
*/
|
|
20201
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;
|
|
20202
20406
|
}
|
|
20203
20407
|
/**
|
|
20204
20408
|
* Duplicate Runs - strongly typed entity sub-class
|
|
@@ -20442,6 +20646,12 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity<Employe
|
|
|
20442
20646
|
*/
|
|
20443
20647
|
get __mj_UpdatedAt(): Date;
|
|
20444
20648
|
/**
|
|
20649
|
+
* * Field Name: Employee
|
|
20650
|
+
* * Display Name: Employee
|
|
20651
|
+
* * SQL Data Type: nvarchar(81)
|
|
20652
|
+
*/
|
|
20653
|
+
get Employee(): string | null;
|
|
20654
|
+
/**
|
|
20445
20655
|
* * Field Name: CompanyIntegration
|
|
20446
20656
|
* * Display Name: Company Integration
|
|
20447
20657
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -20511,6 +20721,12 @@ export declare class EmployeeRoleEntity extends BaseEntity<EmployeeRoleEntityTyp
|
|
|
20511
20721
|
*/
|
|
20512
20722
|
get __mj_UpdatedAt(): Date;
|
|
20513
20723
|
/**
|
|
20724
|
+
* * Field Name: Employee
|
|
20725
|
+
* * Display Name: Employee
|
|
20726
|
+
* * SQL Data Type: nvarchar(81)
|
|
20727
|
+
*/
|
|
20728
|
+
get Employee(): string | null;
|
|
20729
|
+
/**
|
|
20514
20730
|
* * Field Name: Role
|
|
20515
20731
|
* * Display Name: Role
|
|
20516
20732
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -20580,6 +20796,12 @@ export declare class EmployeeSkillEntity extends BaseEntity<EmployeeSkillEntityT
|
|
|
20580
20796
|
*/
|
|
20581
20797
|
get __mj_UpdatedAt(): Date;
|
|
20582
20798
|
/**
|
|
20799
|
+
* * Field Name: Employee
|
|
20800
|
+
* * Display Name: Employee
|
|
20801
|
+
* * SQL Data Type: nvarchar(81)
|
|
20802
|
+
*/
|
|
20803
|
+
get Employee(): string | null;
|
|
20804
|
+
/**
|
|
20583
20805
|
* * Field Name: Skill
|
|
20584
20806
|
* * Display Name: Skill
|
|
20585
20807
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -21392,6 +21614,18 @@ export declare class EntityActionFilterEntity extends BaseEntity<EntityActionFil
|
|
|
21392
21614
|
* * Default Value: getutcdate()
|
|
21393
21615
|
*/
|
|
21394
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;
|
|
21395
21629
|
}
|
|
21396
21630
|
/**
|
|
21397
21631
|
* Entity Action Invocation Types - strongly typed entity sub-class
|
|
@@ -21542,6 +21776,12 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
|
|
|
21542
21776
|
*/
|
|
21543
21777
|
get __mj_UpdatedAt(): Date;
|
|
21544
21778
|
/**
|
|
21779
|
+
* * Field Name: EntityAction
|
|
21780
|
+
* * Display Name: Entity Action
|
|
21781
|
+
* * SQL Data Type: nvarchar(425)
|
|
21782
|
+
*/
|
|
21783
|
+
get EntityAction(): string;
|
|
21784
|
+
/**
|
|
21545
21785
|
* * Field Name: InvocationType
|
|
21546
21786
|
* * Display Name: Invocation Type
|
|
21547
21787
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -21641,6 +21881,12 @@ export declare class EntityActionParamEntity extends BaseEntity<EntityActionPara
|
|
|
21641
21881
|
*/
|
|
21642
21882
|
get __mj_UpdatedAt(): Date;
|
|
21643
21883
|
/**
|
|
21884
|
+
* * Field Name: EntityAction
|
|
21885
|
+
* * Display Name: Entity Action
|
|
21886
|
+
* * SQL Data Type: nvarchar(425)
|
|
21887
|
+
*/
|
|
21888
|
+
get EntityAction(): string;
|
|
21889
|
+
/**
|
|
21644
21890
|
* * Field Name: ActionParam
|
|
21645
21891
|
* * Display Name: Action Param
|
|
21646
21892
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -21983,6 +22229,12 @@ export declare class EntityCommunicationFieldEntity extends BaseEntity<EntityCom
|
|
|
21983
22229
|
* * Default Value: getutcdate()
|
|
21984
22230
|
*/
|
|
21985
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;
|
|
21986
22238
|
}
|
|
21987
22239
|
/**
|
|
21988
22240
|
* Entity Communication Message Types - strongly typed entity sub-class
|
|
@@ -24024,6 +24276,18 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
|
|
|
24024
24276
|
* * Default Value: getutcdate()
|
|
24025
24277
|
*/
|
|
24026
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;
|
|
24027
24291
|
}
|
|
24028
24292
|
/**
|
|
24029
24293
|
* Explorer Navigation Items - strongly typed entity sub-class
|
|
@@ -25890,6 +26154,7 @@ export declare class AIAgentDataSourceEntity extends BaseEntity<AIAgentDataSourc
|
|
|
25890
26154
|
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
25891
26155
|
/**
|
|
25892
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.
|
|
25893
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.
|
|
25894
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.
|
|
25895
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.
|
|
@@ -25899,6 +26164,13 @@ export declare class AIAgentDataSourceEntity extends BaseEntity<AIAgentDataSourc
|
|
|
25899
26164
|
*/
|
|
25900
26165
|
Validate(): ValidationResult;
|
|
25901
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
|
+
/**
|
|
25902
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.
|
|
25903
26175
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
25904
26176
|
* @public
|
|
@@ -26341,6 +26613,18 @@ export declare class AIAgentExampleEntity extends BaseEntity<AIAgentExampleEntit
|
|
|
26341
26613
|
*/
|
|
26342
26614
|
get SourceConversation(): string | null;
|
|
26343
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
|
+
/**
|
|
26344
26628
|
* * Field Name: EmbeddingModel
|
|
26345
26629
|
* * Display Name: Embedding Model
|
|
26346
26630
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -26952,6 +27236,7 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
|
|
|
26952
27236
|
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
26953
27237
|
/**
|
|
26954
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.
|
|
26955
27240
|
* * StepNumber: This rule ensures that the step number must be greater than zero.
|
|
26956
27241
|
* @public
|
|
26957
27242
|
* @method
|
|
@@ -26959,6 +27244,13 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
|
|
|
26959
27244
|
*/
|
|
26960
27245
|
Validate(): ValidationResult;
|
|
26961
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
|
+
/**
|
|
26962
27254
|
* This rule ensures that the step number must be greater than zero.
|
|
26963
27255
|
* @param result - the ValidationResult object to add any errors or warnings to
|
|
26964
27256
|
* @public
|
|
@@ -27175,6 +27467,18 @@ detailed information about what validation rules failed.
|
|
|
27175
27467
|
get Comments(): string | null;
|
|
27176
27468
|
set Comments(value: string | null);
|
|
27177
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
|
+
/**
|
|
27178
27482
|
* * Field Name: RootParentID
|
|
27179
27483
|
* * Display Name: Root Parent ID
|
|
27180
27484
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -27208,6 +27512,7 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
|
|
|
27208
27512
|
/**
|
|
27209
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:
|
|
27210
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.
|
|
27211
27516
|
* @public
|
|
27212
27517
|
* @method
|
|
27213
27518
|
* @override
|
|
@@ -27221,6 +27526,13 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
|
|
|
27221
27526
|
*/
|
|
27222
27527
|
ValidateEffortLevelBetween1And100(result: ValidationResult): void;
|
|
27223
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
|
+
/**
|
|
27224
27536
|
* * Field Name: ID
|
|
27225
27537
|
* * Display Name: ID
|
|
27226
27538
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -27649,6 +27961,12 @@ each time the agent processes a prompt step.
|
|
|
27649
27961
|
*/
|
|
27650
27962
|
get ScheduledJobRun(): string | null;
|
|
27651
27963
|
/**
|
|
27964
|
+
* * Field Name: TestRun
|
|
27965
|
+
* * Display Name: Test Run
|
|
27966
|
+
* * SQL Data Type: nvarchar(255)
|
|
27967
|
+
*/
|
|
27968
|
+
get TestRun(): string | null;
|
|
27969
|
+
/**
|
|
27652
27970
|
* * Field Name: RootParentRunID
|
|
27653
27971
|
* * Display Name: Root Parent Run ID
|
|
27654
27972
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -33241,6 +33559,12 @@ export declare class ConversationDetailArtifactEntity extends BaseEntity<Convers
|
|
|
33241
33559
|
*/
|
|
33242
33560
|
get __mj_UpdatedAt(): Date;
|
|
33243
33561
|
/**
|
|
33562
|
+
* * Field Name: ConversationDetail
|
|
33563
|
+
* * Display Name: Conversation Detail
|
|
33564
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
33565
|
+
*/
|
|
33566
|
+
get ConversationDetail(): string;
|
|
33567
|
+
/**
|
|
33244
33568
|
* * Field Name: ArtifactVersion
|
|
33245
33569
|
* * Display Name: Artifact Version
|
|
33246
33570
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -33522,6 +33846,12 @@ export declare class ConversationDetailRatingEntity extends BaseEntity<Conversat
|
|
|
33522
33846
|
*/
|
|
33523
33847
|
get __mj_UpdatedAt(): Date;
|
|
33524
33848
|
/**
|
|
33849
|
+
* * Field Name: ConversationDetail
|
|
33850
|
+
* * Display Name: Conversation Detail
|
|
33851
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
33852
|
+
*/
|
|
33853
|
+
get ConversationDetail(): string;
|
|
33854
|
+
/**
|
|
33525
33855
|
* * Field Name: User
|
|
33526
33856
|
* * Display Name: User
|
|
33527
33857
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -34543,6 +34873,238 @@ export declare class EnvironmentEntity extends BaseEntity<EnvironmentEntityType>
|
|
|
34543
34873
|
*/
|
|
34544
34874
|
get __mj_UpdatedAt(): Date;
|
|
34545
34875
|
}
|
|
34876
|
+
/**
|
|
34877
|
+
* MJ: List Invitations - strongly typed entity sub-class
|
|
34878
|
+
* * Schema: __mj
|
|
34879
|
+
* * Base Table: ListInvitation
|
|
34880
|
+
* * Base View: vwListInvitations
|
|
34881
|
+
* * @description Tracks pending invitations for users to access lists, including external users via email.
|
|
34882
|
+
* * Primary Key: ID
|
|
34883
|
+
* @extends {BaseEntity}
|
|
34884
|
+
* @class
|
|
34885
|
+
* @public
|
|
34886
|
+
*/
|
|
34887
|
+
export declare class ListInvitationEntity extends BaseEntity<ListInvitationEntityType> {
|
|
34888
|
+
/**
|
|
34889
|
+
* Loads the MJ: List Invitations record from the database
|
|
34890
|
+
* @param ID: string - primary key value to load the MJ: List Invitations record.
|
|
34891
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
34892
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
34893
|
+
* @public
|
|
34894
|
+
* @async
|
|
34895
|
+
* @memberof ListInvitationEntity
|
|
34896
|
+
* @method
|
|
34897
|
+
* @override
|
|
34898
|
+
*/
|
|
34899
|
+
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
34900
|
+
/**
|
|
34901
|
+
* * Field Name: ID
|
|
34902
|
+
* * Display Name: ID
|
|
34903
|
+
* * SQL Data Type: uniqueidentifier
|
|
34904
|
+
* * Default Value: newsequentialid()
|
|
34905
|
+
* * Description: Unique identifier for the invitation.
|
|
34906
|
+
*/
|
|
34907
|
+
get ID(): string;
|
|
34908
|
+
set ID(value: string);
|
|
34909
|
+
/**
|
|
34910
|
+
* * Field Name: ListID
|
|
34911
|
+
* * Display Name: List
|
|
34912
|
+
* * SQL Data Type: uniqueidentifier
|
|
34913
|
+
* * Related Entity/Foreign Key: Lists (vwLists.ID)
|
|
34914
|
+
* * Description: The list the user is being invited to.
|
|
34915
|
+
*/
|
|
34916
|
+
get ListID(): string;
|
|
34917
|
+
set ListID(value: string);
|
|
34918
|
+
/**
|
|
34919
|
+
* * Field Name: Email
|
|
34920
|
+
* * Display Name: Email Address
|
|
34921
|
+
* * SQL Data Type: nvarchar(255)
|
|
34922
|
+
* * Description: Email address of the invitee.
|
|
34923
|
+
*/
|
|
34924
|
+
get Email(): string;
|
|
34925
|
+
set Email(value: string);
|
|
34926
|
+
/**
|
|
34927
|
+
* * Field Name: Role
|
|
34928
|
+
* * Display Name: Role
|
|
34929
|
+
* * SQL Data Type: nvarchar(50)
|
|
34930
|
+
* * Value List Type: List
|
|
34931
|
+
* * Possible Values
|
|
34932
|
+
* * Editor
|
|
34933
|
+
* * Viewer
|
|
34934
|
+
* * Description: The role to be assigned upon acceptance (Editor or Viewer).
|
|
34935
|
+
*/
|
|
34936
|
+
get Role(): 'Editor' | 'Viewer';
|
|
34937
|
+
set Role(value: 'Editor' | 'Viewer');
|
|
34938
|
+
/**
|
|
34939
|
+
* * Field Name: Token
|
|
34940
|
+
* * Display Name: Token
|
|
34941
|
+
* * SQL Data Type: nvarchar(100)
|
|
34942
|
+
* * Description: Security token for validating the invitation.
|
|
34943
|
+
*/
|
|
34944
|
+
get Token(): string;
|
|
34945
|
+
set Token(value: string);
|
|
34946
|
+
/**
|
|
34947
|
+
* * Field Name: ExpiresAt
|
|
34948
|
+
* * Display Name: Expires At
|
|
34949
|
+
* * SQL Data Type: datetime
|
|
34950
|
+
* * Description: When the invitation expires.
|
|
34951
|
+
*/
|
|
34952
|
+
get ExpiresAt(): Date;
|
|
34953
|
+
set ExpiresAt(value: Date);
|
|
34954
|
+
/**
|
|
34955
|
+
* * Field Name: CreatedByUserID
|
|
34956
|
+
* * Display Name: Created By User ID
|
|
34957
|
+
* * SQL Data Type: uniqueidentifier
|
|
34958
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
34959
|
+
* * Description: The user who created the invitation.
|
|
34960
|
+
*/
|
|
34961
|
+
get CreatedByUserID(): string;
|
|
34962
|
+
set CreatedByUserID(value: string);
|
|
34963
|
+
/**
|
|
34964
|
+
* * Field Name: Status
|
|
34965
|
+
* * Display Name: Status
|
|
34966
|
+
* * SQL Data Type: nvarchar(20)
|
|
34967
|
+
* * Default Value: Pending
|
|
34968
|
+
* * Value List Type: List
|
|
34969
|
+
* * Possible Values
|
|
34970
|
+
* * Accepted
|
|
34971
|
+
* * Expired
|
|
34972
|
+
* * Pending
|
|
34973
|
+
* * Revoked
|
|
34974
|
+
* * Description: Status of the invitation (Pending, Accepted, Expired, Revoked).
|
|
34975
|
+
*/
|
|
34976
|
+
get Status(): 'Accepted' | 'Expired' | 'Pending' | 'Revoked';
|
|
34977
|
+
set Status(value: 'Accepted' | 'Expired' | 'Pending' | 'Revoked');
|
|
34978
|
+
/**
|
|
34979
|
+
* * Field Name: __mj_CreatedAt
|
|
34980
|
+
* * Display Name: Created At
|
|
34981
|
+
* * SQL Data Type: datetimeoffset
|
|
34982
|
+
* * Default Value: getutcdate()
|
|
34983
|
+
*/
|
|
34984
|
+
get __mj_CreatedAt(): Date;
|
|
34985
|
+
/**
|
|
34986
|
+
* * Field Name: __mj_UpdatedAt
|
|
34987
|
+
* * Display Name: Updated At
|
|
34988
|
+
* * SQL Data Type: datetimeoffset
|
|
34989
|
+
* * Default Value: getutcdate()
|
|
34990
|
+
*/
|
|
34991
|
+
get __mj_UpdatedAt(): Date;
|
|
34992
|
+
/**
|
|
34993
|
+
* * Field Name: List
|
|
34994
|
+
* * Display Name: List Name
|
|
34995
|
+
* * SQL Data Type: nvarchar(100)
|
|
34996
|
+
*/
|
|
34997
|
+
get List(): string;
|
|
34998
|
+
/**
|
|
34999
|
+
* * Field Name: CreatedByUser
|
|
35000
|
+
* * Display Name: Created By User
|
|
35001
|
+
* * SQL Data Type: nvarchar(100)
|
|
35002
|
+
*/
|
|
35003
|
+
get CreatedByUser(): string;
|
|
35004
|
+
}
|
|
35005
|
+
/**
|
|
35006
|
+
* MJ: List Shares - strongly typed entity sub-class
|
|
35007
|
+
* * Schema: __mj
|
|
35008
|
+
* * Base Table: ListShare
|
|
35009
|
+
* * Base View: vwListShares
|
|
35010
|
+
* * @description Manages user access and permissions for shared lists.
|
|
35011
|
+
* * Primary Key: ID
|
|
35012
|
+
* @extends {BaseEntity}
|
|
35013
|
+
* @class
|
|
35014
|
+
* @public
|
|
35015
|
+
*/
|
|
35016
|
+
export declare class ListShareEntity extends BaseEntity<ListShareEntityType> {
|
|
35017
|
+
/**
|
|
35018
|
+
* Loads the MJ: List Shares record from the database
|
|
35019
|
+
* @param ID: string - primary key value to load the MJ: List Shares record.
|
|
35020
|
+
* @param EntityRelationshipsToLoad - (optional) the relationships to load
|
|
35021
|
+
* @returns {Promise<boolean>} - true if successful, false otherwise
|
|
35022
|
+
* @public
|
|
35023
|
+
* @async
|
|
35024
|
+
* @memberof ListShareEntity
|
|
35025
|
+
* @method
|
|
35026
|
+
* @override
|
|
35027
|
+
*/
|
|
35028
|
+
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
35029
|
+
/**
|
|
35030
|
+
* * Field Name: ID
|
|
35031
|
+
* * Display Name: ID
|
|
35032
|
+
* * SQL Data Type: uniqueidentifier
|
|
35033
|
+
* * Default Value: newsequentialid()
|
|
35034
|
+
* * Description: Unique identifier for the share record.
|
|
35035
|
+
*/
|
|
35036
|
+
get ID(): string;
|
|
35037
|
+
set ID(value: string);
|
|
35038
|
+
/**
|
|
35039
|
+
* * Field Name: ListID
|
|
35040
|
+
* * Display Name: List
|
|
35041
|
+
* * SQL Data Type: uniqueidentifier
|
|
35042
|
+
* * Related Entity/Foreign Key: Lists (vwLists.ID)
|
|
35043
|
+
* * Description: The list being shared.
|
|
35044
|
+
*/
|
|
35045
|
+
get ListID(): string;
|
|
35046
|
+
set ListID(value: string);
|
|
35047
|
+
/**
|
|
35048
|
+
* * Field Name: UserID
|
|
35049
|
+
* * Display Name: User
|
|
35050
|
+
* * SQL Data Type: uniqueidentifier
|
|
35051
|
+
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
35052
|
+
* * Description: The user receiving access to the list.
|
|
35053
|
+
*/
|
|
35054
|
+
get UserID(): string;
|
|
35055
|
+
set UserID(value: string);
|
|
35056
|
+
/**
|
|
35057
|
+
* * Field Name: Role
|
|
35058
|
+
* * Display Name: Role
|
|
35059
|
+
* * SQL Data Type: nvarchar(50)
|
|
35060
|
+
* * Value List Type: List
|
|
35061
|
+
* * Possible Values
|
|
35062
|
+
* * Editor
|
|
35063
|
+
* * Viewer
|
|
35064
|
+
* * Description: The permission level granted (Editor or Viewer).
|
|
35065
|
+
*/
|
|
35066
|
+
get Role(): 'Editor' | 'Viewer';
|
|
35067
|
+
set Role(value: 'Editor' | 'Viewer');
|
|
35068
|
+
/**
|
|
35069
|
+
* * Field Name: Status
|
|
35070
|
+
* * Display Name: Status
|
|
35071
|
+
* * SQL Data Type: nvarchar(20)
|
|
35072
|
+
* * Default Value: Active
|
|
35073
|
+
* * Value List Type: List
|
|
35074
|
+
* * Possible Values
|
|
35075
|
+
* * Active
|
|
35076
|
+
* * Pending
|
|
35077
|
+
* * Description: Current status of the share (Active or Pending).
|
|
35078
|
+
*/
|
|
35079
|
+
get Status(): 'Active' | 'Pending';
|
|
35080
|
+
set Status(value: 'Active' | 'Pending');
|
|
35081
|
+
/**
|
|
35082
|
+
* * Field Name: __mj_CreatedAt
|
|
35083
|
+
* * Display Name: Created At
|
|
35084
|
+
* * SQL Data Type: datetimeoffset
|
|
35085
|
+
* * Default Value: getutcdate()
|
|
35086
|
+
*/
|
|
35087
|
+
get __mj_CreatedAt(): Date;
|
|
35088
|
+
/**
|
|
35089
|
+
* * Field Name: __mj_UpdatedAt
|
|
35090
|
+
* * Display Name: Updated At
|
|
35091
|
+
* * SQL Data Type: datetimeoffset
|
|
35092
|
+
* * Default Value: getutcdate()
|
|
35093
|
+
*/
|
|
35094
|
+
get __mj_UpdatedAt(): Date;
|
|
35095
|
+
/**
|
|
35096
|
+
* * Field Name: List
|
|
35097
|
+
* * Display Name: List Name
|
|
35098
|
+
* * SQL Data Type: nvarchar(100)
|
|
35099
|
+
*/
|
|
35100
|
+
get List(): string;
|
|
35101
|
+
/**
|
|
35102
|
+
* * Field Name: User
|
|
35103
|
+
* * Display Name: User Name
|
|
35104
|
+
* * SQL Data Type: nvarchar(100)
|
|
35105
|
+
*/
|
|
35106
|
+
get User(): string;
|
|
35107
|
+
}
|
|
34546
35108
|
/**
|
|
34547
35109
|
* MJ: Projects - strongly typed entity sub-class
|
|
34548
35110
|
* * Schema: __mj
|
|
@@ -36199,6 +36761,12 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
|
|
|
36199
36761
|
*/
|
|
36200
36762
|
get Project(): string | null;
|
|
36201
36763
|
/**
|
|
36764
|
+
* * Field Name: ConversationDetail
|
|
36765
|
+
* * Display Name: Conversation Detail
|
|
36766
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
36767
|
+
*/
|
|
36768
|
+
get ConversationDetail(): string | null;
|
|
36769
|
+
/**
|
|
36202
36770
|
* * Field Name: User
|
|
36203
36771
|
* * Display Name: User
|
|
36204
36772
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -39008,6 +39576,12 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
|
|
|
39008
39576
|
*/
|
|
39009
39577
|
get __mj_UpdatedAt(): Date;
|
|
39010
39578
|
/**
|
|
39579
|
+
* * Field Name: Recommendation
|
|
39580
|
+
* * Display Name: Recommendation
|
|
39581
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
39582
|
+
*/
|
|
39583
|
+
get Recommendation(): string;
|
|
39584
|
+
/**
|
|
39011
39585
|
* * Field Name: DestinationEntity
|
|
39012
39586
|
* * Display Name: Destination Entity
|
|
39013
39587
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -39259,6 +39833,12 @@ export declare class RecommendationEntity extends BaseEntity<RecommendationEntit
|
|
|
39259
39833
|
*/
|
|
39260
39834
|
get __mj_UpdatedAt(): Date;
|
|
39261
39835
|
/**
|
|
39836
|
+
* * Field Name: RecommendationRun
|
|
39837
|
+
* * Display Name: Recommendation Run
|
|
39838
|
+
* * SQL Data Type: nvarchar(255)
|
|
39839
|
+
*/
|
|
39840
|
+
get RecommendationRun(): string;
|
|
39841
|
+
/**
|
|
39262
39842
|
* * Field Name: SourceEntity
|
|
39263
39843
|
* * Display Name: Source Entity
|
|
39264
39844
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -39543,6 +40123,12 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
|
|
|
39543
40123
|
*/
|
|
39544
40124
|
get User(): string;
|
|
39545
40125
|
/**
|
|
40126
|
+
* * Field Name: ReplayRun
|
|
40127
|
+
* * Display Name: Replay Run
|
|
40128
|
+
* * SQL Data Type: nvarchar(100)
|
|
40129
|
+
*/
|
|
40130
|
+
get ReplayRun(): string | null;
|
|
40131
|
+
/**
|
|
39546
40132
|
* * Field Name: Integration
|
|
39547
40133
|
* * Display Name: Integration
|
|
39548
40134
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -39632,6 +40218,12 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
|
|
|
39632
40218
|
* * Default Value: getutcdate()
|
|
39633
40219
|
*/
|
|
39634
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;
|
|
39635
40227
|
}
|
|
39636
40228
|
/**
|
|
39637
40229
|
* Record Merge Logs - strongly typed entity sub-class
|
|
@@ -40184,6 +40776,12 @@ export declare class ReportEntity extends BaseEntity<ReportEntityType> {
|
|
|
40184
40776
|
*/
|
|
40185
40777
|
get Conversation(): string | null;
|
|
40186
40778
|
/**
|
|
40779
|
+
* * Field Name: ConversationDetail
|
|
40780
|
+
* * Display Name: Conversation Detail
|
|
40781
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
40782
|
+
*/
|
|
40783
|
+
get ConversationDetail(): string | null;
|
|
40784
|
+
/**
|
|
40187
40785
|
* * Field Name: DataContext
|
|
40188
40786
|
* * Display Name: Data Context
|
|
40189
40787
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -41821,6 +42419,12 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
|
|
|
41821
42419
|
* * SQL Data Type: nvarchar(255)
|
|
41822
42420
|
*/
|
|
41823
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;
|
|
41824
42428
|
}
|
|
41825
42429
|
/**
|
|
41826
42430
|
* Templates - strongly typed entity sub-class
|