@memberjunction/core-entities 2.129.0 → 2.130.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.
@@ -775,11 +775,15 @@ export declare const AIAgentSchema: z.ZodObject<{
775
775
  IsRestricted: z.ZodBoolean;
776
776
  MessageMode: z.ZodUnion<[z.ZodLiteral<"All">, z.ZodLiteral<"Bookend">, z.ZodLiteral<"Latest">, z.ZodLiteral<"None">]>;
777
777
  MaxMessages: z.ZodNullable<z.ZodNumber>;
778
+ AttachmentStorageProviderID: z.ZodNullable<z.ZodString>;
779
+ AttachmentRootPath: z.ZodNullable<z.ZodString>;
780
+ InlineStorageThresholdBytes: z.ZodNullable<z.ZodNumber>;
778
781
  Parent: z.ZodNullable<z.ZodString>;
779
782
  ContextCompressionPrompt: z.ZodNullable<z.ZodString>;
780
783
  Type: z.ZodNullable<z.ZodString>;
781
784
  DefaultArtifactType: z.ZodNullable<z.ZodString>;
782
785
  OwnerUser: z.ZodString;
786
+ AttachmentStorageProvider: z.ZodNullable<z.ZodString>;
783
787
  RootParentID: z.ZodNullable<z.ZodString>;
784
788
  }, "strip", z.ZodTypeAny, {
785
789
  ID?: string;
@@ -837,9 +841,13 @@ export declare const AIAgentSchema: z.ZodObject<{
837
841
  IsRestricted?: boolean;
838
842
  MessageMode?: "None" | "All" | "Bookend" | "Latest";
839
843
  MaxMessages?: number;
844
+ AttachmentStorageProviderID?: string;
845
+ AttachmentRootPath?: string;
846
+ InlineStorageThresholdBytes?: number;
840
847
  ContextCompressionPrompt?: string;
841
848
  DefaultArtifactType?: string;
842
849
  OwnerUser?: string;
850
+ AttachmentStorageProvider?: string;
843
851
  }, {
844
852
  ID?: string;
845
853
  __mj_CreatedAt?: Date;
@@ -896,9 +904,13 @@ export declare const AIAgentSchema: z.ZodObject<{
896
904
  IsRestricted?: boolean;
897
905
  MessageMode?: "None" | "All" | "Bookend" | "Latest";
898
906
  MaxMessages?: number;
907
+ AttachmentStorageProviderID?: string;
908
+ AttachmentRootPath?: string;
909
+ InlineStorageThresholdBytes?: number;
899
910
  ContextCompressionPrompt?: string;
900
911
  DefaultArtifactType?: string;
901
912
  OwnerUser?: string;
913
+ AttachmentStorageProvider?: string;
902
914
  }>;
903
915
  export type AIAgentEntityType = z.infer<typeof AIAgentSchema>;
904
916
  /**
@@ -942,18 +954,30 @@ export declare const AIModelTypeSchema: z.ZodObject<{
942
954
  Description: z.ZodNullable<z.ZodString>;
943
955
  __mj_CreatedAt: z.ZodDate;
944
956
  __mj_UpdatedAt: z.ZodDate;
957
+ DefaultInputModalityID: z.ZodString;
958
+ DefaultOutputModalityID: z.ZodString;
959
+ DefaultInputModality: z.ZodString;
960
+ DefaultOutputModality: z.ZodString;
945
961
  }, "strip", z.ZodTypeAny, {
946
962
  ID?: string;
947
963
  __mj_CreatedAt?: Date;
948
964
  __mj_UpdatedAt?: Date;
949
965
  Name?: string;
950
966
  Description?: string;
967
+ DefaultInputModalityID?: string;
968
+ DefaultOutputModalityID?: string;
969
+ DefaultInputModality?: string;
970
+ DefaultOutputModality?: string;
951
971
  }, {
952
972
  ID?: string;
953
973
  __mj_CreatedAt?: Date;
954
974
  __mj_UpdatedAt?: Date;
955
975
  Name?: string;
956
976
  Description?: string;
977
+ DefaultInputModalityID?: string;
978
+ DefaultOutputModalityID?: string;
979
+ DefaultInputModality?: string;
980
+ DefaultOutputModality?: string;
957
981
  }>;
958
982
  export type AIModelTypeEntityType = z.infer<typeof AIModelTypeSchema>;
959
983
  /**
@@ -971,6 +995,8 @@ export declare const AIModelSchema: z.ZodObject<{
971
995
  SpeedRank: z.ZodNullable<z.ZodNumber>;
972
996
  CostRank: z.ZodNullable<z.ZodNumber>;
973
997
  ModelSelectionInsights: z.ZodNullable<z.ZodString>;
998
+ InheritTypeModalities: z.ZodBoolean;
999
+ PriorVersionID: z.ZodNullable<z.ZodString>;
974
1000
  AIModelType: z.ZodString;
975
1001
  Vendor: z.ZodNullable<z.ZodString>;
976
1002
  DriverClass: z.ZodNullable<z.ZodString>;
@@ -992,6 +1018,8 @@ export declare const AIModelSchema: z.ZodObject<{
992
1018
  SpeedRank?: number;
993
1019
  CostRank?: number;
994
1020
  ModelSelectionInsights?: string;
1021
+ InheritTypeModalities?: boolean;
1022
+ PriorVersionID?: string;
995
1023
  AIModelType?: string;
996
1024
  Vendor?: string;
997
1025
  DriverImportPath?: string;
@@ -1012,6 +1040,8 @@ export declare const AIModelSchema: z.ZodObject<{
1012
1040
  SpeedRank?: number;
1013
1041
  CostRank?: number;
1014
1042
  ModelSelectionInsights?: string;
1043
+ InheritTypeModalities?: boolean;
1044
+ PriorVersionID?: string;
1015
1045
  AIModelType?: string;
1016
1046
  Vendor?: string;
1017
1047
  DriverImportPath?: string;
@@ -5238,6 +5268,47 @@ export declare const AIAgentExampleSchema: z.ZodObject<{
5238
5268
  SuccessScore?: number;
5239
5269
  }>;
5240
5270
  export type AIAgentExampleEntityType = z.infer<typeof AIAgentExampleSchema>;
5271
+ /**
5272
+ * zod schema definition for the entity MJ: AI Agent Modalities
5273
+ */
5274
+ export declare const AIAgentModalitySchema: z.ZodObject<{
5275
+ ID: z.ZodString;
5276
+ AgentID: z.ZodString;
5277
+ ModalityID: z.ZodString;
5278
+ Direction: z.ZodUnion<[z.ZodLiteral<"Input">, z.ZodLiteral<"Output">]>;
5279
+ IsAllowed: z.ZodBoolean;
5280
+ MaxSizeBytes: z.ZodNullable<z.ZodNumber>;
5281
+ MaxCountPerMessage: z.ZodNullable<z.ZodNumber>;
5282
+ __mj_CreatedAt: z.ZodDate;
5283
+ __mj_UpdatedAt: z.ZodDate;
5284
+ Agent: z.ZodNullable<z.ZodString>;
5285
+ Modality: z.ZodString;
5286
+ }, "strip", z.ZodTypeAny, {
5287
+ ID?: string;
5288
+ __mj_CreatedAt?: Date;
5289
+ __mj_UpdatedAt?: Date;
5290
+ AgentID?: string;
5291
+ Agent?: string;
5292
+ Direction?: "Input" | "Output";
5293
+ ModalityID?: string;
5294
+ IsAllowed?: boolean;
5295
+ MaxSizeBytes?: number;
5296
+ MaxCountPerMessage?: number;
5297
+ Modality?: string;
5298
+ }, {
5299
+ ID?: string;
5300
+ __mj_CreatedAt?: Date;
5301
+ __mj_UpdatedAt?: Date;
5302
+ AgentID?: string;
5303
+ Agent?: string;
5304
+ Direction?: "Input" | "Output";
5305
+ ModalityID?: string;
5306
+ IsAllowed?: boolean;
5307
+ MaxSizeBytes?: number;
5308
+ MaxCountPerMessage?: number;
5309
+ Modality?: string;
5310
+ }>;
5311
+ export type AIAgentModalityEntityType = z.infer<typeof AIAgentModalitySchema>;
5241
5312
  /**
5242
5313
  * zod schema definition for the entity MJ: AI Agent Permissions
5243
5314
  */
@@ -5806,6 +5877,50 @@ export declare const AIAgentTypeSchema: z.ZodObject<{
5806
5877
  SystemPrompt?: string;
5807
5878
  }>;
5808
5879
  export type AIAgentTypeEntityType = z.infer<typeof AIAgentTypeSchema>;
5880
+ /**
5881
+ * zod schema definition for the entity MJ: AI Architectures
5882
+ */
5883
+ export declare const AIArchitectureSchema: z.ZodObject<{
5884
+ ID: z.ZodString;
5885
+ Name: z.ZodString;
5886
+ Description: z.ZodNullable<z.ZodString>;
5887
+ Category: z.ZodUnion<[z.ZodLiteral<"Core">, z.ZodLiteral<"Hybrid">, z.ZodLiteral<"Optimization">, z.ZodLiteral<"Specialized">]>;
5888
+ ParentArchitectureID: z.ZodNullable<z.ZodString>;
5889
+ WikipediaURL: z.ZodNullable<z.ZodString>;
5890
+ YearIntroduced: z.ZodNullable<z.ZodNumber>;
5891
+ KeyPaper: z.ZodNullable<z.ZodString>;
5892
+ __mj_CreatedAt: z.ZodDate;
5893
+ __mj_UpdatedAt: z.ZodDate;
5894
+ ParentArchitecture: z.ZodNullable<z.ZodString>;
5895
+ RootParentArchitectureID: z.ZodNullable<z.ZodString>;
5896
+ }, "strip", z.ZodTypeAny, {
5897
+ ID?: string;
5898
+ __mj_CreatedAt?: Date;
5899
+ __mj_UpdatedAt?: Date;
5900
+ Name?: string;
5901
+ Description?: string;
5902
+ Category?: "Core" | "Hybrid" | "Optimization" | "Specialized";
5903
+ ParentArchitectureID?: string;
5904
+ WikipediaURL?: string;
5905
+ YearIntroduced?: number;
5906
+ KeyPaper?: string;
5907
+ ParentArchitecture?: string;
5908
+ RootParentArchitectureID?: string;
5909
+ }, {
5910
+ ID?: string;
5911
+ __mj_CreatedAt?: Date;
5912
+ __mj_UpdatedAt?: Date;
5913
+ Name?: string;
5914
+ Description?: string;
5915
+ Category?: "Core" | "Hybrid" | "Optimization" | "Specialized";
5916
+ ParentArchitectureID?: string;
5917
+ WikipediaURL?: string;
5918
+ YearIntroduced?: number;
5919
+ KeyPaper?: string;
5920
+ ParentArchitecture?: string;
5921
+ RootParentArchitectureID?: string;
5922
+ }>;
5923
+ export type AIArchitectureEntityType = z.infer<typeof AIArchitectureSchema>;
5809
5924
  /**
5810
5925
  * zod schema definition for the entity MJ: AI Configuration Params
5811
5926
  */
@@ -5854,32 +5969,50 @@ export declare const AIConfigurationSchema: z.ZodObject<{
5854
5969
  DefaultPromptForContextSummarizationID: z.ZodNullable<z.ZodString>;
5855
5970
  __mj_CreatedAt: z.ZodDate;
5856
5971
  __mj_UpdatedAt: z.ZodDate;
5972
+ DefaultStorageProviderID: z.ZodNullable<z.ZodString>;
5973
+ DefaultStorageRootPath: z.ZodNullable<z.ZodString>;
5974
+ ParentID: z.ZodNullable<z.ZodString>;
5857
5975
  DefaultPromptForContextCompression: z.ZodNullable<z.ZodString>;
5858
5976
  DefaultPromptForContextSummarization: z.ZodNullable<z.ZodString>;
5977
+ DefaultStorageProvider: z.ZodNullable<z.ZodString>;
5978
+ Parent: z.ZodNullable<z.ZodString>;
5979
+ RootParentID: z.ZodNullable<z.ZodString>;
5859
5980
  }, "strip", z.ZodTypeAny, {
5860
5981
  ID?: string;
5861
5982
  __mj_CreatedAt?: Date;
5862
5983
  __mj_UpdatedAt?: Date;
5863
5984
  Name?: string;
5864
5985
  Description?: string;
5986
+ ParentID?: string;
5865
5987
  Status?: "Active" | "Deprecated" | "Inactive" | "Preview";
5988
+ Parent?: string;
5989
+ RootParentID?: string;
5866
5990
  IsDefault?: boolean;
5867
5991
  DefaultPromptForContextCompressionID?: string;
5868
5992
  DefaultPromptForContextSummarizationID?: string;
5993
+ DefaultStorageProviderID?: string;
5994
+ DefaultStorageRootPath?: string;
5869
5995
  DefaultPromptForContextCompression?: string;
5870
5996
  DefaultPromptForContextSummarization?: string;
5997
+ DefaultStorageProvider?: string;
5871
5998
  }, {
5872
5999
  ID?: string;
5873
6000
  __mj_CreatedAt?: Date;
5874
6001
  __mj_UpdatedAt?: Date;
5875
6002
  Name?: string;
5876
6003
  Description?: string;
6004
+ ParentID?: string;
5877
6005
  Status?: "Active" | "Deprecated" | "Inactive" | "Preview";
6006
+ Parent?: string;
6007
+ RootParentID?: string;
5878
6008
  IsDefault?: boolean;
5879
6009
  DefaultPromptForContextCompressionID?: string;
5880
6010
  DefaultPromptForContextSummarizationID?: string;
6011
+ DefaultStorageProviderID?: string;
6012
+ DefaultStorageRootPath?: string;
5881
6013
  DefaultPromptForContextCompression?: string;
5882
6014
  DefaultPromptForContextSummarization?: string;
6015
+ DefaultStorageProvider?: string;
5883
6016
  }>;
5884
6017
  export type AIConfigurationEntityType = z.infer<typeof AIConfigurationSchema>;
5885
6018
  /**
@@ -5932,6 +6065,85 @@ export declare const AICredentialBindingSchema: z.ZodObject<{
5932
6065
  AIPromptModel?: string;
5933
6066
  }>;
5934
6067
  export type AICredentialBindingEntityType = z.infer<typeof AICredentialBindingSchema>;
6068
+ /**
6069
+ * zod schema definition for the entity MJ: AI Modalities
6070
+ */
6071
+ export declare const AIModalitySchema: z.ZodObject<{
6072
+ ID: z.ZodString;
6073
+ Name: z.ZodString;
6074
+ Description: z.ZodNullable<z.ZodString>;
6075
+ ContentBlockType: z.ZodUnion<[z.ZodLiteral<"audio_url">, z.ZodLiteral<"embedding">, z.ZodLiteral<"file_url">, z.ZodLiteral<"image_url">, z.ZodLiteral<"text">, z.ZodLiteral<"video_url">]>;
6076
+ MIMETypePattern: z.ZodNullable<z.ZodString>;
6077
+ Type: z.ZodUnion<[z.ZodLiteral<"Binary">, z.ZodLiteral<"Content">, z.ZodLiteral<"Structured">]>;
6078
+ DefaultMaxSizeBytes: z.ZodNullable<z.ZodNumber>;
6079
+ DefaultMaxCountPerMessage: z.ZodNullable<z.ZodNumber>;
6080
+ DisplayOrder: z.ZodNumber;
6081
+ __mj_CreatedAt: z.ZodDate;
6082
+ __mj_UpdatedAt: z.ZodDate;
6083
+ }, "strip", z.ZodTypeAny, {
6084
+ ID?: string;
6085
+ __mj_CreatedAt?: Date;
6086
+ __mj_UpdatedAt?: Date;
6087
+ Name?: string;
6088
+ Description?: string;
6089
+ Type?: "Binary" | "Content" | "Structured";
6090
+ ContentBlockType?: "audio_url" | "embedding" | "file_url" | "image_url" | "text" | "video_url";
6091
+ MIMETypePattern?: string;
6092
+ DefaultMaxSizeBytes?: number;
6093
+ DefaultMaxCountPerMessage?: number;
6094
+ DisplayOrder?: number;
6095
+ }, {
6096
+ ID?: string;
6097
+ __mj_CreatedAt?: Date;
6098
+ __mj_UpdatedAt?: Date;
6099
+ Name?: string;
6100
+ Description?: string;
6101
+ Type?: "Binary" | "Content" | "Structured";
6102
+ ContentBlockType?: "audio_url" | "embedding" | "file_url" | "image_url" | "text" | "video_url";
6103
+ MIMETypePattern?: string;
6104
+ DefaultMaxSizeBytes?: number;
6105
+ DefaultMaxCountPerMessage?: number;
6106
+ DisplayOrder?: number;
6107
+ }>;
6108
+ export type AIModalityEntityType = z.infer<typeof AIModalitySchema>;
6109
+ /**
6110
+ * zod schema definition for the entity MJ: AI Model Architectures
6111
+ */
6112
+ export declare const AIModelArchitectureSchema: z.ZodObject<{
6113
+ ID: z.ZodString;
6114
+ ModelID: z.ZodString;
6115
+ ArchitectureID: z.ZodString;
6116
+ Rank: z.ZodNumber;
6117
+ Weight: z.ZodNullable<z.ZodNumber>;
6118
+ Notes: z.ZodNullable<z.ZodString>;
6119
+ __mj_CreatedAt: z.ZodDate;
6120
+ __mj_UpdatedAt: z.ZodDate;
6121
+ Model: z.ZodString;
6122
+ Architecture: z.ZodString;
6123
+ }, "strip", z.ZodTypeAny, {
6124
+ ID?: string;
6125
+ __mj_CreatedAt?: Date;
6126
+ __mj_UpdatedAt?: Date;
6127
+ ModelID?: string;
6128
+ Model?: string;
6129
+ ArchitectureID?: string;
6130
+ Rank?: number;
6131
+ Weight?: number;
6132
+ Notes?: string;
6133
+ Architecture?: string;
6134
+ }, {
6135
+ ID?: string;
6136
+ __mj_CreatedAt?: Date;
6137
+ __mj_UpdatedAt?: Date;
6138
+ ModelID?: string;
6139
+ Model?: string;
6140
+ ArchitectureID?: string;
6141
+ Rank?: number;
6142
+ Weight?: number;
6143
+ Notes?: string;
6144
+ Architecture?: string;
6145
+ }>;
6146
+ export type AIModelArchitectureEntityType = z.infer<typeof AIModelArchitectureSchema>;
5935
6147
  /**
5936
6148
  * zod schema definition for the entity MJ: AI Model Costs
5937
6149
  */
@@ -5997,6 +6209,59 @@ export declare const AIModelCostSchema: z.ZodObject<{
5997
6209
  UnitType?: string;
5998
6210
  }>;
5999
6211
  export type AIModelCostEntityType = z.infer<typeof AIModelCostSchema>;
6212
+ /**
6213
+ * zod schema definition for the entity MJ: AI Model Modalities
6214
+ */
6215
+ export declare const AIModelModalitySchema: z.ZodObject<{
6216
+ ID: z.ZodString;
6217
+ ModelID: z.ZodString;
6218
+ ModalityID: z.ZodString;
6219
+ Direction: z.ZodUnion<[z.ZodLiteral<"Input">, z.ZodLiteral<"Output">]>;
6220
+ IsSupported: z.ZodBoolean;
6221
+ IsRequired: z.ZodBoolean;
6222
+ SupportedFormats: z.ZodNullable<z.ZodString>;
6223
+ MaxSizeBytes: z.ZodNullable<z.ZodNumber>;
6224
+ MaxCountPerMessage: z.ZodNullable<z.ZodNumber>;
6225
+ MaxDimension: z.ZodNullable<z.ZodNumber>;
6226
+ Comments: z.ZodNullable<z.ZodString>;
6227
+ __mj_CreatedAt: z.ZodDate;
6228
+ __mj_UpdatedAt: z.ZodDate;
6229
+ Model: z.ZodString;
6230
+ Modality: z.ZodString;
6231
+ }, "strip", z.ZodTypeAny, {
6232
+ ID?: string;
6233
+ Comments?: string;
6234
+ __mj_CreatedAt?: Date;
6235
+ __mj_UpdatedAt?: Date;
6236
+ IsRequired?: boolean;
6237
+ ModelID?: string;
6238
+ Model?: string;
6239
+ Direction?: "Input" | "Output";
6240
+ ModalityID?: string;
6241
+ MaxSizeBytes?: number;
6242
+ MaxCountPerMessage?: number;
6243
+ Modality?: string;
6244
+ IsSupported?: boolean;
6245
+ SupportedFormats?: string;
6246
+ MaxDimension?: number;
6247
+ }, {
6248
+ ID?: string;
6249
+ Comments?: string;
6250
+ __mj_CreatedAt?: Date;
6251
+ __mj_UpdatedAt?: Date;
6252
+ IsRequired?: boolean;
6253
+ ModelID?: string;
6254
+ Model?: string;
6255
+ Direction?: "Input" | "Output";
6256
+ ModalityID?: string;
6257
+ MaxSizeBytes?: number;
6258
+ MaxCountPerMessage?: number;
6259
+ Modality?: string;
6260
+ IsSupported?: boolean;
6261
+ SupportedFormats?: string;
6262
+ MaxDimension?: number;
6263
+ }>;
6264
+ export type AIModelModalityEntityType = z.infer<typeof AIModelModalitySchema>;
6000
6265
  /**
6001
6266
  * zod schema definition for the entity MJ: AI Model Price Types
6002
6267
  */
@@ -6759,8 +7024,8 @@ export declare const ArtifactVersionSchema: z.ZodObject<{
6759
7024
  Configuration?: string;
6760
7025
  ArtifactID?: string;
6761
7026
  Artifact?: string;
6762
- VersionNumber?: number;
6763
7027
  Content?: string;
7028
+ VersionNumber?: number;
6764
7029
  ContentHash?: string;
6765
7030
  }, {
6766
7031
  ID?: string;
@@ -6774,8 +7039,8 @@ export declare const ArtifactVersionSchema: z.ZodObject<{
6774
7039
  Configuration?: string;
6775
7040
  ArtifactID?: string;
6776
7041
  Artifact?: string;
6777
- VersionNumber?: number;
6778
7042
  Content?: string;
7043
+ VersionNumber?: number;
6779
7044
  ContentHash?: string;
6780
7045
  }>;
6781
7046
  export type ArtifactVersionEntityType = z.infer<typeof ArtifactVersionSchema>;
@@ -7013,7 +7278,7 @@ export declare const ComponentLibrarySchema: z.ZodObject<{
7013
7278
  Name?: string;
7014
7279
  Description?: string;
7015
7280
  Status?: "Active" | "Disabled" | "Deprecated";
7016
- Category?: "Other" | "Charting" | "Core" | "Runtime" | "UI" | "Utility";
7281
+ Category?: "Other" | "Core" | "Charting" | "Runtime" | "UI" | "Utility";
7017
7282
  DisplayName?: string;
7018
7283
  UsageType?: "Both" | "Dependency" | "Direct";
7019
7284
  Version?: string;
@@ -7029,7 +7294,7 @@ export declare const ComponentLibrarySchema: z.ZodObject<{
7029
7294
  Name?: string;
7030
7295
  Description?: string;
7031
7296
  Status?: "Active" | "Disabled" | "Deprecated";
7032
- Category?: "Other" | "Charting" | "Core" | "Runtime" | "UI" | "Utility";
7297
+ Category?: "Other" | "Core" | "Charting" | "Runtime" | "UI" | "Utility";
7033
7298
  DisplayName?: string;
7034
7299
  UsageType?: "Both" | "Dependency" | "Direct";
7035
7300
  Version?: string;
@@ -7339,6 +7604,68 @@ export declare const ConversationDetailArtifactSchema: z.ZodObject<{
7339
7604
  ConversationDetailID?: string;
7340
7605
  }>;
7341
7606
  export type ConversationDetailArtifactEntityType = z.infer<typeof ConversationDetailArtifactSchema>;
7607
+ /**
7608
+ * zod schema definition for the entity MJ: Conversation Detail Attachments
7609
+ */
7610
+ export declare const ConversationDetailAttachmentSchema: z.ZodObject<{
7611
+ ID: z.ZodString;
7612
+ ConversationDetailID: z.ZodString;
7613
+ ModalityID: z.ZodString;
7614
+ MimeType: z.ZodString;
7615
+ FileName: z.ZodNullable<z.ZodString>;
7616
+ FileSizeBytes: z.ZodNumber;
7617
+ Width: z.ZodNullable<z.ZodNumber>;
7618
+ Height: z.ZodNullable<z.ZodNumber>;
7619
+ DurationSeconds: z.ZodNullable<z.ZodNumber>;
7620
+ InlineData: z.ZodNullable<z.ZodString>;
7621
+ FileID: z.ZodNullable<z.ZodString>;
7622
+ DisplayOrder: z.ZodNumber;
7623
+ ThumbnailBase64: z.ZodNullable<z.ZodString>;
7624
+ __mj_CreatedAt: z.ZodDate;
7625
+ __mj_UpdatedAt: z.ZodDate;
7626
+ ConversationDetail: z.ZodString;
7627
+ Modality: z.ZodString;
7628
+ File: z.ZodNullable<z.ZodString>;
7629
+ }, "strip", z.ZodTypeAny, {
7630
+ ID?: string;
7631
+ __mj_CreatedAt?: Date;
7632
+ __mj_UpdatedAt?: Date;
7633
+ FileID?: string;
7634
+ File?: string;
7635
+ ModalityID?: string;
7636
+ Modality?: string;
7637
+ ConversationDetailID?: string;
7638
+ ConversationDetail?: string;
7639
+ Width?: number;
7640
+ Height?: number;
7641
+ DisplayOrder?: number;
7642
+ MimeType?: string;
7643
+ FileName?: string;
7644
+ FileSizeBytes?: number;
7645
+ DurationSeconds?: number;
7646
+ InlineData?: string;
7647
+ ThumbnailBase64?: string;
7648
+ }, {
7649
+ ID?: string;
7650
+ __mj_CreatedAt?: Date;
7651
+ __mj_UpdatedAt?: Date;
7652
+ FileID?: string;
7653
+ File?: string;
7654
+ ModalityID?: string;
7655
+ Modality?: string;
7656
+ ConversationDetailID?: string;
7657
+ ConversationDetail?: string;
7658
+ Width?: number;
7659
+ Height?: number;
7660
+ DisplayOrder?: number;
7661
+ MimeType?: string;
7662
+ FileName?: string;
7663
+ FileSizeBytes?: number;
7664
+ DurationSeconds?: number;
7665
+ InlineData?: string;
7666
+ ThumbnailBase64?: string;
7667
+ }>;
7668
+ export type ConversationDetailAttachmentEntityType = z.infer<typeof ConversationDetailAttachmentSchema>;
7342
7669
  /**
7343
7670
  * zod schema definition for the entity MJ: Conversation Detail Ratings
7344
7671
  */
@@ -7521,9 +7848,9 @@ export declare const DashboardUserPreferenceSchema: z.ZodObject<{
7521
7848
  ApplicationID?: string;
7522
7849
  Application?: string;
7523
7850
  Scope?: "App" | "Global";
7851
+ DisplayOrder?: number;
7524
7852
  Dashboard?: string;
7525
7853
  DashboardID?: string;
7526
- DisplayOrder?: number;
7527
7854
  }, {
7528
7855
  ID?: string;
7529
7856
  __mj_CreatedAt?: Date;
@@ -7533,9 +7860,9 @@ export declare const DashboardUserPreferenceSchema: z.ZodObject<{
7533
7860
  ApplicationID?: string;
7534
7861
  Application?: string;
7535
7862
  Scope?: "App" | "Global";
7863
+ DisplayOrder?: number;
7536
7864
  Dashboard?: string;
7537
7865
  DashboardID?: string;
7538
- DisplayOrder?: number;
7539
7866
  }>;
7540
7867
  export type DashboardUserPreferenceEntityType = z.infer<typeof DashboardUserPreferenceSchema>;
7541
7868
  /**
@@ -8406,7 +8733,7 @@ export declare const TestRunSchema: z.ZodObject<{
8406
8733
  Sequence: z.ZodNullable<z.ZodNumber>;
8407
8734
  TargetType: z.ZodNullable<z.ZodString>;
8408
8735
  TargetLogID: z.ZodNullable<z.ZodString>;
8409
- Status: z.ZodUnion<[z.ZodLiteral<"Error">, z.ZodLiteral<"Failed">, z.ZodLiteral<"Passed">, z.ZodLiteral<"Pending">, z.ZodLiteral<"Running">, z.ZodLiteral<"Skipped">]>;
8736
+ Status: z.ZodUnion<[z.ZodLiteral<"Error">, z.ZodLiteral<"Failed">, z.ZodLiteral<"Passed">, z.ZodLiteral<"Pending">, z.ZodLiteral<"Running">, z.ZodLiteral<"Skipped">, z.ZodLiteral<"Timeout">]>;
8410
8737
  StartedAt: z.ZodNullable<z.ZodDate>;
8411
8738
  CompletedAt: z.ZodNullable<z.ZodDate>;
8412
8739
  DurationSeconds: z.ZodNullable<z.ZodNumber>;
@@ -8422,14 +8749,23 @@ export declare const TestRunSchema: z.ZodObject<{
8422
8749
  ResultDetails: z.ZodNullable<z.ZodString>;
8423
8750
  __mj_CreatedAt: z.ZodDate;
8424
8751
  __mj_UpdatedAt: z.ZodDate;
8752
+ Log: z.ZodNullable<z.ZodString>;
8753
+ Tags: z.ZodNullable<z.ZodString>;
8754
+ MachineName: z.ZodNullable<z.ZodString>;
8755
+ MachineID: z.ZodNullable<z.ZodString>;
8756
+ RunByUserName: z.ZodNullable<z.ZodString>;
8757
+ RunByUserEmail: z.ZodNullable<z.ZodString>;
8758
+ RunContextDetails: z.ZodNullable<z.ZodString>;
8759
+ TargetLogEntityID: z.ZodNullable<z.ZodString>;
8425
8760
  Test: z.ZodString;
8426
8761
  TestSuiteRun: z.ZodNullable<z.ZodString>;
8427
8762
  RunByUser: z.ZodString;
8763
+ TargetLogEntity: z.ZodNullable<z.ZodString>;
8428
8764
  }, "strip", z.ZodTypeAny, {
8429
8765
  ID?: string;
8430
8766
  __mj_CreatedAt?: Date;
8431
8767
  __mj_UpdatedAt?: Date;
8432
- Status?: "Pending" | "Failed" | "Error" | "Skipped" | "Running" | "Passed";
8768
+ Status?: "Pending" | "Failed" | "Error" | "Skipped" | "Running" | "Timeout" | "Passed";
8433
8769
  StartedAt?: Date;
8434
8770
  Sequence?: number;
8435
8771
  ErrorMessage?: string;
@@ -8438,10 +8774,10 @@ export declare const TestRunSchema: z.ZodObject<{
8438
8774
  CompletedAt?: Date;
8439
8775
  InputData?: string;
8440
8776
  TargetLogID?: string;
8777
+ DurationSeconds?: number;
8441
8778
  TestID?: string;
8442
8779
  TestSuiteRunID?: string;
8443
8780
  TargetType?: string;
8444
- DurationSeconds?: number;
8445
8781
  ExpectedOutputData?: string;
8446
8782
  ActualOutputData?: string;
8447
8783
  PassedChecks?: number;
@@ -8450,13 +8786,22 @@ export declare const TestRunSchema: z.ZodObject<{
8450
8786
  Score?: number;
8451
8787
  CostUSD?: number;
8452
8788
  ResultDetails?: string;
8789
+ Log?: string;
8790
+ Tags?: string;
8791
+ MachineName?: string;
8792
+ MachineID?: string;
8793
+ RunByUserName?: string;
8794
+ RunByUserEmail?: string;
8795
+ RunContextDetails?: string;
8796
+ TargetLogEntityID?: string;
8453
8797
  Test?: string;
8454
8798
  TestSuiteRun?: string;
8799
+ TargetLogEntity?: string;
8455
8800
  }, {
8456
8801
  ID?: string;
8457
8802
  __mj_CreatedAt?: Date;
8458
8803
  __mj_UpdatedAt?: Date;
8459
- Status?: "Pending" | "Failed" | "Error" | "Skipped" | "Running" | "Passed";
8804
+ Status?: "Pending" | "Failed" | "Error" | "Skipped" | "Running" | "Timeout" | "Passed";
8460
8805
  StartedAt?: Date;
8461
8806
  Sequence?: number;
8462
8807
  ErrorMessage?: string;
@@ -8465,10 +8810,10 @@ export declare const TestRunSchema: z.ZodObject<{
8465
8810
  CompletedAt?: Date;
8466
8811
  InputData?: string;
8467
8812
  TargetLogID?: string;
8813
+ DurationSeconds?: number;
8468
8814
  TestID?: string;
8469
8815
  TestSuiteRunID?: string;
8470
8816
  TargetType?: string;
8471
- DurationSeconds?: number;
8472
8817
  ExpectedOutputData?: string;
8473
8818
  ActualOutputData?: string;
8474
8819
  PassedChecks?: number;
@@ -8477,8 +8822,17 @@ export declare const TestRunSchema: z.ZodObject<{
8477
8822
  Score?: number;
8478
8823
  CostUSD?: number;
8479
8824
  ResultDetails?: string;
8825
+ Log?: string;
8826
+ Tags?: string;
8827
+ MachineName?: string;
8828
+ MachineID?: string;
8829
+ RunByUserName?: string;
8830
+ RunByUserEmail?: string;
8831
+ RunContextDetails?: string;
8832
+ TargetLogEntityID?: string;
8480
8833
  Test?: string;
8481
8834
  TestSuiteRun?: string;
8835
+ TargetLogEntity?: string;
8482
8836
  }>;
8483
8837
  export type TestRunEntityType = z.infer<typeof TestRunSchema>;
8484
8838
  /**
@@ -8507,6 +8861,12 @@ export declare const TestSuiteRunSchema: z.ZodObject<{
8507
8861
  ErrorMessage: z.ZodNullable<z.ZodString>;
8508
8862
  __mj_CreatedAt: z.ZodDate;
8509
8863
  __mj_UpdatedAt: z.ZodDate;
8864
+ Tags: z.ZodNullable<z.ZodString>;
8865
+ MachineName: z.ZodNullable<z.ZodString>;
8866
+ MachineID: z.ZodNullable<z.ZodString>;
8867
+ RunByUserName: z.ZodNullable<z.ZodString>;
8868
+ RunByUserEmail: z.ZodNullable<z.ZodString>;
8869
+ RunContextDetails: z.ZodNullable<z.ZodString>;
8510
8870
  Suite: z.ZodString;
8511
8871
  RunByUser: z.ZodString;
8512
8872
  }, "strip", z.ZodTypeAny, {
@@ -8521,6 +8881,12 @@ export declare const TestSuiteRunSchema: z.ZodObject<{
8521
8881
  RunByUser?: string;
8522
8882
  Environment?: string;
8523
8883
  CompletedAt?: Date;
8884
+ Tags?: string;
8885
+ MachineName?: string;
8886
+ MachineID?: string;
8887
+ RunByUserName?: string;
8888
+ RunByUserEmail?: string;
8889
+ RunContextDetails?: string;
8524
8890
  SuiteID?: string;
8525
8891
  TriggerType?: string;
8526
8892
  GitCommit?: string;
@@ -8546,6 +8912,12 @@ export declare const TestSuiteRunSchema: z.ZodObject<{
8546
8912
  RunByUser?: string;
8547
8913
  Environment?: string;
8548
8914
  CompletedAt?: Date;
8915
+ Tags?: string;
8916
+ MachineName?: string;
8917
+ MachineID?: string;
8918
+ RunByUserName?: string;
8919
+ RunByUserEmail?: string;
8920
+ RunContextDetails?: string;
8549
8921
  SuiteID?: string;
8550
8922
  TriggerType?: string;
8551
8923
  GitCommit?: string;
@@ -8612,6 +8984,7 @@ export declare const TestSuiteSchema: z.ZodObject<{
8612
8984
  Configuration: z.ZodNullable<z.ZodString>;
8613
8985
  __mj_CreatedAt: z.ZodDate;
8614
8986
  __mj_UpdatedAt: z.ZodDate;
8987
+ MaxExecutionTimeMS: z.ZodNullable<z.ZodNumber>;
8615
8988
  Parent: z.ZodNullable<z.ZodString>;
8616
8989
  RootParentID: z.ZodNullable<z.ZodString>;
8617
8990
  }, "strip", z.ZodTypeAny, {
@@ -8626,6 +8999,7 @@ export declare const TestSuiteSchema: z.ZodObject<{
8626
8999
  RootParentID?: string;
8627
9000
  Configuration?: string;
8628
9001
  Tags?: string;
9002
+ MaxExecutionTimeMS?: number;
8629
9003
  }, {
8630
9004
  ID?: string;
8631
9005
  __mj_CreatedAt?: Date;
@@ -8638,6 +9012,7 @@ export declare const TestSuiteSchema: z.ZodObject<{
8638
9012
  RootParentID?: string;
8639
9013
  Configuration?: string;
8640
9014
  Tags?: string;
9015
+ MaxExecutionTimeMS?: number;
8641
9016
  }>;
8642
9017
  export type TestSuiteEntityType = z.infer<typeof TestSuiteSchema>;
8643
9018
  /**
@@ -8688,6 +9063,7 @@ export declare const TestSchema: z.ZodObject<{
8688
9063
  __mj_CreatedAt: z.ZodDate;
8689
9064
  __mj_UpdatedAt: z.ZodDate;
8690
9065
  RepeatCount: z.ZodNullable<z.ZodNumber>;
9066
+ MaxExecutionTimeMS: z.ZodNullable<z.ZodNumber>;
8691
9067
  Type: z.ZodString;
8692
9068
  }, "strip", z.ZodTypeAny, {
8693
9069
  ID?: string;
@@ -8701,6 +9077,7 @@ export declare const TestSchema: z.ZodObject<{
8701
9077
  TypeID?: string;
8702
9078
  Configuration?: string;
8703
9079
  Tags?: string;
9080
+ MaxExecutionTimeMS?: number;
8704
9081
  InputDefinition?: string;
8705
9082
  ExpectedOutcomes?: string;
8706
9083
  EstimatedDurationSeconds?: number;
@@ -8718,6 +9095,7 @@ export declare const TestSchema: z.ZodObject<{
8718
9095
  TypeID?: string;
8719
9096
  Configuration?: string;
8720
9097
  Tags?: string;
9098
+ MaxExecutionTimeMS?: number;
8721
9099
  InputDefinition?: string;
8722
9100
  ExpectedOutcomes?: string;
8723
9101
  EstimatedDurationSeconds?: number;
@@ -13338,7 +13716,7 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
13338
13716
  get __mj_UpdatedAt(): Date;
13339
13717
  /**
13340
13718
  * * Field Name: ParentID
13341
- * * Display Name: Parent ID
13719
+ * * Display Name: Parent
13342
13720
  * * SQL Data Type: uniqueidentifier
13343
13721
  * * Related Entity/Foreign Key: AI Agents (vwAIAgents.ID)
13344
13722
  * * Description: References the parent agent in the hierarchical structure. If NULL, this is a root (top-level) agent.
@@ -13395,7 +13773,7 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
13395
13773
  set ContextCompressionMessageThreshold(value: number | null);
13396
13774
  /**
13397
13775
  * * Field Name: ContextCompressionPromptID
13398
- * * Display Name: Context Compression Prompt ID
13776
+ * * Display Name: Context Compression Prompt
13399
13777
  * * SQL Data Type: uniqueidentifier
13400
13778
  * * Related Entity/Foreign Key: AI Prompts (vwAIPrompts.ID)
13401
13779
  */
@@ -13411,7 +13789,7 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
13411
13789
  set ContextCompressionMessageRetentionCount(value: number | null);
13412
13790
  /**
13413
13791
  * * Field Name: TypeID
13414
- * * Display Name: Type ID
13792
+ * * Display Name: Type
13415
13793
  * * SQL Data Type: uniqueidentifier
13416
13794
  * * Related Entity/Foreign Key: MJ: AI Agent Types (vwAIAgentTypes.ID)
13417
13795
  * * Description: Reference to the AIAgentType that defines the category and system-level behavior for this agent. Cannot be null.
@@ -13633,7 +14011,7 @@ if this limit is exceeded.
13633
14011
  set ChatHandlingOption(value: 'Failed' | 'Retry' | 'Success' | null);
13634
14012
  /**
13635
14013
  * * Field Name: DefaultArtifactTypeID
13636
- * * Display Name: Default Artifact Type ID
14014
+ * * Display Name: Default Artifact Type
13637
14015
  * * SQL Data Type: uniqueidentifier
13638
14016
  * * Related Entity/Foreign Key: MJ: Artifact Types (vwArtifactTypes.ID)
13639
14017
  * * Description: Default artifact type produced by this agent. This is the primary artifact type; additional artifact types can be linked via AIAgentArtifactType junction table. Can be NULL if agent does not produce artifacts by default.
@@ -13642,7 +14020,7 @@ if this limit is exceeded.
13642
14020
  set DefaultArtifactTypeID(value: string | null);
13643
14021
  /**
13644
14022
  * * Field Name: OwnerUserID
13645
- * * Display Name: Owner User ID
14023
+ * * Display Name: Owner User
13646
14024
  * * SQL Data Type: uniqueidentifier
13647
14025
  * * Related Entity/Foreign Key: Users (vwUsers.ID)
13648
14026
  * * Default Value: ECAFCCEC-6A37-EF11-86D4-000D3A4E707E
@@ -13791,6 +14169,31 @@ if this limit is exceeded.
13791
14169
  get MaxMessages(): number | null;
13792
14170
  set MaxMessages(value: number | null);
13793
14171
  /**
14172
+ * * Field Name: AttachmentStorageProviderID
14173
+ * * Display Name: Attachment Storage Provider
14174
+ * * SQL Data Type: uniqueidentifier
14175
+ * * Related Entity/Foreign Key: File Storage Providers (vwFileStorageProviders.ID)
14176
+ * * Description: File storage provider for large attachments. Overrides the default from AIConfiguration. NULL uses system default.
14177
+ */
14178
+ get AttachmentStorageProviderID(): string | null;
14179
+ set AttachmentStorageProviderID(value: string | null);
14180
+ /**
14181
+ * * Field Name: AttachmentRootPath
14182
+ * * Display Name: Attachment Root Path
14183
+ * * SQL Data Type: nvarchar(500)
14184
+ * * Description: Base path within the storage provider for this agent's attachments. Agent run ID and sequence number are appended to create unique paths. Format: /folder/subfolder
14185
+ */
14186
+ get AttachmentRootPath(): string | null;
14187
+ set AttachmentRootPath(value: string | null);
14188
+ /**
14189
+ * * Field Name: InlineStorageThresholdBytes
14190
+ * * Display Name: Inline Storage Threshold (Bytes)
14191
+ * * SQL Data Type: int
14192
+ * * Description: File size threshold for inline storage. Files <= this size are stored as base64 inline, larger files use MJStorage. NULL uses system default (1MB). Set to 0 to always use MJStorage.
14193
+ */
14194
+ get InlineStorageThresholdBytes(): number | null;
14195
+ set InlineStorageThresholdBytes(value: number | null);
14196
+ /**
13794
14197
  * * Field Name: Parent
13795
14198
  * * Display Name: Parent
13796
14199
  * * SQL Data Type: nvarchar(255)
@@ -13798,7 +14201,7 @@ if this limit is exceeded.
13798
14201
  get Parent(): string | null;
13799
14202
  /**
13800
14203
  * * Field Name: ContextCompressionPrompt
13801
- * * Display Name: Context Compression Prompt
14204
+ * * Display Name: Context Compression Prompt Text
13802
14205
  * * SQL Data Type: nvarchar(255)
13803
14206
  */
13804
14207
  get ContextCompressionPrompt(): string | null;
@@ -13821,8 +14224,14 @@ if this limit is exceeded.
13821
14224
  */
13822
14225
  get OwnerUser(): string;
13823
14226
  /**
14227
+ * * Field Name: AttachmentStorageProvider
14228
+ * * Display Name: Attachment Storage Provider Name
14229
+ * * SQL Data Type: nvarchar(50)
14230
+ */
14231
+ get AttachmentStorageProvider(): string | null;
14232
+ /**
13824
14233
  * * Field Name: RootParentID
13825
- * * Display Name: Root Parent ID
14234
+ * * Display Name: Root Parent
13826
14235
  * * SQL Data Type: uniqueidentifier
13827
14236
  */
13828
14237
  get RootParentID(): string | null;
@@ -13972,6 +14381,36 @@ export declare class AIModelTypeEntity extends BaseEntity<AIModelTypeEntityType>
13972
14381
  * * Default Value: getutcdate()
13973
14382
  */
13974
14383
  get __mj_UpdatedAt(): Date;
14384
+ /**
14385
+ * * Field Name: DefaultInputModalityID
14386
+ * * Display Name: Default Input Modality
14387
+ * * SQL Data Type: uniqueidentifier
14388
+ * * Related Entity/Foreign Key: MJ: AI Modalities (vwAIModalities.ID)
14389
+ * * Description: Default input modality for this model type. Models of this type inherit this as their primary input modality unless overridden.
14390
+ */
14391
+ get DefaultInputModalityID(): string;
14392
+ set DefaultInputModalityID(value: string);
14393
+ /**
14394
+ * * Field Name: DefaultOutputModalityID
14395
+ * * Display Name: Default Output Modality
14396
+ * * SQL Data Type: uniqueidentifier
14397
+ * * Related Entity/Foreign Key: MJ: AI Modalities (vwAIModalities.ID)
14398
+ * * Description: Default output modality for this model type. Models of this type inherit this as their primary output modality unless overridden.
14399
+ */
14400
+ get DefaultOutputModalityID(): string;
14401
+ set DefaultOutputModalityID(value: string);
14402
+ /**
14403
+ * * Field Name: DefaultInputModality
14404
+ * * Display Name: Default Input Modality
14405
+ * * SQL Data Type: nvarchar(50)
14406
+ */
14407
+ get DefaultInputModality(): string;
14408
+ /**
14409
+ * * Field Name: DefaultOutputModality
14410
+ * * Display Name: Default Output Modality
14411
+ * * SQL Data Type: nvarchar(50)
14412
+ */
14413
+ get DefaultOutputModality(): string;
13975
14414
  }
13976
14415
  /**
13977
14416
  * AI Models - strongly typed entity sub-class
@@ -14052,7 +14491,7 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
14052
14491
  set Description(value: string | null);
14053
14492
  /**
14054
14493
  * * Field Name: AIModelTypeID
14055
- * * Display Name: AI Model Type ID
14494
+ * * Display Name: AI Model Type
14056
14495
  * * SQL Data Type: uniqueidentifier
14057
14496
  * * Related Entity/Foreign Key: AI Model Types (vwAIModelTypes.ID)
14058
14497
  */
@@ -14069,7 +14508,7 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
14069
14508
  set PowerRank(value: number | null);
14070
14509
  /**
14071
14510
  * * Field Name: IsActive
14072
- * * Display Name: Is Active
14511
+ * * Display Name: Active
14073
14512
  * * SQL Data Type: bit
14074
14513
  * * Default Value: 1
14075
14514
  * * Description: Controls whether this AI model is available for use in the system.
@@ -14117,8 +14556,26 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
14117
14556
  get ModelSelectionInsights(): string | null;
14118
14557
  set ModelSelectionInsights(value: string | null);
14119
14558
  /**
14559
+ * * Field Name: InheritTypeModalities
14560
+ * * Display Name: Inherit Type Modalities
14561
+ * * SQL Data Type: bit
14562
+ * * Default Value: 1
14563
+ * * Description: When TRUE (default), the model inherits default input/output modalities from its AIModelType AND can extend with additional modalities via AIModelModality records. When FALSE, only modalities explicitly defined in AIModelModality are used.
14564
+ */
14565
+ get InheritTypeModalities(): boolean;
14566
+ set InheritTypeModalities(value: boolean);
14567
+ /**
14568
+ * * Field Name: PriorVersionID
14569
+ * * Display Name: Prior Version
14570
+ * * SQL Data Type: uniqueidentifier
14571
+ * * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
14572
+ * * Description: Reference to the previous version of this model, creating a version lineage chain. For example, GPT-4 Turbo might reference GPT-4 as its prior version.
14573
+ */
14574
+ get PriorVersionID(): string | null;
14575
+ set PriorVersionID(value: string | null);
14576
+ /**
14120
14577
  * * Field Name: AIModelType
14121
- * * Display Name: AIModel Type
14578
+ * * Display Name: AI Model Type
14122
14579
  * * SQL Data Type: nvarchar(50)
14123
14580
  */
14124
14581
  get AIModelType(): string;
@@ -14142,7 +14599,7 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
14142
14599
  get DriverImportPath(): string | null;
14143
14600
  /**
14144
14601
  * * Field Name: APIName
14145
- * * Display Name: APIName
14602
+ * * Display Name: API Name
14146
14603
  * * SQL Data Type: nvarchar(100)
14147
14604
  */
14148
14605
  get APIName(): string | null;
@@ -22033,7 +22490,7 @@ export declare class EntityFieldValueEntity extends BaseEntity<EntityFieldValueE
22033
22490
  set ID(value: string);
22034
22491
  /**
22035
22492
  * * Field Name: EntityFieldID
22036
- * * Display Name: Entity Field ID
22493
+ * * Display Name: Entity Field
22037
22494
  * * SQL Data Type: uniqueidentifier
22038
22495
  * * Related Entity/Foreign Key: Entity Fields (vwEntityFields.ID)
22039
22496
  */
@@ -22072,14 +22529,14 @@ export declare class EntityFieldValueEntity extends BaseEntity<EntityFieldValueE
22072
22529
  set Description(value: string | null);
22073
22530
  /**
22074
22531
  * * Field Name: __mj_CreatedAt
22075
- * * Display Name: __mj _Created At
22532
+ * * Display Name: Created At
22076
22533
  * * SQL Data Type: datetimeoffset
22077
22534
  * * Default Value: getutcdate()
22078
22535
  */
22079
22536
  get __mj_CreatedAt(): Date;
22080
22537
  /**
22081
22538
  * * Field Name: __mj_UpdatedAt
22082
- * * Display Name: __mj _Updated At
22539
+ * * Display Name: Updated At
22083
22540
  * * SQL Data Type: datetimeoffset
22084
22541
  * * Default Value: getutcdate()
22085
22542
  */
@@ -22098,7 +22555,7 @@ export declare class EntityFieldValueEntity extends BaseEntity<EntityFieldValueE
22098
22555
  get Entity(): string;
22099
22556
  /**
22100
22557
  * * Field Name: EntityID
22101
- * * Display Name: Entity ID
22558
+ * * Display Name: Entity
22102
22559
  * * SQL Data Type: uniqueidentifier
22103
22560
  */
22104
22561
  get EntityID(): string;
@@ -25876,6 +26333,118 @@ export declare class AIAgentExampleEntity extends BaseEntity<AIAgentExampleEntit
25876
26333
  */
25877
26334
  get EmbeddingModel(): string | null;
25878
26335
  }
26336
+ /**
26337
+ * MJ: AI Agent Modalities - strongly typed entity sub-class
26338
+ * * Schema: __mj
26339
+ * * Base Table: AIAgentModality
26340
+ * * Base View: vwAIAgentModalities
26341
+ * * @description Agent-level modality configuration. Allows agents to restrict or customize modality settings beyond what the model supports. Absence of a record means the agent uses model defaults (Text in/out assumed if no records exist).
26342
+ * * Primary Key: ID
26343
+ * @extends {BaseEntity}
26344
+ * @class
26345
+ * @public
26346
+ */
26347
+ export declare class AIAgentModalityEntity extends BaseEntity<AIAgentModalityEntityType> {
26348
+ /**
26349
+ * Loads the MJ: AI Agent Modalities record from the database
26350
+ * @param ID: string - primary key value to load the MJ: AI Agent Modalities record.
26351
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
26352
+ * @returns {Promise<boolean>} - true if successful, false otherwise
26353
+ * @public
26354
+ * @async
26355
+ * @memberof AIAgentModalityEntity
26356
+ * @method
26357
+ * @override
26358
+ */
26359
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
26360
+ /**
26361
+ * * Field Name: ID
26362
+ * * Display Name: ID
26363
+ * * SQL Data Type: uniqueidentifier
26364
+ * * Default Value: newsequentialid()
26365
+ */
26366
+ get ID(): string;
26367
+ set ID(value: string);
26368
+ /**
26369
+ * * Field Name: AgentID
26370
+ * * Display Name: Agent ID
26371
+ * * SQL Data Type: uniqueidentifier
26372
+ * * Related Entity/Foreign Key: AI Agents (vwAIAgents.ID)
26373
+ */
26374
+ get AgentID(): string;
26375
+ set AgentID(value: string);
26376
+ /**
26377
+ * * Field Name: ModalityID
26378
+ * * Display Name: Modality ID
26379
+ * * SQL Data Type: uniqueidentifier
26380
+ * * Related Entity/Foreign Key: MJ: AI Modalities (vwAIModalities.ID)
26381
+ */
26382
+ get ModalityID(): string;
26383
+ set ModalityID(value: string);
26384
+ /**
26385
+ * * Field Name: Direction
26386
+ * * Display Name: Direction
26387
+ * * SQL Data Type: nvarchar(10)
26388
+ * * Value List Type: List
26389
+ * * Possible Values
26390
+ * * Input
26391
+ * * Output
26392
+ * * Description: Whether this is an Input or Output modality for the agent.
26393
+ */
26394
+ get Direction(): 'Input' | 'Output';
26395
+ set Direction(value: 'Input' | 'Output');
26396
+ /**
26397
+ * * Field Name: IsAllowed
26398
+ * * Display Name: Allowed
26399
+ * * SQL Data Type: bit
26400
+ * * Default Value: 1
26401
+ * * Description: Whether this modality is allowed for this agent. Set to FALSE to disable a modality even if the underlying model supports it.
26402
+ */
26403
+ get IsAllowed(): boolean;
26404
+ set IsAllowed(value: boolean);
26405
+ /**
26406
+ * * Field Name: MaxSizeBytes
26407
+ * * Display Name: Max Size (Bytes)
26408
+ * * SQL Data Type: int
26409
+ * * Description: Agent-specific maximum size in bytes. Overrides model and system defaults. Must be less than or equal to model limit.
26410
+ */
26411
+ get MaxSizeBytes(): number | null;
26412
+ set MaxSizeBytes(value: number | null);
26413
+ /**
26414
+ * * Field Name: MaxCountPerMessage
26415
+ * * Display Name: Max Count Per Message
26416
+ * * SQL Data Type: int
26417
+ * * Description: Agent-specific maximum count per message. Overrides model and system defaults. Must be less than or equal to model limit.
26418
+ */
26419
+ get MaxCountPerMessage(): number | null;
26420
+ set MaxCountPerMessage(value: number | null);
26421
+ /**
26422
+ * * Field Name: __mj_CreatedAt
26423
+ * * Display Name: Created At
26424
+ * * SQL Data Type: datetimeoffset
26425
+ * * Default Value: getutcdate()
26426
+ */
26427
+ get __mj_CreatedAt(): Date;
26428
+ /**
26429
+ * * Field Name: __mj_UpdatedAt
26430
+ * * Display Name: Updated At
26431
+ * * SQL Data Type: datetimeoffset
26432
+ * * Default Value: getutcdate()
26433
+ */
26434
+ get __mj_UpdatedAt(): Date;
26435
+ /**
26436
+ * * Field Name: Agent
26437
+ * * Display Name: Agent
26438
+ * * SQL Data Type: nvarchar(255)
26439
+ */
26440
+ get Agent(): string | null;
26441
+ /**
26442
+ * * Field Name: Modality
26443
+ * * Display Name: Modality
26444
+ * * SQL Data Type: nvarchar(50)
26445
+ */
26446
+ get Modality(): string;
26447
+ }
25879
26448
  /**
25880
26449
  * MJ: AI Agent Permissions - strongly typed entity sub-class
25881
26450
  * * Schema: __mj
@@ -27604,6 +28173,122 @@ export declare class AIAgentTypeEntity extends BaseEntity<AIAgentTypeEntityType>
27604
28173
  */
27605
28174
  get SystemPrompt(): string | null;
27606
28175
  }
28176
+ /**
28177
+ * MJ: AI Architectures - strongly typed entity sub-class
28178
+ * * Schema: __mj
28179
+ * * Base Table: AIArchitecture
28180
+ * * Base View: vwAIArchitectures
28181
+ * * @description Master table of AI model architectures (Transformer, Diffusion, MoE, etc.) for model catalog enrichment and eval reporting.
28182
+ * * Primary Key: ID
28183
+ * @extends {BaseEntity}
28184
+ * @class
28185
+ * @public
28186
+ */
28187
+ export declare class AIArchitectureEntity extends BaseEntity<AIArchitectureEntityType> {
28188
+ /**
28189
+ * Loads the MJ: AI Architectures record from the database
28190
+ * @param ID: string - primary key value to load the MJ: AI Architectures record.
28191
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
28192
+ * @returns {Promise<boolean>} - true if successful, false otherwise
28193
+ * @public
28194
+ * @async
28195
+ * @memberof AIArchitectureEntity
28196
+ * @method
28197
+ * @override
28198
+ */
28199
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
28200
+ /**
28201
+ * * Field Name: ID
28202
+ * * Display Name: ID
28203
+ * * SQL Data Type: uniqueidentifier
28204
+ * * Default Value: newsequentialid()
28205
+ */
28206
+ get ID(): string;
28207
+ set ID(value: string);
28208
+ /**
28209
+ * * Field Name: Name
28210
+ * * Display Name: Architecture Name
28211
+ * * SQL Data Type: nvarchar(100)
28212
+ */
28213
+ get Name(): string;
28214
+ set Name(value: string);
28215
+ /**
28216
+ * * Field Name: Description
28217
+ * * Display Name: Description
28218
+ * * SQL Data Type: nvarchar(MAX)
28219
+ */
28220
+ get Description(): string | null;
28221
+ set Description(value: string | null);
28222
+ /**
28223
+ * * Field Name: Category
28224
+ * * Display Name: Category
28225
+ * * SQL Data Type: nvarchar(50)
28226
+ * * Value List Type: List
28227
+ * * Possible Values
28228
+ * * Core
28229
+ * * Hybrid
28230
+ * * Optimization
28231
+ * * Specialized
28232
+ */
28233
+ get Category(): 'Core' | 'Hybrid' | 'Optimization' | 'Specialized';
28234
+ set Category(value: 'Core' | 'Hybrid' | 'Optimization' | 'Specialized');
28235
+ /**
28236
+ * * Field Name: ParentArchitectureID
28237
+ * * Display Name: Parent Architecture ID
28238
+ * * SQL Data Type: uniqueidentifier
28239
+ * * Related Entity/Foreign Key: MJ: AI Architectures (vwAIArchitectures.ID)
28240
+ * * Description: Hierarchical relationship to parent architecture. Used for variants like Sparse Transformer being a child of Transformer.
28241
+ */
28242
+ get ParentArchitectureID(): string | null;
28243
+ set ParentArchitectureID(value: string | null);
28244
+ /**
28245
+ * * Field Name: WikipediaURL
28246
+ * * Display Name: Wikipedia URL
28247
+ * * SQL Data Type: nvarchar(500)
28248
+ */
28249
+ get WikipediaURL(): string | null;
28250
+ set WikipediaURL(value: string | null);
28251
+ /**
28252
+ * * Field Name: YearIntroduced
28253
+ * * Display Name: Year Introduced
28254
+ * * SQL Data Type: int
28255
+ */
28256
+ get YearIntroduced(): number | null;
28257
+ set YearIntroduced(value: number | null);
28258
+ /**
28259
+ * * Field Name: KeyPaper
28260
+ * * Display Name: Key Paper
28261
+ * * SQL Data Type: nvarchar(500)
28262
+ */
28263
+ get KeyPaper(): string | null;
28264
+ set KeyPaper(value: string | null);
28265
+ /**
28266
+ * * Field Name: __mj_CreatedAt
28267
+ * * Display Name: Created At
28268
+ * * SQL Data Type: datetimeoffset
28269
+ * * Default Value: getutcdate()
28270
+ */
28271
+ get __mj_CreatedAt(): Date;
28272
+ /**
28273
+ * * Field Name: __mj_UpdatedAt
28274
+ * * Display Name: Updated At
28275
+ * * SQL Data Type: datetimeoffset
28276
+ * * Default Value: getutcdate()
28277
+ */
28278
+ get __mj_UpdatedAt(): Date;
28279
+ /**
28280
+ * * Field Name: ParentArchitecture
28281
+ * * Display Name: Parent Architecture
28282
+ * * SQL Data Type: nvarchar(100)
28283
+ */
28284
+ get ParentArchitecture(): string | null;
28285
+ /**
28286
+ * * Field Name: RootParentArchitectureID
28287
+ * * Display Name: Root Parent Architecture ID
28288
+ * * SQL Data Type: uniqueidentifier
28289
+ */
28290
+ get RootParentArchitectureID(): string | null;
28291
+ }
27607
28292
  /**
27608
28293
  * MJ: AI Configuration Params - strongly typed entity sub-class
27609
28294
  * * Schema: __mj
@@ -27779,7 +28464,7 @@ export declare class AIConfigurationEntity extends BaseEntity<AIConfigurationEnt
27779
28464
  set Status(value: 'Active' | 'Deprecated' | 'Inactive' | 'Preview');
27780
28465
  /**
27781
28466
  * * Field Name: DefaultPromptForContextCompressionID
27782
- * * Display Name: Default Prompt For Context Compression ID
28467
+ * * Display Name: Default Prompt For Context Compression
27783
28468
  * * SQL Data Type: uniqueidentifier
27784
28469
  * * Related Entity/Foreign Key: AI Prompts (vwAIPrompts.ID)
27785
28470
  * * Description: Default prompt to use for context compression when not specified at the agent level.
@@ -27788,7 +28473,7 @@ export declare class AIConfigurationEntity extends BaseEntity<AIConfigurationEnt
27788
28473
  set DefaultPromptForContextCompressionID(value: string | null);
27789
28474
  /**
27790
28475
  * * Field Name: DefaultPromptForContextSummarizationID
27791
- * * Display Name: Default Prompt For Context Summarization ID
28476
+ * * Display Name: Default Prompt For Context Summarization
27792
28477
  * * SQL Data Type: uniqueidentifier
27793
28478
  * * Related Entity/Foreign Key: AI Prompts (vwAIPrompts.ID)
27794
28479
  * * Description: Default prompt to use for context summarization when not specified at the agent level.
@@ -27810,6 +28495,32 @@ export declare class AIConfigurationEntity extends BaseEntity<AIConfigurationEnt
27810
28495
  */
27811
28496
  get __mj_UpdatedAt(): Date;
27812
28497
  /**
28498
+ * * Field Name: DefaultStorageProviderID
28499
+ * * Display Name: Default Storage Provider
28500
+ * * SQL Data Type: uniqueidentifier
28501
+ * * Related Entity/Foreign Key: File Storage Providers (vwFileStorageProviders.ID)
28502
+ * * Description: Default file storage provider for agent attachments. Used when an agent does not specify its own AttachmentStorageProviderID.
28503
+ */
28504
+ get DefaultStorageProviderID(): string | null;
28505
+ set DefaultStorageProviderID(value: string | null);
28506
+ /**
28507
+ * * Field Name: DefaultStorageRootPath
28508
+ * * Display Name: Default Storage Root Path
28509
+ * * SQL Data Type: nvarchar(500)
28510
+ * * Description: Default root path within the storage provider for agent attachments. Used when an agent does not specify its own AttachmentRootPath.
28511
+ */
28512
+ get DefaultStorageRootPath(): string | null;
28513
+ set DefaultStorageRootPath(value: string | null);
28514
+ /**
28515
+ * * Field Name: ParentID
28516
+ * * Display Name: Parent ID
28517
+ * * SQL Data Type: uniqueidentifier
28518
+ * * Related Entity/Foreign Key: MJ: AI Configurations (vwAIConfigurations.ID)
28519
+ * * Description: Optional reference to a parent configuration. When set, this configuration inherits prompt-model mappings and parameters from its parent. Child configurations can override specific settings while inheriting defaults from the parent chain. Supports N-level deep inheritance.
28520
+ */
28521
+ get ParentID(): string | null;
28522
+ set ParentID(value: string | null);
28523
+ /**
27813
28524
  * * Field Name: DefaultPromptForContextCompression
27814
28525
  * * Display Name: Default Prompt For Context Compression
27815
28526
  * * SQL Data Type: nvarchar(255)
@@ -27821,6 +28532,24 @@ export declare class AIConfigurationEntity extends BaseEntity<AIConfigurationEnt
27821
28532
  * * SQL Data Type: nvarchar(255)
27822
28533
  */
27823
28534
  get DefaultPromptForContextSummarization(): string | null;
28535
+ /**
28536
+ * * Field Name: DefaultStorageProvider
28537
+ * * Display Name: Default Storage Provider
28538
+ * * SQL Data Type: nvarchar(50)
28539
+ */
28540
+ get DefaultStorageProvider(): string | null;
28541
+ /**
28542
+ * * Field Name: Parent
28543
+ * * Display Name: Parent
28544
+ * * SQL Data Type: nvarchar(100)
28545
+ */
28546
+ get Parent(): string | null;
28547
+ /**
28548
+ * * Field Name: RootParentID
28549
+ * * Display Name: Root Parent ID
28550
+ * * SQL Data Type: uniqueidentifier
28551
+ */
28552
+ get RootParentID(): string | null;
27824
28553
  }
27825
28554
  /**
27826
28555
  * MJ: AI Credential Bindings - strongly typed entity sub-class
@@ -27975,6 +28704,254 @@ export declare class AICredentialBindingEntity extends BaseEntity<AICredentialBi
27975
28704
  */
27976
28705
  get AIPromptModel(): string | null;
27977
28706
  }
28707
+ /**
28708
+ * MJ: AI Modalities - strongly typed entity sub-class
28709
+ * * Schema: __mj
28710
+ * * Base Table: AIModality
28711
+ * * Base View: vwAIModalities
28712
+ * * @description Master list of AI content modalities (Text, Image, Audio, Video, etc.) that models can accept as input or produce as output. New modalities can be added via INSERT without schema changes.
28713
+ * * Primary Key: ID
28714
+ * @extends {BaseEntity}
28715
+ * @class
28716
+ * @public
28717
+ */
28718
+ export declare class AIModalityEntity extends BaseEntity<AIModalityEntityType> {
28719
+ /**
28720
+ * Loads the MJ: AI Modalities record from the database
28721
+ * @param ID: string - primary key value to load the MJ: AI Modalities record.
28722
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
28723
+ * @returns {Promise<boolean>} - true if successful, false otherwise
28724
+ * @public
28725
+ * @async
28726
+ * @memberof AIModalityEntity
28727
+ * @method
28728
+ * @override
28729
+ */
28730
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
28731
+ /**
28732
+ * * Field Name: ID
28733
+ * * Display Name: ID
28734
+ * * SQL Data Type: uniqueidentifier
28735
+ * * Default Value: newsequentialid()
28736
+ */
28737
+ get ID(): string;
28738
+ set ID(value: string);
28739
+ /**
28740
+ * * Field Name: Name
28741
+ * * Display Name: Name
28742
+ * * SQL Data Type: nvarchar(50)
28743
+ * * Description: Display name of the modality (e.g., Text, Image, Audio, Video, File, Embedding).
28744
+ */
28745
+ get Name(): string;
28746
+ set Name(value: string);
28747
+ /**
28748
+ * * Field Name: Description
28749
+ * * Display Name: Description
28750
+ * * SQL Data Type: nvarchar(500)
28751
+ * * Description: Detailed description of this modality and its use cases.
28752
+ */
28753
+ get Description(): string | null;
28754
+ set Description(value: string | null);
28755
+ /**
28756
+ * * Field Name: ContentBlockType
28757
+ * * Display Name: Content Block Type
28758
+ * * SQL Data Type: nvarchar(50)
28759
+ * * Value List Type: List
28760
+ * * Possible Values
28761
+ * * audio_url
28762
+ * * embedding
28763
+ * * file_url
28764
+ * * image_url
28765
+ * * text
28766
+ * * video_url
28767
+ * * Description: Maps to ChatMessageContentBlock.type values: text, image_url, video_url, audio_url, file_url, embedding. Must match the TypeScript type definition.
28768
+ */
28769
+ get ContentBlockType(): 'audio_url' | 'embedding' | 'file_url' | 'image_url' | 'text' | 'video_url';
28770
+ set ContentBlockType(value: 'audio_url' | 'embedding' | 'file_url' | 'image_url' | 'text' | 'video_url');
28771
+ /**
28772
+ * * Field Name: MIMETypePattern
28773
+ * * Display Name: MIME Type Pattern
28774
+ * * SQL Data Type: nvarchar(100)
28775
+ * * Description: MIME type pattern for this modality (e.g., image/*, audio/*, video/*, text/*, application/*). Used for file type validation.
28776
+ */
28777
+ get MIMETypePattern(): string | null;
28778
+ set MIMETypePattern(value: string | null);
28779
+ /**
28780
+ * * Field Name: Type
28781
+ * * Display Name: Type
28782
+ * * SQL Data Type: nvarchar(50)
28783
+ * * Default Value: Content
28784
+ * * Value List Type: List
28785
+ * * Possible Values
28786
+ * * Binary
28787
+ * * Content
28788
+ * * Structured
28789
+ * * Description: Classification type: Content (human-readable text), Structured (JSON/embeddings), Binary (media files like images, audio, video).
28790
+ */
28791
+ get Type(): 'Binary' | 'Content' | 'Structured';
28792
+ set Type(value: 'Binary' | 'Content' | 'Structured');
28793
+ /**
28794
+ * * Field Name: DefaultMaxSizeBytes
28795
+ * * Display Name: Default Max Size (Bytes)
28796
+ * * SQL Data Type: int
28797
+ * * Description: System-wide default maximum size in bytes for this modality. Can be overridden at model or agent level. NULL means no size limit.
28798
+ */
28799
+ get DefaultMaxSizeBytes(): number | null;
28800
+ set DefaultMaxSizeBytes(value: number | null);
28801
+ /**
28802
+ * * Field Name: DefaultMaxCountPerMessage
28803
+ * * Display Name: Default Max Count Per Message
28804
+ * * SQL Data Type: int
28805
+ * * Description: System-wide default maximum count per message for this modality. Can be overridden at model or agent level. NULL means no count limit.
28806
+ */
28807
+ get DefaultMaxCountPerMessage(): number | null;
28808
+ set DefaultMaxCountPerMessage(value: number | null);
28809
+ /**
28810
+ * * Field Name: DisplayOrder
28811
+ * * Display Name: Display Order
28812
+ * * SQL Data Type: int
28813
+ * * Default Value: 0
28814
+ * * Description: Display order for UI presentation. Lower numbers appear first.
28815
+ */
28816
+ get DisplayOrder(): number;
28817
+ set DisplayOrder(value: number);
28818
+ /**
28819
+ * * Field Name: __mj_CreatedAt
28820
+ * * Display Name: Created At
28821
+ * * SQL Data Type: datetimeoffset
28822
+ * * Default Value: getutcdate()
28823
+ */
28824
+ get __mj_CreatedAt(): Date;
28825
+ /**
28826
+ * * Field Name: __mj_UpdatedAt
28827
+ * * Display Name: Updated At
28828
+ * * SQL Data Type: datetimeoffset
28829
+ * * Default Value: getutcdate()
28830
+ */
28831
+ get __mj_UpdatedAt(): Date;
28832
+ }
28833
+ /**
28834
+ * MJ: AI Model Architectures - strongly typed entity sub-class
28835
+ * * Schema: __mj
28836
+ * * Base Table: AIModelArchitecture
28837
+ * * Base View: vwAIModelArchitectures
28838
+ * * @description Junction table linking AI models to their underlying architectures. Supports multiple architectures per model with ranking.
28839
+ * * Primary Key: ID
28840
+ * @extends {BaseEntity}
28841
+ * @class
28842
+ * @public
28843
+ */
28844
+ export declare class AIModelArchitectureEntity extends BaseEntity<AIModelArchitectureEntityType> {
28845
+ /**
28846
+ * Loads the MJ: AI Model Architectures record from the database
28847
+ * @param ID: string - primary key value to load the MJ: AI Model Architectures record.
28848
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
28849
+ * @returns {Promise<boolean>} - true if successful, false otherwise
28850
+ * @public
28851
+ * @async
28852
+ * @memberof AIModelArchitectureEntity
28853
+ * @method
28854
+ * @override
28855
+ */
28856
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
28857
+ /**
28858
+ * Validate() method override for MJ: AI Model Architectures entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
28859
+ * * Rank: Rank must be greater than zero, ensuring that every item has a positive ranking value.
28860
+ * * Weight: Weight must be between 0 and 1 when a value is provided; if no weight is entered, it may be left empty.
28861
+ * @public
28862
+ * @method
28863
+ * @override
28864
+ */
28865
+ Validate(): ValidationResult;
28866
+ /**
28867
+ * Rank must be greater than zero, ensuring that every item has a positive ranking value.
28868
+ * @param result - the ValidationResult object to add any errors or warnings to
28869
+ * @public
28870
+ * @method
28871
+ */
28872
+ ValidateRankGreaterThanZero(result: ValidationResult): void;
28873
+ /**
28874
+ * Weight must be between 0 and 1 when a value is provided; if no weight is entered, it may be left empty.
28875
+ * @param result - the ValidationResult object to add any errors or warnings to
28876
+ * @public
28877
+ * @method
28878
+ */
28879
+ ValidateWeightRange(result: ValidationResult): void;
28880
+ /**
28881
+ * * Field Name: ID
28882
+ * * Display Name: ID
28883
+ * * SQL Data Type: uniqueidentifier
28884
+ * * Default Value: newsequentialid()
28885
+ */
28886
+ get ID(): string;
28887
+ set ID(value: string);
28888
+ /**
28889
+ * * Field Name: ModelID
28890
+ * * Display Name: Model
28891
+ * * SQL Data Type: uniqueidentifier
28892
+ * * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
28893
+ */
28894
+ get ModelID(): string;
28895
+ set ModelID(value: string);
28896
+ /**
28897
+ * * Field Name: ArchitectureID
28898
+ * * Display Name: Architecture
28899
+ * * SQL Data Type: uniqueidentifier
28900
+ * * Related Entity/Foreign Key: MJ: AI Architectures (vwAIArchitectures.ID)
28901
+ */
28902
+ get ArchitectureID(): string;
28903
+ set ArchitectureID(value: string);
28904
+ /**
28905
+ * * Field Name: Rank
28906
+ * * Display Name: Rank
28907
+ * * SQL Data Type: int
28908
+ * * Default Value: 1
28909
+ * * Description: Ranking of this architecture for the model. 1=Primary architecture, 2=Secondary, etc. Lower numbers indicate more dominant role.
28910
+ */
28911
+ get Rank(): number;
28912
+ set Rank(value: number);
28913
+ /**
28914
+ * * Field Name: Weight
28915
+ * * Display Name: Weight
28916
+ * * SQL Data Type: decimal(5, 4)
28917
+ * * Description: Optional weight (0.0-1.0) indicating the mix ratio for hybrid architectures. E.g., 0.7 for 70% contribution.
28918
+ */
28919
+ get Weight(): number | null;
28920
+ set Weight(value: number | null);
28921
+ /**
28922
+ * * Field Name: Notes
28923
+ * * Display Name: Notes
28924
+ * * SQL Data Type: nvarchar(500)
28925
+ */
28926
+ get Notes(): string | null;
28927
+ set Notes(value: string | null);
28928
+ /**
28929
+ * * Field Name: __mj_CreatedAt
28930
+ * * Display Name: Created At
28931
+ * * SQL Data Type: datetimeoffset
28932
+ * * Default Value: getutcdate()
28933
+ */
28934
+ get __mj_CreatedAt(): Date;
28935
+ /**
28936
+ * * Field Name: __mj_UpdatedAt
28937
+ * * Display Name: Updated At
28938
+ * * SQL Data Type: datetimeoffset
28939
+ * * Default Value: getutcdate()
28940
+ */
28941
+ get __mj_UpdatedAt(): Date;
28942
+ /**
28943
+ * * Field Name: Model
28944
+ * * Display Name: Model Name
28945
+ * * SQL Data Type: nvarchar(50)
28946
+ */
28947
+ get Model(): string;
28948
+ /**
28949
+ * * Field Name: Architecture
28950
+ * * Display Name: Architecture Name
28951
+ * * SQL Data Type: nvarchar(100)
28952
+ */
28953
+ get Architecture(): string;
28954
+ }
27978
28955
  /**
27979
28956
  * MJ: AI Model Costs - strongly typed entity sub-class
27980
28957
  * * Schema: __mj
@@ -28192,6 +29169,151 @@ export declare class AIModelCostEntity extends BaseEntity<AIModelCostEntityType>
28192
29169
  */
28193
29170
  get UnitType(): string;
28194
29171
  }
