@memberjunction/core-entities 2.89.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.
- package/dist/custom/AIAgentRunExtended.js +1 -1
- package/dist/custom/AIAgentRunExtended.js.map +1 -1
- package/dist/custom/AIPromptCategoryExtended.d.ts +3 -2
- package/dist/custom/AIPromptCategoryExtended.d.ts.map +1 -1
- package/dist/custom/AIPromptCategoryExtended.js.map +1 -1
- package/dist/custom/AIPromptExtended.js +2 -2
- package/dist/custom/AIPromptExtended.js.map +1 -1
- package/dist/custom/ComponentEntityExtended.d.ts.map +1 -1
- package/dist/custom/ComponentEntityExtended.js +2 -1
- package/dist/custom/ComponentEntityExtended.js.map +1 -1
- package/dist/custom/ListDetailEntityExtended.js +1 -1
- package/dist/custom/ListDetailEntityExtended.js.map +1 -1
- package/dist/generated/entity_subclasses.d.ts +34 -0
- package/dist/generated/entity_subclasses.d.ts.map +1 -1
- package/dist/generated/entity_subclasses.js +53 -0
- package/dist/generated/entity_subclasses.js.map +1 -1
- package/package.json +4 -4
- package/readme.md +2 -2
|
@@ -9482,6 +9482,22 @@ exports.ComponentSchema = zod_1.z.object({
|
|
|
9482
9482
|
* * SQL Data Type: int
|
|
9483
9483
|
* * Default Value: 0
|
|
9484
9484
|
* * Description: Number of component dependencies defined in the specification. Used to assess component complexity.`),
|
|
9485
|
+
TechnicalDesignVectorEmbeddingModelID: zod_1.z.string().nullable().describe(`
|
|
9486
|
+
* * Field Name: TechnicalDesignVectorEmbeddingModelID
|
|
9487
|
+
* * Display Name: Technical Design Vector Embedding Model ID
|
|
9488
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
9489
|
+
* * Description: The ID of the AI model used to generate the vector embedding for the technical design`),
|
|
9490
|
+
FunctionalRequirementsVectorEmbeddingModelID: zod_1.z.string().nullable().describe(`
|
|
9491
|
+
* * Field Name: FunctionalRequirementsVectorEmbeddingModelID
|
|
9492
|
+
* * Display Name: Functional Requirements Vector Embedding Model ID
|
|
9493
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
9494
|
+
* * Description: The ID of the AI model used to generate the vector embedding for the functional requirements`),
|
|
9495
|
+
HasRequiredCustomProps: zod_1.z.boolean().describe(`
|
|
9496
|
+
* * Field Name: HasRequiredCustomProps
|
|
9497
|
+
* * Display Name: Has Required Custom Props
|
|
9498
|
+
* * SQL Data Type: bit
|
|
9499
|
+
* * Default Value: 0
|
|
9500
|
+
* * 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
9501
|
SourceRegistry: zod_1.z.string().nullable().describe(`
|
|
9486
9502
|
* * Field Name: SourceRegistry
|
|
9487
9503
|
* * Display Name: Source Registry
|
|
@@ -37519,6 +37535,43 @@ let ComponentEntity = class ComponentEntity extends core_1.BaseEntity {
|
|
|
37519
37535
|
this.Set('DependencyCount', value);
|
|
37520
37536
|
}
|
|
37521
37537
|
/**
|
|
37538
|
+
* * Field Name: TechnicalDesignVectorEmbeddingModelID
|
|
37539
|
+
* * Display Name: Technical Design Vector Embedding Model ID
|
|
37540
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
37541
|
+
* * Description: The ID of the AI model used to generate the vector embedding for the technical design
|
|
37542
|
+
*/
|
|
37543
|
+
get TechnicalDesignVectorEmbeddingModelID() {
|
|
37544
|
+
return this.Get('TechnicalDesignVectorEmbeddingModelID');
|
|
37545
|
+
}
|
|
37546
|
+
set TechnicalDesignVectorEmbeddingModelID(value) {
|
|
37547
|
+
this.Set('TechnicalDesignVectorEmbeddingModelID', value);
|
|
37548
|
+
}
|
|
37549
|
+
/**
|
|
37550
|
+
* * Field Name: FunctionalRequirementsVectorEmbeddingModelID
|
|
37551
|
+
* * Display Name: Functional Requirements Vector Embedding Model ID
|
|
37552
|
+
* * SQL Data Type: nvarchar(MAX)
|
|
37553
|
+
* * Description: The ID of the AI model used to generate the vector embedding for the functional requirements
|
|
37554
|
+
*/
|
|
37555
|
+
get FunctionalRequirementsVectorEmbeddingModelID() {
|
|
37556
|
+
return this.Get('FunctionalRequirementsVectorEmbeddingModelID');
|
|
37557
|
+
}
|
|
37558
|
+
set FunctionalRequirementsVectorEmbeddingModelID(value) {
|
|
37559
|
+
this.Set('FunctionalRequirementsVectorEmbeddingModelID', value);
|
|
37560
|
+
}
|
|
37561
|
+
/**
|
|
37562
|
+
* * Field Name: HasRequiredCustomProps
|
|
37563
|
+
* * Display Name: Has Required Custom Props
|
|
37564
|
+
* * SQL Data Type: bit
|
|
37565
|
+
* * Default Value: 0
|
|
37566
|
+
* * 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.
|
|
37567
|
+
*/
|
|
37568
|
+
get HasRequiredCustomProps() {
|
|
37569
|
+
return this.Get('HasRequiredCustomProps');
|
|
37570
|
+
}
|
|
37571
|
+
set HasRequiredCustomProps(value) {
|
|
37572
|
+
this.Set('HasRequiredCustomProps', value);
|
|
37573
|
+
}
|
|
37574
|
+
/**
|
|
37522
37575
|
* * Field Name: SourceRegistry
|
|
37523
37576
|
* * Display Name: Source Registry
|
|
37524
37577
|
* * SQL Data Type: nvarchar(255)
|