@memberjunction/core-entities 2.109.0 → 2.110.1

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
  /**
@@ -6343,6 +6355,7 @@ export declare const ArtifactSchema: z.ZodObject<{
6343
6355
  UserID: z.ZodString;
6344
6356
  __mj_CreatedAt: z.ZodDate;
6345
6357
  __mj_UpdatedAt: z.ZodDate;
6358
+ Visibility: z.ZodUnion<[z.ZodLiteral<"Always">, z.ZodLiteral<"System Only">]>;
6346
6359
  Environment: z.ZodString;
6347
6360
  Type: z.ZodString;
6348
6361
  User: z.ZodString;
@@ -6359,6 +6372,7 @@ export declare const ArtifactSchema: z.ZodObject<{
6359
6372
  TypeID?: string;
6360
6373
  EnvironmentID?: string;
6361
6374
  Environment?: string;
6375
+ Visibility?: "Always" | "System Only";
6362
6376
  }, {
6363
6377
  ID?: string;
6364
6378
  Comments?: string;
@@ -6372,6 +6386,7 @@ export declare const ArtifactSchema: z.ZodObject<{
6372
6386
  TypeID?: string;
6373
6387
  EnvironmentID?: string;
6374
6388
  Environment?: string;
6389
+ Visibility?: "Always" | "System Only";
6375
6390
  }>;
6376
6391
  export type ArtifactEntityType = z.infer<typeof ArtifactSchema>;
6377
6392
  /**
@@ -6697,6 +6712,8 @@ export declare const ComponentSchema: z.ZodObject<{
6697
6712
  Description?: string;
6698
6713
  Status?: "Deprecated" | "Draft" | "Published";
6699
6714
  Type?: "Other" | "Search" | "Utility" | "Chart" | "Dashboard" | "Form" | "Navigation" | "Report" | "Table" | "Widget";
6715
+ FunctionalRequirements?: string;
6716
+ TechnicalDesign?: string;
6700
6717
  Title?: string;
6701
6718
  Version?: string;
6702
6719
  Namespace?: string;
@@ -6708,8 +6725,6 @@ export declare const ComponentSchema: z.ZodObject<{
6708
6725
  ReplicatedAt?: Date;
6709
6726
  LastSyncedAt?: Date;
6710
6727
  Specification?: string;
6711
- FunctionalRequirements?: string;
6712
- TechnicalDesign?: string;
6713
6728
  FunctionalRequirementsVector?: string;
6714
6729
  TechnicalDesignVector?: string;
6715
6730
  HasCustomProps?: boolean;
@@ -6728,6 +6743,8 @@ export declare const ComponentSchema: z.ZodObject<{
6728
6743
  Description?: string;
6729
6744
  Status?: "Deprecated" | "Draft" | "Published";
6730
6745
  Type?: "Other" | "Search" | "Utility" | "Chart" | "Dashboard" | "Form" | "Navigation" | "Report" | "Table" | "Widget";
6746
+ FunctionalRequirements?: string;
6747
+ TechnicalDesign?: string;
6731
6748
  Title?: string;
6732
6749
  Version?: string;
6733
6750
  Namespace?: string;
@@ -6739,8 +6756,6 @@ export declare const ComponentSchema: z.ZodObject<{
6739
6756
  ReplicatedAt?: Date;
6740
6757
  LastSyncedAt?: Date;
6741
6758
  Specification?: string;
6742
- FunctionalRequirements?: string;
6743
- TechnicalDesign?: string;
6744
6759
  FunctionalRequirementsVector?: string;
6745
6760
  TechnicalDesignVector?: string;
6746
6761
  HasCustomProps?: boolean;
@@ -9584,6 +9599,8 @@ export declare const UserSchema: z.ZodObject<{
9584
9599
  EmployeeID: z.ZodNullable<z.ZodString>;
9585
9600
  __mj_CreatedAt: z.ZodDate;
9586
9601
  __mj_UpdatedAt: z.ZodDate;
9602
+ UserImageURL: z.ZodNullable<z.ZodString>;
9603
+ UserImageIconClass: z.ZodNullable<z.ZodString>;
9587
9604
  FirstLast: z.ZodNullable<z.ZodString>;
9588
9605
  EmployeeFirstLast: z.ZodNullable<z.ZodString>;
9589
9606
  EmployeeEmail: z.ZodNullable<z.ZodString>;
@@ -9606,6 +9623,8 @@ export declare const UserSchema: z.ZodObject<{
9606
9623
  FirstLast?: string;
9607
9624
  LinkedRecordType?: string;
9608
9625
  LinkedEntityRecordID?: string;
9626
+ UserImageURL?: string;
9627
+ UserImageIconClass?: string;
9609
9628
  EmployeeFirstLast?: string;
9610
9629
  EmployeeEmail?: string;
9611
9630
  EmployeeTitle?: string;
@@ -9627,6 +9646,8 @@ export declare const UserSchema: z.ZodObject<{
9627
9646
  FirstLast?: string;
9628
9647
  LinkedRecordType?: string;
9629
9648
  LinkedEntityRecordID?: string;
9649
+ UserImageURL?: string;
9650
+ UserImageIconClass?: string;
9630
9651
  EmployeeFirstLast?: string;
9631
9652
  EmployeeEmail?: string;
9632
9653
  EmployeeTitle?: string;
@@ -10074,8 +10095,8 @@ export declare class ActionCategoryEntity extends BaseEntity<ActionCategoryEntit
10074
10095
  * * Default Value: Pending
10075
10096
  * * Value List Type: List
10076
10097
  * * Possible Values
10077
- * * Disabled
10078
10098
  * * Active
10099
+ * * Disabled
10079
10100
  * * Pending
10080
10101
  * * Description: Status of the action category (Pending, Active, Disabled).
10081
10102
  */
@@ -10226,9 +10247,9 @@ export declare class ActionContextEntity extends BaseEntity<ActionContextEntityT
10226
10247
  * * Default Value: Pending
10227
10248
  * * Value List Type: List
10228
10249
  * * Possible Values
10229
- * * Pending
10230
10250
  * * Active
10231
10251
  * * Disabled
10252
+ * * Pending
10232
10253
  * * Description: Status of the action context (Pending, Active, Disabled).
10233
10254
  */
10234
10255
  get Status(): 'Active' | 'Disabled' | 'Pending';
@@ -10607,9 +10628,9 @@ export declare class ActionParamEntity extends BaseEntity<ActionParamEntityType>
10607
10628
  * * SQL Data Type: nchar(10)
10608
10629
  * * Value List Type: List
10609
10630
  * * Possible Values
10631
+ * * Both
10610
10632
  * * Input
10611
10633
  * * Output
10612
- * * Both
10613
10634
  * * Description: Specifies whether this parameter is used for Input, Output, or Both directions in the action execution flow.
10614
10635
  */
10615
10636
  get Type(): 'Both' | 'Input' | 'Output';
@@ -10620,13 +10641,13 @@ export declare class ActionParamEntity extends BaseEntity<ActionParamEntityType>
10620
10641
  * * SQL Data Type: nvarchar(30)
10621
10642
  * * Value List Type: List
10622
10643
  * * Possible Values
10623
- * * Other
10624
- * * Simple Object
10625
10644
  * * BaseEntity Sub-Class
10626
- * * Scalar
10627
- * * Scalar
10628
10645
  * * BaseEntity Sub-Class
10629
10646
  * * Other
10647
+ * * Other
10648
+ * * Scalar
10649
+ * * Scalar
10650
+ * * Simple Object
10630
10651
  * * Simple Object
10631
10652
  * * Description: Tracks the basic value type of the parameter, additional information can be provided in the Description field
10632
10653
  */
