@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.
|
@@ -1104,6 +1104,18 @@ exports.AIAgentSchema = zod_1.z.object({
|
|
|
1104
1104
|
* * SQL Data Type: nvarchar(MAX)
|
|
1105
1105
|
* * Default Value: ["*"]
|
|
1106
1106
|
* * Description: JSON array of paths that define which parts of the payload sub-agents are allowed to write back upstream. Use ["*"] to allow all writes, or specify paths like ["analysis.results", "recommendations.*"]`),
|
|
1107
|
+
PayloadSelfReadPaths: zod_1.z.string().nullable().describe(`
|
|
1108
|
+
* * Field Name: PayloadSelfReadPaths
|
|
1109
|
+
* * Display Name: Payload Self Read Paths
|
|
1110
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
1111
|
+
* * Description: JSON array of paths that specify what parts of the payload the agent's own prompt can read. Controls downstream data
|
|
1112
|
+
flow when the agent executes its own prompt step.`),
|
|
1113
|
+
PayloadSelfWritePaths: zod_1.z.string().nullable().describe(`
|
|
1114
|
+
* * Field Name: PayloadSelfWritePaths
|
|
1115
|
+
* * Display Name: Payload Self Write Paths
|
|
1116
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
1117
|
+
* * Description: JSON array of paths that specify what parts of the payload the agent's own prompt can write back. Controls upstream
|
|
1118
|
+
data flow when the agent executes its own prompt step.`),
|
|
1107
1119
|
Parent: zod_1.z.string().nullable().describe(`
|
|
1108
1120
|
* * Field Name: Parent
|
|
1109
1121
|
* * Display Name: Parent
|
|
@@ -14698,6 +14710,32 @@ let AIAgentEntity = class AIAgentEntity extends core_1.BaseEntity {
|
|
|
14698
14710
|
this.Set('PayloadUpstreamPaths', value);
|
|
14699
14711
|
}
|
|
14700
14712
|
/**
|
|
14713
|
+
* * Field Name: PayloadSelfReadPaths
|
|
14714
|
+
* * Display Name: Payload Self Read Paths
|
|
14715
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
14716
|
+
* * Description: JSON array of paths that specify what parts of the payload the agent's own prompt can read. Controls downstream data
|
|
14717
|
+
flow when the agent executes its own prompt step.
|
|
14718
|
+
*/
|
|
14719
|
+
get PayloadSelfReadPaths() {
|
|
14720
|
+
return this.Get('PayloadSelfReadPaths');
|
|
14721
|
+
}
|
|
14722
|
+
set PayloadSelfReadPaths(value) {
|
|
14723
|
+
this.Set('PayloadSelfReadPaths', value);
|
|
14724
|
+
}
|
|
14725
|
+
/**
|
|
14726
|
+
* * Field Name: PayloadSelfWritePaths
|
|
14727
|
+
* * Display Name: Payload Self Write Paths
|
|
14728
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
14729
|
+
* * Description: JSON array of paths that specify what parts of the payload the agent's own prompt can write back. Controls upstream
|
|
14730
|
+
data flow when the agent executes its own prompt step.
|
|
14731
|
+
*/
|
|
14732
|
+
get PayloadSelfWritePaths() {
|
|
14733
|
+
return this.Get('PayloadSelfWritePaths');
|
|
14734
|
+
}
|
|
14735
|
+
set PayloadSelfWritePaths(value) {
|
|
14736
|
+
this.Set('PayloadSelfWritePaths', value);
|
|
14737
|
+
}
|
|
14738
|
+
/**
|
|
14701
14739
|
* * Field Name: Parent
|
|
14702
14740
|
* * Display Name: Parent
|
|
14703
14741
|
* * SQL Data Type: nvarchar(255)
|