29172
+ /**
29173
+ * MJ: AI Model Modalities - strongly typed entity sub-class
29174
+ * * Schema: __mj
29175
+ * * Base Table: AIModelModality
29176
+ * * Base View: vwAIModelModalities
29177
+ * * @description Junction table linking AI models to their supported input and output modalities with model-specific configuration. Used to extend beyond the default modalities inherited from AIModelType.
29178
+ * * Primary Key: ID
29179
+ * @extends {BaseEntity}
29180
+ * @class
29181
+ * @public
29182
+ */
29183
+ export declare class AIModelModalityEntity extends BaseEntity<AIModelModalityEntityType> {
29184
+ /**
29185
+ * Loads the MJ: AI Model Modalities record from the database
29186
+ * @param ID: string - primary key value to load the MJ: AI Model Modalities record.
29187
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
29188
+ * @returns {Promise<boolean>} - true if successful, false otherwise
29189
+ * @public
29190
+ * @async
29191
+ * @memberof AIModelModalityEntity
29192
+ * @method
29193
+ * @override
29194
+ */
29195
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
29196
+ /**
29197
+ * * Field Name: ID
29198
+ * * Display Name: ID
29199
+ * * SQL Data Type: uniqueidentifier
29200
+ * * Default Value: newsequentialid()
29201
+ */
29202
+ get ID(): string;
29203
+ set ID(value: string);
29204
+ /**
29205
+ * * Field Name: ModelID
29206
+ * * Display Name: Model ID
29207
+ * * SQL Data Type: uniqueidentifier
29208
+ * * Related Entity/Foreign Key: AI Models (vwAIModels.ID)
29209
+ */
29210
+ get ModelID(): string;
29211
+ set ModelID(value: string);
29212
+ /**
29213
+ * * Field Name: ModalityID
29214
+ * * Display Name: Modality ID
29215
+ * * SQL Data Type: uniqueidentifier
29216
+ * * Related Entity/Foreign Key: MJ: AI Modalities (vwAIModalities.ID)
29217
+ */
29218
+ get ModalityID(): string;
29219
+ set ModalityID(value: string);
29220
+ /**
29221
+ * * Field Name: Direction
29222
+ * * Display Name: Direction
29223
+ * * SQL Data Type: nvarchar(10)
29224
+ * * Value List Type: List
29225
+ * * Possible Values
29226
+ * * Input
29227
+ * * Output
29228
+ * * Description: Whether this is an Input or Output modality for the model.
29229
+ */
29230
+ get Direction(): 'Input' | 'Output';
29231
+ set Direction(value: 'Input' | 'Output');
29232
+ /**
29233
+ * * Field Name: IsSupported
29234
+ * * Display Name: Is Supported
29235
+ * * SQL Data Type: bit
29236
+ * * Default Value: 1
29237
+ * * Description: Whether this modality is supported. Can be set to FALSE to explicitly disable an inherited modality.
29238
+ */
29239
+ get IsSupported(): boolean;
29240
+ set IsSupported(value: boolean);
29241
+ /**
29242
+ * * Field Name: IsRequired
29243
+ * * Display Name: Is Required
29244
+ * * SQL Data Type: bit
29245
+ * * Default Value: 0
29246
+ * * Description: For input modalities: whether this modality is required (e.g., text is usually required for LLMs). For outputs: not typically applicable.
29247
+ */
29248
+ get IsRequired(): boolean;
29249
+ set IsRequired(value: boolean);
29250
+ /**
29251
+ * * Field Name: SupportedFormats
29252
+ * * Display Name: Supported Formats
29253
+ * * SQL Data Type: nvarchar(500)
29254
+ * * Description: Comma-separated list of supported file formats/extensions (e.g., png,jpg,webp,gif for images or mp3,wav,m4a for audio).
29255
+ */
29256
+ get SupportedFormats(): string | null;
29257
+ set SupportedFormats(value: string | null);
29258
+ /**
29259
+ * * Field Name: MaxSizeBytes
29260
+ * * Display Name: Maximum Size (Bytes)
29261
+ * * SQL Data Type: int
29262
+ * * Description: Model-specific maximum size in bytes. Overrides AIModality.DefaultMaxSizeBytes. NULL means use system default.
29263
+ */
29264
+ get MaxSizeBytes(): number | null;
29265
+ set MaxSizeBytes(value: number | null);
29266
+ /**
29267
+ * * Field Name: MaxCountPerMessage
29268
+ * * Display Name: Maximum Count per Message
29269
+ * * SQL Data Type: int
29270
+ * * Description: Model-specific maximum count per message. Overrides AIModality.DefaultMaxCountPerMessage. NULL means use system default.
29271
+ */
29272
+ get MaxCountPerMessage(): number | null;
29273
+ set MaxCountPerMessage(value: number | null);
29274
+ /**
29275
+ * * Field Name: MaxDimension
29276
+ * * Display Name: Maximum Dimension (px)
29277
+ * * SQL Data Type: int
29278
+ * * Description: For image/video modalities: maximum dimension (width or height) in pixels supported by this model.
29279
+ */
29280
+ get MaxDimension(): number | null;
29281
+ set MaxDimension(value: number | null);
29282
+ /**
29283
+ * * Field Name: Comments
29284
+ * * Display Name: Comments
29285
+ * * SQL Data Type: nvarchar(MAX)
29286
+ * * Description: Additional notes or documentation about this model-modality configuration.
29287
+ */
29288
+ get Comments(): string | null;
29289
+ set Comments(value: string | null);
29290
+ /**
29291
+ * * Field Name: __mj_CreatedAt
29292
+ * * Display Name: Created At
29293
+ * * SQL Data Type: datetimeoffset
29294
+ * * Default Value: getutcdate()
29295
+ */
29296
+ get __mj_CreatedAt(): Date;
29297
+ /**
29298
+ * * Field Name: __mj_UpdatedAt
29299
+ * * Display Name: Updated At
29300
+ * * SQL Data Type: datetimeoffset
29301
+ * * Default Value: getutcdate()
29302
+ */
29303
+ get __mj_UpdatedAt(): Date;
29304
+ /**
29305
+ * * Field Name: Model
29306
+ * * Display Name: Model
29307
+ * * SQL Data Type: nvarchar(50)
29308
+ */
29309
+ get Model(): string;
29310
+ /**
29311
+ * * Field Name: Modality
29312
+ * * Display Name: Modality
29313
+ * * SQL Data Type: nvarchar(50)
29314
+ */
29315
+ get Modality(): string;
29316
+ }
28195
29317
  /**
28196
29318
  * MJ: AI Model Price Types - strongly typed entity sub-class
28197
29319
  * * Schema: __mj
@@ -32103,6 +33225,185 @@ export declare class ConversationDetailArtifactEntity extends BaseEntity<Convers
32103
33225
  */
