@memberjunction/server 2.64.0 → 2.66.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.
@@ -552,6 +552,8 @@ export declare class AIAgent_ {
552
552
  ModelSelectionMode: string;
553
553
  PayloadDownstreamPaths: string;
554
554
  PayloadUpstreamPaths: string;
555
+ PayloadSelfReadPaths?: string;
556
+ PayloadSelfWritePaths?: string;
555
557
  Parent?: string;
556
558
  ContextCompressionPrompt?: string;
557
559
  Type?: string;
@@ -586,6 +588,8 @@ export declare class CreateAIAgentInput {
586
588
  ModelSelectionMode?: string;
587
589
  PayloadDownstreamPaths?: string;
588
590
  PayloadUpstreamPaths?: string;
591
+ PayloadSelfReadPaths: string | null;
592
+ PayloadSelfWritePaths: string | null;
589
593
  }
590
594
  export declare class UpdateAIAgentInput {
591
595
  ID: string;
@@ -607,6 +611,8 @@ export declare class UpdateAIAgentInput {
607
611
  ModelSelectionMode?: string;
608
612
  PayloadDownstreamPaths?: string;
609
613
  PayloadUpstreamPaths?: string;
614
+ PayloadSelfReadPaths?: string | null;
615
+ PayloadSelfWritePaths?: string | null;
610
616
  OldValues___?: KeyValuePairInput[];
611
617
  }
612
618
  export declare class RunAIAgentViewResult {