@@ -10871,9 +10892,9 @@ export declare class ActionEntity extends BaseEntity<ActionEntityType> {
10871
10892
  * * Default Value: Pending
10872
10893
  * * Value List Type: List
10873
10894
  * * Possible Values
10874
- * * Rejected
10875
10895
  * * Approved
10876
10896
  * * Pending
10897
+ * * Rejected
10877
10898
  * * Description: An action won't be usable until the code is approved.
10878
10899
  */
10879
10900
  get CodeApprovalStatus(): 'Approved' | 'Pending' | 'Rejected';
@@ -10935,8 +10956,8 @@ export declare class ActionEntity extends BaseEntity<ActionEntityType> {
10935
10956
  * * Default Value: Pending
10936
10957
  * * Value List Type: List
10937
10958
  * * Possible Values
10938
- * * Disabled
10939
10959
  * * Active
10960
+ * * Disabled
10940
10961
  * * Pending
10941
10962
  * * Description: Status of the action (Pending, Active, Disabled).
10942
10963
  */
@@ -11243,8 +11264,8 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
11243
11264
  * * Default Value: Active
11244
11265
  * * Value List Type: List
11245
11266
  * * Possible Values
11246
- * * Pending
11247
11267
  * * Active
11268
+ * * Pending
11248
11269
  * * Revoked
11249
11270
  */
11250
11271
  get Status(): 'Active' | 'Pending' | 'Revoked';
@@ -11294,9 +11315,9 @@ export declare class AIAgentActionEntity extends BaseEntity<AIAgentActionEntityT
11294
11315
  * * Default Value: None
11295
11316
  * * Value List Type: List
11296
11317
  * * Possible Values
11297
- * * Remove
11298
- * * None
11299
11318
  * * Compact
11319
+ * * None
11320
+ * * Remove
11300
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).
11301
11322
  */
11302
11323
  get ResultExpirationMode(): 'Compact' | 'None' | 'Remove';
@@ -11414,9 +11435,9 @@ export declare class AIAgentLearningCycleEntity extends BaseEntity<AIAgentLearni
11414
11435
  * * SQL Data Type: nvarchar(20)
11415
11436
  * * Value List Type: List
11416
11437
  * * Possible Values
11417
- * * In-Progress
11418
- * * Failed
11419
11438
  * * Complete
11439
+ * * Failed
11440
+ * * In-Progress
11420
11441
  * * Description: Status of the learning cycle (In-Progress, Complete, or Failed).
11421
11442
  */
11422
11443
  get Status(): 'Complete' | 'Failed' | 'In-Progress';
@@ -11682,8 +11703,8 @@ export declare class AIAgentNoteEntity extends BaseEntity<AIAgentNoteEntityType>
11682
11703
  * * SQL Data Type: nvarchar(20)
11683
11704
  * * Value List Type: List
11684
11705
  * * Possible Values
11685
- * * User
11686
11706
  * * Global
11707
+ * * User
11687
11708
  * * Description: Indicates the type of note, either User-specific or Global.
11688
11709
  */
11689
11710
  get Type(): 'Global' | 'User';
@@ -11781,10 +11802,10 @@ export declare class AIAgentRequestEntity extends BaseEntity<AIAgentRequestEntit
11781
11802
  * * SQL Data Type: nvarchar(20)
11782
11803
  * * Value List Type: List
11783
11804
  * * Possible Values
11784
- * * Canceled
11785
11805
  * * Approved
11786
- * * Requested
11806
+ * * Canceled
11787
11807
  * * Rejected
11808
+ * * Requested
11788
11809
  * * Description: Current status of the request (Requested, Approved, Rejected, Canceled).
11789
11810
  */
11790
11811
  get Status(): 'Approved' | 'Canceled' | 'Rejected' | 'Requested';
@@ -12075,10 +12096,16 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
12075
12096
  * * Field Name: Status
12076
12097
  * * Display Name: Status
12077
12098
  * * SQL Data Type: nvarchar(20)
12099
+ * * Default Value: Pending
12100
+ * * Value List Type: List
12101
+ * * Possible Values
12102
+ * * Active
12103
+ * * Disabled
12104
+ * * Pending
12078
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.
12079
12106
  */
12080
- get Status(): string | null;
12081
- set Status(value: string | null);
12107
+ get Status(): 'Active' | 'Disabled' | 'Pending';
12108
+ set Status(value: 'Active' | 'Disabled' | 'Pending');
12082
12109
  /**
12083
12110
  * * Field Name: DriverClass
12084
12111
  * * Display Name: Driver Class
@@ -12251,8 +12278,8 @@ if this limit is exceeded.
12251
12278
  * * Default Value: Fail
12252
12279
  * * Value List Type: List
12253
12280
  * * Possible Values
12254
- * * Warn
12255
12281
  * * Fail
12282
+ * * Warn
12256
12283
  * * Description: Determines how to handle StartingPayloadValidation failures. Fail = reject invalid input, Warn = log warning but proceed.
12257
12284
  */
12258
12285
  get StartingPayloadValidationMode(): 'Fail' | 'Warn';
@@ -12272,8 +12299,8 @@ if this limit is exceeded.
12272
12299
  * * Value List Type: List
12273
12300
  * * Possible Values
12274
12301
  * * Failed
12275
- * * Success
12276
12302
  * * Retry
12303
+ * * Success
12277
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.
12278
12305
  */
12279
12306
  get ChatHandlingOption(): 'Failed' | 'Retry' | 'Success' | null;
@@ -12304,14 +12331,44 @@ if this limit is exceeded.
12304
12331
  * * Default Value: Any
12305
12332
  * * Value List Type: List
12306
12333
  * * Possible Values
12307
- * * Sub-Agent
12308
12334
  * * Any
12335
+ * * Sub-Agent
12309
12336
  * * Top-Level
12310
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.
12311
12338
  */
12312
12339
  get InvocationMode(): 'Any' | 'Sub-Agent' | 'Top-Level';
12313
12340
  set InvocationMode(value: 'Any' | 'Sub-Agent' | 'Top-Level');
12314
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
+ /**
12315
12372
  * * Field Name: Parent
12316
12373
  * * Display Name: Parent
12317
12374
  * * SQL Data Type: nvarchar(255)
@@ -13006,11 +13063,11 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13006
13063
  * * Default Value: Any
13007
13064
  * * Value List Type: List
13008
13065
  * * Possible Values
13009
- * * Markdown
13066
+ * * Any
13010
13067
  * * JSON
13011
- * * Text
13068
+ * * Markdown
13012
13069
  * * ModelSpecific
13013
- * * Any
13070
+ * * Text
13014
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.
13015
13072
  */
13016
13073
  get ResponseFormat(): 'Any' | 'JSON' | 'Markdown' | 'ModelSpecific' | 'Text';
@@ -13048,8 +13105,8 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13048
13105
  * * Default Value: Default
13049
13106
  * * Value List Type: List
13050
13107
  * * Possible Values
13051
- * * Default
13052
13108
  * * ByPower
13109
+ * * Default
13053
13110
  * * Specific
13054
13111
  * * Description: Determines how models are selected for this prompt (Default, Specific, ByPower).
13055
13112
  */
@@ -13063,8 +13120,8 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13063
13120
  * * Value List Type: List
13064
13121
  * * Possible Values
13065
13122
  * * Balanced
13066
- * * Lowest
13067
13123
  * * Highest
13124
+ * * Lowest
13068
13125
  * * Description: When using ByPower selection strategy, determines whether to prefer highest, lowest, or balanced power models.
13069
13126
  */
13070
13127
  get PowerPreference(): 'Balanced' | 'Highest' | 'Lowest';
@@ -13077,9 +13134,9 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13077
13134
  * * Value List Type: List
13078
13135
  * * Possible Values
13079
13136
  * * ConfigParam
13080
- * * StaticCount
13081
- * * None
13082
13137
  * * ModelSpecific
13138
+ * * None
13139
+ * * StaticCount
13083
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).
13084
13141
  */
13085
13142
  get ParallelizationMode(): 'ConfigParam' | 'ModelSpecific' | 'None' | 'StaticCount';
@@ -13107,11 +13164,11 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13107
13164
  * * Default Value: string
13108
13165
  * * Value List Type: List
13109
13166
  * * Possible Values
13110
- * * number
13167
+ * * boolean
13111
13168
  * * date
13112
- * * string
13169
+ * * number
13113
13170
  * * object
13114
- * * boolean
13171
+ * * string
13115
13172
  * * Description: The expected data type of the prompt output: string, number, boolean, date, or object.
13116
13173
  */
13117
13174
  get OutputType(): 'boolean' | 'date' | 'number' | 'object' | 'string';
@@ -13131,9 +13188,9 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13131
13188
  * * Default Value: Warn
13132
13189
  * * Value List Type: List
13133
13190
  * * Possible Values
13191
+ * * None
13134
13192
  * * Strict
13135
13193
  * * Warn
13136
- * * None
13137
13194
  * * Description: Determines how validation failures are handled: Strict (fail), Warn (log warning), or None (ignore).
13138
13195
  */
13139
13196
  get ValidationBehavior(): 'None' | 'Strict' | 'Warn';
@@ -13163,9 +13220,9 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13163
13220
  * * Default Value: Fixed
13164
13221
  * * Value List Type: List
13165
13222
  * * Possible Values
13223
+ * * Exponential
13166
13224
  * * Fixed
13167
13225
  * * Linear
13168
- * * Exponential
13169
13226
  * * Description: Strategy for calculating retry delays: Fixed (same delay each time), Exponential (doubling delay), or Linear (linearly increasing delay).
13170
13227
  */
13171
13228
  get RetryStrategy(): 'Exponential' | 'Fixed' | 'Linear';
@@ -13260,10 +13317,10 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13260
13317
  * * Default Value: System
13261
13318
  * * Value List Type: List
13262
13319
  * * Possible Values
13263
- * * SystemOrUser
13264
13320
  * * Assistant
13265
- * * User
13266
13321
  * * System
13322
+ * * SystemOrUser
13323
+ * * User
13267
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)
13268
13325
  */
13269
13326
  get PromptRole(): 'Assistant' | 'System' | 'SystemOrUser' | 'User';
@@ -13369,14 +13426,14 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13369
13426
  * * Default Value: SameModelDifferentVendor
13370
13427
  * * Value List Type: List
13371
13428
  * * Possible Values
13429
+ * * NextBestModel
13430
+ * * NextBestModel
13431
+ * * None
13372
13432
  * * None
13373
13433
  * * PowerRank
13374
13434
  * * PowerRank
13375
13435
  * * SameModelDifferentVendor
13376
- * * NextBestModel
13377
- * * NextBestModel
13378
13436
  * * SameModelDifferentVendor
13379
- * * None
13380
13437
  * * Description: Failover strategy to use when the primary model fails. Options: SameModelDifferentVendor, NextBestModel, PowerRank, None
13381
13438
  */
13382
13439
  get FailoverStrategy(): 'NextBestModel' | 'NextBestModel' | 'None' | 'None' | 'PowerRank' | 'PowerRank' | 'SameModelDifferentVendor' | 'SameModelDifferentVendor';
@@ -13406,12 +13463,12 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13406
13463
  * * Default Value: PreferSameModel
13407
13464
  * * Value List Type: List
13408
13465
  * * Possible Values
13409
- * * RequireSameModel
13410
- * * RequireSameModel
13411
13466
  * * PreferDifferentModel
13412
13467
  * * PreferDifferentModel
13413
13468
  * * PreferSameModel
13414
13469
  * * PreferSameModel
13470
+ * * RequireSameModel
13471
+ * * RequireSameModel
13415
13472
  * * Description: Strategy for selecting failover models. Options: PreferSameModel, PreferDifferentModel, RequireSameModel
13416
13473
  */
13417
13474
  get FailoverModelStrategy(): 'PreferDifferentModel' | 'PreferDifferentModel' | 'PreferSameModel' | 'PreferSameModel' | 'RequireSameModel' | 'RequireSameModel';
@@ -13423,14 +13480,14 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
13423
13480
  * * Default Value: All
13424
13481
  * * Value List Type: List
13425
13482
  * * Possible Values
13426
- * * ServiceErrorOnly
13427
- * * RateLimitOnly
13428
- * * NetworkOnly
13483
+ * * All
13429
13484
  * * All
13430
13485
  * * NetworkOnly
13486
+ * * NetworkOnly
13487
+ * * RateLimitOnly
13431
13488
  * * RateLimitOnly
13432
13489
  * * ServiceErrorOnly
13433
- * * All
13490
+ * * ServiceErrorOnly
13434
13491
  * * Description: Types of errors that should trigger failover. Options: All, NetworkOnly, RateLimitOnly, ServiceErrorOnly
13435
13492
  */
