@memberjunction/server 2.71.0 → 2.72.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.
|
@@ -567,6 +567,8 @@ export declare class AIAgent_ {
|
|
|
567
567
|
MaxTimePerRun?: number;
|
|
568
568
|
MinExecutionsPerRun?: number;
|
|
569
569
|
MaxExecutionsPerRun?: number;
|
|
570
|
+
StartingPayloadValidation?: string;
|
|
571
|
+
StartingPayloadValidationMode: string;
|
|
570
572
|
Parent?: string;
|
|
571
573
|
ContextCompressionPrompt?: string;
|
|
572
574
|
Type?: string;
|
|
@@ -613,6 +615,8 @@ export declare class CreateAIAgentInput {
|
|
|
613
615
|
MaxTimePerRun: number | null;
|
|
614
616
|
MinExecutionsPerRun: number | null;
|
|
615
617
|
MaxExecutionsPerRun: number | null;
|
|
618
|
+
StartingPayloadValidation: string | null;
|
|
619
|
+
StartingPayloadValidationMode?: string;
|
|
616
620
|
}
|
|
617
621
|
export declare class UpdateAIAgentInput {
|
|
618
622
|
ID: string;
|
|
@@ -646,6 +650,8 @@ export declare class UpdateAIAgentInput {
|
|
|
646
650
|
MaxTimePerRun?: number | null;
|
|
647
651
|
MinExecutionsPerRun?: number | null;
|
|
648
652
|
MaxExecutionsPerRun?: number | null;
|
|
653
|
+
StartingPayloadValidation?: string | null;
|
|
654
|
+
StartingPayloadValidationMode?: string;
|
|
649
655
|
OldValues___?: KeyValuePairInput[];
|
|
650
656
|
}
|
|
651
657
|
export declare class RunAIAgentViewResult {
|