32104
33226
  get ArtifactVersion(): string | null;
32105
33227
  }
33228
+ /**
33229
+ * MJ: Conversation Detail Attachments - strongly typed entity sub-class
33230
+ * * Schema: __mj
33231
+ * * Base Table: ConversationDetailAttachment
33232
+ * * Base View: vwConversationDetailAttachments
33233
+ * * @description Stores attachments (images, videos, audio, documents) for conversation messages. Supports both inline base64 storage for small files and reference to MJStorage for large files.
33234
+ * * Primary Key: ID
33235
+ * @extends {BaseEntity}
33236
+ * @class
33237
+ * @public
33238
+ */
33239
+ export declare class ConversationDetailAttachmentEntity extends BaseEntity<ConversationDetailAttachmentEntityType> {
33240
+ /**
33241
+ * Loads the MJ: Conversation Detail Attachments record from the database
33242
+ * @param ID: string - primary key value to load the MJ: Conversation Detail Attachments record.
33243
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
33244
+ * @returns {Promise<boolean>} - true if successful, false otherwise
33245
+ * @public
33246
+ * @async
33247
+ * @memberof ConversationDetailAttachmentEntity
33248
+ * @method
33249
+ * @override
33250
+ */
33251
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
33252
+ /**
33253
+ * Validate() method override for MJ: Conversation Detail Attachments entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
33254
+ * * Table-Level: Each record must include content either directly (InlineData) or by reference (FileID); they cannot both be empty.
33255
+ * @public
33256
+ * @method
33257
+ * @override
33258
+ */
33259
+ Validate(): ValidationResult;
33260
+ /**
33261
+ * Each record must include content either directly (InlineData) or by reference (FileID); they cannot both be empty.
33262
+ * @param result - the ValidationResult object to add any errors or warnings to
33263
+ * @public
33264
+ * @method
33265
+ */
33266
+ ValidateInlineDataOrFileIDPresence(result: ValidationResult): void;
33267
+ /**
33268
+ * * Field Name: ID
33269
+ * * Display Name: ID
33270
+ * * SQL Data Type: uniqueidentifier
33271
+ * * Default Value: newsequentialid()
33272
+ */
33273
+ get ID(): string;
33274
+ set ID(value: string);
33275
+ /**
33276
+ * * Field Name: ConversationDetailID
33277
+ * * Display Name: Conversation Detail
33278
+ * * SQL Data Type: uniqueidentifier
33279
+ * * Related Entity/Foreign Key: Conversation Details (vwConversationDetails.ID)
33280
+ */
33281
+ get ConversationDetailID(): string;
33282
+ set ConversationDetailID(value: string);
33283
+ /**
33284
+ * * Field Name: ModalityID
33285
+ * * Display Name: Modality
33286
+ * * SQL Data Type: uniqueidentifier
33287
+ * * Related Entity/Foreign Key: MJ: AI Modalities (vwAIModalities.ID)
33288
+ * * Description: The modality type of this attachment (Image, Audio, Video, File, etc.). References the AIModality table.
33289
+ */
33290
+ get ModalityID(): string;
33291
+ set ModalityID(value: string);
33292
+ /**
33293
+ * * Field Name: MimeType
33294
+ * * Display Name: MIME Type
33295
+ * * SQL Data Type: nvarchar(100)
33296
+ * * Description: MIME type of the attachment (e.g., image/png, video/mp4, audio/mp3).
33297
+ */
33298
+ get MimeType(): string;
33299
+ set MimeType(value: string);
33300
+ /**
33301
+ * * Field Name: FileName
33302
+ * * Display Name: File Name
33303
+ * * SQL Data Type: nvarchar(4000)
33304
+ * * Description: Original filename of the attachment. Supports long cloud storage paths up to 4000 characters.
33305
+ */
33306
+ get FileName(): string | null;
33307
+ set FileName(value: string | null);
33308
+ /**
33309
+ * * Field Name: FileSizeBytes
33310
+ * * Display Name: File Size (bytes)
33311
+ * * SQL Data Type: int
33312
+ * * Description: Size of the attachment in bytes.
33313
+ */
33314
+ get FileSizeBytes(): number;
33315
+ set FileSizeBytes(value: number);
33316
+ /**
33317
+ * * Field Name: Width
33318
+ * * Display Name: Width (px)
33319
+ * * SQL Data Type: int
33320
+ * * Description: Width in pixels for images and videos.
33321
+ */
33322
+ get Width(): number | null;
33323
+ set Width(value: number | null);
33324
+ /**
33325
+ * * Field Name: Height
33326
+ * * Display Name: Height (px)
33327
+ * * SQL Data Type: int
33328
+ * * Description: Height in pixels for images and videos.
33329
+ */
33330
+ get Height(): number | null;
33331
+ set Height(value: number | null);
33332
+ /**
33333
+ * * Field Name: DurationSeconds
33334
+ * * Display Name: Duration (seconds)
33335
+ * * SQL Data Type: int
33336
+ * * Description: Duration in seconds for audio and video files.
33337
+ */
33338
+ get DurationSeconds(): number | null;
33339
+ set DurationSeconds(value: number | null);
33340
+ /**
33341
+ * * Field Name: InlineData
33342
+ * * Display Name: Inline Data (Base64)
33343
+ * * SQL Data Type: nvarchar(MAX)
33344
+ * * Description: Base64-encoded file data for small attachments stored inline. Mutually exclusive with FileID - exactly one must be populated.
33345
+ */
33346
+ get InlineData(): string | null;
33347
+ set InlineData(value: string | null);
33348
+ /**
33349
+ * * Field Name: FileID
33350
+ * * Display Name: File
33351
+ * * SQL Data Type: uniqueidentifier
33352
+ * * Related Entity/Foreign Key: Files (vwFiles.ID)
33353
+ * * Description: Reference to File entity for large attachments stored in MJStorage. Mutually exclusive with InlineData - exactly one must be populated.
33354
+ */
33355
+ get FileID(): string | null;
33356
+ set FileID(value: string | null);
33357
+ /**
33358
+ * * Field Name: DisplayOrder
33359
+ * * Display Name: Display Order
33360
+ * * SQL Data Type: int
33361
+ * * Default Value: 0
33362
+ * * Description: Display order for multiple attachments in a message. Lower numbers appear first.
33363
+ */
33364
+ get DisplayOrder(): number;
33365
+ set DisplayOrder(value: number);
33366
+ /**
33367
+ * * Field Name: ThumbnailBase64
33368
+ * * Display Name: Thumbnail (Base64)
33369
+ * * SQL Data Type: nvarchar(MAX)
33370
+ * * Description: Base64-encoded thumbnail image for quick preview display. Max 200px on longest side.
33371
+ */
33372
+ get ThumbnailBase64(): string | null;
33373
+ set ThumbnailBase64(value: string | null);
33374
+ /**
33375
+ * * Field Name: __mj_CreatedAt
33376
+ * * Display Name: Created At
33377
+ * * SQL Data Type: datetimeoffset
33378
+ * * Default Value: getutcdate()
33379
+ */
33380
+ get __mj_CreatedAt(): Date;
33381
+ /**
33382
+ * * Field Name: __mj_UpdatedAt
33383
+ * * Display Name: Updated At
33384
+ * * SQL Data Type: datetimeoffset
33385
+ * * Default Value: getutcdate()
33386
+ */
33387
+ get __mj_UpdatedAt(): Date;
33388
+ /**
33389
+ * * Field Name: ConversationDetail
33390
+ * * Display Name: Conversation Detail Text
33391
+ * * SQL Data Type: nvarchar(MAX)
33392
+ */
33393
+ get ConversationDetail(): string;
33394
+ /**
33395
+ * * Field Name: Modality
33396
+ * * Display Name: Modality Name
33397
+ * * SQL Data Type: nvarchar(50)
33398
+ */
33399
+ get Modality(): string;
33400
+ /**
33401
+ * * Field Name: File
33402
+ * * Display Name: File Reference
33403
+ * * SQL Data Type: nvarchar(500)
33404
+ */
33405
+ get File(): string | null;
33406
+ }
32106
33407
  /**
32107
33408
  * MJ: Conversation Detail Ratings - strongly typed entity sub-class
32108
33409
  * * Schema: __mj
@@ -35138,7 +36439,7 @@ export declare class TestRunFeedbackEntity extends BaseEntity<TestRunFeedbackEnt
35138
36439
  get TestRun(): string;
35139
36440
  /**
35140
36441
  * * Field Name: ReviewerUser
35141
- * * Display Name: Reviewer Name
36442
+ * * Display Name: Reviewer User
35142
36443
  * * SQL Data Type: nvarchar(100)
35143
36444
  */
