@memberjunction/core-entities 5.2.0 → 5.3.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/MJUserViewEntityExtended.d.ts +5 -0
- package/dist/custom/MJUserViewEntityExtended.d.ts.map +1 -1
- package/dist/custom/MJUserViewEntityExtended.js +23 -1
- package/dist/custom/MJUserViewEntityExtended.js.map +1 -1
- package/dist/engines/artifacts.d.ts +14 -2
- package/dist/engines/artifacts.d.ts.map +1 -1
- package/dist/engines/artifacts.js +51 -3
- package/dist/engines/artifacts.js.map +1 -1
- package/dist/generated/entity_subclasses.d.ts +301 -50
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +439 -97
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/package.json +5 -5
|
@@ -296,7 +296,7 @@ export declare const MJActionParamSchema: z.ZodObject<{
|
|
|
296
296
|
Name: z.ZodString;
|
|
297
297
|
DefaultValue: z.ZodNullable<z.ZodString>;
|
|
298
298
|
Type: z.ZodUnion<[z.ZodLiteral<"Both">, z.ZodLiteral<"Input">, z.ZodLiteral<"Output">]>;
|
|
299
|
-
ValueType: z.ZodUnion<[z.ZodLiteral<"BaseEntity Sub-Class">, z.ZodLiteral<"BaseEntity Sub-Class">, z.ZodLiteral<"MediaOutput">, z.ZodLiteral<"Other">, z.ZodLiteral<"
|
|
299
|
+
ValueType: z.ZodUnion<[z.ZodLiteral<"BaseEntity Sub-Class">, z.ZodLiteral<"BaseEntity Sub-Class">, z.ZodLiteral<"MediaOutput">, z.ZodLiteral<"Other">, z.ZodLiteral<"Scalar">, z.ZodLiteral<"Other">, z.ZodLiteral<"Scalar">, z.ZodLiteral<"Simple Object">, z.ZodLiteral<"Simple Object">]>;
|
|
300
300
|
IsArray: z.ZodBoolean;
|
|
301
301
|
Description: z.ZodNullable<z.ZodString>;
|
|
302
302
|
IsRequired: z.ZodBoolean;
|
|
@@ -1356,6 +1356,8 @@ export declare const MJAIAgentRunStepSchema: z.ZodObject<{
|
|
|
1356
1356
|
FinalPayloadValidationMessages: z.ZodNullable<z.ZodString>;
|
|
1357
1357
|
ParentID: z.ZodNullable<z.ZodString>;
|
|
1358
1358
|
Comments: z.ZodNullable<z.ZodString>;
|
|
1359
|
+
AgentRun: z.ZodNullable<z.ZodString>;
|
|
1360
|
+
Parent: z.ZodNullable<z.ZodString>;
|
|
1359
1361
|
RootParentID: z.ZodNullable<z.ZodString>;
|
|
1360
1362
|
}, "strip", z.ZodTypeAny, {
|
|
1361
1363
|
ID?: string;
|
|
@@ -1364,9 +1366,11 @@ export declare const MJAIAgentRunStepSchema: z.ZodObject<{
|
|
|
1364
1366
|
Comments?: string;
|
|
1365
1367
|
ParentID?: string;
|
|
1366
1368
|
Status?: "Failed" | "Cancelled" | "Completed" | "Running";
|
|
1369
|
+
Parent?: string;
|
|
1367
1370
|
RootParentID?: string;
|
|
1368
1371
|
StartedAt?: Date;
|
|
1369
1372
|
AgentRunID?: string;
|
|
1373
|
+
AgentRun?: string;
|
|
1370
1374
|
StepNumber?: number;
|
|
1371
1375
|
StepType?: "Prompt" | "Actions" | "Chat" | "Decision" | "ForEach" | "Sub-Agent" | "Validation" | "While";
|
|
1372
1376
|
StepName?: string;
|
|
@@ -1388,9 +1392,11 @@ export declare const MJAIAgentRunStepSchema: z.ZodObject<{
|
|
|
1388
1392
|
Comments?: string;
|
|
1389
1393
|
ParentID?: string;
|
|
1390
1394
|
Status?: "Failed" | "Cancelled" | "Completed" | "Running";
|
|
1395
|
+
Parent?: string;
|
|
1391
1396
|
RootParentID?: string;
|
|
1392
1397
|
StartedAt?: Date;
|
|
1393
1398
|
AgentRunID?: string;
|
|
1399
|
+
AgentRun?: string;
|
|
1394
1400
|
StepNumber?: number;
|
|
1395
1401
|
StepType?: "Prompt" | "Actions" | "Chat" | "Decision" | "ForEach" | "Sub-Agent" | "Validation" | "While";
|
|
1396
1402
|
StepName?: string;
|
|
@@ -3311,6 +3317,7 @@ export declare const MJAIResultCacheSchema: z.ZodObject<{
|
|
|
3311
3317
|
Vendor: z.ZodNullable<z.ZodString>;
|
|
3312
3318
|
Agent: z.ZodNullable<z.ZodString>;
|
|
3313
3319
|
Configuration: z.ZodNullable<z.ZodString>;
|
|
3320
|
+
PromptRun: z.ZodNullable<z.ZodString>;
|
|
3314
3321
|
}, "strip", z.ZodTypeAny, {
|
|
3315
3322
|
ID?: string;
|
|
3316
3323
|
__mj_CreatedAt?: Date;
|
|
@@ -3325,6 +3332,7 @@ export declare const MJAIResultCacheSchema: z.ZodObject<{
|
|
|
3325
3332
|
AIModel?: string;
|
|
3326
3333
|
VendorID?: string;
|
|
3327
3334
|
PromptRunID?: string;
|
|
3335
|
+
PromptRun?: string;
|
|
3328
3336
|
RunAt?: Date;
|
|
3329
3337
|
AIPromptID?: string;
|
|
3330
3338
|
PromptText?: string;
|
|
@@ -3346,6 +3354,7 @@ export declare const MJAIResultCacheSchema: z.ZodObject<{
|
|
|
3346
3354
|
AIModel?: string;
|
|
3347
3355
|
VendorID?: string;
|
|
3348
3356
|
PromptRunID?: string;
|
|
3357
|
+
PromptRun?: string;
|
|
3349
3358
|
RunAt?: Date;
|
|
3350
3359
|
AIPromptID?: string;
|
|
3351
3360
|
PromptText?: string;
|
|
@@ -5634,6 +5643,7 @@ export declare const MJConversationDetailArtifactSchema: z.ZodObject<{
|
|
|
5634
5643
|
Direction: z.ZodUnion<[z.ZodLiteral<"Input">, z.ZodLiteral<"Output">]>;
|
|
5635
5644
|
__mj_CreatedAt: z.ZodDate;
|
|
5636
5645
|
__mj_UpdatedAt: z.ZodDate;
|
|
5646
|
+
ConversationDetail: z.ZodString;
|
|
5637
5647
|
ArtifactVersion: z.ZodNullable<z.ZodString>;
|
|
5638
5648
|
}, "strip", z.ZodTypeAny, {
|
|
5639
5649
|
ID?: string;
|
|
@@ -5641,6 +5651,7 @@ export declare const MJConversationDetailArtifactSchema: z.ZodObject<{
|
|
|
5641
5651
|
__mj_UpdatedAt?: Date;
|
|
5642
5652
|
Direction?: "Input" | "Output";
|
|
5643
5653
|
ConversationDetailID?: string;
|
|
5654
|
+
ConversationDetail?: string;
|
|
5644
5655
|
ArtifactVersionID?: string;
|
|
5645
5656
|
ArtifactVersion?: string;
|
|
5646
5657
|
}, {
|
|
@@ -5649,6 +5660,7 @@ export declare const MJConversationDetailArtifactSchema: z.ZodObject<{
|
|
|
5649
5660
|
__mj_UpdatedAt?: Date;
|
|
5650
5661
|
Direction?: "Input" | "Output";
|
|
5651
5662
|
ConversationDetailID?: string;
|
|
5663
|
+
ConversationDetail?: string;
|
|
5652
5664
|
ArtifactVersionID?: string;
|
|
5653
5665
|
ArtifactVersion?: string;
|
|
5654
5666
|
}>;
|
|
@@ -5729,6 +5741,7 @@ export declare const MJConversationDetailRatingSchema: z.ZodObject<{
|
|
|
5729
5741
|
Comments: z.ZodNullable<z.ZodString>;
|
|
5730
5742
|
__mj_CreatedAt: z.ZodDate;
|
|
5731
5743
|
__mj_UpdatedAt: z.ZodDate;
|
|
5744
|
+
ConversationDetail: z.ZodString;
|
|
5732
5745
|
User: z.ZodString;
|
|
5733
5746
|
}, "strip", z.ZodTypeAny, {
|
|
5734
5747
|
ID?: string;
|
|
@@ -5738,6 +5751,7 @@ export declare const MJConversationDetailRatingSchema: z.ZodObject<{
|
|
|
5738
5751
|
Comments?: string;
|
|
5739
5752
|
UserID?: string;
|
|
5740
5753
|
ConversationDetailID?: string;
|
|
5754
|
+
ConversationDetail?: string;
|
|
5741
5755
|
Rating?: number;
|
|
5742
5756
|
}, {
|
|
5743
5757
|
ID?: string;
|
|
@@ -5747,6 +5761,7 @@ export declare const MJConversationDetailRatingSchema: z.ZodObject<{
|
|
|
5747
5761
|
Comments?: string;
|
|
5748
5762
|
UserID?: string;
|
|
5749
5763
|
ConversationDetailID?: string;
|
|
5764
|
+
ConversationDetail?: string;
|
|
5750
5765
|
Rating?: number;
|
|
5751
5766
|
}>;
|
|
5752
5767
|
export type MJConversationDetailRatingEntityType = z.infer<typeof MJConversationDetailRatingSchema>;
|
|
@@ -5889,6 +5904,7 @@ export declare const MJConversationSchema: z.ZodObject<{
|
|
|
5889
5904
|
DataContext: z.ZodNullable<z.ZodString>;
|
|
5890
5905
|
Environment: z.ZodString;
|
|
5891
5906
|
Project: z.ZodNullable<z.ZodString>;
|
|
5907
|
+
TestRun: z.ZodNullable<z.ZodString>;
|
|
5892
5908
|
}, "strip", z.ZodTypeAny, {
|
|
5893
5909
|
ID?: string;
|
|
5894
5910
|
User?: string;
|
|
@@ -5900,6 +5916,7 @@ export declare const MJConversationSchema: z.ZodObject<{
|
|
|
5900
5916
|
UserID?: string;
|
|
5901
5917
|
Type?: string;
|
|
5902
5918
|
TestRunID?: string;
|
|
5919
|
+
TestRun?: string;
|
|
5903
5920
|
EnvironmentID?: string;
|
|
5904
5921
|
Environment?: string;
|
|
5905
5922
|
ExternalID?: string;
|
|
@@ -5923,6 +5940,7 @@ export declare const MJConversationSchema: z.ZodObject<{
|
|
|
5923
5940
|
UserID?: string;
|
|
5924
5941
|
Type?: string;
|
|
5925
5942
|
TestRunID?: string;
|
|
5943
|
+
TestRun?: string;
|
|
5926
5944
|
EnvironmentID?: string;
|
|
5927
5945
|
Environment?: string;
|
|
5928
5946
|
ExternalID?: string;
|
|
@@ -6646,6 +6664,7 @@ export declare const MJDuplicateRunDetailSchema: z.ZodObject<{
|
|
|
6646
6664
|
MergeErrorMessage: z.ZodNullable<z.ZodString>;
|
|
6647
6665
|
__mj_CreatedAt: z.ZodDate;
|
|
6648
6666
|
__mj_UpdatedAt: z.ZodDate;
|
|
6667
|
+
DuplicateRun: z.ZodString;
|
|
6649
6668
|
}, "strip", z.ZodTypeAny, {
|
|
6650
6669
|
ID?: string;
|
|
6651
6670
|
RecordID?: string;
|
|
@@ -6657,6 +6676,7 @@ export declare const MJDuplicateRunDetailSchema: z.ZodObject<{
|
|
|
6657
6676
|
SkippedReason?: string;
|
|
6658
6677
|
MatchErrorMessage?: string;
|
|
6659
6678
|
MergeErrorMessage?: string;
|
|
6679
|
+
DuplicateRun?: string;
|
|
6660
6680
|
}, {
|
|
6661
6681
|
ID?: string;
|
|
6662
6682
|
RecordID?: string;
|
|
@@ -6668,6 +6688,7 @@ export declare const MJDuplicateRunDetailSchema: z.ZodObject<{
|
|
|
6668
6688
|
SkippedReason?: string;
|
|
6669
6689
|
MatchErrorMessage?: string;
|
|
6670
6690
|
MergeErrorMessage?: string;
|
|
6691
|
+
DuplicateRun?: string;
|
|
6671
6692
|
}>;
|
|
6672
6693
|
export type MJDuplicateRunDetailEntityType = z.infer<typeof MJDuplicateRunDetailSchema>;
|
|
6673
6694
|
/**
|
|
@@ -6740,6 +6761,7 @@ export declare const MJEmployeeCompanyIntegrationSchema: z.ZodObject<{
|
|
|
6740
6761
|
IsActive: z.ZodBoolean;
|
|
6741
6762
|
__mj_CreatedAt: z.ZodDate;
|
|
6742
6763
|
__mj_UpdatedAt: z.ZodDate;
|
|
6764
|
+
Employee: z.ZodNullable<z.ZodString>;
|
|
6743
6765
|
CompanyIntegration: z.ZodString;
|
|
6744
6766
|
}, "strip", z.ZodTypeAny, {
|
|
6745
6767
|
ID?: string;
|
|
@@ -6750,6 +6772,7 @@ export declare const MJEmployeeCompanyIntegrationSchema: z.ZodObject<{
|
|
|
6750
6772
|
ExternalSystemRecordID?: string;
|
|
6751
6773
|
CompanyIntegration?: string;
|
|
6752
6774
|
EmployeeID?: string;
|
|
6775
|
+
Employee?: string;
|
|
6753
6776
|
}, {
|
|
6754
6777
|
ID?: string;
|
|
6755
6778
|
__mj_CreatedAt?: Date;
|
|
@@ -6759,6 +6782,7 @@ export declare const MJEmployeeCompanyIntegrationSchema: z.ZodObject<{
|
|
|
6759
6782
|
ExternalSystemRecordID?: string;
|
|
6760
6783
|
CompanyIntegration?: string;
|
|
6761
6784
|
EmployeeID?: string;
|
|
6785
|
+
Employee?: string;
|
|
6762
6786
|
}>;
|
|
6763
6787
|
export type MJEmployeeCompanyIntegrationEntityType = z.infer<typeof MJEmployeeCompanyIntegrationSchema>;
|
|
6764
6788
|
/**
|
|
@@ -6770,6 +6794,7 @@ export declare const MJEmployeeRoleSchema: z.ZodObject<{
|
|
|
6770
6794
|
RoleID: z.ZodString;
|
|
6771
6795
|
__mj_CreatedAt: z.ZodDate;
|
|
6772
6796
|
__mj_UpdatedAt: z.ZodDate;
|
|
6797
|
+
Employee: z.ZodNullable<z.ZodString>;
|
|
6773
6798
|
Role: z.ZodString;
|
|
6774
6799
|
}, "strip", z.ZodTypeAny, {
|
|
6775
6800
|
ID?: string;
|
|
@@ -6778,6 +6803,7 @@ export declare const MJEmployeeRoleSchema: z.ZodObject<{
|
|
|
6778
6803
|
__mj_UpdatedAt?: Date;
|
|
6779
6804
|
RoleID?: string;
|
|
6780
6805
|
EmployeeID?: string;
|
|
6806
|
+
Employee?: string;
|
|
6781
6807
|
}, {
|
|
6782
6808
|
ID?: string;
|
|
6783
6809
|
Role?: string;
|
|
@@ -6785,6 +6811,7 @@ export declare const MJEmployeeRoleSchema: z.ZodObject<{
|
|
|
6785
6811
|
__mj_UpdatedAt?: Date;
|
|
6786
6812
|
RoleID?: string;
|
|
6787
6813
|
EmployeeID?: string;
|
|
6814
|
+
Employee?: string;
|
|
6788
6815
|
}>;
|
|
6789
6816
|
export type MJEmployeeRoleEntityType = z.infer<typeof MJEmployeeRoleSchema>;
|
|
6790
6817
|
/**
|
|
@@ -6796,12 +6823,14 @@ export declare const MJEmployeeSkillSchema: z.ZodObject<{
|
|
|
6796
6823
|
SkillID: z.ZodString;
|
|
6797
6824
|
__mj_CreatedAt: z.ZodDate;
|
|
6798
6825
|
__mj_UpdatedAt: z.ZodDate;
|
|
6826
|
+
Employee: z.ZodNullable<z.ZodString>;
|
|
6799
6827
|
Skill: z.ZodString;
|
|
6800
6828
|
}, "strip", z.ZodTypeAny, {
|
|
6801
6829
|
ID?: string;
|
|
6802
6830
|
__mj_CreatedAt?: Date;
|
|
6803
6831
|
__mj_UpdatedAt?: Date;
|
|
6804
6832
|
EmployeeID?: string;
|
|
6833
|
+
Employee?: string;
|
|
6805
6834
|
SkillID?: string;
|
|
6806
6835
|
Skill?: string;
|
|
6807
6836
|
}, {
|
|
@@ -6809,6 +6838,7 @@ export declare const MJEmployeeSkillSchema: z.ZodObject<{
|
|
|
6809
6838
|
__mj_CreatedAt?: Date;
|
|
6810
6839
|
__mj_UpdatedAt?: Date;
|
|
6811
6840
|
EmployeeID?: string;
|
|
6841
|
+
Employee?: string;
|
|
6812
6842
|
SkillID?: string;
|
|
6813
6843
|
Skill?: string;
|
|
6814
6844
|
}>;
|
|
@@ -7215,6 +7245,8 @@ export declare const MJEntityActionFilterSchema: z.ZodObject<{
|
|
|
7215
7245
|
Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Pending">]>;
|
|
7216
7246
|
__mj_CreatedAt: z.ZodDate;
|
|
7217
7247
|
__mj_UpdatedAt: z.ZodDate;
|
|
7248
|
+
EntityAction: z.ZodString;
|
|
7249
|
+
ActionFilter: z.ZodString;
|
|
7218
7250
|
}, "strip", z.ZodTypeAny, {
|
|
7219
7251
|
ID?: string;
|
|
7220
7252
|
__mj_CreatedAt?: Date;
|
|
@@ -7223,6 +7255,8 @@ export declare const MJEntityActionFilterSchema: z.ZodObject<{
|
|
|
7223
7255
|
Sequence?: number;
|
|
7224
7256
|
EntityActionID?: string;
|
|
7225
7257
|
ActionFilterID?: string;
|
|
7258
|
+
EntityAction?: string;
|
|
7259
|
+
ActionFilter?: string;
|
|
7226
7260
|
}, {
|
|
7227
7261
|
ID?: string;
|
|
7228
7262
|
__mj_CreatedAt?: Date;
|
|
@@ -7231,6 +7265,8 @@ export declare const MJEntityActionFilterSchema: z.ZodObject<{
|
|
|
7231
7265
|
Sequence?: number;
|
|
7232
7266
|
EntityActionID?: string;
|
|
7233
7267
|
ActionFilterID?: string;
|
|
7268
|
+
EntityAction?: string;
|
|
7269
|
+
ActionFilter?: string;
|
|
7234
7270
|
}>;
|
|
7235
7271
|
export type MJEntityActionFilterEntityType = z.infer<typeof MJEntityActionFilterSchema>;
|
|
7236
7272
|
/**
|
|
@@ -7269,6 +7305,7 @@ export declare const MJEntityActionInvocationSchema: z.ZodObject<{
|
|
|
7269
7305
|
Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Pending">]>;
|
|
7270
7306
|
__mj_CreatedAt: z.ZodDate;
|
|
7271
7307
|
__mj_UpdatedAt: z.ZodDate;
|
|
7308
|
+
EntityAction: z.ZodString;
|
|
7272
7309
|
InvocationType: z.ZodString;
|
|
7273
7310
|
}, "strip", z.ZodTypeAny, {
|
|
7274
7311
|
ID?: string;
|
|
@@ -7276,6 +7313,7 @@ export declare const MJEntityActionInvocationSchema: z.ZodObject<{
|
|
|
7276
7313
|
__mj_UpdatedAt?: Date;
|
|
7277
7314
|
Status?: "Active" | "Disabled" | "Pending";
|
|
7278
7315
|
EntityActionID?: string;
|
|
7316
|
+
EntityAction?: string;
|
|
7279
7317
|
InvocationTypeID?: string;
|
|
7280
7318
|
InvocationType?: string;
|
|
7281
7319
|
}, {
|
|
@@ -7284,6 +7322,7 @@ export declare const MJEntityActionInvocationSchema: z.ZodObject<{
|
|
|
7284
7322
|
__mj_UpdatedAt?: Date;
|
|
7285
7323
|
Status?: "Active" | "Disabled" | "Pending";
|
|
7286
7324
|
EntityActionID?: string;
|
|
7325
|
+
EntityAction?: string;
|
|
7287
7326
|
InvocationTypeID?: string;
|
|
7288
7327
|
InvocationType?: string;
|
|
7289
7328
|
}>;
|
|
@@ -7300,6 +7339,7 @@ export declare const MJEntityActionParamSchema: z.ZodObject<{
|
|
|
7300
7339
|
Comments: z.ZodNullable<z.ZodString>;
|
|
7301
7340
|
__mj_CreatedAt: z.ZodDate;
|
|
7302
7341
|
__mj_UpdatedAt: z.ZodDate;
|
|
7342
|
+
EntityAction: z.ZodString;
|
|
7303
7343
|
ActionParam: z.ZodString;
|
|
7304
7344
|
}, "strip", z.ZodTypeAny, {
|
|
7305
7345
|
ID?: string;
|
|
@@ -7309,6 +7349,7 @@ export declare const MJEntityActionParamSchema: z.ZodObject<{
|
|
|
7309
7349
|
ValueType?: "Entity Field" | "Entity Object" | "Script" | "Static";
|
|
7310
7350
|
Value?: string;
|
|
7311
7351
|
EntityActionID?: string;
|
|
7352
|
+
EntityAction?: string;
|
|
7312
7353
|
ActionParamID?: string;
|
|
7313
7354
|
ActionParam?: string;
|
|
7314
7355
|
}, {
|
|
@@ -7319,6 +7360,7 @@ export declare const MJEntityActionParamSchema: z.ZodObject<{
|
|
|
7319
7360
|
ValueType?: "Entity Field" | "Entity Object" | "Script" | "Static";
|
|
7320
7361
|
Value?: string;
|
|
7321
7362
|
EntityActionID?: string;
|
|
7363
|
+
EntityAction?: string;
|
|
7322
7364
|
ActionParamID?: string;
|
|
7323
7365
|
ActionParam?: string;
|
|
7324
7366
|
}>;
|
|
@@ -7430,6 +7472,7 @@ export declare const MJEntityCommunicationFieldSchema: z.ZodObject<{
|
|
|
7430
7472
|
Priority: z.ZodNumber;
|
|
7431
7473
|
__mj_CreatedAt: z.ZodDate;
|
|
7432
7474
|
__mj_UpdatedAt: z.ZodDate;
|
|
7475
|
+
EntityCommunicationMessageType: z.ZodString;
|
|
7433
7476
|
}, "strip", z.ZodTypeAny, {
|
|
7434
7477
|
ID?: string;
|
|
7435
7478
|
__mj_CreatedAt?: Date;
|
|
@@ -7437,6 +7480,7 @@ export declare const MJEntityCommunicationFieldSchema: z.ZodObject<{
|
|
|
7437
7480
|
Priority?: number;
|
|
7438
7481
|
EntityCommunicationMessageTypeID?: string;
|
|
7439
7482
|
FieldName?: string;
|
|
7483
|
+
EntityCommunicationMessageType?: string;
|
|
7440
7484
|
}, {
|
|
7441
7485
|
ID?: string;
|
|
7442
7486
|
__mj_CreatedAt?: Date;
|
|
@@ -7444,6 +7488,7 @@ export declare const MJEntityCommunicationFieldSchema: z.ZodObject<{
|
|
|
7444
7488
|
Priority?: number;
|
|
7445
7489
|
EntityCommunicationMessageTypeID?: string;
|
|
7446
7490
|
FieldName?: string;
|
|
7491
|
+
EntityCommunicationMessageType?: string;
|
|
7447
7492
|
}>;
|
|
7448
7493
|
export type MJEntityCommunicationFieldEntityType = z.infer<typeof MJEntityCommunicationFieldSchema>;
|
|
7449
7494
|
/**
|
|
@@ -8213,6 +8258,8 @@ export declare const MJErrorLogSchema: z.ZodObject<{
|
|
|
8213
8258
|
Details: z.ZodNullable<z.ZodString>;
|
|
8214
8259
|
__mj_CreatedAt: z.ZodDate;
|
|
8215
8260
|
__mj_UpdatedAt: z.ZodDate;
|
|
8261
|
+
CompanyIntegrationRun: z.ZodNullable<z.ZodString>;
|
|
8262
|
+
CompanyIntegrationRunDetail: z.ZodNullable<z.ZodString>;
|
|
8216
8263
|
}, "strip", z.ZodTypeAny, {
|
|
8217
8264
|
ID?: string;
|
|
8218
8265
|
__mj_CreatedAt?: Date;
|
|
@@ -8223,8 +8270,10 @@ export declare const MJErrorLogSchema: z.ZodObject<{
|
|
|
8223
8270
|
Category?: string;
|
|
8224
8271
|
Details?: string;
|
|
8225
8272
|
CompanyIntegrationRunID?: string;
|
|
8273
|
+
CompanyIntegrationRun?: string;
|
|
8226
8274
|
CompanyIntegrationRunDetailID?: string;
|
|
8227
8275
|
CreatedBy?: string;
|
|
8276
|
+
CompanyIntegrationRunDetail?: string;
|
|
8228
8277
|
}, {
|
|
8229
8278
|
ID?: string;
|
|
8230
8279
|
__mj_CreatedAt?: Date;
|
|
@@ -8235,8 +8284,10 @@ export declare const MJErrorLogSchema: z.ZodObject<{
|
|
|
8235
8284
|
Category?: string;
|
|
8236
8285
|
Details?: string;
|
|
8237
8286
|
CompanyIntegrationRunID?: string;
|
|
8287
|
+
CompanyIntegrationRun?: string;
|
|
8238
8288
|
CompanyIntegrationRunDetailID?: string;
|
|
8239
8289
|
CreatedBy?: string;
|
|
8290
|
+
CompanyIntegrationRunDetail?: string;
|
|
8240
8291
|
}>;
|
|
8241
8292
|
export type MJErrorLogEntityType = z.infer<typeof MJErrorLogSchema>;
|
|
8242
8293
|
/**
|
|
@@ -8957,6 +9008,7 @@ export declare const MJMCPServerConnectionToolSchema: z.ZodObject<{
|
|
|
8957
9008
|
__mj_CreatedAt: z.ZodDate;
|
|
8958
9009
|
__mj_UpdatedAt: z.ZodDate;
|
|
8959
9010
|
MCPServerConnection: z.ZodString;
|
|
9011
|
+
MCPServerTool: z.ZodNullable<z.ZodString>;
|
|
8960
9012
|
}, "strip", z.ZodTypeAny, {
|
|
8961
9013
|
ID?: string;
|
|
8962
9014
|
__mj_CreatedAt?: Date;
|
|
@@ -8967,6 +9019,7 @@ export declare const MJMCPServerConnectionToolSchema: z.ZodObject<{
|
|
|
8967
9019
|
MCPServerToolID?: string;
|
|
8968
9020
|
DefaultInputValues?: string;
|
|
8969
9021
|
MaxCallsPerMinute?: number;
|
|
9022
|
+
MCPServerTool?: string;
|
|
8970
9023
|
}, {
|
|
8971
9024
|
ID?: string;
|
|
8972
9025
|
__mj_CreatedAt?: Date;
|
|
@@ -8977,6 +9030,7 @@ export declare const MJMCPServerConnectionToolSchema: z.ZodObject<{
|
|
|
8977
9030
|
MCPServerToolID?: string;
|
|
8978
9031
|
DefaultInputValues?: string;
|
|
8979
9032
|
MaxCallsPerMinute?: number;
|
|
9033
|
+
MCPServerTool?: string;
|
|
8980
9034
|
}>;
|
|
8981
9035
|
export type MJMCPServerConnectionToolEntityType = z.infer<typeof MJMCPServerConnectionToolSchema>;
|
|
8982
9036
|
/**
|
|
@@ -9221,6 +9275,7 @@ export declare const MJMCPToolExecutionLogSchema: z.ZodObject<{
|
|
|
9221
9275
|
__mj_CreatedAt: z.ZodDate;
|
|
9222
9276
|
__mj_UpdatedAt: z.ZodDate;
|
|
9223
9277
|
MCPServerConnection: z.ZodString;
|
|
9278
|
+
MCPServerTool: z.ZodNullable<z.ZodString>;
|
|
9224
9279
|
User: z.ZodString;
|
|
9225
9280
|
}, "strip", z.ZodTypeAny, {
|
|
9226
9281
|
ID?: string;
|
|
@@ -9235,6 +9290,7 @@ export declare const MJMCPToolExecutionLogSchema: z.ZodObject<{
|
|
|
9235
9290
|
MCPServerConnectionID?: string;
|
|
9236
9291
|
MCPServerConnection?: string;
|
|
9237
9292
|
MCPServerToolID?: string;
|
|
9293
|
+
MCPServerTool?: string;
|
|
9238
9294
|
ToolName?: string;
|
|
9239
9295
|
DurationMs?: number;
|
|
9240
9296
|
InputParameters?: string;
|
|
@@ -9253,6 +9309,7 @@ export declare const MJMCPToolExecutionLogSchema: z.ZodObject<{
|
|
|
9253
9309
|
MCPServerConnectionID?: string;
|
|
9254
9310
|
MCPServerConnection?: string;
|
|
9255
9311
|
MCPServerToolID?: string;
|
|
9312
|
+
MCPServerTool?: string;
|
|
9256
9313
|
ToolName?: string;
|
|
9257
9314
|
DurationMs?: number;
|
|
9258
9315
|
InputParameters?: string;
|
|
@@ -10309,6 +10366,7 @@ export declare const MJRecommendationItemSchema: z.ZodObject<{
|
|
|
10309
10366
|
MatchProbability: z.ZodNullable<z.ZodNumber>;
|
|
10310
10367
|
__mj_CreatedAt: z.ZodDate;
|
|
10311
10368
|
__mj_UpdatedAt: z.ZodDate;
|
|
10369
|
+
Recommendation: z.ZodString;
|
|
10312
10370
|
DestinationEntity: z.ZodString;
|
|
10313
10371
|
}, "strip", z.ZodTypeAny, {
|
|
10314
10372
|
ID?: string;
|
|
@@ -10318,6 +10376,7 @@ export declare const MJRecommendationItemSchema: z.ZodObject<{
|
|
|
10318
10376
|
RecommendationID?: string;
|
|
10319
10377
|
DestinationEntityID?: string;
|
|
10320
10378
|
DestinationEntityRecordID?: string;
|
|
10379
|
+
Recommendation?: string;
|
|
10321
10380
|
DestinationEntity?: string;
|
|
10322
10381
|
}, {
|
|
10323
10382
|
ID?: string;
|
|
@@ -10327,6 +10386,7 @@ export declare const MJRecommendationItemSchema: z.ZodObject<{
|
|
|
10327
10386
|
RecommendationID?: string;
|
|
10328
10387
|
DestinationEntityID?: string;
|
|
10329
10388
|
DestinationEntityRecordID?: string;
|
|
10389
|
+
Recommendation?: string;
|
|
10330
10390
|
DestinationEntity?: string;
|
|
10331
10391
|
}>;
|
|
10332
10392
|
export type MJRecommendationItemEntityType = z.infer<typeof MJRecommendationItemSchema>;
|
|
@@ -10404,6 +10464,7 @@ export declare const MJRecommendationSchema: z.ZodObject<{
|
|
|
10404
10464
|
SourceEntityRecordID: z.ZodString;
|
|
10405
10465
|
__mj_CreatedAt: z.ZodDate;
|
|
10406
10466
|
__mj_UpdatedAt: z.ZodDate;
|
|
10467
|
+
RecommendationRun: z.ZodString;
|
|
10407
10468
|
SourceEntity: z.ZodString;
|
|
10408
10469
|
}, "strip", z.ZodTypeAny, {
|
|
10409
10470
|
ID?: string;
|
|
@@ -10413,6 +10474,7 @@ export declare const MJRecommendationSchema: z.ZodObject<{
|
|
|
10413
10474
|
SourceEntity?: string;
|
|
10414
10475
|
RecommendationRunID?: string;
|
|
10415
10476
|
SourceEntityRecordID?: string;
|
|
10477
|
+
RecommendationRun?: string;
|
|
10416
10478
|
}, {
|
|
10417
10479
|
ID?: string;
|
|
10418
10480
|
__mj_CreatedAt?: Date;
|
|
@@ -10421,6 +10483,7 @@ export declare const MJRecommendationSchema: z.ZodObject<{
|
|
|
10421
10483
|
SourceEntity?: string;
|
|
10422
10484
|
RecommendationRunID?: string;
|
|
10423
10485
|
SourceEntityRecordID?: string;
|
|
10486
|
+
RecommendationRun?: string;
|
|
10424
10487
|
}>;
|
|
10425
10488
|
export type MJRecommendationEntityType = z.infer<typeof MJRecommendationSchema>;
|
|
10426
10489
|
/**
|
|
@@ -10478,6 +10541,7 @@ export declare const MJRecordChangeSchema: z.ZodObject<{
|
|
|
10478
10541
|
UpdatedAt: z.ZodDate;
|
|
10479
10542
|
Entity: z.ZodString;
|
|
10480
10543
|
User: z.ZodString;
|
|
10544
|
+
ReplayRun: z.ZodNullable<z.ZodString>;
|
|
10481
10545
|
Integration: z.ZodNullable<z.ZodString>;
|
|
10482
10546
|
}, "strip", z.ZodTypeAny, {
|
|
10483
10547
|
ID?: string;
|
|
@@ -10500,6 +10564,7 @@ export declare const MJRecordChangeSchema: z.ZodObject<{
|
|
|
10500
10564
|
ReplayRunID?: string;
|
|
10501
10565
|
CreatedAt?: Date;
|
|
10502
10566
|
UpdatedAt?: Date;
|
|
10567
|
+
ReplayRun?: string;
|
|
10503
10568
|
}, {
|
|
10504
10569
|
ID?: string;
|
|
10505
10570
|
EntityID?: string;
|
|
@@ -10521,6 +10586,7 @@ export declare const MJRecordChangeSchema: z.ZodObject<{
|
|
|
10521
10586
|
ReplayRunID?: string;
|
|
10522
10587
|
CreatedAt?: Date;
|
|
10523
10588
|
UpdatedAt?: Date;
|
|
10589
|
+
ReplayRun?: string;
|
|
10524
10590
|
}>;
|
|
10525
10591
|
export type MJRecordChangeEntityType = z.infer<typeof MJRecordChangeSchema>;
|
|
10526
10592
|
/**
|
|
@@ -10578,12 +10644,14 @@ export declare const MJRecordMergeDeletionLogSchema: z.ZodObject<{
|
|
|
10578
10644
|
ProcessingLog: z.ZodNullable<z.ZodString>;
|
|
10579
10645
|
__mj_CreatedAt: z.ZodDate;
|
|
10580
10646
|
__mj_UpdatedAt: z.ZodDate;
|
|
10647
|
+
RecordMergeLog: z.ZodString;
|
|
10581
10648
|
}, "strip", z.ZodTypeAny, {
|
|
10582
10649
|
ID?: string;
|
|
10583
10650
|
__mj_CreatedAt?: Date;
|
|
10584
10651
|
__mj_UpdatedAt?: Date;
|
|
10585
10652
|
Status?: "Pending" | "Complete" | "Error";
|
|
10586
10653
|
RecordMergeLogID?: string;
|
|
10654
|
+
RecordMergeLog?: string;
|
|
10587
10655
|
DeletedRecordID?: string;
|
|
10588
10656
|
ProcessingLog?: string;
|
|
10589
10657
|
}, {
|
|
@@ -10592,6 +10660,7 @@ export declare const MJRecordMergeDeletionLogSchema: z.ZodObject<{
|
|
|
10592
10660
|
__mj_UpdatedAt?: Date;
|
|
10593
10661
|
Status?: "Pending" | "Complete" | "Error";
|
|
10594
10662
|
RecordMergeLogID?: string;
|
|
10663
|
+
RecordMergeLog?: string;
|
|
10595
10664
|
DeletedRecordID?: string;
|
|
10596
10665
|
ProcessingLog?: string;
|
|
10597
10666
|
}>;
|
|
@@ -10819,6 +10888,7 @@ export declare const MJReportSchema: z.ZodObject<{
|
|
|
10819
10888
|
Category: z.ZodNullable<z.ZodString>;
|
|
10820
10889
|
User: z.ZodString;
|
|
10821
10890
|
Conversation: z.ZodNullable<z.ZodString>;
|
|
10891
|
+
ConversationDetail: z.ZodNullable<z.ZodString>;
|
|
10822
10892
|
DataContext: z.ZodNullable<z.ZodString>;
|
|
10823
10893
|
OutputTriggerType: z.ZodNullable<z.ZodString>;
|
|
10824
10894
|
OutputFormatType: z.ZodNullable<z.ZodString>;
|
|
@@ -10839,6 +10909,7 @@ export declare const MJReportSchema: z.ZodObject<{
|
|
|
10839
10909
|
ConversationID?: string;
|
|
10840
10910
|
ConversationDetailID?: string;
|
|
10841
10911
|
Conversation?: string;
|
|
10912
|
+
ConversationDetail?: string;
|
|
10842
10913
|
EnvironmentID?: string;
|
|
10843
10914
|
Environment?: string;
|
|
10844
10915
|
SharingScope?: "Everyone" | "None" | "Specific";
|
|
@@ -10869,6 +10940,7 @@ export declare const MJReportSchema: z.ZodObject<{
|
|
|
10869
10940
|
ConversationID?: string;
|
|
10870
10941
|
ConversationDetailID?: string;
|
|
10871
10942
|
Conversation?: string;
|
|
10943
|
+
ConversationDetail?: string;
|
|
10872
10944
|
EnvironmentID?: string;
|
|
10873
10945
|
Environment?: string;
|
|
10874
10946
|
SharingScope?: "Everyone" | "None" | "Specific";
|
|
@@ -11574,6 +11646,7 @@ export declare const MJTaskSchema: z.ZodObject<{
|
|
|
11574
11646
|
Type: z.ZodString;
|
|
11575
11647
|
Environment: z.ZodString;
|
|
11576
11648
|
Project: z.ZodNullable<z.ZodString>;
|
|
11649
|
+
ConversationDetail: z.ZodNullable<z.ZodString>;
|
|
11577
11650
|
User: z.ZodNullable<z.ZodString>;
|
|
11578
11651
|
Agent: z.ZodNullable<z.ZodString>;
|
|
11579
11652
|
RootParentID: z.ZodNullable<z.ZodString>;
|
|
@@ -11595,6 +11668,7 @@ export declare const MJTaskSchema: z.ZodObject<{
|
|
|
11595
11668
|
Agent?: string;
|
|
11596
11669
|
CompletedAt?: Date;
|
|
11597
11670
|
ConversationDetailID?: string;
|
|
11671
|
+
ConversationDetail?: string;
|
|
11598
11672
|
TypeID?: string;
|
|
11599
11673
|
EnvironmentID?: string;
|
|
11600
11674
|
Environment?: string;
|
|
@@ -11620,6 +11694,7 @@ export declare const MJTaskSchema: z.ZodObject<{
|
|
|
11620
11694
|
Agent?: string;
|
|
11621
11695
|
CompletedAt?: Date;
|
|
11622
11696
|
ConversationDetailID?: string;
|
|
11697
|
+
ConversationDetail?: string;
|
|
11623
11698
|
TypeID?: string;
|
|
11624
11699
|
EnvironmentID?: string;
|
|
11625
11700
|
Environment?: string;
|
|
@@ -11753,6 +11828,7 @@ export declare const MJTemplateParamSchema: z.ZodObject<{
|
|
|
11753
11828
|
TemplateContentID: z.ZodNullable<z.ZodString>;
|
|
11754
11829
|
Template: z.ZodString;
|
|
11755
11830
|
Entity: z.ZodNullable<z.ZodString>;
|
|
11831
|
+
TemplateContent: z.ZodNullable<z.ZodString>;
|
|
11756
11832
|
}, "strip", z.ZodTypeAny, {
|
|
11757
11833
|
ID?: string;
|
|
11758
11834
|
EntityID?: string;
|
|
@@ -11772,6 +11848,7 @@ export declare const MJTemplateParamSchema: z.ZodObject<{
|
|
|
11772
11848
|
LinkedParameterName?: string;
|
|
11773
11849
|
LinkedParameterField?: string;
|
|
11774
11850
|
TemplateContentID?: string;
|
|
11851
|
+
TemplateContent?: string;
|
|
11775
11852
|
}, {
|
|
11776
11853
|
ID?: string;
|
|
11777
11854
|
EntityID?: string;
|
|
@@ -11791,6 +11868,7 @@ export declare const MJTemplateParamSchema: z.ZodObject<{
|
|
|
11791
11868
|
LinkedParameterName?: string;
|
|
11792
11869
|
LinkedParameterField?: string;
|
|
11793
11870
|
TemplateContentID?: string;
|
|
11871
|
+
TemplateContent?: string;
|
|
11794
11872
|
}>;
|
|
11795
11873
|
export type MJTemplateParamEntityType = z.infer<typeof MJTemplateParamSchema>;
|
|
11796
11874
|
/**
|
|
@@ -14270,15 +14348,15 @@ export declare class MJActionParamEntity extends BaseEntity<MJActionParamEntityT
|
|
|
14270
14348
|
* * BaseEntity Sub-Class
|
|
14271
14349
|
* * Other
|
|
14272
14350
|
* * MediaOutput
|
|
14273
|
-
* * Other
|
|
14274
14351
|
* * Scalar
|
|
14352
|
+
* * Other
|
|
14275
14353
|
* * Scalar
|
|
14276
14354
|
* * Simple Object
|
|
14277
14355
|
* * Simple Object
|
|
14278
14356
|
* * Description: Tracks the basic value type of the parameter, additional information can be provided in the Description field
|
|
14279
14357
|
*/
|
|
14280
|
-
get ValueType(): 'BaseEntity Sub-Class' | 'BaseEntity Sub-Class' | 'Other' | 'MediaOutput' | '
|
|
14281
|
-
set ValueType(value: 'BaseEntity Sub-Class' | 'BaseEntity Sub-Class' | 'Other' | 'MediaOutput' | '
|
|
14358
|
+
get ValueType(): 'BaseEntity Sub-Class' | 'BaseEntity Sub-Class' | 'Other' | 'MediaOutput' | 'Scalar' | 'Other' | 'Scalar' | 'Simple Object' | 'Simple Object';
|
|
14359
|
+
set ValueType(value: 'BaseEntity Sub-Class' | 'BaseEntity Sub-Class' | 'Other' | 'MediaOutput' | 'Scalar' | 'Other' | 'Scalar' | 'Simple Object' | 'Simple Object');
|
|
14282
14360
|
/**
|
|
14283
14361
|
* * Field Name: IsArray
|
|
14284
14362
|
* * Display Name: Is Array
|
|
@@ -17550,6 +17628,18 @@ detailed information about what validation rules failed.
|
|
|
17550
17628
|
get Comments(): string | null;
|
|
17551
17629
|
set Comments(value: string | null);
|
|
17552
17630
|
/**
|
|
17631
|
+
* * Field Name: AgentRun
|
|
17632
|
+
* * Display Name: Agent Run
|
|
17633
|
+
* * SQL Data Type: nvarchar(255)
|
|
17634
|
+
*/
|
|
17635
|
+
get AgentRun(): string | null;
|
|
17636
|
+
/**
|
|
17637
|
+
* * Field Name: Parent
|
|
17638
|
+
* * Display Name: Parent Step
|
|
17639
|
+
* * SQL Data Type: nvarchar(255)
|
|
17640
|
+
*/
|
|
17641
|
+
get Parent(): string | null;
|
|
17642
|
+
/**
|
|
17553
17643
|
* * Field Name: RootParentID
|
|
17554
17644
|
* * Display Name: Root Parent Step
|
|
17555
17645
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -19961,7 +20051,7 @@ export declare class MJAIModalityEntity extends BaseEntity<MJAIModalityEntityTyp
|
|
|
19961
20051
|
* * Field Name: MIMETypePattern
|
|
19962
20052
|
* * Display Name: MIME Type Pattern
|
|
19963
20053
|
* * SQL Data Type: nvarchar(100)
|
|
19964
|
-
* * Description: MIME type pattern for this modality (e.g., image
|
|
20054
|
+
* * Description: MIME type pattern for this modality (e.g., image/\*, audio/\*, video/\*, text/\*, application/\*). Used for file type validation.
|
|
19965
20055
|
*/
|
|
19966
20056
|
get MIMETypePattern(): string | null;
|
|
19967
20057
|
set MIMETypePattern(value: string | null);
|
|
@@ -23526,6 +23616,12 @@ export declare class MJAIResultCacheEntity extends BaseEntity<MJAIResultCacheEnt
|
|
|
23526
23616
|
* * SQL Data Type: nvarchar(100)
|
|
23527
23617
|
*/
|
|
23528
23618
|
get Configuration(): string | null;
|
|
23619
|
+
/**
|
|
23620
|
+
* * Field Name: PromptRun
|
|
23621
|
+
* * Display Name: Prompt Run
|
|
23622
|
+
* * SQL Data Type: nvarchar(255)
|
|
23623
|
+
*/
|
|
23624
|
+
get PromptRun(): string | null;
|
|
23529
23625
|
}
|
|
23530
23626
|
/**
|
|
23531
23627
|
* MJ: AI Vendor Type Definitions - strongly typed entity sub-class
|
|
@@ -29829,6 +29925,12 @@ export declare class MJConversationDetailArtifactEntity extends BaseEntity<MJCon
|
|
|
29829
29925
|
*/
|
|
29830
29926
|
get __mj_UpdatedAt(): Date;
|
|
29831
29927
|
/**
|
|
29928
|
+
* * Field Name: ConversationDetail
|
|
29929
|
+
* * Display Name: Conversation Detail Summary
|
|
29930
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
29931
|
+
*/
|
|
29932
|
+
get ConversationDetail(): string;
|
|
29933
|
+
/**
|
|
29832
29934
|
* * Field Name: ArtifactVersion
|
|
29833
29935
|
* * Display Name: Artifact Version Summary
|
|
29834
29936
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -30118,6 +30220,12 @@ export declare class MJConversationDetailRatingEntity extends BaseEntity<MJConve
|
|
|
30118
30220
|
*/
|
|
30119
30221
|
get __mj_UpdatedAt(): Date;
|
|
30120
30222
|
/**
|
|
30223
|
+
* * Field Name: ConversationDetail
|
|
30224
|
+
* * Display Name: Conversation Detail
|
|
30225
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
30226
|
+
*/
|
|
30227
|
+
get ConversationDetail(): string;
|
|
30228
|
+
/**
|
|
30121
30229
|
* * Field Name: User
|
|
30122
30230
|
* * Display Name: User
|
|
30123
30231
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -30644,7 +30752,7 @@ export declare class MJConversationEntity extends BaseEntity<MJConversationEntit
|
|
|
30644
30752
|
get User(): string;
|
|
30645
30753
|
/**
|
|
30646
30754
|
* * Field Name: LinkedEntity
|
|
30647
|
-
* * Display Name: Linked Entity
|
|
30755
|
+
* * Display Name: Linked Entity Type
|
|
30648
30756
|
* * SQL Data Type: nvarchar(255)
|
|
30649
30757
|
*/
|
|
30650
30758
|
get LinkedEntity(): string | null;
|
|
@@ -30666,6 +30774,12 @@ export declare class MJConversationEntity extends BaseEntity<MJConversationEntit
|
|
|
30666
30774
|
* * SQL Data Type: nvarchar(255)
|
|
30667
30775
|
*/
|
|
30668
30776
|
get Project(): string | null;
|
|
30777
|
+
/**
|
|
30778
|
+
* * Field Name: TestRun
|
|
30779
|
+
* * Display Name: Test Run Name
|
|
30780
|
+
* * SQL Data Type: nvarchar(255)
|
|
30781
|
+
*/
|
|
30782
|
+
get TestRun(): string | null;
|
|
30669
30783
|
}
|
|
30670
30784
|
/**
|
|
30671
30785
|
* MJ: Credential Categories - strongly typed entity sub-class
|
|
@@ -32679,6 +32793,12 @@ export declare class MJDuplicateRunDetailEntity extends BaseEntity<MJDuplicateRu
|
|
|
32679
32793
|
* * Default Value: getutcdate()
|
|
32680
32794
|
*/
|
|
32681
32795
|
get __mj_UpdatedAt(): Date;
|
|
32796
|
+
/**
|
|
32797
|
+
* * Field Name: DuplicateRun
|
|
32798
|
+
* * Display Name: Duplicate Run
|
|
32799
|
+
* * SQL Data Type: nvarchar(255)
|
|
32800
|
+
*/
|
|
32801
|
+
get DuplicateRun(): string;
|
|
32682
32802
|
}
|
|
32683
32803
|
/**
|
|
32684
32804
|
* MJ: Duplicate Runs - strongly typed entity sub-class
|
|
@@ -32893,7 +33013,7 @@ export declare class MJEmployeeCompanyIntegrationEntity extends BaseEntity<MJEmp
|
|
|
32893
33013
|
set CompanyIntegrationID(value: string);
|
|
32894
33014
|
/**
|
|
32895
33015
|
* * Field Name: ExternalSystemRecordID
|
|
32896
|
-
* * Display Name: External
|
|
33016
|
+
* * Display Name: External ID
|
|
32897
33017
|
* * SQL Data Type: nvarchar(750)
|
|
32898
33018
|
* * Description: The employee's unique identifier in the external integrated system.
|
|
32899
33019
|
*/
|
|
@@ -32901,7 +33021,7 @@ export declare class MJEmployeeCompanyIntegrationEntity extends BaseEntity<MJEmp
|
|
|
32901
33021
|
set ExternalSystemRecordID(value: string);
|
|
32902
33022
|
/**
|
|
32903
33023
|
* * Field Name: IsActive
|
|
32904
|
-
* * Display Name:
|
|
33024
|
+
* * Display Name: Active
|
|
32905
33025
|
* * SQL Data Type: bit
|
|
32906
33026
|
* * Default Value: 1
|
|
32907
33027
|
* * Description: Indicates if this employee integration mapping is currently active.
|
|
@@ -32923,6 +33043,12 @@ export declare class MJEmployeeCompanyIntegrationEntity extends BaseEntity<MJEmp
|
|
|
32923
33043
|
*/
|
|
32924
33044
|
get __mj_UpdatedAt(): Date;
|
|
32925
33045
|
/**
|
|
33046
|
+
* * Field Name: Employee
|
|
33047
|
+
* * Display Name: Employee Name
|
|
33048
|
+
* * SQL Data Type: nvarchar(81)
|
|
33049
|
+
*/
|
|
33050
|
+
get Employee(): string | null;
|
|
33051
|
+
/**
|
|
32926
33052
|
* * Field Name: CompanyIntegration
|
|
32927
33053
|
* * Display Name: Integration Name
|
|
32928
33054
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -32992,6 +33118,12 @@ export declare class MJEmployeeRoleEntity extends BaseEntity<MJEmployeeRoleEntit
|
|
|
32992
33118
|
*/
|
|
32993
33119
|
get __mj_UpdatedAt(): Date;
|
|
32994
33120
|
/**
|
|
33121
|
+
* * Field Name: Employee
|
|
33122
|
+
* * Display Name: Employee Name
|
|
33123
|
+
* * SQL Data Type: nvarchar(81)
|
|
33124
|
+
*/
|
|
33125
|
+
get Employee(): string | null;
|
|
33126
|
+
/**
|
|
32995
33127
|
* * Field Name: Role
|
|
32996
33128
|
* * Display Name: Role Name
|
|
32997
33129
|
* * SQL Data Type: nvarchar(50)
|
|
@@ -33040,7 +33172,7 @@ export declare class MJEmployeeSkillEntity extends BaseEntity<MJEmployeeSkillEnt
|
|
|
33040
33172
|
set EmployeeID(value: string);
|
|
33041
33173
|
/**
|
|
33042
33174
|
* * Field Name: SkillID
|
|
33043
|
-
* * Display Name: Skill
|
|
33175
|
+
* * Display Name: Skill ID
|
|
33044
33176
|
* * SQL Data Type: uniqueidentifier
|
|
33045
33177
|
* * Related Entity/Foreign Key: MJ: Skills (vwSkills.ID)
|
|
33046
33178
|
*/
|
|
@@ -33061,8 +33193,14 @@ export declare class MJEmployeeSkillEntity extends BaseEntity<MJEmployeeSkillEnt
|
|
|
33061
33193
|
*/
|
|
33062
33194
|
get __mj_UpdatedAt(): Date;
|
|
33063
33195
|
/**
|
|
33196
|
+
* * Field Name: Employee
|
|
33197
|
+
* * Display Name: Employee Name
|
|
33198
|
+
* * SQL Data Type: nvarchar(81)
|
|
33199
|
+
*/
|
|
33200
|
+
get Employee(): string | null;
|
|
33201
|
+
/**
|
|
33064
33202
|
* * Field Name: Skill
|
|
33065
|
-
* * Display Name: Skill
|
|
33203
|
+
* * Display Name: Skill
|
|
33066
33204
|
* * SQL Data Type: nvarchar(50)
|
|
33067
33205
|
*/
|
|
33068
33206
|
get Skill(): string;
|
|
@@ -34146,12 +34284,14 @@ export declare class MJEntityEntity extends BaseEntity<MJEntityEntityType> {
|
|
|
34146
34284
|
* * Field Name: CodeName
|
|
34147
34285
|
* * Display Name: Code Name
|
|
34148
34286
|
* * SQL Data Type: nvarchar(MAX)
|
|
34287
|
+
* * Description: Schema-based programmatic code name derived from the entity Name. Uses GetClassNameSchemaPrefix(SchemaName) as the prefix, then strips EntityNamePrefix from the Name and removes spaces. For "__mj" schema with entity "MJ: AI Models", this produces "MJAIModels". For entities in other schemas, the sanitized schema name is prepended. Used in GraphQL type generation and internal code references.
|
|
34149
34288
|
*/
|
|
34150
34289
|
get CodeName(): string | null;
|
|
34151
34290
|
/**
|
|
34152
34291
|
* * Field Name: ClassName
|
|
34153
34292
|
* * Display Name: Class Name
|
|
34154
34293
|
* * SQL Data Type: nvarchar(MAX)
|
|
34294
|
+
* * Description: Schema-based programmatic class name used for TypeScript entity classes, Zod schemas, and Angular form components. Computed as GetProgrammaticName(GetClassNameSchemaPrefix(SchemaName) + BaseTable + NameSuffix). The prefix is derived from SchemaName (guaranteed unique by SQL Server), not from EntityNamePrefix. For the core __mj schema, the prefix is "MJ"; for all other schemas it is the alphanumeric-sanitized schema name. This prevents cross-schema collisions and aligns with GraphQL type naming in getGraphQLTypeNameBase().
|
|
34155
34295
|
*/
|
|
34156
34296
|
get ClassName(): string | null;
|
|
34157
34297
|
/**
|
|
@@ -34213,7 +34353,7 @@ export declare class MJEntityActionFilterEntity extends BaseEntity<MJEntityActio
|
|
|
34213
34353
|
set ID(value: string);
|
|
34214
34354
|
/**
|
|
34215
34355
|
* * Field Name: EntityActionID
|
|
34216
|
-
* * Display Name: Entity Action
|
|
34356
|
+
* * Display Name: Entity Action
|
|
34217
34357
|
* * SQL Data Type: uniqueidentifier
|
|
34218
34358
|
* * Related Entity/Foreign Key: MJ: Entity Actions (vwEntityActions.ID)
|
|
34219
34359
|
*/
|
|
@@ -34221,7 +34361,7 @@ export declare class MJEntityActionFilterEntity extends BaseEntity<MJEntityActio
|
|
|
34221
34361
|
set EntityActionID(value: string);
|
|
34222
34362
|
/**
|
|
34223
34363
|
* * Field Name: ActionFilterID
|
|
34224
|
-
* * Display Name: Action Filter
|
|
34364
|
+
* * Display Name: Action Filter
|
|
34225
34365
|
* * SQL Data Type: uniqueidentifier
|
|
34226
34366
|
* * Related Entity/Foreign Key: MJ: Action Filters (vwActionFilters.ID)
|
|
34227
34367
|
*/
|
|
@@ -34263,6 +34403,18 @@ export declare class MJEntityActionFilterEntity extends BaseEntity<MJEntityActio
|
|
|
34263
34403
|
* * Default Value: getutcdate()
|
|
34264
34404
|
*/
|
|
34265
34405
|
get __mj_UpdatedAt(): Date;
|
|
34406
|
+
/**
|
|
34407
|
+
* * Field Name: EntityAction
|
|
34408
|
+
* * Display Name: Entity Action Name
|
|
34409
|
+
* * SQL Data Type: nvarchar(425)
|
|
34410
|
+
*/
|
|
34411
|
+
get EntityAction(): string;
|
|
34412
|
+
/**
|
|
34413
|
+
* * Field Name: ActionFilter
|
|
34414
|
+
* * Display Name: Action Filter Name
|
|
34415
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
34416
|
+
*/
|
|
34417
|
+
get ActionFilter(): string;
|
|
34266
34418
|
}
|
|
34267
34419
|
/**
|
|
34268
34420
|
* MJ: Entity Action Invocation Types - strongly typed entity sub-class
|
|
@@ -34413,6 +34565,12 @@ export declare class MJEntityActionInvocationEntity extends BaseEntity<MJEntityA
|
|
|
34413
34565
|
*/
|
|
34414
34566
|
get __mj_UpdatedAt(): Date;
|
|
34415
34567
|
/**
|
|
34568
|
+
* * Field Name: EntityAction
|
|
34569
|
+
* * Display Name: Entity Action Name
|
|
34570
|
+
* * SQL Data Type: nvarchar(425)
|
|
34571
|
+
*/
|
|
34572
|
+
get EntityAction(): string;
|
|
34573
|
+
/**
|
|
34416
34574
|
* * Field Name: InvocationType
|
|
34417
34575
|
* * Display Name: Invocation Type Name
|
|
34418
34576
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -34461,7 +34619,7 @@ export declare class MJEntityActionParamEntity extends BaseEntity<MJEntityAction
|
|
|
34461
34619
|
set EntityActionID(value: string);
|
|
34462
34620
|
/**
|
|
34463
34621
|
* * Field Name: ActionParamID
|
|
34464
|
-
* * Display Name: Action
|
|
34622
|
+
* * Display Name: Action Parameter ID
|
|
34465
34623
|
* * SQL Data Type: uniqueidentifier
|
|
34466
34624
|
* * Related Entity/Foreign Key: MJ: Action Params (vwActionParams.ID)
|
|
34467
34625
|
*/
|
|
@@ -34512,8 +34670,14 @@ export declare class MJEntityActionParamEntity extends BaseEntity<MJEntityAction
|
|
|
34512
34670
|
*/
|
|
34513
34671
|
get __mj_UpdatedAt(): Date;
|
|
34514
34672
|
/**
|
|
34673
|
+
* * Field Name: EntityAction
|
|
34674
|
+
* * Display Name: Entity Action
|
|
34675
|
+
* * SQL Data Type: nvarchar(425)
|
|
34676
|
+
*/
|
|
34677
|
+
get EntityAction(): string;
|
|
34678
|
+
/**
|
|
34515
34679
|
* * Field Name: ActionParam
|
|
34516
|
-
* * Display Name: Action
|
|
34680
|
+
* * Display Name: Action Parameter
|
|
34517
34681
|
* * SQL Data Type: nvarchar(255)
|
|
34518
34682
|
*/
|
|
34519
34683
|
get ActionParam(): string;
|
|
@@ -34818,7 +34982,7 @@ export declare class MJEntityCommunicationFieldEntity extends BaseEntity<MJEntit
|
|
|
34818
34982
|
set ID(value: string);
|
|
34819
34983
|
/**
|
|
34820
34984
|
* * Field Name: EntityCommunicationMessageTypeID
|
|
34821
|
-
* * Display Name: Message Type
|
|
34985
|
+
* * Display Name: Message Type
|
|
34822
34986
|
* * SQL Data Type: uniqueidentifier
|
|
34823
34987
|
* * Related Entity/Foreign Key: MJ: Entity Communication Message Types (vwEntityCommunicationMessageTypes.ID)
|
|
34824
34988
|
*/
|
|
@@ -34854,6 +35018,12 @@ export declare class MJEntityCommunicationFieldEntity extends BaseEntity<MJEntit
|
|
|
34854
35018
|
* * Default Value: getutcdate()
|
|
34855
35019
|
*/
|
|
34856
35020
|
get __mj_UpdatedAt(): Date;
|
|
35021
|
+
/**
|
|
35022
|
+
* * Field Name: EntityCommunicationMessageType
|
|
35023
|
+
* * Display Name: Message Type Name
|
|
35024
|
+
* * SQL Data Type: nvarchar(100)
|
|
35025
|
+
*/
|
|
35026
|
+
get EntityCommunicationMessageType(): string;
|
|
34857
35027
|
}
|
|
34858
35028
|
/**
|
|
34859
35029
|
* MJ: Entity Communication Message Types - strongly typed entity sub-class
|
|
@@ -37007,6 +37177,18 @@ export declare class MJErrorLogEntity extends BaseEntity<MJErrorLogEntityType> {
|
|
|
37007
37177
|
* * Default Value: getutcdate()
|
|
37008
37178
|
*/
|
|
37009
37179
|
get __mj_UpdatedAt(): Date;
|
|
37180
|
+
/**
|
|
37181
|
+
* * Field Name: CompanyIntegrationRun
|
|
37182
|
+
* * Display Name: Company Integration Run
|
|
37183
|
+
* * SQL Data Type: nvarchar(100)
|
|
37184
|
+
*/
|
|
37185
|
+
get CompanyIntegrationRun(): string | null;
|
|
37186
|
+
/**
|
|
37187
|
+
* * Field Name: CompanyIntegrationRunDetail
|
|
37188
|
+
* * Display Name: Company Integration Run Detail
|
|
37189
|
+
* * SQL Data Type: nvarchar(450)
|
|
37190
|
+
*/
|
|
37191
|
+
get CompanyIntegrationRunDetail(): string | null;
|
|
37010
37192
|
}
|
|
37011
37193
|
/**
|
|
37012
37194
|
* MJ: Explorer Navigation Items - strongly typed entity sub-class
|
|
@@ -39039,6 +39221,12 @@ export declare class MJMCPServerConnectionToolEntity extends BaseEntity<MJMCPSer
|
|
|
39039
39221
|
* * SQL Data Type: nvarchar(255)
|
|
39040
39222
|
*/
|
|
39041
39223
|
get MCPServerConnection(): string;
|
|
39224
|
+
/**
|
|
39225
|
+
* * Field Name: MCPServerTool
|
|
39226
|
+
* * Display Name: Tool Name
|
|
39227
|
+
* * SQL Data Type: nvarchar(255)
|
|
39228
|
+
*/
|
|
39229
|
+
get MCPServerTool(): string | null;
|
|
39042
39230
|
}
|
|
39043
39231
|
/**
|
|
39044
39232
|
* MJ: MCP Server Connections - strongly typed entity sub-class
|
|
@@ -39773,6 +39961,12 @@ export declare class MJMCPToolExecutionLogEntity extends BaseEntity<MJMCPToolExe
|
|
|
39773
39961
|
*/
|
|
39774
39962
|
get MCPServerConnection(): string;
|
|
39775
39963
|
/**
|
|
39964
|
+
* * Field Name: MCPServerTool
|
|
39965
|
+
* * Display Name: Tool
|
|
39966
|
+
* * SQL Data Type: nvarchar(255)
|
|
39967
|
+
*/
|
|
39968
|
+
get MCPServerTool(): string | null;
|
|
39969
|
+
/**
|
|
39776
39970
|
* * Field Name: User
|
|
39777
39971
|
* * Display Name: User
|
|
39778
39972
|
* * SQL Data Type: nvarchar(100)
|
|
@@ -40723,6 +40917,21 @@ export declare class MJOpenAppEntity extends BaseEntity<MJOpenAppEntityType> {
|
|
|
40723
40917
|
*/
|
|
40724
40918
|
Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
|
|
40725
40919
|
/**
|
|
40920
|
+
* Validate() method override for MJ: Open Apps entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
|
|
40921
|
+
* * Name: The name must consist only of lowercase letters, numbers, and hyphens to ensure it is compatible with system naming standards.
|
|
40922
|
+
* @public
|
|
40923
|
+
* @method
|
|
40924
|
+
* @override
|
|
40925
|
+
*/
|
|
40926
|
+
Validate(): ValidationResult;
|
|
40927
|
+
/**
|
|
40928
|
+
* The name must consist only of lowercase letters, numbers, and hyphens to ensure it is compatible with system naming standards.
|
|
40929
|
+
* @param result - the ValidationResult object to add any errors or warnings to
|
|
40930
|
+
* @public
|
|
40931
|
+
* @method
|
|
40932
|
+
*/
|
|
40933
|
+
ValidateNameAlphanumericHyphenOnly(result: ValidationResult): void;
|
|
40934
|
+
/**
|
|
40726
40935
|
* * Field Name: ID
|
|
40727
40936
|
* * Display Name: ID
|
|
40728
40937
|
* * SQL Data Type: uniqueidentifier
|
|
@@ -42651,7 +42860,7 @@ export declare class MJRecommendationItemEntity extends BaseEntity<MJRecommendat
|
|
|
42651
42860
|
set RecommendationID(value: string);
|
|
42652
42861
|
/**
|
|
42653
42862
|
* * Field Name: DestinationEntityID
|
|
42654
|
-
* * Display Name: Destination Entity
|
|
42863
|
+
* * Display Name: Destination Entity ID
|
|
42655
42864
|
* * SQL Data Type: uniqueidentifier
|
|
42656
42865
|
* * Related Entity/Foreign Key: MJ: Entities (vwEntities.ID)
|
|
42657
42866
|
*/
|
|
@@ -42688,8 +42897,14 @@ export declare class MJRecommendationItemEntity extends BaseEntity<MJRecommendat
|
|
|
42688
42897
|
*/
|
|
42689
42898
|
get __mj_UpdatedAt(): Date;
|
|
42690
42899
|
/**
|
|
42900
|
+
* * Field Name: Recommendation
|
|
42901
|
+
* * Display Name: Recommendation
|
|
42902
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
42903
|
+
*/
|
|
42904
|
+
get Recommendation(): string;
|
|
42905
|
+
/**
|
|
42691
42906
|
* * Field Name: DestinationEntity
|
|
42692
|
-
* * Display Name: Destination Entity
|
|
42907
|
+
* * Display Name: Destination Entity
|
|
42693
42908
|
* * SQL Data Type: nvarchar(255)
|
|
42694
42909
|
*/
|
|
42695
42910
|
get DestinationEntity(): string;
|
|
@@ -42939,6 +43154,12 @@ export declare class MJRecommendationEntity extends BaseEntity<MJRecommendationE
|
|
|
42939
43154
|
*/
|
|
42940
43155
|
get __mj_UpdatedAt(): Date;
|
|
42941
43156
|
/**
|
|
43157
|
+
* * Field Name: RecommendationRun
|
|
43158
|
+
* * Display Name: Recommendation Run
|
|
43159
|
+
* * SQL Data Type: nvarchar(255)
|
|
43160
|
+
*/
|
|
43161
|
+
get RecommendationRun(): string;
|
|
43162
|
+
/**
|
|
42942
43163
|
* * Field Name: SourceEntity
|
|
42943
43164
|
* * Display Name: Source Entity
|
|
42944
43165
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -43070,7 +43291,7 @@ export declare class MJRecordChangeEntity extends BaseEntity<MJRecordChangeEntit
|
|
|
43070
43291
|
set ID(value: string);
|
|
43071
43292
|
/**
|
|
43072
43293
|
* * Field Name: EntityID
|
|
43073
|
-
* * Display Name: Entity
|
|
43294
|
+
* * Display Name: Entity ID
|
|
43074
43295
|
* * SQL Data Type: uniqueidentifier
|
|
43075
43296
|
* * Related Entity/Foreign Key: MJ: Entities (vwEntities.ID)
|
|
43076
43297
|
*/
|
|
@@ -43086,7 +43307,7 @@ export declare class MJRecordChangeEntity extends BaseEntity<MJRecordChangeEntit
|
|
|
43086
43307
|
set RecordID(value: string);
|
|
43087
43308
|
/**
|
|
43088
43309
|
* * Field Name: UserID
|
|
43089
|
-
* * Display Name: User
|
|
43310
|
+
* * Display Name: User ID
|
|
43090
43311
|
* * SQL Data Type: uniqueidentifier
|
|
43091
43312
|
* * Related Entity/Foreign Key: MJ: Users (vwUsers.ID)
|
|
43092
43313
|
*/
|
|
@@ -43131,7 +43352,7 @@ export declare class MJRecordChangeEntity extends BaseEntity<MJRecordChangeEntit
|
|
|
43131
43352
|
set ChangedAt(value: Date);
|
|
43132
43353
|
/**
|
|
43133
43354
|
* * Field Name: ChangesJSON
|
|
43134
|
-
* * Display Name: Changes
|
|
43355
|
+
* * Display Name: Changes JSON
|
|
43135
43356
|
* * SQL Data Type: nvarchar(MAX)
|
|
43136
43357
|
* * Description: JSON structure that describes what was changed in a structured format.
|
|
43137
43358
|
*/
|
|
@@ -43139,7 +43360,7 @@ export declare class MJRecordChangeEntity extends BaseEntity<MJRecordChangeEntit
|
|
|
43139
43360
|
set ChangesJSON(value: string);
|
|
43140
43361
|
/**
|
|
43141
43362
|
* * Field Name: ChangesDescription
|
|
43142
|
-
* * Display Name: Description
|
|
43363
|
+
* * Display Name: Changes Description
|
|
43143
43364
|
* * SQL Data Type: nvarchar(MAX)
|
|
43144
43365
|
* * Description: A generated, human-readable description of what was changed.
|
|
43145
43366
|
*/
|
|
@@ -43177,7 +43398,7 @@ export declare class MJRecordChangeEntity extends BaseEntity<MJRecordChangeEntit
|
|
|
43177
43398
|
set ErrorLog(value: string | null);
|
|
43178
43399
|
/**
|
|
43179
43400
|
* * Field Name: ReplayRunID
|
|
43180
|
-
* * Display Name: Replay Run
|
|
43401
|
+
* * Display Name: Replay Run ID
|
|
43181
43402
|
* * SQL Data Type: uniqueidentifier
|
|
43182
43403
|
* * Related Entity/Foreign Key: MJ: Record Change Replay Runs (vwRecordChangeReplayRuns.ID)
|
|
43183
43404
|
*/
|
|
@@ -43185,7 +43406,7 @@ export declare class MJRecordChangeEntity extends BaseEntity<MJRecordChangeEntit
|
|
|
43185
43406
|
set ReplayRunID(value: string | null);
|
|
43186
43407
|
/**
|
|
43187
43408
|
* * Field Name: IntegrationID
|
|
43188
|
-
* * Display Name: Integration
|
|
43409
|
+
* * Display Name: Integration ID
|
|
43189
43410
|
* * SQL Data Type: uniqueidentifier
|
|
43190
43411
|
* * Related Entity/Foreign Key: MJ: Integrations (vwIntegrations.ID)
|
|
43191
43412
|
*/
|
|
@@ -43216,19 +43437,25 @@ export declare class MJRecordChangeEntity extends BaseEntity<MJRecordChangeEntit
|
|
|
43216
43437
|
get UpdatedAt(): Date;
|
|
43217
43438
|
/**
|
|
43218
43439
|
* * Field Name: Entity
|
|
43219
|
-
* * Display Name: Entity
|
|
43440
|
+
* * Display Name: Entity
|
|
43220
43441
|
* * SQL Data Type: nvarchar(255)
|
|
43221
43442
|
*/
|
|
43222
43443
|
get Entity(): string;
|
|
43223
43444
|
/**
|
|
43224
43445
|
* * Field Name: User
|
|
43225
|
-
* * Display Name: User
|
|
43446
|
+
* * Display Name: User
|
|
43226
43447
|
* * SQL Data Type: nvarchar(100)
|
|
43227
43448
|
*/
|
|
43228
43449
|
get User(): string;
|
|
43229
43450
|
/**
|
|
43451
|
+
* * Field Name: ReplayRun
|
|
43452
|
+
* * Display Name: Replay Run
|
|
43453
|
+
* * SQL Data Type: nvarchar(100)
|
|
43454
|
+
*/
|
|
43455
|
+
get ReplayRun(): string | null;
|
|
43456
|
+
/**
|
|
43230
43457
|
* * Field Name: Integration
|
|
43231
|
-
* * Display Name: Integration
|
|
43458
|
+
* * Display Name: Integration
|
|
43232
43459
|
* * SQL Data Type: nvarchar(100)
|
|
43233
43460
|
*/
|
|
43234
43461
|
get Integration(): string | null;
|
|
@@ -43431,6 +43658,12 @@ export declare class MJRecordMergeDeletionLogEntity extends BaseEntity<MJRecordM
|
|
|
43431
43658
|
* * Default Value: getutcdate()
|
|
43432
43659
|
*/
|
|
43433
43660
|
get __mj_UpdatedAt(): Date;
|
|
43661
|
+
/**
|
|
43662
|
+
* * Field Name: RecordMergeLog
|
|
43663
|
+
* * Display Name: Merge Log Summary
|
|
43664
|
+
* * SQL Data Type: nvarchar(450)
|
|
43665
|
+
*/
|
|
43666
|
+
get RecordMergeLog(): string;
|
|
43434
43667
|
}
|
|
43435
43668
|
/**
|
|
43436
43669
|
* MJ: Record Merge Logs - strongly typed entity sub-class
|
|
@@ -44166,55 +44399,61 @@ export declare class MJReportEntity extends BaseEntity<MJReportEntityType> {
|
|
|
44166
44399
|
set EnvironmentID(value: string);
|
|
44167
44400
|
/**
|
|
44168
44401
|
* * Field Name: Category
|
|
44169
|
-
* * Display Name: Category
|
|
44402
|
+
* * Display Name: Category Name
|
|
44170
44403
|
* * SQL Data Type: nvarchar(100)
|
|
44171
44404
|
*/
|
|
44172
44405
|
get Category(): string | null;
|
|
44173
44406
|
/**
|
|
44174
44407
|
* * Field Name: User
|
|
44175
|
-
* * Display Name: User
|
|
44408
|
+
* * Display Name: User Name
|
|
44176
44409
|
* * SQL Data Type: nvarchar(100)
|
|
44177
44410
|
*/
|
|
44178
44411
|
get User(): string;
|
|
44179
44412
|
/**
|
|
44180
44413
|
* * Field Name: Conversation
|
|
44181
|
-
* * Display Name: Conversation
|
|
44414
|
+
* * Display Name: Conversation Name
|
|
44182
44415
|
* * SQL Data Type: nvarchar(255)
|
|
44183
44416
|
*/
|
|
44184
44417
|
get Conversation(): string | null;
|
|
44185
44418
|
/**
|
|
44419
|
+
* * Field Name: ConversationDetail
|
|
44420
|
+
* * Display Name: Conversation Detail Name
|
|
44421
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
44422
|
+
*/
|
|
44423
|
+
get ConversationDetail(): string | null;
|
|
44424
|
+
/**
|
|
44186
44425
|
* * Field Name: DataContext
|
|
44187
|
-
* * Display Name: Data Context
|
|
44426
|
+
* * Display Name: Data Context Name
|
|
44188
44427
|
* * SQL Data Type: nvarchar(255)
|
|
44189
44428
|
*/
|
|
44190
44429
|
get DataContext(): string | null;
|
|
44191
44430
|
/**
|
|
44192
44431
|
* * Field Name: OutputTriggerType
|
|
44193
|
-
* * Display Name: Output Trigger Type
|
|
44432
|
+
* * Display Name: Output Trigger Type Name
|
|
44194
44433
|
* * SQL Data Type: nvarchar(255)
|
|
44195
44434
|
*/
|
|
44196
44435
|
get OutputTriggerType(): string | null;
|
|
44197
44436
|
/**
|
|
44198
44437
|
* * Field Name: OutputFormatType
|
|
44199
|
-
* * Display Name: Output Format Type
|
|
44438
|
+
* * Display Name: Output Format Type Name
|
|
44200
44439
|
* * SQL Data Type: nvarchar(255)
|
|
44201
44440
|
*/
|
|
44202
44441
|
get OutputFormatType(): string | null;
|
|
44203
44442
|
/**
|
|
44204
44443
|
* * Field Name: OutputDeliveryType
|
|
44205
|
-
* * Display Name: Output Delivery Type
|
|
44444
|
+
* * Display Name: Output Delivery Type Name
|
|
44206
44445
|
* * SQL Data Type: nvarchar(255)
|
|
44207
44446
|
*/
|
|
44208
44447
|
get OutputDeliveryType(): string | null;
|
|
44209
44448
|
/**
|
|
44210
44449
|
* * Field Name: OutputWorkflow
|
|
44211
|
-
* * Display Name: Output Workflow
|
|
44450
|
+
* * Display Name: Output Workflow Name
|
|
44212
44451
|
* * SQL Data Type: nvarchar(100)
|
|
44213
44452
|
*/
|
|
44214
44453
|
get OutputWorkflow(): string | null;
|
|
44215
44454
|
/**
|
|
44216
44455
|
* * Field Name: Environment
|
|
44217
|
-
* * Display Name: Environment
|
|
44456
|
+
* * Display Name: Environment Name
|
|
44218
44457
|
* * SQL Data Type: nvarchar(255)
|
|
44219
44458
|
*/
|
|
44220
44459
|
get Environment(): string;
|
|
@@ -46166,7 +46405,7 @@ export declare class MJTaskEntity extends BaseEntity<MJTaskEntityType> {
|
|
|
46166
46405
|
set ID(value: string);
|
|
46167
46406
|
/**
|
|
46168
46407
|
* * Field Name: ParentID
|
|
46169
|
-
* * Display Name: Parent
|
|
46408
|
+
* * Display Name: Parent
|
|
46170
46409
|
* * SQL Data Type: uniqueidentifier
|
|
46171
46410
|
* * Related Entity/Foreign Key: MJ: Tasks (vwTasks.ID)
|
|
46172
46411
|
*/
|
|
@@ -46190,7 +46429,7 @@ export declare class MJTaskEntity extends BaseEntity<MJTaskEntityType> {
|
|
|
46190
46429
|
set Description(value: string | null);
|
|
46191
46430
|
/**
|
|
46192
46431
|
* * Field Name: TypeID
|
|
46193
|
-
* * Display Name: Type
|
|
46432
|
+
* * Display Name: Type
|
|
46194
46433
|
* * SQL Data Type: uniqueidentifier
|
|
46195
46434
|
* * Related Entity/Foreign Key: MJ: Task Types (vwTaskTypes.ID)
|
|
46196
46435
|
*/
|
|
@@ -46198,7 +46437,7 @@ export declare class MJTaskEntity extends BaseEntity<MJTaskEntityType> {
|
|
|
46198
46437
|
set TypeID(value: string);
|
|
46199
46438
|
/**
|
|
46200
46439
|
* * Field Name: EnvironmentID
|
|
46201
|
-
* * Display Name: Environment
|
|
46440
|
+
* * Display Name: Environment
|
|
46202
46441
|
* * SQL Data Type: uniqueidentifier
|
|
46203
46442
|
* * Related Entity/Foreign Key: MJ: Environments (vwEnvironments.ID)
|
|
46204
46443
|
* * Default Value: F51358F3-9447-4176-B313-BF8025FD8D09
|
|
@@ -46207,7 +46446,7 @@ export declare class MJTaskEntity extends BaseEntity<MJTaskEntityType> {
|
|
|
46207
46446
|
set EnvironmentID(value: string);
|
|
46208
46447
|
/**
|
|
46209
46448
|
* * Field Name: ProjectID
|
|
46210
|
-
* * Display Name: Project
|
|
46449
|
+
* * Display Name: Project
|
|
46211
46450
|
* * SQL Data Type: uniqueidentifier
|
|
46212
46451
|
* * Related Entity/Foreign Key: MJ: Projects (vwProjects.ID)
|
|
46213
46452
|
*/
|
|
@@ -46215,7 +46454,7 @@ export declare class MJTaskEntity extends BaseEntity<MJTaskEntityType> {
|
|
|
46215
46454
|
set ProjectID(value: string | null);
|
|
46216
46455
|
/**
|
|
46217
46456
|
* * Field Name: ConversationDetailID
|
|
46218
|
-
* * Display Name: Conversation Detail
|
|
46457
|
+
* * Display Name: Conversation Detail
|
|
46219
46458
|
* * SQL Data Type: uniqueidentifier
|
|
46220
46459
|
* * Related Entity/Foreign Key: MJ: Conversation Details (vwConversationDetails.ID)
|
|
46221
46460
|
*/
|
|
@@ -46223,7 +46462,7 @@ export declare class MJTaskEntity extends BaseEntity<MJTaskEntityType> {
|
|
|
46223
46462
|
set ConversationDetailID(value: string | null);
|
|
46224
46463
|
/**
|
|
46225
46464
|
* * Field Name: UserID
|
|
46226
|
-
* * Display Name: User
|
|
46465
|
+
* * Display Name: User
|
|
46227
46466
|
* * SQL Data Type: uniqueidentifier
|
|
46228
46467
|
* * Related Entity/Foreign Key: MJ: Users (vwUsers.ID)
|
|
46229
46468
|
*/
|
|
@@ -46231,7 +46470,7 @@ export declare class MJTaskEntity extends BaseEntity<MJTaskEntityType> {
|
|
|
46231
46470
|
set UserID(value: string | null);
|
|
46232
46471
|
/**
|
|
46233
46472
|
* * Field Name: AgentID
|
|
46234
|
-
* * Display Name: Agent
|
|
46473
|
+
* * Display Name: Agent
|
|
46235
46474
|
* * SQL Data Type: uniqueidentifier
|
|
46236
46475
|
* * Related Entity/Foreign Key: MJ: AI Agents (vwAIAgents.ID)
|
|
46237
46476
|
*/
|
|
@@ -46304,37 +46543,43 @@ export declare class MJTaskEntity extends BaseEntity<MJTaskEntityType> {
|
|
|
46304
46543
|
get __mj_UpdatedAt(): Date;
|
|
46305
46544
|
/**
|
|
46306
46545
|
* * Field Name: Parent
|
|
46307
|
-
* * Display Name: Parent
|
|
46546
|
+
* * Display Name: Parent Name
|
|
46308
46547
|
* * SQL Data Type: nvarchar(255)
|
|
46309
46548
|
*/
|
|
46310
46549
|
get Parent(): string | null;
|
|
46311
46550
|
/**
|
|
46312
46551
|
* * Field Name: Type
|
|
46313
|
-
* * Display Name: Type
|
|
46552
|
+
* * Display Name: Type Name
|
|
46314
46553
|
* * SQL Data Type: nvarchar(255)
|
|
46315
46554
|
*/
|
|
46316
46555
|
get Type(): string;
|
|
46317
46556
|
/**
|
|
46318
46557
|
* * Field Name: Environment
|
|
46319
|
-
* * Display Name: Environment
|
|
46558
|
+
* * Display Name: Environment Name
|
|
46320
46559
|
* * SQL Data Type: nvarchar(255)
|
|
46321
46560
|
*/
|
|
46322
46561
|
get Environment(): string;
|
|
46323
46562
|
/**
|
|
46324
46563
|
* * Field Name: Project
|
|
46325
|
-
* * Display Name: Project
|
|
46564
|
+
* * Display Name: Project Name
|
|
46326
46565
|
* * SQL Data Type: nvarchar(255)
|
|
46327
46566
|
*/
|
|
46328
46567
|
get Project(): string | null;
|
|
46329
46568
|
/**
|
|
46569
|
+
* * Field Name: ConversationDetail
|
|
46570
|
+
* * Display Name: Conversation Detail Name
|
|
46571
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
46572
|
+
*/
|
|
46573
|
+
get ConversationDetail(): string | null;
|
|
46574
|
+
/**
|
|
46330
46575
|
* * Field Name: User
|
|
46331
|
-
* * Display Name: User
|
|
46576
|
+
* * Display Name: User Name
|
|
46332
46577
|
* * SQL Data Type: nvarchar(100)
|
|
46333
46578
|
*/
|
|
46334
46579
|
get User(): string | null;
|
|
46335
46580
|
/**
|
|
46336
46581
|
* * Field Name: Agent
|
|
46337
|
-
* * Display Name: Agent
|
|
46582
|
+
* * Display Name: Agent Name
|
|
46338
46583
|
* * SQL Data Type: nvarchar(255)
|
|
46339
46584
|
*/
|
|
46340
46585
|
get Agent(): string | null;
|
|
@@ -46715,7 +46960,7 @@ export declare class MJTemplateParamEntity extends BaseEntity<MJTemplateParamEnt
|
|
|
46715
46960
|
set IsRequired(value: boolean);
|
|
46716
46961
|
/**
|
|
46717
46962
|
* * Field Name: LinkedParameterName
|
|
46718
|
-
* * Display Name: Linked Parameter
|
|
46963
|
+
* * Display Name: Linked Parameter Name
|
|
46719
46964
|
* * SQL Data Type: nvarchar(255)
|
|
46720
46965
|
* * Description: Only used when Type=Entity, this is used to link an Entity parameter with another parameter so that the rows in the Entity parameter can be filtered automatically based on the FKEY relationship between the Record and this Entity parameter. For example, if the Entity-based parameter is for an entity like Activities and there is another parameter of type Record for an entity like Contacts, in that situation the Activities Parameter would point to the Contacts parameter as the LinkedParameterName because we would filter down the Activities in each template render to only those linked to the Contact.
|
|
46721
46966
|
*/
|
|
@@ -46723,7 +46968,7 @@ export declare class MJTemplateParamEntity extends BaseEntity<MJTemplateParamEnt
|
|
|
46723
46968
|
set LinkedParameterName(value: string | null);
|
|
46724
46969
|
/**
|
|
46725
46970
|
* * Field Name: LinkedParameterField
|
|
46726
|
-
* * Display Name: Linked Field
|
|
46971
|
+
* * Display Name: Linked Parameter Field
|
|
46727
46972
|
* * SQL Data Type: nvarchar(500)
|
|
46728
46973
|
* * Description: If the LinkedParameterName is specified, this is an optional setting to specify the field within the LinkedParameter that will be used for filtering. This is only needed if there is more than one foreign key relationship between the Entity parameter and the Linked parameter, or if there is no defined foreign key in the database between the two entities.
|
|
46729
46974
|
*/
|
|
@@ -46796,6 +47041,12 @@ export declare class MJTemplateParamEntity extends BaseEntity<MJTemplateParamEnt
|
|
|
46796
47041
|
* * SQL Data Type: nvarchar(255)
|
|
46797
47042
|
*/
|
|
46798
47043
|
get Entity(): string | null;
|
|
47044
|
+
/**
|
|
47045
|
+
* * Field Name: TemplateContent
|
|
47046
|
+
* * Display Name: Template Content Name
|
|
47047
|
+
* * SQL Data Type: nvarchar(255)
|
|
47048
|
+
*/
|
|
47049
|
+
get TemplateContent(): string | null;
|
|
46799
47050
|
}
|
|
46800
47051
|
/**
|
|
46801
47052
|
* MJ: Templates - strongly typed entity sub-class
|