@memberjunction/core-entities 4.1.0 → 4.2.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.
@@ -14187,6 +14187,16 @@ export declare class ActionEntity extends BaseEntity<ActionEntityType> {
14187
14187
  */
14188
14188
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
14189
14189
  /**
14190
+ * Actions - Delete method override to wrap in transaction since CascadeDeletes is true.
14191
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
14192
+ * @public
14193
+ * @method
14194
+ * @override
14195
+ * @memberof ActionEntity
14196
+ * @returns {Promise<boolean>} - true if successful, false otherwise
14197
+ */
14198
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
14199
+ /**
14190
14200
  * * Field Name: ID
14191
14201
  * * Display Name: ID
14192
14202
  * * SQL Data Type: uniqueidentifier
@@ -15491,6 +15501,16 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
15491
15501
  */
15492
15502
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
15493
15503
  /**
15504
+ * AI Agents - Delete method override to wrap in transaction since CascadeDeletes is true.
15505
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
15506
+ * @public
15507
+ * @method
15508
+ * @override
15509
+ * @memberof AIAgentEntity
15510
+ * @returns {Promise<boolean>} - true if successful, false otherwise
15511
+ */
15512
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
15513
+ /**
15494
15514
  * Validate() method override for AI Agents entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
15495
15515
  * * DefaultPromptEffortLevel: This rule ensures that if a default prompt effort level is specified, it must be a number between 1 and 100, inclusive.
15496
15516
  * * MaxExecutionsPerRun: This rule ensures that if 'MaxExecutionsPerRun' is provided, it must be a value greater than zero. If it is left blank, that's acceptable.
@@ -16734,6 +16754,16 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
16734
16754
  */
16735
16755
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
16736
16756
  /**
16757
+ * AI Prompts - Delete method override to wrap in transaction since CascadeDeletes is true.
16758
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
16759
+ * @public
16760
+ * @method
16761
+ * @override
16762
+ * @memberof AIPromptEntity
16763
+ * @returns {Promise<boolean>} - true if successful, false otherwise
16764
+ */
16765
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
16766
+ /**
16737
16767
  * Validate() method override for AI Prompts entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
16738
16768
  * * CacheSimilarityThreshold: This rule ensures that the "CacheSimilarityThreshold" value, if provided, must be between 0 and 1 (including both 0 and 1). If it is not set, there is no restriction.
16739
16769
  * * CacheTTLSeconds: This rule ensures that if a cache time-to-live (CacheTTLSeconds) value is provided, it must be greater than zero. If it is not set, that's allowed.
@@ -17505,7 +17535,7 @@ export declare class AIResultCacheEntity extends BaseEntity<AIResultCacheEntityT
17505
17535
  set PromptEmbedding(value: number | null);
17506
17536
  /**
17507
17537
  * * Field Name: PromptRunID
17508
- * * Display Name: Prompt Run
17538
+ * * Display Name: Prompt Run ID
17509
17539
  * * SQL Data Type: uniqueidentifier
17510
17540
  * * Related Entity/Foreign Key: MJ: AI Prompt Runs (vwAIPromptRuns.ID)
17511
17541
  * * Description: Reference to the AIPromptRun that created this cache entry.
@@ -21047,7 +21077,7 @@ export declare class ConversationEntity extends BaseEntity<ConversationEntityTyp
21047
21077
  set LinkedEntityID(value: string | null);
21048
21078
  /**
21049
21079
  * * Field Name: LinkedRecordID
21050
- * * Display Name: Linked Record ID
21080
+ * * Display Name: Linked Record
21051
21081
  * * SQL Data Type: nvarchar(500)
21052
21082
  * * Description: ID of a related record this conversation is about (support ticket, order, etc.).
21053
21083
  */
@@ -22059,7 +22089,7 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
22059
22089
  set ID(value: string);
22060
22090
  /**
22061
22091
  * * Field Name: DuplicateRunID
22062
- * * Display Name: Duplicate Run ID
22092
+ * * Display Name: Duplicate Run
22063
22093
  * * SQL Data Type: uniqueidentifier
22064
22094
  * * Related Entity/Foreign Key: Duplicate Runs (vwDuplicateRuns.ID)
22065
22095
  */
@@ -22067,7 +22097,7 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
22067
22097
  set DuplicateRunID(value: string);
22068
22098
  /**
22069
22099
  * * Field Name: RecordID
22070
- * * Display Name: Record ID
22100
+ * * Display Name: Record
22071
22101
  * * SQL Data Type: nvarchar(500)
22072
22102
  * * Description: The ID of the record being analyzed for duplicates.
22073
22103
  */
@@ -22361,7 +22391,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity<Employe
22361
22391
  set CompanyIntegrationID(value: string);
22362
22392
  /**
22363
22393
  * * Field Name: ExternalSystemRecordID
22364
- * * Display Name: External System Record ID
22394
+ * * Display Name: External System Record
22365
22395
  * * SQL Data Type: nvarchar(750)
22366
22396
  * * Description: The employee's unique identifier in the external integrated system.
22367
22397
  */
@@ -22392,7 +22422,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity<Employe
22392
22422
  get __mj_UpdatedAt(): Date;
22393
22423
  /**
22394
22424
  * * Field Name: Employee
22395
- * * Display Name: Employee
22425
+ * * Display Name: Employee Name
22396
22426
  * * SQL Data Type: nvarchar(81)
22397
22427
  */
22398
22428
  get Employee(): string | null;
@@ -22467,7 +22497,7 @@ export declare class EmployeeRoleEntity extends BaseEntity<EmployeeRoleEntityTyp
22467
22497
  get __mj_UpdatedAt(): Date;
22468
22498
  /**
22469
22499
  * * Field Name: Employee
22470
- * * Display Name: Employee
22500
+ * * Display Name: Employee Name
22471
22501
  * * SQL Data Type: nvarchar(81)
22472
22502
  */
22473
22503
  get Employee(): string | null;
@@ -22520,7 +22550,7 @@ export declare class EmployeeSkillEntity extends BaseEntity<EmployeeSkillEntityT
22520
22550
  set EmployeeID(value: string);
22521
22551
  /**
22522
22552
  * * Field Name: SkillID
22523
- * * Display Name: Skill ID
22553
+ * * Display Name: Skill
22524
22554
  * * SQL Data Type: uniqueidentifier
22525
22555
  * * Related Entity/Foreign Key: Skills (vwSkills.ID)
22526
22556
  */
@@ -23361,13 +23391,13 @@ export declare class EntityActionFilterEntity extends BaseEntity<EntityActionFil
23361
23391
  get __mj_UpdatedAt(): Date;
23362
23392
  /**
23363
23393
  * * Field Name: EntityAction
23364
- * * Display Name: Entity Action
23394
+ * * Display Name: Action Name
23365
23395
  * * SQL Data Type: nvarchar(425)
23366
23396
  */
23367
23397
  get EntityAction(): string;
23368
23398
  /**
23369
23399
  * * Field Name: ActionFilter
23370
- * * Display Name: Action Filter
23400
+ * * Display Name: Filter Name
23371
23401
  * * SQL Data Type: nvarchar(MAX)
23372
23402
  */
23373
23403
  get ActionFilter(): string;
@@ -23522,13 +23552,13 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
23522
23552
  get __mj_UpdatedAt(): Date;
23523
23553
  /**
23524
23554
  * * Field Name: EntityAction
23525
- * * Display Name: Action Name
23555
+ * * Display Name: Action
23526
23556
  * * SQL Data Type: nvarchar(425)
23527
23557
  */
23528
23558
  get EntityAction(): string;
23529
23559
  /**
23530
23560
  * * Field Name: InvocationType
23531
- * * Display Name: Invocation Type Name
23561
+ * * Display Name: Invocation Type
23532
23562
  * * SQL Data Type: nvarchar(255)
23533
23563
  */
23534
23564
  get InvocationType(): string;
@@ -23567,7 +23597,7 @@ export declare class EntityActionParamEntity extends BaseEntity<EntityActionPara
23567
23597
  set ID(value: string);
23568
23598
  /**
23569
23599
  * * Field Name: EntityActionID
23570
- * * Display Name: Entity Action
23600
+ * * Display Name: Entity Action Id
23571
23601
  * * SQL Data Type: uniqueidentifier
23572
23602
  * * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)
23573
23603
  */
@@ -23575,7 +23605,7 @@ export declare class EntityActionParamEntity extends BaseEntity<EntityActionPara
23575
23605
  set EntityActionID(value: string);
23576
23606
  /**
23577
23607
  * * Field Name: ActionParamID
23578
- * * Display Name: Action Parameter
23608
+ * * Display Name: Action Parameter Id
23579
23609
  * * SQL Data Type: uniqueidentifier
23580
23610
  * * Related Entity/Foreign Key: Action Params (vwActionParams.ID)
23581
23611
  */
@@ -23938,7 +23968,7 @@ export declare class EntityCommunicationFieldEntity extends BaseEntity<EntityCom
23938
23968
  set ID(value: string);
23939
23969
  /**
23940
23970
  * * Field Name: EntityCommunicationMessageTypeID
23941
- * * Display Name: Entity Communication Message Type
23971
+ * * Display Name: Message Type ID
23942
23972
  * * SQL Data Type: uniqueidentifier
23943
23973
  * * Related Entity/Foreign Key: Entity Communication Message Types (vwEntityCommunicationMessageTypes.ID)
23944
23974
  */
@@ -25993,7 +26023,7 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
25993
26023
  set CompanyIntegrationRunDetailID(value: string | null);
25994
26024
  /**
25995
26025
  * * Field Name: Code
25996
- * * Display Name: Code
26026
+ * * Display Name: Error Code
25997
26027
  * * SQL Data Type: nchar(20)
25998
26028
  * * Description: Error code for categorizing and handling specific error types.
25999
26029
  */
@@ -26055,13 +26085,13 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
26055
26085
  get __mj_UpdatedAt(): Date;
26056
26086
  /**
26057
26087
  * * Field Name: CompanyIntegrationRun
26058
- * * Display Name: Integration Run
26088
+ * * Display Name: Company Integration Run
26059
26089
  * * SQL Data Type: nvarchar(100)
26060
26090
  */
26061
26091
  get CompanyIntegrationRun(): string | null;
26062
26092
  /**
26063
26093
  * * Field Name: CompanyIntegrationRunDetail
26064
- * * Display Name: Integration Run Detail
26094
+ * * Display Name: Company Integration Run Detail
26065
26095
  * * SQL Data Type: nvarchar(450)
26066
26096
  */
26067
26097
  get CompanyIntegrationRunDetail(): string | null;
@@ -26907,6 +26937,7 @@ export declare class IntegrationURLFormatEntity extends BaseEntity<IntegrationUR
26907
26937
  set EntityID(value: string);
26908
26938
  /**
26909
26939
  * * Field Name: URLFormat
26940
+ * * Display Name: URL Format
26910
26941
  * * SQL Data Type: nvarchar(500)
26911
26942
  * * Description: The URL Format for the given integration including the ability to include markup with fields from the integration
26912
26943
  */
@@ -29273,6 +29304,16 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
29273
29304
  */
29274
29305
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
29275
29306
  /**
29307
+ * MJ: AI Agent Run Steps - Delete method override to wrap in transaction since CascadeDeletes is true.
29308
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
29309
+ * @public
29310
+ * @method
29311
+ * @override
29312
+ * @memberof AIAgentRunStepEntity
29313
+ * @returns {Promise<boolean>} - true if successful, false otherwise
29314
+ */
29315
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
29316
+ /**
29276
29317
  * Validate() method override for MJ: AI Agent Run Steps entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
29277
29318
  * * FinalPayloadValidationResult: The FinalPayloadValidationResult field can be empty, but if a value is set it must be one of the allowed outcomes: Warn, Fail, Retry, or Pass. This ensures that only valid validation results are stored.
29278
29319
  * * StepNumber: This rule ensures that the step number must be greater than zero.
@@ -29548,6 +29589,16 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
29548
29589
  */
29549
29590
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
29550
29591
  /**
29592
+ * MJ: AI Agent Runs - Delete method override to wrap in transaction since CascadeDeletes is true.
29593
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
29594
+ * @public
29595
+ * @method
29596
+ * @override
29597
+ * @memberof AIAgentRunEntity
29598
+ * @returns {Promise<boolean>} - true if successful, false otherwise
29599
+ */
29600
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
29601
+ /**
29551
29602
  * Validate() method override for MJ: AI Agent Runs entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
29552
29603
  * * EffortLevel: This rule ensures that the effort level, if specified, must be a number between 1 and 100, inclusive.
29553
29604
  * * FinalStep: The FinalStep field can be left empty, but if a value is provided it must be one of the approved step names – While, ForEach, Chat, Sub-Agent, Actions, Retry, Failed, or Success. This ensures only valid workflow steps are recorded.
@@ -30194,6 +30245,16 @@ export declare class AIAgentStepEntity extends BaseEntity<AIAgentStepEntityType>
30194
30245
  */
30195
30246
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
30196
30247
  /**
30248
+ * MJ: AI Agent Steps - Delete method override to wrap in transaction since CascadeDeletes is true.
30249
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
30250
+ * @public
30251
+ * @method
30252
+ * @override
30253
+ * @memberof AIAgentStepEntity
30254
+ * @returns {Promise<boolean>} - true if successful, false otherwise
30255
+ */
30256
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
30257
+ /**
30197
30258
  * Validate() method override for MJ: AI Agent Steps entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
30198
30259
  * * RetryCount: This rule ensures that the number of retries allowed cannot be negative.
30199
30260
  * * TimeoutSeconds: This rule ensures that, if provided, the timeout value must be greater than zero seconds.
@@ -30824,6 +30885,16 @@ export declare class AIConfigurationEntity extends BaseEntity<AIConfigurationEnt
30824
30885
  */
30825
30886
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
30826
30887
  /**
30888
+ * MJ: AI Configurations - Delete method override to wrap in transaction since CascadeDeletes is true.
30889
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
30890
+ * @public
30891
+ * @method
30892
+ * @override
30893
+ * @memberof AIConfigurationEntity
30894
+ * @returns {Promise<boolean>} - true if successful, false otherwise
30895
+ */
30896
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
30897
+ /**
30827
30898
  * * Field Name: ID
30828
30899
  * * Display Name: ID
30829
30900
  * * SQL Data Type: uniqueidentifier
@@ -32533,6 +32604,16 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
32533
32604
  */
32534
32605
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
32535
32606
  /**
32607
+ * MJ: AI Prompt Runs - Delete method override to wrap in transaction since CascadeDeletes is true.
32608
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
32609
+ * @public
32610
+ * @method
32611
+ * @override
32612
+ * @memberof AIPromptRunEntity
32613
+ * @returns {Promise<boolean>} - true if successful, false otherwise
32614
+ */
32615
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
32616
+ /**
32536
32617
  * Validate() method override for MJ: AI Prompt Runs entity. This is an auto-generated method that invokes the generated validators for this entity for the following fields:
32537
32618
  * * EffortLevel: This rule ensures that if an effort level is provided, it must be between 1 and 100, inclusive.
32538
32619
  * * Table-Level: This rule ensures that if the 'CompletedAt' date is provided, it must be the same as or later than the 'RunAt' date. If 'CompletedAt' is not specified, there is no restriction.
@@ -36598,7 +36679,7 @@ export declare class ConversationDetailArtifactEntity extends BaseEntity<Convers
36598
36679
  get __mj_UpdatedAt(): Date;
36599
36680
  /**
36600
36681
  * * Field Name: ConversationDetail
36601
- * * Display Name: Message Text
36682
+ * * Display Name: Conversation Text
36602
36683
  * * SQL Data Type: nvarchar(MAX)
36603
36684
  */
36604
36685
  get ConversationDetail(): string;
@@ -36893,7 +36974,7 @@ export declare class ConversationDetailRatingEntity extends BaseEntity<Conversat
36893
36974
  get __mj_UpdatedAt(): Date;
36894
36975
  /**
36895
36976
  * * Field Name: ConversationDetail
36896
- * * Display Name: Conversation Detail
36977
+ * * Display Name: Conversation Message
36897
36978
  * * SQL Data Type: nvarchar(MAX)
36898
36979
  */
36899
36980
  get ConversationDetail(): string;
@@ -38899,7 +38980,7 @@ export declare class MCPServerConnectionToolEntity extends BaseEntity<MCPServerC
38899
38980
  set MCPServerToolID(value: string);
38900
38981
  /**
38901
38982
  * * Field Name: IsEnabled
38902
- * * Display Name: Enabled
38983
+ * * Display Name: Is Enabled
38903
38984
  * * SQL Data Type: bit
38904
38985
  * * Default Value: 1
38905
38986
  * * Description: Whether this tool is enabled for the connection
@@ -38938,13 +39019,13 @@ export declare class MCPServerConnectionToolEntity extends BaseEntity<MCPServerC
38938
39019
  get __mj_UpdatedAt(): Date;
38939
39020
  /**
38940
39021
  * * Field Name: MCPServerConnection
38941
- * * Display Name: Connection
39022
+ * * Display Name: MCP Server Connection
38942
39023
  * * SQL Data Type: nvarchar(255)
38943
39024
  */
38944
39025
  get MCPServerConnection(): string;
38945
39026
  /**
38946
39027
  * * Field Name: MCPServerTool
38947
- * * Display Name: Tool
39028
+ * * Display Name: MCP Server Tool
38948
39029
  * * SQL Data Type: nvarchar(255)
38949
39030
  */
38950
39031
  get MCPServerTool(): string | null;
@@ -39566,7 +39647,7 @@ export declare class MCPToolExecutionLogEntity extends BaseEntity<MCPToolExecuti
39566
39647
  set ID(value: string);
39567
39648
  /**
39568
39649
  * * Field Name: MCPServerConnectionID
39569
- * * Display Name: MCP Server Connection ID
39650
+ * * Display Name: MCP Server Connection
39570
39651
  * * SQL Data Type: uniqueidentifier
39571
39652
  * * Related Entity/Foreign Key: MJ: MCP Server Connections (vwMCPServerConnections.ID)
39572
39653
  */
@@ -39574,7 +39655,7 @@ export declare class MCPToolExecutionLogEntity extends BaseEntity<MCPToolExecuti
39574
39655
  set MCPServerConnectionID(value: string);
39575
39656
  /**
39576
39657
  * * Field Name: MCPServerToolID
39577
- * * Display Name: MCP Server Tool ID
39658
+ * * Display Name: MCP Server Tool
39578
39659
  * * SQL Data Type: uniqueidentifier
39579
39660
  * * Related Entity/Foreign Key: MJ: MCP Server Tools (vwMCPServerTools.ID)
39580
39661
  * * Description: FK to MCP Server Tool (null if tool not cached)
@@ -41818,7 +41899,7 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
41818
41899
  set ID(value: string);
41819
41900
  /**
41820
41901
  * * Field Name: ParentID
41821
- * * Display Name: Parent
41902
+ * * Display Name: Parent ID
41822
41903
  * * SQL Data Type: uniqueidentifier
41823
41904
  * * Related Entity/Foreign Key: MJ: Tasks (vwTasks.ID)
41824
41905
  */
@@ -41842,7 +41923,7 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
41842
41923
  set Description(value: string | null);
41843
41924
  /**
41844
41925
  * * Field Name: TypeID
41845
- * * Display Name: Type
41926
+ * * Display Name: Type ID
41846
41927
  * * SQL Data Type: uniqueidentifier
41847
41928
  * * Related Entity/Foreign Key: MJ: Task Types (vwTaskTypes.ID)
41848
41929
  */
@@ -41850,7 +41931,7 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
41850
41931
  set TypeID(value: string);
41851
41932
  /**
41852
41933
  * * Field Name: EnvironmentID
41853
- * * Display Name: Environment
41934
+ * * Display Name: Environment ID
41854
41935
  * * SQL Data Type: uniqueidentifier
41855
41936
  * * Related Entity/Foreign Key: MJ: Environments (vwEnvironments.ID)
41856
41937
  * * Default Value: F51358F3-9447-4176-B313-BF8025FD8D09
@@ -41859,7 +41940,7 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
41859
41940
  set EnvironmentID(value: string);
41860
41941
  /**
41861
41942
  * * Field Name: ProjectID
41862
- * * Display Name: Project
41943
+ * * Display Name: Project ID
41863
41944
  * * SQL Data Type: uniqueidentifier
41864
41945
  * * Related Entity/Foreign Key: MJ: Projects (vwProjects.ID)
41865
41946
  */
@@ -41867,7 +41948,7 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
41867
41948
  set ProjectID(value: string | null);
41868
41949
  /**
41869
41950
  * * Field Name: ConversationDetailID
41870
- * * Display Name: Conversation Detail
41951
+ * * Display Name: Conversation Detail ID
41871
41952
  * * SQL Data Type: uniqueidentifier
41872
41953
  * * Related Entity/Foreign Key: Conversation Details (vwConversationDetails.ID)
41873
41954
  */
@@ -41875,7 +41956,7 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
41875
41956
  set ConversationDetailID(value: string | null);
41876
41957
  /**
41877
41958
  * * Field Name: UserID
41878
- * * Display Name: User
41959
+ * * Display Name: User ID
41879
41960
  * * SQL Data Type: uniqueidentifier
41880
41961
  * * Related Entity/Foreign Key: Users (vwUsers.ID)
41881
41962
  */
@@ -41883,7 +41964,7 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
41883
41964
  set UserID(value: string | null);
41884
41965
  /**
41885
41966
  * * Field Name: AgentID
41886
- * * Display Name: Agent
41967
+ * * Display Name: Agent ID
41887
41968
  * * SQL Data Type: uniqueidentifier
41888
41969
  * * Related Entity/Foreign Key: AI Agents (vwAIAgents.ID)
41889
41970
  */
@@ -41956,25 +42037,25 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
41956
42037
  get __mj_UpdatedAt(): Date;
41957
42038
  /**
41958
42039
  * * Field Name: Parent
41959
- * * Display Name: Parent
42040
+ * * Display Name: Parent Name
41960
42041
  * * SQL Data Type: nvarchar(255)
41961
42042
  */
41962
42043
  get Parent(): string | null;
41963
42044
  /**
41964
42045
  * * Field Name: Type
41965
- * * Display Name: Type
42046
+ * * Display Name: Type Name
41966
42047
  * * SQL Data Type: nvarchar(255)
41967
42048
  */
41968
42049
  get Type(): string;
41969
42050
  /**
41970
42051
  * * Field Name: Environment
41971
- * * Display Name: Environment
42052
+ * * Display Name: Environment Name
41972
42053
  * * SQL Data Type: nvarchar(255)
41973
42054
  */
41974
42055
  get Environment(): string;
41975
42056
  /**
41976
42057
  * * Field Name: Project
41977
- * * Display Name: Project
42058
+ * * Display Name: Project Name
41978
42059
  * * SQL Data Type: nvarchar(255)
41979
42060
  */
41980
42061
  get Project(): string | null;
@@ -41986,19 +42067,19 @@ export declare class TaskEntity extends BaseEntity<TaskEntityType> {
41986
42067
  get ConversationDetail(): string | null;
41987
42068
  /**
41988
42069
  * * Field Name: User
41989
- * * Display Name: User
42070
+ * * Display Name: User Name
41990
42071
  * * SQL Data Type: nvarchar(100)
41991
42072
  */
41992
42073
  get User(): string | null;
41993
42074
  /**
41994
42075
  * * Field Name: Agent
41995
- * * Display Name: Agent
42076
+ * * Display Name: Agent Name
41996
42077
  * * SQL Data Type: nvarchar(255)
41997
42078
  */
41998
42079
  get Agent(): string | null;
41999
42080
  /**
42000
42081
  * * Field Name: RootParentID
42001
- * * Display Name: Root Parent
42082
+ * * Display Name: Root Parent ID
42002
42083
  * * SQL Data Type: uniqueidentifier
42003
42084
  */
42004
42085
  get RootParentID(): string | null;
@@ -45487,7 +45568,7 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
45487
45568
  set ID(value: string);
45488
45569
  /**
45489
45570
  * * Field Name: RecommendationID
45490
- * * Display Name: Recommendation ID
45571
+ * * Display Name: Recommendation
45491
45572
  * * SQL Data Type: uniqueidentifier
45492
45573
  * * Related Entity/Foreign Key: Recommendations (vwRecommendations.ID)
45493
45574
  */
@@ -45495,7 +45576,7 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
45495
45576
  set RecommendationID(value: string);
45496
45577
  /**
45497
45578
  * * Field Name: DestinationEntityID
45498
- * * Display Name: Destination Entity ID
45579
+ * * Display Name: Destination Entity
45499
45580
  * * SQL Data Type: uniqueidentifier
45500
45581
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
45501
45582
  */
@@ -45503,7 +45584,7 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
45503
45584
  set DestinationEntityID(value: string);
45504
45585
  /**
45505
45586
  * * Field Name: DestinationEntityRecordID
45506
- * * Display Name: Destination Entity Record ID
45587
+ * * Display Name: Destination Record ID
45507
45588
  * * SQL Data Type: nvarchar(450)
45508
45589
  * * Description: The record ID of the destination entity
45509
45590
  */
@@ -45768,7 +45849,7 @@ export declare class RecommendationEntity extends BaseEntity<RecommendationEntit
45768
45849
  set SourceEntityID(value: string);
45769
45850
  /**
45770
45851
  * * Field Name: SourceEntityRecordID
45771
- * * Display Name: Source Entity Record
45852
+ * * Display Name: Source Entity Record ID
45772
45853
  * * SQL Data Type: nvarchar(MAX)
45773
45854
  * * Description: The record ID of the source entity
45774
45855
  */
@@ -45790,7 +45871,7 @@ export declare class RecommendationEntity extends BaseEntity<RecommendationEntit
45790
45871
  get __mj_UpdatedAt(): Date;
45791
45872
  /**
45792
45873
  * * Field Name: RecommendationRun
45793
- * * Display Name: Recommendation Run
45874
+ * * Display Name: Run
45794
45875
  * * SQL Data Type: nvarchar(255)
45795
45876
  */
45796
45877
  get RecommendationRun(): string;
@@ -46137,7 +46218,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
46137
46218
  set RecordMergeLogID(value: string);
46138
46219
  /**
46139
46220
  * * Field Name: DeletedRecordID
46140
- * * Display Name: Deleted Record
46221
+ * * Display Name: Deleted Record ID
46141
46222
  * * SQL Data Type: nvarchar(750)
46142
46223
  * * Description: Field DeletedRecordID for entity Record Merge Deletion Logs.
46143
46224
  */
@@ -46180,7 +46261,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
46180
46261
  get __mj_UpdatedAt(): Date;
46181
46262
  /**
46182
46263
  * * Field Name: RecordMergeLog
46183
- * * Display Name: Merge Log
46264
+ * * Display Name: Record Merge Log
46184
46265
  * * SQL Data Type: nvarchar(450)
46185
46266
  */
46186
46267
  get RecordMergeLog(): string;
@@ -47210,6 +47291,7 @@ export declare class RoleEntity extends BaseEntity<RoleEntityType> {
47210
47291
  set DirectoryID(value: string | null);
47211
47292
  /**
47212
47293
  * * Field Name: SQLName
47294
+ * * Display Name: SQL Name
47213
47295
  * * SQL Data Type: nvarchar(250)
47214
47296
  * * Description: The name of the role in the database, this is used for auto-generating permission statements by CodeGen
47215
47297
  */
@@ -48241,7 +48323,7 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
48241
48323
  set ID(value: string);
48242
48324
  /**
48243
48325
  * * Field Name: TemplateID
48244
- * * Display Name: Template ID
48326
+ * * Display Name: Template
48245
48327
  * * SQL Data Type: uniqueidentifier
48246
48328
  * * Related Entity/Foreign Key: Templates (vwTemplates.ID)
48247
48329
  */
@@ -48322,7 +48404,7 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
48322
48404
  set ExtraFilter(value: string | null);
48323
48405
  /**
48324
48406
  * * Field Name: EntityID
48325
- * * Display Name: Entity ID
48407
+ * * Display Name: Entity
48326
48408
  * * SQL Data Type: uniqueidentifier
48327
48409
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
48328
48410
  */
@@ -48330,7 +48412,7 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
48330
48412
  set EntityID(value: string | null);
48331
48413
  /**
48332
48414
  * * Field Name: RecordID
48333
- * * Display Name: Record ID
48415
+ * * Display Name: Record
48334
48416
  * * SQL Data Type: nvarchar(2000)
48335
48417
  * * Description: Record ID, used only when Type is Record and a specific hardcoded record ID is desired, this is an uncommon use case, helpful for pulling in static types and metadata in some cases.
48336
48418
  */