35144
36445
  get ReviewerUser(): string;
@@ -35195,7 +36496,7 @@ export declare class TestRunEntity extends BaseEntity<TestRunEntityType> {
35195
36496
  set TestSuiteRunID(value: string | null);
35196
36497
  /**
35197
36498
  * * Field Name: RunByUserID
35198
- * * Display Name: Run By User ID
36499
+ * * Display Name: Run By User
35199
36500
  * * SQL Data Type: uniqueidentifier
35200
36501
  * * Related Entity/Foreign Key: Users (vwUsers.ID)
35201
36502
  * * Description: Foreign Key - The user who triggered the test run (could be system user for automated runs)
@@ -35214,13 +36515,13 @@ export declare class TestRunEntity extends BaseEntity<TestRunEntityType> {
35214
36515
  * * Field Name: TargetType
35215
36516
  * * Display Name: Target Type
35216
36517
  * * SQL Data Type: nvarchar(100)
35217
- * * Description: Type of the target being tested (e.g., "Agent Run", "Workflow Run", "Code Generation"). Polymorphic discriminator for TargetLogID.
36518
+ * * Description: Optional sub-category or variant label for the test target. Use this to distinguish between different test scenarios within the same entity type (e.g., "Summarization", "Classification", "Code Review" for AI Agent tests). The entity type itself should be specified via TargetLogEntityID.
35218
36519
  */
35219
36520
  get TargetType(): string | null;
35220
36521
  set TargetType(value: string | null);
35221
36522
  /**
35222
36523
  * * Field Name: TargetLogID
35223
- * * Display Name: Target Log ID
36524
+ * * Display Name: Target Log
35224
36525
  * * SQL Data Type: uniqueidentifier
35225
36526
  * * Description: ID of the target execution log (e.g., AIAgentRun.ID, WorkflowRun.ID). This is a soft FK - the actual entity depends on TargetType. The target entity should have a reverse FK back to TestRun for bidirectional navigation.
35226
36527
  */
@@ -35239,10 +36540,11 @@ export declare class TestRunEntity extends BaseEntity<TestRunEntityType> {
35239
36540
  * * Pending
35240
36541
  * * Running
35241
36542
  * * Skipped
35242
- * * Description: Current status of the test run: Pending (queued), Running (in progress), Passed (all checks passed), Failed (at least one check failed), Skipped (not executed), Error (execution error before validation)
36543
+ * * Timeout
36544
+ * * Description: Current status of the test run: Pending (queued), Running (in progress), Passed (all checks passed), Failed (at least one check failed), Skipped (not executed), Error (execution error before validation), Timeout (execution exceeded time limit and was cancelled)
35243
36545
  */
35244
- get Status(): 'Error' | 'Failed' | 'Passed' | 'Pending' | 'Running' | 'Skipped';
35245
- set Status(value: 'Error' | 'Failed' | 'Passed' | 'Pending' | 'Running' | 'Skipped');
36546
+ get Status(): 'Error' | 'Failed' | 'Passed' | 'Pending' | 'Running' | 'Skipped' | 'Timeout';
36547
+ set Status(value: 'Error' | 'Failed' | 'Passed' | 'Pending' | 'Running' | 'Skipped' | 'Timeout');
35246
36548
  /**
35247
36549
  * * Field Name: StartedAt
35248
36550
  * * Display Name: Started At
@@ -35261,7 +36563,7 @@ export declare class TestRunEntity extends BaseEntity<TestRunEntityType> {
35261
36563
  set CompletedAt(value: Date | null);
35262
36564
  /**
35263
36565
  * * Field Name: DurationSeconds
35264
- * * Display Name: Duration (seconds)
36566
+ * * Display Name: Duration Seconds
35265
36567
  * * SQL Data Type: decimal(10, 3)
35266
36568
  * * Description: Execution time in seconds for this test
35267
36569
  */
@@ -35325,7 +36627,7 @@ export declare class TestRunEntity extends BaseEntity<TestRunEntityType> {
35325
36627
  set Score(value: number | null);
35326
36628
  /**
35327
36629
  * * Field Name: CostUSD
35328
- * * Display Name: Cost (USD)
36630
+ * * Display Name: Cost USD
35329
36631
  * * SQL Data Type: decimal(10, 6)
35330
36632
  * * Description: Cost in USD for running this test (e.g., LLM token costs, compute resources)
35331
36633
  */
@@ -35362,6 +36664,71 @@ export declare class TestRunEntity extends BaseEntity<TestRunEntityType> {
35362
36664
  */
35363
36665
  get __mj_UpdatedAt(): Date;
35364
36666
  /**
36667
+ * * Field Name: Log
36668
+ * * Display Name: Log
36669
+ * * SQL Data Type: nvarchar(MAX)
36670
+ * * Description: Detailed execution log capturing status messages, diagnostic output, and driver-specific information streamed during test execution. Format is timestamped log lines.
36671
+ */
36672
+ get Log(): string | null;
36673
+ set Log(value: string | null);
36674
+ /**
36675
+ * * Field Name: Tags
36676
+ * * Display Name: Tags
36677
+ * * SQL Data Type: nvarchar(MAX)
36678
+ * * Description: JSON array of user-assigned tags/labels for this test run. Used for categorization, filtering, and comparing runs with different configurations. Inherits from parent suite run tags if not explicitly set.
36679
+ */
36680
+ get Tags(): string | null;
36681
+ set Tags(value: string | null);
36682
+ /**
36683
+ * * Field Name: MachineName
36684
+ * * Display Name: Machine Name
36685
+ * * SQL Data Type: nvarchar(255)
36686
+ * * Description: Hostname of the machine that executed this test. Used for identifying the execution environment and debugging infrastructure-specific issues.
36687
+ */
36688
+ get MachineName(): string | null;
36689
+ set MachineName(value: string | null);
36690
+ /**
36691
+ * * Field Name: MachineID
36692
+ * * Display Name: Machine ID
36693
+ * * SQL Data Type: nvarchar(255)
36694
+ * * Description: Unique machine identifier (typically MAC address) for the execution host. Enables deduplication and tracking of test execution across different machines.
36695
+ */
36696
+ get MachineID(): string | null;
36697
+ set MachineID(value: string | null);
36698
+ /**
36699
+ * * Field Name: RunByUserName
36700
+ * * Display Name: Run By User Name
36701
+ * * SQL Data Type: nvarchar(255)
36702
+ * * Description: Denormalized user name who ran the test. Stored separately from RunByUserID to enable cross-server aggregation where user IDs differ but names remain consistent.
36703
+ */
36704
+ get RunByUserName(): string | null;
36705
+ set RunByUserName(value: string | null);
36706
+ /**
36707
+ * * Field Name: RunByUserEmail
36708
+ * * Display Name: Run By User Email
36709
+ * * SQL Data Type: nvarchar(255)
36710
+ * * Description: Denormalized email address of the user who ran the test. Primary identifier for cross-server aggregation since email addresses are unique across MemberJunction instances.
36711
+ */
36712
+ get RunByUserEmail(): string | null;
36713
+ set RunByUserEmail(value: string | null);
36714
+ /**
36715
+ * * Field Name: RunContextDetails
36716
+ * * Display Name: Run Context Details
36717
+ * * SQL Data Type: nvarchar(MAX)
36718
+ * * Description: JSON object containing extensible execution context: osType, osVersion, nodeVersion, timezone, locale, ipAddress, and CI/CD metadata (ciProvider, pipelineId, buildNumber, branch, prNumber). Allows detailed environment tracking without schema changes.
36719
+ */
36720
+ get RunContextDetails(): string | null;
36721
+ set RunContextDetails(value: string | null);
36722
+ /**
36723
+ * * Field Name: TargetLogEntityID
36724
+ * * Display Name: Target Log Entity ID
36725
+ * * SQL Data Type: uniqueidentifier
36726
+ * * Related Entity/Foreign Key: Entities (vwEntities.ID)
36727
+ * * Description: Foreign key to Entity table identifying the type of entity referenced by TargetLogID. When populated, TargetLogID is a record ID in this entity. Used for linking test runs to AI Agent Runs, Workflow Runs, or other entity types being tested.
36728
+ */
36729
+ get TargetLogEntityID(): string | null;
36730
+ set TargetLogEntityID(value: string | null);
36731
+ /**
35365
36732
  * * Field Name: Test
35366
36733
  * * Display Name: Test
35367
36734
  * * SQL Data Type: nvarchar(255)
@@ -35379,6 +36746,12 @@ export declare class TestRunEntity extends BaseEntity<TestRunEntityType> {
35379
36746
  * * SQL Data Type: nvarchar(100)
35380
36747
  */
35381
36748
  get RunByUser(): string;
36749
+ /**
36750
+ * * Field Name: TargetLogEntity
36751
+ * * Display Name: Target Log Entity
36752
+ * * SQL Data Type: nvarchar(255)
36753
+ */
36754
+ get TargetLogEntity(): string | null;
35382
36755
  }
35383
36756
  /**
35384
36757
  * MJ: Test Suite Runs - strongly typed entity sub-class
@@ -35536,7 +36909,7 @@ export declare class TestSuiteRunEntity extends BaseEntity<TestSuiteRunEntityTyp
35536
36909
  set ErrorTests(value: number | null);
35537
36910
  /**
35538
36911
  * * Field Name: TotalDurationSeconds
35539
- * * Display Name: Total Duration Seconds
36912
+ * * Display Name: Total Duration (seconds)
35540
36913
  * * SQL Data Type: decimal(10, 3)
35541
36914
  * * Description: Total execution time in seconds for the entire suite
35542
36915
  */
@@ -35544,7 +36917,7 @@ export declare class TestSuiteRunEntity extends BaseEntity<TestSuiteRunEntityTyp
35544
36917
  set TotalDurationSeconds(value: number | null);
35545
36918
  /**
35546
36919
  * * Field Name: TotalCostUSD
35547
- * * Display Name: Total Cost USD
36920
+ * * Display Name: Total Cost (USD)
35548
36921
  * * SQL Data Type: decimal(10, 6)
35549
36922
  * * Description: Total cost in USD for running the entire suite (sum of all test costs)
35550
36923
  */
@@ -35589,14 +36962,62 @@ export declare class TestSuiteRunEntity extends BaseEntity<TestSuiteRunEntityTyp
35589
36962
  */
35590
36963
  get __mj_UpdatedAt(): Date;
35591
36964
  /**
36965
+ * * Field Name: Tags
36966
+ * * Display Name: Tags
36967
+ * * SQL Data Type: nvarchar(MAX)
36968
+ * * Description: JSON array of user-assigned tags/labels for this suite run. Used for categorization, filtering, and comparing runs with different configurations (e.g., ["Opus 4.5", "New Prompt v3", "Production Config"]).
36969
+ */
36970
+ get Tags(): string | null;
36971
+ set Tags(value: string | null);
36972
+ /**
36973
+ * * Field Name: MachineName
36974
+ * * Display Name: Machine Name
36975
+ * * SQL Data Type: nvarchar(255)
36976
+ * * Description: Hostname of the machine that executed this suite. Used for identifying the execution environment and debugging infrastructure-specific issues.
36977
+ */
36978
+ get MachineName(): string | null;
36979
+ set MachineName(value: string | null);
36980
+ /**
36981
+ * * Field Name: MachineID
36982
+ * * Display Name: Machine ID
36983
+ * * SQL Data Type: nvarchar(255)
36984
+ * * Description: Unique machine identifier (typically MAC address) for the execution host. Enables deduplication and tracking of suite execution across different machines.
36985
+ */
36986
+ get MachineID(): string | null;
36987
+ set MachineID(value: string | null);
36988
+ /**
36989
+ * * Field Name: RunByUserName
36990
+ * * Display Name: Run By User Name
36991
+ * * SQL Data Type: nvarchar(255)
36992
+ * * Description: Denormalized user name who ran the suite. Stored separately from RunByUserID to enable cross-server aggregation where user IDs differ but names remain consistent.
36993
+ */
36994
+ get RunByUserName(): string | null;
36995
+ set RunByUserName(value: string | null);
36996
+ /**
36997
+ * * Field Name: RunByUserEmail
36998
+ * * Display Name: Run By User Email
36999
+ * * SQL Data Type: nvarchar(255)
37000
+ * * Description: Denormalized email address of the user who ran the suite. Primary identifier for cross-server aggregation since email addresses are unique across MemberJunction instances.
37001
+ */
37002
+ get RunByUserEmail(): string | null;
37003
+ set RunByUserEmail(value: string | null);
37004
+ /**
37005
+ * * Field Name: RunContextDetails
37006
+ * * Display Name: Run Context Details
37007
+ * * SQL Data Type: nvarchar(MAX)
37008
+ * * Description: JSON object containing extensible execution context: osType, osVersion, nodeVersion, timezone, locale, ipAddress, and CI/CD metadata (ciProvider, pipelineId, buildNumber, branch, prNumber). Allows detailed environment tracking without schema changes.
37009
+ */
37010
+ get RunContextDetails(): string | null;
37011
+ set RunContextDetails(value: string | null);
37012
+ /**
35592
37013
  * * Field Name: Suite
35593
- * * Display Name: Suite Name
37014
+ * * Display Name: Suite
35594
37015
  * * SQL Data Type: nvarchar(255)
35595
37016
  */
35596
37017
  get Suite(): string;
35597
37018
  /**
35598
37019
  * * Field Name: RunByUser
35599
- * * Display Name: Run By User Name
37020
+ * * Display Name: Run By User
35600
37021
  * * SQL Data Type: nvarchar(100)
35601
37022
  */
35602
37023
  get RunByUser(): string;
@@ -35743,7 +37164,7 @@ export declare class TestSuiteEntity extends BaseEntity<TestSuiteEntityType> {
35743
37164
  set ID(value: string);
35744
37165
  /**
35745
37166
  * * Field Name: ParentID
35746
- * * Display Name: Parent ID
37167
+ * * Display Name: Parent
35747
37168
  * * SQL Data Type: uniqueidentifier
35748
37169
  * * Related Entity/Foreign Key: MJ: Test Suites (vwTestSuites.ID)
35749
37170
  * * Description: Optional parent suite ID for hierarchical organization. NULL for root-level suites.
@@ -35811,14 +37232,22 @@ export declare class TestSuiteEntity extends BaseEntity<TestSuiteEntityType> {
35811
37232
  */
35812
37233
  get __mj_UpdatedAt(): Date;
35813
37234
  /**
37235
+ * * Field Name: MaxExecutionTimeMS
37236
+ * * Display Name: Max Execution Time (ms)
37237
+ * * SQL Data Type: int
37238
+ * * Description: Maximum total execution time in milliseconds for the entire suite. If NULL, no suite-level timeout applies (individual test timeouts still apply). When exceeded, current test is cancelled and remaining tests are skipped.
37239
+ */
37240
+ get MaxExecutionTimeMS(): number | null;
37241
+ set MaxExecutionTimeMS(value: number | null);
37242
+ /**
35814
37243
  * * Field Name: Parent
35815
- * * Display Name: Parent
37244
+ * * Display Name: Parent Name
35816
37245
  * * SQL Data Type: nvarchar(255)
35817
37246
  */
35818
37247
  get Parent(): string | null;
35819
37248
  /**
35820
37249
  * * Field Name: RootParentID
35821
- * * Display Name: Root Parent ID
37250
+ * * Display Name: Root Parent
35822
37251
  * * SQL Data Type: uniqueidentifier
35823
37252
  */
35824
37253
  get RootParentID(): string | null;
@@ -35957,7 +37386,7 @@ export declare class TestEntity extends BaseEntity<TestEntityType> {
35957
37386
  set ID(value: string);
35958
37387
  /**
35959
37388
  * * Field Name: TypeID
35960
- * * Display Name: Type ID
37389
+ * * Display Name: Test Type
35961
37390
  * * SQL Data Type: uniqueidentifier
35962
37391
  * * Related Entity/Foreign Key: MJ: Test Types (vwTestTypes.ID)
35963
37392
  * * Description: Foreign Key - The type of test (e.g., Agent Eval, Workflow Test). Determines which driver class handles execution.
@@ -36037,7 +37466,7 @@ export declare class TestEntity extends BaseEntity<TestEntityType> {
36037
37466
  set Priority(value: number | null);
36038
37467
  /**
36039
37468
  * * Field Name: EstimatedDurationSeconds
36040
- * * Display Name: Estimated Duration Seconds
37469
+ * * Display Name: Estimated Duration (seconds)
36041
37470
  * * SQL Data Type: int
36042
37471
  * * Description: Estimated execution time in seconds. Used for scheduling and timeout calculations.
36043
37472
  */
@@ -36045,7 +37474,7 @@ export declare class TestEntity extends BaseEntity<TestEntityType> {
36045
37474
  set EstimatedDurationSeconds(value: number | null);
36046
37475
  /**
36047
37476
  * * Field Name: EstimatedCostUSD
36048
- * * Display Name: Estimated Cost USD
37477
+ * * Display Name: Estimated Cost (USD)
36049
37478
  * * SQL Data Type: decimal(10, 6)
36050
37479
  * * Description: Estimated cost in USD for running this test (e.g., LLM token costs, compute resources). Used for budgeting and optimization.
36051
37480
  */
@@ -36074,8 +37503,16 @@ export declare class TestEntity extends BaseEntity<TestEntityType> {
36074
37503
  get RepeatCount(): number | null;
36075
37504
  set RepeatCount(value: number | null);
36076
37505
  /**
37506
+ * * Field Name: MaxExecutionTimeMS
37507
+ * * Display Name: Max Execution Time (ms)
37508
+ * * SQL Data Type: int
37509
+ * * Description: Maximum execution time in milliseconds for this test. If NULL, uses default (300000ms = 5 minutes). Can be overridden by Configuration JSON maxExecutionTime field for backward compatibility.
37510
+ */
37511
+ get MaxExecutionTimeMS(): number | null;
37512
+ set MaxExecutionTimeMS(value: number | null);
37513
+ /**
36077
37514
  * * Field Name: Type
36078
- * * Display Name: Type
37515
+ * * Display Name: Test Type Name
36079
37516
  * * SQL Data Type: nvarchar(100)
36080
37517
  */
36081
37518
  get Type(): string;