@memberjunction/server 2.62.0 → 2.63.1

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.
@@ -331,6 +331,8 @@ export declare class AIAgentRun_ {
331
331
  FinalStep?: string;
332
332
  FinalPayload?: string;
333
333
  Message?: string;
334
+ LastRunID?: string;
335
+ StartingPayload?: string;
334
336
  Agent?: string;
335
337
  Conversation?: string;
336
338
  User?: string;
@@ -365,6 +367,8 @@ export declare class CreateAIAgentRunInput {
365
367
  FinalStep: string | null;
366
368
  FinalPayload: string | null;
367
369
  Message: string | null;
370
+ LastRunID: string | null;
371
+ StartingPayload: string | null;
368
372
  }
369
373
  export declare class UpdateAIAgentRunInput {
370
374
  ID: string;
@@ -393,6 +397,8 @@ export declare class UpdateAIAgentRunInput {
393
397
  FinalStep?: string | null;
394
398
  FinalPayload?: string | null;
395
399
  Message?: string | null;
400
+ LastRunID?: string | null;
401
+ StartingPayload?: string | null;
396
402
  OldValues___?: KeyValuePairInput[];
397
403
  }
398
404
  export declare class RunAIAgentRunViewResult {