@memberjunction/core-entities 4.0.0 → 4.1.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.
- package/dist/generated/entity_subclasses.d.ts +36 -29
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +79 -58
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/package.json +5 -5
- package/readme.md +420 -132
- package/dist/custom/AIAgentExtended.d.ts +0 -13
- package/dist/custom/AIAgentExtended.d.ts.map +0 -1
- package/dist/custom/AIAgentExtended.js +0 -37
- package/dist/custom/AIAgentExtended.js.map +0 -1
- package/dist/custom/AIAgentRunExtended.d.ts +0 -32
- package/dist/custom/AIAgentRunExtended.d.ts.map +0 -1
- package/dist/custom/AIAgentRunExtended.js +0 -136
- package/dist/custom/AIAgentRunExtended.js.map +0 -1
- package/dist/custom/AIAgentRunStepExtended.d.ts +0 -48
- package/dist/custom/AIAgentRunStepExtended.d.ts.map +0 -1
- package/dist/custom/AIAgentRunStepExtended.js +0 -149
- package/dist/custom/AIAgentRunStepExtended.js.map +0 -1
- package/dist/custom/AIModelExtended.d.ts +0 -14
- package/dist/custom/AIModelExtended.d.ts.map +0 -1
- package/dist/custom/AIModelExtended.js +0 -36
- package/dist/custom/AIModelExtended.js.map +0 -1
- package/dist/custom/AIPromptCategoryExtended.d.ts +0 -7
- package/dist/custom/AIPromptCategoryExtended.d.ts.map +0 -1
- package/dist/custom/AIPromptCategoryExtended.js +0 -26
- package/dist/custom/AIPromptCategoryExtended.js.map +0 -1
- package/dist/custom/AIPromptExtended.d.ts +0 -51
- package/dist/custom/AIPromptExtended.d.ts.map +0 -1
- package/dist/custom/AIPromptExtended.js +0 -169
- package/dist/custom/AIPromptExtended.js.map +0 -1
- package/dist/custom/AIPromptRunEntityExtended.d.ts +0 -47
- package/dist/custom/AIPromptRunEntityExtended.d.ts.map +0 -1
- package/dist/custom/AIPromptRunEntityExtended.js +0 -156
- package/dist/custom/AIPromptRunEntityExtended.js.map +0 -1
- package/dist/custom/TypeTablesCache.d.ts +0 -12
- package/dist/custom/TypeTablesCache.d.ts.map +0 -1
- package/dist/custom/TypeTablesCache.js +0 -31
- package/dist/custom/TypeTablesCache.js.map +0 -1
|
@@ -16522,42 +16522,49 @@ export declare class AIModelEntity extends BaseEntity<AIModelEntityType> {
|
|
|
16522
16522
|
* * SQL Data Type: nvarchar(50)
|
|
16523
16523
|
*/
|
|
16524
16524
|
get Vendor(): string | null;
|
|
16525
|
+
set Vendor(value: string | null);
|
|
16525
16526
|
/**
|
|
16526
16527
|
* * Field Name: DriverClass
|
|
16527
16528
|
* * Display Name: Driver Class
|
|
16528
16529
|
* * SQL Data Type: nvarchar(100)
|
|
16529
16530
|
*/
|
|
16530
16531
|
get DriverClass(): string | null;
|
|
16532
|
+
set DriverClass(value: string | null);
|
|
16531
16533
|
/**
|
|
16532
16534
|
* * Field Name: DriverImportPath
|
|
16533
16535
|
* * Display Name: Driver Import Path
|
|
16534
16536
|
* * SQL Data Type: nvarchar(255)
|
|
16535
16537
|
*/
|
|
16536
16538
|
get DriverImportPath(): string | null;
|
|
16539
|
+
set DriverImportPath(value: string | null);
|
|
16537
16540
|
/**
|
|
16538
16541
|
* * Field Name: APIName
|
|
16539
16542
|
* * Display Name: API Name
|
|
16540
16543
|
* * SQL Data Type: nvarchar(100)
|
|
16541
16544
|
*/
|
|
16542
16545
|
get APIName(): string | null;
|
|
16546
|
+
set APIName(value: string | null);
|
|
16543
16547
|
/**
|
|
16544
16548
|
* * Field Name: InputTokenLimit
|
|
16545
16549
|
* * Display Name: Input Token Limit
|
|
16546
16550
|
* * SQL Data Type: int
|
|
16547
16551
|
*/
|
|
16548
16552
|
get InputTokenLimit(): number | null;
|
|
16553
|
+
set InputTokenLimit(value: number | null);
|
|
16549
16554
|
/**
|
|
16550
16555
|
* * Field Name: SupportedResponseFormats
|
|
16551
16556
|
* * Display Name: Supported Response Formats
|
|
16552
16557
|
* * SQL Data Type: nvarchar(100)
|
|
16553
16558
|
*/
|
|
16554
16559
|
get SupportedResponseFormats(): string | null;
|
|
16560
|
+
set SupportedResponseFormats(value: string | null);
|
|
16555
16561
|
/**
|
|
16556
16562
|
* * Field Name: SupportsEffortLevel
|
|
16557
16563
|
* * Display Name: Supports Effort Level
|
|
16558
16564
|
* * SQL Data Type: bit
|
|
16559
16565
|
*/
|
|
16560
16566
|
get SupportsEffortLevel(): boolean | null;
|
|
16567
|
+
set SupportsEffortLevel(value: boolean | null);
|
|
16561
16568
|
}
|
|
16562
16569
|
/**
|
|
16563
16570
|
* AI Prompt Categories - strongly typed entity sub-class
|
|
@@ -22354,7 +22361,7 @@ export declare class EmployeeCompanyIntegrationEntity extends BaseEntity<Employe
|
|
|
22354
22361
|
set CompanyIntegrationID(value: string);
|
|
22355
22362
|
/**
|
|
22356
22363
|
* * Field Name: ExternalSystemRecordID
|
|
22357
|
-
* * Display Name: External System Record
|
|
22364
|
+
* * Display Name: External System Record ID
|
|
22358
22365
|
* * SQL Data Type: nvarchar(750)
|
|
22359
22366
|
* * Description: The employee's unique identifier in the external integrated system.
|
|
22360
22367
|
*/
|
|
@@ -22513,7 +22520,7 @@ export declare class EmployeeSkillEntity extends BaseEntity<EmployeeSkillEntityT
|
|
|
22513
22520
|
set EmployeeID(value: string);
|
|
22514
22521
|
/**
|
|
22515
22522
|
* * Field Name: SkillID
|
|
22516
|
-
* * Display Name: Skill
|
|
22523
|
+
* * Display Name: Skill ID
|
|
22517
22524
|
* * SQL Data Type: uniqueidentifier
|
|
22518
22525
|
* * Related Entity/Foreign Key: Skills (vwSkills.ID)
|
|
22519
22526
|
*/
|
|
@@ -22535,7 +22542,7 @@ export declare class EmployeeSkillEntity extends BaseEntity<EmployeeSkillEntityT
|
|
|
22535
22542
|
get __mj_UpdatedAt(): Date;
|
|
22536
22543
|
/**
|
|
22537
22544
|
* * Field Name: Employee
|
|
22538
|
-
* * Display Name: Employee
|
|
22545
|
+
* * Display Name: Employee
|
|
22539
22546
|
* * SQL Data Type: nvarchar(81)
|
|
22540
22547
|
*/
|
|
22541
22548
|
get Employee(): string | null;
|
|
@@ -23471,7 +23478,7 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
|
|
|
23471
23478
|
set ID(value: string);
|
|
23472
23479
|
/**
|
|
23473
23480
|
* * Field Name: EntityActionID
|
|
23474
|
-
* * Display Name: Entity Action
|
|
23481
|
+
* * Display Name: Entity Action
|
|
23475
23482
|
* * SQL Data Type: uniqueidentifier
|
|
23476
23483
|
* * Related Entity/Foreign Key: Entity Actions (vwEntityActions.ID)
|
|
23477
23484
|
*/
|
|
@@ -23479,7 +23486,7 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
|
|
|
23479
23486
|
set EntityActionID(value: string);
|
|
23480
23487
|
/**
|
|
23481
23488
|
* * Field Name: InvocationTypeID
|
|
23482
|
-
* * Display Name: Invocation Type
|
|
23489
|
+
* * Display Name: Invocation Type
|
|
23483
23490
|
* * SQL Data Type: uniqueidentifier
|
|
23484
23491
|
* * Related Entity/Foreign Key: Entity Action Invocation Types (vwEntityActionInvocationTypes.ID)
|
|
23485
23492
|
*/
|
|
@@ -23515,13 +23522,13 @@ export declare class EntityActionInvocationEntity extends BaseEntity<EntityActio
|
|
|
23515
23522
|
get __mj_UpdatedAt(): Date;
|
|
23516
23523
|
/**
|
|
23517
23524
|
* * Field Name: EntityAction
|
|
23518
|
-
* * Display Name:
|
|
23525
|
+
* * Display Name: Action Name
|
|
23519
23526
|
* * SQL Data Type: nvarchar(425)
|
|
23520
23527
|
*/
|
|
23521
23528
|
get EntityAction(): string;
|
|
23522
23529
|
/**
|
|
23523
23530
|
* * Field Name: InvocationType
|
|
23524
|
-
* * Display Name: Invocation Type
|
|
23531
|
+
* * Display Name: Invocation Type Name
|
|
23525
23532
|
* * SQL Data Type: nvarchar(255)
|
|
23526
23533
|
*/
|
|
23527
23534
|
get InvocationType(): string;
|
|
@@ -23620,7 +23627,7 @@ export declare class EntityActionParamEntity extends BaseEntity<EntityActionPara
|
|
|
23620
23627
|
get __mj_UpdatedAt(): Date;
|
|
23621
23628
|
/**
|
|
23622
23629
|
* * Field Name: EntityAction
|
|
23623
|
-
* * Display Name: Action
|
|
23630
|
+
* * Display Name: Entity Action
|
|
23624
23631
|
* * SQL Data Type: nvarchar(425)
|
|
23625
23632
|
*/
|
|
23626
23633
|
get EntityAction(): string;
|
|
@@ -26048,13 +26055,13 @@ export declare class ErrorLogEntity extends BaseEntity<ErrorLogEntityType> {
|
|
|
26048
26055
|
get __mj_UpdatedAt(): Date;
|
|
26049
26056
|
/**
|
|
26050
26057
|
* * Field Name: CompanyIntegrationRun
|
|
26051
|
-
* * Display Name:
|
|
26058
|
+
* * Display Name: Integration Run
|
|
26052
26059
|
* * SQL Data Type: nvarchar(100)
|
|
26053
26060
|
*/
|
|
26054
26061
|
get CompanyIntegrationRun(): string | null;
|
|
26055
26062
|
/**
|
|
26056
26063
|
* * Field Name: CompanyIntegrationRunDetail
|
|
26057
|
-
* * Display Name:
|
|
26064
|
+
* * Display Name: Integration Run Detail
|
|
26058
26065
|
* * SQL Data Type: nvarchar(450)
|
|
26059
26066
|
*/
|
|
26060
26067
|
get CompanyIntegrationRunDetail(): string | null;
|
|
@@ -29505,7 +29512,7 @@ detailed information about what validation rules failed.
|
|
|
29505
29512
|
get AgentRun(): string | null;
|
|
29506
29513
|
/**
|
|
29507
29514
|
* * Field Name: Parent
|
|
29508
|
-
* * Display Name: Parent
|
|
29515
|
+
* * Display Name: Parent
|
|
29509
29516
|
* * SQL Data Type: nvarchar(255)
|
|
29510
29517
|
*/
|
|
29511
29518
|
get Parent(): string | null;
|
|
@@ -36591,7 +36598,7 @@ export declare class ConversationDetailArtifactEntity extends BaseEntity<Convers
|
|
|
36591
36598
|
get __mj_UpdatedAt(): Date;
|
|
36592
36599
|
/**
|
|
36593
36600
|
* * Field Name: ConversationDetail
|
|
36594
|
-
* * Display Name:
|
|
36601
|
+
* * Display Name: Message Text
|
|
36595
36602
|
* * SQL Data Type: nvarchar(MAX)
|
|
36596
36603
|
*/
|
|
36597
36604
|
get ConversationDetail(): string;
|
|
@@ -38892,7 +38899,7 @@ export declare class MCPServerConnectionToolEntity extends BaseEntity<MCPServerC
|
|
|
38892
38899
|
set MCPServerToolID(value: string);
|
|
38893
38900
|
/**
|
|
38894
38901
|
* * Field Name: IsEnabled
|
|
38895
|
-
* * Display Name:
|
|
38902
|
+
* * Display Name: Enabled
|
|
38896
38903
|
* * SQL Data Type: bit
|
|
38897
38904
|
* * Default Value: 1
|
|
38898
38905
|
* * Description: Whether this tool is enabled for the connection
|
|
@@ -38931,13 +38938,13 @@ export declare class MCPServerConnectionToolEntity extends BaseEntity<MCPServerC
|
|
|
38931
38938
|
get __mj_UpdatedAt(): Date;
|
|
38932
38939
|
/**
|
|
38933
38940
|
* * Field Name: MCPServerConnection
|
|
38934
|
-
* * Display Name:
|
|
38941
|
+
* * Display Name: Connection
|
|
38935
38942
|
* * SQL Data Type: nvarchar(255)
|
|
38936
38943
|
*/
|
|
38937
38944
|
get MCPServerConnection(): string;
|
|
38938
38945
|
/**
|
|
38939
38946
|
* * Field Name: MCPServerTool
|
|
38940
|
-
* * Display Name:
|
|
38947
|
+
* * Display Name: Tool
|
|
38941
38948
|
* * SQL Data Type: nvarchar(255)
|
|
38942
38949
|
*/
|
|
38943
38950
|
get MCPServerTool(): string | null;
|
|
@@ -39559,7 +39566,7 @@ export declare class MCPToolExecutionLogEntity extends BaseEntity<MCPToolExecuti
|
|
|
39559
39566
|
set ID(value: string);
|
|
39560
39567
|
/**
|
|
39561
39568
|
* * Field Name: MCPServerConnectionID
|
|
39562
|
-
* * Display Name: MCP Server Connection
|
|
39569
|
+
* * Display Name: MCP Server Connection ID
|
|
39563
39570
|
* * SQL Data Type: uniqueidentifier
|
|
39564
39571
|
* * Related Entity/Foreign Key: MJ: MCP Server Connections (vwMCPServerConnections.ID)
|
|
39565
39572
|
*/
|
|
@@ -39567,7 +39574,7 @@ export declare class MCPToolExecutionLogEntity extends BaseEntity<MCPToolExecuti
|
|
|
39567
39574
|
set MCPServerConnectionID(value: string);
|
|
39568
39575
|
/**
|
|
39569
39576
|
* * Field Name: MCPServerToolID
|
|
39570
|
-
* * Display Name: MCP Server Tool
|
|
39577
|
+
* * Display Name: MCP Server Tool ID
|
|
39571
39578
|
* * SQL Data Type: uniqueidentifier
|
|
39572
39579
|
* * Related Entity/Foreign Key: MJ: MCP Server Tools (vwMCPServerTools.ID)
|
|
39573
39580
|
* * Description: FK to MCP Server Tool (null if tool not cached)
|
|
@@ -45761,7 +45768,7 @@ export declare class RecommendationEntity extends BaseEntity<RecommendationEntit
|
|
|
45761
45768
|
set SourceEntityID(value: string);
|
|
45762
45769
|
/**
|
|
45763
45770
|
* * Field Name: SourceEntityRecordID
|
|
45764
|
-
* * Display Name: Source Record
|
|
45771
|
+
* * Display Name: Source Entity Record
|
|
45765
45772
|
* * SQL Data Type: nvarchar(MAX)
|
|
45766
45773
|
* * Description: The record ID of the source entity
|
|
45767
45774
|
*/
|
|
@@ -45919,7 +45926,7 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
|
|
|
45919
45926
|
set ID(value: string);
|
|
45920
45927
|
/**
|
|
45921
45928
|
* * Field Name: EntityID
|
|
45922
|
-
* * Display Name: Entity
|
|
45929
|
+
* * Display Name: Entity ID
|
|
45923
45930
|
* * SQL Data Type: uniqueidentifier
|
|
45924
45931
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
45925
45932
|
*/
|
|
@@ -45935,7 +45942,7 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
|
|
|
45935
45942
|
set RecordID(value: string);
|
|
45936
45943
|
/**
|
|
45937
45944
|
* * Field Name: UserID
|
|
45938
|
-
* * Display Name: User
|
|
45945
|
+
* * Display Name: User ID
|
|
45939
45946
|
* * SQL Data Type: uniqueidentifier
|
|
45940
45947
|
* * Related Entity/Foreign Key: Users (vwUsers.ID)
|
|
45941
45948
|
*/
|
|
@@ -46026,7 +46033,7 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
|
|
|
46026
46033
|
set ErrorLog(value: string | null);
|
|
46027
46034
|
/**
|
|
46028
46035
|
* * Field Name: ReplayRunID
|
|
46029
|
-
* * Display Name: Replay Run
|
|
46036
|
+
* * Display Name: Replay Run ID
|
|
46030
46037
|
* * SQL Data Type: uniqueidentifier
|
|
46031
46038
|
* * Related Entity/Foreign Key: Record Change Replay Runs (vwRecordChangeReplayRuns.ID)
|
|
46032
46039
|
*/
|
|
@@ -46034,7 +46041,7 @@ export declare class RecordChangeEntity extends BaseEntity<RecordChangeEntityTyp
|
|
|
46034
46041
|
set ReplayRunID(value: string | null);
|
|
46035
46042
|
/**
|
|
46036
46043
|
* * Field Name: IntegrationID
|
|
46037
|
-
* * Display Name: Integration
|
|
46044
|
+
* * Display Name: Integration ID
|
|
46038
46045
|
* * SQL Data Type: uniqueidentifier
|
|
46039
46046
|
* * Related Entity/Foreign Key: Integrations (vwIntegrations.ID)
|
|
46040
46047
|
*/
|
|
@@ -46122,7 +46129,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
|
|
|
46122
46129
|
set ID(value: string);
|
|
46123
46130
|
/**
|
|
46124
46131
|
* * Field Name: RecordMergeLogID
|
|
46125
|
-
* * Display Name: Record Merge Log
|
|
46132
|
+
* * Display Name: Record Merge Log
|
|
46126
46133
|
* * SQL Data Type: uniqueidentifier
|
|
46127
46134
|
* * Related Entity/Foreign Key: Record Merge Logs (vwRecordMergeLogs.ID)
|
|
46128
46135
|
*/
|
|
@@ -46130,7 +46137,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
|
|
|
46130
46137
|
set RecordMergeLogID(value: string);
|
|
46131
46138
|
/**
|
|
46132
46139
|
* * Field Name: DeletedRecordID
|
|
46133
|
-
* * Display Name: Deleted Record
|
|
46140
|
+
* * Display Name: Deleted Record
|
|
46134
46141
|
* * SQL Data Type: nvarchar(750)
|
|
46135
46142
|
* * Description: Field DeletedRecordID for entity Record Merge Deletion Logs.
|
|
46136
46143
|
*/
|
|
@@ -46173,7 +46180,7 @@ export declare class RecordMergeDeletionLogEntity extends BaseEntity<RecordMerge
|
|
|
46173
46180
|
get __mj_UpdatedAt(): Date;
|
|
46174
46181
|
/**
|
|
46175
46182
|
* * Field Name: RecordMergeLog
|
|
46176
|
-
* * Display Name:
|
|
46183
|
+
* * Display Name: Merge Log
|
|
46177
46184
|
* * SQL Data Type: nvarchar(450)
|
|
46178
46185
|
*/
|
|
46179
46186
|
get RecordMergeLog(): string;
|
|
@@ -48234,7 +48241,7 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
|
|
|
48234
48241
|
set ID(value: string);
|
|
48235
48242
|
/**
|
|
48236
48243
|
* * Field Name: TemplateID
|
|
48237
|
-
* * Display Name: Template
|
|
48244
|
+
* * Display Name: Template ID
|
|
48238
48245
|
* * SQL Data Type: uniqueidentifier
|
|
48239
48246
|
* * Related Entity/Foreign Key: Templates (vwTemplates.ID)
|
|
48240
48247
|
*/
|
|
@@ -48291,7 +48298,7 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
|
|
|
48291
48298
|
set IsRequired(value: boolean);
|
|
48292
48299
|
/**
|
|
48293
48300
|
* * Field Name: LinkedParameterName
|
|
48294
|
-
* * Display Name: Linked Parameter
|
|
48301
|
+
* * Display Name: Linked Parameter Name
|
|
48295
48302
|
* * SQL Data Type: nvarchar(255)
|
|
48296
48303
|
* * Description: Only used when Type=Entity, this is used to link an Entity parameter with another parameter so that the rows in the Entity parameter can be filtered automatically based on the FKEY relationship between the Record and this Entity parameter. For example, if the Entity-based parameter is for an entity like Activities and there is another parameter of type Record for an entity like Contacts, in that situation the Activities Parameter would point to the Contacts parameter as the LinkedParameterName because we would filter down the Activities in each template render to only those linked to the Contact.
|
|
48297
48304
|
*/
|
|
@@ -48315,7 +48322,7 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
|
|
|
48315
48322
|
set ExtraFilter(value: string | null);
|
|
48316
48323
|
/**
|
|
48317
48324
|
* * Field Name: EntityID
|
|
48318
|
-
* * Display Name: Entity
|
|
48325
|
+
* * Display Name: Entity ID
|
|
48319
48326
|
* * SQL Data Type: uniqueidentifier
|
|
48320
48327
|
* * Related Entity/Foreign Key: Entities (vwEntities.ID)
|
|
48321
48328
|
*/
|
|
@@ -48353,7 +48360,7 @@ export declare class TemplateParamEntity extends BaseEntity<TemplateParamEntityT
|
|
|
48353
48360
|
set OrderBy(value: string | null);
|
|
48354
48361
|
/**
|
|
48355
48362
|
* * Field Name: TemplateContentID
|
|
48356
|
-
* * Display Name: Template Content
|
|
48363
|
+
* * Display Name: Template Content ID
|
|
48357
48364
|
* * SQL Data Type: uniqueidentifier
|
|
48358
48365
|
* * Related Entity/Foreign Key: Template Contents (vwTemplateContents.ID)
|
|
48359
48366
|
* * Description: Optional reference to a specific template content. When NULL, this parameter applies to all content items within the template. When set, this parameter applies only to the specified template content.
|