@memberjunction/server 2.88.0 → 2.90.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.
@@ -59620,6 +59620,9 @@ let Component_ = class Component_ {
59620
59620
  HasCustomEvents;
59621
59621
  RequiresData;
59622
59622
  DependencyCount;
59623
+ TechnicalDesignVectorEmbeddingModelID;
59624
+ FunctionalRequirementsVectorEmbeddingModelID;
59625
+ HasRequiredCustomProps;
59623
59626
  SourceRegistry;
59624
59627
  MJ_ComponentDependencies_DependencyComponentIDArray;
59625
59628
  MJ_ComponentLibraryLinks_ComponentIDArray;
@@ -59743,6 +59746,18 @@ __decorate([
59743
59746
  Field(() => Int, { description: `Number of component dependencies defined in the specification. Used to assess component complexity.` }),
59744
59747
  __metadata("design:type", Number)
59745
59748
  ], Component_.prototype, "DependencyCount", void 0);
59749
+ __decorate([
59750
+ Field({ nullable: true, description: `The ID of the AI model used to generate the vector embedding for the technical design` }),
59751
+ __metadata("design:type", String)
59752
+ ], Component_.prototype, "TechnicalDesignVectorEmbeddingModelID", void 0);
59753
+ __decorate([
59754
+ Field({ nullable: true, description: `The ID of the AI model used to generate the vector embedding for the functional requirements` }),
59755
+ __metadata("design:type", String)
59756
+ ], Component_.prototype, "FunctionalRequirementsVectorEmbeddingModelID", void 0);
59757
+ __decorate([
59758
+ Field(() => Boolean, { description: `Indicates whether the component has any custom properties that are marked as required. This is auto-calculated based on the component's properties array to identify components with mandatory custom configuration.` }),
59759
+ __metadata("design:type", Boolean)
59760
+ ], Component_.prototype, "HasRequiredCustomProps", void 0);
59746
59761
  __decorate([
59747
59762
  Field({ nullable: true }),
59748
59763
  MaxLength(510),
@@ -59789,6 +59804,9 @@ let CreateComponentInput = class CreateComponentInput {
59789
59804
  HasCustomEvents;
59790
59805
  RequiresData;
59791
59806
  DependencyCount;
59807
+ TechnicalDesignVectorEmbeddingModelID;
59808
+ FunctionalRequirementsVectorEmbeddingModelID;
59809
+ HasRequiredCustomProps;
59792
59810
  };
59793
59811
  __decorate([
59794
59812
  Field({ nullable: true }),
@@ -59886,6 +59904,18 @@ __decorate([
59886
59904
  Field(() => Int, { nullable: true }),
59887
59905
  __metadata("design:type", Number)
59888
59906
  ], CreateComponentInput.prototype, "DependencyCount", void 0);
59907
+ __decorate([
59908
+ Field({ nullable: true }),
59909
+ __metadata("design:type", String)
59910
+ ], CreateComponentInput.prototype, "TechnicalDesignVectorEmbeddingModelID", void 0);
59911
+ __decorate([
59912
+ Field({ nullable: true }),
59913
+ __metadata("design:type", String)
59914
+ ], CreateComponentInput.prototype, "FunctionalRequirementsVectorEmbeddingModelID", void 0);
59915
+ __decorate([
59916
+ Field(() => Boolean, { nullable: true }),
59917
+ __metadata("design:type", Boolean)
59918
+ ], CreateComponentInput.prototype, "HasRequiredCustomProps", void 0);
59889
59919
  CreateComponentInput = __decorate([
59890
59920
  InputType()
59891
59921
  ], CreateComponentInput);
@@ -59915,6 +59945,9 @@ let UpdateComponentInput = class UpdateComponentInput {
59915
59945
  HasCustomEvents;
59916
59946
  RequiresData;
59917
59947
  DependencyCount;
59948
+ TechnicalDesignVectorEmbeddingModelID;
59949
+ FunctionalRequirementsVectorEmbeddingModelID;
59950
+ HasRequiredCustomProps;
59918
59951
  OldValues___;
59919
59952
  };
59920
59953
  __decorate([
@@ -60013,6 +60046,18 @@ __decorate([
60013
60046
  Field(() => Int, { nullable: true }),
60014
60047
  __metadata("design:type", Number)
60015
60048
  ], UpdateComponentInput.prototype, "DependencyCount", void 0);
60049
+ __decorate([
60050
+ Field({ nullable: true }),
60051
+ __metadata("design:type", String)
60052
+ ], UpdateComponentInput.prototype, "TechnicalDesignVectorEmbeddingModelID", void 0);
60053
+ __decorate([
60054
+ Field({ nullable: true }),
60055
+ __metadata("design:type", String)
60056
+ ], UpdateComponentInput.prototype, "FunctionalRequirementsVectorEmbeddingModelID", void 0);
60057
+ __decorate([
60058
+ Field(() => Boolean, { nullable: true }),
60059
+ __metadata("design:type", Boolean)
60060
+ ], UpdateComponentInput.prototype, "HasRequiredCustomProps", void 0);
60016
60061
  __decorate([
60017
60062
  Field(() => [KeyValuePairInput], { nullable: true }),
60018
60063
  __metadata("design:type", Array)