13436
13493
  get FailoverErrorScope(): 'All' | 'All' | 'NetworkOnly' | 'NetworkOnly' | 'RateLimitOnly' | 'RateLimitOnly' | 'ServiceErrorOnly' | 'ServiceErrorOnly';
@@ -13560,8 +13617,8 @@ export declare class AIResultCacheEntity extends BaseEntity<AIResultCacheEntityT
13560
13617
  * * SQL Data Type: nvarchar(50)
13561
13618
  * * Value List Type: List
13562
13619
  * * Possible Values
13563
- * * Expired
13564
13620
  * * Active
13621
+ * * Expired
13565
13622
  * * Description: The status of this result, indicating whether it is currently active or expired.
13566
13623
  */
13567
13624
  get Status(): 'Active' | 'Expired';
@@ -14099,8 +14156,8 @@ export declare class AuditLogEntity extends BaseEntity<AuditLogEntityType> {
14099
14156
  * * Default Value: Allow
14100
14157
  * * Value List Type: List
14101
14158
  * * Possible Values
14102
- * * Success
14103
14159
  * * Failed
14160
+ * * Success
14104
14161
  */
14105
14162
  get Status(): 'Failed' | 'Success';
14106
14163
  set Status(value: 'Failed' | 'Success');
@@ -14513,8 +14570,8 @@ export declare class CommunicationLogEntity extends BaseEntity<CommunicationLogE
14513
14570
  * * SQL Data Type: nvarchar(20)
14514
14571
  * * Value List Type: List
14515
14572
  * * Possible Values
14516
- * * Sending
14517
14573
  * * Receiving
14574
+ * * Sending
14518
14575
  * * Description: The direction of the communication log (Sending or Receiving).
14519
14576
  */
14520
14577
  get Direction(): 'Receiving' | 'Sending';
@@ -14534,8 +14591,8 @@ export declare class CommunicationLogEntity extends BaseEntity<CommunicationLogE
14534
14591
  * * Default Value: Pending
14535
14592
  * * Value List Type: List
14536
14593
  * * Possible Values
14537
- * * Failed
14538
14594
  * * Complete
14595
+ * * Failed
14539
14596
  * * In-Progress
14540
14597
  * * Pending
14541
14598
  * * Description: The status of the logged message (Pending, In-Progress, Complete, Failed).
@@ -14647,8 +14704,8 @@ export declare class CommunicationProviderMessageTypeEntity extends BaseEntity<C
14647
14704
  * * Default Value: Disabled
14648
14705
  * * Value List Type: List
14649
14706
  * * Possible Values
14650
- * * Disabled
14651
14707
  * * Active
14708
+ * * Disabled
14652
14709
  * * Description: The status of the provider message type (Disabled or Active).
14653
14710
  */
14654
14711
  get Status(): 'Active' | 'Disabled';
@@ -14821,6 +14878,15 @@ export declare class CommunicationProviderEntity extends BaseEntity<Communicatio
14821
14878
  */
14822
14879
  get SupportsReplying(): boolean;
14823
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);
14824
14890
  }
14825
14891
  /**
14826
14892
  * Communication Runs - strongly typed entity sub-class
@@ -14868,8 +14934,8 @@ export declare class CommunicationRunEntity extends BaseEntity<CommunicationRunE
14868
14934
  * * SQL Data Type: nvarchar(20)
14869
14935
  * * Value List Type: List
14870
14936
  * * Possible Values
14871
- * * Sending
14872
14937
  * * Receiving
14938
+ * * Sending
14873
14939
  * * Description: The direction of the communication run (Sending or Receiving).
14874
14940
  */
14875
14941
  get Direction(): 'Receiving' | 'Sending';
@@ -14882,8 +14948,8 @@ export declare class CommunicationRunEntity extends BaseEntity<CommunicationRunE
14882
14948
  * * Possible Values
14883
14949
  * * Complete
14884
14950
  * * Failed
14885
- * * Pending
14886
14951
  * * In-Progress
14952
+ * * Pending
14887
14953
  * * Description: The status of the communication run (Pending, In-Progress, Complete, Failed).
14888
14954
  */
14889
14955
  get Status(): 'Complete' | 'Failed' | 'In-Progress' | 'Pending';
@@ -15173,13 +15239,13 @@ export declare class CompanyIntegrationRunAPILogEntity extends BaseEntity<Compan
15173
15239
  * * SQL Data Type: nvarchar(12)
15174
15240
  * * Value List Type: List
15175
15241
  * * Possible Values
15176
- * * PATCH
15177
- * * PUT
15178
15242
  * * DELETE
15243
+ * * GET
15179
15244
  * * HEAD
15180
15245
  * * OPTIONS
15246
+ * * PATCH
15181
15247
  * * POST
15182
- * * GET
15248
+ * * PUT
15183
15249
  * * Description: HTTP method used for the API call (GET, POST, PUT, DELETE, PATCH).
15184
15250
  */
15185
15251
  get RequestMethod(): 'DELETE' | 'GET' | 'HEAD' | 'OPTIONS' | 'PATCH' | 'POST' | 'PUT' | null;
@@ -15421,10 +15487,10 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity<CompanyInteg
15421
15487
  * * Default Value: Pending
15422
15488
  * * Value List Type: List
15423
15489
  * * Possible Values
15424
- * * Pending
15425
15490
  * * Failed
15426
- * * Success
15427
15491
  * * In Progress
15492
+ * * Pending
15493
+ * * Success
15428
15494
  * * Description: Status of the integration run. Possible values: Pending, In Progress, Success, Failed.
15429
15495
  */
15430
15496
  get Status(): 'Failed' | 'In Progress' | 'Pending' | 'Success';
@@ -16670,8 +16736,8 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
16670
16736
  * * Value List Type: List
16671
16737
  * * Possible Values
16672
16738
  * * AI
16673
- * * User
16674
16739
  * * Error
16740
+ * * User
16675
16741
  * * Description: The role of the message sender (user, assistant, system, function).
16676
16742
  */
16677
16743
  get Role(): 'AI' | 'Error' | 'User';
@@ -16759,7 +16825,8 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
16759
16825
  /**
16760
16826
  * * Field Name: ArtifactID
16761
16827
  * * Display Name: Artifact ID
16762
- * * 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
16763
16830
  * * Related Entity/Foreign Key: MJ: Conversation Artifacts (vwConversationArtifacts.ID)
16764
16831
  * * Description: Optional reference to a conversation artifact associated with this conversation detail
16765
16832
  */
@@ -16768,7 +16835,8 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
16768
16835
  /**
16769
16836
  * * Field Name: ArtifactVersionID
16770
16837
  * * Display Name: Artifact Version ID
16771
- * * 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
16772
16840
  * * Related Entity/Foreign Key: MJ: Conversation Artifact Versions (vwConversationArtifactVersions.ID)
16773
16841
  * * Description: Optional reference to a specific version of a conversation artifact associated with this conversation detail
16774
16842
  */
@@ -16816,9 +16884,9 @@ export declare class ConversationDetailEntity extends BaseEntity<ConversationDet
16816
16884
  * * Default Value: Complete
16817
16885
  * * Value List Type: List
16818
16886
  * * Possible Values
16819
- * * In-Progress
16820
16887
  * * Complete
16821
16888
  * * Error
16889
+ * * In-Progress
16822
16890
  * * Description: Status of the conversation message. Complete indicates finished processing, In-Progress indicates active agent work, Error indicates processing failed.
16823
16891
  */
16824
16892
  get Status(): 'Complete' | 'Error' | 'In-Progress';
