@memberjunction/core-entities 2.53.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.
|
@@ -6967,6 +6967,11 @@ exports.AIAgentRunStepSchema = zod_1.z.object({
|
|
|
6967
6967
|
* * Display Name: Updated At
|
|
6968
6968
|
* * SQL Data Type: datetimeoffset
|
|
6969
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)`),
|
|
6970
6975
|
});
|
|
6971
6976
|
/**
|
|
6972
6977
|
* zod schema definition for the entity MJ: AI Agent Runs
|
|
@@ -29727,6 +29732,18 @@ let AIAgentRunStepEntity = class AIAgentRunStepEntity extends core_1.BaseEntity
|
|
|
29727
29732
|
get __mj_UpdatedAt() {
|
|
29728
29733
|
return this.Get('__mj_UpdatedAt');
|
|
29729
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
|
+
}
|
|
29730
29747
|
};
|
|
29731
29748
|
exports.AIAgentRunStepEntity = AIAgentRunStepEntity;
|
|
29732
29749
|
exports.AIAgentRunStepEntity = AIAgentRunStepEntity = __decorate([
|