@memberjunction/server 2.97.0 → 2.99.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.
@@ -4172,6 +4172,7 @@ let AIAgent_ = class AIAgent_ {
4172
4172
  StartingPayloadValidation;
4173
4173
  StartingPayloadValidationMode;
4174
4174
  DefaultPromptEffortLevel;
4175
+ ChatHandlingOption;
4175
4176
  Parent;
4176
4177
  ContextCompressionPrompt;
4177
4178
  Type;
@@ -4356,6 +4357,11 @@ __decorate([
4356
4357
  Field(() => Int, { nullable: true, description: `Default effort level for all prompts executed by this agent (1-100, where 1=minimal effort, 100=maximum effort). Takes precedence over individual prompt EffortLevel settings but can be overridden by runtime parameters. Inherited by sub-agents unless explicitly overridden.` }),
4357
4358
  __metadata("design:type", Number)
4358
4359
  ], AIAgent_.prototype, "DefaultPromptEffortLevel", void 0);
4360
+ __decorate([
4361
+ Field({ nullable: true, description: `Controls how Chat next steps are handled. When null (default), Chat propagates to caller. When set to Success, Failed, or Retry, Chat steps are remapped to that value and re-validated.` }),
4362
+ MaxLength(60),
4363
+ __metadata("design:type", String)
4364
+ ], AIAgent_.prototype, "ChatHandlingOption", void 0);
4359
4365
  __decorate([
4360
4366
  Field({ nullable: true }),
4361
4367
  MaxLength(510),
@@ -4466,6 +4472,7 @@ let CreateAIAgentInput = class CreateAIAgentInput {
4466
4472
  StartingPayloadValidation;
4467
4473
  StartingPayloadValidationMode;
4468
4474
  DefaultPromptEffortLevel;
4475
+ ChatHandlingOption;
4469
4476
  };
4470
4477
  __decorate([
4471
4478
  Field({ nullable: true }),
@@ -4603,6 +4610,10 @@ __decorate([
4603
4610
  Field(() => Int, { nullable: true }),
4604
4611
  __metadata("design:type", Number)
4605
4612
  ], CreateAIAgentInput.prototype, "DefaultPromptEffortLevel", void 0);
4613
+ __decorate([
4614
+ Field({ nullable: true }),
4615
+ __metadata("design:type", String)
4616
+ ], CreateAIAgentInput.prototype, "ChatHandlingOption", void 0);
4606
4617
  CreateAIAgentInput = __decorate([
4607
4618
  InputType()
4608
4619
  ], CreateAIAgentInput);
@@ -4642,6 +4653,7 @@ let UpdateAIAgentInput = class UpdateAIAgentInput {
4642
4653
  StartingPayloadValidation;
4643
4654
  StartingPayloadValidationMode;
4644
4655
  DefaultPromptEffortLevel;
4656
+ ChatHandlingOption;
4645
4657
  OldValues___;
4646
4658
  };
4647
4659
  __decorate([
@@ -4780,6 +4792,10 @@ __decorate([
4780
4792
  Field(() => Int, { nullable: true }),
4781
4793
  __metadata("design:type", Number)
4782
4794
  ], UpdateAIAgentInput.prototype, "DefaultPromptEffortLevel", void 0);
4795
+ __decorate([
4796
+ Field({ nullable: true }),
4797
+ __metadata("design:type", String)
4798
+ ], UpdateAIAgentInput.prototype, "ChatHandlingOption", void 0);
4783
4799
  __decorate([
4784
4800
  Field(() => [KeyValuePairInput], { nullable: true }),
4785
4801
  __metadata("design:type", Array)
@@ -61578,6 +61594,7 @@ let ComponentLibrary_ = class ComponentLibrary_ {
61578
61594
  Status;
61579
61595
  LintRules;
61580
61596
  Dependencies;
61597
+ UsageType;
61581
61598
  MJ_ComponentLibraryLinks_LibraryIDArray;
61582
61599
  };
61583
61600
  __decorate([
@@ -61647,6 +61664,11 @@ __decorate([
61647
61664
  Field({ nullable: true, description: `JSON object defining dependencies for this component library. Format: { "libraryName": "versionSpec", ... }. Version specifications follow NPM-style syntax (e.g., "~1.0.0", "^1.2.3", "2.3.4"). Dependencies are loaded before this library to ensure proper execution context.` }),
61648
61665
  __metadata("design:type", String)
61649
61666
  ], ComponentLibrary_.prototype, "Dependencies", void 0);
61667
+ __decorate([
61668
+ Field({ description: `Controls how the library can be used: Direct (by components), Dependency (only as dependency), or Both` }),
61669
+ MaxLength(100),
61670
+ __metadata("design:type", String)
61671
+ ], ComponentLibrary_.prototype, "UsageType", void 0);
61650
61672
  __decorate([
61651
61673
  Field(() => [ComponentLibraryLink_]),
61652
61674
  __metadata("design:type", Array)
@@ -61668,6 +61690,7 @@ let CreateComponentLibraryInput = class CreateComponentLibraryInput {
61668
61690
  Status;
61669
61691
  LintRules;
61670
61692
  Dependencies;
61693
+ UsageType;
61671
61694
  };
61672
61695
  __decorate([
61673
61696
  Field({ nullable: true }),
@@ -61717,6 +61740,10 @@ __decorate([
61717
61740
  Field({ nullable: true }),
61718
61741
  __metadata("design:type", String)
61719
61742
  ], CreateComponentLibraryInput.prototype, "Dependencies", void 0);
61743
+ __decorate([
61744
+ Field({ nullable: true }),
61745
+ __metadata("design:type", String)
61746
+ ], CreateComponentLibraryInput.prototype, "UsageType", void 0);
61720
61747
  CreateComponentLibraryInput = __decorate([
61721
61748
  InputType()
61722
61749
  ], CreateComponentLibraryInput);
@@ -61734,6 +61761,7 @@ let UpdateComponentLibraryInput = class UpdateComponentLibraryInput {
61734
61761
  Status;
61735
61762
  LintRules;
61736
61763
  Dependencies;
61764
+ UsageType;
61737
61765
  OldValues___;
61738
61766
  };
61739
61767
  __decorate([
@@ -61784,6 +61812,10 @@ __decorate([
61784
61812
  Field({ nullable: true }),
61785
61813
  __metadata("design:type", String)
61786
61814
  ], UpdateComponentLibraryInput.prototype, "Dependencies", void 0);
61815
+ __decorate([
61816
+ Field({ nullable: true }),
61817
+ __metadata("design:type", String)
61818
+ ], UpdateComponentLibraryInput.prototype, "UsageType", void 0);
61787
61819
  __decorate([
61788
61820
  Field(() => [KeyValuePairInput], { nullable: true }),
61789
61821
  __metadata("design:type", Array)