@@ -17246,9 +17314,9 @@ export declare class DashboardEntity extends BaseEntity<DashboardEntityType> {
17246
17314
  * * Default Value: Config
17247
17315
  * * Value List Type: List
17248
17316
  * * Possible Values
17317
+ * * Code
17249
17318
  * * Config
17250
17319
  * * Dynamic Code
17251
- * * Code
17252
17320
  * * Description: Dashboard type supporting Config (metadata-driven), Code (compiled TypeScript), and Dynamic Code (Skip-generated runtime JavaScript/React) options
17253
17321
  */
17254
17322
  get Type(): 'Code' | 'Config' | 'Dynamic Code';
@@ -17268,8 +17336,8 @@ export declare class DashboardEntity extends BaseEntity<DashboardEntityType> {
17268
17336
  * * Default Value: Global
17269
17337
  * * Value List Type: List
17270
17338
  * * Possible Values
17271
- * * Global
17272
17339
  * * App
17340
+ * * Global
17273
17341
  * * Description: Scope of the dashboard: Global or App-specific
17274
17342
  */
17275
17343
  get Scope(): 'App' | 'Global';
@@ -17861,8 +17929,8 @@ export declare class DuplicateRunDetailMatchEntity extends BaseEntity<DuplicateR
17861
17929
  * * Value List Type: List
17862
17930
  * * Possible Values
17863
17931
  * * Approved
17864
- * * Rejected
17865
17932
  * * Pending
17933
+ * * Rejected
17866
17934
  * * Description: Current approval status of the proposed action (Pending, Approved, Rejected).
17867
17935
  */
17868
17936
  get ApprovalStatus(): 'Approved' | 'Pending' | 'Rejected';
@@ -17968,10 +18036,10 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
17968
18036
  * * Default Value: Pending
17969
18037
  * * Value List Type: List
17970
18038
  * * Possible Values
17971
- * * Error
17972
18039
  * * Complete
17973
- * * Skipped
18040
+ * * Error
17974
18041
  * * Pending
18042
+ * * Skipped
17975
18043
  * * Description: Status of duplicate analysis for this record (Pending, Complete, Error).
17976
18044
  */
17977
18045
  get MatchStatus(): 'Complete' | 'Error' | 'Pending' | 'Skipped';
@@ -17999,10 +18067,10 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
17999
18067
  * * Default Value: Not Applicable
18000
18068
  * * Value List Type: List
18001
18069
  * * Possible Values
18002
- * * Pending
18070
+ * * Complete
18003
18071
  * * Error
18004
18072
  * * Not Applicable
18005
- * * Complete
18073
+ * * Pending
18006
18074
  * * Description: Status of any merge operations for this record (Not Applicable, Pending, Complete, Failed).
18007
18075
  */
18008
18076
  get MergeStatus(): 'Complete' | 'Error' | 'Not Applicable' | 'Pending';
@@ -18109,8 +18177,8 @@ export declare class DuplicateRunEntity extends BaseEntity<DuplicateRunEntityTyp
18109
18177
  * * Value List Type: List
18110
18178
  * * Possible Values
18111
18179
  * * Approved
18112
- * * Rejected
18113
18180
  * * Pending
18181
+ * * Rejected
18114
18182
  * * Description: Overall approval status for the duplicate run results (Pending, Approved, Rejected).
18115
18183
  */
18116
18184
  get ApprovalStatus(): 'Approved' | 'Pending' | 'Rejected';
@@ -18139,9 +18207,9 @@ export declare class DuplicateRunEntity extends BaseEntity<DuplicateRunEntityTyp
18139
18207
  * * Value List Type: List
18140
18208
  * * Possible Values
18141
18209
  * * Complete
18210
+ * * Failed
18142
18211
  * * In Progress
18143
18212
  * * Pending
18144
- * * Failed
18145
18213
  * * Description: Current processing status of the duplicate detection run (Pending, Running, Complete, Failed).
18146
18214
  */
18147
18215
  get ProcessingStatus(): 'Complete' | 'Failed' | 'In Progress' | 'Pending';
@@ -18911,8 +18979,8 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
18911
18979
  * * Default Value: Hard
18912
18980
  * * Value List Type: List
18913
18981
  * * Possible Values
18914
- * * Soft
18915
18982
  * * Hard
18983
+ * * Soft
18916
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.
18917
18985
  */
18918
18986
  get DeleteType(): 'Hard' | 'Soft';
@@ -18941,8 +19009,8 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
18941
19009
  * * Default Value: Search
18942
19010
  * * Value List Type: List
18943
19011
  * * Possible Values
18944
- * * Search
18945
19012
  * * Dropdown
19013
+ * * Search
18946
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.
18947
19015
  */
18948
19016
  get RelationshipDefaultDisplayType(): 'Dropdown' | 'Search';
@@ -19017,9 +19085,9 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
19017
19085
  * * Default Value: None
19018
19086
  * * Value List Type: List
19019
19087
  * * Possible Values
19088
+ * * All
19020
19089
  * * None
19021
19090
  * * Sample
19022
- * * All
19023
19091
  * * Description: Determines how entity rows should be packaged for external use. Options include None, Sample, and All. Defaults to None.
19024
19092
  */
19025
19093
  get RowsToPackWithSchema(): 'All' | 'None' | 'Sample';
@@ -19031,9 +19099,9 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
19031
19099
  * * Default Value: random
19032
19100
  * * Value List Type: List
19033
19101
  * * Possible Values
19034
- * * top n
19035
- * * random
19036
19102
  * * bottom n
19103
+ * * random
19104
+ * * top n
19037
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.
19038
19106
  */
19039
19107
  get RowsToPackSampleMethod(): 'bottom n' | 'random' | 'top n';
@@ -19086,9 +19154,9 @@ export declare class EntityEntity extends BaseEntity<EntityEntityType> {
19086
19154
  * * Default Value: Active
19087
19155
  * * Value List Type: List
19088
19156
  * * Possible Values
19157
+ * * Active
19089
19158
  * * Deprecated
19090
19159
  * * Disabled
19091
- * * Active
19092
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.
19093
19161
  */
19094
19162
  get Status(): 'Active' | 'Deprecated' | 'Disabled';
@@ -19201,9 +19269,9 @@ export declare class EntityActionFilterEntity extends BaseEntity<EntityActionFil
19201
19269
  * * Default Value: Pending
19202
19270
  * * Value List Type: List
19203
19271
  * * Possible Values
19204
- * * Pending
19205
- * * Disabled
19206
19272
  * * Active
19273
+ * * Disabled
19274
+ * * Pending
19207
19275
  * * Description: Status of the entity action filter (Pending, Active, Disabled).
19208
19276
  */
19209
19277
  get Status(): 'Active' | 'Disabled' | 'Pending';
@@ -19350,8 +19418,8 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
19350
19418
  * * Default Value: Pending
19351
19419
  * * Value List Type: List
19352
19420
  * * Possible Values
19353
- * * Disabled
19354
19421
  * * Active
19422
+ * * Disabled
19355
19423
  * * Pending
19356
19424
  * * Description: Status of the entity action invocation (Pending, Active, Disabled).
19357
19425
  */
@@ -19432,9 +19500,9 @@ export declare class EntityActionParamEntity extends BaseEntity<EntityActionPara
19432
19500
  * * SQL Data Type: nvarchar(20)
19433
19501
  * * Value List Type: List
19434
19502
  * * Possible Values
19435
- * * Script
19436
- * * Entity Object
19437
19503
  * * Entity Field
19504
+ * * Entity Object
19505
+ * * Script
19438
19506
  * * Static
19439
19507
  * * Description: Type of the value, which can be Static, Entity Object, or Script.
19440
19508
  */
@@ -19645,8 +19713,8 @@ export declare class EntityAIActionEntity extends BaseEntity<EntityAIActionEntit
19645
19713
  * * Default Value: After Save
19646
19714
  * * Value List Type: List
19647
19715
  * * Possible Values
19648
- * * before save
19649
19716
  * * after save
19717
+ * * before save
19650
19718
  * * Description: The entity event that triggers this AI action (After Save, Before Delete, etc.).
19651
19719
  */
19652
19720
  get TriggerEvent(): 'after save' | 'before save';
@@ -19960,8 +20028,8 @@ export declare class EntityDocumentRunEntity extends BaseEntity<EntityDocumentRu
19960
20028
  * * Value List Type: List
19961
20029
  * * Possible Values
19962
20030
  * * Complete
19963
- * * Pending
19964
20031
  * * Failed
20032
+ * * Pending
19965
20033
  * * Description: Can be Pending, In Progress, Completed, or Failed
19966
20034
  */
19967
20035
  get Status(): 'Complete' | 'Failed' | 'Pending';
@@ -20216,8 +20284,8 @@ export declare class EntityDocumentEntity extends BaseEntity<EntityDocumentEntit
20216
20284
  * * Default Value: Active
20217
20285
  * * Value List Type: List
20218
20286
  * * Possible Values
20219
- * * Inactive
20220
20287
  * * Active
20288
+ * * Inactive
20221
20289
  */
20222
20290
  get Status(): 'Active' | 'Inactive';
20223
20291
  set Status(value: 'Active' | 'Inactive');
@@ -20559,9 +20627,9 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20559
20627
  * * Default Value: None
20560
20628
  * * Value List Type: List
20561
20629
  * * Possible Values
20630
+ * * List
20562
20631
  * * ListOrUserEntry
20563
20632
  * * None
20564
- * * List
20565
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.
20566
20634
  */
20567
20635
  get ValueListType(): 'List' | 'ListOrUserEntry' | 'None';
@@ -20572,18 +20640,18 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20572
20640
  * * SQL Data Type: nvarchar(50)
20573
20641
  * * Value List Type: List
20574
20642
  * * Possible Values
20575
- * * SMS
20576
- * * Email
20577
- * * WhatsApp
20578
- * * MSTeams
20579
- * * URL
20580
- * * Skype
20581
20643
  * * Code
20644
+ * * Email
20582
20645
  * * FaceTime
20583
- * * SIP
20584
20646
  * * Geo
20647
+ * * MSTeams
20585
20648
  * * Other
20649
+ * * SIP
20650
+ * * SMS
20651
+ * * Skype
20586
20652
  * * Tel
20653
+ * * URL
20654
+ * * WhatsApp
20587
20655
  * * ZoomMtg
20588
20656
  * * Description: Defines extended behaviors for a field such as for Email, Web URLs, Code, etc.
20589
20657
  */
@@ -20595,12 +20663,12 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20595
20663
  * * SQL Data Type: nvarchar(50)
20596
20664
  * * Value List Type: List
20597
20665
  * * Possible Values
20666
+ * * CSS
20598
20667
  * * HTML
20599
20668
  * * JavaScript
20600
- * * CSS
20601
- * * TypeScript
20602
- * * SQL
20603
20669
  * * Other
20670
+ * * SQL
20671
+ * * TypeScript
20604
20672
  * * Description: The type of code associated with this field. Only used when the ExtendedType field is set to "Code"
20605
20673
  */
20606
20674
  get CodeType(): 'CSS' | 'HTML' | 'JavaScript' | 'Other' | 'SQL' | 'TypeScript' | null;
@@ -20691,8 +20759,8 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20691
20759
  * * Value List Type: List
20692
20760
  * * Possible Values
20693
20761
  * * Category
20694
- * * Top
20695
20762
  * * Details
20763
+ * * Top
20696
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
20697
20765
  */
20698
20766
  get GeneratedFormSection(): 'Category' | 'Details' | 'Top';
@@ -20802,9 +20870,9 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20802
20870
  * * Default Value: Auto
20803
20871
  * * Value List Type: List
20804
20872
  * * Possible Values
20873
+ * * All
20805
20874
  * * Auto
20806
20875
  * * None
20807
- * * All
20808
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.
20809
20877
  */
20810
20878
  get ValuesToPackWithSchema(): 'All' | 'Auto' | 'None';
@@ -20816,8 +20884,8 @@ export declare class EntityFieldEntity extends BaseEntity<EntityFieldEntityType>
20816
20884
  * * Default Value: Active
20817
20885
  * * Value List Type: List
20818
20886
  * * Possible Values
20819
- * * Deprecated
20820
20887
  * * Active
20888
+ * * Deprecated
20821
20889
  * * Disabled
20822
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
20823
20891
  */
@@ -21254,8 +21322,8 @@ export declare class EntityRelationshipDisplayComponentEntity extends BaseEntity
21254
21322
  * * SQL Data Type: nvarchar(20)
21255
21323
  * * Value List Type: List
21256
21324
  * * Possible Values
21257
- * * Many to Many
21258
21325
  * * Both
21326
+ * * Many to Many
21259
21327
  * * One to Many
21260
21328
  * * Description: The type of relationship the component displays. Valid values are "One to Many", "Many to Many", or "Both".
21261
21329
  */
@@ -22455,9 +22523,9 @@ export declare class GeneratedCodeEntity extends BaseEntity<GeneratedCodeEntityT
22455
22523
  * * Default Value: Pending
22456
22524
  * * Value List Type: List
22457
22525
  * * Possible Values
22526
+ * * Approved
22458
22527
  * * Pending
22459
22528
  * * Rejected
22460
- * * Approved
22461
22529
  * * Description: Status of the generated code, e.g., Pending, Approved, or Rejected.
22462
22530
  */
22463
22531
  get Status(): 'Approved' | 'Pending' | 'Rejected';
@@ -22469,13 +22537,13 @@ export declare class GeneratedCodeEntity extends BaseEntity<GeneratedCodeEntityT
22469
22537
  * * Default Value: TypeScript
22470
22538
  * * Value List Type: List
22471
22539
  * * Possible Values
22540
+ * * CSS
22541
+ * * HTML
22542
+ * * JavaScript
22472
22543
  * * Other
22473
22544
  * * Python
22474
- * * JavaScript
22475
22545
  * * SQL
22476
- * * HTML
22477
22546
  * * TypeScript
22478
- * * CSS
22479
22547
  * * Description: Programming language of the generated code (TypeScript, SQL, HTML, CSS, JavaScript, Python, or Other).
22480
22548
  */
22481
22549
  get Language(): 'CSS' | 'HTML' | 'JavaScript' | 'Other' | 'Python' | 'SQL' | 'TypeScript';
@@ -22760,9 +22828,9 @@ export declare class LibraryEntity extends BaseEntity<LibraryEntityType> {
22760
22828
  * * Default Value: Pending
22761
22829
  * * Value List Type: List
22762
22830
  * * Possible Values
22831
+ * * Active
22763
22832
  * * Disabled
22764
22833
  * * Pending
22765
- * * Active
22766
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.
22767
22835
  */
22768
22836
  get Status(): 'Active' | 'Disabled' | 'Pending';
@@ -22851,12 +22919,12 @@ export declare class LibraryItemEntity extends BaseEntity<LibraryItemEntityType>
22851
22919
  * * SQL Data Type: nvarchar(50)
22852
22920
  * * Value List Type: List
22853
22921
  * * Possible Values
22854
- * * Variable
22855
- * * Module
22856
- * * Function
22857
22922
  * * Class
22923
+ * * Function
22858
22924
  * * Interface
22925
+ * * Module
22859
22926
  * * Type
22927
+ * * Variable
22860
22928
  * * Description: Type of the library item for example Class, Interface, etc.
22861
22929
  */
22862
22930
  get Type(): 'Class' | 'Function' | 'Interface' | 'Module' | 'Type' | 'Variable';
@@ -23054,12 +23122,12 @@ export declare class ListDetailEntity extends BaseEntity<ListDetailEntityType> {
23054
23122
  * * Value List Type: List
23055
23123
  * * Possible Values
23056
23124
  * * Active
23125
+ * * Complete
23057
23126
  * * Disabled
23058
23127
  * * Error
23059
23128
  * * Other
23060
- * * Rejected
23061
23129
  * * Pending
23062
- * * Complete
23130
+ * * Rejected
23063
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.
23064
23132
  */
23065
23133
  get Status(): 'Active' | 'Complete' | 'Disabled' | 'Error' | 'Other' | 'Pending' | 'Rejected';
@@ -23256,9 +23324,9 @@ export declare class AccessControlRuleEntity extends BaseEntity<AccessControlRul
23256
23324
  * * Value List Type: List
23257
23325
  * * Possible Values
23258
23326
  * * Everyone
23327
+ * * Public
23259
23328
  * * Role
23260
23329
  * * User
23261
- * * Public
23262
23330
  * * Description: Type of grantee receiving permission (User, Role, Everyone, Public). "Everyone" means all authenticated users whereas "Public" means any authenticated OR anonymous user.
23263
23331
  */
23264
23332
  get GranteeType(): 'Everyone' | 'Public' | 'Role' | 'User';
@@ -23649,9 +23717,9 @@ export declare class AIAgentDataSourceEntity extends BaseEntity<AIAgentDataSourc
23649
23717
  * * Default Value: None
23650
23718
  * * Value List Type: List
23651
23719
  * * Possible Values
23652
- * * PerRun
23653
- * * PerAgent
23654
23720
  * * None
23721
+ * * PerAgent
23722
+ * * PerRun
23655
23723
  * * Description: Cache policy: None (no caching), PerRun (cache for duration of agent run), PerAgent (cache across runs with timeout)
23656
23724
  */
23657
23725
  get CachePolicy(): 'None' | 'PerAgent' | 'PerRun';
@@ -23671,8 +23739,8 @@ export declare class AIAgentDataSourceEntity extends BaseEntity<AIAgentDataSourc
23671
23739
  * * Default Value: Data
23672
23740
  * * Value List Type: List
23673
23741
  * * Possible Values
23674
- * * Data
23675
23742
  * * Context
23743
+ * * Data
23676
23744
  * * Payload
23677
23745
  * * Description: Destination for the preloaded data: Data (for Nunjucks templates in prompts), Context (for actions only), or Payload (for agent state)
23678
23746
  */
@@ -23955,9 +24023,9 @@ export declare class AIAgentPromptEntity extends BaseEntity<AIAgentPromptEntityT
23955
24023
  * * Default Value: Active
23956
24024
  * * Value List Type: List
23957
24025
  * * Possible Values
23958
- * * Inactive
23959
- * * Deprecated
23960
24026
  * * Active
24027
+ * * Deprecated
24028
+ * * Inactive
23961
24029
  * * Preview
23962
24030
  * * Description: The current status of this agent-prompt mapping. Values include Active, Inactive, Deprecated, and Preview.
23963
24031
  */
@@ -23970,12 +24038,12 @@ export declare class AIAgentPromptEntity extends BaseEntity<AIAgentPromptEntityT
23970
24038
  * * Default Value: Complete
23971
24039
  * * Value List Type: List
23972
24040
  * * Possible Values
24041
+ * * Complete
24042
+ * * Custom
23973
24043
  * * InitialMessages
23974
24044
  * * None
23975
- * * Smart
23976
24045
  * * RecentMessages
23977
- * * Complete
23978
- * * Custom
24046
+ * * Smart
23979
24047
  * * Description: Determines how conversation context is filtered for this prompt: Complete, Smart, None, RecentMessages, InitialMessages, or Custom.
23980
24048
  */
23981
24049
  get ContextBehavior(): 'Complete' | 'Custom' | 'InitialMessages' | 'None' | 'RecentMessages' | 'Smart';
@@ -24078,9 +24146,9 @@ export declare class AIAgentRelationshipEntity extends BaseEntity<AIAgentRelatio
24078
24146
  * * SQL Data Type: nvarchar(50)
24079
24147
  * * Value List Type: List
24080
24148
  * * Possible Values
24081
- * * Revoked
24082
- * * Pending
24083
24149
  * * Active
24150
+ * * Pending
24151
+ * * Revoked
24084
24152
  * * Description: Status of the relationship: Pending (awaiting approval), Active (can invoke), or Revoked (no longer allowed)
24085
24153
  */
24086
24154
  get Status(): 'Active' | 'Pending' | 'Revoked';
@@ -24209,11 +24277,11 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
24209
24277
  * * Value List Type: List
24210
24278
  * * Possible Values
24211
24279
  * * Actions
24212
- * * Validation
24213
- * * Sub-Agent
24214
24280
  * * Chat
24215
24281
  * * Decision
24216
24282
  * * Prompt
24283
+ * * Sub-Agent
24284
+ * * Validation
24217
24285
  * * Description: Type of execution step: Prompt, Actions, Sub-Agent, Decision, Chat, Validation
24218
24286
  */
24219
24287
  get StepType(): 'Actions' | 'Chat' | 'Decision' | 'Prompt' | 'Sub-Agent' | 'Validation';
@@ -24241,10 +24309,10 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
24241
24309
  * * Default Value: Running
24242
24310
  * * Value List Type: List
24243
24311
  * * Possible Values
24312
+ * * Cancelled
24313
+ * * Completed
24244
24314
  * * Failed
24245
24315
  * * Running
24246
- * * Completed
24247
- * * Cancelled
24248
24316
  * * Description: Current execution status of this step: Running, Completed, Failed, Cancelled
24249
24317
  */
24250
24318
  get Status(): 'Cancelled' | 'Completed' | 'Failed' | 'Running';
@@ -24343,13 +24411,13 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
24343
24411
  * * Value List Type: List
24344
24412
  * * Possible Values
24345
24413
  * * Fail
24346
- * * Pass
24347
- * * Warn
24348
24414
  * * Fail
24349
- * * Warn
24415
+ * * Pass
24350
24416
  * * Pass
24351
24417
  * * Retry
24352
24418
  * * Retry
24419
+ * * Warn
24420
+ * * Warn
24353
24421
  * * Description: Result of the final payload validation for this step. Pass indicates successful
24354
24422
  validation, Retry means validation failed but will retry, Fail means validation failed
24355
24423
  permanently, Warn means validation failed but execution continues.
@@ -24462,11 +24530,11 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
24462
24530
  * * Default Value: Running
24463
24531
  * * Value List Type: List
24464
24532
  * * Possible Values
24465
- * * Failed
24466
- * * Running
24467
24533
  * * Cancelled
24468
- * * Paused
24469
24534
  * * Completed
24535
+ * * Failed
24536
+ * * Paused
24537
+ * * Running
24470
24538
  * * Description: Current status of the agent run. Running -> Completed/Failed/Cancelled
24471
24539
  */
24472
24540
  get Status(): 'Cancelled' | 'Completed' | 'Failed' | 'Paused' | 'Running';
@@ -24642,9 +24710,9 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
24642
24710
  * * SQL Data Type: nvarchar(30)
24643
24711
  * * Value List Type: List
24644
24712
  * * Possible Values
24645
- * * User Request
24646
- * * Timeout
24647
24713
  * * System
24714
+ * * Timeout
24715
+ * * User Request
24648
24716
  * * Description: Reason for cancellation if the agent run was cancelled
24649
24717
  */
24650
24718
  get CancellationReason(): 'System' | 'Timeout' | 'User Request' | null;
@@ -24655,12 +24723,12 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
24655
24723
  * * SQL Data Type: nvarchar(30)
24656
24724
  * * Value List Type: List
24657
24725
  * * Possible Values
24726
+ * * Actions
24658
24727
  * * Chat
24728
+ * * Failed
24659
24729
  * * Retry
24660
- * * Actions
24661
24730
  * * Sub-Agent
24662
24731
  * * Success
24663
- * * Failed
24664
24732
  * * Description: The final step type that concluded the agent run
24665
24733
  */
24666
24734
  get FinalStep(): 'Actions' | 'Chat' | 'Failed' | 'Retry' | 'Sub-Agent' | 'Success' | null;
@@ -25038,9 +25106,9 @@ export declare class AIAgentStepEntity extends BaseEntity<AIAgentStepEntityType>
25038
25106
  * * SQL Data Type: nvarchar(20)
25039
25107
  * * Value List Type: List
25040
25108
  * * Possible Values
25041
- * * Sub-Agent
25042
- * * Prompt
25043
25109
  * * Action
25110
+ * * Prompt
25111
+ * * Sub-Agent
25044
25112
  * * Description: Type of step: Action (execute an action), Sub-Agent (delegate to another agent), or Prompt (run an AI prompt)
25045
25113
  */
25046
25114
  get StepType(): 'Action' | 'Prompt' | 'Sub-Agent';
@@ -25077,8 +25145,8 @@ export declare class AIAgentStepEntity extends BaseEntity<AIAgentStepEntityType>
25077
25145
  * * Default Value: fail
25078
25146
  * * Value List Type: List
25079
25147
  * * Possible Values
25080
- * * fail
25081
25148
  * * continue
25149
+ * * fail
25082
25150
  * * retry
25083
25151
  */
25084
25152
  get OnErrorBehavior(): 'continue' | 'fail' | 'retry';
@@ -25168,8 +25236,8 @@ export declare class AIAgentStepEntity extends BaseEntity<AIAgentStepEntityType>
25168
25236
  * * Default Value: Active
25169
25237
  * * Value List Type: List
25170
25238
  * * Possible Values
25171
- * * Disabled
25172
25239
  * * Active
25240
+ * * Disabled
25173
25241
  * * Pending
25174
25242
  * * Description: Controls whether this step is executed. Active=normal execution, Pending=skip but may activate later, Disabled=never execute
25175
25243
  */
@@ -25392,11 +25460,11 @@ export declare class AIConfigurationParamEntity extends BaseEntity<AIConfigurati
25392
25460
  * * Default Value: string
25393
25461
  * * Value List Type: List
25394
25462
  * * Possible Values
25395
- * * date
25396
25463
  * * boolean
25464
+ * * date
25397
25465
  * * number
25398
- * * string
25399
25466
  * * object
25467
+ * * string
25400
25468
  * * Description: The data type of the parameter (string, number, boolean, date, object).
25401
25469
  */
25402
25470
  get Type(): 'boolean' | 'date' | 'number' | 'object' | 'string';
@@ -25502,9 +25570,9 @@ export declare class AIConfigurationEntity extends BaseEntity<AIConfigurationEnt
25502
25570
  * * Default Value: Active
25503
25571
  * * Value List Type: List
25504
25572
  * * Possible Values
25505
- * * Inactive
25506
- * * Deprecated
25507
25573
  * * Active
25574
+ * * Deprecated
25575
+ * * Inactive
25508
25576
  * * Preview
25509
25577
  * * Description: The current status of the configuration. Values include Active, Inactive, Deprecated, and Preview.
25510
25578
  */
@@ -25665,10 +25733,10 @@ export declare class AIModelCostEntity extends BaseEntity<AIModelCostEntityType>
25665
25733
  * * SQL Data Type: nvarchar(20)
25666
25734
  * * Value List Type: List
25667
25735
  * * Possible Values
25668
- * * Pending
25669
- * * Expired
25670
25736
  * * Active
25737
+ * * Expired
25671
25738
  * * Invalid
25739
+ * * Pending
25672
25740
  * * Description: Current status of this pricing record. Active=currently in use, Pending=scheduled for future, Expired=no longer valid, Invalid=data error
25673
25741
  */
25674
25742
  get Status(): 'Active' | 'Expired' | 'Invalid' | 'Pending';
@@ -26039,10 +26107,10 @@ export declare class AIModelVendorEntity extends BaseEntity<AIModelVendorEntityT
26039
26107
  * * Default Value: Active
26040
26108
  * * Value List Type: List
26041
26109
  * * Possible Values
26042
- * * Preview
26043
- * * Deprecated
26044
26110
  * * Active
26111
+ * * Deprecated
26045
26112
  * * Inactive
26113
+ * * Preview
26046
26114
  * * Description: The current status of this model-vendor combination. Values include Active, Inactive, Deprecated, and Preview.
26047
26115
  */
26048
26116
  get Status(): 'Active' | 'Deprecated' | 'Inactive' | 'Preview';
@@ -26296,9 +26364,9 @@ export declare class AIPromptModelEntity extends BaseEntity<AIPromptModelEntityT
26296
26364
  * * Default Value: Active
26297
26365
  * * Value List Type: List
26298
26366
  * * Possible Values
26299
- * * Inactive
26300
26367
  * * Active
26301
26368
  * * Deprecated
26369
+ * * Inactive
26302
26370
  * * Preview
26303
26371
  * * Description: The current status of this model configuration. Values include Active, Inactive, Deprecated, and Preview.
26304
26372
  */
@@ -26311,9 +26379,9 @@ export declare class AIPromptModelEntity extends BaseEntity<AIPromptModelEntityT
26311
26379
  * * Default Value: None
26312
26380
  * * Value List Type: List
26313
26381
  * * Possible Values
26382
+ * * ConfigParam
26314
26383
  * * None
26315
26384
  * * StaticCount
26316
- * * ConfigParam
26317
26385
  * * Description: Controls how this model participates in parallelization: None, StaticCount, or ConfigParam.
26318
26386
  */
26319
26387
  get ParallelizationMode(): 'ConfigParam' | 'None' | 'StaticCount';
@@ -26602,10 +26670,10 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
26602
26670
  * * Default Value: Single
26603
26671
  * * Value List Type: List
26604
26672
  * * Possible Values
26605
- * * ParallelParent
26606
26673
  * * ParallelChild
26607
- * * Single
26674
+ * * ParallelParent
26608
26675
  * * ResultSelector
26676
+ * * Single
26609
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)
26610
26678
  */
26611
26679
  get RunType(): 'ParallelChild' | 'ParallelParent' | 'ResultSelector' | 'Single';
@@ -26949,11 +27017,11 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
26949
27017
  * * Default Value: Pending
26950
27018
  * * Value List Type: List
26951
27019
  * * Possible Values
26952
- * * Running
26953
- * * Pending
26954
- * * Failed
26955
27020
  * * Cancelled
26956
27021
  * * Completed
27022
+ * * Failed
27023
+ * * Pending
27024
+ * * Running
26957
27025
  * * Description: Current execution status of the prompt run. Valid values: Pending, Running, Completed, Failed, Cancelled
26958
27026
  */
26959
27027
  get Status(): 'Cancelled' | 'Completed' | 'Failed' | 'Pending' | 'Running';
@@ -26990,8 +27058,8 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
26990
27058
  * * Value List Type: List
26991
27059
  * * Possible Values
26992
27060
  * * ByPower
26993
- * * Specific
26994
27061
  * * Default
27062
+ * * Specific
26995
27063
  * * Description: Strategy used for model selection. Valid values: Default (system default), Specific (specific models configured), ByPower (based on power ranking)
26996
27064
  */
26997
27065
  get SelectionStrategy(): 'ByPower' | 'Default' | 'Specific' | null;
@@ -27331,10 +27399,10 @@ export declare class AIVendorTypeEntity extends BaseEntity<AIVendorTypeEntityTyp
27331
27399
  * * Default Value: Active
27332
27400
  * * Value List Type: List
27333
27401
  * * Possible Values
27334
- * * Inactive
27335
27402
  * * Active
27336
- * * Preview
27337
27403
  * * Deprecated
27404
+ * * Inactive
27405
+ * * Preview
27338
27406
  * * Description: The current status of this vendor type. Values include Active, Inactive, Deprecated, and Preview.
27339
27407
  */
27340
27408
  get Status(): 'Active' | 'Deprecated' | 'Inactive' | 'Preview';
@@ -27742,10 +27810,10 @@ export declare class ArtifactVersionAttributeEntity extends BaseEntity<ArtifactV
27742
27810
  * * SQL Data Type: nvarchar(50)
27743
27811
  * * Value List Type: List
27744
27812
  * * Possible Values
27813
+ * * description
27745
27814
  * * displayHtml
27746
- * * name
27747
27815
  * * displayMarkdown
27748
- * * description
27816
+ * * name
27749
27817
  * * Description: Maps this attribute to a standard property for UI rendering: 'name', 'description', 'displayMarkdown', 'displayHtml', or NULL for custom attributes
27750
27818
  */
27751
27819
  get StandardProperty(): 'description' | 'displayHtml' | 'displayMarkdown' | 'name' | null;
@@ -27998,6 +28066,19 @@ export declare class ArtifactEntity extends BaseEntity<ArtifactEntityType> {
27998
28066
  */
27999
28067
  get __mj_UpdatedAt(): Date;
28000
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
+ /**
28001
28082
  * * Field Name: Environment
28002
28083
  * * Display Name: Environment
28003
28084
  * * SQL Data Type: nvarchar(255)
@@ -28512,12 +28593,12 @@ export declare class ComponentLibraryEntity extends BaseEntity<ComponentLibraryE
28512
28593
  * * SQL Data Type: nvarchar(100)
28513
28594
  * * Value List Type: List
28514
28595
  * * Possible Values
28515
- * * Other
28516
28596
  * * Charting
28517
- * * Runtime
28518
- * * Utility
28519
28597
  * * Core
28598
+ * * Other
28599
+ * * Runtime
28520
28600
  * * UI
28601
+ * * Utility
28521
28602
  * * Description: Library category: Core, Runtime, UI, Charting, Utility, or Other
28522
28603
  */
28523
28604
  get Category(): 'Charting' | 'Core' | 'Other' | 'Runtime' | 'UI' | 'Utility' | null;
@@ -28567,9 +28648,9 @@ export declare class ComponentLibraryEntity extends BaseEntity<ComponentLibraryE
28567
28648
  * * Default Value: Active
28568
28649
  * * Value List Type: List
28569
28650
  * * Possible Values
28570
- * * Disabled
28571
- * * Deprecated
28572
28651
  * * Active
28652
+ * * Deprecated
28653
+ * * Disabled
28573
28654
  * * Description: Status of the component library. Active: fully supported; Deprecated: works but shows console warning; Disabled: throws error if used
28574
28655
  */
28575
28656
  get Status(): 'Active' | 'Deprecated' | 'Disabled';
@@ -28776,8 +28857,8 @@ export declare class ComponentRegistryEntity extends BaseEntity<ComponentRegistr
28776
28857
  * * Value List Type: List
28777
28858
  * * Possible Values
28778
28859
  * * Active
28779
- * * Offline
28780
28860
  * * Deprecated
28861
+ * * Offline
28781
28862
  * * Description: Current status of the registry: active, deprecated, or offline
28782
28863
  */
28783
28864
  get Status(): 'Active' | 'Deprecated' | 'Offline' | null;
@@ -28885,16 +28966,16 @@ export declare class ComponentEntity extends BaseEntity<ComponentEntityType> {
28885
28966
  * * SQL Data Type: nvarchar(255)
28886
28967
  * * Value List Type: List
28887
28968
  * * Possible Values
28888
- * * Other
28889
- * * Widget
28890
28969
  * * Chart
28891
- * * Navigation
28892
28970
  * * Dashboard
28971
+ * * Form
28972
+ * * Navigation
28973
+ * * Other
28974
+ * * Report
28893
28975
  * * Search
28894
28976
  * * Table
28895
28977
  * * Utility
28896
- * * Report
28897
- * * Form
28978
+ * * Widget
28898
28979
  * * Description: Component type: report, dashboard, form, table, chart, navigation, search, widget, utility, or other
28899
28980
  */
28900
28981
  get Type(): 'Chart' | 'Dashboard' | 'Form' | 'Navigation' | 'Other' | 'Report' | 'Search' | 'Table' | 'Utility' | 'Widget' | null;
@@ -28905,9 +28986,9 @@ export declare class ComponentEntity extends BaseEntity<ComponentEntityType> {
28905
28986
  * * SQL Data Type: nvarchar(50)
28906
28987
  * * Value List Type: List
28907
28988
  * * Possible Values
28908
- * * Published
28909
- * * Draft
28910
28989
  * * Deprecated
28990
+ * * Draft
28991
+ * * Published
28911
28992
  * * Description: Publication status: draft, published, or deprecated
28912
28993
  */
28913
28994
  get Status(): 'Deprecated' | 'Draft' | 'Published' | null;
@@ -29093,6 +29174,7 @@ export declare class ComponentEntity extends BaseEntity<ComponentEntityType> {
29093
29174
  * @extends {BaseEntity}
29094
29175
  * @class
29095
29176
  * @public
29177
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
29096
29178
  */
29097
29179
  export declare class ConversationArtifactPermissionEntity extends BaseEntity<ConversationArtifactPermissionEntityType> {
29098
29180
  /**
@@ -29138,9 +29220,9 @@ export declare class ConversationArtifactPermissionEntity extends BaseEntity<Con
29138
29220
  * * SQL Data Type: nvarchar(20)
29139
29221
  * * Value List Type: List
29140
29222
  * * Possible Values
29223
+ * * Edit
29141
29224
  * * Owner
29142
29225
  * * Read
29143
- * * Edit
29144
29226
  * * Description: Level of access granted (Read, Edit, Owner)
29145
29227
  */
29146
29228
  get AccessLevel(): 'Edit' | 'Owner' | 'Read';
@@ -29176,6 +29258,7 @@ export declare class ConversationArtifactPermissionEntity extends BaseEntity<Con
29176
29258
  * @extends {BaseEntity}
29177
29259
  * @class
29178
29260
  * @public
29261
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
29179
29262
  */
29180
29263
  export declare class ConversationArtifactVersionEntity extends BaseEntity<ConversationArtifactVersionEntityType> {
29181
29264
  /**
@@ -29295,6 +29378,7 @@ export declare class ConversationArtifactVersionEntity extends BaseEntity<Conver
29295
29378
  * @extends {BaseEntity}
29296
29379
  * @class
29297
29380
  * @public
29381
+ * @deprecated This entity is deprecated and will be removed in a future version. Using it will result in console warnings.
29298
29382
  */
29299
29383
  export declare class ConversationArtifactEntity extends BaseEntity<ConversationArtifactEntityType> {
29300
29384
  /**
@@ -29368,9 +29452,9 @@ export declare class ConversationArtifactEntity extends BaseEntity<ConversationA
29368
29452
  * * Value List Type: List
29369
29453
  * * Possible Values
29370
29454
  * * Everyone
29455
+ * * None
29371
29456
  * * Public
29372
29457
  * * SpecificUsers
29373
- * * None
29374
29458
  * * Description: Controls who can view this artifact (None, SpecificUsers, Everyone, Public)
29375
29459
  */
29376
29460
  get SharingScope(): 'Everyone' | 'None' | 'Public' | 'SpecificUsers';
@@ -29948,8 +30032,8 @@ export declare class PublicLinkEntity extends BaseEntity<PublicLinkEntityType> {
29948
30032
  * * Value List Type: List
29949
30033
  * * Possible Values
29950
30034
  * * Artifact
29951
- * * Conversation
29952
30035
  * * Collection
30036
+ * * Conversation
29953
30037
  * * Description: Type of resource being shared (Artifact, Conversation, Collection)
29954
30038
  */
29955
30039
  get ResourceType(): 'Artifact' | 'Collection' | 'Conversation';
@@ -30094,11 +30178,11 @@ export declare class QueryParameterEntity extends BaseEntity<QueryParameterEntit
30094
30178
  * * SQL Data Type: nvarchar(50)
30095
30179
  * * Value List Type: List
30096
30180
  * * Possible Values
30097
- * * date
30098
- * * string
30099
- * * boolean
30100
30181
  * * array
30182
+ * * boolean
30183
+ * * date
30101
30184
  * * number
30185
+ * * string
30102
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.
30103
30187
  */
30104
30188
  get Type(): 'array' | 'boolean' | 'date' | 'number' | 'string';
@@ -30580,11 +30664,11 @@ export declare class ScheduledJobRunEntity extends BaseEntity<ScheduledJobRunEnt
30580
30664
  * * Default Value: Running
30581
30665
  * * Value List Type: List
30582
30666
  * * Possible Values
30583
- * * Running
30584
- * * Timeout
30585
- * * Completed
30586
30667
  * * Cancelled
30668
+ * * Completed
30587
30669
  * * Failed
30670
+ * * Running
30671
+ * * Timeout
30588
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.
30589
30673
  */
30590
30674
  get Status(): 'Cancelled' | 'Completed' | 'Failed' | 'Running' | 'Timeout';
@@ -30864,11 +30948,11 @@ export declare class ScheduledJobEntity extends BaseEntity<ScheduledJobEntityTyp
30864
30948
  * * Default Value: Pending
30865
30949
  * * Value List Type: List
30866
30950
  * * Possible Values
30867
- * * Paused
30951
+ * * Active
30868
30952
  * * Disabled
30869
30953
  * * Expired
30954
+ * * Paused
30870
30955
  * * Pending
30871
- * * Active
30872
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.
30873
30957
  */
30874
30958
  get Status(): 'Active' | 'Disabled' | 'Expired' | 'Paused' | 'Pending';
@@ -31017,8 +31101,8 @@ export declare class ScheduledJobEntity extends BaseEntity<ScheduledJobEntityTyp
31017
31101
  * * Default Value: Skip
31018
31102
  * * Value List Type: List
31019
31103
  * * Possible Values
31020
- * * Queue
31021
31104
  * * Concurrent
31105
+ * * Queue
31022
31106
  * * Skip
31023
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.
31024
31108
  */
@@ -31127,9 +31211,9 @@ export declare class TaskDependencyEntity extends BaseEntity<TaskDependencyEntit
31127
31211
  * * Default Value: Prerequisite
31128
31212
  * * Value List Type: List
31129
31213
  * * Possible Values
31130
- * * Prerequisite
31131
31214
  * * Corequisite
31132
31215
  * * Optional
31216
+ * * Prerequisite
31133
31217
  * * Description: Type of dependency relationship (Prerequisite, Corequisite, Optional)
31134
31218
  */
31135
31219
  get DependencyType(): 'Corequisite' | 'Optional' | 'Prerequisite';
@@ -31360,12 +31444,12 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
31360
31444
  * * Value List Type: List
31361
31445
  * * Possible Values
31362
31446
  * * Blocked
31363
- * * Failed
31447
+ * * Cancelled
31448
+ * * Complete
31364
31449
  * * Deferred
31450
+ * * Failed
31365
31451
  * * In Progress
31366
31452
  * * Pending
31367
- * * Cancelled
31368
- * * Complete
31369
31453
  * * Description: Current status of the task (Pending, In Progress, Complete, Cancelled, Failed, Blocked, Deferred)
31370
31454
  */
31371
31455
  get Status(): 'Blocked' | 'Cancelled' | 'Complete' | 'Deferred' | 'Failed' | 'In Progress' | 'Pending';
@@ -31765,10 +31849,10 @@ export declare class QueryEntity extends BaseEntity<QueryEntityType> {
31765
31849
  * * Default Value: Pending
31766
31850
  * * Value List Type: List
31767
31851
  * * Possible Values
31768
- * * Pending
31769
- * * Rejected
31770
31852
  * * Approved
31771
31853
  * * Expired
31854
+ * * Pending
31855
+ * * Rejected
31772
31856
  */
31773
31857
  get Status(): 'Approved' | 'Expired' | 'Pending' | 'Rejected';
31774
31858
  set Status(value: 'Approved' | 'Expired' | 'Pending' | 'Rejected');
@@ -32077,8 +32161,8 @@ export declare class QueryEntityEntity extends BaseEntity<QueryEntityEntityType>
32077
32161
  * * Default Value: Manual
32078
32162
  * * Value List Type: List
32079
32163
  * * Possible Values
32080
- * * Manual
32081
32164
  * * AI
32165
+ * * Manual
32082
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.
32083
32167
  */
32084
32168
  get DetectionMethod(): 'AI' | 'Manual';
@@ -32402,8 +32486,8 @@ export declare class QueueTaskEntity extends BaseEntity<QueueTaskEntityType> {
32402
32486
  * * Default Value: Pending
32403
32487
  * * Value List Type: List
32404
32488
  * * Possible Values
32405
- * * Failed
32406
32489
  * * Completed
32490
+ * * Failed
32407
32491
  * * In Progress
32408
32492
  */
32409
32493
  get Status(): 'Completed' | 'Failed' | 'In Progress';
@@ -32972,11 +33056,11 @@ export declare class RecommendationRunEntity extends BaseEntity<RecommendationRu
32972
33056
  * * SQL Data Type: nvarchar(50)
32973
33057
  * * Value List Type: List
32974
33058
  * * Possible Values
32975
- * * Pending
33059
+ * * Canceled
32976
33060
  * * Completed
32977
33061
  * * Error
32978
33062
  * * In Progress
32979
- * * Canceled
33063
+ * * Pending
32980
33064
  * * Description: The status of the recommendation run
32981
33065
  */
32982
33066
  get Status(): 'Canceled' | 'Completed' | 'Error' | 'In Progress' | 'Pending';
@@ -33155,9 +33239,9 @@ export declare class RecordChangeReplayRunEntity extends BaseEntity<RecordChange
33155
33239
  * * Value List Type: List
33156
33240
  * * Possible Values
33157
33241
  * * Complete
33158
- * * Pending
33159
- * * In Progress
33160
33242
  * * Error
33243
+ * * In Progress
33244
+ * * Pending
33161
33245
  * * Description: Status of the replay run (Pending, In Progress, Complete, Error)
33162
33246
  */
33163
33247
  get Status(): 'Complete' | 'Error' | 'In Progress' | 'Pending';
@@ -33253,9 +33337,9 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
33253
33337
  * * Default Value: Create
33254
33338
  * * Value List Type: List
33255
33339
  * * Possible Values
33256
- * * Update
33257
33340
  * * Create
33258
33341
  * * Delete
33342
+ * * Update
33259
33343
  * * Description: Create, Update, or Delete
33260
33344
  */
33261
33345
  get Type(): 'Create' | 'Delete' | 'Update';
@@ -33312,9 +33396,9 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
33312
33396
  * * Default Value: Complete
33313
33397
  * * Value List Type: List
33314
33398
  * * Possible Values
33315
- * * Pending
33316
33399
  * * Complete
33317
33400
  * * Error
33401
+ * * Pending
33318
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
33319
33403
  */
33320
33404
  get Status(): 'Complete' | 'Error' | 'Pending';
@@ -33440,8 +33524,8 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
33440
33524
  * * Value List Type: List
33441
33525
  * * Possible Values
33442
33526
  * * Complete
33443
- * * Pending
33444
33527
  * * Error
33528
+ * * Pending
33445
33529
  */
33446
33530
  get Status(): 'Complete' | 'Error' | 'Pending';
33447
33531
  set Status(value: 'Complete' | 'Error' | 'Pending');
@@ -33531,8 +33615,8 @@ export declare class RecordMergeLogEntity extends BaseEntity<RecordMergeLogEntit
33531
33615
  * * Default Value: Pending
33532
33616
  * * Value List Type: List
33533
33617
  * * Possible Values
33534
- * * Pending
33535
33618
  * * Approved
33619
+ * * Pending
33536
33620
  * * Rejected
33537
33621
  * * Description: Field ApprovalStatus for entity Record Merge Logs.
33538
33622
  */
@@ -33554,8 +33638,8 @@ export declare class RecordMergeLogEntity extends BaseEntity<RecordMergeLogEntit
33554
33638
  * * Value List Type: List
33555
33639
  * * Possible Values
33556
33640
  * * Complete
33557
- * * Started
33558
33641
  * * Error
33642
+ * * Started
33559
33643
  * * Description: Field ProcessingStatus for entity Record Merge Logs.
33560
33644
  */
33561
33645
  get ProcessingStatus(): 'Complete' | 'Error' | 'Started';
@@ -33882,9 +33966,9 @@ export declare class ReportEntity extends BaseEntity<ReportEntityType> {
33882
33966
  * * Default Value: Personal
33883
33967
  * * Value List Type: List
33884
33968
  * * Possible Values
33885
- * * Specific
33886
- * * None
33887
33969
  * * Everyone
33970
+ * * None
33971
+ * * Specific
33888
33972
  * * Description: Field SharingScope for entity Reports.
33889
33973
  */
33890
33974
  get SharingScope(): 'Everyone' | 'None' | 'Specific';
@@ -34263,9 +34347,9 @@ export declare class ResourcePermissionEntity extends BaseEntity<ResourcePermiss
34263
34347
  * * SQL Data Type: nvarchar(20)
34264
34348
  * * Value List Type: List
34265
34349
  * * Possible Values
34266
- * * View
34267
34350
  * * Edit
34268
34351
  * * Owner
34352
+ * * View
34269
34353
  * * Description: Permission level defining the type of access (View, Edit, Owner)
34270
34354
  */
34271
34355
  get PermissionLevel(): 'Edit' | 'Owner' | 'View' | null;
@@ -34291,9 +34375,9 @@ export declare class ResourcePermissionEntity extends BaseEntity<ResourcePermiss
34291
34375
  * * Default Value: Requested
34292
34376
  * * Value List Type: List
34293
34377
  * * Possible Values
34294
- * * Requested
34295
34378
  * * Approved
34296
34379
  * * Rejected
34380
+ * * Requested
34297
34381
  * * Revoked
34298
34382
  * * Description: Status of the resource permission request. Possible values are Requested, Approved, Rejected, or Revoked.
34299
34383
  */
@@ -34737,9 +34821,9 @@ export declare class ScheduledActionEntity extends BaseEntity<ScheduledActionEnt
34737
34821
  * * SQL Data Type: nvarchar(20)
34738
34822
  * * Value List Type: List
34739
34823
  * * Possible Values
34824
+ * * Custom
34740
34825
  * * Daily
34741
34826
  * * Monthly
34742
- * * Custom
34743
34827
  * * Weekly
34744
34828
  * * Yearly
34745
34829
  * * Description: Type of the scheduled action (Daily, Weekly, Monthly, Yearly, Custom)
@@ -34769,9 +34853,9 @@ export declare class ScheduledActionEntity extends BaseEntity<ScheduledActionEnt
34769
34853
  * * Default Value: Pending
34770
34854
  * * Value List Type: List
34771
34855
  * * Possible Values
34856
+ * * Active
34772
34857
  * * Disabled
34773
34858
  * * Expired
34774
- * * Active
34775
34859
  * * Pending
34776
34860
  * * Description: Status of the scheduled action (Pending, Active, Disabled, Expired)
34777
34861
  */
@@ -35341,14 +35425,14 @@ export declare class TemplateContentTypeEntity extends BaseEntity<TemplateConten
35341
35425
  * * Default Value: Other
35342
35426
  * * Value List Type: List
35343
35427
  * * Possible Values
35344
- * * HTML
35345
35428
  * * CSS
35429
+ * * HTML
35346
35430
  * * JSON
35347
- * * Python
35348
- * * Other
35349
- * * TypeScript
35350
35431
  * * JavaScript
35351
35432
  * * Nunjucks
35433
+ * * Other
35434
+ * * Python
35435
+ * * TypeScript
35352
35436
  * * Description: Refers to the primary language or codetype of the templates of this type, HTML, JSON, JavaScript, etc
35353
35437
  */
35354
35438
  get CodeType(): 'CSS' | 'HTML' | 'JSON' | 'JavaScript' | 'Nunjucks' | 'Other' | 'Python' | 'TypeScript';
@@ -35531,11 +35615,11 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
35531
35615
  * * Default Value: Scalar
35532
35616
  * * Value List Type: List
35533
35617
  * * Possible Values
35534
- * * Record
35535
35618
  * * Array
35619
+ * * Entity
35536
35620
  * * Object
35621
+ * * Record
35537
35622
  * * Scalar
35538
- * * Entity
35539
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.
35540
35624
  */
35541
35625
  get Type(): 'Array' | 'Entity' | 'Object' | 'Record' | 'Scalar';
@@ -36991,6 +37075,22 @@ export declare class UserEntity extends BaseEntity<UserEntityType> {
36991
37075
  */
36992
37076
  get __mj_UpdatedAt(): Date;
36993
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
+ /**
36994
37094
  * * Field Name: FirstLast
36995
37095
  * * Display Name: First Last
36996
37096
  * * SQL Data Type: nvarchar(101)
@@ -37277,10 +37377,10 @@ export declare class VersionInstallationEntity extends BaseEntity<VersionInstall
37277
37377
  * * Default Value: Pending
37278
37378
  * * Value List Type: List
37279
37379
  * * Possible Values
37280
- * * In Progress
37281
37380
  * * Complete
37282
- * * Pending
37283
37381
  * * Failed
37382
+ * * In Progress
37383
+ * * Pending
37284
37384
  * * Description: Pending, Complete, Failed
37285
37385
  */
37286
37386
  get Status(): 'Complete' | 'Failed' | 'In Progress' | 'Pending';
@@ -37581,12 +37681,12 @@ export declare class WorkflowEntity extends BaseEntity<WorkflowEntityType> {
37581
37681
  * * SQL Data Type: nvarchar(20)
37582
37682
  * * Value List Type: List
37583
37683
  * * Possible Values
37584
- * * Weeks
37585
- * * Years
37586
- * * Hours
37587
- * * Months
37588
37684
  * * Days
37685
+ * * Hours
37589
37686
  * * Minutes
37687
+ * * Months
37688
+ * * Weeks
37689
+ * * Years
37590
37690
  * * Description: Minutes, Hours, Days, Weeks, Months, Years
37591
37691
  */
37592
37692
  get AutoRunIntervalUnits(): 'Days' | 'Hours' | 'Minutes' | 'Months' | 'Weeks' | 'Years' | null;