@memberjunction/core-entities 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.
@@ -666,6 +666,8 @@ export declare const AIAgentSchema: z.ZodObject<{
666
666
  ModelSelectionMode: z.ZodUnion<[z.ZodLiteral<"Agent Type">, z.ZodLiteral<"Agent">]>;
667
667
  PayloadDownstreamPaths: z.ZodString;
668
668
  PayloadUpstreamPaths: z.ZodString;
669
+ PayloadSelfReadPaths: z.ZodNullable<z.ZodString>;
670
+ PayloadSelfWritePaths: z.ZodNullable<z.ZodString>;
669
671
  Parent: z.ZodNullable<z.ZodString>;
670
672
  ContextCompressionPrompt: z.ZodNullable<z.ZodString>;
671
673
  Type: z.ZodNullable<z.ZodString>;
@@ -693,6 +695,8 @@ export declare const AIAgentSchema: z.ZodObject<{
693
695
  ModelSelectionMode?: "Agent" | "Agent Type";
694
696
  PayloadDownstreamPaths?: string;
695
697
  PayloadUpstreamPaths?: string;
698
+ PayloadSelfReadPaths?: string;
699
+ PayloadSelfWritePaths?: string;
696
700
  ContextCompressionPrompt?: string;
697
701
  }, {
698
702
  ID?: string;
@@ -718,6 +722,8 @@ export declare const AIAgentSchema: z.ZodObject<{
718
722
  ModelSelectionMode?: "Agent" | "Agent Type";
719
723
  PayloadDownstreamPaths?: string;
720
724
  PayloadUpstreamPaths?: string;
725
+ PayloadSelfReadPaths?: string;
726
+ PayloadSelfWritePaths?: string;
721
727
  ContextCompressionPrompt?: string;
722
728
  }>;
723
729
  export type AIAgentEntityType = z.infer<typeof AIAgentSchema>;
@@ -9988,6 +9994,24 @@ export declare class AIAgentEntity extends BaseEntity<AIAgentEntityType> {
9988
9994
  get PayloadUpstreamPaths(): string;
9989
9995
  set PayloadUpstreamPaths(value: string);
9990
9996
  /**
9997
+ * * Field Name: PayloadSelfReadPaths
9998
+ * * Display Name: Payload Self Read Paths
9999
+ * * SQL Data Type: nvarchar(MAX)
10000
+ * * Description: JSON array of paths that specify what parts of the payload the agent's own prompt can read. Controls downstream data
10001
+ flow when the agent executes its own prompt step.
10002
+ */
10003
+ get PayloadSelfReadPaths(): string | null;
10004
+ set PayloadSelfReadPaths(value: string | null);
10005
+ /**
10006
+ * * Field Name: PayloadSelfWritePaths
10007
+ * * Display Name: Payload Self Write Paths
10008
+ * * SQL Data Type: nvarchar(MAX)
10009
+ * * Description: JSON array of paths that specify what parts of the payload the agent's own prompt can write back. Controls upstream
10010
+ data flow when the agent executes its own prompt step.
10011
+ */
10012
+ get PayloadSelfWritePaths(): string | null;
10013
+ set PayloadSelfWritePaths(value: string | null);
10014
+ /**
9991
10015
  * * Field Name: Parent
9992
10016
  * * Display Name: Parent
9993
10017
  * * SQL Data Type: nvarchar(255)