@memberjunction/server 2.74.0 → 2.75.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.
@@ -9994,6 +9994,7 @@ export declare class AIPromptRun_ {
9994
9994
  OriginalModelID?: string;
9995
9995
  OriginalRequestStartTime?: Date;
9996
9996
  TotalFailoverDuration?: number;
9997
+ RerunFromPromptRunID?: string;
9997
9998
  Prompt: string;
9998
9999
  Model: string;
9999
10000
  Vendor: string;
@@ -10062,6 +10063,7 @@ export declare class CreateAIPromptRunInput {
10062
10063
  OriginalModelID: string | null;
10063
10064
  OriginalRequestStartTime: Date | null;
10064
10065
  TotalFailoverDuration: number | null;
10066
+ RerunFromPromptRunID: string | null;
10065
10067
  }
10066
10068
  export declare class UpdateAIPromptRunInput {
10067
10069
  ID: string;
@@ -10122,6 +10124,7 @@ export declare class UpdateAIPromptRunInput {
10122
10124
  OriginalModelID?: string | null;
10123
10125
  OriginalRequestStartTime?: Date | null;
10124
10126
  TotalFailoverDuration?: number | null;
10127
+ RerunFromPromptRunID?: string | null;
10125
10128
  OldValues___?: KeyValuePairInput[];
10126
10129
  }
10127
10130
  export declare class RunAIPromptRunViewResult {