@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.
|
@@ -4616,6 +4616,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
|
|
|
4616
4616
|
OutputData: z.ZodNullable<z.ZodString>;
|
|
4617
4617
|
__mj_CreatedAt: z.ZodDate;
|
|
4618
4618
|
__mj_UpdatedAt: z.ZodDate;
|
|
4619
|
+
TargetLogID: z.ZodNullable<z.ZodString>;
|
|
4619
4620
|
}, "strip", z.ZodTypeAny, {
|
|
4620
4621
|
ID?: string;
|
|
4621
4622
|
__mj_CreatedAt?: Date;
|
|
@@ -4632,6 +4633,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
|
|
|
4632
4633
|
CompletedAt?: Date;
|
|
4633
4634
|
InputData?: string;
|
|
4634
4635
|
OutputData?: string;
|
|
4636
|
+
TargetLogID?: string;
|
|
4635
4637
|
}, {
|
|
4636
4638
|
ID?: string;
|
|
4637
4639
|
__mj_CreatedAt?: Date;
|
|
@@ -4648,6 +4650,7 @@ export declare const AIAgentRunStepSchema: z.ZodObject<{
|
|
|
4648
4650
|
CompletedAt?: Date;
|
|
4649
4651
|
InputData?: string;
|
|
4650
4652
|
OutputData?: string;
|
|
4653
|
+
TargetLogID?: string;
|
|
4651
4654
|
}>;
|
|
4652
4655
|
export type AIAgentRunStepEntityType = z.infer<typeof AIAgentRunStepSchema>;
|
|
4653
4656
|
/**
|
|
@@ -20710,6 +20713,14 @@ export declare class AIAgentRunStepEntity extends BaseEntity<AIAgentRunStepEntit
|
|
|
20710
20713
|
* * Default Value: getutcdate()
|
|
20711
20714
|
*/
|
|
20712
20715
|
get __mj_UpdatedAt(): Date;
|
|
20716
|
+
/**
|
|
20717
|
+
* * Field Name: TargetLogID
|
|
20718
|
+
* * Display Name: Target Log ID
|
|
20719
|
+
* * SQL Data Type: uniqueidentifier
|
|
20720
|
+
* * 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)
|
|
20721
|
+
*/
|
|
20722
|
+
get TargetLogID(): string | null;
|
|
20723
|
+
set TargetLogID(value: string | null);
|
|
20713
20724
|
}
|
|
20714
20725
|
/**
|
|
20715
20726
|
* MJ: AI Agent Runs - strongly typed entity sub-class
|