@memberjunction/core-entities 2.52.0 → 2.54.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/custom/AIPromptExtended.d.ts +23 -2
- package/dist/custom/AIPromptExtended.d.ts.map +1 -1
- package/dist/custom/AIPromptExtended.js +62 -4
- package/dist/custom/AIPromptExtended.js.map +1 -1
- package/dist/custom/UserViewEntity.d.ts +1 -1
- package/dist/custom/UserViewEntity.d.ts.map +1 -1
- package/dist/custom/UserViewEntity.js +2 -2
- package/dist/custom/UserViewEntity.js.map +1 -1
- package/dist/generated/entity_subclasses.d.ts +44 -0
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +67 -0
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/package.json +3 -3
|
@@ -572,6 +572,12 @@ exports.ActionSchema = zod_1.z.object({
|
|
|
572
572
|
* * Display Name: Driver Class
|
|
573
573
|
* * SQL Data Type: nvarchar(255)
|
|
574
574
|
* * Description: For actions where Type='Custom', this specifies the fully qualified class name of the BaseAction sub-class that should be instantiated to handle the action execution. This provides a more reliable mechanism than relying on the Name field for class instantiation.`),
|
|
575
|
+
ParentID: zod_1.z.string().nullable().describe(`
|
|
576
|
+
* * Field Name: ParentID
|
|
577
|
+
* * Display Name: Parent ID
|
|
578
|
+
* * SQL Data Type: uniqueidentifier
|
|
579
|
+
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
580
|
+
* * Description: Optional ID of the parent action this action inherits from. Used for hierarchical action composition where child actions can specialize parent actions.`),
|
|
575
581
|
Category: zod_1.z.string().nullable().describe(`
|
|
576
582
|
* * Field Name: Category
|
|
577
583
|
* * Display Name: Category
|
|
@@ -580,6 +586,10 @@ exports.ActionSchema = zod_1.z.object({
|
|
|
580
586
|
* * Field Name: CodeApprovedByUser
|
|
581
587
|
* * Display Name: Code Approved By User
|
|
582
588
|
* * SQL Data Type: nvarchar(100)`),
|
|
589
|
+
Parent: zod_1.z.string().nullable().describe(`
|
|
590
|
+
* * Field Name: Parent
|
|
591
|
+
* * Display Name: Parent
|
|
592
|
+
* * SQL Data Type: nvarchar(425)`),
|
|
583
593
|
});
|
|
584
594
|
/**
|
|
585
595
|
* zod schema definition for the entity AI Actions
|
|
@@ -6957,6 +6967,11 @@ exports.AIAgentRunStepSchema = zod_1.z.object({
|
|
|
6957
6967
|
* * Display Name: Updated At
|
|
6958
6968
|
* * SQL Data Type: datetimeoffset
|
|
6959
6969
|
* * Default Value: getutcdate()`),
|
|
6970
|
+
TargetLogID: zod_1.z.string().nullable().describe(`
|
|
6971
|
+
* * Field Name: TargetLogID
|
|
6972
|
+
* * Display Name: Target Log ID
|
|
6973
|
+
* * SQL Data Type: uniqueidentifier
|
|
6974
|
+
* * Description: ID of the execution log/run record created for this step (ActionExecutionLog.ID for action steps, AIAgentRun.ID for subagent steps, AIPromptRun.ID for prompt steps)`),
|
|
6960
6975
|
});
|
|
6961
6976
|
/**
|
|
6962
6977
|
* zod schema definition for the entity MJ: AI Agent Runs
|
|
@@ -10507,6 +10522,12 @@ exports.TemplateParamSchema = zod_1.z.object({
|
|
|
10507
10522
|
* * Display Name: Order By
|
|
10508
10523
|
* * SQL Data Type: nvarchar(MAX)
|
|
10509
10524
|
* * Description: This field is used only when the Type of the TemplateParam table is "Entity". It is an optional field used to specify the sorting order for the related entity data that is used in the template for the Entity specified.`),
|
|
10525
|
+
TemplateContentID: zod_1.z.string().nullable().describe(`
|
|
10526
|
+
* * Field Name: TemplateContentID
|
|
10527
|
+
* * Display Name: Template Content ID
|
|
10528
|
+
* * SQL Data Type: uniqueidentifier
|
|
10529
|
+
* * Related Entity/Foreign Key: Template Contents (vwTemplateContents.ID)
|
|
10530
|
+
* * 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.`),
|
|
10510
10531
|
Template: zod_1.z.string().describe(`
|
|
10511
10532
|
* * Field Name: Template
|
|
10512
10533
|
* * Display Name: Template
|
|
@@ -13059,6 +13080,19 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
13059
13080
|
this.Set('DriverClass', value);
|
|
13060
13081
|
}
|
|
13061
13082
|
/**
|
|
13083
|
+
* * Field Name: ParentID
|
|
13084
|
+
* * Display Name: Parent ID
|
|
13085
|
+
* * SQL Data Type: uniqueidentifier
|
|
13086
|
+
* * Related Entity/Foreign Key: Actions (vwActions.ID)
|
|
13087
|
+
* * Description: Optional ID of the parent action this action inherits from. Used for hierarchical action composition where child actions can specialize parent actions.
|
|
13088
|
+
*/
|
|
13089
|
+
get ParentID() {
|
|
13090
|
+
return this.Get('ParentID');
|
|
13091
|
+
}
|
|
13092
|
+
set ParentID(value) {
|
|
13093
|
+
this.Set('ParentID', value);
|
|
13094
|
+
}
|
|
13095
|
+
/**
|
|
13062
13096
|
* * Field Name: Category
|
|
13063
13097
|
* * Display Name: Category
|
|
13064
13098
|
* * SQL Data Type: nvarchar(255)
|
|
@@ -13074,6 +13108,14 @@ let ActionEntity = class ActionEntity extends core_1.BaseEntity {
|
|
|
13074
13108
|
get CodeApprovedByUser() {
|
|
13075
13109
|
return this.Get('CodeApprovedByUser');
|
|
13076
13110
|
}
|
|
13111
|
+
/**
|
|
13112
|
+
* * Field Name: Parent
|
|
13113
|
+
* * Display Name: Parent
|
|
13114
|
+
* * SQL Data Type: nvarchar(425)
|
|
13115
|
+
*/
|
|
13116
|
+
get Parent() {
|
|
13117
|
+
return this.Get('Parent');
|
|
13118
|
+
}
|
|
13077
13119
|
};
|
|
13078
13120
|
exports.ActionEntity = ActionEntity;
|
|
13079
13121
|
exports.ActionEntity = ActionEntity = __decorate([
|
|
@@ -29690,6 +29732,18 @@ let AIAgentRunStepEntity = class AIAgentRunStepEntity extends core_1.BaseEntity
|
|
|
29690
29732
|
get __mj_UpdatedAt() {
|
|
29691
29733
|
return this.Get('__mj_UpdatedAt');
|
|
29692
29734
|
}
|
|
29735
|
+
/**
|
|
29736
|
+
* * Field Name: TargetLogID
|
|
29737
|
+
* * Display Name: Target Log ID
|
|
29738
|
+
* * SQL Data Type: uniqueidentifier
|
|
29739
|
+
* * Description: ID of the execution log/run record created for this step (ActionExecutionLog.ID for action steps, AIAgentRun.ID for subagent steps, AIPromptRun.ID for prompt steps)
|
|
29740
|
+
*/
|
|
29741
|
+
get TargetLogID() {
|
|
29742
|
+
return this.Get('TargetLogID');
|
|
29743
|
+
}
|
|
29744
|
+
set TargetLogID(value) {
|
|
29745
|
+
this.Set('TargetLogID', value);
|
|
29746
|
+
}
|
|
29693
29747
|
};
|
|
29694
29748
|
exports.AIAgentRunStepEntity = AIAgentRunStepEntity;
|
|
29695
29749
|
exports.AIAgentRunStepEntity = AIAgentRunStepEntity = __decorate([
|
|
@@ -39396,6 +39450,19 @@ let TemplateParamEntity = class TemplateParamEntity extends core_1.BaseEntity {
|
|
|
39396
39450
|
this.Set('OrderBy', value);
|
|
39397
39451
|
}
|
|
39398
39452
|
/**
|
|
39453
|
+
* * Field Name: TemplateContentID
|
|
39454
|
+
* * Display Name: Template Content ID
|
|
39455
|
+
* * SQL Data Type: uniqueidentifier
|
|
39456
|
+
* * Related Entity/Foreign Key: Template Contents (vwTemplateContents.ID)
|
|
39457
|
+
* * 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.
|
|
39458
|
+
*/
|
|
39459
|
+
get TemplateContentID() {
|
|
39460
|
+
return this.Get('TemplateContentID');
|
|
39461
|
+
}
|
|
39462
|
+
set TemplateContentID(value) {
|
|
39463
|
+
this.Set('TemplateContentID', value);
|
|
39464
|
+
}
|
|
39465
|
+
/**
|
|
39399
39466
|
* * Field Name: Template
|
|
39400
39467
|
* * Display Name: Template
|
|
39401
39468
|
* * SQL Data Type: nvarchar(255)
|