@memberjunction/core-entities 4.1.0 → 4.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12171,6 +12171,8 @@ export declare const SchemaInfoSchema: z.ZodObject<{
12171
12171
  __mj_CreatedAt: z.ZodDate;
12172
12172
  __mj_UpdatedAt: z.ZodDate;
12173
12173
  Description: z.ZodNullable<z.ZodString>;
12174
+ EntityNamePrefix: z.ZodNullable<z.ZodString>;
12175
+ EntityNameSuffix: z.ZodNullable<z.ZodString>;
12174
12176
  }, "strip", z.ZodTypeAny, {
12175
12177
  ID?: string;
12176
12178
  Comments?: string;
@@ -12180,6 +12182,8 @@ export declare const SchemaInfoSchema: z.ZodObject<{
12180
12182
  SchemaName?: string;
12181
12183
  EntityIDMin?: number;
12182
12184
  EntityIDMax?: number;
12185
+ EntityNamePrefix?: string;
12186
+ EntityNameSuffix?: string;
12183
12187
  }, {
12184
12188
  ID?: string;
12185
12189
  Comments?: string;
@@ -12189,6 +12193,8 @@ export declare const SchemaInfoSchema: z.ZodObject<{
12189
12193
  SchemaName?: string;
12190
12194
  EntityIDMin?: number;
12191
12195
  EntityIDMax?: number;
12196
+ EntityNamePrefix?: string;
12197
+ EntityNameSuffix?: string;
12192
12198
  }>;
12193
12199
  export type SchemaInfoEntityType = z.infer<typeof SchemaInfoSchema>;
12194
12200
  /**
@@ -14187,6 +14193,16 @@ export declare class ActionEntity extends BaseEntity<ActionEntityType> {
14187
14193
  */
14188
14194
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
14189
14195
  /**
14196
+ * Actions - Delete method override to wrap in transaction since CascadeDeletes is true.
14197
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
14198
+ * @public
14199
+ * @method
14200
+ * @override
14201
+ * @memberof ActionEntity
14202
+ * @returns {Promise<boolean>} - true if successful, false otherwise
14203
+ */
14204
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
14205
+ /**
14190
14206
  * * Field Name: ID
14191
14207
  * * Display Name: ID
14192
14208
  * * SQL Data Type: uniqueidentifier
@@ -15491,6 +15507,16 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
15491
15507
  */
15492
15508
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
15493
15509
  /**
15510
+ * AI Agents - Delete method override to wrap in transaction since CascadeDeletes is true.
15511
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
15512
+ * @public
15513
+ * @method
15514
+ * @override
15515
+ * @memberof AIAgentEntity
15516
+ * @returns {Promise<boolean>} - true if successful, false otherwise
15517
+ */
15518
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
15519
+ /**
15494
15520
  * 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
15521
  * * DefaultPromptEffortLevel: This rule ensures that if a default prompt effort level is specified, it must be a number between 1 and 100, inclusive.
15496
15522
  * * 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 +16760,16 @@ export declare class AIPromptEntity extends BaseEntity<AIPromptEntityType> {
16734
16760
  */
16735
16761
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
16736
16762
  /**
16763
+ * AI Prompts - Delete method override to wrap in transaction since CascadeDeletes is true.
16764
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
16765
+ * @public
16766
+ * @method
16767
+ * @override
16768
+ * @memberof AIPromptEntity
16769
+ * @returns {Promise<boolean>} - true if successful, false otherwise
16770
+ */
16771
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
16772
+ /**
16737
16773
  * 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
16774
  * * 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
16775
  * * 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.
@@ -22059,7 +22095,7 @@ export declare class DuplicateRunDetailEntity extends BaseEntity<DuplicateRunDet
22059
22095
  set ID(value: string);
22060
22096
  /**
22061
22097
  * * Field Name: DuplicateRunID
22062
- * * Display Name: Duplicate Run ID
22098
+ * * Display Name: Duplicate Run
22063
22099
  * * SQL Data Type: uniqueidentifier
22064
22100
  * * Related Entity/Foreign Key: Duplicate Runs (vwDuplicateRuns.ID)
22065
22101
  */
@@ -22520,7 +22556,7 @@ export declare class EmployeeSkillEntity extends BaseEntity<EmployeeSkillEntityT
22520
22556
  set EmployeeID(value: string);
22521
22557
  /**
22522
22558
  * * Field Name: SkillID
22523
- * * Display Name: Skill ID
22559
+ * * Display Name: Skill
22524
22560
  * * SQL Data Type: uniqueidentifier
22525
22561
  * * Related Entity/Foreign Key: Skills (vwSkills.ID)
22526
22562
  */
@@ -22548,7 +22584,7 @@ export declare class EmployeeSkillEntity extends BaseEntity<EmployeeSkillEntityT
22548
22584
  get Employee(): string | null;
22549
22585
  /**
22550
22586
  * * Field Name: Skill
22551
- * * Display Name: Skill
22587
+ * * Display Name: Skill Name
22552
22588
  * * SQL Data Type: nvarchar(50)
22553
22589
  */
22554
22590
  get Skill(): string;
@@ -23309,7 +23345,7 @@ export declare class EntityActionFilterEntity extends BaseEntity<EntityActionFil
23309
23345
  set ID(value: string);
23310
23346
  /**
23311
23347
  * * Field Name: EntityActionID
23312
- * * Display Name: Entity Action
23348
+ * * Display Name: Entity Action ID
23313
23349
  * * SQL Data Type: uniqueidentifier
23314
23350
  * * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)
23315
23351
  */
@@ -23317,7 +23353,7 @@ export declare class EntityActionFilterEntity extends BaseEntity<EntityActionFil
23317
23353
  set EntityActionID(value: string);
23318
23354
  /**
23319
23355
  * * Field Name: ActionFilterID
23320
- * * Display Name: Action Filter
23356
+ * * Display Name: Action Filter ID
23321
23357
  * * SQL Data Type: uniqueidentifier
23322
23358
  * * Related Entity/Foreign Key: Action Filters (vwActionFilters.ID)
23323
23359
  */
@@ -23478,7 +23514,7 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
23478
23514
  set ID(value: string);
23479
23515
  /**
23480
23516
  * * Field Name: EntityActionID
23481
- * * Display Name: Entity Action
23517
+ * * Display Name: Entity Action ID
23482
23518
  * * SQL Data Type: uniqueidentifier
23483
23519
  * * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)
23484
23520
  */
@@ -23486,7 +23522,7 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
23486
23522
  set EntityActionID(value: string);
23487
23523
  /**
23488
23524
  * * Field Name: InvocationTypeID
23489
- * * Display Name: Invocation Type
23525
+ * * Display Name: Invocation Type ID
23490
23526
  * * SQL Data Type: uniqueidentifier
23491
23527
  * * Related Entity/Foreign Key: Entity Action Invocation Types (vwEntityActionInvocationTypes.ID)
23492
23528
  */
@@ -23522,13 +23558,13 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
23522
23558
  get __mj_UpdatedAt(): Date;
23523
23559
  /**
23524
23560
  * * Field Name: EntityAction
23525
- * * Display Name: Action Name
23561
+ * * Display Name: Entity Action
23526
23562
  * * SQL Data Type: nvarchar(425)
23527
23563
  */
23528
23564
  get EntityAction(): string;
23529
23565
  /**
23530
23566
  * * Field Name: InvocationType
23531
- * * Display Name: Invocation Type Name
23567
+ * * Display Name: Invocation Type
23532
23568
  * * SQL Data Type: nvarchar(255)
23533
23569
  */
23534
23570
  get InvocationType(): string;
@@ -23633,7 +23669,7 @@ export declare class EntityActionParamEntity extends BaseEntity<EntityActionPara
23633
23669
  get EntityAction(): string;
23634
23670
  /**
23635
23671
  * * Field Name: ActionParam
23636
- * * Display Name: Action Parameter
23672
+ * * Display Name: Parameter Name
23637
23673
  * * SQL Data Type: nvarchar(255)
23638
23674
  */
23639
23675
  get ActionParam(): string;
@@ -23976,7 +24012,7 @@ export declare class EntityCommunicationFieldEntity extends BaseEntity<EntityCom
23976
24012
  get __mj_UpdatedAt(): Date;
23977
24013
  /**
23978
24014
  * * Field Name: EntityCommunicationMessageType
23979
- * * Display Name: Message Type
24015
+ * * Display Name: Entity Communication Message Type
23980
24016
  * * SQL Data Type: nvarchar(100)
23981
24017
  */
23982
24018
  get EntityCommunicationMessageType(): string;
@@ -25993,7 +26029,7 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
25993
26029
  set CompanyIntegrationRunDetailID(value: string | null);
25994
26030
  /**
25995
26031
  * * Field Name: Code
25996
- * * Display Name: Code
26032
+ * * Display Name: Error Code
25997
26033
  * * SQL Data Type: nchar(20)
25998
26034
  * * Description: Error code for categorizing and handling specific error types.
25999
26035
  */
@@ -26001,7 +26037,7 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
26001
26037
  set Code(value: string | null);
26002
26038
  /**
26003
26039
  * * Field Name: Message
26004
- * * Display Name: Message
26040
+ * * Display Name: Error Message
26005
26041
  * * SQL Data Type: nvarchar(MAX)
26006
26042
  * * Description: The primary error message describing what went wrong.
26007
26043
  */
@@ -26018,14 +26054,14 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
26018
26054
  set CreatedBy(value: string | null);
26019
26055
  /**
26020
26056
  * * Field Name: Status
26021
- * * Display Name: Status
26057
+ * * Display Name: Error Status
26022
26058
  * * SQL Data Type: nvarchar(10)
26023
26059
  */
26024
26060
  get Status(): string | null;
26025
26061
  set Status(value: string | null);
26026
26062
  /**
26027
26063
  * * Field Name: Category
26028
- * * Display Name: Category
26064
+ * * Display Name: Error Category
26029
26065
  * * SQL Data Type: nvarchar(20)
26030
26066
  * * Description: High-level category for grouping related errors (Database, API, Validation, etc.).
26031
26067
  */
@@ -26033,7 +26069,7 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
26033
26069
  set Category(value: string | null);
26034
26070
  /**
26035
26071
  * * Field Name: Details
26036
- * * Display Name: Details
26072
+ * * Display Name: Error Details
26037
26073
  * * SQL Data Type: nvarchar(MAX)
26038
26074
  * * Description: Full error details including stack trace, inner exceptions, and context data.
26039
26075
  */
@@ -26055,13 +26091,13 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
26055
26091
  get __mj_UpdatedAt(): Date;
26056
26092
  /**
26057
26093
  * * Field Name: CompanyIntegrationRun
26058
- * * Display Name: Integration Run
26094
+ * * Display Name: Company Integration Run
26059
26095
  * * SQL Data Type: nvarchar(100)
26060
26096
  */
26061
26097
  get CompanyIntegrationRun(): string | null;
26062
26098
  /**
26063
26099
  * * Field Name: CompanyIntegrationRunDetail
26064
- * * Display Name: Integration Run Detail
26100
+ * * Display Name: Company Integration Run Detail
26065
26101
  * * SQL Data Type: nvarchar(450)
26066
26102
  */
26067
26103
  get CompanyIntegrationRunDetail(): string | null;
@@ -26907,6 +26943,7 @@ export declare class IntegrationURLFormatEntity extends BaseEntity<IntegrationUR
26907
26943
  set EntityID(value: string);
26908
26944
  /**
26909
26945
  * * Field Name: URLFormat
26946
+ * * Display Name: URL Format
26910
26947
  * * SQL Data Type: nvarchar(500)
26911
26948
  * * Description: The URL Format for the given integration including the ability to include markup with fields from the integration
26912
26949
  */
@@ -29273,6 +29310,16 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
29273
29310
  */
29274
29311
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
29275
29312
  /**
29313
+ * MJ: AI Agent Run Steps - Delete method override to wrap in transaction since CascadeDeletes is true.
29314
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
29315
+ * @public
29316
+ * @method
29317
+ * @override
29318
+ * @memberof AIAgentRunStepEntity
29319
+ * @returns {Promise<boolean>} - true if successful, false otherwise
29320
+ */
29321
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
29322
+ /**
29276
29323
  * 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
29324
  * * 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
29325
  * * StepNumber: This rule ensures that the step number must be greater than zero.
@@ -29489,7 +29536,7 @@ detailed information about what validation rules failed.
29489
29536
  set FinalPayloadValidationMessages(value: string | null);
29490
29537
  /**
29491
29538
  * * Field Name: ParentID
29492
- * * Display Name: Parent
29539
+ * * Display Name: Parent ID
29493
29540
  * * SQL Data Type: uniqueidentifier
29494
29541
  * * Related Entity/Foreign Key: MJ: AI Agent Run Steps (vwAIAgentRunSteps.ID)
29495
29542
  * * Description: Optional reference to parent step for tracking hierarchical relationships like code->test->fix->code cycles
@@ -29548,6 +29595,16 @@ export declare class AIAgentRunEntity extends BaseEntity<AIAgentRunEntityType> {
29548
29595
  */
29549
29596
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
29550
29597
  /**
29598
+ * MJ: AI Agent Runs - Delete method override to wrap in transaction since CascadeDeletes is true.
29599
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
29600
+ * @public
29601
+ * @method
29602
+ * @override
29603
+ * @memberof AIAgentRunEntity
29604
+ * @returns {Promise<boolean>} - true if successful, false otherwise
29605
+ */
29606
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
29607
+ /**
29551
29608
  * 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
29609
  * * EffortLevel: This rule ensures that the effort level, if specified, must be a number between 1 and 100, inclusive.
29553
29610
  * * 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 +30251,16 @@ export declare class AIAgentStepEntity extends BaseEntity<AIAgentStepEntityType>
30194
30251
  */
30195
30252
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
30196
30253
  /**
30254
+ * MJ: AI Agent Steps - Delete method override to wrap in transaction since CascadeDeletes is true.
30255
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
30256
+ * @public
30257
+ * @method
30258
+ * @override
30259
+ * @memberof AIAgentStepEntity
30260
+ * @returns {Promise<boolean>} - true if successful, false otherwise
30261
+ */
30262
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
30263
+ /**
30197
30264
  * 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
30265
  * * RetryCount: This rule ensures that the number of retries allowed cannot be negative.
30199
30266
  * * TimeoutSeconds: This rule ensures that, if provided, the timeout value must be greater than zero seconds.
@@ -30824,6 +30891,16 @@ export declare class AIConfigurationEntity extends BaseEntity<AIConfigurationEnt
30824
30891
  */
30825
30892
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
30826
30893
  /**
30894
+ * MJ: AI Configurations - Delete method override to wrap in transaction since CascadeDeletes is true.
30895
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
30896
+ * @public
30897
+ * @method
30898
+ * @override
30899
+ * @memberof AIConfigurationEntity
30900
+ * @returns {Promise<boolean>} - true if successful, false otherwise
30901
+ */
30902
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
30903
+ /**
30827
30904
  * * Field Name: ID
30828
30905
  * * Display Name: ID
30829
30906
  * * SQL Data Type: uniqueidentifier
@@ -32533,6 +32610,16 @@ export declare class AIPromptRunEntity extends BaseEntity<AIPromptRunEntityType>
32533
32610
  */
32534
32611
  Load(ID: string, EntityRelationshipsToLoad?: string[]): Promise<boolean>;
32535
32612
  /**
32613
+ * MJ: AI Prompt Runs - Delete method override to wrap in transaction since CascadeDeletes is true.
32614
+ * Wrapping in a transaction ensures that all cascade delete operations are handled atomically.
32615
+ * @public
32616
+ * @method
32617
+ * @override
32618
+ * @memberof AIPromptRunEntity
32619
+ * @returns {Promise<boolean>} - true if successful, false otherwise
32620
+ */
32621
+ Delete(options?: EntityDeleteOptions): Promise<boolean>;
32622
+ /**
32536
32623
  * 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
32624
  * * EffortLevel: This rule ensures that if an effort level is provided, it must be between 1 and 100, inclusive.
32538
32625
  * * 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 +36685,7 @@ export declare class ConversationDetailArtifactEntity extends BaseEntity<Convers
36598
36685
  get __mj_UpdatedAt(): Date;
36599
36686
  /**
36600
36687
  * * Field Name: ConversationDetail
36601
- * * Display Name: Message Text
36688
+ * * Display Name: Conversation Detail
36602
36689
  * * SQL Data Type: nvarchar(MAX)
36603
36690
  */
36604
36691
  get ConversationDetail(): string;
@@ -36893,7 +36980,7 @@ export declare class ConversationDetailRatingEntity extends BaseEntity<Conversat
36893
36980
  get __mj_UpdatedAt(): Date;
36894
36981
  /**
36895
36982
  * * Field Name: ConversationDetail
36896
- * * Display Name: Conversation Detail
36983
+ * * Display Name: Message Text
36897
36984
  * * SQL Data Type: nvarchar(MAX)
36898
36985
  */
36899
36986
  get ConversationDetail(): string;
@@ -38938,13 +39025,13 @@ export declare class MCPServerConnectionToolEntity extends BaseEntity<MCPServerC
38938
39025
  get __mj_UpdatedAt(): Date;
38939
39026
  /**
38940
39027
  * * Field Name: MCPServerConnection
38941
- * * Display Name: Connection
39028
+ * * Display Name: Server Connection
38942
39029
  * * SQL Data Type: nvarchar(255)
38943
39030
  */
38944
39031
  get MCPServerConnection(): string;
38945
39032
  /**
38946
39033
  * * Field Name: MCPServerTool
38947
- * * Display Name: Tool
39034
+ * * Display Name: Server Tool
38948
39035
  * * SQL Data Type: nvarchar(255)
38949
39036
  */
38950
39037
  get MCPServerTool(): string | null;
@@ -39566,7 +39653,7 @@ export declare class MCPToolExecutionLogEntity extends BaseEntity<MCPToolExecuti
39566
39653
  set ID(value: string);
39567
39654
  /**
39568
39655
  * * Field Name: MCPServerConnectionID
39569
- * * Display Name: MCP Server Connection ID
39656
+ * * Display Name: MCP Server Connection
39570
39657
  * * SQL Data Type: uniqueidentifier
39571
39658
  * * Related Entity/Foreign Key: MJ: MCP Server Connections (vwMCPServerConnections.ID)
39572
39659
  */
@@ -39574,7 +39661,7 @@ export declare class MCPToolExecutionLogEntity extends BaseEntity<MCPToolExecuti
39574
39661
  set MCPServerConnectionID(value: string);
39575
39662
  /**
39576
39663
  * * Field Name: MCPServerToolID
39577
- * * Display Name: MCP Server Tool ID
39664
+ * * Display Name: MCP Server Tool
39578
39665
  * * SQL Data Type: uniqueidentifier
39579
39666
  * * Related Entity/Foreign Key: MJ: MCP Server Tools (vwMCPServerTools.ID)
39580
39667
  * * Description: FK to MCP Server Tool (null if tool not cached)
@@ -45495,7 +45582,7 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
45495
45582
  set RecommendationID(value: string);
45496
45583
  /**
45497
45584
  * * Field Name: DestinationEntityID
45498
- * * Display Name: Destination Entity ID
45585
+ * * Display Name: Destination Entity
45499
45586
  * * SQL Data Type: uniqueidentifier
45500
45587
  * * Related Entity/Foreign Key: Entities (vwEntities.ID)
45501
45588
  */
@@ -45503,7 +45590,7 @@ export declare class RecommendationItemEntity extends BaseEntity<RecommendationI
45503
45590
  set DestinationEntityID(value: string);
45504
45591
  /**
45505
45592
  * * Field Name: DestinationEntityRecordID
45506
- * * Display Name: Destination Entity Record ID
45593
+ * * Display Name: Destination Record ID
45507
45594
  * * SQL Data Type: nvarchar(450)
45508
45595
  * * Description: The record ID of the destination entity
45509
45596
  */
@@ -45752,7 +45839,7 @@ export declare class RecommendationEntity extends BaseEntity<RecommendationEntit
45752
45839
  set ID(value: string);
45753
45840
  /**
45754
45841
  * * Field Name: RecommendationRunID
45755
- * * Display Name: Recommendation Run
45842
+ * * Display Name: Recommendation Run ID
45756
45843
  * * SQL Data Type: uniqueidentifier
45757
45844
  * * Related Entity/Foreign Key: Recommendation Runs (vwRecommendationRuns.ID)
45758
45845
  */
@@ -46129,7 +46216,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
46129
46216
  set ID(value: string);
46130
46217
  /**
46131
46218
  * * Field Name: RecordMergeLogID
46132
- * * Display Name: Record Merge Log
46219
+ * * Display Name: Record Merge Log ID
46133
46220
  * * SQL Data Type: uniqueidentifier
46134
46221
  * * Related Entity/Foreign Key: Record Merge Logs (vwRecordMergeLogs.ID)
46135
46222
  */
@@ -46137,7 +46224,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
46137
46224
  set RecordMergeLogID(value: string);
46138
46225
  /**
46139
46226
  * * Field Name: DeletedRecordID
46140
- * * Display Name: Deleted Record
46227
+ * * Display Name: Deleted Record ID
46141
46228
  * * SQL Data Type: nvarchar(750)
46142
46229
  * * Description: Field DeletedRecordID for entity Record Merge Deletion Logs.
46143
46230
  */
@@ -46180,7 +46267,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
46180
46267
  get __mj_UpdatedAt(): Date;
46181
46268
  /**
46182
46269
  * * Field Name: RecordMergeLog
46183
- * * Display Name: Merge Log
46270
+ * * Display Name: Record Merge Log
46184
46271
  * * SQL Data Type: nvarchar(450)
46185
46272
  */
46186
46273
  get RecordMergeLog(): string;
@@ -47210,6 +47297,7 @@ export declare class RoleEntity extends BaseEntity<RoleEntityType> {
47210
47297
  set DirectoryID(value: string | null);
47211
47298
  /**
47212
47299
  * * Field Name: SQLName
47300
+ * * Display Name: SQL Name
47213
47301
  * * SQL Data Type: nvarchar(250)
47214
47302
  * * Description: The name of the role in the database, this is used for auto-generating permission statements by CodeGen
47215
47303
  */
@@ -47641,7 +47729,7 @@ export declare class SchemaInfoEntity extends BaseEntity<SchemaInfoEntityType> {
47641
47729
  set SchemaName(value: string);
47642
47730
  /**
47643
47731
  * * Field Name: EntityIDMin
47644
- * * Display Name: Entity IDMin
47732
+ * * Display Name: Entity ID Minimum
47645
47733
  * * SQL Data Type: int
47646
47734
  * * Description: Field EntityIDMin for entity Schema Info.
47647
47735
  */
@@ -47649,7 +47737,7 @@ export declare class SchemaInfoEntity extends BaseEntity<SchemaInfoEntityType> {
47649
47737
  set EntityIDMin(value: number);
47650
47738
  /**
47651
47739
  * * Field Name: EntityIDMax
47652
- * * Display Name: Entity IDMax
47740
+ * * Display Name: Entity ID Maximum
47653
47741
  * * SQL Data Type: int
47654
47742
  * * Description: Field EntityIDMax for entity Schema Info.
47655
47743
  */
@@ -47683,6 +47771,22 @@ export declare class SchemaInfoEntity extends BaseEntity<SchemaInfoEntityType> {
47683
47771
  */
47684
47772
  get Description(): string | null;
47685
47773
  set Description(value: string | null);
47774
+ /**
47775
+ * * Field Name: EntityNamePrefix
47776
+ * * Display Name: Entity Name Prefix
47777
+ * * SQL Data Type: nvarchar(25)
47778
+ * * Description: Optional prefix to prepend to entity names generated for this schema. For example, setting this to "Committees: " would result in entity names like "Committees: Individuals". Can be overridden by mj.config.cjs NameRulesBySchema settings.
47779
+ */
47780
+ get EntityNamePrefix(): string | null;
47781
+ set EntityNamePrefix(value: string | null);
47782
+ /**
47783
+ * * Field Name: EntityNameSuffix
47784
+ * * Display Name: Entity Name Suffix
47785
+ * * SQL Data Type: nvarchar(25)
47786
+ * * Description: Optional suffix to append to entity names generated for this schema. Can be overridden by mj.config.cjs NameRulesBySchema settings.
47787
+ */
47788
+ get EntityNameSuffix(): string | null;
47789
+ set EntityNameSuffix(value: string | null);
47686
47790
  }
47687
47791
  /**
47688
47792
  * Skills - strongly typed entity sub-class
@@ -48289,7 +48393,7 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
48289
48393
  set DefaultValue(value: string | null);
48290
48394
  /**
48291
48395
  * * Field Name: IsRequired
48292
- * * Display Name: Is Required
48396
+ * * Display Name: Required
48293
48397
  * * SQL Data Type: bit
48294
48398
  * * Default Value: 0
48295
48399
  * * Description: Whether this parameter must be provided when using the template.