@memberjunction/core-entities 2.108.0 → 2.110.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.
@@ -696,7 +696,7 @@ export declare const AIAgentSchema: z.ZodObject<{
696
696
  ContextCompressionPromptID: z.ZodNullable<z.ZodString>;
697
697
  ContextCompressionMessageRetentionCount: z.ZodNullable<z.ZodNumber>;
698
698
  TypeID: z.ZodNullable<z.ZodString>;
699
- Status: z.ZodNullable<z.ZodString>;
699
+ Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Pending">]>;
700
700
  DriverClass: z.ZodNullable<z.ZodString>;
701
701
  IconClass: z.ZodNullable<z.ZodString>;
702
702
  ModelSelectionMode: z.ZodUnion<[z.ZodLiteral<"Agent">, z.ZodLiteral<"Agent Type">]>;
@@ -721,6 +721,9 @@ export declare const AIAgentSchema: z.ZodObject<{
721
721
  DefaultArtifactTypeID: z.ZodNullable<z.ZodString>;
722
722
  OwnerUserID: z.ZodString;
723
723
  InvocationMode: z.ZodUnion<[z.ZodLiteral<"Any">, z.ZodLiteral<"Sub-Agent">, z.ZodLiteral<"Top-Level">]>;
724
+ ArtifactCreationMode: z.ZodUnion<[z.ZodLiteral<"Always">, z.ZodLiteral<"Never">, z.ZodLiteral<"System Only">]>;
725
+ FunctionalRequirements: z.ZodNullable<z.ZodString>;
726
+ TechnicalDesign: z.ZodNullable<z.ZodString>;
724
727
  Parent: z.ZodNullable<z.ZodString>;
725
728
  ContextCompressionPrompt: z.ZodNullable<z.ZodString>;
726
729
  Type: z.ZodNullable<z.ZodString>;
@@ -734,7 +737,7 @@ export declare const AIAgentSchema: z.ZodObject<{
734
737
  Name?: string;
735
738
  Description?: string;
736
739
  ParentID?: string;
737
- Status?: string;
740
+ Status?: "Active" | "Disabled" | "Pending";
738
741
  Parent?: string;
739
742
  RootParentID?: string;
740
743
  Type?: string;
@@ -771,6 +774,9 @@ export declare const AIAgentSchema: z.ZodObject<{
771
774
  DefaultArtifactTypeID?: string;
772
775
  OwnerUserID?: string;
773
776
  InvocationMode?: "Any" | "Sub-Agent" | "Top-Level";
777
+ ArtifactCreationMode?: "Always" | "Never" | "System Only";
778
+ FunctionalRequirements?: string;
779
+ TechnicalDesign?: string;
774
780
  ContextCompressionPrompt?: string;
775
781
  DefaultArtifactType?: string;
776
782
  OwnerUser?: string;
@@ -781,7 +787,7 @@ export declare const AIAgentSchema: z.ZodObject<{
781
787
  Name?: string;
782
788
  Description?: string;
783
789
  ParentID?: string;
784
- Status?: string;
790
+ Status?: "Active" | "Disabled" | "Pending";
785
791
  Parent?: string;
786
792
  RootParentID?: string;
787
793
  Type?: string;
@@ -818,6 +824,9 @@ export declare const AIAgentSchema: z.ZodObject<{
818
824
  DefaultArtifactTypeID?: string;
819
825
  OwnerUserID?: string;
820
826
  InvocationMode?: "Any" | "Sub-Agent" | "Top-Level";
827
+ ArtifactCreationMode?: "Always" | "Never" | "System Only";
828
+ FunctionalRequirements?: string;
829
+ TechnicalDesign?: string;
821
830
  ContextCompressionPrompt?: string;
822
831
  DefaultArtifactType?: string;
823
832
  OwnerUser?: string;
@@ -1649,6 +1658,7 @@ export declare const CommunicationProviderSchema: z.ZodObject<{
1649
1658
  SupportsScheduledSending: z.ZodBoolean;
1650
1659
  SupportsForwarding: z.ZodBoolean;
1651
1660
  SupportsReplying: z.ZodBoolean;
1661
+ SupportsDrafts: z.ZodBoolean;
1652
1662
  }, "strip", z.ZodTypeAny, {
1653
1663
  ID?: string;
1654
1664
  __mj_CreatedAt?: Date;
@@ -1661,6 +1671,7 @@ export declare const CommunicationProviderSchema: z.ZodObject<{
1661
1671
  SupportsScheduledSending?: boolean;
1662
1672
  SupportsForwarding?: boolean;
1663
1673
  SupportsReplying?: boolean;
1674
+ SupportsDrafts?: boolean;
1664
1675
  }, {
1665
1676
  ID?: string;
1666
1677
  __mj_CreatedAt?: Date;
@@ -1673,6 +1684,7 @@ export declare const CommunicationProviderSchema: z.ZodObject<{
1673
1684
  SupportsScheduledSending?: boolean;
1674
1685
  SupportsForwarding?: boolean;
1675
1686
  SupportsReplying?: boolean;
1687
+ SupportsDrafts?: boolean;
1676
1688
  }>;
1677
1689
  export type CommunicationProviderEntityType = z.infer<typeof CommunicationProviderSchema>;
1678
1690
  /**
@@ -4851,6 +4863,83 @@ export declare const AIAgentArtifactTypeSchema: z.ZodObject<{
4851
4863
  ArtifactType?: string;
4852
4864
  }>;
4853
4865
  export type AIAgentArtifactTypeEntityType = z.infer<typeof AIAgentArtifactTypeSchema>;
4866
+ /**
4867
+ * zod schema definition for the entity MJ: AI Agent Data Sources
4868
+ */
4869
+ export declare const AIAgentDataSourceSchema: z.ZodObject<{
4870
+ ID: z.ZodString;
4871
+ AgentID: z.ZodString;
4872
+ Name: z.ZodString;
4873
+ Description: z.ZodNullable<z.ZodString>;
4874
+ SourceType: z.ZodUnion<[z.ZodLiteral<"RunQuery">, z.ZodLiteral<"RunView">]>;
4875
+ EntityName: z.ZodNullable<z.ZodString>;
4876
+ ExtraFilter: z.ZodNullable<z.ZodString>;
4877
+ OrderBy: z.ZodNullable<z.ZodString>;
4878
+ FieldsToRetrieve: z.ZodNullable<z.ZodString>;
4879
+ ResultType: z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"entity_object">, z.ZodLiteral<"simple">]>>;
4880
+ QueryName: z.ZodNullable<z.ZodString>;
4881
+ CategoryPath: z.ZodNullable<z.ZodString>;
4882
+ Parameters: z.ZodNullable<z.ZodString>;
4883
+ MaxRows: z.ZodNullable<z.ZodNumber>;
4884
+ ExecutionOrder: z.ZodNumber;
4885
+ Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Disabled">]>;
4886
+ CachePolicy: z.ZodUnion<[z.ZodLiteral<"None">, z.ZodLiteral<"PerAgent">, z.ZodLiteral<"PerRun">]>;
4887
+ CacheTimeoutSeconds: z.ZodNullable<z.ZodNumber>;
4888
+ DestinationType: z.ZodUnion<[z.ZodLiteral<"Context">, z.ZodLiteral<"Data">, z.ZodLiteral<"Payload">]>;
4889
+ DestinationPath: z.ZodNullable<z.ZodString>;
4890
+ __mj_CreatedAt: z.ZodDate;
4891
+ __mj_UpdatedAt: z.ZodDate;
4892
+ Agent: z.ZodNullable<z.ZodString>;
4893
+ }, "strip", z.ZodTypeAny, {
4894
+ ID?: string;
4895
+ __mj_CreatedAt?: Date;
4896
+ __mj_UpdatedAt?: Date;
4897
+ Name?: string;
4898
+ Description?: string;
4899
+ Status?: "Active" | "Disabled";
4900
+ AgentID?: string;
4901
+ Agent?: string;
4902
+ ExecutionOrder?: number;
4903
+ Parameters?: string;
4904
+ SourceType?: "RunQuery" | "RunView";
4905
+ EntityName?: string;
4906
+ ExtraFilter?: string;
4907
+ OrderBy?: string;
4908
+ FieldsToRetrieve?: string;
4909
+ ResultType?: "entity_object" | "simple";
4910
+ QueryName?: string;
4911
+ CategoryPath?: string;
4912
+ MaxRows?: number;
4913
+ CachePolicy?: "None" | "PerAgent" | "PerRun";
4914
+ CacheTimeoutSeconds?: number;
4915
+ DestinationType?: "Context" | "Data" | "Payload";
4916
+ DestinationPath?: string;
4917
+ }, {
4918
+ ID?: string;
4919
+ __mj_CreatedAt?: Date;
4920
+ __mj_UpdatedAt?: Date;
4921
+ Name?: string;
4922
+ Description?: string;
4923
+ Status?: "Active" | "Disabled";
4924
+ AgentID?: string;
4925
+ Agent?: string;
4926
+ ExecutionOrder?: number;
4927
+ Parameters?: string;
4928
+ SourceType?: "RunQuery" | "RunView";
4929
+ EntityName?: string;
4930
+ ExtraFilter?: string;
4931
+ OrderBy?: string;
4932
+ FieldsToRetrieve?: string;
4933
+ ResultType?: "entity_object" | "simple";
4934
+ QueryName?: string;
4935
+ CategoryPath?: string;
4936
+ MaxRows?: number;
4937
+ CachePolicy?: "None" | "PerAgent" | "PerRun";
4938
+ CacheTimeoutSeconds?: number;
4939
+ DestinationType?: "Context" | "Data" | "Payload";
4940
+ DestinationPath?: string;
4941
+ }>;
4942
+ export type AIAgentDataSourceEntityType = z.infer<typeof AIAgentDataSourceSchema>;
4854
4943
  /**
4855
4944
  * zod schema definition for the entity MJ: AI Agent Permissions
4856
4945
  */
@@ -5141,6 +5230,7 @@ export declare const AIAgentRunSchema: z.ZodObject<{
5141
5230
  LastRunID?: string;
5142
5231
  ConversationID?: string;
5143
5232
  Conversation?: string;
5233
+ Data?: string;
5144
5234
  CompletedAt?: Date;
5145
5235
  ParentRunID?: string;
5146
5236
  Result?: string;
@@ -5162,7 +5252,6 @@ export declare const AIAgentRunSchema: z.ZodObject<{
5162
5252
  TotalPromptIterations?: number;
5163
5253
  OverrideModelID?: string;
5164
5254
  OverrideVendorID?: string;
5165
- Data?: string;
5166
5255
  Verbose?: boolean;
5167
5256
  RunName?: string;
5168
5257
  ScheduledJobRunID?: string;
@@ -5190,6 +5279,7 @@ export declare const AIAgentRunSchema: z.ZodObject<{
5190
5279
  LastRunID?: string;
5191
5280
  ConversationID?: string;
5192
5281
  Conversation?: string;
5282
+ Data?: string;
5193
5283
  CompletedAt?: Date;
5194
5284
  ParentRunID?: string;
5195
5285
  Result?: string;
@@ -5211,7 +5301,6 @@ export declare const AIAgentRunSchema: z.ZodObject<{
5211
5301
  TotalPromptIterations?: number;
5212
5302
  OverrideModelID?: string;
5213
5303
  OverrideVendorID?: string;
5214
- Data?: string;
5215
5304
  Verbose?: boolean;
5216
5305
  RunName?: string;
5217
5306
  ScheduledJobRunID?: string;
@@ -6077,6 +6166,53 @@ export declare const AIVendorSchema: z.ZodObject<{
6077
6166
  Description?: string;
6078
6167
  }>;
6079
6168
  export type AIVendorEntityType = z.infer<typeof AIVendorSchema>;
6169
+ /**
6170
+ * zod schema definition for the entity MJ: Artifact Permissions
6171
+ */
6172
+ export declare const ArtifactPermissionSchema: z.ZodObject<{
6173
+ ID: z.ZodString;
6174
+ ArtifactID: z.ZodString;
6175
+ UserID: z.ZodString;
6176
+ CanRead: z.ZodBoolean;
6177
+ CanEdit: z.ZodBoolean;
6178
+ CanDelete: z.ZodBoolean;
6179
+ CanShare: z.ZodBoolean;
6180
+ SharedByUserID: z.ZodNullable<z.ZodString>;
6181
+ __mj_CreatedAt: z.ZodDate;
6182
+ __mj_UpdatedAt: z.ZodDate;
6183
+ Artifact: z.ZodString;
6184
+ User: z.ZodString;
6185
+ SharedByUser: z.ZodNullable<z.ZodString>;
6186
+ }, "strip", z.ZodTypeAny, {
6187
+ ID?: string;
6188
+ __mj_CreatedAt?: Date;
6189
+ __mj_UpdatedAt?: Date;
6190
+ UserID?: string;
6191
+ User?: string;
6192
+ ArtifactID?: string;
6193
+ Artifact?: string;
6194
+ CanRead?: boolean;
6195
+ CanDelete?: boolean;
6196
+ CanShare?: boolean;
6197
+ CanEdit?: boolean;
6198
+ SharedByUserID?: string;
6199
+ SharedByUser?: string;
6200
+ }, {
6201
+ ID?: string;
6202
+ __mj_CreatedAt?: Date;
6203
+ __mj_UpdatedAt?: Date;
6204
+ UserID?: string;
6205
+ User?: string;
6206
+ ArtifactID?: string;
6207
+ Artifact?: string;
6208
+ CanRead?: boolean;
6209
+ CanDelete?: boolean;
6210
+ CanShare?: boolean;
6211
+ CanEdit?: boolean;
6212
+ SharedByUserID?: string;
6213
+ SharedByUser?: string;
6214
+ }>;
6215
+ export type ArtifactPermissionEntityType = z.infer<typeof ArtifactPermissionSchema>;
6080
6216
  /**
6081
6217
  * zod schema definition for the entity MJ: Artifact Types
6082
6218
  */
@@ -6219,6 +6355,7 @@ export declare const ArtifactSchema: z.ZodObject<{
6219
6355
  UserID: z.ZodString;
6220
6356
  __mj_CreatedAt: z.ZodDate;
6221
6357
  __mj_UpdatedAt: z.ZodDate;
6358
+ Visibility: z.ZodUnion<[z.ZodLiteral<"Always">, z.ZodLiteral<"System Only">]>;
6222
6359
  Environment: z.ZodString;
6223
6360
  Type: z.ZodString;
6224
6361
  User: z.ZodString;
@@ -6235,6 +6372,7 @@ export declare const ArtifactSchema: z.ZodObject<{
6235
6372
  TypeID?: string;
6236
6373
  EnvironmentID?: string;
6237
6374
  Environment?: string;
6375
+ Visibility?: "Always" | "System Only";
6238
6376
  }, {
6239
6377
  ID?: string;
6240
6378
  Comments?: string;
@@ -6248,6 +6386,7 @@ export declare const ArtifactSchema: z.ZodObject<{
6248
6386
  TypeID?: string;
6249
6387
  EnvironmentID?: string;
6250
6388
  Environment?: string;
6389
+ Visibility?: "Always" | "System Only";
6251
6390
  }>;
6252
6391
  export type ArtifactEntityType = z.infer<typeof ArtifactSchema>;
6253
6392
  /**
@@ -6309,10 +6448,10 @@ export declare const CollectionPermissionSchema: z.ZodObject<{
6309
6448
  CanDelete?: boolean;
6310
6449
  CanShare?: boolean;
6311
6450
  CanEdit?: boolean;
6312
- CollectionID?: string;
6313
- Collection?: string;
6314
6451
  SharedByUserID?: string;
6315
6452
  SharedByUser?: string;
6453
+ CollectionID?: string;
6454
+ Collection?: string;
6316
6455
  }, {
6317
6456
  ID?: string;
6318
6457
  __mj_CreatedAt?: Date;
@@ -6323,10 +6462,10 @@ export declare const CollectionPermissionSchema: z.ZodObject<{
6323
6462
  CanDelete?: boolean;
6324
6463
  CanShare?: boolean;
6325
6464
  CanEdit?: boolean;
6326
- CollectionID?: string;
6327
- Collection?: string;
6328
6465
  SharedByUserID?: string;
6329
6466
  SharedByUser?: string;
6467
+ CollectionID?: string;
6468
+ Collection?: string;
6330
6469
  }>;
6331
6470
  export type CollectionPermissionEntityType = z.infer<typeof CollectionPermissionSchema>;
6332
6471
  /**
@@ -6573,6 +6712,8 @@ export declare const ComponentSchema: z.ZodObject<{
6573
6712
  Description?: string;
6574
6713
  Status?: "Deprecated" | "Draft" | "Published";
6575
6714
  Type?: "Other" | "Search" | "Utility" | "Chart" | "Dashboard" | "Form" | "Navigation" | "Report" | "Table" | "Widget";
6715
+ FunctionalRequirements?: string;
6716
+ TechnicalDesign?: string;
6576
6717
  Title?: string;
6577
6718
  Version?: string;
6578
6719
  Namespace?: string;
@@ -6584,8 +6725,6 @@ export declare const ComponentSchema: z.ZodObject<{
6584
6725
  ReplicatedAt?: Date;
6585
6726
  LastSyncedAt?: Date;
6586
6727
  Specification?: string;
6587
- FunctionalRequirements?: string;
6588
- TechnicalDesign?: string;
6589
6728
  FunctionalRequirementsVector?: string;
6590
6729
  TechnicalDesignVector?: string;
6591
6730
  HasCustomProps?: boolean;
@@ -6604,6 +6743,8 @@ export declare const ComponentSchema: z.ZodObject<{
6604
6743
  Description?: string;
6605
6744
  Status?: "Deprecated" | "Draft" | "Published";
6606
6745
  Type?: "Other" | "Search" | "Utility" | "Chart" | "Dashboard" | "Form" | "Navigation" | "Report" | "Table" | "Widget";
6746
+ FunctionalRequirements?: string;
6747
+ TechnicalDesign?: string;
6607
6748
  Title?: string;
6608
6749
  Version?: string;
6609
6750
  Namespace?: string;
@@ -6615,8 +6756,6 @@ export declare const ComponentSchema: z.ZodObject<{
6615
6756
  ReplicatedAt?: Date;
6616
6757
  LastSyncedAt?: Date;
6617
6758
  Specification?: string;
6618
- FunctionalRequirements?: string;
6619
- TechnicalDesign?: string;
6620
6759
  FunctionalRequirementsVector?: string;
6621
6760
  TechnicalDesignVector?: string;
6622
6761
  HasCustomProps?: boolean;
@@ -8941,10 +9080,10 @@ export declare const TemplateParamSchema: z.ZodObject<{
8941
9080
  EntityID?: string;
8942
9081
  Entity?: string;
8943
9082
  RecordID?: string;
8944
- LinkedParameterName?: string;
8945
- LinkedParameterField?: string;
8946
9083
  ExtraFilter?: string;
8947
9084
  OrderBy?: string;
9085
+ LinkedParameterName?: string;
9086
+ LinkedParameterField?: string;
8948
9087
  TemplateContentID?: string;
8949
9088
  }, {
8950
9089
  ID?: string;
@@ -8960,10 +9099,10 @@ export declare const TemplateParamSchema: z.ZodObject<{
8960
9099
  EntityID?: string;
8961
9100
  Entity?: string;
8962
9101
  RecordID?: string;
8963
- LinkedParameterName?: string;
8964
- LinkedParameterField?: string;
8965
9102
  ExtraFilter?: string;
8966
9103
  OrderBy?: string;
9104
+ LinkedParameterName?: string;
9105
+ LinkedParameterField?: string;
8967
9106
  TemplateContentID?: string;
8968
9107
  }>;
8969
9108
  export type TemplateParamEntityType = z.infer<typeof TemplateParamSchema>;
@@ -9460,6 +9599,8 @@ export declare const UserSchema: z.ZodObject<{
9460
9599
  EmployeeID: z.ZodNullable<z.ZodString>;
9461
9600
  __mj_CreatedAt: z.ZodDate;
9462
9601
  __mj_UpdatedAt: z.ZodDate;
9602
+ UserImageURL: z.ZodNullable<z.ZodString>;
9603
+ UserImageIconClass: z.ZodNullable<z.ZodString>;
9463
9604
  FirstLast: z.ZodNullable<z.ZodString>;
9464
9605
  EmployeeFirstLast: z.ZodNullable<z.ZodString>;
9465
9606
  EmployeeEmail: z.ZodNullable<z.ZodString>;
@@ -9482,6 +9623,8 @@ export declare const UserSchema: z.ZodObject<{
9482
9623
  FirstLast?: string;
9483
9624
  LinkedRecordType?: string;
9484
9625
  LinkedEntityRecordID?: string;
9626
+ UserImageURL?: string;
9627
+ UserImageIconClass?: string;
9485
9628
  EmployeeFirstLast?: string;
9486
9629
  EmployeeEmail?: string;
9487
9630
  EmployeeTitle?: string;
@@ -9503,6 +9646,8 @@ export declare const UserSchema: z.ZodObject<{
9503
9646
  FirstLast?: string;
9504
9647
  LinkedRecordType?: string;
9505
9648
  LinkedEntityRecordID?: string;
9649
+ UserImageURL?: string;
9650
+ UserImageIconClass?: string;
9506
9651
  EmployeeFirstLast?: string;
9507
9652
  EmployeeEmail?: string;
9508
9653
  EmployeeTitle?: string;
@@ -9950,8 +10095,8 @@ export declare class ActionCategoryEntity extends BaseEntity<ActionCategoryEntit
9950
10095
  * * Default Value: Pending
9951
10096
  * * Value List Type: List
9952
10097
  * * Possible Values
9953
- * * Disabled
9954
10098
  * * Active
10099
+ * * Disabled
9955
10100
  * * Pending
9956
10101
  * * Description: Status of the action category (Pending, Active, Disabled).
9957
10102
  */
@@ -10102,9 +10247,9 @@ export declare class ActionContextEntity extends BaseEntity<ActionContextEntityT
10102
10247
  * * Default Value: Pending
10103
10248
  * * Value List Type: List
10104
10249
  * * Possible Values
10105
- * * Pending
10106
10250
  * * Active
10107
10251
  * * Disabled
10252
+ * * Pending
10108
10253
  * * Description: Status of the action context (Pending, Active, Disabled).
10109
10254
  */
10110
10255
  get Status(): 'Active' | 'Disabled' | 'Pending';
@@ -10483,9 +10628,9 @@ export declare class ActionParamEntity extends BaseEntity<ActionParamEntityType>
10483
10628
  * * SQL Data Type: nchar(10)
10484
10629
  * * Value List Type: List
10485
10630
  * * Possible Values
10631
+ * * Both
10486
10632
  * * Input
10487
10633
  * * Output
10488
- * * Both
10489
10634
  * * Description: Specifies whether this parameter is used for Input, Output, or Both directions in the action execution flow.
10490
10635
  */
10491
10636
  get Type(): 'Both' | 'Input' | 'Output';
@@ -10496,13 +10641,13 @@ export declare class ActionParamEntity extends BaseEntity<ActionParamEntityType>
10496
10641
  * * SQL Data Type: nvarchar(30)
10497
10642
  * * Value List Type: List
10498
10643
  * * Possible Values
10499
- * * Other
10500
- * * Simple Object
10501
10644
  * * BaseEntity Sub-Class
10502
- * * Scalar
10503
- * * Scalar
10504
10645
  * * BaseEntity Sub-Class
10505
10646
  * * Other
10647
+ * * Other
10648
+ * * Scalar
10649
+ * * Scalar
10650
+ * * Simple Object
10506
10651
  * * Simple Object
10507
10652
  * * Description: Tracks the basic value type of the parameter, additional information can be provided in the Description field
10508
10653
  */
@@ -10747,9 +10892,9 @@ export declare class ActionEntity extends BaseEntity<ActionEntityType> {
10747
10892
  * * Default Value: Pending
10748
10893
  * * Value List Type: List
10749
10894
  * * Possible Values
10750
- * * Rejected
10751
10895
  * * Approved
10752
10896
  * * Pending
10897
+ * * Rejected
10753
10898
  * * Description: An action won't be usable until the code is approved.
10754
10899
  */
10755
10900
  get CodeApprovalStatus(): 'Approved' | 'Pending' | 'Rejected';
@@ -10811,8 +10956,8 @@ export declare class ActionEntity extends BaseEntity<ActionEntityType> {
10811
10956
  * * Default Value: Pending
10812
10957
  * * Value List Type: List
10813
10958
  * * Possible Values
10814
- * * Disabled
10815
10959
  * * Active
10960
+ * * Disabled
10816
10961
  * * Pending
10817
10962
  * * Description: Status of the action (Pending, Active, Disabled).
10818
10963
  */
@@ -11016,15 +11161,27 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
11016
11161
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
11017
11162
  /**
11018
11163
  * Validate() method override for AI Agent Actions entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
11164
+ * * CompactLength: This rule ensures that if a value is provided for CompactLength, it must be greater than zero. If CompactLength is left empty, no rule applies.
11019
11165
  * * MaxExecutionsPerRun: This rule ensures that if the maximum executions per run is specified, the number must be greater than zero. If it is not specified, no restriction applies.
11020
11166
  * * MinExecutionsPerRun: This rule ensures that if a minimum executions per run value is provided, it must be zero or greater.
11167
+ * * ResultExpirationTurns: This rule ensures that if the ResultExpirationTurns field has a value, it must be zero or greater (it cannot be negative). If ResultExpirationTurns is left empty, there is no restriction.
11168
+ * * Table-Level: This rule ensures that if the compact mode is set to 'First N Chars', a compact length must be specified. For any other compact mode, the compact length can be left empty.
11169
+ * * Table-Level: This rule ensures that if the result expiration mode is set to 'Compact', a compact mode value must also be provided. If the result expiration mode is not 'Compact', compact mode can be left empty.
11021
11170
  * * Table-Level: This rule ensures that if both minimum and maximum executions per run are specified, the minimum cannot be greater than the maximum. If either value is not specified, the rule is not enforced.
11171
+ * * Table-Level: This rule ensures that if the result expiration mode is set to 'Compact', then CompactMode, CompactLength, and CompactPromptID must all be empty (null). If the expiration mode is not 'Compact', these fields may be filled in.
11022
11172
  * @public
11023
11173
  * @method
11024
11174
  * @override
11025
11175
  */
11026
11176
  Validate(): ValidationResult;
11027
11177
  /**
11178
+ * This rule ensures that if a value is provided for CompactLength, it must be greater than zero. If CompactLength is left empty, no rule applies.
11179
+ * @param result - the ValidationResult object to add any errors or warnings to
11180
+ * @public
11181
+ * @method
11182
+ */
11183
+ ValidateCompactLengthGreaterThanZero(result: ValidationResult): void;
11184
+ /**
11028
11185
  * This rule ensures that if the maximum executions per run is specified, the number must be greater than zero. If it is not specified, no restriction applies.
11029
11186
  * @param result - the ValidationResult object to add any errors or warnings to
11030
11187
  * @public
@@ -11039,6 +11196,27 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
11039
11196
  */
11040
11197
  ValidateMinExecutionsPerRunIsNonNegative(result: ValidationResult): void;
11041
11198
  /**
11199
+ * This rule ensures that if the ResultExpirationTurns field has a value, it must be zero or greater (it cannot be negative). If ResultExpirationTurns is left empty, there is no restriction.
11200
+ * @param result - the ValidationResult object to add any errors or warnings to
11201
+ * @public
11202
+ * @method
11203
+ */
11204
+ ValidateResultExpirationTurnsNonNegative(result: ValidationResult): void;
11205
+ /**
11206
+ * This rule ensures that if the compact mode is set to 'First N Chars', a compact length must be specified. For any other compact mode, the compact length can be left empty.
11207
+ * @param result - the ValidationResult object to add any errors or warnings to
11208
+ * @public
11209
+ * @method
11210
+ */
11211
+ ValidateCompactLengthRequiredForFirstNCharsMode(result: ValidationResult): void;
11212
+ /**
11213
+ * This rule ensures that if the result expiration mode is set to 'Compact', a compact mode value must also be provided. If the result expiration mode is not 'Compact', compact mode can be left empty.
11214
+ * @param result - the ValidationResult object to add any errors or warnings to
11215
+ * @public
11216
+ * @method
11217
+ */
11218
+ ValidateCompactModeWhenResultExpirationModeIsCompact(result: ValidationResult): void;
11219
+ /**
11042
11220
  * This rule ensures that if both minimum and maximum executions per run are specified, the minimum cannot be greater than the maximum. If either value is not specified, the rule is not enforced.
11043
11221
  * @param result - the ValidationResult object to add any errors or warnings to
11044
11222
  * @public
@@ -11046,6 +11224,13 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
11046
11224
  */
11047
11225
  ValidateMinExecutionsPerRunIsLessThanOrEqualToMaxExecutionsPerRun(result: ValidationResult): void;
11048
11226
  /**
11227
+ * This rule ensures that if the result expiration mode is set to 'Compact', then CompactMode, CompactLength, and CompactPromptID must all be empty (null). If the expiration mode is not 'Compact', these fields may be filled in.
11228
+ * @param result - the ValidationResult object to add any errors or warnings to
11229
+ * @public
11230
+ * @method
11231
+ */
11232
+ ValidateResultExpirationModeRequiresCompactFieldsEmpty(result: ValidationResult): void;
11233
+ /**
11049
11234
  * * Field Name: ID
11050
11235
  * * Display Name: ID
11051
11236
  * * SQL Data Type: uniqueidentifier
@@ -11079,8 +11264,8 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
11079
11264
  * * Default Value: Active
11080
11265
  * * Value List Type: List
11081
11266
  * * Possible Values
11082
- * * Pending
11083
11267
  * * Active
11268
+ * * Pending
11084
11269
  * * Revoked
11085
11270
  */
11086
11271
  get Status(): 'Active' | 'Pending' | 'Revoked';
@@ -11130,9 +11315,9 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
11130
11315
  * * Default Value: None
11131
11316
  * * Value List Type: List
11132
11317
  * * Possible Values
11133
- * * Remove
11134
- * * None
11135
11318
  * * Compact
11319
+ * * None
11320
+ * * Remove
11136
11321
  * * Description: How to handle expired action results: None (no expiration, default), Remove (delete message entirely), Compact (reduce size via CompactMode while preserving key information).
11137
11322
  */
11138
11323
  get ResultExpirationMode(): 'Compact' | 'None' | 'Remove';
@@ -11250,9 +11435,9 @@ export declare class AIAgentLearningCycleEntity extends BaseEntity<AIAgentLearni
11250
11435
  * * SQL Data Type: nvarchar(20)
11251
11436
  * * Value List Type: List
11252
11437
  * * Possible Values
11253
- * * In-Progress
11254
- * * Failed
11255
11438
  * * Complete
11439
+ * * Failed
11440
+ * * In-Progress
11256
11441
  * * Description: Status of the learning cycle (In-Progress, Complete, or Failed).
11257
11442
  */
11258
11443
  get Status(): 'Complete' | 'Failed' | 'In-Progress';
@@ -11518,8 +11703,8 @@ export declare class AIAgentNoteEntity extends BaseEntity<AIAgentNoteEntityType>
11518
11703
  * * SQL Data Type: nvarchar(20)
11519
11704
  * * Value List Type: List
11520
11705
  * * Possible Values
11521
- * * User
11522
11706
  * * Global
11707
+ * * User
11523
11708
  * * Description: Indicates the type of note, either User-specific or Global.
11524
11709
  */
11525
11710
  get Type(): 'Global' | 'User';
@@ -11617,10 +11802,10 @@ export declare class AIAgentRequestEntity extends BaseEntity<AIAgentRequestEntit
11617
11802
  * * SQL Data Type: nvarchar(20)
11618
11803
  * * Value List Type: List
11619
11804
  * * Possible Values
11620
- * * Canceled
11621
11805
  * * Approved
11622
- * * Requested
11806
+ * * Canceled
11623
11807
  * * Rejected
11808
+ * * Requested
11624
11809
  * * Description: Current status of the request (Requested, Approved, Rejected, Canceled).
11625
11810
  */
11626
11811
  get Status(): 'Approved' | 'Canceled' | 'Rejected' | 'Requested';
@@ -11911,10 +12096,16 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
11911
12096
  * * Field Name: Status
11912
12097
  * * Display Name: Status
11913
12098
  * * SQL Data Type: nvarchar(20)
12099
+ * * Default Value: Pending
12100
+ * * Value List Type: List
12101
+ * * Possible Values
12102
+ * * Active
12103
+ * * Disabled
12104
+ * * Pending
11914
12105
  * * Description: Current status of the AI agent. Active agents can be executed, Disabled agents are inactive, and Pending agents are awaiting configuration or approval. Allowed values: Active, Disabled, Pending.
11915
12106
  */
11916
- get Status(): string | null;
11917
- set Status(value: string | null);
12107
+ get Status(): 'Active' | 'Disabled' | 'Pending';
12108
+ set Status(value: 'Active' | 'Disabled' | 'Pending');
11918
12109
  /**
11919
12110
  * * Field Name: DriverClass
11920
12111
  * * Display Name: Driver Class
@@ -12087,8 +12278,8 @@ if this limit is exceeded.
12087
12278
  * * Default Value: Fail
12088
12279
  * * Value List Type: List
12089
12280
  * * Possible Values
12090
- * * Warn
12091
12281
  * * Fail
12282
+ * * Warn
12092
12283
  * * Description: Determines how to handle StartingPayloadValidation failures. Fail = reject invalid input, Warn = log warning but proceed.
12093
12284
  */
12094
12285
  get StartingPayloadValidationMode(): 'Fail' | 'Warn';
@@ -12108,8 +12299,8 @@ if this limit is exceeded.
12108
12299
  * * Value List Type: List
12109
12300
  * * Possible Values
12110
12301
  * * Failed
12111
- * * Success
12112
12302
  * * Retry
12303
+ * * Success
12113
12304
  * * Description: Controls how Chat next steps are handled. When null (default), Chat propagates to caller. When set to Success, Failed, or Retry, Chat steps are remapped to that value and re-validated.
12114
12305
  */
12115
12306
  get ChatHandlingOption(): 'Failed' | 'Retry' | 'Success' | null;
@@ -12140,14 +12331,44 @@ if this limit is exceeded.
12140
12331
  * * Default Value: Any
12141
12332
  * * Value List Type: List
12142
12333
  * * Possible Values
12143
- * * Sub-Agent
12144
12334
  * * Any
12335
+ * * Sub-Agent
12145
12336
  * * Top-Level
12146
12337
  * * Description: Controls how the agent can be invoked: Any (default - can be top-level or sub-agent), Top-Level (only callable as primary agent), Sub-Agent (only callable as sub-agent). Used to filter available agents in tools like Sage.
12147
12338
  */
12148
12339
  get InvocationMode(): 'Any' | 'Sub-Agent' | 'Top-Level';
12149
12340
  set InvocationMode(value: 'Any' | 'Sub-Agent' | 'Top-Level');
12150
12341
  /**
12342
+ * * Field Name: ArtifactCreationMode
12343
+ * * Display Name: Artifact Creation Mode
12344
+ * * SQL Data Type: nvarchar(20)
12345
+ * * Default Value: Always
12346
+ * * Value List Type: List
12347
+ * * Possible Values
12348
+ * * Never
12349
+ * * Always
12350
+ * * System Only
12351
+ * * Description: Controls how artifacts are created from this agent's payloads. "Always" creates visible artifacts, "Never" skips artifact creation, "System Only" creates hidden system artifacts.
12352
+ */
12353
+ get ArtifactCreationMode(): 'Always' | 'Never' | 'System Only';
12354
+ set ArtifactCreationMode(value: 'Always' | 'Never' | 'System Only');
12355
+ /**
12356
+ * * Field Name: FunctionalRequirements
12357
+ * * Display Name: Functional Requirements
12358
+ * * SQL Data Type: nvarchar(MAX)
12359
+ * * Description: Detailed markdown formatted requirements that explain the business goals of the agent without specific technical implementation details.
12360
+ */
12361
+ get FunctionalRequirements(): string | null;
12362
+ set FunctionalRequirements(value: string | null);
12363
+ /**
12364
+ * * Field Name: TechnicalDesign
12365
+ * * Display Name: Technical Design
12366
+ * * SQL Data Type: nvarchar(MAX)
12367
+ * * Description: Detailed markdown that explains the structure of the agent including agent architecture, actions, sub-agents, prompts, and payload structure.
12368
+ */
12369
+ get TechnicalDesign(): string | null;
12370
+ set TechnicalDesign(value: string | null);
12371
+ /**
12151
12372
  * * Field Name: Parent
12152
12373
  * * Display Name: Parent
12153
12374
  * * SQL Data Type: nvarchar(255)
@@ -12842,11 +13063,11 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
12842
13063
  * * Default Value: Any
12843
13064
  * * Value List Type: List
12844
13065
  * * Possible Values
12845
- * * Markdown
13066
+ * * Any
12846
13067
  * * JSON
12847
- * * Text
13068
+ * * Markdown
12848
13069
  * * ModelSpecific
12849
- * * Any
13070
+ * * Text
12850
13071
  * * Description: Specifies the expected response format for the AI model. Options include Any, Text, Markdown, JSON, and ModelSpecific. Defaults to Any if not specified.
12851
13072
  */
12852
13073
  get ResponseFormat(): 'Any' | 'JSON' | 'Markdown' | 'ModelSpecific' | 'Text';
@@ -12884,8 +13105,8 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
12884
13105
  * * Default Value: Default
12885
13106
  * * Value List Type: List
12886
13107
  * * Possible Values
12887
- * * Default
12888
13108
  * * ByPower
13109
+ * * Default
12889
13110
  * * Specific
12890
13111
  * * Description: Determines how models are selected for this prompt (Default, Specific, ByPower).
12891
13112
  */
@@ -12899,8 +13120,8 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
12899
13120
  * * Value List Type: List
12900
13121
  * * Possible Values
12901
13122
  * * Balanced
12902
- * * Lowest
12903
13123
  * * Highest
13124
+ * * Lowest
12904
13125
  * * Description: When using ByPower selection strategy, determines whether to prefer highest, lowest, or balanced power models.
12905
13126
  */
12906
13127
  get PowerPreference(): 'Balanced' | 'Highest' | 'Lowest';
@@ -12913,9 +13134,9 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
12913
13134
  * * Value List Type: List
12914
13135
  * * Possible Values
12915
13136
  * * ConfigParam
12916
- * * StaticCount
12917
- * * None
12918
13137
  * * ModelSpecific
13138
+ * * None
13139
+ * * StaticCount
12919
13140
  * * Description: Controls parallelization: None (no parallelization), StaticCount (use AIPrompt.ParallelCount for total runs), ConfigParam (use config param specified in ParallelConfigParam for total runs), or ModelSpecific (check each AIPromptModel's individual settings).
12920
13141
  */
12921
13142
  get ParallelizationMode(): 'ConfigParam' | 'ModelSpecific' | 'None' | 'StaticCount';
@@ -12943,11 +13164,11 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
12943
13164
  * * Default Value: string
12944
13165
  * * Value List Type: List
12945
13166
  * * Possible Values
12946
- * * number
13167
+ * * boolean
12947
13168
  * * date
12948
- * * string
13169
+ * * number
12949
13170
  * * object
12950
- * * boolean
13171
+ * * string
12951
13172
  * * Description: The expected data type of the prompt output: string, number, boolean, date, or object.
12952
13173
  */
12953
13174
  get OutputType(): 'boolean' | 'date' | 'number' | 'object' | 'string';
@@ -12967,9 +13188,9 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
12967
13188
  * * Default Value: Warn
12968
13189
  * * Value List Type: List
12969
13190
  * * Possible Values
13191
+ * * None
12970
13192
  * * Strict
12971
13193
  * * Warn
12972
- * * None
12973
13194
  * * Description: Determines how validation failures are handled: Strict (fail), Warn (log warning), or None (ignore).
12974
13195
  */
12975
13196
  get ValidationBehavior(): 'None' | 'Strict' | 'Warn';
@@ -12999,9 +13220,9 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
12999
13220
  * * Default Value: Fixed
13000
13221
  * * Value List Type: List
13001
13222
  * * Possible Values
13223
+ * * Exponential
13002
13224
  * * Fixed
13003
13225
  * * Linear
13004
- * * Exponential
13005
13226
  * * Description: Strategy for calculating retry delays: Fixed (same delay each time), Exponential (doubling delay), or Linear (linearly increasing delay).
13006
13227
  */
13007
13228
  get RetryStrategy(): 'Exponential' | 'Fixed' | 'Linear';
@@ -13096,10 +13317,10 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13096
13317
  * * Default Value: System
13097
13318
  * * Value List Type: List
13098
13319
  * * Possible Values
13099
- * * SystemOrUser
13100
13320
  * * Assistant
13101
- * * User
13102
13321
  * * System
13322
+ * * SystemOrUser
13323
+ * * User
13103
13324
  * * Description: Determines how the prompt is used in conversation: System (always first message), User (positioned by PromptPosition), Assistant (positioned by PromptPosition), or SystemOrUser (try system first, fallback to user last if system slot taken)
13104
13325
  */
13105
13326
  get PromptRole(): 'Assistant' | 'System' | 'SystemOrUser' | 'User';
@@ -13205,14 +13426,14 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13205
13426
  * * Default Value: SameModelDifferentVendor
13206
13427
  * * Value List Type: List
13207
13428
  * * Possible Values
13429
+ * * NextBestModel
13430
+ * * NextBestModel
13431
+ * * None
13208
13432
  * * None
13209
13433
  * * PowerRank
13210
13434
  * * PowerRank
13211
13435
  * * SameModelDifferentVendor
13212
- * * NextBestModel
13213
- * * NextBestModel
13214
13436
  * * SameModelDifferentVendor
13215
- * * None
13216
13437
  * * Description: Failover strategy to use when the primary model fails. Options: SameModelDifferentVendor, NextBestModel, PowerRank, None
13217
13438
  */
13218
13439
  get FailoverStrategy(): 'NextBestModel' | 'NextBestModel' | 'None' | 'None' | 'PowerRank' | 'PowerRank' | 'SameModelDifferentVendor' | 'SameModelDifferentVendor';
@@ -13242,12 +13463,12 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13242
13463
  * * Default Value: PreferSameModel
13243
13464
  * * Value List Type: List
13244
13465
  * * Possible Values
13245
- * * RequireSameModel
13246
- * * RequireSameModel
13247
13466
  * * PreferDifferentModel
13248
13467
  * * PreferDifferentModel
13249
13468
  * * PreferSameModel
13250
13469
  * * PreferSameModel
13470
+ * * RequireSameModel
13471
+ * * RequireSameModel
13251
13472
  * * Description: Strategy for selecting failover models. Options: PreferSameModel, PreferDifferentModel, RequireSameModel
13252
13473
  */
13253
13474
  get FailoverModelStrategy(): 'PreferDifferentModel' | 'PreferDifferentModel' | 'PreferSameModel' | 'PreferSameModel' | 'RequireSameModel' | 'RequireSameModel';
@@ -13259,14 +13480,14 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13259
13480
  * * Default Value: All
13260
13481
  * * Value List Type: List
13261
13482
  * * Possible Values
13262
- * * ServiceErrorOnly
13263
- * * RateLimitOnly
13264
- * * NetworkOnly
13265
13483
  * * All
13484
+ * * All
13485
+ * * NetworkOnly
13266
13486
  * * NetworkOnly
13267
13487
  * * RateLimitOnly
13488
+ * * RateLimitOnly
13489
+ * * ServiceErrorOnly
13268
13490
  * * ServiceErrorOnly
13269
- * * All
13270
13491
  * * Description: Types of errors that should trigger failover. Options: All, NetworkOnly, RateLimitOnly, ServiceErrorOnly
13271
13492
  */
13272
13493
  get FailoverErrorScope(): 'All' | 'All' | 'NetworkOnly' | 'NetworkOnly' | 'RateLimitOnly' | 'RateLimitOnly' | 'ServiceErrorOnly' | 'ServiceErrorOnly';
@@ -13396,8 +13617,8 @@ export declare class AIResultCacheEntity extends BaseEntity<AIResultCacheEntityT
13396
13617
  * * SQL Data Type: nvarchar(50)
13397
13618
  * * Value List Type: List
13398
13619
  * * Possible Values
13399
- * * Expired
13400
13620
  * * Active
13621
+ * * Expired
13401
13622
  * * Description: The status of this result, indicating whether it is currently active or expired.
13402
13623
  */
13403
13624
  get Status(): 'Active' | 'Expired';
@@ -13935,8 +14156,8 @@ export declare class AuditLogEntity extends BaseEntity<AuditLogEntityType> {
13935
14156
  * * Default Value: Allow
13936
14157
  * * Value List Type: List
13937
14158
  * * Possible Values
13938
- * * Success
13939
14159
  * * Failed
14160
+ * * Success
13940
14161
  */
13941
14162
  get Status(): 'Failed' | 'Success';
13942
14163
  set Status(value: 'Failed' | 'Success');
@@ -14349,8 +14570,8 @@ export declare class CommunicationLogEntity extends BaseEntity<CommunicationLogE
14349
14570
  * * SQL Data Type: nvarchar(20)
14350
14571
  * * Value List Type: List
14351
14572
  * * Possible Values
14352
- * * Sending
14353
14573
  * * Receiving
14574
+ * * Sending
14354
14575
  * * Description: The direction of the communication log (Sending or Receiving).
14355
14576
  */
14356
14577
  get Direction(): 'Receiving' | 'Sending';
@@ -14370,8 +14591,8 @@ export declare class CommunicationLogEntity extends BaseEntity<CommunicationLogE
14370
14591
  * * Default Value: Pending
14371
14592
  * * Value List Type: List
14372
14593
  * * Possible Values
14373
- * * Failed
14374
14594
  * * Complete
14595
+ * * Failed
14375
14596
  * * In-Progress
14376
14597
  * * Pending
14377
14598
  * * Description: The status of the logged message (Pending, In-Progress, Complete, Failed).
@@ -14483,8 +14704,8 @@ export declare class CommunicationProviderMessageTypeEntity extends BaseEntity<C
14483
14704
  * * Default Value: Disabled
14484
14705
  * * Value List Type: List
14485
14706
  * * Possible Values
14486
- * * Disabled
14487
14707
  * * Active
14708
+ * * Disabled
14488
14709
  * * Description: The status of the provider message type (Disabled or Active).
14489
14710
  */
14490
14711
  get Status(): 'Active' | 'Disabled';
@@ -14657,6 +14878,15 @@ export declare class CommunicationProviderEntity extends BaseEntity<Communicatio
14657
14878
  */
14658
14879
  get SupportsReplying(): boolean;
14659
14880
  set SupportsReplying(value: boolean);
14881
+ /**
14882
+ * * Field Name: SupportsDrafts
14883
+ * * Display Name: Supports Drafts
14884
+ * * SQL Data Type: bit
14885
+ * * Default Value: 0
14886
+ * * Description: Whether or not the provider supports creating draft messages
14887
+ */
14888
+ get SupportsDrafts(): boolean;
14889
+ set SupportsDrafts(value: boolean);
14660
14890
  }
14661
14891
  /**
14662
14892
  * Communication Runs - strongly typed entity sub-class
@@ -14704,8 +14934,8 @@ export declare class CommunicationRunEntity extends BaseEntity<CommunicationRunE
14704
14934
  * * SQL Data Type: nvarchar(20)
14705
14935
  * * Value List Type: List
14706
14936
  * * Possible Values
14707
- * * Sending
14708
14937
  * * Receiving
14938
+ * * Sending
14709
14939
  * * Description: The direction of the communication run (Sending or Receiving).
14710
14940
  */
14711
14941
  get Direction(): 'Receiving' | 'Sending';
@@ -14718,8 +14948,8 @@ export declare class CommunicationRunEntity extends BaseEntity<CommunicationRunE
14718
14948
  * * Possible Values
14719
14949
  * * Complete
14720
14950
  * * Failed
14721
- * * Pending
14722
14951
  * * In-Progress
14952
+ * * Pending
14723
14953
  * * Description: The status of the communication run (Pending, In-Progress, Complete, Failed).
14724
14954
  */
14725
14955
  get Status(): 'Complete' | 'Failed' | 'In-Progress' | 'Pending';
@@ -15009,13 +15239,13 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity<Compan
15009
15239
  * * SQL Data Type: nvarchar(12)
15010
15240
  * * Value List Type: List
15011
15241
  * * Possible Values
15012
- * * PATCH
15013
- * * PUT
15014
15242
  * * DELETE
15243
+ * * GET
15015
15244
  * * HEAD
15016
15245
  * * OPTIONS
15246
+ * * PATCH
15017
15247
  * * POST
15018
- * * GET
15248
+ * * PUT
15019
15249
  * * Description: HTTP method used for the API call (GET, POST, PUT, DELETE, PATCH).
15020
15250
  */
15021
15251
  get RequestMethod(): 'DELETE' | 'GET' | 'HEAD' | 'OPTIONS' | 'PATCH' | 'POST' | 'PUT' | null;
@@ -15257,10 +15487,10 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity<CompanyInteg
15257
15487
  * * Default Value: Pending
15258
15488
  * * Value List Type: List
15259
15489
  * * Possible Values
15260
- * * Pending
15261
15490
  * * Failed
15262
- * * Success
15263
15491
  * * In Progress
15492
+ * * Pending
15493
+ * * Success
15264
15494
  * * Description: Status of the integration run. Possible values: Pending, In Progress, Success, Failed.
15265
15495
  */
15266
15496
  get Status(): 'Failed' | 'In Progress' | 'Pending' | 'Success';
@@ -16506,8 +16736,8 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
16506
16736
  * * Value List Type: List
16507
16737
  * * Possible Values
16508
16738
  * * AI
16509
- * * User
16510
16739
  * * Error
16740
+ * * User
16511
16741
  * * Description: The role of the message sender (user, assistant, system, function).
16512
16742
  */
16513
16743
  get Role(): 'AI' | 'Error' | 'User';
@@ -16595,7 +16825,8 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
16595
16825
  /**
16596
16826
  * * Field Name: ArtifactID
16597
16827
  * * Display Name: Artifact ID
16598
- * * SQL Data Type: uniqueidentifier
16828
+ * *
16829
+ * * @deprecated This field is deprecated and will be removed in a future version. Using it will result in console warnings.SQL Data Type: uniqueidentifier
16599
16830
  * * Related Entity/Foreign Key: MJ: Conversation Artifacts (vwConversationArtifacts.ID)
16600
16831
  * * Description: Optional reference to a conversation artifact associated with this conversation detail
16601
16832
  */
@@ -16604,7 +16835,8 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
16604
16835
  /**
16605
16836
  * * Field Name: ArtifactVersionID
16606
16837
  * * Display Name: Artifact Version ID
16607
- * * SQL Data Type: uniqueidentifier
16838
+ * *
16839
+ * * @deprecated This field is deprecated and will be removed in a future version. Using it will result in console warnings.SQL Data Type: uniqueidentifier
16608
16840
  * * Related Entity/Foreign Key: MJ: Conversation Artifact Versions (vwConversationArtifactVersions.ID)
16609
16841
  * * Description: Optional reference to a specific version of a conversation artifact associated with this conversation detail
16610
16842
  */
@@ -16652,9 +16884,9 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
16652
16884
  * * Default Value: Complete
16653
16885
  * * Value List Type: List
16654
16886
  * * Possible Values
16655
- * * In-Progress
16656
16887
  * * Complete
16657
16888
  * * Error
16889
+ * * In-Progress
16658
16890
  * * Description: Status of the conversation message. Complete indicates finished processing, In-Progress indicates active agent work, Error indicates processing failed.
16659
16891
  */
16660
16892
  get Status(): 'Complete' | 'Error' | 'In-Progress';
@@ -17082,9 +17314,9 @@ export declare class DashboardEntity extends BaseEntity<DashboardEntityType> {
17082
17314
  * * Default Value: Config
17083
17315
  * * Value List Type: List
17084
17316
  * * Possible Values
17317
+ * * Code
17085
17318
  * * Config
17086
17319
  * * Dynamic Code
17087
- * * Code
17088
17320
  * * Description: Dashboard type supporting Config (metadata-driven), Code (compiled TypeScript), and Dynamic Code (Skip-generated runtime JavaScript/React) options
17089
17321
  */
17090
17322
  get Type(): 'Code' | 'Config' | 'Dynamic Code';
@@ -17104,8 +17336,8 @@ export declare class DashboardEntity extends BaseEntity<DashboardEntityType> {
17104
17336
  * * Default Value: Global
17105
17337
  * * Value List Type: List
17106
17338
  * * Possible Values
17107
- * * Global
17108
17339
  * * App
17340
+ * * Global
17109
17341
  * * Description: Scope of the dashboard: Global or App-specific
17110
17342
  */
17111
17343
  get Scope(): 'App' | 'Global';
@@ -17697,8 +17929,8 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity<DuplicateR
17697
17929
  * * Value List Type: List
17698
17930
  * * Possible Values
17699
17931
  * * Approved
17700
- * * Rejected
17701
17932
  * * Pending
17933
+ * * Rejected
17702
17934
  * * Description: Current approval status of the proposed action (Pending, Approved, Rejected).
17703
17935
  */
17704
17936
  get ApprovalStatus(): 'Approved' | 'Pending' | 'Rejected';
@@ -17804,10 +18036,10 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
17804
18036
  * * Default Value: Pending
17805
18037
  * * Value List Type: List
17806
18038
  * * Possible Values
17807
- * * Error
17808
18039
  * * Complete
17809
- * * Skipped
18040
+ * * Error
17810
18041
  * * Pending
18042
+ * * Skipped
17811
18043
  * * Description: Status of duplicate analysis for this record (Pending, Complete, Error).
17812
18044
  */
17813
18045
  get MatchStatus(): 'Complete' | 'Error' | 'Pending' | 'Skipped';
@@ -17835,10 +18067,10 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
17835
18067
  * * Default Value: Not Applicable
17836
18068
  * * Value List Type: List
17837
18069
  * * Possible Values
17838
- * * Pending
18070
+ * * Complete
17839
18071
  * * Error
17840
18072
  * * Not Applicable
17841
- * * Complete
18073
+ * * Pending
17842
18074
  * * Description: Status of any merge operations for this record (Not Applicable, Pending, Complete, Failed).
17843
18075
  */
17844
18076
  get MergeStatus(): 'Complete' | 'Error' | 'Not Applicable' | 'Pending';
@@ -17945,8 +18177,8 @@ export declare class DuplicateRunEntity extends BaseEntity<DuplicateRunEntityTyp
17945
18177
  * * Value List Type: List
17946
18178
  * * Possible Values
17947
18179
  * * Approved
17948
- * * Rejected
17949
18180
  * * Pending
18181
+ * * Rejected
17950
18182
  * * Description: Overall approval status for the duplicate run results (Pending, Approved, Rejected).
17951
18183
  */
17952
18184
  get ApprovalStatus(): 'Approved' | 'Pending' | 'Rejected';
@@ -17975,9 +18207,9 @@ export declare class DuplicateRunEntity extends BaseEntity<DuplicateRunEntityTyp
17975
18207
  * * Value List Type: List
17976
18208
  * * Possible Values
17977
18209
  * * Complete
18210
+ * * Failed
17978
18211
  * * In Progress
17979
18212
  * * Pending
17980
- * * Failed
17981
18213
  * * Description: Current processing status of the duplicate detection run (Pending, Running, Complete, Failed).
17982
18214
  */
17983
18215
  get ProcessingStatus(): 'Complete' | 'Failed' | 'In Progress' | 'Pending';
@@ -18747,8 +18979,8 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
18747
18979
  * * Default Value: Hard
18748
18980
  * * Value List Type: List
18749
18981
  * * Possible Values
18750
- * * Soft
18751
18982
  * * Hard
18983
+ * * Soft
18752
18984
  * * Description: Hard deletes physically remove rows from the underlying BaseTable. Soft deletes do not remove rows but instead mark the row as deleted by using the special field __mj_DeletedAt which will automatically be added to the entity's basetable by the CodeGen tool.
18753
18985
  */
18754
18986
  get DeleteType(): 'Hard' | 'Soft';
@@ -18777,8 +19009,8 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
18777
19009
  * * Default Value: Search
18778
19010
  * * Value List Type: List
18779
19011
  * * Possible Values
18780
- * * Search
18781
19012
  * * Dropdown
19013
+ * * Search
18782
19014
  * * Description: When another entity links to this entity with a foreign key, this is the default component type that will be used in the UI. CodeGen will populate the RelatedEntityDisplayType column in the Entity Fields entity with whatever is provided here whenever a new foreign key is detected by CodeGen. The selection can be overridden on a per-foreign-key basis in each row of the Entity Fields entity.
18783
19015
  */
18784
19016
  get RelationshipDefaultDisplayType(): 'Dropdown' | 'Search';
@@ -18853,9 +19085,9 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
18853
19085
  * * Default Value: None
18854
19086
  * * Value List Type: List
18855
19087
  * * Possible Values
19088
+ * * All
18856
19089
  * * None
18857
19090
  * * Sample
18858
- * * All
18859
19091
  * * Description: Determines how entity rows should be packaged for external use. Options include None, Sample, and All. Defaults to None.
18860
19092
  */
18861
19093
  get RowsToPackWithSchema(): 'All' | 'None' | 'Sample';
@@ -18867,9 +19099,9 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
18867
19099
  * * Default Value: random
18868
19100
  * * Value List Type: List
18869
19101
  * * Possible Values
18870
- * * top n
18871
- * * random
18872
19102
  * * bottom n
19103
+ * * random
19104
+ * * top n
18873
19105
  * * Description: Defines the sampling method for row packing when RowsToPackWithSchema is set to Sample. Options include random, top n, and bottom n. Defaults to random.
18874
19106
  */
18875
19107
  get RowsToPackSampleMethod(): 'bottom n' | 'random' | 'top n';
@@ -18922,9 +19154,9 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
18922
19154
  * * Default Value: Active
18923
19155
  * * Value List Type: List
18924
19156
  * * Possible Values
19157
+ * * Active
18925
19158
  * * Deprecated
18926
19159
  * * Disabled
18927
- * * Active
18928
19160
  * * Description: Status of the entity. Active: fully functional; Deprecated: functional but generates console warnings when used; Disabled: not available for use even though metadata and physical table remain.
18929
19161
  */
18930
19162
  get Status(): 'Active' | 'Deprecated' | 'Disabled';
@@ -19037,9 +19269,9 @@ export declare class EntityActionFilterEntity extends BaseEntity<EntityActionFil
19037
19269
  * * Default Value: Pending
19038
19270
  * * Value List Type: List
19039
19271
  * * Possible Values
19040
- * * Pending
19041
- * * Disabled
19042
19272
  * * Active
19273
+ * * Disabled
19274
+ * * Pending
19043
19275
  * * Description: Status of the entity action filter (Pending, Active, Disabled).
19044
19276
  */
19045
19277
  get Status(): 'Active' | 'Disabled' | 'Pending';
@@ -19186,8 +19418,8 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
19186
19418
  * * Default Value: Pending
19187
19419
  * * Value List Type: List
19188
19420
  * * Possible Values
19189
- * * Disabled
19190
19421
  * * Active
19422
+ * * Disabled
19191
19423
  * * Pending
19192
19424
  * * Description: Status of the entity action invocation (Pending, Active, Disabled).
19193
19425
  */
@@ -19268,9 +19500,9 @@ export declare class EntityActionParamEntity extends BaseEntity<EntityActionPara
19268
19500
  * * SQL Data Type: nvarchar(20)
19269
19501
  * * Value List Type: List
19270
19502
  * * Possible Values
19271
- * * Script
19272
- * * Entity Object
19273
19503
  * * Entity Field
19504
+ * * Entity Object
19505
+ * * Script
19274
19506
  * * Static
19275
19507
  * * Description: Type of the value, which can be Static, Entity Object, or Script.
19276
19508
  */
@@ -19481,8 +19713,8 @@ export declare class EntityAIActionEntity extends BaseEntity<EntityAIActionEntit
19481
19713
  * * Default Value: After Save
19482
19714
  * * Value List Type: List
19483
19715
  * * Possible Values
19484
- * * before save
19485
19716
  * * after save
19717
+ * * before save
19486
19718
  * * Description: The entity event that triggers this AI action (After Save, Before Delete, etc.).
19487
19719
  */
19488
19720
  get TriggerEvent(): 'after save' | 'before save';
@@ -19796,8 +20028,8 @@ export declare class EntityDocumentRunEntity extends BaseEntity<EntityDocumentRu
19796
20028
  * * Value List Type: List
19797
20029
  * * Possible Values
19798
20030
  * * Complete
19799
- * * Pending
19800
20031
  * * Failed
20032
+ * * Pending
19801
20033
  * * Description: Can be Pending, In Progress, Completed, or Failed
19802
20034
  */
19803
20035
  get Status(): 'Complete' | 'Failed' | 'Pending';
@@ -20052,8 +20284,8 @@ export declare class EntityDocumentEntity extends BaseEntity<EntityDocumentEntit
20052
20284
  * * Default Value: Active
20053
20285
  * * Value List Type: List
20054
20286
  * * Possible Values
20055
- * * Inactive
20056
20287
  * * Active
20288
+ * * Inactive
20057
20289
  */
20058
20290
  get Status(): 'Active' | 'Inactive';
20059
20291
  set Status(value: 'Active' | 'Inactive');
@@ -20395,9 +20627,9 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20395
20627
  * * Default Value: None
20396
20628
  * * Value List Type: List
20397
20629
  * * Possible Values
20630
+ * * List
20398
20631
  * * ListOrUserEntry
20399
20632
  * * None
20400
- * * List
20401
20633
  * * Description: Possible Values of None, List, ListOrUserEntry - the last option meaning that the list of possible values are options, but a user can enter anything else desired too.
20402
20634
  */
20403
20635
  get ValueListType(): 'List' | 'ListOrUserEntry' | 'None';
@@ -20408,18 +20640,18 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20408
20640
  * * SQL Data Type: nvarchar(50)
20409
20641
  * * Value List Type: List
20410
20642
  * * Possible Values
20411
- * * SMS
20412
- * * Email
20413
- * * WhatsApp
20414
- * * MSTeams
20415
- * * URL
20416
- * * Skype
20417
20643
  * * Code
20644
+ * * Email
20418
20645
  * * FaceTime
20419
- * * SIP
20420
20646
  * * Geo
20647
+ * * MSTeams
20421
20648
  * * Other
20649
+ * * SIP
20650
+ * * SMS
20651
+ * * Skype
20422
20652
  * * Tel
20653
+ * * URL
20654
+ * * WhatsApp
20423
20655
  * * ZoomMtg
20424
20656
  * * Description: Defines extended behaviors for a field such as for Email, Web URLs, Code, etc.
20425
20657
  */
@@ -20431,12 +20663,12 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20431
20663
  * * SQL Data Type: nvarchar(50)
20432
20664
  * * Value List Type: List
20433
20665
  * * Possible Values
20666
+ * * CSS
20434
20667
  * * HTML
20435
20668
  * * JavaScript
20436
- * * CSS
20437
- * * TypeScript
20438
- * * SQL
20439
20669
  * * Other
20670
+ * * SQL
20671
+ * * TypeScript
20440
20672
  * * Description: The type of code associated with this field. Only used when the ExtendedType field is set to "Code"
20441
20673
  */
20442
20674
  get CodeType(): 'CSS' | 'HTML' | 'JavaScript' | 'Other' | 'SQL' | 'TypeScript' | null;
@@ -20527,8 +20759,8 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20527
20759
  * * Value List Type: List
20528
20760
  * * Possible Values
20529
20761
  * * Category
20530
- * * Top
20531
20762
  * * Details
20763
+ * * Top
20532
20764
  * * Description: When set to Top, the field will be placed in a "top area" on the top of a generated form and visible regardless of which tab is displayed. When set to "category" Options: Top, Category, Details
20533
20765
  */
20534
20766
  get GeneratedFormSection(): 'Category' | 'Details' | 'Top';
@@ -20638,9 +20870,9 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20638
20870
  * * Default Value: Auto
20639
20871
  * * Value List Type: List
20640
20872
  * * Possible Values
20873
+ * * All
20641
20874
  * * Auto
20642
20875
  * * None
20643
- * * All
20644
20876
  * * Description: Determines whether values for the field should be included when the schema is packed. Options: Auto (include manually set or auto-derived values), None (exclude all values), All (include all distinct values from the table). Defaults to Auto.
20645
20877
  */
20646
20878
  get ValuesToPackWithSchema(): 'All' | 'Auto' | 'None';
@@ -20652,8 +20884,8 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20652
20884
  * * Default Value: Active
20653
20885
  * * Value List Type: List
20654
20886
  * * Possible Values
20655
- * * Deprecated
20656
20887
  * * Active
20888
+ * * Deprecated
20657
20889
  * * Disabled
20658
20890
  * * Description: Current status of the entity field - Active fields are available for use, Deprecated fields are discouraged but still functional, Disabled fields are not available for use
20659
20891
  */
@@ -21090,8 +21322,8 @@ export declare class EntityRelationshipDisplayComponentEntity extends BaseEntity
21090
21322
  * * SQL Data Type: nvarchar(20)
21091
21323
  * * Value List Type: List
21092
21324
  * * Possible Values
21093
- * * Many to Many
21094
21325
  * * Both
21326
+ * * Many to Many
21095
21327
  * * One to Many
21096
21328
  * * Description: The type of relationship the component displays. Valid values are "One to Many", "Many to Many", or "Both".
21097
21329
  */
@@ -22291,9 +22523,9 @@ export declare class GeneratedCodeEntity extends BaseEntity<GeneratedCodeEntityT
22291
22523
  * * Default Value: Pending
22292
22524
  * * Value List Type: List
22293
22525
  * * Possible Values
22526
+ * * Approved
22294
22527
  * * Pending
22295
22528
  * * Rejected
22296
- * * Approved
22297
22529
  * * Description: Status of the generated code, e.g., Pending, Approved, or Rejected.
22298
22530
  */
22299
22531
  get Status(): 'Approved' | 'Pending' | 'Rejected';
@@ -22305,13 +22537,13 @@ export declare class GeneratedCodeEntity extends BaseEntity<GeneratedCodeEntityT
22305
22537
  * * Default Value: TypeScript
22306
22538
  * * Value List Type: List
22307
22539
  * * Possible Values
22540
+ * * CSS
22541
+ * * HTML
22542
+ * * JavaScript
22308
22543
  * * Other
22309
22544
  * * Python
22310
- * * JavaScript
22311
22545
  * * SQL
22312
- * * HTML
22313
22546
  * * TypeScript
22314
- * * CSS
22315
22547
  * * Description: Programming language of the generated code (TypeScript, SQL, HTML, CSS, JavaScript, Python, or Other).
22316
22548
  */
22317
22549
  get Language(): 'CSS' | 'HTML' | 'JavaScript' | 'Other' | 'Python' | 'SQL' | 'TypeScript';
@@ -22596,9 +22828,9 @@ export declare class LibraryEntity extends BaseEntity<LibraryEntityType> {
22596
22828
  * * Default Value: Pending
22597
22829
  * * Value List Type: List
22598
22830
  * * Possible Values
22831
+ * * Active
22599
22832
  * * Disabled
22600
22833
  * * Pending
22601
- * * Active
22602
22834
  * * Description: Status of the library, only libraries marked as Active will be available for use by generated code. If a library was once active but no longer is, existing code that used the library will not be affected.
22603
22835
  */
22604
22836
  get Status(): 'Active' | 'Disabled' | 'Pending';
@@ -22687,12 +22919,12 @@ export declare class LibraryItemEntity extends BaseEntity<LibraryItemEntityType>
22687
22919
  * * SQL Data Type: nvarchar(50)
22688
22920
  * * Value List Type: List
22689
22921
  * * Possible Values
22690
- * * Variable
22691
- * * Module
22692
- * * Function
22693
22922
  * * Class
22923
+ * * Function
22694
22924
  * * Interface
22925
+ * * Module
22695
22926
  * * Type
22927
+ * * Variable
22696
22928
  * * Description: Type of the library item for example Class, Interface, etc.
22697
22929
  */
22698
22930
  get Type(): 'Class' | 'Function' | 'Interface' | 'Module' | 'Type' | 'Variable';
@@ -22890,12 +23122,12 @@ export declare class ListDetailEntity extends BaseEntity<ListDetailEntityType> {
22890
23122
  * * Value List Type: List
22891
23123
  * * Possible Values
22892
23124
  * * Active
23125
+ * * Complete
22893
23126
  * * Disabled
22894
23127
  * * Error
22895
23128
  * * Other
22896
- * * Rejected
22897
23129
  * * Pending
22898
- * * Complete
23130
+ * * Rejected
22899
23131
  * * Description: Tracks the status of each individual list detail row to enable processing of various types and the use of the status column for filtering list detail rows within a list that are in a particular state.
22900
23132
  */
22901
23133
  get Status(): 'Active' | 'Complete' | 'Disabled' | 'Error' | 'Other' | 'Pending' | 'Rejected';
@@ -23092,9 +23324,9 @@ export declare class AccessControlRuleEntity extends BaseEntity<AccessControlRul
23092
23324
  * * Value List Type: List
23093
23325
  * * Possible Values
23094
23326
  * * Everyone
23327
+ * * Public
23095
23328
  * * Role
23096
23329
  * * User
23097
- * * Public
23098
23330
  * * Description: Type of grantee receiving permission (User, Role, Everyone, Public). "Everyone" means all authenticated users whereas "Public" means any authenticated OR anonymous user.
23099
23331
  */
23100
23332
  get GranteeType(): 'Everyone' | 'Public' | 'Role' | 'User';
@@ -23279,6 +23511,270 @@ export declare class AIAgentArtifactTypeEntity extends BaseEntity<AIAgentArtifac
23279
23511
  */
23280
23512
  get ArtifactType(): string;
23281
23513
  }
23514
+ /**
23515
+ * MJ: AI Agent Data Sources - strongly typed entity sub-class
23516
+ * * Schema: __mj
23517
+ * * Base Table: AIAgentDataSource
23518
+ * * Base View: vwAIAgentDataSources
23519
+ * * @description Defines data sources that should be preloaded into the data parameter before agent execution. Supports both RunView and RunQuery sources with configurable caching.
23520
+ * * Primary Key: ID
23521
+ * @extends {BaseEntity}
23522
+ * @class
23523
+ * @public
23524
+ */
23525
+ export declare class AIAgentDataSourceEntity extends BaseEntity<AIAgentDataSourceEntityType> {
23526
+ /**
23527
+ * Loads the MJ: AI Agent Data Sources record from the database
23528
+ * @param ID: string - primary key value to load the MJ: AI Agent Data Sources record.
23529
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
23530
+ * @returns {Promise<boolean>} - true if successful, false otherwise
23531
+ * @public
23532
+ * @async
23533
+ * @memberof AIAgentDataSourceEntity
23534
+ * @method
23535
+ * @override
23536
+ */
23537
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
23538
+ /**
23539
+ * Validate() method override for MJ: AI Agent Data Sources entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
23540
+ * * Table-Level: This rule ensures that if the cache policy is set to 'PerAgent', a cache timeout value must be provided. For other cache policies, providing a cache timeout is optional.
23541
+ * * Table-Level: This rule makes sure that if the source type is 'RunView', the entity name must be provided. If the source type is anything else, the entity name can be left blank.
23542
+ * * Table-Level: This rule ensures that when the Source Type is set to 'RunQuery', a Query Name must be provided. If Source Type is anything other than 'RunQuery', Query Name is optional.
23543
+ * @public
23544
+ * @method
23545
+ * @override
23546
+ */
23547
+ Validate(): ValidationResult;
23548
+ /**
23549
+ * This rule ensures that if the cache policy is set to 'PerAgent', a cache timeout value must be provided. For other cache policies, providing a cache timeout is optional.
23550
+ * @param result - the ValidationResult object to add any errors or warnings to
23551
+ * @public
23552
+ * @method
23553
+ */
23554
+ ValidateCacheTimeoutSecondsRequiredForPerAgentPolicy(result: ValidationResult): void;
23555
+ /**
23556
+ * This rule makes sure that if the source type is 'RunView', the entity name must be provided. If the source type is anything else, the entity name can be left blank.
23557
+ * @param result - the ValidationResult object to add any errors or warnings to
23558
+ * @public
23559
+ * @method
23560
+ */
23561
+ ValidateEntityNameRequiredWhenSourceTypeRunView(result: ValidationResult): void;
23562
+ /**
23563
+ * This rule ensures that when the Source Type is set to 'RunQuery', a Query Name must be provided. If Source Type is anything other than 'RunQuery', Query Name is optional.
23564
+ * @param result - the ValidationResult object to add any errors or warnings to
23565
+ * @public
23566
+ * @method
23567
+ */
23568
+ ValidateQueryNameRequiredWhenSourceTypeIsRunQuery(result: ValidationResult): void;
23569
+ /**
23570
+ * * Field Name: ID
23571
+ * * Display Name: ID
23572
+ * * SQL Data Type: uniqueidentifier
23573
+ * * Default Value: newsequentialid()
23574
+ */
23575
+ get ID(): string;
23576
+ set ID(value: string);
23577
+ /**
23578
+ * * Field Name: AgentID
23579
+ * * Display Name: Agent ID
23580
+ * * SQL Data Type: uniqueidentifier
23581
+ * * Related Entity/Foreign Key: AI Agents (vwAIAgents.ID)
23582
+ */
23583
+ get AgentID(): string;
23584
+ set AgentID(value: string);
23585
+ /**
23586
+ * * Field Name: Name
23587
+ * * Display Name: Name
23588
+ * * SQL Data Type: nvarchar(255)
23589
+ * * Description: Variable name for the data in the data parameter (e.g., "ALL_ENTITIES"). Must be unique within an agent.
23590
+ */
23591
+ get Name(): string;
23592
+ set Name(value: string);
23593
+ /**
23594
+ * * Field Name: Description
23595
+ * * Display Name: Description
23596
+ * * SQL Data Type: nvarchar(MAX)
23597
+ * * Description: Description of what this data source provides
23598
+ */
23599
+ get Description(): string | null;
23600
+ set Description(value: string | null);
23601
+ /**
23602
+ * * Field Name: SourceType
23603
+ * * Display Name: Source Type
23604
+ * * SQL Data Type: nvarchar(20)
23605
+ * * Default Value: RunView
23606
+ * * Value List Type: List
23607
+ * * Possible Values
23608
+ * * RunQuery
23609
+ * * RunView
23610
+ * * Description: Type of data source: RunView or RunQuery. Determines which parameters are used.
23611
+ */
23612
+ get SourceType(): 'RunQuery' | 'RunView';
23613
+ set SourceType(value: 'RunQuery' | 'RunView');
23614
+ /**
23615
+ * * Field Name: EntityName
23616
+ * * Display Name: Entity Name
23617
+ * * SQL Data Type: nvarchar(255)
23618
+ * * Description: Entity name for RunView data sources (e.g., "Entities", "AI Models")
23619
+ */
23620
+ get EntityName(): string | null;
23621
+ set EntityName(value: string | null);
23622
+ /**
23623
+ * * Field Name: ExtraFilter
23624
+ * * Display Name: Extra Filter
23625
+ * * SQL Data Type: nvarchar(MAX)
23626
+ * * Description: SQL WHERE clause filter for RunView data sources
23627
+ */
23628
+ get ExtraFilter(): string | null;
23629
+ set ExtraFilter(value: string | null);
23630
+ /**
23631
+ * * Field Name: OrderBy
23632
+ * * Display Name: Order By
23633
+ * * SQL Data Type: nvarchar(500)
23634
+ * * Description: SQL ORDER BY clause for RunView data sources
23635
+ */
23636
+ get OrderBy(): string | null;
23637
+ set OrderBy(value: string | null);
23638
+ /**
23639
+ * * Field Name: FieldsToRetrieve
23640
+ * * Display Name: Fields To Retrieve
23641
+ * * SQL Data Type: nvarchar(MAX)
23642
+ * * Description: JSON array of field names to return for RunView data sources (e.g., ["ID", "Name", "Description"])
23643
+ */
23644
+ get FieldsToRetrieve(): string | null;
23645
+ set FieldsToRetrieve(value: string | null);
23646
+ /**
23647
+ * * Field Name: ResultType
23648
+ * * Display Name: Result Type
23649
+ * * SQL Data Type: nvarchar(20)
23650
+ * * Default Value: simple
23651
+ * * Value List Type: List
23652
+ * * Possible Values
23653
+ * * entity_object
23654
+ * * simple
23655
+ * * Description: Result type for RunView: simple (default) or entity_object
23656
+ */
23657
+ get ResultType(): 'entity_object' | 'simple' | null;
23658
+ set ResultType(value: 'entity_object' | 'simple' | null);
23659
+ /**
23660
+ * * Field Name: QueryName
23661
+ * * Display Name: Query Name
23662
+ * * SQL Data Type: nvarchar(255)
23663
+ * * Description: Query name for RunQuery data sources
23664
+ */
23665
+ get QueryName(): string | null;
23666
+ set QueryName(value: string | null);
23667
+ /**
23668
+ * * Field Name: CategoryPath
23669
+ * * Display Name: Category Path
23670
+ * * SQL Data Type: nvarchar(500)
23671
+ * * Description: Category path for RunQuery data sources (e.g., "/MJ/AI/Agents/")
23672
+ */
23673
+ get CategoryPath(): string | null;
23674
+ set CategoryPath(value: string | null);
23675
+ /**
23676
+ * * Field Name: Parameters
23677
+ * * Display Name: Parameters
23678
+ * * SQL Data Type: nvarchar(MAX)
23679
+ * * Description: JSON object of parameters for RunQuery data sources (e.g., {"organizationId": "123"})
23680
+ */
23681
+ get Parameters(): string | null;
23682
+ set Parameters(value: string | null);
23683
+ /**
23684
+ * * Field Name: MaxRows
23685
+ * * Display Name: Max Rows
23686
+ * * SQL Data Type: int
23687
+ * * Description: Maximum number of rows to return. Applies to both RunView and RunQuery.
23688
+ */
23689
+ get MaxRows(): number | null;
23690
+ set MaxRows(value: number | null);
23691
+ /**
23692
+ * * Field Name: ExecutionOrder
23693
+ * * Display Name: Execution Order
23694
+ * * SQL Data Type: int
23695
+ * * Default Value: 0
23696
+ * * Description: Execution order when multiple data sources are defined for an agent (lower numbers execute first)
23697
+ */
23698
+ get ExecutionOrder(): number;
23699
+ set ExecutionOrder(value: number);
23700
+ /**
23701
+ * * Field Name: Status
23702
+ * * Display Name: Status
23703
+ * * SQL Data Type: nvarchar(20)
23704
+ * * Default Value: Active
23705
+ * * Value List Type: List
23706
+ * * Possible Values
23707
+ * * Active
23708
+ * * Disabled
23709
+ * * Description: Status of the data source: Active or Disabled
23710
+ */
23711
+ get Status(): 'Active' | 'Disabled';
23712
+ set Status(value: 'Active' | 'Disabled');
23713
+ /**
23714
+ * * Field Name: CachePolicy
23715
+ * * Display Name: Cache Policy
23716
+ * * SQL Data Type: nvarchar(20)
23717
+ * * Default Value: None
23718
+ * * Value List Type: List
23719
+ * * Possible Values
23720
+ * * None
23721
+ * * PerAgent
23722
+ * * PerRun
23723
+ * * Description: Cache policy: None (no caching), PerRun (cache for duration of agent run), PerAgent (cache across runs with timeout)
23724
+ */
23725
+ get CachePolicy(): 'None' | 'PerAgent' | 'PerRun';
23726
+ set CachePolicy(value: 'None' | 'PerAgent' | 'PerRun');
23727
+ /**
23728
+ * * Field Name: CacheTimeoutSeconds
23729
+ * * Display Name: Cache Timeout Seconds
23730
+ * * SQL Data Type: int
23731
+ * * Description: Time-to-live in seconds for PerAgent cache policy. Ignored for other cache policies.
23732
+ */
23733
+ get CacheTimeoutSeconds(): number | null;
23734
+ set CacheTimeoutSeconds(value: number | null);
23735
+ /**
23736
+ * * Field Name: DestinationType
23737
+ * * Display Name: Destination Type
23738
+ * * SQL Data Type: nvarchar(20)
23739
+ * * Default Value: Data
23740
+ * * Value List Type: List
23741
+ * * Possible Values
23742
+ * * Context
23743
+ * * Data
23744
+ * * Payload
23745
+ * * Description: Destination for the preloaded data: Data (for Nunjucks templates in prompts), Context (for actions only), or Payload (for agent state)
23746
+ */
23747
+ get DestinationType(): 'Context' | 'Data' | 'Payload';
23748
+ set DestinationType(value: 'Context' | 'Data' | 'Payload');
23749
+ /**
23750
+ * * Field Name: DestinationPath
23751
+ * * Display Name: Destination Path
23752
+ * * SQL Data Type: nvarchar(500)
23753
+ * * Description: Path within the destination where data should be injected. Supports nested paths using dot notation (e.g., "config.api.endpoints", "analysis.orders.recent"). If null, uses Name as root-level key.
23754
+ */
23755
+ get DestinationPath(): string | null;
23756
+ set DestinationPath(value: string | null);
23757
+ /**
23758
+ * * Field Name: __mj_CreatedAt
23759
+ * * Display Name: Created At
23760
+ * * SQL Data Type: datetimeoffset
23761
+ * * Default Value: getutcdate()
23762
+ */
23763
+ get __mj_CreatedAt(): Date;
23764
+ /**
23765
+ * * Field Name: __mj_UpdatedAt
23766
+ * * Display Name: Updated At
23767
+ * * SQL Data Type: datetimeoffset
23768
+ * * Default Value: getutcdate()
23769
+ */
23770
+ get __mj_UpdatedAt(): Date;
23771
+ /**
23772
+ * * Field Name: Agent
23773
+ * * Display Name: Agent
23774
+ * * SQL Data Type: nvarchar(255)
23775
+ */
23776
+ get Agent(): string | null;
23777
+ }
23282
23778
  /**
23283
23779
  * MJ: AI Agent Permissions - strongly typed entity sub-class
23284
23780
  * * Schema: __mj
@@ -23527,9 +24023,9 @@ export declare class AIAgentPromptEntity extends BaseEntity<AIAgentPromptEntityT
23527
24023
  * * Default Value: Active
23528
24024
  * * Value List Type: List
23529
24025
  * * Possible Values
23530
- * * Inactive
23531
- * * Deprecated
23532
24026
  * * Active
24027
+ * * Deprecated
24028
+ * * Inactive
23533
24029
  * * Preview
23534
24030
  * * Description: The current status of this agent-prompt mapping. Values include Active, Inactive, Deprecated, and Preview.
23535
24031
  */
@@ -23542,12 +24038,12 @@ export declare class AIAgentPromptEntity extends BaseEntity<AIAgentPromptEntityT
23542
24038
  * * Default Value: Complete
23543
24039
  * * Value List Type: List
23544
24040
  * * Possible Values
24041
+ * * Complete
24042
+ * * Custom
23545
24043
  * * InitialMessages
23546
24044
  * * None
23547
- * * Smart
23548
24045
  * * RecentMessages
23549
- * * Complete
23550
- * * Custom
24046
+ * * Smart
23551
24047
  * * Description: Determines how conversation context is filtered for this prompt: Complete, Smart, None, RecentMessages, InitialMessages, or Custom.
23552
24048
  */
23553
24049
  get ContextBehavior(): 'Complete' | 'Custom' | 'InitialMessages' | 'None' | 'RecentMessages' | 'Smart';
@@ -23650,9 +24146,9 @@ export declare class AIAgentRelationshipEntity extends BaseEntity<AIAgentRelatio
23650
24146
  * * SQL Data Type: nvarchar(50)
23651
24147
  * * Value List Type: List
23652
24148
  * * Possible Values
23653
- * * Revoked
23654
- * * Pending
23655
24149
  * * Active
24150
+ * * Pending
24151
+ * * Revoked
23656
24152
  * * Description: Status of the relationship: Pending (awaiting approval), Active (can invoke), or Revoked (no longer allowed)
23657
24153
  */
23658
24154
  get Status(): 'Active' | 'Pending' | 'Revoked';
@@ -23781,11 +24277,11 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
23781
24277
  * * Value List Type: List
23782
24278
  * * Possible Values
23783
24279
  * * Actions
23784
- * * Validation
23785
- * * Sub-Agent
23786
24280
  * * Chat
23787
24281
  * * Decision
23788
24282
  * * Prompt
24283
+ * * Sub-Agent
24284
+ * * Validation
23789
24285
  * * Description: Type of execution step: Prompt, Actions, Sub-Agent, Decision, Chat, Validation
23790
24286
  */
23791
24287
  get StepType(): 'Actions' | 'Chat' | 'Decision' | 'Prompt' | 'Sub-Agent' | 'Validation';
@@ -23813,10 +24309,10 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
23813
24309
  * * Default Value: Running
23814
24310
  * * Value List Type: List
23815
24311
  * * Possible Values
24312
+ * * Cancelled
24313
+ * * Completed
23816
24314
  * * Failed
23817
24315
  * * Running
23818
- * * Completed
23819
- * * Cancelled
23820
24316
  * * Description: Current execution status of this step: Running, Completed, Failed, Cancelled
23821
24317
  */
23822
24318
  get Status(): 'Cancelled' | 'Completed' | 'Failed' | 'Running';
@@ -23915,13 +24411,13 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
23915
24411
  * * Value List Type: List
23916
24412
  * * Possible Values
23917
24413
  * * Fail
23918
- * * Pass
23919
- * * Warn
23920
24414
  * * Fail
23921
- * * Warn
24415
+ * * Pass
23922
24416
  * * Pass
23923
24417
  * * Retry
23924
24418
  * * Retry
24419
+ * * Warn
24420
+ * * Warn
23925
24421
  * * Description: Result of the final payload validation for this step. Pass indicates successful
23926
24422
  validation, Retry means validation failed but will retry, Fail means validation failed
23927
24423
  permanently, Warn means validation failed but execution continues.
@@ -24034,11 +24530,11 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
24034
24530
  * * Default Value: Running
24035
24531
  * * Value List Type: List
24036
24532
  * * Possible Values
24037
- * * Failed
24038
- * * Running
24039
24533
  * * Cancelled
24040
- * * Paused
24041
24534
  * * Completed
24535
+ * * Failed
24536
+ * * Paused
24537
+ * * Running
24042
24538
  * * Description: Current status of the agent run. Running -> Completed/Failed/Cancelled
24043
24539
  */
24044
24540
  get Status(): 'Cancelled' | 'Completed' | 'Failed' | 'Paused' | 'Running';
@@ -24214,9 +24710,9 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
24214
24710
  * * SQL Data Type: nvarchar(30)
24215
24711
  * * Value List Type: List
24216
24712
  * * Possible Values
24217
- * * User Request
24218
- * * Timeout
24219
24713
  * * System
24714
+ * * Timeout
24715
+ * * User Request
24220
24716
  * * Description: Reason for cancellation if the agent run was cancelled
24221
24717
  */
24222
24718
  get CancellationReason(): 'System' | 'Timeout' | 'User Request' | null;
@@ -24227,12 +24723,12 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
24227
24723
  * * SQL Data Type: nvarchar(30)
24228
24724
  * * Value List Type: List
24229
24725
  * * Possible Values
24726
+ * * Actions
24230
24727
  * * Chat
24728
+ * * Failed
24231
24729
  * * Retry
24232
- * * Actions
24233
24730
  * * Sub-Agent
24234
24731
  * * Success
24235
- * * Failed
24236
24732
  * * Description: The final step type that concluded the agent run
24237
24733
  */
24238
24734
  get FinalStep(): 'Actions' | 'Chat' | 'Failed' | 'Retry' | 'Sub-Agent' | 'Success' | null;
@@ -24610,9 +25106,9 @@ export declare class AIAgentStepEntity extends BaseEntity<AIAgentStepEntityType>
24610
25106
  * * SQL Data Type: nvarchar(20)
24611
25107
  * * Value List Type: List
24612
25108
  * * Possible Values
24613
- * * Sub-Agent
24614
- * * Prompt
24615
25109
  * * Action
25110
+ * * Prompt
25111
+ * * Sub-Agent
24616
25112
  * * Description: Type of step: Action (execute an action), Sub-Agent (delegate to another agent), or Prompt (run an AI prompt)
24617
25113
  */
24618
25114
  get StepType(): 'Action' | 'Prompt' | 'Sub-Agent';
@@ -24649,8 +25145,8 @@ export declare class AIAgentStepEntity extends BaseEntity<AIAgentStepEntityType>
24649
25145
  * * Default Value: fail
24650
25146
  * * Value List Type: List
24651
25147
  * * Possible Values
24652
- * * fail
24653
25148
  * * continue
25149
+ * * fail
24654
25150
  * * retry
24655
25151
  */
24656
25152
  get OnErrorBehavior(): 'continue' | 'fail' | 'retry';
@@ -24740,8 +25236,8 @@ export declare class AIAgentStepEntity extends BaseEntity<AIAgentStepEntityType>
24740
25236
  * * Default Value: Active
24741
25237
  * * Value List Type: List
24742
25238
  * * Possible Values
24743
- * * Disabled
24744
25239
  * * Active
25240
+ * * Disabled
24745
25241
  * * Pending
24746
25242
  * * Description: Controls whether this step is executed. Active=normal execution, Pending=skip but may activate later, Disabled=never execute
24747
25243
  */
@@ -24964,11 +25460,11 @@ export declare class AIConfigurationParamEntity extends BaseEntity<AIConfigurati
24964
25460
  * * Default Value: string
24965
25461
  * * Value List Type: List
24966
25462
  * * Possible Values
24967
- * * date
24968
25463
  * * boolean
25464
+ * * date
24969
25465
  * * number
24970
- * * string
24971
25466
  * * object
25467
+ * * string
24972
25468
  * * Description: The data type of the parameter (string, number, boolean, date, object).
24973
25469
  */
24974
25470
  get Type(): 'boolean' | 'date' | 'number' | 'object' | 'string';
@@ -25074,9 +25570,9 @@ export declare class AIConfigurationEntity extends BaseEntity<AIConfigurationEnt
25074
25570
  * * Default Value: Active
25075
25571
  * * Value List Type: List
25076
25572
  * * Possible Values
25077
- * * Inactive
25078
- * * Deprecated
25079
25573
  * * Active
25574
+ * * Deprecated
25575
+ * * Inactive
25080
25576
  * * Preview
25081
25577
  * * Description: The current status of the configuration. Values include Active, Inactive, Deprecated, and Preview.
25082
25578
  */
@@ -25237,10 +25733,10 @@ export declare class AIModelCostEntity extends BaseEntity<AIModelCostEntityType>
25237
25733
  * * SQL Data Type: nvarchar(20)
25238
25734
  * * Value List Type: List
25239
25735
  * * Possible Values
25240
- * * Pending
25241
- * * Expired
25242
25736
  * * Active
25737
+ * * Expired
25243
25738
  * * Invalid
25739
+ * * Pending
25244
25740
  * * Description: Current status of this pricing record. Active=currently in use, Pending=scheduled for future, Expired=no longer valid, Invalid=data error
25245
25741
  */
25246
25742
  get Status(): 'Active' | 'Expired' | 'Invalid' | 'Pending';
@@ -25611,10 +26107,10 @@ export declare class AIModelVendorEntity extends BaseEntity<AIModelVendorEntityT
25611
26107
  * * Default Value: Active
25612
26108
  * * Value List Type: List
25613
26109
  * * Possible Values
25614
- * * Preview
25615
- * * Deprecated
25616
26110
  * * Active
26111
+ * * Deprecated
25617
26112
  * * Inactive
26113
+ * * Preview
25618
26114
  * * Description: The current status of this model-vendor combination. Values include Active, Inactive, Deprecated, and Preview.
25619
26115
  */
25620
26116
  get Status(): 'Active' | 'Deprecated' | 'Inactive' | 'Preview';
@@ -25868,9 +26364,9 @@ export declare class AIPromptModelEntity extends BaseEntity<AIPromptModelEntityT
25868
26364
  * * Default Value: Active
25869
26365
  * * Value List Type: List
25870
26366
  * * Possible Values
25871
- * * Inactive
25872
26367
  * * Active
25873
26368
  * * Deprecated
26369
+ * * Inactive
25874
26370
  * * Preview
25875
26371
  * * Description: The current status of this model configuration. Values include Active, Inactive, Deprecated, and Preview.
25876
26372
  */
@@ -25883,9 +26379,9 @@ export declare class AIPromptModelEntity extends BaseEntity<AIPromptModelEntityT
25883
26379
  * * Default Value: None
25884
26380
  * * Value List Type: List
25885
26381
  * * Possible Values
26382
+ * * ConfigParam
25886
26383
  * * None
25887
26384
  * * StaticCount
25888
- * * ConfigParam
25889
26385
  * * Description: Controls how this model participates in parallelization: None, StaticCount, or ConfigParam.
25890
26386
  */
25891
26387
  get ParallelizationMode(): 'ConfigParam' | 'None' | 'StaticCount';
@@ -26174,10 +26670,10 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
26174
26670
  * * Default Value: Single
26175
26671
  * * Value List Type: List
26176
26672
  * * Possible Values
26177
- * * ParallelParent
26178
26673
  * * ParallelChild
26179
- * * Single
26674
+ * * ParallelParent
26180
26675
  * * ResultSelector
26676
+ * * Single
26181
26677
  * * Description: Type of prompt run execution: Single (standard single prompt), ParallelParent (coordinator for parallel execution), ParallelChild (individual parallel execution), ResultSelector (result selection prompt that chooses best result)
26182
26678
  */
26183
26679
  get RunType(): 'ParallelChild' | 'ParallelParent' | 'ResultSelector' | 'Single';
@@ -26521,11 +27017,11 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
26521
27017
  * * Default Value: Pending
26522
27018
  * * Value List Type: List
26523
27019
  * * Possible Values
26524
- * * Running
26525
- * * Pending
26526
- * * Failed
26527
27020
  * * Cancelled
26528
27021
  * * Completed
27022
+ * * Failed
27023
+ * * Pending
27024
+ * * Running
26529
27025
  * * Description: Current execution status of the prompt run. Valid values: Pending, Running, Completed, Failed, Cancelled
26530
27026
  */
26531
27027
  get Status(): 'Cancelled' | 'Completed' | 'Failed' | 'Pending' | 'Running';
@@ -26562,8 +27058,8 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
26562
27058
  * * Value List Type: List
26563
27059
  * * Possible Values
26564
27060
  * * ByPower
26565
- * * Specific
26566
27061
  * * Default
27062
+ * * Specific
26567
27063
  * * Description: Strategy used for model selection. Valid values: Default (system default), Specific (specific models configured), ByPower (based on power ranking)
26568
27064
  */
26569
27065
  get SelectionStrategy(): 'ByPower' | 'Default' | 'Specific' | null;
@@ -26903,10 +27399,10 @@ export declare class AIVendorTypeEntity extends BaseEntity<AIVendorTypeEntityTyp
26903
27399
  * * Default Value: Active
26904
27400
  * * Value List Type: List
26905
27401
  * * Possible Values
26906
- * * Inactive
26907
27402
  * * Active
26908
- * * Preview
26909
27403
  * * Deprecated
27404
+ * * Inactive
27405
+ * * Preview
26910
27406
  * * Description: The current status of this vendor type. Values include Active, Inactive, Deprecated, and Preview.
26911
27407
  */
26912
27408
  get Status(): 'Active' | 'Deprecated' | 'Inactive' | 'Preview';
@@ -27001,6 +27497,132 @@ export declare class AIVendorEntity extends BaseEntity<AIVendorEntityType> {
27001
27497
  */
27002
27498
  get __mj_UpdatedAt(): Date;
27003
27499
  }
27500
+ /**
27501
+ * MJ: Artifact Permissions - strongly typed entity sub-class
27502
+ * * Schema: __mj
27503
+ * * Base Table: ArtifactPermission
27504
+ * * Base View: vwArtifactPermissions
27505
+ * * @description Manages user permissions for artifacts with granular access control (Read, Edit, Delete, Share)
27506
+ * * Primary Key: ID
27507
+ * @extends {BaseEntity}
27508
+ * @class
27509
+ * @public
27510
+ */
27511
+ export declare class ArtifactPermissionEntity extends BaseEntity<ArtifactPermissionEntityType> {
27512
+ /**
27513
+ * Loads the MJ: Artifact Permissions record from the database
27514
+ * @param ID: string - primary key value to load the MJ: Artifact Permissions record.
27515
+ * @param EntityRelationshipsToLoad - (optional) the relationships to load
27516
+ * @returns {Promise<boolean>} - true if successful, false otherwise
27517
+ * @public
27518
+ * @async
27519
+ * @memberof ArtifactPermissionEntity
27520
+ * @method
27521
+ * @override
27522
+ */
27523
+ Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
27524
+ /**
27525
+ * * Field Name: ID
27526
+ * * Display Name: ID
27527
+ * * SQL Data Type: uniqueidentifier
27528
+ * * Default Value: newsequentialid()
27529
+ */
27530
+ get ID(): string;
27531
+ set ID(value: string);
27532
+ /**
27533
+ * * Field Name: ArtifactID
27534
+ * * Display Name: Artifact ID
27535
+ * * SQL Data Type: uniqueidentifier
27536
+ * * Related Entity/Foreign Key: MJ: Artifacts (vwArtifacts.ID)
27537
+ */
27538
+ get ArtifactID(): string;
27539
+ set ArtifactID(value: string);
27540
+ /**
27541
+ * * Field Name: UserID
27542
+ * * Display Name: User ID
27543
+ * * SQL Data Type: uniqueidentifier
27544
+ * * Related Entity/Foreign Key: Users (vwUsers.ID)
27545
+ */
27546
+ get UserID(): string;
27547
+ set UserID(value: string);
27548
+ /**
27549
+ * * Field Name: CanRead
27550
+ * * Display Name: Can Read
27551
+ * * SQL Data Type: bit
27552
+ * * Default Value: 1
27553
+ * * Description: Whether the user can view/read the artifact
27554
+ */
27555
+ get CanRead(): boolean;
27556
+ set CanRead(value: boolean);
27557
+ /**
27558
+ * * Field Name: CanEdit
27559
+ * * Display Name: Can Edit
27560
+ * * SQL Data Type: bit
27561
+ * * Default Value: 0
27562
+ * * Description: Whether the user can modify the artifact or create new versions
27563
+ */
27564
+ get CanEdit(): boolean;
27565
+ set CanEdit(value: boolean);
27566
+ /**
27567
+ * * Field Name: CanDelete
27568
+ * * Display Name: Can Delete
27569
+ * * SQL Data Type: bit
27570
+ * * Default Value: 0
27571
+ * * Description: Whether the user can delete the artifact
27572
+ */
27573
+ get CanDelete(): boolean;
27574
+ set CanDelete(value: boolean);
27575
+ /**
27576
+ * * Field Name: CanShare
27577
+ * * Display Name: Can Share
27578
+ * * SQL Data Type: bit
27579
+ * * Default Value: 0
27580
+ * * Description: Whether the user can share the artifact with other users
27581
+ */
27582
+ get CanShare(): boolean;
27583
+ set CanShare(value: boolean);
27584
+ /**
27585
+ * * Field Name: SharedByUserID
27586
+ * * Display Name: Shared By User ID
27587
+ * * SQL Data Type: uniqueidentifier
27588
+ * * Related Entity/Foreign Key: Users (vwUsers.ID)
27589
+ * * Description: Foreign key to the User who shared this artifact (if shared)
27590
+ */
27591
+ get SharedByUserID(): string | null;
27592
+ set SharedByUserID(value: string | null);
27593
+ /**
27594
+ * * Field Name: __mj_CreatedAt
27595
+ * * Display Name: Created At
27596
+ * * SQL Data Type: datetimeoffset
27597
+ * * Default Value: getutcdate()
27598
+ */
27599
+ get __mj_CreatedAt(): Date;
27600
+ /**
27601
+ * * Field Name: __mj_UpdatedAt
27602
+ * * Display Name: Updated At
27603
+ * * SQL Data Type: datetimeoffset
27604
+ * * Default Value: getutcdate()
27605
+ */
27606
+ get __mj_UpdatedAt(): Date;
27607
+ /**
27608
+ * * Field Name: Artifact
27609
+ * * Display Name: Artifact
27610
+ * * SQL Data Type: nvarchar(255)
27611
+ */
27612
+ get Artifact(): string;
27613
+ /**
27614
+ * * Field Name: User
27615
+ * * Display Name: User
27616
+ * * SQL Data Type: nvarchar(100)
27617
+ */
27618
+ get User(): string;
27619
+ /**
27620
+ * * Field Name: SharedByUser
27621
+ * * Display Name: Shared By User
27622
+ * * SQL Data Type: nvarchar(100)
27623
+ */
27624
+ get SharedByUser(): string | null;
27625
+ }
27004
27626
  /**
27005
27627
  * MJ: Artifact Types - strongly typed entity sub-class
27006
27628
  * * Schema: __mj
@@ -27188,10 +27810,10 @@ export declare class ArtifactVersionAttributeEntity extends BaseEntity<ArtifactV
27188
27810
  * * SQL Data Type: nvarchar(50)
27189
27811
  * * Value List Type: List
27190
27812
  * * Possible Values
27813
+ * * description
27191
27814
  * * displayHtml
27192
- * * name
27193
27815
  * * displayMarkdown
27194
- * * description
27816
+ * * name
27195
27817
  * * Description: Maps this attribute to a standard property for UI rendering: 'name', 'description', 'displayMarkdown', 'displayHtml', or NULL for custom attributes
27196
27818
  */
27197
27819
  get StandardProperty(): 'description' | 'displayHtml' | 'displayMarkdown' | 'name' | null;
@@ -27444,6 +28066,19 @@ export declare class ArtifactEntity extends BaseEntity<ArtifactEntityType> {
27444
28066
  */
27445
28067
  get __mj_UpdatedAt(): Date;
27446
28068
  /**
28069
+ * * Field Name: Visibility
28070
+ * * Display Name: Visibility
28071
+ * * SQL Data Type: nvarchar(20)
28072
+ * * Default Value: Always
28073
+ * * Value List Type: List
28074
+ * * Possible Values
28075
+ * * System Only
28076
+ * * Always
28077
+ * * Description: Controls artifact visibility in user-facing lists. "Always" shows in all lists, "System Only" hides from normal views (for system-generated artifacts like agent routing payloads).
28078
+ */
28079
+ get Visibility(): 'Always' | 'System Only';
28080
+ set Visibility(value: 'Always' | 'System Only');
28081
+ /**
27447
28082
  * * Field Name: Environment
27448
28083
  * * Display Name: Environment
27449
28084
  * * SQL Data Type: nvarchar(255)
@@ -27958,12 +28593,12 @@ export declare class ComponentLibraryEntity extends BaseEntity<ComponentLibraryE
27958
28593
  * * SQL Data Type: nvarchar(100)
27959
28594
  * * Value List Type: List
27960
28595
  * * Possible Values
27961
- * * Other
27962
28596
  * * Charting
27963
- * * Runtime
27964
- * * Utility
27965
28597
  * * Core
28598
+ * * Other
28599
+ * * Runtime
27966
28600
  * * UI
28601
+ * * Utility
27967
28602
  * * Description: Library category: Core, Runtime, UI, Charting, Utility, or Other
27968
28603
  */
27969
28604
  get Category(): 'Charting' | 'Core' | 'Other' | 'Runtime' | 'UI' | 'Utility' | null;
@@ -28013,9 +28648,9 @@ export declare class ComponentLibraryEntity extends BaseEntity<ComponentLibraryE
28013
28648
  * * Default Value: Active
28014
28649
  * * Value List Type: List
28015
28650
  * * Possible Values
28016
- * * Disabled
28017
- * * Deprecated
28018
28651
  * * Active
28652
+ * * Deprecated
28653
+ * * Disabled
28019
28654
  * * Description: Status of the component library. Active: fully supported; Deprecated: works but shows console warning; Disabled: throws error if used
28020
28655
  */
28021
28656
  get Status(): 'Active' | 'Deprecated' | 'Disabled';
@@ -28222,8 +28857,8 @@ export declare class ComponentRegistryEntity extends BaseEntity<ComponentRegistr
28222
28857
  * * Value List Type: List
28223
28858
  * * Possible Values
28224
28859
  * * Active
28225
- * * Offline
28226
28860
  * * Deprecated
28861
+ * * Offline
28227
28862
  * * Description: Current status of the registry: active, deprecated, or offline
28228
28863
  */
28229
28864
  get Status(): 'Active' | 'Deprecated' | 'Offline' | null;
@@ -28331,16 +28966,16 @@ export declare class ComponentEntity extends BaseEntity<ComponentEntityType> {
28331
28966
  * * SQL Data Type: nvarchar(255)
28332
28967
  * * Value List Type: List
28333
28968
  * * Possible Values
28334
- * * Other
28335
- * * Widget
28336
28969
  * * Chart
28337
- * * Navigation
28338
28970
  * * Dashboard
28971
+ * * Form
28972
+ * * Navigation
28973
+ * * Other
28974
+ * * Report
28339
28975
  * * Search
28340
28976
  * * Table
28341
28977
  * * Utility
28342
- * * Report
28343
- * * Form
28978
+ * * Widget
28344
28979
  * * Description: Component type: report, dashboard, form, table, chart, navigation, search, widget, utility, or other
28345
28980
  */
28346
28981
  get Type(): 'Chart' | 'Dashboard' | 'Form' | 'Navigation' | 'Other' | 'Report' | 'Search' | 'Table' | 'Utility' | 'Widget' | null;
@@ -28351,9 +28986,9 @@ export declare class ComponentEntity extends BaseEntity<ComponentEntityType> {
28351
28986
  * * SQL Data Type: nvarchar(50)
28352
28987
  * * Value List Type: List
28353
28988
  * * Possible Values
28354
- * * Published
28355
- * * Draft
28356
28989
  * * Deprecated
28990
+ * * Draft
28991
+ * * Published
28357
28992
  * * Description: Publication status: draft, published, or deprecated
28358
28993
  */
28359
28994
  get Status(): 'Deprecated' | 'Draft' | 'Published' | null;
@@ -28539,6 +29174,7 @@ export declare class ComponentEntity extends BaseEntity<ComponentEntityType> {
28539
29174
  * @extends {BaseEntity}
28540
29175
  * @class
28541
29176
  * @public
29177
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
28542
29178
  */
28543
29179
  export declare class ConversationArtifactPermissionEntity extends BaseEntity<ConversationArtifactPermissionEntityType> {
28544
29180
  /**
@@ -28584,9 +29220,9 @@ export declare class ConversationArtifactPermissionEntity extends BaseEntity<Con
28584
29220
  * * SQL Data Type: nvarchar(20)
28585
29221
  * * Value List Type: List
28586
29222
  * * Possible Values
29223
+ * * Edit
28587
29224
  * * Owner
28588
29225
  * * Read
28589
- * * Edit
28590
29226
  * * Description: Level of access granted (Read, Edit, Owner)
28591
29227
  */
28592
29228
  get AccessLevel(): 'Edit' | 'Owner' | 'Read';
@@ -28622,6 +29258,7 @@ export declare class ConversationArtifactPermissionEntity extends BaseEntity<Con
28622
29258
  * @extends {BaseEntity}
28623
29259
  * @class
28624
29260
  * @public
29261
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
28625
29262
  */
28626
29263
  export declare class ConversationArtifactVersionEntity extends BaseEntity<ConversationArtifactVersionEntityType> {
28627
29264
  /**
@@ -28741,6 +29378,7 @@ export declare class ConversationArtifactVersionEntity extends BaseEntity<Conver
28741
29378
  * @extends {BaseEntity}
28742
29379
  * @class
28743
29380
  * @public
29381
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
28744
29382
  */
28745
29383
  export declare class ConversationArtifactEntity extends BaseEntity<ConversationArtifactEntityType> {
28746
29384
  /**
@@ -28814,9 +29452,9 @@ export declare class ConversationArtifactEntity extends BaseEntity<ConversationA
28814
29452
  * * Value List Type: List
28815
29453
  * * Possible Values
28816
29454
  * * Everyone
29455
+ * * None
28817
29456
  * * Public
28818
29457
  * * SpecificUsers
28819
- * * None
28820
29458
  * * Description: Controls who can view this artifact (None, SpecificUsers, Everyone, Public)
28821
29459
  */
28822
29460
  get SharingScope(): 'Everyone' | 'None' | 'Public' | 'SpecificUsers';
@@ -29394,8 +30032,8 @@ export declare class PublicLinkEntity extends BaseEntity<PublicLinkEntityType> {
29394
30032
  * * Value List Type: List
29395
30033
  * * Possible Values
29396
30034
  * * Artifact
29397
- * * Conversation
29398
30035
  * * Collection
30036
+ * * Conversation
29399
30037
  * * Description: Type of resource being shared (Artifact, Conversation, Collection)
29400
30038
  */
29401
30039
  get ResourceType(): 'Artifact' | 'Collection' | 'Conversation';
@@ -29540,11 +30178,11 @@ export declare class QueryParameterEntity extends BaseEntity<QueryParameterEntit
29540
30178
  * * SQL Data Type: nvarchar(50)
29541
30179
  * * Value List Type: List
29542
30180
  * * Possible Values
29543
- * * date
29544
- * * string
29545
- * * boolean
29546
30181
  * * array
30182
+ * * boolean
30183
+ * * date
29547
30184
  * * number
30185
+ * * string
29548
30186
  * * Description: The data type of the parameter used for validation and type conversion. Valid values are: "string" for text values, "number" for integers or decimals, "date" for date/datetime values (ISO 8601 format expected), "boolean" for true/false values, and "array" for multiple values (typically used with IN clauses). The type determines which validation filters can be applied and how the parameter is processed.
29549
30187
  */
29550
30188
  get Type(): 'array' | 'boolean' | 'date' | 'number' | 'string';
@@ -30026,11 +30664,11 @@ export declare class ScheduledJobRunEntity extends BaseEntity<ScheduledJobRunEnt
30026
30664
  * * Default Value: Running
30027
30665
  * * Value List Type: List
30028
30666
  * * Possible Values
30029
- * * Running
30030
- * * Timeout
30031
- * * Completed
30032
30667
  * * Cancelled
30668
+ * * Completed
30033
30669
  * * Failed
30670
+ * * Running
30671
+ * * Timeout
30034
30672
  * * Description: Current status of the job execution. Running=currently executing, Completed=finished (check Success for outcome), Failed=exception during execution, Cancelled=manually cancelled, Timeout=exceeded maximum execution time.
30035
30673
  */
30036
30674
  get Status(): 'Cancelled' | 'Completed' | 'Failed' | 'Running' | 'Timeout';
@@ -30310,11 +30948,11 @@ export declare class ScheduledJobEntity extends BaseEntity<ScheduledJobEntityTyp
30310
30948
  * * Default Value: Pending
30311
30949
  * * Value List Type: List
30312
30950
  * * Possible Values
30313
- * * Paused
30951
+ * * Active
30314
30952
  * * Disabled
30315
30953
  * * Expired
30954
+ * * Paused
30316
30955
  * * Pending
30317
- * * Active
30318
30956
  * * Description: Current status of the schedule. Pending=created but not yet active, Active=currently running on schedule, Paused=temporarily stopped, Disabled=manually disabled, Expired=past EndAt date.
30319
30957
  */
30320
30958
  get Status(): 'Active' | 'Disabled' | 'Expired' | 'Paused' | 'Pending';
@@ -30463,8 +31101,8 @@ export declare class ScheduledJobEntity extends BaseEntity<ScheduledJobEntityTyp
30463
31101
  * * Default Value: Skip
30464
31102
  * * Value List Type: List
30465
31103
  * * Possible Values
30466
- * * Queue
30467
31104
  * * Concurrent
31105
+ * * Queue
30468
31106
  * * Skip
30469
31107
  * * Description: Controls behavior when a new execution is scheduled while a previous execution is still running. Skip=do not start new execution (default), Queue=wait for current to finish then execute, Concurrent=allow multiple simultaneous executions.
30470
31108
  */
@@ -30573,9 +31211,9 @@ export declare class TaskDependencyEntity extends BaseEntity<TaskDependencyEntit
30573
31211
  * * Default Value: Prerequisite
30574
31212
  * * Value List Type: List
30575
31213
  * * Possible Values
30576
- * * Prerequisite
30577
31214
  * * Corequisite
30578
31215
  * * Optional
31216
+ * * Prerequisite
30579
31217
  * * Description: Type of dependency relationship (Prerequisite, Corequisite, Optional)
30580
31218
  */
30581
31219
  get DependencyType(): 'Corequisite' | 'Optional' | 'Prerequisite';
@@ -30806,12 +31444,12 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
30806
31444
  * * Value List Type: List
30807
31445
  * * Possible Values
30808
31446
  * * Blocked
30809
- * * Failed
31447
+ * * Cancelled
31448
+ * * Complete
30810
31449
  * * Deferred
31450
+ * * Failed
30811
31451
  * * In Progress
30812
31452
  * * Pending
30813
- * * Cancelled
30814
- * * Complete
30815
31453
  * * Description: Current status of the task (Pending, In Progress, Complete, Cancelled, Failed, Blocked, Deferred)
30816
31454
  */
30817
31455
  get Status(): 'Blocked' | 'Cancelled' | 'Complete' | 'Deferred' | 'Failed' | 'In Progress' | 'Pending';
@@ -31211,10 +31849,10 @@ export declare class QueryEntity extends BaseEntity<QueryEntityType> {
31211
31849
  * * Default Value: Pending
31212
31850
  * * Value List Type: List
31213
31851
  * * Possible Values
31214
- * * Pending
31215
- * * Rejected
31216
31852
  * * Approved
31217
31853
  * * Expired
31854
+ * * Pending
31855
+ * * Rejected
31218
31856
  */
31219
31857
  get Status(): 'Approved' | 'Expired' | 'Pending' | 'Rejected';
31220
31858
  set Status(value: 'Approved' | 'Expired' | 'Pending' | 'Rejected');
@@ -31523,8 +32161,8 @@ export declare class QueryEntityEntity extends BaseEntity<QueryEntityEntityType>
31523
32161
  * * Default Value: Manual
31524
32162
  * * Value List Type: List
31525
32163
  * * Possible Values
31526
- * * Manual
31527
32164
  * * AI
32165
+ * * Manual
31528
32166
  * * Description: Indicates how this entity-query relationship was identified. "AI" means the QueryEntityServer used LLM analysis to parse the SQL/template and identify which MemberJunction entities are referenced (by analyzing table names, joins, and query structure). "Manual" means a user explicitly marked this entity as being used by the query. AI detection helps maintain accurate metadata automatically as queries evolve.
31529
32167
  */
31530
32168
  get DetectionMethod(): 'AI' | 'Manual';
@@ -31848,8 +32486,8 @@ export declare class QueueTaskEntity extends BaseEntity<QueueTaskEntityType> {
31848
32486
  * * Default Value: Pending
31849
32487
  * * Value List Type: List
31850
32488
  * * Possible Values
31851
- * * Failed
31852
32489
  * * Completed
32490
+ * * Failed
31853
32491
  * * In Progress
31854
32492
  */
31855
32493
  get Status(): 'Completed' | 'Failed' | 'In Progress';
@@ -32418,11 +33056,11 @@ export declare class RecommendationRunEntity extends BaseEntity<RecommendationRu
32418
33056
  * * SQL Data Type: nvarchar(50)
32419
33057
  * * Value List Type: List
32420
33058
  * * Possible Values
32421
- * * Pending
33059
+ * * Canceled
32422
33060
  * * Completed
32423
33061
  * * Error
32424
33062
  * * In Progress
32425
- * * Canceled
33063
+ * * Pending
32426
33064
  * * Description: The status of the recommendation run
32427
33065
  */
32428
33066
  get Status(): 'Canceled' | 'Completed' | 'Error' | 'In Progress' | 'Pending';
@@ -32601,9 +33239,9 @@ export declare class RecordChangeReplayRunEntity extends BaseEntity<RecordChange
32601
33239
  * * Value List Type: List
32602
33240
  * * Possible Values
32603
33241
  * * Complete
32604
- * * Pending
32605
- * * In Progress
32606
33242
  * * Error
33243
+ * * In Progress
33244
+ * * Pending
32607
33245
  * * Description: Status of the replay run (Pending, In Progress, Complete, Error)
32608
33246
  */
32609
33247
  get Status(): 'Complete' | 'Error' | 'In Progress' | 'Pending';
@@ -32699,9 +33337,9 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
32699
33337
  * * Default Value: Create
32700
33338
  * * Value List Type: List
32701
33339
  * * Possible Values
32702
- * * Update
32703
33340
  * * Create
32704
33341
  * * Delete
33342
+ * * Update
32705
33343
  * * Description: Create, Update, or Delete
32706
33344
  */
32707
33345
  get Type(): 'Create' | 'Delete' | 'Update';
@@ -32758,9 +33396,9 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
32758
33396
  * * Default Value: Complete
32759
33397
  * * Value List Type: List
32760
33398
  * * Possible Values
32761
- * * Pending
32762
33399
  * * Complete
32763
33400
  * * Error
33401
+ * * Pending
32764
33402
  * * Description: For internal record changes generated within MJ, the status is immediately Complete. For external changes that are detected, the workflow starts off as Pending, then In Progress and finally either Complete or Error
32765
33403
  */
32766
33404
  get Status(): 'Complete' | 'Error' | 'Pending';
@@ -32886,8 +33524,8 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
32886
33524
  * * Value List Type: List
32887
33525
  * * Possible Values
32888
33526
  * * Complete
32889
- * * Pending
32890
33527
  * * Error
33528
+ * * Pending
32891
33529
  */
32892
33530
  get Status(): 'Complete' | 'Error' | 'Pending';
32893
33531
  set Status(value: 'Complete' | 'Error' | 'Pending');
@@ -32977,8 +33615,8 @@ export declare class RecordMergeLogEntity extends BaseEntity<RecordMergeLogEntit
32977
33615
  * * Default Value: Pending
32978
33616
  * * Value List Type: List
32979
33617
  * * Possible Values
32980
- * * Pending
32981
33618
  * * Approved
33619
+ * * Pending
32982
33620
  * * Rejected
32983
33621
  * * Description: Field ApprovalStatus for entity Record Merge Logs.
32984
33622
  */
@@ -33000,8 +33638,8 @@ export declare class RecordMergeLogEntity extends BaseEntity<RecordMergeLogEntit
33000
33638
  * * Value List Type: List
33001
33639
  * * Possible Values
33002
33640
  * * Complete
33003
- * * Started
33004
33641
  * * Error
33642
+ * * Started
33005
33643
  * * Description: Field ProcessingStatus for entity Record Merge Logs.
33006
33644
  */
33007
33645
  get ProcessingStatus(): 'Complete' | 'Error' | 'Started';
@@ -33328,9 +33966,9 @@ export declare class ReportEntity extends BaseEntity<ReportEntityType> {
33328
33966
  * * Default Value: Personal
33329
33967
  * * Value List Type: List
33330
33968
  * * Possible Values
33331
- * * Specific
33332
- * * None
33333
33969
  * * Everyone
33970
+ * * None
33971
+ * * Specific
33334
33972
  * * Description: Field SharingScope for entity Reports.
33335
33973
  */
33336
33974
  get SharingScope(): 'Everyone' | 'None' | 'Specific';
@@ -33709,9 +34347,9 @@ export declare class ResourcePermissionEntity extends BaseEntity<ResourcePermiss
33709
34347
  * * SQL Data Type: nvarchar(20)
33710
34348
  * * Value List Type: List
33711
34349
  * * Possible Values
33712
- * * View
33713
34350
  * * Edit
33714
34351
  * * Owner
34352
+ * * View
33715
34353
  * * Description: Permission level defining the type of access (View, Edit, Owner)
33716
34354
  */
33717
34355
  get PermissionLevel(): 'Edit' | 'Owner' | 'View' | null;
@@ -33737,9 +34375,9 @@ export declare class ResourcePermissionEntity extends BaseEntity<ResourcePermiss
33737
34375
  * * Default Value: Requested
33738
34376
  * * Value List Type: List
33739
34377
  * * Possible Values
33740
- * * Requested
33741
34378
  * * Approved
33742
34379
  * * Rejected
34380
+ * * Requested
33743
34381
  * * Revoked
33744
34382
  * * Description: Status of the resource permission request. Possible values are Requested, Approved, Rejected, or Revoked.
33745
34383
  */
@@ -34183,9 +34821,9 @@ export declare class ScheduledActionEntity extends BaseEntity<ScheduledActionEnt
34183
34821
  * * SQL Data Type: nvarchar(20)
34184
34822
  * * Value List Type: List
34185
34823
  * * Possible Values
34824
+ * * Custom
34186
34825
  * * Daily
34187
34826
  * * Monthly
34188
- * * Custom
34189
34827
  * * Weekly
34190
34828
  * * Yearly
34191
34829
  * * Description: Type of the scheduled action (Daily, Weekly, Monthly, Yearly, Custom)
@@ -34215,9 +34853,9 @@ export declare class ScheduledActionEntity extends BaseEntity<ScheduledActionEnt
34215
34853
  * * Default Value: Pending
34216
34854
  * * Value List Type: List
34217
34855
  * * Possible Values
34856
+ * * Active
34218
34857
  * * Disabled
34219
34858
  * * Expired
34220
- * * Active
34221
34859
  * * Pending
34222
34860
  * * Description: Status of the scheduled action (Pending, Active, Disabled, Expired)
34223
34861
  */
@@ -34787,14 +35425,14 @@ export declare class TemplateContentTypeEntity extends BaseEntity<TemplateConten
34787
35425
  * * Default Value: Other
34788
35426
  * * Value List Type: List
34789
35427
  * * Possible Values
34790
- * * HTML
34791
35428
  * * CSS
35429
+ * * HTML
34792
35430
  * * JSON
34793
- * * Python
34794
- * * Other
34795
- * * TypeScript
34796
35431
  * * JavaScript
34797
35432
  * * Nunjucks
35433
+ * * Other
35434
+ * * Python
35435
+ * * TypeScript
34798
35436
  * * Description: Refers to the primary language or codetype of the templates of this type, HTML, JSON, JavaScript, etc
34799
35437
  */
34800
35438
  get CodeType(): 'CSS' | 'HTML' | 'JSON' | 'JavaScript' | 'Nunjucks' | 'Other' | 'Python' | 'TypeScript';
@@ -34977,11 +35615,11 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
34977
35615
  * * Default Value: Scalar
34978
35616
  * * Value List Type: List
34979
35617
  * * Possible Values
34980
- * * Record
34981
35618
  * * Array
35619
+ * * Entity
34982
35620
  * * Object
35621
+ * * Record
34983
35622
  * * Scalar
34984
- * * Entity
34985
35623
  * * Description: Type of the parameter - Record is an individual record within the entity specified by EntityID. Entity means an entire Entity or an entity filtered by the LinkedParameterName/Field attributes and/or ExtraFilter. Object is any valid JSON object. Array and Scalar have their common meanings.
34986
35624
  */
34987
35625
  get Type(): 'Array' | 'Entity' | 'Object' | 'Record' | 'Scalar';
@@ -36437,6 +37075,22 @@ export declare class UserEntity extends BaseEntity<UserEntityType> {
36437
37075
  */
36438
37076
  get __mj_UpdatedAt(): Date;
36439
37077
  /**
37078
+ * * Field Name: UserImageURL
37079
+ * * Display Name: User Image URL
37080
+ * * SQL Data Type: nvarchar(MAX)
37081
+ * * Description: User avatar image. Can be a Base64 encoded data URI (e.g., "data:image/png;base64,...") or a URL to an image file. Preferred over UserImageIconClass when present. Recommended for small thumbnail images only to maintain performance.
37082
+ */
37083
+ get UserImageURL(): string | null;
37084
+ set UserImageURL(value: string | null);
37085
+ /**
37086
+ * * Field Name: UserImageIconClass
37087
+ * * Display Name: User Image Icon Class
37088
+ * * SQL Data Type: nvarchar(100)
37089
+ * * Description: Font Awesome icon class for user avatar (e.g., "fa-solid fa-user-astronaut"). Used as fallback when UserImageURL is not provided. Example classes: "fa-solid fa-user", "fa-regular fa-circle-user", "fa-solid fa-user-tie".
37090
+ */
37091
+ get UserImageIconClass(): string | null;
37092
+ set UserImageIconClass(value: string | null);
37093
+ /**
36440
37094
  * * Field Name: FirstLast
36441
37095
  * * Display Name: First Last
36442
37096
  * * SQL Data Type: nvarchar(101)
@@ -36723,10 +37377,10 @@ export declare class VersionInstallationEntity extends BaseEntity<VersionInstall
36723
37377
  * * Default Value: Pending
36724
37378
  * * Value List Type: List
36725
37379
  * * Possible Values
36726
- * * In Progress
36727
37380
  * * Complete
36728
- * * Pending
36729
37381
  * * Failed
37382
+ * * In Progress
37383
+ * * Pending
36730
37384
  * * Description: Pending, Complete, Failed
36731
37385
  */
36732
37386
  get Status(): 'Complete' | 'Failed' | 'In Progress' | 'Pending';
@@ -37027,12 +37681,12 @@ export declare class WorkflowEntity extends BaseEntity<WorkflowEntityType> {
37027
37681
  * * SQL Data Type: nvarchar(20)
37028
37682
  * * Value List Type: List
37029
37683
  * * Possible Values
37030
- * * Weeks
37031
- * * Years
37032
- * * Hours
37033
- * * Months
37034
37684
  * * Days
37685
+ * * Hours
37035
37686
  * * Minutes
37687
+ * * Months
37688
+ * * Weeks
37689
+ * * Years
37036
37690
  * * Description: Minutes, Hours, Days, Weeks, Months, Years
37037
37691
  */
37038
37692
  get AutoRunIntervalUnits(): 'Days' | 'Hours' | 'Minutes' | 'Months' | 'Weeks' | 'Years' | null;