@memberjunction/server 2.64.0 → 2.65.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.
@@ -3370,6 +3370,8 @@ let AIAgent_ = class AIAgent_ {
3370
3370
  ModelSelectionMode;
3371
3371
  PayloadDownstreamPaths;
3372
3372
  PayloadUpstreamPaths;
3373
+ PayloadSelfReadPaths;
3374
+ PayloadSelfWritePaths;
3373
3375
  Parent;
3374
3376
  ContextCompressionPrompt;
3375
3377
  Type;
@@ -3481,6 +3483,16 @@ __decorate([
3481
3483
  Field({ 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.*"]` }),
3482
3484
  __metadata("design:type", String)
3483
3485
  ], AIAgent_.prototype, "PayloadUpstreamPaths", void 0);
3486
+ __decorate([
3487
+ Field({ nullable: true, description: `JSON array of paths that specify what parts of the payload the agent's own prompt can read. Controls downstream data
3488
+ flow when the agent executes its own prompt step.` }),
3489
+ __metadata("design:type", String)
3490
+ ], AIAgent_.prototype, "PayloadSelfReadPaths", void 0);
3491
+ __decorate([
3492
+ Field({ nullable: true, description: `JSON array of paths that specify what parts of the payload the agent's own prompt can write back. Controls upstream
3493
+ data flow when the agent executes its own prompt step.` }),
3494
+ __metadata("design:type", String)
3495
+ ], AIAgent_.prototype, "PayloadSelfWritePaths", void 0);
3484
3496
  __decorate([
3485
3497
  Field({ nullable: true }),
3486
3498
  MaxLength(510),
@@ -3560,6 +3572,8 @@ let CreateAIAgentInput = class CreateAIAgentInput {
3560
3572
  ModelSelectionMode;
3561
3573
  PayloadDownstreamPaths;
3562
3574
  PayloadUpstreamPaths;
3575
+ PayloadSelfReadPaths;
3576
+ PayloadSelfWritePaths;
3563
3577
  };
3564
3578
  __decorate([
3565
3579
  Field({ nullable: true }),
@@ -3637,6 +3651,14 @@ __decorate([
3637
3651
  Field({ nullable: true }),
3638
3652
  __metadata("design:type", String)
3639
3653
  ], CreateAIAgentInput.prototype, "PayloadUpstreamPaths", void 0);
3654
+ __decorate([
3655
+ Field({ nullable: true }),
3656
+ __metadata("design:type", String)
3657
+ ], CreateAIAgentInput.prototype, "PayloadSelfReadPaths", void 0);
3658
+ __decorate([
3659
+ Field({ nullable: true }),
3660
+ __metadata("design:type", String)
3661
+ ], CreateAIAgentInput.prototype, "PayloadSelfWritePaths", void 0);
3640
3662
  CreateAIAgentInput = __decorate([
3641
3663
  InputType()
3642
3664
  ], CreateAIAgentInput);
@@ -3661,6 +3683,8 @@ let UpdateAIAgentInput = class UpdateAIAgentInput {
3661
3683
  ModelSelectionMode;
3662
3684
  PayloadDownstreamPaths;
3663
3685
  PayloadUpstreamPaths;
3686
+ PayloadSelfReadPaths;
3687
+ PayloadSelfWritePaths;
3664
3688
  OldValues___;
3665
3689
  };
3666
3690
  __decorate([
@@ -3739,6 +3763,14 @@ __decorate([
3739
3763
  Field({ nullable: true }),
3740
3764
  __metadata("design:type", String)
3741
3765
  ], UpdateAIAgentInput.prototype, "PayloadUpstreamPaths", void 0);
3766
+ __decorate([
3767
+ Field({ nullable: true }),
3768
+ __metadata("design:type", String)
3769
+ ], UpdateAIAgentInput.prototype, "PayloadSelfReadPaths", void 0);
3770
+ __decorate([
3771
+ Field({ nullable: true }),
3772
+ __metadata("design:type", String)
3773
+ ], UpdateAIAgentInput.prototype, "PayloadSelfWritePaths", void 0);
3742
3774
  __decorate([
3743
3775
  Field(() => [KeyValuePairInput], { nullable: true }),
3744
3776
  __metadata("design:type", Array)