@memberjunction/core-entities 2.89.0 → 2.91.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.
@@ -9216,6 +9216,17 @@ exports.ComponentLibrarySchema = zod_1.z.object({
9216
9216
  * * Display Name: Updated At
9217
9217
  * * SQL Data Type: datetimeoffset
9218
9218
  * * Default Value: getutcdate()`),
9219
+ Status: zod_1.z.union([zod_1.z.literal('Active'), zod_1.z.literal('Deprecated'), zod_1.z.literal('Disabled')]).describe(`
9220
+ * * Field Name: Status
9221
+ * * Display Name: Status
9222
+ * * SQL Data Type: nvarchar(20)
9223
+ * * Default Value: Active
9224
+ * * Value List Type: List
9225
+ * * Possible Values
9226
+ * * Active
9227
+ * * Deprecated
9228
+ * * Disabled
9229
+ * * Description: Status of the component library. Active: fully supported; Deprecated: works but shows console warning; Disabled: throws error if used`),
9219
9230
  });
9220
9231
  /**
9221
9232
  * zod schema definition for the entity MJ: Component Library Links
@@ -9482,6 +9493,22 @@ exports.ComponentSchema = zod_1.z.object({
9482
9493
  * * SQL Data Type: int
9483
9494
  * * Default Value: 0
9484
9495
  * * Description: Number of component dependencies defined in the specification. Used to assess component complexity.`),
9496
+ TechnicalDesignVectorEmbeddingModelID: zod_1.z.string().nullable().describe(`
9497
+ * * Field Name: TechnicalDesignVectorEmbeddingModelID
9498
+ * * Display Name: Technical Design Vector Embedding Model ID
9499
+ * * SQL Data Type: nvarchar(MAX)
9500
+ * * Description: The ID of the AI model used to generate the vector embedding for the technical design`),
9501
+ FunctionalRequirementsVectorEmbeddingModelID: zod_1.z.string().nullable().describe(`
9502
+ * * Field Name: FunctionalRequirementsVectorEmbeddingModelID
9503
+ * * Display Name: Functional Requirements Vector Embedding Model ID
9504
+ * * SQL Data Type: nvarchar(MAX)
9505
+ * * Description: The ID of the AI model used to generate the vector embedding for the functional requirements`),
9506
+ HasRequiredCustomProps: zod_1.z.boolean().describe(`
9507
+ * * Field Name: HasRequiredCustomProps
9508
+ * * Display Name: Has Required Custom Props
9509
+ * * SQL Data Type: bit
9510
+ * * Default Value: 0
9511
+ * * 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.`),
9485
9512
  SourceRegistry: zod_1.z.string().nullable().describe(`
9486
9513
  * * Field Name: SourceRegistry
9487
9514
  * * Display Name: Source Registry
@@ -36891,6 +36918,24 @@ let ComponentLibraryEntity = class ComponentLibraryEntity extends core_1.BaseEnt
36891
36918
  get __mj_UpdatedAt() {
36892
36919
  return this.Get('__mj_UpdatedAt');
36893
36920
  }
36921
+ /**
36922
+ * * Field Name: Status
36923
+ * * Display Name: Status
36924
+ * * SQL Data Type: nvarchar(20)
36925
+ * * Default Value: Active
36926
+ * * Value List Type: List
36927
+ * * Possible Values
36928
+ * * Active
36929
+ * * Deprecated
36930
+ * * Disabled
36931
+ * * Description: Status of the component library. Active: fully supported; Deprecated: works but shows console warning; Disabled: throws error if used
36932
+ */
36933
+ get Status() {
36934
+ return this.Get('Status');
36935
+ }
36936
+ set Status(value) {
36937
+ this.Set('Status', value);
36938
+ }
36894
36939
  };
36895
36940
  exports.ComponentLibraryEntity = ComponentLibraryEntity;
36896
36941
  exports.ComponentLibraryEntity = ComponentLibraryEntity = __decorate([
@@ -37519,6 +37564,43 @@ let ComponentEntity = class ComponentEntity extends core_1.BaseEntity {
37519
37564
  this.Set('DependencyCount', value);
37520
37565
  }
37521
37566
  /**
37567
+ * * Field Name: TechnicalDesignVectorEmbeddingModelID
37568
+ * * Display Name: Technical Design Vector Embedding Model ID
37569
+ * * SQL Data Type: nvarchar(MAX)
37570
+ * * Description: The ID of the AI model used to generate the vector embedding for the technical design
37571
+ */
37572
+ get TechnicalDesignVectorEmbeddingModelID() {
37573
+ return this.Get('TechnicalDesignVectorEmbeddingModelID');
37574
+ }
37575
+ set TechnicalDesignVectorEmbeddingModelID(value) {
37576
+ this.Set('TechnicalDesignVectorEmbeddingModelID', value);
37577
+ }
37578
+ /**
37579
+ * * Field Name: FunctionalRequirementsVectorEmbeddingModelID
37580
+ * * Display Name: Functional Requirements Vector Embedding Model ID
37581
+ * * SQL Data Type: nvarchar(MAX)
37582
+ * * Description: The ID of the AI model used to generate the vector embedding for the functional requirements
37583
+ */
37584
+ get FunctionalRequirementsVectorEmbeddingModelID() {
37585
+ return this.Get('FunctionalRequirementsVectorEmbeddingModelID');
37586
+ }
37587
+ set FunctionalRequirementsVectorEmbeddingModelID(value) {
37588
+ this.Set('FunctionalRequirementsVectorEmbeddingModelID', value);
37589
+ }
37590
+ /**
37591
+ * * Field Name: HasRequiredCustomProps
37592
+ * * Display Name: Has Required Custom Props
37593
+ * * SQL Data Type: bit
37594
+ * * Default Value: 0
37595
+ * * 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.
37596
+ */
37597
+ get HasRequiredCustomProps() {
37598
+ return this.Get('HasRequiredCustomProps');
37599
+ }
37600
+ set HasRequiredCustomProps(value) {
37601
+ this.Set('HasRequiredCustomProps', value);
37602
+ }
37603
+ /**
37522
37604
  * * Field Name: SourceRegistry
37523
37605
  * * Display Name: Source Registry
37524
37606
  * * SQL Data Type: nvarchar(255)