@memberjunction/server 2.86.0 → 2.88.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.
@@ -59616,6 +59616,10 @@ let Component_ = class Component_ {
59616
59616
  TechnicalDesign;
59617
59617
  FunctionalRequirementsVector;
59618
59618
  TechnicalDesignVector;
59619
+ HasCustomProps;
59620
+ HasCustomEvents;
59621
+ RequiresData;
59622
+ DependencyCount;
59619
59623
  SourceRegistry;
59620
59624
  MJ_ComponentDependencies_DependencyComponentIDArray;
59621
59625
  MJ_ComponentLibraryLinks_ComponentIDArray;
@@ -59723,6 +59727,22 @@ __decorate([
59723
59727
  Field({ nullable: true, description: `Vector embedding of the technical design for similarity search` }),
59724
59728
  __metadata("design:type", String)
59725
59729
  ], Component_.prototype, "TechnicalDesignVector", void 0);
59730
+ __decorate([
59731
+ Field(() => Boolean, { description: `Indicates if the component has custom properties defined in its specification. Components with custom props cannot be used directly by deterministic containers.` }),
59732
+ __metadata("design:type", Boolean)
59733
+ ], Component_.prototype, "HasCustomProps", void 0);
59734
+ __decorate([
59735
+ Field(() => Boolean, { description: `Indicates if the component has custom events defined in its specification. Components with custom events may have limited functionality in generic containers.` }),
59736
+ __metadata("design:type", Boolean)
59737
+ ], Component_.prototype, "HasCustomEvents", void 0);
59738
+ __decorate([
59739
+ Field(() => Boolean, { description: `Indicates if the component requires data access (utilities object with md, rv, rq). Used to determine if component needs data context.` }),
59740
+ __metadata("design:type", Boolean)
59741
+ ], Component_.prototype, "RequiresData", void 0);
59742
+ __decorate([
59743
+ Field(() => Int, { description: `Number of component dependencies defined in the specification. Used to assess component complexity.` }),
59744
+ __metadata("design:type", Number)
59745
+ ], Component_.prototype, "DependencyCount", void 0);
59726
59746
  __decorate([
59727
59747
  Field({ nullable: true }),
59728
59748
  MaxLength(510),
@@ -59765,6 +59785,10 @@ let CreateComponentInput = class CreateComponentInput {
59765
59785
  TechnicalDesign;
59766
59786
  FunctionalRequirementsVector;
59767
59787
  TechnicalDesignVector;
59788
+ HasCustomProps;
59789
+ HasCustomEvents;
59790
+ RequiresData;
59791
+ DependencyCount;
59768
59792
  };
59769
59793
  __decorate([
59770
59794
  Field({ nullable: true }),
@@ -59846,6 +59870,22 @@ __decorate([
59846
59870
  Field({ nullable: true }),
59847
59871
  __metadata("design:type", String)
59848
59872
  ], CreateComponentInput.prototype, "TechnicalDesignVector", void 0);
59873
+ __decorate([
59874
+ Field(() => Boolean, { nullable: true }),
59875
+ __metadata("design:type", Boolean)
59876
+ ], CreateComponentInput.prototype, "HasCustomProps", void 0);
59877
+ __decorate([
59878
+ Field(() => Boolean, { nullable: true }),
59879
+ __metadata("design:type", Boolean)
59880
+ ], CreateComponentInput.prototype, "HasCustomEvents", void 0);
59881
+ __decorate([
59882
+ Field(() => Boolean, { nullable: true }),
59883
+ __metadata("design:type", Boolean)
59884
+ ], CreateComponentInput.prototype, "RequiresData", void 0);
59885
+ __decorate([
59886
+ Field(() => Int, { nullable: true }),
59887
+ __metadata("design:type", Number)
59888
+ ], CreateComponentInput.prototype, "DependencyCount", void 0);
59849
59889
  CreateComponentInput = __decorate([
59850
59890
  InputType()
59851
59891
  ], CreateComponentInput);
@@ -59871,6 +59911,10 @@ let UpdateComponentInput = class UpdateComponentInput {
59871
59911
  TechnicalDesign;
59872
59912
  FunctionalRequirementsVector;
59873
59913
  TechnicalDesignVector;
59914
+ HasCustomProps;
59915
+ HasCustomEvents;
59916
+ RequiresData;
59917
+ DependencyCount;
59874
59918
  OldValues___;
59875
59919
  };
59876
59920
  __decorate([
@@ -59953,6 +59997,22 @@ __decorate([
59953
59997
  Field({ nullable: true }),
59954
59998
  __metadata("design:type", String)
59955
59999
  ], UpdateComponentInput.prototype, "TechnicalDesignVector", void 0);
60000
+ __decorate([
60001
+ Field(() => Boolean, { nullable: true }),
60002
+ __metadata("design:type", Boolean)
60003
+ ], UpdateComponentInput.prototype, "HasCustomProps", void 0);
60004
+ __decorate([
60005
+ Field(() => Boolean, { nullable: true }),
60006
+ __metadata("design:type", Boolean)
60007
+ ], UpdateComponentInput.prototype, "HasCustomEvents", void 0);
60008
+ __decorate([
60009
+ Field(() => Boolean, { nullable: true }),
60010
+ __metadata("design:type", Boolean)
60011
+ ], UpdateComponentInput.prototype, "RequiresData", void 0);
60012
+ __decorate([
60013
+ Field(() => Int, { nullable: true }),
60014
+ __metadata("design:type", Number)
60015
+ ], UpdateComponentInput.prototype, "DependencyCount", void 0);
59956
60016
  __decorate([
59957
60017
  Field(() => [KeyValuePairInput], { nullable: true }),
59958
60018
  __metadata("design:type", Array)